diff --git a/README-zh_CN.md b/README-zh_CN.md index b82cc61cc..8ec501475 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -356,6 +356,55 @@ console.log(sqlSlices) 行列号信息不是必传的,如果传了行列号信息,那么收集到的实体中,如果实体位于对应行列号所在的语句下,那么实体的所属的语句对象上会带有 `isContainCaret` 标识,这在与自动补全功能结合时,可以帮助你快速筛选出需要的实体信息。 + +### 获取语义上下文信息 +调用 SQL 实例上的 `getSemanticContextAtCaretPosition` 方法,传入 sql 文本和指定位置的行列号, 例如: +```typescript +import { HiveSQL } from 'dt-sql-parser'; + +const hive = new HiveSQL(); +const sql = 'SELECT * FROM tb;'; +const pos = { lineNumber: 1, column: 18 }; // 'tb;' 的后面 +const semanticContext = hive.getSemanticContextAtCaretPosition(sql, pos); + +console.log(semanticContext); +``` + +*输出* + +```typescript +/* +{ + isStatementBeginning: true, +} +*/ +``` + +目前能收集到的语义上下文信息如下,如果有更多的需求,欢迎提[issue](https://github.com/DTStack/dt-sql-parser/issues) +- `isStatementBeginning` 当前输入位置是否为一条语句的开头 + +默认情况下,`isStatementBeginning` 的收集策略为`SqlSplitStrategy.STRICT` + +有两种可选策略: +- `SqlSplitStrategy.STRICT` 严格策略, 仅以语句分隔符`;`作为上一条语句结束的标识 +- `SqlSplitStrategy.LOOSE` 宽松策略, 以语法解析树为基础分割SQL + +两种策略的差异: +如输入SQL为 +```sql +CREATE TABLE tb (id INT) + +SELECT +``` +CREATE语句后未添加分号,那么当获取SELECT后的语义上下文时, +在`SqlSplitStrategy.STRICT`策略下`isStatementBeginning` 为`false`, 因为CREATE语句未以分号结尾,那么会被认为这条语句尚未结束; +在`SqlSplitStrategy.LOOSE`策略下`isStatementBeginning` 为`true`, 因为语法解析树中这条SQL被拆分成了CREATE独立语句与SELECT独立语句。 + +可以通过第三个`options`参数设置策略: +```typescript +hive.getSemanticContextAtCaretPosition(sql, pos, { splitSqlStrategy: SqlSplitStrategy.LOOSE }); +``` + ### 其他 API - `createLexer` 创建一个 Antlr4 Lexer 实例并返回; diff --git a/README.md b/README.md index 7d65aa8d0..30a472b18 100644 --- a/README.md +++ b/README.md @@ -357,6 +357,57 @@ Call the `getAllEntities` method on the SQL instance, and pass in the sql text a Position is not required, if the position is passed, then in the collected entities, if the entity is located under the statement where the corresponding position is located, then the statement object to which the entity belongs will be marked with `isContainCaret`, which can help you quickly filter out the required entities when combined with the code completion function. +### Get semantic context information + +Call the `getSemanticContextAtCaretPosition` method on the SQL instance, passing in the sql text and the line and column numbers at the specified position, for example: + +```typescript +import { HiveSQL } from 'dt-sql-parser'; + +const hive = new HiveSQL(); +const sql = 'SELECT * FROM tb;'; +const pos = { lineNumber: 1, column: 18 }; // after 'tb;' +const semanticContext = hive.getSemanticContextAtCaretPosition(sql, pos); + +console.log(semanticContext); +``` + +*output* + +```typescript +/* +{ + isStatementBeginning: true, +} +*/ +``` + +Currently, the semantic context information that can be collected is as follows. If there are more requirements, please submit an [issue](https://github.com/DTStack/dt-sql-parser/issues). + +- `isStatementBeginning` Whether the current input position is the beginning of a statement + +The **default strategy** for `isStatementBeginning` is `SqlSplitStrategy.STRICT` + +There are two optional strategies: +- `SqlSplitStrategy.STRICT` Strict strategy, only the statement delimiter `;` is used as the identifier for the end of the previous statement +- `SqlSplitStrategy.LOOSE` Loose strategy, based on the syntax parsing tree to split SQL + +The difference between the two strategies: +For example, if the input SQL is: +```sql +CREATE TABLE tb (id INT) + +SELECT +``` +In the `SqlSplitStrategy.STRICT` strategy, `isStatementBeginning` is `false`, because the CREATE statement is not terminated by a semicolon. + +In the `SqlSplitStrategy.LOOSE` strategy, `isStatementBeginning` is `true`, because the syntax parsing tree splits the SQL into two independent statements: CREATE and SELECT. + +You can set the strategy through the third `options` parameter: +```typescript +hive.getSemanticContextAtCaretPosition(sql, pos, { splitSqlStrategy: SqlSplitStrategy.LOOSE }); +``` + ### Other API - `createLexer` Create an instance of Antlr4 Lexer and return it; diff --git a/benchmark/benchmark.config.ts b/benchmark/benchmark.config.ts index f77731eb9..9a1b10c74 100644 --- a/benchmark/benchmark.config.ts +++ b/benchmark/benchmark.config.ts @@ -80,6 +80,11 @@ const testFiles: TestFile[] = [ includes: ['flink'], testTypes: ['getSuggestionAtCaretPosition'], }, + { + name: 'Collect Semantics', + sqlFileName: 'select.sql', + testTypes: ['getSemanticContextAtCaretPosition'], + }, ]; export default { diff --git a/benchmark/data/params.json b/benchmark/data/params.json index 5e4525c15..5ceb91e37 100644 --- a/benchmark/data/params.json +++ b/benchmark/data/params.json @@ -6,5 +6,8 @@ "suggestion_flink": { "getAllEntities": ["$sql", { "lineNumber": 1020, "column": 38 }], "getSuggestionAtCaretPosition": ["$sql", { "lineNumber": 1020, "column": 38 }] + }, + "select": { + "getSemanticContextAtCaretPosition": ["$sql", { "lineNumber": 997, "column": 25 }] } } diff --git a/benchmark_reports/cold_start/flink.benchmark.md b/benchmark_reports/cold_start/flink.benchmark.md index b286177b8..d3764583a 100644 --- a/benchmark_reports/cold_start/flink.benchmark.md +++ b/benchmark_reports/cold_start/flink.benchmark.md @@ -4,16 +4,16 @@ FlinkSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,16 +21,17 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 227 | -|Query Collection| validate | 1015 | 221 | -| Insert Columns | getAllTokens | 1001 | 65 | -| Insert Columns | validate | 1001 | 65 | -| Create Table | getAllTokens | 1004 | 27 | -| Create Table | validate | 1004 | 26 | -| Split SQL | splitSQLByStatement | 999 | 52 | -|Collect Entities| getAllEntities | 1056 | 141 | -| Suggestion |getSuggestionAtCaretPosition| 1056 | 131 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 257 | +| Query Collection| validate | 1015 | 277 | +| Insert Columns | getAllTokens | 1001 | 66 | +| Insert Columns | validate | 1001 | 67 | +| Create Table | getAllTokens | 1004 | 27 | +| Create Table | validate | 1004 | 28 | +| Split SQL | splitSQLByStatement | 999 | 53 | +| Collect Entities| getAllEntities | 1056 | 191 | +| Suggestion | getSuggestionAtCaretPosition | 1056 | 185 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 247 | diff --git a/benchmark_reports/cold_start/hive.benchmark.md b/benchmark_reports/cold_start/hive.benchmark.md index 59aef79d0..bd318df84 100644 --- a/benchmark_reports/cold_start/hive.benchmark.md +++ b/benchmark_reports/cold_start/hive.benchmark.md @@ -4,16 +4,16 @@ HiveSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 185 | -|Query Collection| validate | 1015 | 179 | -| Update Table | getAllTokens | 1011 | 112 | -| Update Table | validate | 1011 | 109 | -| Insert Columns | getAllTokens | 1001 | 329 | -| Insert Columns | validate | 1001 | 329 | -| Create Table | getAllTokens | 1002 | 21 | -| Create Table | validate | 1002 | 20 | -| Split SQL | splitSQLByStatement | 1001 | 72 | -|Collect Entities| getAllEntities | 1066 | 106 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 100 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 194 | +| Query Collection| validate | 1015 | 194 | +| Update Table | getAllTokens | 1011 | 126 | +| Update Table | validate | 1011 | 119 | +| Insert Columns | getAllTokens | 1001 | 326 | +| Insert Columns | validate | 1001 | 323 | +| Create Table | getAllTokens | 1002 | 21 | +| Create Table | validate | 1002 | 20 | +| Split SQL | splitSQLByStatement | 1001 | 71 | +| Collect Entities| getAllEntities | 1066 | 338 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 148 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 201 | diff --git a/benchmark_reports/cold_start/impala.benchmark.md b/benchmark_reports/cold_start/impala.benchmark.md index c9b5f0ed4..4c4cb6f61 100644 --- a/benchmark_reports/cold_start/impala.benchmark.md +++ b/benchmark_reports/cold_start/impala.benchmark.md @@ -4,16 +4,16 @@ ImpalaSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 71 | -|Query Collection| validate | 1015 | 71 | -| Update Table | getAllTokens | 1011 | 113 | -| Update Table | validate | 1011 | 108 | -| Insert Columns | getAllTokens | 1001 | 208 | -| Insert Columns | validate | 1001 | 213 | -| Create Table | getAllTokens | 1002 | 23 | -| Create Table | validate | 1002 | 23 | -| Split SQL | splitSQLByStatement | 1001 | 65 | -|Collect Entities| getAllEntities | 1066 | 82 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 83 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 77 | +| Query Collection| validate | 1015 | 72 | +| Update Table | getAllTokens | 1011 | 120 | +| Update Table | validate | 1011 | 121 | +| Insert Columns | getAllTokens | 1001 | 218 | +| Insert Columns | validate | 1001 | 217 | +| Create Table | getAllTokens | 1002 | 25 | +| Create Table | validate | 1002 | 25 | +| Split SQL | splitSQLByStatement | 1001 | 67 | +| Collect Entities| getAllEntities | 1066 | 93 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 101 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 80 | diff --git a/benchmark_reports/cold_start/mysql.benchmark.md b/benchmark_reports/cold_start/mysql.benchmark.md index 93bbc7b22..184191377 100644 --- a/benchmark_reports/cold_start/mysql.benchmark.md +++ b/benchmark_reports/cold_start/mysql.benchmark.md @@ -4,16 +4,16 @@ MySQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 1281 | -|Query Collection| validate | 1015 | 1254 | -| Update Table | getAllTokens | 1011 | 876 | -| Update Table | validate | 1011 | 842 | -| Insert Columns | getAllTokens | 1001 | 261 | -| Insert Columns | validate | 1001 | 266 | -| Create Table | getAllTokens | 1002 | 48 | -| Create Table | validate | 1002 | 45 | -| Split SQL | splitSQLByStatement | 1001 | 287 | -|Collect Entities| getAllEntities | 1066 | 474 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 462 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 1339 | +| Query Collection| validate | 1015 | 1305 | +| Update Table | getAllTokens | 1011 | 860 | +| Update Table | validate | 1011 | 898 | +| Insert Columns | getAllTokens | 1001 | 282 | +| Insert Columns | validate | 1001 | 284 | +| Create Table | getAllTokens | 1002 | 48 | +| Create Table | validate | 1002 | 50 | +| Split SQL | splitSQLByStatement | 1001 | 305 | +| Collect Entities| getAllEntities | 1066 | 653 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 637 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 1418 | diff --git a/benchmark_reports/cold_start/postgresql.benchmark.md b/benchmark_reports/cold_start/postgresql.benchmark.md index 2065d5e5e..4a3810e74 100644 --- a/benchmark_reports/cold_start/postgresql.benchmark.md +++ b/benchmark_reports/cold_start/postgresql.benchmark.md @@ -4,16 +4,16 @@ PostgreSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 1086 | -|Query Collection| validate | 1015 | 1078 | -| Update Table | getAllTokens | 1011 | 1193 | -| Update Table | validate | 1011 | 1183 | -| Insert Columns | getAllTokens | 1001 | 539 | -| Insert Columns | validate | 1001 | 565 | -| Create Table | getAllTokens | 1002 | 294 | -| Create Table | validate | 1002 | 275 | -| Split SQL | splitSQLByStatement | 1001 | 597 | -|Collect Entities| getAllEntities | 1066 | 797 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 776 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 1008 | +| Query Collection| validate | 1015 | 955 | +| Update Table | getAllTokens | 1011 | 941 | +| Update Table | validate | 1011 | 936 | +| Insert Columns | getAllTokens | 1001 | 534 | +| Insert Columns | validate | 1001 | 547 | +| Create Table | getAllTokens | 1002 | 288 | +| Create Table | validate | 1002 | 288 | +| Split SQL | splitSQLByStatement | 1001 | 522 | +| Collect Entities| getAllEntities | 1066 | 744 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 719 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 941 | diff --git a/benchmark_reports/cold_start/spark.benchmark.md b/benchmark_reports/cold_start/spark.benchmark.md index 73da08c66..f2a3b611b 100644 --- a/benchmark_reports/cold_start/spark.benchmark.md +++ b/benchmark_reports/cold_start/spark.benchmark.md @@ -4,16 +4,16 @@ SparkSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 268 | -|Query Collection| validate | 1015 | 259 | -| Update Table | getAllTokens | 1011 | 232 | -| Update Table | validate | 1011 | 226 | -| Insert Columns | getAllTokens | 1001 | 198 | -| Insert Columns | validate | 1001 | 200 | -| Create Table | getAllTokens | 1002 | 29 | -| Create Table | validate | 1002 | 30 | -| Split SQL | splitSQLByStatement | 1001 | 111 | -|Collect Entities| getAllEntities | 1066 | 170 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 164 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 287 | +| Query Collection| validate | 1015 | 277 | +| Update Table | getAllTokens | 1011 | 264 | +| Update Table | validate | 1011 | 253 | +| Insert Columns | getAllTokens | 1001 | 216 | +| Insert Columns | validate | 1001 | 213 | +| Create Table | getAllTokens | 1002 | 29 | +| Create Table | validate | 1002 | 30 | +| Split SQL | splitSQLByStatement | 1001 | 132 | +| Collect Entities| getAllEntities | 1066 | 298 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 263 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 319 | diff --git a/benchmark_reports/cold_start/trino.benchmark.md b/benchmark_reports/cold_start/trino.benchmark.md index f6be16797..8c62f0b74 100644 --- a/benchmark_reports/cold_start/trino.benchmark.md +++ b/benchmark_reports/cold_start/trino.benchmark.md @@ -4,16 +4,16 @@ TrinoSQL ### Report Time -2024/9/9 19:55:03 +2024/12/18 14:50:08 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Cold Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 89 | -|Query Collection| validate | 1015 | 90 | -| Update Table | getAllTokens | 1011 | 109 | -| Update Table | validate | 1011 | 104 | -| Insert Columns | getAllTokens | 1001 | 202 | -| Insert Columns | validate | 1001 | 202 | -| Create Table | getAllTokens | 1002 | 27 | -| Create Table | validate | 1002 | 26 | -| Split SQL | splitSQLByStatement | 1001 | 71 | -|Collect Entities| getAllEntities | 1066 | 101 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 94 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 91 | +| Query Collection| validate | 1015 | 94 | +| Update Table | getAllTokens | 1011 | 114 | +| Update Table | validate | 1011 | 127 | +| Insert Columns | getAllTokens | 1001 | 214 | +| Insert Columns | validate | 1001 | 204 | +| Create Table | getAllTokens | 1002 | 28 | +| Create Table | validate | 1002 | 28 | +| Split SQL | splitSQLByStatement | 1001 | 72 | +| Collect Entities| getAllEntities | 1066 | 119 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 117 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 108 | diff --git a/benchmark_reports/hot_start/flink.benchmark.md b/benchmark_reports/hot_start/flink.benchmark.md index 5d42130f2..472d2dbc1 100644 --- a/benchmark_reports/hot_start/flink.benchmark.md +++ b/benchmark_reports/hot_start/flink.benchmark.md @@ -4,16 +4,16 @@ FlinkSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,16 +21,17 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 26 | -|Query Collection| validate | 1015 | 29 | -| Insert Columns | getAllTokens | 1001 | 61 | -| Insert Columns | validate | 1001 | 58 | -| Create Table | getAllTokens | 1004 | 16 | -| Create Table | validate | 1004 | 15 | -| Split SQL | splitSQLByStatement | 999 | 22 | -|Collect Entities| getAllEntities | 1056 | 30 | -| Suggestion |getSuggestionAtCaretPosition| 1056 | 28 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 25 | +| Query Collection| validate | 1015 | 25 | +| Insert Columns | getAllTokens | 1001 | 60 | +| Insert Columns | validate | 1001 | 61 | +| Create Table | getAllTokens | 1004 | 18 | +| Create Table | validate | 1004 | 17 | +| Split SQL | splitSQLByStatement | 999 | 22 | +| Collect Entities| getAllEntities | 1056 | 70 | +| Suggestion | getSuggestionAtCaretPosition | 1056 | 70 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 26 | diff --git a/benchmark_reports/hot_start/hive.benchmark.md b/benchmark_reports/hot_start/hive.benchmark.md index 061a23970..b421ba2e1 100644 --- a/benchmark_reports/hot_start/hive.benchmark.md +++ b/benchmark_reports/hot_start/hive.benchmark.md @@ -4,16 +4,16 @@ HiveSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 21 | -|Query Collection| validate | 1015 | 20 | -| Update Table | getAllTokens | 1011 | 22 | -| Update Table | validate | 1011 | 22 | -| Insert Columns | getAllTokens | 1001 | 293 | -| Insert Columns | validate | 1001 | 287 | -| Create Table | getAllTokens | 1002 | 12 | -| Create Table | validate | 1002 | 12 | -| Split SQL | splitSQLByStatement | 1001 | 23 | -|Collect Entities| getAllEntities | 1066 | 20 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 17 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 20 | +| Query Collection| validate | 1015 | 20 | +| Update Table | getAllTokens | 1011 | 21 | +| Update Table | validate | 1011 | 21 | +| Insert Columns | getAllTokens | 1001 | 294 | +| Insert Columns | validate | 1001 | 293 | +| Create Table | getAllTokens | 1002 | 12 | +| Create Table | validate | 1002 | 12 | +| Split SQL | splitSQLByStatement | 1001 | 24 | +| Collect Entities| getAllEntities | 1066 | 233 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 58 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 29 | diff --git a/benchmark_reports/hot_start/impala.benchmark.md b/benchmark_reports/hot_start/impala.benchmark.md index 83accc433..f876e0e8e 100644 --- a/benchmark_reports/hot_start/impala.benchmark.md +++ b/benchmark_reports/hot_start/impala.benchmark.md @@ -4,16 +4,16 @@ ImpalaSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 25 | -|Query Collection| validate | 1015 | 24 | -| Update Table | getAllTokens | 1011 | 24 | -| Update Table | validate | 1011 | 23 | -| Insert Columns | getAllTokens | 1001 | 186 | -| Insert Columns | validate | 1001 | 187 | -| Create Table | getAllTokens | 1002 | 16 | -| Create Table | validate | 1002 | 15 | -| Split SQL | splitSQLByStatement | 1001 | 23 | -|Collect Entities| getAllEntities | 1066 | 21 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 18 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 27 | +| Query Collection| validate | 1015 | 25 | +| Update Table | getAllTokens | 1011 | 26 | +| Update Table | validate | 1011 | 24 | +| Insert Columns | getAllTokens | 1001 | 190 | +| Insert Columns | validate | 1001 | 191 | +| Create Table | getAllTokens | 1002 | 15 | +| Create Table | validate | 1002 | 14 | +| Split SQL | splitSQLByStatement | 1001 | 22 | +| Collect Entities| getAllEntities | 1066 | 30 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 27 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 26 | diff --git a/benchmark_reports/hot_start/mysql.benchmark.md b/benchmark_reports/hot_start/mysql.benchmark.md index b0999ee29..51c9a8bf6 100644 --- a/benchmark_reports/hot_start/mysql.benchmark.md +++ b/benchmark_reports/hot_start/mysql.benchmark.md @@ -4,16 +4,16 @@ MySQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 28 | -|Query Collection| validate | 1015 | 29 | -| Update Table | getAllTokens | 1011 | 26 | -| Update Table | validate | 1011 | 26 | -| Insert Columns | getAllTokens | 1001 | 184 | -| Insert Columns | validate | 1001 | 188 | -| Create Table | getAllTokens | 1002 | 23 | -| Create Table | validate | 1002 | 19 | -| Split SQL | splitSQLByStatement | 1001 | 27 | -|Collect Entities| getAllEntities | 1066 | 29 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 23 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 29 | +| Query Collection| validate | 1015 | 29 | +| Update Table | getAllTokens | 1011 | 27 | +| Update Table | validate | 1011 | 27 | +| Insert Columns | getAllTokens | 1001 | 181 | +| Insert Columns | validate | 1001 | 184 | +| Create Table | getAllTokens | 1002 | 19 | +| Create Table | validate | 1002 | 20 | +| Split SQL | splitSQLByStatement | 1001 | 28 | +| Collect Entities| getAllEntities | 1066 | 106 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 75 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 31 | diff --git a/benchmark_reports/hot_start/postgresql.benchmark.md b/benchmark_reports/hot_start/postgresql.benchmark.md index a4fc43f09..87973b803 100644 --- a/benchmark_reports/hot_start/postgresql.benchmark.md +++ b/benchmark_reports/hot_start/postgresql.benchmark.md @@ -4,16 +4,16 @@ PostgreSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 36 | -|Query Collection| validate | 1015 | 37 | -| Update Table | getAllTokens | 1011 | 32 | -| Update Table | validate | 1011 | 31 | -| Insert Columns | getAllTokens | 1001 | 213 | -| Insert Columns | validate | 1001 | 214 | -| Create Table | getAllTokens | 1002 | 18 | -| Create Table | validate | 1002 | 19 | -| Split SQL | splitSQLByStatement | 1001 | 30 | -|Collect Entities| getAllEntities | 1066 | 31 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 24 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 40 | +| Query Collection| validate | 1015 | 44 | +| Update Table | getAllTokens | 1011 | 33 | +| Update Table | validate | 1011 | 34 | +| Insert Columns | getAllTokens | 1001 | 223 | +| Insert Columns | validate | 1001 | 230 | +| Create Table | getAllTokens | 1002 | 21 | +| Create Table | validate | 1002 | 20 | +| Split SQL | splitSQLByStatement | 1001 | 29 | +| Collect Entities| getAllEntities | 1066 | 41 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 40 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 41 | diff --git a/benchmark_reports/hot_start/spark.benchmark.md b/benchmark_reports/hot_start/spark.benchmark.md index f859015b4..344e4495c 100644 --- a/benchmark_reports/hot_start/spark.benchmark.md +++ b/benchmark_reports/hot_start/spark.benchmark.md @@ -4,16 +4,16 @@ SparkSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 24 | -|Query Collection| validate | 1015 | 28 | -| Update Table | getAllTokens | 1011 | 22 | -| Update Table | validate | 1011 | 22 | -| Insert Columns | getAllTokens | 1001 | 167 | -| Insert Columns | validate | 1001 | 172 | -| Create Table | getAllTokens | 1002 | 13 | -| Create Table | validate | 1002 | 14 | -| Split SQL | splitSQLByStatement | 1001 | 23 | -|Collect Entities| getAllEntities | 1066 | 30 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 24 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 24 | +| Query Collection| validate | 1015 | 24 | +| Update Table | getAllTokens | 1011 | 23 | +| Update Table | validate | 1011 | 22 | +| Insert Columns | getAllTokens | 1001 | 172 | +| Insert Columns | validate | 1001 | 168 | +| Create Table | getAllTokens | 1002 | 13 | +| Create Table | validate | 1002 | 16 | +| Split SQL | splitSQLByStatement | 1001 | 25 | +| Collect Entities| getAllEntities | 1066 | 127 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 118 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 27 | diff --git a/benchmark_reports/hot_start/trino.benchmark.md b/benchmark_reports/hot_start/trino.benchmark.md index b14e5fd06..b950d9a30 100644 --- a/benchmark_reports/hot_start/trino.benchmark.md +++ b/benchmark_reports/hot_start/trino.benchmark.md @@ -4,16 +4,16 @@ TrinoSQL ### Report Time -2024/9/9 19:47:32 +2024/12/18 14:59:09 ### Device -macOS 14.4.1 +macOS 15.0.1 (8) arm64 Apple M1 Pro 16.00 GB ### Version `nodejs`: v21.6.1 -`dt-sql-parser`: v4.0.2 +`dt-sql-parser`: v4.1.0-beta.0 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -21,18 +21,19 @@ macOS 14.4.1 Hot Start ### Report -| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| -|----------------|----------------------------|--------|----------------| -|Query Collection| getAllTokens | 1015 | 24 | -|Query Collection| validate | 1015 | 24 | -| Update Table | getAllTokens | 1011 | 23 | -| Update Table | validate | 1011 | 25 | -| Insert Columns | getAllTokens | 1001 | 181 | -| Insert Columns | validate | 1001 | 182 | -| Create Table | getAllTokens | 1002 | 17 | -| Create Table | validate | 1002 | 16 | -| Split SQL | splitSQLByStatement | 1001 | 24 | -|Collect Entities| getAllEntities | 1066 | 21 | -| Suggestion |getSuggestionAtCaretPosition| 1066 | 19 | +| Benchmark Name | Method Name |SQL Rows|Average Time(ms)| +|-----------------|---------------------------------|--------|----------------| +| Query Collection| getAllTokens | 1015 | 27 | +| Query Collection| validate | 1015 | 28 | +| Update Table | getAllTokens | 1011 | 25 | +| Update Table | validate | 1011 | 30 | +| Insert Columns | getAllTokens | 1001 | 193 | +| Insert Columns | validate | 1001 | 189 | +| Create Table | getAllTokens | 1002 | 16 | +| Create Table | validate | 1002 | 16 | +| Split SQL | splitSQLByStatement | 1001 | 25 | +| Collect Entities| getAllEntities | 1066 | 33 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 30 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 27 | diff --git a/package.json b/package.json index d0eba4355..8de7d4863 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "prepublishOnly": "npm run build", "antlr4": "node ./scripts/antlr4.js", "build": "rm -rf dist && tsc", + "watch": "tsc -w", "check-types": "tsc -p ./tsconfig.json && tsc -p ./test/tsconfig.json", "test": "NODE_OPTIONS=--max_old_space_size=4096 && jest", "release": "node ./scripts/release.js", diff --git a/src/grammar/flink/FlinkSqlLexer.g4 b/src/grammar/flink/FlinkSqlLexer.g4 index d13bb9a6b..0b1148e76 100644 --- a/src/grammar/flink/FlinkSqlLexer.g4 +++ b/src/grammar/flink/FlinkSqlLexer.g4 @@ -11,8 +11,8 @@ options { // SKIP -SPACE : (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); -COMMENT_INPUT : '/*' .*? '*/' -> channel(HIDDEN); +WHITE_SPACE : (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); +BRACKETED_COMMENT : '/*' .*? '*/' -> channel(HIDDEN); LINE_COMMENT: (('--' | '#') ~[\r\n]* ('\r'? '\n' | EOF) | '--' ('\r'? '\n' | EOF)) -> channel(HIDDEN); /** diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index ae8c94d9e..b96892538 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -189,6 +189,10 @@ columnName | {this.shouldMatchEmpty()}? ; +columnNamePath + : uid + ; + columnNameList : LR_BRACKET columnName (COMMA columnName)* RR_BRACKET ; @@ -771,7 +775,7 @@ primaryExpression // | identifier '->' expression #lambda // | '(' identifier (',' identifier)+ ')' '->' expression #lambda | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript - | identifier # columnReference + | columnNamePath # columnReference | dereferenceDefinition # dereference | LR_BRACKET expression RR_BRACKET # parenthesizedExpression // | EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET #extract diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 1d1aa7212..96350298a 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -758,6 +758,10 @@ columnName | {this.shouldMatchEmpty()}? ; +columnNamePath + : poolPath + ; + columnNameCreate : id_ ; @@ -1437,7 +1441,7 @@ subQuerySource Rules for parsing PTF clauses */ partitioningSpec - : KW_PARTITION KW_BY expressions orderByClause? + : partitionByClause orderByClause? | orderByClause | distributeByClause sortByClause? | sortByClause @@ -1613,6 +1617,10 @@ orderByClause : KW_ORDER KW_BY columnRefOrder (COMMA columnRefOrder)* ; +partitionByClause + : KW_PARTITION KW_BY expressions + ; + clusterByClause : KW_CLUSTER KW_BY expressions ; @@ -1714,7 +1722,7 @@ constant | KW_FALSE | KW_NULL | p=QUESTION - | Identifier + | columnNamePath ; intervalValue diff --git a/src/grammar/impala/ImpalaSqlLexer.g4 b/src/grammar/impala/ImpalaSqlLexer.g4 index 313bc78aa..edbe233c7 100644 --- a/src/grammar/impala/ImpalaSqlLexer.g4 +++ b/src/grammar/impala/ImpalaSqlLexer.g4 @@ -334,11 +334,11 @@ QUOTED_IDENTIFIER: '"' ( ~'"' | '""')* '"'; BACKQUOTED_IDENTIFIER: '`' ( ~'`' | '``')* '`'; -TIME_WITH_TIME_ZONE: 'TIME' WS 'WITH' WS 'TIME' WS 'ZONE'; +TIME_WITH_TIME_ZONE: 'TIME' WHITE_SPACE 'WITH' WHITE_SPACE 'TIME' WHITE_SPACE 'ZONE'; -TIMESTAMP_WITH_TIME_ZONE: 'TIMESTAMP' WS 'WITH' WS 'TIME' WS 'ZONE'; +TIMESTAMP_WITH_TIME_ZONE: 'TIMESTAMP' WHITE_SPACE 'WITH' WHITE_SPACE 'TIME' WHITE_SPACE 'ZONE'; -DOUBLE_PRECISION: 'DOUBLE' WS 'PRECISION'; +DOUBLE_PRECISION: 'DOUBLE' WHITE_SPACE 'PRECISION'; fragment EXPONENT: 'E' [+-]? DIGIT+; @@ -346,8 +346,8 @@ fragment DIGIT: [0-9]; fragment LETTER: [A-Z]; -SIMPLE_COMMENT: '--' ~[\r\n]* '\r'? '\n'? -> channel(HIDDEN); +LINE_COMMENT: '--' ~[\r\n]* '\r'? '\n'? -> channel(HIDDEN); BRACKETED_COMMENT: '/*' .*? '*/' -> channel(HIDDEN); -WS: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); \ No newline at end of file +WHITE_SPACE: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); \ No newline at end of file diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index 4348e8f44..ec4f49949 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -344,18 +344,18 @@ deleteStatement ; delete - : KW_DELETE KW_FROM? tableNamePath (KW_WHERE booleanExpression)? + : KW_DELETE KW_FROM? tableNamePath (whereClause)? ; deleteTableRef : KW_DELETE tableNamePath (KW_AS? identifier)? KW_FROM (relation (COMMA relation)*)? ( - KW_WHERE booleanExpression + whereClause )? ; updateStatement : KW_UPDATE tableNamePath KW_SET assignmentList (KW_FROM relation (COMMA relation)*)? ( - KW_WHERE booleanExpression + whereClause )? ; @@ -563,6 +563,10 @@ columnNamePath | {this.shouldMatchEmpty()}? ; +columnName + : qualifiedName + ; + tableOrViewPath : tableNamePath | viewNamePath @@ -769,9 +773,15 @@ sortItem querySpecification : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectItem (COMMA selectItem)* ( KW_FROM relation (COMMA relation)* - )? (KW_WHERE where=booleanExpression)? (KW_GROUP KW_BY groupBy)? ( - KW_HAVING having=booleanExpression - )? + )? (whereClause)? (KW_GROUP KW_BY groupBy)? (havingClause)? + ; + +whereClause + : KW_WHERE where=booleanExpression + ; + +havingClause + : KW_HAVING having=booleanExpression ; groupBy @@ -933,7 +943,7 @@ primaryExpression | KW_TRY_CAST LPAREN expression KW_AS type RPAREN # cast | KW_ARRAY LSQUARE (expression (COMMA expression)*)? RSQUARE # arrayConstructor | value=primaryExpression LSQUARE index=valueExpression RSQUARE # subscript - | identifier # columnReference + | columnName # columnReference | base=primaryExpression DOT fieldName=identifier # dereference | name=KW_CURRENT_DATE # specialDateTimeFunction | name=KW_CURRENT_TIME (LPAREN precision=INTEGER_VALUE RPAREN)? # specialDateTimeFunction @@ -1050,11 +1060,15 @@ whenClause ; filter - : KW_FILTER LPAREN KW_WHERE booleanExpression RPAREN + : KW_FILTER LPAREN whereClause RPAREN + ; + +partitionByClause + : partition+=expression (COMMA partition+=expression)* ; over - : KW_OVER LPAREN (KW_PARTITION KW_BY partition+=expression (COMMA partition+=expression)*)? ( + : KW_OVER LPAREN (KW_PARTITION KW_BY partitionByClause)? ( KW_ORDER KW_BY sortItem (COMMA sortItem)* )? windowFrame? RPAREN ; @@ -1093,7 +1107,7 @@ privilege | KW_CREATE | KW_INSERT | KW_REFRESH - | KW_SELECT (LPAREN columnName=identifier RPAREN)? + | KW_SELECT (LPAREN name=identifier RPAREN)? ; objectType diff --git a/src/grammar/mysql/MySqlLexer.g4 b/src/grammar/mysql/MySqlLexer.g4 index 875ceac64..aca51800a 100644 --- a/src/grammar/mysql/MySqlLexer.g4 +++ b/src/grammar/mysql/MySqlLexer.g4 @@ -1,27 +1,23 @@ /* -MySQL (Positive Technologies) grammar -The MIT License (MIT). -Copyright (c) 2015-2017, Ivan Kochurkin (kvanttt@gmail.com), Positive Technologies. -Copyright (c) 2017, Ivan Khudyashev (IHudyashov@ptsecurity.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -*/ + MySQL (Positive Technologies) grammar The MIT License (MIT). Copyright (c) 2015-2017, Ivan + Kochurkin (kvanttt@gmail.com), Positive Technologies. Copyright (c) 2017, Ivan Khudyashev + (IHudyashov@ptsecurity.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT + OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ // https://github.com/antlr/grammars-v4/blob/master/sql/mysql/Positive-Technologies/MySqlLexer.g4 @@ -41,9 +37,9 @@ channels { ERRORCHANNEL } -SPACE : (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); +WHITE_SPACE : (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); SPEC_MYSQL_COMMENT : '/*!' .+? '*/' -> channel(MYSQLCOMMENT); -COMMENT_INPUT : '/*' .*? '*/' -> channel(HIDDEN); +BRACKETED_COMMENT : '/*' .*? '*/' -> channel(HIDDEN); LINE_COMMENT: (('--' [ \t]* | '#') ~[\r\n]* ('\r'? '\n' | EOF) | '--' ('\r'? '\n' | EOF)) -> channel(HIDDEN); // Keywords diff --git a/src/grammar/postgresql/PostgreSqlLexer.g4 b/src/grammar/postgresql/PostgreSqlLexer.g4 index 95801828f..63bc67d26 100644 --- a/src/grammar/postgresql/PostgreSqlLexer.g4 +++ b/src/grammar/postgresql/PostgreSqlLexer.g4 @@ -808,22 +808,19 @@ PLSQLIDENTIFIER: ':"' ('\\' . | '""' | ~ ('"' | '\\'))* '"'; // -Whitespace: [ \t]+ -> channel (HIDDEN); - -Newline: ('\r' '\n'? | '\n') -> channel (HIDDEN); -// +WHITE_SPACE: (' ' | '\r' | '\t' | '\n') -> channel(HIDDEN); // COMMENTS (4.1.5) // -LineComment: '--' ~ [\r\n]* -> channel (HIDDEN); +LINE_COMMENT: '--' ~ [\r\n]* -> channel (HIDDEN); -BlockComment: ('/*' ( '/'* BlockComment | ~ [/*] | '/'+ ~ [/*] | '*'+ ~ [/*])* '*'* '*/') -> channel (HIDDEN); +BRACKETED_COMMENT: ('/*' ( '/'* BRACKETED_COMMENT | ~ [/*] | '/'+ ~ [/*] | '*'+ ~ [/*])* '*'* '*/') -> channel (HIDDEN); UnterminatedBlockComment: '/*' ( - '/'* BlockComment + '/'* BRACKETED_COMMENT | // these characters are not part of special sequences in a block comment ~ [/*] | @@ -890,18 +887,14 @@ InvalidUnterminatedEscapeStringConstant: fragment InvalidEscapeStringText: ('\'\'' | '\\' . | ~ ['\\])*; mode AfterEscapeStringConstantMode; -AfterEscapeStringConstantMode_Whitespace: Whitespace -> type (Whitespace), channel (HIDDEN); +AfterEscapeStringConstantMode_Whitespace: WHITE_SPACE -> type (WHITE_SPACE), channel (HIDDEN); -AfterEscapeStringConstantMode_Newline: - Newline -> type (Newline), channel (HIDDEN), mode (AfterEscapeStringConstantWithNewlineMode); // // AfterEscapeStringConstantMode_NotContinued: '\\' ~[\r\n] -> skip, popMode; mode AfterEscapeStringConstantWithNewlineMode; AfterEscapeStringConstantWithNewlineMode_Whitespace: - Whitespace -> type (Whitespace), channel (HIDDEN); - -AfterEscapeStringConstantWithNewlineMode_Newline: Newline -> type (Newline), channel (HIDDEN); + WHITE_SPACE -> type (WHITE_SPACE), channel (HIDDEN); AfterEscapeStringConstantWithNewlineMode_Continued: '\'' -> more, mode (EscapeStringConstantMode); diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index d5497eb87..21ae81a91 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -1,32 +1,27 @@ /* - * [The "MIT license"] - * Copyright (C) 2014 Sam Harwell, Tunnel Vision Laboratories, LLC - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is + * [The "MIT license"] Copyright (C) 2014 Sam Harwell, Tunnel Vision Laboratories, LLC + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: - * - * 1. The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * 2. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * 3. Except as contained in this notice, the name of Tunnel Vision - * Laboratories, LLC. shall not be used in advertising or otherwise to - * promote the sale, use or other dealings in this Software without prior - * written authorization from Tunnel Vision Laboratories, LLC. + * + * 1. The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. 2. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. 3. Except as contained in this notice, the name of Tunnel Vision + * Laboratories, LLC. shall not be used in advertising or otherwise to promote the sale, use or + * other dealings in this Software without prior written authorization from Tunnel Vision + * Laboratories, LLC. */ /** - * This file is an adaptation of antlr's sql/postgresql/PostgreSQLParser.g4 grammar. - * Reference: https://github.com/antlr/grammars-v4/blob/master/sql/postgresql/PostgreSQLParser.g4 + * This file is an adaptation of antlr's sql/postgresql/PostgreSQLParser.g4 grammar. Reference: + * https://github.com/antlr/grammars-v4/blob/master/sql/postgresql/PostgreSQLParser.g4 */ /** @@ -2382,6 +2377,7 @@ primaryExpression | explicitRow | OPEN_PAREN expression COMMA exprList CLOSE_PAREN | row KW_OVERLAPS row + | columnNamePath | qualifiedName | primaryExpression TYPECAST typename | (PLUS | MINUS) primaryExpression @@ -2475,6 +2471,10 @@ windowClause : KW_WINDOW windowDefinition (COMMA windowDefinition)* ; +havingClause + : KW_HAVING expression + ; + windowDefinition : colId KW_AS windowSpecification ; @@ -2714,6 +2714,10 @@ columnName | {this.shouldMatchEmpty()}? ; +columnNamePath + : colId optIndirection + ; + columnNameCreate : colId ; @@ -3598,5 +3602,5 @@ anyIdentifier ; sqlExpression - : targetList? intoClause? fromClause? whereClause? groupClause? (KW_HAVING expression)? windowClause? + : targetList? intoClause? fromClause? whereClause? groupClause? havingClause? windowClause? ; \ No newline at end of file diff --git a/src/grammar/spark/SparkSqlLexer.g4 b/src/grammar/spark/SparkSqlLexer.g4 index 33974716b..69058ced3 100644 --- a/src/grammar/spark/SparkSqlLexer.g4 +++ b/src/grammar/spark/SparkSqlLexer.g4 @@ -476,12 +476,12 @@ fragment DIGIT: [0-9]; fragment LETTER: [A-Z]; -SIMPLE_COMMENT: '--' ('\\\n' | ~[\r\n])* '\r'? '\n'? -> channel(HIDDEN); +LINE_COMMENT: '--' ('\\\n' | ~[\r\n])* '\r'? '\n'? -> channel(HIDDEN); BRACKETED_COMMENT: '/*' (BRACKETED_COMMENT | .)*? ('*/' | {this.markUnclosedComment();} EOF) -> channel(HIDDEN); -WS: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); +WHITE_SPACE: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); // Catch-all for anything we can't recognize. // We use this to be able to ignore and recover all the text diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 068b365e8..2dad67eae 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -48,28 +48,30 @@ statement | KW_USE namespace? namespaceName # useNamespace | KW_SET KW_CATALOG (identifier | stringLit) # setCatalog | KW_CREATE namespace (ifNotExists)? namespaceNameCreate ( - commentSpec - | locationSpec + (KW_COMMENT comment=stringLit) + | (KW_LOCATION stringLit) | (KW_WITH (KW_DBPROPERTIES | KW_PROPERTIES) propertyList) - )* # 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 + )* # createNamespace + | KW_ALTER namespace namespaceName KW_SET (KW_DBPROPERTIES | KW_PROPERTIES) propertyList # setNamespaceProperties + | KW_ALTER namespace namespaceName KW_SET KW_LOCATION stringLit # setNamespaceLocation + | KW_DROP namespace (ifExists)? namespaceName (KW_RESTRICT | KW_CASCADE)? # dropNamespace + | KW_SHOW (KW_NAMESPACES | KW_DATABASES | KW_SCHEMAS) ((KW_FROM | KW_IN) multipartIdentifier)? ( + KW_LIKE? pattern=stringLit + )? # showNamespaces + | KW_CREATE KW_TEMPORARY? KW_EXTERNAL? KW_TABLE (ifNotExists)? tableNameCreate ( + 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_LOCATION stringLit) | (KW_TBLPROPERTIES tableProps=propertyList) | tableLifecycle )* # createTableLike - | replaceTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( - KW_AS? query - )? # replaceTable + | (KW_CREATE KW_OR)? KW_REPLACE KW_TABLE tableNameCreate ( + 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 @@ -97,7 +99,7 @@ statement | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_DROP (ifExists)? partitionSpec ( COMMA partitionSpec )* KW_PURGE? # dropTablePartitions - | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET locationSpec # setTableLocation + | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_LOCATION stringLit # 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 @@ -105,7 +107,7 @@ statement | 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_COMMENT comment=stringLit) | (KW_PARTITIONED KW_ON identifierList) | (KW_TBLPROPERTIES propertyList) )* KW_AS query # createView @@ -114,7 +116,7 @@ statement )? 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)* + KW_USING (identifier stringLit) (COMMA (identifier stringLit))* )? # createFunction | // Self developed materialized view syntax by dtstack, spark not support now. @@ -125,8 +127,8 @@ statement | bucketSpec | rowFormat | createFileFormat - | locationSpec - | commentSpec + | (KW_LOCATION stringLit) + | (KW_COMMENT comment=stringLit) | (KW_TBLPROPERTIES tableProps=propertyList) )* KW_AS query # createMaterializedView | KW_DROP KW_TEMPORARY? KW_FUNCTION (ifExists)? functionName # dropFunction @@ -139,7 +141,7 @@ statement | 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_SHOW (KW_USER | KW_SYSTEM | KW_ALL)? KW_FUNCTIONS ((KW_FROM | KW_IN) ns=namespaceName)? ( KW_LIKE? (legacy=multipartIdentifier | pattern=stringLit) )? # showFunctions | KW_SHOW KW_CREATE KW_TABLE tableName (KW_AS KW_SERDE)? # showCreateTable @@ -153,31 +155,33 @@ statement | (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 commentStr # commentNamespace - | KW_COMMENT KW_ON KW_TABLE tableName KW_IS commentStr # 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_COMMENT KW_ON ((namespace namespaceName) | (KW_TABLE tableName)) KW_IS ( + stringLit + | KW_NULL + ) # 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 (stringLit | KW_LOCAL) # 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 quotedIdentifier EQ BACKQUOTED_IDENTIFIER # setConfig + | KW_SET quotedIdentifier (EQ .*?)? # setConfigAndValue + | KW_SET .*? EQ BACKQUOTED_IDENTIFIER # setConfigAnyKey + | KW_SET .*? # setAny + | KW_RESET quotedIdentifier # 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)? # createIndex @@ -186,74 +190,43 @@ statement | unsupportedHiveNativeCommands .*? # unsupportHiveCommands ; -timezone - : stringLit - | KW_LOCAL - ; - -configKey - : quotedIdentifier - ; - -configValue - : backQuotedIdentifier - ; - unsupportedHiveNativeCommands - : kw1=KW_CREATE kw2=KW_ROLE - | kw1=KW_DROP kw2=KW_ROLE - | kw1=KW_GRANT kw2=KW_ROLE? - | kw1=KW_REVOKE kw2=KW_ROLE? - | kw1=KW_SHOW kw2=KW_GRANT + : kw1=(KW_CREATE | KW_DROP) kw2=KW_ROLE + | kw1=(KW_GRANT | KW_REVOKE) kw2=KW_ROLE? + | kw1=KW_SHOW kw2=( + KW_GRANT + | KW_PRINCIPALS + | KW_COMPACTIONS + | KW_TRANSACTIONS + | KW_INDEXES + | KW_LOCKS + ) | kw1=KW_SHOW kw2=KW_ROLE kw3=KW_GRANT? - | kw1=KW_SHOW kw2=KW_PRINCIPALS - | kw1=KW_SHOW kw2=KW_ROLES - | kw1=KW_SHOW kw2=KW_CURRENT kw3=KW_ROLES - | kw1=KW_EXPORT kw2=KW_TABLE - | kw1=KW_IMPORT kw2=KW_TABLE - | kw1=KW_SHOW kw2=KW_COMPACTIONS + | kw1=KW_SHOW KW_CURRENT? KW_ROLES | kw1=KW_SHOW kw2=KW_CREATE kw3=KW_TABLE - | kw1=KW_SHOW kw2=KW_TRANSACTIONS - | kw1=KW_SHOW kw2=KW_INDEXES - | kw1=KW_SHOW kw2=KW_LOCKS - | kw1=KW_CREATE kw2=KW_INDEX - | kw1=KW_DROP kw2=KW_INDEX - | kw1=KW_ALTER kw2=KW_INDEX - | kw1=KW_LOCK kw2=KW_TABLE - | kw1=KW_LOCK kw2=KW_DATABASE - | kw1=KW_UNLOCK kw2=KW_TABLE - | kw1=KW_UNLOCK kw2=KW_DATABASE - | kw1=KW_CREATE kw2=KW_TEMPORARY kw3=KW_MACRO - | kw1=KW_DROP kw2=KW_TEMPORARY kw3=KW_MACRO - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_CLUSTERED - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_CLUSTERED kw4=KW_BY - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_SORTED + | kw1=(KW_CREATE | KW_DROP | KW_ALTER) kw2=KW_INDEX + | kw1=(KW_EXPORT | KW_IMPORT | KW_LOCK | KW_UNLOCK) kw2=KW_TABLE + | kw1=(KW_LOCK | KW_UNLOCK) kw2=KW_DATABASE + | kw1=(KW_CREATE | KW_DROP) kw2=KW_TEMPORARY kw3=KW_MACRO + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=(KW_CLUSTERED | KW_SORTED | KW_SKEWED) + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=(KW_CLUSTERED | KW_SKEWED) kw4=KW_BY | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_SKEWED kw4=KW_BY - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_SKEWED | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_STORED kw5=KW_AS kw6=KW_DIRECTORIES | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_SET kw4=KW_SKEWED kw5=KW_LOCATION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_EXCHANGE kw4=KW_PARTITION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_ARCHIVE kw4=KW_PARTITION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_UNARCHIVE kw4=KW_PARTITION + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=(KW_EXCHANGE | KW_ARCHIVE | KW_UNARCHIVE) kw4=KW_PARTITION | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_TOUCH - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_COMPACT - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_CONCATENATE - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_SET kw4=KW_FILEFORMAT - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_REPLACE kw4=KW_COLUMNS + | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? ( + KW_COMPACT + | KW_CONCATENATE + | (KW_SET KW_FILEFORMAT) + | (KW_REPLACE KW_COLUMNS) + ) | kw1=KW_START kw2=KW_TRANSACTION | kw1=KW_COMMIT | kw1=KW_ROLLBACK | kw1=KW_DFS ; -createTableHeader - : KW_CREATE KW_TEMPORARY? KW_EXTERNAL? KW_TABLE (ifNotExists)? tableNameCreate - ; - -replaceTableHeader - : (KW_CREATE KW_OR)? KW_REPLACE KW_TABLE tableNameCreate - ; - bucketSpec : KW_CLUSTERED KW_BY identifierList (KW_SORTED KW_BY orderedIdentifierList)? KW_INTO INTEGER_VALUE KW_BUCKETS ; @@ -293,7 +266,7 @@ insertInto ; partitionSpecLocation - : partitionSpec locationSpec? + : partitionSpec (KW_LOCATION stringLit)? ; partitionSpec @@ -311,12 +284,6 @@ namespace | KW_SCHEMA ; -namespaces - : KW_NAMESPACES - | KW_DATABASES - | KW_SCHEMAS - ; - describeFuncName : identifierReference | stringLit @@ -349,8 +316,8 @@ createTableClauses | bucketSpec | rowFormat | createFileFormat - | locationSpec - | commentSpec + | KW_LOCATION stringLit + | KW_COMMENT comment=stringLit | (KW_TBLPROPERTIES tableProps=propertyList) | tableLifecycle )* @@ -411,13 +378,9 @@ storageHandler : stringLit (KW_WITH KW_SERDEPROPERTIES propertyList)? ; -resource - : identifier stringLit - ; - dmlStatementNoWith : insertInto query # insertFromQuery - | fromClause multiInsertQueryBody+ # multipleInsert + | fromClause (insertInto fromStatementBody)+ # 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 ( @@ -455,6 +418,10 @@ columnName | {this.shouldMatchEmpty()}? ; +columnNamePath + : multipartIdentifier + ; + columnNameSeq : columnName (COMMA columnName)* ; @@ -469,15 +436,23 @@ identifierReference ; queryOrganization - : (KW_ORDER KW_BY order+=sortItem (COMMA order+=sortItem)*)? ( - KW_CLUSTER KW_BY clusterBy+=expression (COMMA clusterBy+=expression)* - )? (KW_DISTRIBUTE KW_BY distributeBy+=expression (COMMA distributeBy+=expression)*)? ( - KW_SORT KW_BY sort+=sortItem (COMMA sort+=sortItem)* - )? windowClause? (KW_LIMIT (KW_ALL | limit=expression))? (KW_OFFSET offset=expression)? + : (KW_ORDER KW_BY orderOrSortByClause)? (KW_CLUSTER KW_BY clusterOrDistributeBy)? ( + KW_DISTRIBUTE KW_BY clusterOrDistributeBy + )? (KW_SORT KW_BY orderOrSortByClause)? windowClause? limitClause? ( + KW_OFFSET offset=expression + )? + ; + +limitClause + : KW_LIMIT (KW_ALL | limit=expression) ; -multiInsertQueryBody - : insertInto fromStatementBody +orderOrSortByClause + : sortItem (COMMA sortItem)* + ; + +clusterOrDistributeBy + : expression (COMMA expression)* ; queryTerm @@ -489,9 +464,9 @@ queryTerm queryPrimary : querySpecification - | fromStatement + | fromClause fromStatementBody+ | KW_TABLE tableName - | inlineTable + | KW_VALUES expression (COMMA expression)* tableAlias | LEFT_PAREN query RIGHT_PAREN ; @@ -501,10 +476,6 @@ sortItem )? ; -fromStatement - : fromClause fromStatementBody+ - ; - fromStatementBody : transformClause whereClause? queryOrganization | selectClause lateralView* whereClause? aggregationClause? havingClause? windowClause? queryOrganization @@ -538,7 +509,10 @@ setClause ; matchedClause - : KW_WHEN KW_MATCHED (KW_AND matchedCond=booleanExpression)? KW_THEN matchedAction + : KW_WHEN KW_MATCHED (KW_AND matchedCond=booleanExpression)? KW_THEN ( + KW_DELETE + | KW_UPDATE KW_SET (ASTERISK | assignmentList) + ) ; notMatchedClause @@ -546,13 +520,10 @@ notMatchedClause ; notMatchedBySourceClause - : KW_WHEN KW_NOT KW_MATCHED KW_BY KW_SOURCE (KW_AND notMatchedBySourceCond=booleanExpression)? KW_THEN notMatchedBySourceAction - ; - -matchedAction - : KW_DELETE - | KW_UPDATE KW_SET ASTERISK - | KW_UPDATE KW_SET assignmentList + : KW_WHEN KW_NOT KW_MATCHED KW_BY KW_SOURCE (KW_AND notMatchedBySourceCond=booleanExpression)? KW_THEN ( + KW_DELETE + | KW_UPDATE KW_SET assignmentList + ) ; notMatchedAction @@ -562,11 +533,6 @@ notMatchedAction )* RIGHT_PAREN ; -notMatchedBySourceAction - : KW_DELETE - | KW_UPDATE KW_SET assignmentList - ; - assignmentList : assignment (COMMA assignment)* ; @@ -598,14 +564,8 @@ fromClause : KW_FROM relation (COMMA relation)* lateralView* pivotClause? unPivotClause? ; -functionKind - : KW_USER - | KW_SYSTEM - | KW_ALL - ; - temporalClause - : KW_FOR? (KW_SYSTEM_VERSION | KW_VERSION) KW_AS KW_OF version + : KW_FOR? (KW_SYSTEM_VERSION | KW_VERSION) KW_AS KW_OF (INTEGER_VALUE | stringLit) | KW_FOR? (KW_SYSTEM_TIME | KW_TIMESTAMP) KW_AS KW_OF timestamp=valueExpression ; @@ -628,12 +588,9 @@ groupByClause groupingAnalytics : (KW_ROLLUP | KW_CUBE) LEFT_PAREN groupingSet (COMMA groupingSet)* RIGHT_PAREN - | KW_GROUPING KW_SETS LEFT_PAREN groupingElement (COMMA groupingElement)* RIGHT_PAREN - ; - -groupingElement - : groupingAnalytics - | groupingSet + | KW_GROUPING KW_SETS LEFT_PAREN (groupingAnalytics | groupingSet) ( + COMMA (groupingAnalytics | groupingSet) + )* RIGHT_PAREN ; groupingSet @@ -658,55 +615,31 @@ pivotValue ; unPivotClause - : KW_UNPIVOT nullOperator=unPivotNullClause? LEFT_PAREN operator=unPivotOperator RIGHT_PAREN ( - KW_AS? identifier - )? - ; - -unPivotNullClause - : (KW_INCLUDE | KW_EXCLUDE) KW_NULLS - ; - -unPivotOperator - : (unPivotSingleValueColumnClause | unPivotMultiValueColumnClause) + : KW_UNPIVOT ((KW_INCLUDE | KW_EXCLUDE) KW_NULLS)? LEFT_PAREN ( + unPivotSingleValueColumnClause + | unPivotMultiValueColumnClause + ) RIGHT_PAREN (KW_AS? identifier)? ; unPivotSingleValueColumnClause - : unPivotValueColumn KW_FOR unPivotNameColumn KW_IN LEFT_PAREN unPivotColumns+=unPivotColumnAndAlias ( + : identifier KW_FOR identifier KW_IN LEFT_PAREN unPivotColumns+=unPivotColumnAndAlias ( COMMA unPivotColumns+=unPivotColumnAndAlias )* RIGHT_PAREN ; unPivotMultiValueColumnClause - : LEFT_PAREN unPivotValueColumns+=unPivotValueColumn ( - COMMA unPivotValueColumns+=unPivotValueColumn - )* RIGHT_PAREN KW_FOR unPivotNameColumn KW_IN LEFT_PAREN unPivotColumnSets+=unPivotColumnSet ( - COMMA unPivotColumnSets+=unPivotColumnSet - )* RIGHT_PAREN + : LEFT_PAREN unPivotValueColumns+=identifier (COMMA unPivotValueColumns+=identifier)* RIGHT_PAREN KW_FOR identifier KW_IN LEFT_PAREN + unPivotColumnSets+=unPivotColumnSet (COMMA unPivotColumnSets+=unPivotColumnSet)* RIGHT_PAREN ; unPivotColumnSet - : LEFT_PAREN unPivotColumns+=unPivotColumn (COMMA unPivotColumns+=unPivotColumn)* RIGHT_PAREN unPivotAlias? - ; - -unPivotValueColumn - : identifier - ; - -unPivotNameColumn - : identifier + : LEFT_PAREN unPivotColumns+=multipartIdentifier (COMMA unPivotColumns+=multipartIdentifier)* RIGHT_PAREN ( + KW_AS? identifier + )? ; unPivotColumnAndAlias - : unPivotColumn unPivotAlias? - ; - -unPivotColumn - : multipartIdentifier - ; - -unPivotAlias - : KW_AS? identifier + : multipartIdentifier (KW_AS? identifier)? ; ifNotExists @@ -730,13 +663,7 @@ setQuantifier relation : tableName - | KW_LATERAL? relationPrimary relationExtension* - ; - -relationExtension - : joinRelation - | pivotClause - | unPivotClause + | KW_LATERAL? relationPrimary (joinRelation | pivotClause | unPivotClause)* ; joinRelation @@ -748,10 +675,8 @@ joinType : KW_INNER? | KW_CROSS | KW_LEFT KW_OUTER? - | KW_LEFT? KW_SEMI - | KW_RIGHT KW_OUTER? - | KW_FULL KW_OUTER? - | KW_LEFT? KW_ANTI + | KW_LEFT? (KW_SEMI | KW_ANTI) + | (KW_RIGHT | KW_FULL) KW_OUTER? ; joinCriteria @@ -795,19 +720,15 @@ identifierCommentList ; identifierComment - : columnNameCreate commentSpec? + : columnNameCreate (KW_COMMENT comment=stringLit)? ; relationPrimary : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias | LEFT_PAREN query RIGHT_PAREN sample? tableAlias | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias - | inlineTable - | functionTable - ; - -inlineTable - : KW_VALUES expression (COMMA expression)* tableAlias + | KW_VALUES expression (COMMA expression)* tableAlias + | functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias ; functionTableSubqueryArgument @@ -825,11 +746,7 @@ tableArgumentPartitioning | partition+=expression ) ) - ) ( - (KW_ORDER | KW_SORT) KW_BY ( - ((LEFT_PAREN sortItem (COMMA sortItem)* RIGHT_PAREN) | sortItem) - ) - )? + ) ((KW_ORDER | KW_SORT) KW_BY ( ((LEFT_PAREN orderOrSortByClause RIGHT_PAREN) | sortItem)))? ; functionTableNamedArgumentExpression @@ -846,10 +763,6 @@ functionTableArgument | functionArgument ; -functionTable - : functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias - ; - tableAlias : (KW_AS? alias=strictIdentifier identifierList?)? ; @@ -1013,7 +926,7 @@ primaryExpression | identifier ARROW expression | LEFT_PAREN identifier (COMMA identifier)+ RIGHT_PAREN ARROW expression | value=primaryExpression LEFT_BRACKET index=valueExpression RIGHT_BRACKET - | identifier + | columnNamePath | base=primaryExpression DOT fieldName=identifier | LEFT_PAREN expression RIGHT_PAREN | KW_EXTRACT LEFT_PAREN field=identifier KW_FROM source=valueExpression RIGHT_PAREN @@ -1187,7 +1100,7 @@ type dataType : complex=KW_ARRAY LT dataType GT | complex=KW_MAP LT dataType COMMA dataType GT - | complex=KW_STRUCT (LT complexColTypeList? GT | NEQ) + | complex=KW_STRUCT (LT (complexColType (COMMA complexColType)*)? GT | NEQ) | KW_INTERVAL (KW_YEAR | KW_MONTH) (KW_TO KW_MONTH)? | KW_INTERVAL (KW_DAY | KW_HOUR | KW_MINUTE | KW_SECOND) ( KW_TO (KW_HOUR | KW_MINUTE | KW_SECOND) @@ -1213,15 +1126,11 @@ qualifiedColTypeWithPositionForReplace colDefinitionDescriptorWithPosition : KW_NOT KW_NULL - | defaultExpression - | commentSpec + | KW_DEFAULT expression + | KW_COMMENT comment=stringLit | colPosition ; -defaultExpression - : KW_DEFAULT expression - ; - variableDefaultExpression : (KW_DEFAULT | EQ) expression ; @@ -1231,7 +1140,7 @@ colTypeList ; columnType - : colName=errorCapturingIdentifier dataType (KW_NOT KW_NULL)? commentSpec? + : colName=errorCapturingIdentifier dataType (KW_NOT KW_NULL)? (KW_COMMENT comment=stringLit)? ; createOrReplaceTableColTypeList @@ -1244,21 +1153,13 @@ createOrReplaceTableColType colDefinitionOption : KW_NOT KW_NULL - | defaultExpression - | generationExpression - | commentSpec - ; - -generationExpression - : KW_GENERATED KW_ALWAYS KW_AS LEFT_PAREN expression RIGHT_PAREN - ; - -complexColTypeList - : complexColType (COMMA complexColType)* + | KW_DEFAULT expression + | KW_GENERATED KW_ALWAYS KW_AS LEFT_PAREN expression RIGHT_PAREN + | KW_COMMENT comment=stringLit ; complexColType - : identifier COLON? dataType (KW_NOT KW_NULL)? commentSpec? + : identifier COLON? dataType (KW_NOT KW_NULL)? (KW_COMMENT comment=stringLit)? ; whenClause @@ -1266,17 +1167,15 @@ whenClause ; windowClause - : KW_WINDOW namedWindow (COMMA namedWindow)* + : KW_WINDOW name=errorCapturingIdentifier KW_AS windowSpec ( + COMMA name=errorCapturingIdentifier KW_AS windowSpec + )* ; zOrderClause : KW_ZORDER KW_BY columnNameSeq ; -namedWindow - : name=errorCapturingIdentifier KW_AS windowSpec - ; - windowSpec : name=errorCapturingIdentifier | LEFT_PAREN name=errorCapturingIdentifier RIGHT_PAREN @@ -1286,7 +1185,7 @@ windowSpec (KW_PARTITION | KW_DISTRIBUTE) KW_BY partition+=expression ( COMMA partition+=expression )* - )? ((KW_ORDER | KW_SORT) KW_BY sortItem (COMMA sortItem)*)? + )? ((KW_ORDER | KW_SORT) KW_BY orderOrSortByClause)? ) windowFrame? RIGHT_PAREN ; @@ -1295,10 +1194,8 @@ windowSpec * https://github.com/tunnelvisionlabs/antlr4ts/issues/417 */ windowFrame - : frameType=KW_RANGE start_=frameBound - | frameType=KW_ROWS start_=frameBound - | frameType=KW_RANGE KW_BETWEEN start_=frameBound KW_AND end=frameBound - | frameType=KW_ROWS KW_BETWEEN start_=frameBound KW_AND end=frameBound + : frameType=(KW_RANGE | KW_ROWS) start_=frameBound + | frameType=(KW_RANGE | KW_ROWS) KW_BETWEEN start_=frameBound KW_AND end=frameBound ; frameBound @@ -1357,29 +1254,26 @@ quotedIdentifier | DOUBLEQUOTED_STRING ; -backQuotedIdentifier - : BACKQUOTED_IDENTIFIER - ; - number - : MINUS? EXPONENT_VALUE - | MINUS? DECIMAL_VALUE - | MINUS? (EXPONENT_VALUE | DECIMAL_VALUE) - | MINUS? INTEGER_VALUE - | MINUS? BIGINT_LITERAL - | MINUS? SMALLINT_LITERAL - | MINUS? TINYINT_LITERAL - | MINUS? DOUBLE_LITERAL - | MINUS? FLOAT_LITERAL - | MINUS? BIGDECIMAL_LITERAL + : MINUS? ( + EXPONENT_VALUE + | DECIMAL_VALUE + | INTEGER_VALUE + | BIGINT_LITERAL + | SMALLINT_LITERAL + | TINYINT_LITERAL + | DOUBLE_LITERAL + | FLOAT_LITERAL + | BIGDECIMAL_LITERAL + ) ; alterColumnAction : KW_TYPE dataType - | commentSpec + | KW_COMMENT comment=stringLit | colPosition | setOrDrop=(KW_SET | KW_DROP) KW_NOT KW_NULL - | KW_SET defaultExpression + | KW_SET KW_DEFAULT expression | dropDefault=KW_DROP KW_DEFAULT ; @@ -1388,16 +1282,6 @@ stringLit | DOUBLEQUOTED_STRING ; -commentStr - : stringLit - | KW_NULL - ; - -version - : INTEGER_VALUE - | stringLit - ; - // When `SQL_standard_keyword_behavior=true`, there are 2 kinds of keywords in Spark SQL. // - Reserved keywords: // Keywords that are reserved and can't be used as identifiers for table, view, column, diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index d9931d663..9895ee27c 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -91,7 +91,7 @@ statement )* ')' (KW_COMMENT comment=string)? (KW_WITH properties)? # createTable | KW_DROP KW_TABLE (KW_IF KW_EXISTS)? tableRef # dropTable | KW_INSERT KW_INTO tableRef columnList? rootQuery # insertInto - | KW_DELETE KW_FROM tableRef (KW_WHERE booleanExpression)? # delete + | KW_DELETE KW_FROM tableRef (whereClause)? # delete | KW_TRUNCATE KW_TABLE tableRef # truncateTable | KW_COMMENT KW_ON KW_TABLE tableRef KW_IS (string | KW_NULL) # commentTable | KW_COMMENT KW_ON KW_VIEW viewRef KW_IS (string | KW_NULL) # commentView @@ -106,7 +106,7 @@ statement | KW_ALTER KW_TABLE tableName=tableRef KW_SET KW_PROPERTIES propertyAssignments # setTableProperties | KW_ALTER KW_TABLE tableName=tableRef KW_EXECUTE procedureName=functionName ( '(' (callArgument (',' callArgument)*)? ')' - )? (KW_WHERE where=booleanExpression)? # tableExecute + )? (whereClause)? # tableExecute | KW_ANALYZE tableRef (KW_WITH properties)? # analyze | KW_CREATE (KW_OR KW_REPLACE)? KW_MATERIALIZED KW_VIEW (KW_IF KW_NOT KW_EXISTS)? viewNameCreate ( KW_GRACE KW_PERIOD interval @@ -167,26 +167,24 @@ statement | KW_DESC tableOrViewName # showColumns | KW_SHOW KW_FUNCTIONS ((KW_FROM | KW_IN) schemaRef)? ( KW_LIKE pattern=string (KW_ESCAPE escape=string)? - )? # showFunctions - | KW_SHOW KW_SESSION (KW_LIKE pattern=string (KW_ESCAPE escape=string)?)? # showSession - | KW_SET KW_SESSION KW_AUTHORIZATION authorizationUser # setSessionAuthorization - | KW_RESET KW_SESSION KW_AUTHORIZATION # resetSessionAuthorization - | KW_SET KW_SESSION qualifiedName EQ expression # setSession - | KW_RESET KW_SESSION qualifiedName # resetSession - | KW_START KW_TRANSACTION (transactionMode (',' transactionMode)*)? # startTransaction - | KW_COMMIT KW_WORK? # commit - | KW_ROLLBACK KW_WORK? # rollback - | KW_PREPARE identifier KW_FROM statement # prepare - | KW_DEALLOCATE KW_PREPARE identifier # deallocate - | KW_EXECUTE identifier (KW_USING expression (',' expression)*)? # execute - | KW_EXECUTE KW_IMMEDIATE string (KW_USING expression (',' expression)*)? # executeImmediate - | KW_DESCRIBE KW_INPUT identifier # describeInput - | KW_DESCRIBE KW_OUTPUT identifier # describeOutput - | KW_SET KW_PATH pathSpecification # setPath - | KW_SET KW_TIME KW_ZONE ( KW_LOCAL | expression) # setTimeZone - | KW_UPDATE tableRef KW_SET updateAssignment (',' updateAssignment)* ( - KW_WHERE where=booleanExpression - )? # update + )? # showFunctions + | KW_SHOW KW_SESSION (KW_LIKE pattern=string (KW_ESCAPE escape=string)?)? # showSession + | KW_SET KW_SESSION KW_AUTHORIZATION authorizationUser # setSessionAuthorization + | KW_RESET KW_SESSION KW_AUTHORIZATION # resetSessionAuthorization + | KW_SET KW_SESSION qualifiedName EQ expression # setSession + | KW_RESET KW_SESSION qualifiedName # resetSession + | KW_START KW_TRANSACTION (transactionMode (',' transactionMode)*)? # startTransaction + | KW_COMMIT KW_WORK? # commit + | KW_ROLLBACK KW_WORK? # rollback + | KW_PREPARE identifier KW_FROM statement # prepare + | KW_DEALLOCATE KW_PREPARE identifier # deallocate + | KW_EXECUTE identifier (KW_USING expression (',' expression)*)? # execute + | KW_EXECUTE KW_IMMEDIATE string (KW_USING expression (',' expression)*)? # executeImmediate + | KW_DESCRIBE KW_INPUT identifier # describeInput + | KW_DESCRIBE KW_OUTPUT identifier # describeOutput + | KW_SET KW_PATH pathSpecification # setPath + | KW_SET KW_TIME KW_ZONE ( KW_LOCAL | expression) # setTimeZone + | KW_UPDATE tableRef KW_SET updateAssignment (',' updateAssignment)* (whereClause)? # update | KW_MERGE KW_INTO tableRef (KW_AS? identifier)? KW_USING relation KW_ON expression mergeCase+ # merge | KW_SHOW KW_COMMENT KW_ON KW_TABLE tableRef # showTableComment // dtstack | KW_SHOW KW_COMMENT KW_ON KW_COLUMN columnRef # showColumnComment // dtstack @@ -283,16 +281,26 @@ sortItem querySpecification : KW_SELECT setQuantifier? selectItem (',' selectItem)* (KW_FROM relation (',' relation)*)? ( - KW_WHERE where=booleanExpression - )? (KW_GROUP KW_BY groupBy)? (KW_HAVING having=booleanExpression)? ( - KW_WINDOW windowDefinition (',' windowDefinition)* - )? + whereClause + )? (KW_GROUP KW_BY groupBy)? (havingClause)? (KW_WINDOW windowDefinition (',' windowDefinition)*)? + ; + +whereClause + : KW_WHERE where=booleanExpression + ; + +havingClause + : KW_HAVING having=booleanExpression ; groupBy : setQuantifier? groupingElement (',' groupingElement)* ; +partitionBy + : expression (',' expression)* + ; + groupingElement : groupingSet # singleGroupingSet | KW_ROLLUP '(' (groupingSet (',' groupingSet)*)? ')' # rollup @@ -315,9 +323,9 @@ windowDefinition ; windowSpecification - : (existingWindowName=identifier)? ( - KW_PARTITION KW_BY partition+=expression (',' partition+=expression)* - )? (KW_ORDER KW_BY sortItem (',' sortItem)*)? windowFrame? + : (existingWindowName=identifier)? (KW_PARTITION KW_BY partitionBy)? ( + KW_ORDER KW_BY sortItem (',' sortItem)* + )? windowFrame? ; namedQuery @@ -383,11 +391,11 @@ listAggCountIndication patternRecognition : aliasedRelation ( - KW_MATCH_RECOGNIZE '(' ( - KW_PARTITION KW_BY partition+=expression (',' partition+=expression)* - )? (KW_ORDER KW_BY sortItem (',' sortItem)*)? ( - KW_MEASURES measureDefinition (',' measureDefinition)* - )? rowsPerMatch? (KW_AFTER KW_MATCH skipTo)? (KW_INITIAL | KW_SEEK)? KW_PATTERN '(' rowPattern ')' ( + KW_MATCH_RECOGNIZE '(' (KW_PARTITION KW_BY partitionBy)? ( + KW_ORDER KW_BY sortItem (',' sortItem)* + )? (KW_MEASURES measureDefinition (',' measureDefinition)*)? rowsPerMatch? ( + KW_AFTER KW_MATCH skipTo + )? (KW_INITIAL | KW_SEEK)? KW_PATTERN '(' rowPattern ')' ( KW_SUBSET subsetDefinition (',' subsetDefinition)* )? KW_DEFINE variableDefinition (',' variableDefinition)* ')' (KW_AS? identifier columnAliases?)? )? @@ -502,7 +510,7 @@ tableFunctionArgument ; tableArgument - : tableArgumentRelation (KW_PARTITION KW_BY ('(' (expression (',' expression)*)? ')' | expression))? ( + : tableArgumentRelation (KW_PARTITION KW_BY ('(' partitionBy? ')' | expression))? ( KW_PRUNE KW_WHEN KW_EMPTY | KW_KEEP KW_WHEN KW_EMPTY )? (KW_ORDER KW_BY ('(' sortItem (',' sortItem)* ')' | sortItem))? @@ -590,7 +598,7 @@ primaryExpression | KW_TRY_CAST '(' expression KW_AS type ')' # cast | KW_ARRAY '[' (expression (',' expression)*)? ']' # arrayConstructor | value=primaryExpression '[' index=valueExpression ']' # subscript - | identifier # columnReference + | columnName # columnReference | base=primaryExpression '.' fieldName=identifier # dereference | name=KW_CURRENT_DATE # currentDate | name=KW_CURRENT_TIME ('(' precision=INTEGER_VALUE ')')? # currentTime @@ -763,7 +771,7 @@ whenClause ; filter - : KW_FILTER '(' KW_WHERE booleanExpression ')' + : KW_FILTER '(' whereClause ')' ; mergeCase @@ -1006,6 +1014,10 @@ columnRef | {this.shouldMatchEmpty()}? ; +columnName + : qualifiedName + ; + columnNameCreate : identifier ; @@ -1644,11 +1656,11 @@ fragment DIGIT: [0-9]; fragment LETTER: [A-Z]; -SIMPLE_COMMENT: '--' ~[\r\n]* '\r'? '\n'? -> channel(HIDDEN); +LINE_COMMENT: '--' ~[\r\n]* '\r'? '\n'? -> channel(HIDDEN); BRACKETED_COMMENT: '/*' .*? '*/' -> channel(HIDDEN); -WS: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); +WHITE_SPACE: (' ' | '\t' | '\r' | '\n') -> channel(HIDDEN); // Catch-all for anything we can't recognize. // We use this to be able to ignore and recover all the text diff --git a/src/lib/flink/FlinkSqlLexer.interp b/src/lib/flink/FlinkSqlLexer.interp index cdf475121..60885dd99 100644 --- a/src/lib/flink/FlinkSqlLexer.interp +++ b/src/lib/flink/FlinkSqlLexer.interp @@ -545,8 +545,8 @@ null token symbolic names: null -SPACE -COMMENT_INPUT +WHITE_SPACE +BRACKETED_COMMENT LINE_COMMENT KW_ABS KW_ALL @@ -1089,8 +1089,8 @@ BIT_STRING ID_LITERAL rule names: -SPACE -COMMENT_INPUT +WHITE_SPACE +BRACKETED_COMMENT LINE_COMMENT KW_ABS KW_ALL diff --git a/src/lib/flink/FlinkSqlLexer.tokens b/src/lib/flink/FlinkSqlLexer.tokens index 346ab4ca5..48749ead1 100644 --- a/src/lib/flink/FlinkSqlLexer.tokens +++ b/src/lib/flink/FlinkSqlLexer.tokens @@ -1,5 +1,5 @@ -SPACE=1 -COMMENT_INPUT=2 +WHITE_SPACE=1 +BRACKETED_COMMENT=2 LINE_COMMENT=3 KW_ABS=4 KW_ALL=5 diff --git a/src/lib/flink/FlinkSqlLexer.ts b/src/lib/flink/FlinkSqlLexer.ts index e4ef62a46..3b455190a 100644 --- a/src/lib/flink/FlinkSqlLexer.ts +++ b/src/lib/flink/FlinkSqlLexer.ts @@ -7,8 +7,8 @@ import { Token } from "antlr4ng"; export class FlinkSqlLexer extends antlr.Lexer { - public static readonly SPACE = 1; - public static readonly COMMENT_INPUT = 2; + public static readonly WHITE_SPACE = 1; + public static readonly BRACKETED_COMMENT = 2; public static readonly LINE_COMMENT = 3; public static readonly KW_ABS = 4; public static readonly KW_ALL = 5; @@ -656,21 +656,22 @@ export class FlinkSqlLexer extends antlr.Lexer { ]; public static readonly symbolicNames = [ - null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "KW_ABS", "KW_ALL", - "KW_ALLOCATE", "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", "KW_ANY", - "KW_ARE", "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", "KW_ARRAY_MAX_CARDINALITY", - "KW_AS", "KW_ASENSITIVE", "KW_ASYMMETRIC", "KW_AT", "KW_ATOMIC", - "KW_AUTHORIZATION", "KW_AVG", "KW_BEGIN", "KW_BEGIN_FRAME", "KW_BEGIN_PARTITION", - "KW_BETWEEN", "KW_BIGINT", "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", - "KW_BOTH", "KW_BY", "KW_BYTES", "KW_CALL", "KW_CALLED", "KW_CARDINALITY", - "KW_CASCADED", "KW_CASE", "KW_CAST", "KW_CATALOGS", "KW_CEIL", "KW_CEILING", - "KW_CHANGELOG_MODE", "KW_CHAR", "KW_CHARACTER", "KW_CHARACTER_LENGTH", - "KW_CHAR_LENGTH", "KW_CHECK", "KW_CLASSIFIER", "KW_CLOB", "KW_CLOSE", - "KW_COALESCE", "KW_COLLATE", "KW_COLLECT", "KW_COLUMN", "KW_COLUMNS", - "KW_COMMENT", "KW_COMMIT", "KW_COMPUTE", "KW_CONDITION", "KW_CONNECT", - "KW_CONSTRAINT", "KW_CONTAINS", "KW_CONVERT", "KW_CORR", "KW_CORRESPONDING", - "KW_COUNT", "KW_COVAR_POP", "KW_COVAR_SAMP", "KW_CREATE", "KW_CROSS", - "KW_CUBE", "KW_CUME_DIST", "KW_CURRENT", "KW_CURRENT_CATALOG", "KW_CURRENT_DATE", + null, "WHITE_SPACE", "BRACKETED_COMMENT", "LINE_COMMENT", "KW_ABS", + "KW_ALL", "KW_ALLOCATE", "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", + "KW_ANY", "KW_ARE", "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", + "KW_ARRAY_MAX_CARDINALITY", "KW_AS", "KW_ASENSITIVE", "KW_ASYMMETRIC", + "KW_AT", "KW_ATOMIC", "KW_AUTHORIZATION", "KW_AVG", "KW_BEGIN", + "KW_BEGIN_FRAME", "KW_BEGIN_PARTITION", "KW_BETWEEN", "KW_BIGINT", + "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", "KW_BOTH", "KW_BY", + "KW_BYTES", "KW_CALL", "KW_CALLED", "KW_CARDINALITY", "KW_CASCADED", + "KW_CASE", "KW_CAST", "KW_CATALOGS", "KW_CEIL", "KW_CEILING", "KW_CHANGELOG_MODE", + "KW_CHAR", "KW_CHARACTER", "KW_CHARACTER_LENGTH", "KW_CHAR_LENGTH", + "KW_CHECK", "KW_CLASSIFIER", "KW_CLOB", "KW_CLOSE", "KW_COALESCE", + "KW_COLLATE", "KW_COLLECT", "KW_COLUMN", "KW_COLUMNS", "KW_COMMENT", + "KW_COMMIT", "KW_COMPUTE", "KW_CONDITION", "KW_CONNECT", "KW_CONSTRAINT", + "KW_CONTAINS", "KW_CONVERT", "KW_CORR", "KW_CORRESPONDING", "KW_COUNT", + "KW_COVAR_POP", "KW_COVAR_SAMP", "KW_CREATE", "KW_CROSS", "KW_CUBE", + "KW_CUME_DIST", "KW_CURRENT", "KW_CURRENT_CATALOG", "KW_CURRENT_DATE", "KW_CURRENT_DEFAULT_TRANSFORM_GROUP", "KW_CURRENT_PATH", "KW_CURRENT_ROLE", "KW_CURRENT_ROW", "KW_CURRENT_SCHEMA", "KW_CURRENT_TIME", "KW_CURRENT_TIMESTAMP", "KW_CURRENT_TRANSFORM_GROUP_FOR_TYPE", "KW_CURRENT_USER", "KW_CURSOR", @@ -771,9 +772,9 @@ export class FlinkSqlLexer extends antlr.Lexer { ]; public static readonly ruleNames = [ - "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "KW_ABS", "KW_ALL", "KW_ALLOCATE", - "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", "KW_ANY", "KW_ARE", - "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", "KW_ARRAY_MAX_CARDINALITY", + "WHITE_SPACE", "BRACKETED_COMMENT", "LINE_COMMENT", "KW_ABS", "KW_ALL", + "KW_ALLOCATE", "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", "KW_ANY", + "KW_ARE", "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", "KW_ARRAY_MAX_CARDINALITY", "KW_AS", "KW_ASENSITIVE", "KW_ASYMMETRIC", "KW_AT", "KW_ATOMIC", "KW_AUTHORIZATION", "KW_AVG", "KW_BEGIN", "KW_BEGIN_FRAME", "KW_BEGIN_PARTITION", "KW_BETWEEN", "KW_BIGINT", "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index ac7a3b4da..1de25841c 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -545,8 +545,8 @@ null token symbolic names: null -SPACE -COMMENT_INPUT +WHITE_SPACE +BRACKETED_COMMENT LINE_COMMENT KW_ABS KW_ALL @@ -1116,6 +1116,7 @@ columnOptionDefinition physicalColumnDefinition columnNameCreate columnName +columnNamePath columnNameList columnType lengthOneDimension @@ -1284,4 +1285,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2309, 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, 1, 0, 5, 0, 386, 8, 0, 10, 0, 12, 0, 389, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 395, 8, 1, 1, 1, 3, 1, 398, 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, 412, 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, 430, 8, 4, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 443, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 448, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 453, 8, 8, 10, 8, 12, 8, 456, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 466, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 473, 8, 11, 10, 11, 12, 11, 476, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 487, 8, 12, 1, 12, 3, 12, 490, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 497, 8, 12, 1, 12, 3, 12, 500, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 508, 8, 12, 1, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 517, 8, 12, 1, 12, 3, 12, 520, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 527, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 535, 8, 15, 1, 16, 1, 16, 3, 16, 539, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 559, 8, 18, 1, 18, 1, 18, 3, 18, 563, 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, 595, 8, 18, 1, 19, 3, 19, 598, 8, 19, 1, 19, 4, 19, 601, 8, 19, 11, 19, 12, 19, 602, 1, 20, 1, 20, 3, 20, 607, 8, 20, 1, 21, 1, 21, 3, 21, 611, 8, 21, 1, 21, 1, 21, 3, 21, 615, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 622, 8, 21, 10, 21, 12, 21, 625, 9, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 642, 8, 21, 1, 21, 3, 21, 645, 8, 21, 1, 21, 1, 21, 3, 21, 649, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 654, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 660, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 665, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 670, 8, 24, 1, 24, 1, 24, 3, 24, 674, 8, 24, 1, 25, 1, 25, 3, 25, 678, 8, 25, 1, 26, 1, 26, 3, 26, 682, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 688, 8, 27, 10, 27, 12, 27, 691, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 698, 8, 28, 1, 28, 1, 28, 3, 28, 702, 8, 28, 1, 28, 1, 28, 3, 28, 706, 8, 28, 1, 28, 1, 28, 3, 28, 710, 8, 28, 1, 28, 1, 28, 3, 28, 714, 8, 28, 1, 28, 1, 28, 3, 28, 718, 8, 28, 1, 28, 1, 28, 3, 28, 722, 8, 28, 1, 28, 1, 28, 3, 28, 726, 8, 28, 1, 28, 1, 28, 3, 28, 730, 8, 28, 3, 28, 732, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 742, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 750, 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, 772, 8, 34, 10, 34, 12, 34, 775, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 786, 8, 34, 10, 34, 12, 34, 789, 9, 34, 1, 34, 1, 34, 3, 34, 793, 8, 34, 1, 35, 1, 35, 3, 35, 797, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 803, 8, 35, 1, 35, 3, 35, 806, 8, 35, 1, 35, 3, 35, 809, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 816, 8, 36, 1, 36, 3, 36, 819, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 828, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 840, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 862, 8, 45, 10, 45, 12, 45, 865, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 874, 8, 46, 10, 46, 12, 46, 877, 9, 46, 1, 46, 1, 46, 3, 46, 881, 8, 46, 1, 47, 1, 47, 3, 47, 885, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 891, 8, 48, 10, 48, 12, 48, 894, 9, 48, 1, 48, 3, 48, 897, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 903, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 913, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 918, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 924, 8, 52, 1, 52, 1, 52, 3, 52, 928, 8, 52, 1, 52, 1, 52, 3, 52, 932, 8, 52, 1, 52, 1, 52, 3, 52, 936, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 945, 8, 53, 1, 53, 1, 53, 3, 53, 949, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 956, 8, 53, 1, 53, 3, 53, 959, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 967, 8, 54, 10, 54, 12, 54, 970, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 977, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 985, 8, 56, 1, 57, 1, 57, 3, 57, 989, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1004, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1023, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1034, 8, 65, 1, 65, 1, 65, 3, 65, 1038, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1045, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1050, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1056, 8, 67, 1, 67, 1, 67, 3, 67, 1060, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1067, 8, 68, 1, 68, 1, 68, 3, 68, 1071, 8, 68, 1, 69, 1, 69, 3, 69, 1075, 8, 69, 1, 69, 1, 69, 3, 69, 1079, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1087, 8, 70, 1, 70, 1, 70, 3, 70, 1091, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1096, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1102, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1108, 8, 72, 1, 72, 3, 72, 1111, 8, 72, 1, 72, 1, 72, 3, 72, 1115, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1124, 8, 74, 10, 74, 12, 74, 1127, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1133, 8, 75, 10, 75, 12, 75, 1136, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1147, 8, 76, 11, 76, 12, 76, 1148, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1159, 8, 77, 11, 77, 12, 77, 1160, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1176, 8, 78, 1, 78, 3, 78, 1179, 8, 78, 1, 78, 1, 78, 3, 78, 1183, 8, 78, 1, 78, 3, 78, 1186, 8, 78, 3, 78, 1188, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1193, 8, 78, 1, 78, 1, 78, 3, 78, 1197, 8, 78, 1, 78, 3, 78, 1200, 8, 78, 5, 78, 1202, 8, 78, 10, 78, 12, 78, 1205, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1211, 8, 79, 10, 79, 12, 79, 1214, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1220, 8, 80, 10, 80, 12, 80, 1223, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1230, 8, 81, 10, 81, 12, 81, 1233, 9, 81, 1, 81, 1, 81, 3, 81, 1237, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1248, 8, 83, 1, 83, 3, 83, 1251, 8, 83, 1, 83, 3, 83, 1254, 8, 83, 1, 83, 3, 83, 1257, 8, 83, 1, 83, 3, 83, 1260, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1266, 8, 83, 1, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1276, 8, 84, 10, 84, 12, 84, 1279, 9, 84, 3, 84, 1281, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1286, 8, 85, 1, 85, 3, 85, 1289, 8, 85, 1, 85, 1, 85, 3, 85, 1293, 8, 85, 1, 85, 3, 85, 1296, 8, 85, 3, 85, 1298, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1312, 8, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1321, 8, 88, 10, 88, 12, 88, 1324, 9, 88, 1, 88, 1, 88, 3, 88, 1328, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1336, 8, 88, 1, 88, 3, 88, 1339, 8, 88, 1, 88, 3, 88, 1342, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1347, 8, 88, 5, 88, 1349, 8, 88, 10, 88, 12, 88, 1352, 9, 88, 1, 89, 1, 89, 3, 89, 1356, 8, 89, 1, 90, 3, 90, 1359, 8, 90, 1, 90, 1, 90, 3, 90, 1363, 8, 90, 1, 90, 1, 90, 3, 90, 1367, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1376, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1387, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1412, 8, 95, 10, 95, 12, 95, 1415, 9, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1436, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1449, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1459, 8, 102, 10, 102, 12, 102, 1462, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1472, 8, 103, 10, 103, 12, 103, 1475, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1484, 8, 103, 10, 103, 12, 103, 1487, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1496, 8, 103, 10, 103, 12, 103, 1499, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1504, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1529, 8, 110, 10, 110, 12, 110, 1532, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1539, 8, 112, 1, 112, 1, 112, 3, 112, 1543, 8, 112, 1, 112, 3, 112, 1546, 8, 112, 1, 112, 3, 112, 1549, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1556, 8, 113, 1, 113, 3, 113, 1559, 8, 113, 1, 113, 3, 113, 1562, 8, 113, 1, 113, 3, 113, 1565, 8, 113, 1, 113, 3, 113, 1568, 8, 113, 1, 113, 3, 113, 1571, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1576, 8, 113, 1, 113, 3, 113, 1579, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1586, 8, 114, 10, 114, 12, 114, 1589, 9, 114, 1, 115, 1, 115, 3, 115, 1593, 8, 115, 1, 115, 1, 115, 3, 115, 1597, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1602, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1608, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 5, 117, 1615, 8, 117, 10, 117, 12, 117, 1618, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1636, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1642, 8, 119, 10, 119, 12, 119, 1645, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1650, 8, 120, 11, 120, 12, 120, 1651, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1670, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1696, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1702, 8, 124, 10, 124, 12, 124, 1705, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1716, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1738, 8, 129, 3, 129, 1740, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1751, 8, 129, 1, 129, 5, 129, 1754, 8, 129, 10, 129, 12, 129, 1757, 9, 129, 1, 130, 3, 130, 1760, 8, 130, 1, 130, 1, 130, 3, 130, 1764, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1771, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1778, 8, 130, 10, 130, 12, 130, 1781, 9, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1786, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1799, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1806, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1811, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1817, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1824, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1831, 8, 130, 3, 130, 1833, 8, 130, 1, 131, 3, 131, 1836, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1846, 8, 131, 10, 131, 12, 131, 1849, 9, 131, 1, 131, 1, 131, 3, 131, 1853, 8, 131, 1, 131, 3, 131, 1856, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1862, 8, 131, 3, 131, 1864, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1870, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1891, 8, 132, 10, 132, 12, 132, 1894, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1901, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1906, 8, 133, 10, 133, 12, 133, 1909, 9, 133, 3, 133, 1911, 8, 133, 1, 133, 1, 133, 3, 133, 1915, 8, 133, 1, 134, 1, 134, 1, 134, 4, 134, 1920, 8, 134, 11, 134, 12, 134, 1921, 1, 134, 1, 134, 3, 134, 1926, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 1933, 8, 134, 11, 134, 12, 134, 1934, 1, 134, 1, 134, 3, 134, 1939, 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, 1955, 8, 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, 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, 1992, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1999, 8, 134, 10, 134, 12, 134, 2002, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2010, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2016, 8, 137, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2026, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 2034, 8, 142, 1, 143, 1, 143, 1, 143, 3, 143, 2039, 8, 143, 1, 144, 1, 144, 3, 144, 2043, 8, 144, 1, 145, 1, 145, 1, 145, 4, 145, 2048, 8, 145, 11, 145, 12, 145, 2049, 1, 146, 1, 146, 1, 146, 3, 146, 2055, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 3, 148, 2063, 8, 148, 1, 148, 1, 148, 3, 148, 2067, 8, 148, 1, 149, 3, 149, 2070, 8, 149, 1, 149, 1, 149, 3, 149, 2074, 8, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 4, 151, 2081, 8, 151, 11, 151, 12, 151, 2082, 1, 151, 3, 151, 2086, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2095, 8, 153, 10, 153, 12, 153, 2098, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2103, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2121, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2126, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2131, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2138, 8, 162, 3, 162, 2140, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2145, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2152, 8, 163, 3, 163, 2154, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2159, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2166, 8, 164, 3, 164, 2168, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2173, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2180, 8, 165, 3, 165, 2182, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 2187, 8, 166, 10, 166, 12, 166, 2190, 9, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2206, 8, 170, 10, 170, 12, 170, 2209, 9, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2215, 8, 171, 1, 171, 3, 171, 2218, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2223, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2229, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2237, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2253, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2262, 8, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2272, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2279, 8, 179, 1, 179, 3, 179, 2282, 8, 179, 1, 180, 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, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 2188, 5, 156, 176, 258, 264, 268, 192, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2516, 0, 387, 1, 0, 0, 0, 2, 397, 1, 0, 0, 0, 4, 411, 1, 0, 0, 0, 6, 413, 1, 0, 0, 0, 8, 429, 1, 0, 0, 0, 10, 433, 1, 0, 0, 0, 12, 435, 1, 0, 0, 0, 14, 438, 1, 0, 0, 0, 16, 449, 1, 0, 0, 0, 18, 457, 1, 0, 0, 0, 20, 465, 1, 0, 0, 0, 22, 467, 1, 0, 0, 0, 24, 519, 1, 0, 0, 0, 26, 521, 1, 0, 0, 0, 28, 528, 1, 0, 0, 0, 30, 532, 1, 0, 0, 0, 32, 536, 1, 0, 0, 0, 34, 540, 1, 0, 0, 0, 36, 594, 1, 0, 0, 0, 38, 600, 1, 0, 0, 0, 40, 606, 1, 0, 0, 0, 42, 608, 1, 0, 0, 0, 44, 650, 1, 0, 0, 0, 46, 664, 1, 0, 0, 0, 48, 666, 1, 0, 0, 0, 50, 677, 1, 0, 0, 0, 52, 681, 1, 0, 0, 0, 54, 683, 1, 0, 0, 0, 56, 731, 1, 0, 0, 0, 58, 733, 1, 0, 0, 0, 60, 737, 1, 0, 0, 0, 62, 745, 1, 0, 0, 0, 64, 753, 1, 0, 0, 0, 66, 757, 1, 0, 0, 0, 68, 792, 1, 0, 0, 0, 70, 808, 1, 0, 0, 0, 72, 810, 1, 0, 0, 0, 74, 820, 1, 0, 0, 0, 76, 822, 1, 0, 0, 0, 78, 829, 1, 0, 0, 0, 80, 831, 1, 0, 0, 0, 82, 839, 1, 0, 0, 0, 84, 847, 1, 0, 0, 0, 86, 849, 1, 0, 0, 0, 88, 853, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 880, 1, 0, 0, 0, 94, 884, 1, 0, 0, 0, 96, 886, 1, 0, 0, 0, 98, 902, 1, 0, 0, 0, 100, 904, 1, 0, 0, 0, 102, 909, 1, 0, 0, 0, 104, 921, 1, 0, 0, 0, 106, 940, 1, 0, 0, 0, 108, 960, 1, 0, 0, 0, 110, 971, 1, 0, 0, 0, 112, 973, 1, 0, 0, 0, 114, 986, 1, 0, 0, 0, 116, 993, 1, 0, 0, 0, 118, 996, 1, 0, 0, 0, 120, 1005, 1, 0, 0, 0, 122, 1009, 1, 0, 0, 0, 124, 1013, 1, 0, 0, 0, 126, 1016, 1, 0, 0, 0, 128, 1024, 1, 0, 0, 0, 130, 1029, 1, 0, 0, 0, 132, 1046, 1, 0, 0, 0, 134, 1053, 1, 0, 0, 0, 136, 1063, 1, 0, 0, 0, 138, 1072, 1, 0, 0, 0, 140, 1082, 1, 0, 0, 0, 142, 1101, 1, 0, 0, 0, 144, 1103, 1, 0, 0, 0, 146, 1116, 1, 0, 0, 0, 148, 1119, 1, 0, 0, 0, 150, 1128, 1, 0, 0, 0, 152, 1139, 1, 0, 0, 0, 154, 1152, 1, 0, 0, 0, 156, 1187, 1, 0, 0, 0, 158, 1206, 1, 0, 0, 0, 160, 1215, 1, 0, 0, 0, 162, 1224, 1, 0, 0, 0, 164, 1243, 1, 0, 0, 0, 166, 1265, 1, 0, 0, 0, 168, 1267, 1, 0, 0, 0, 170, 1297, 1, 0, 0, 0, 172, 1311, 1, 0, 0, 0, 174, 1313, 1, 0, 0, 0, 176, 1327, 1, 0, 0, 0, 178, 1353, 1, 0, 0, 0, 180, 1386, 1, 0, 0, 0, 182, 1388, 1, 0, 0, 0, 184, 1394, 1, 0, 0, 0, 186, 1396, 1, 0, 0, 0, 188, 1401, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1418, 1, 0, 0, 0, 194, 1435, 1, 0, 0, 0, 196, 1437, 1, 0, 0, 0, 198, 1439, 1, 0, 0, 0, 200, 1448, 1, 0, 0, 0, 202, 1450, 1, 0, 0, 0, 204, 1453, 1, 0, 0, 0, 206, 1503, 1, 0, 0, 0, 208, 1505, 1, 0, 0, 0, 210, 1508, 1, 0, 0, 0, 212, 1510, 1, 0, 0, 0, 214, 1517, 1, 0, 0, 0, 216, 1519, 1, 0, 0, 0, 218, 1521, 1, 0, 0, 0, 220, 1524, 1, 0, 0, 0, 222, 1533, 1, 0, 0, 0, 224, 1538, 1, 0, 0, 0, 226, 1552, 1, 0, 0, 0, 228, 1580, 1, 0, 0, 0, 230, 1590, 1, 0, 0, 0, 232, 1598, 1, 0, 0, 0, 234, 1603, 1, 0, 0, 0, 236, 1635, 1, 0, 0, 0, 238, 1637, 1, 0, 0, 0, 240, 1646, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1669, 1, 0, 0, 0, 246, 1695, 1, 0, 0, 0, 248, 1697, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1722, 1, 0, 0, 0, 256, 1725, 1, 0, 0, 0, 258, 1739, 1, 0, 0, 0, 260, 1832, 1, 0, 0, 0, 262, 1863, 1, 0, 0, 0, 264, 1869, 1, 0, 0, 0, 266, 1914, 1, 0, 0, 0, 268, 1991, 1, 0, 0, 0, 270, 2003, 1, 0, 0, 0, 272, 2009, 1, 0, 0, 0, 274, 2015, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2025, 1, 0, 0, 0, 280, 2027, 1, 0, 0, 0, 282, 2029, 1, 0, 0, 0, 284, 2033, 1, 0, 0, 0, 286, 2035, 1, 0, 0, 0, 288, 2040, 1, 0, 0, 0, 290, 2047, 1, 0, 0, 0, 292, 2051, 1, 0, 0, 0, 294, 2056, 1, 0, 0, 0, 296, 2066, 1, 0, 0, 0, 298, 2069, 1, 0, 0, 0, 300, 2075, 1, 0, 0, 0, 302, 2085, 1, 0, 0, 0, 304, 2087, 1, 0, 0, 0, 306, 2091, 1, 0, 0, 0, 308, 2102, 1, 0, 0, 0, 310, 2104, 1, 0, 0, 0, 312, 2106, 1, 0, 0, 0, 314, 2108, 1, 0, 0, 0, 316, 2113, 1, 0, 0, 0, 318, 2115, 1, 0, 0, 0, 320, 2117, 1, 0, 0, 0, 322, 2122, 1, 0, 0, 0, 324, 2139, 1, 0, 0, 0, 326, 2153, 1, 0, 0, 0, 328, 2167, 1, 0, 0, 0, 330, 2181, 1, 0, 0, 0, 332, 2183, 1, 0, 0, 0, 334, 2191, 1, 0, 0, 0, 336, 2194, 1, 0, 0, 0, 338, 2198, 1, 0, 0, 0, 340, 2201, 1, 0, 0, 0, 342, 2212, 1, 0, 0, 0, 344, 2222, 1, 0, 0, 0, 346, 2228, 1, 0, 0, 0, 348, 2236, 1, 0, 0, 0, 350, 2252, 1, 0, 0, 0, 352, 2261, 1, 0, 0, 0, 354, 2263, 1, 0, 0, 0, 356, 2265, 1, 0, 0, 0, 358, 2281, 1, 0, 0, 0, 360, 2283, 1, 0, 0, 0, 362, 2286, 1, 0, 0, 0, 364, 2288, 1, 0, 0, 0, 366, 2290, 1, 0, 0, 0, 368, 2292, 1, 0, 0, 0, 370, 2294, 1, 0, 0, 0, 372, 2296, 1, 0, 0, 0, 374, 2298, 1, 0, 0, 0, 376, 2300, 1, 0, 0, 0, 378, 2302, 1, 0, 0, 0, 380, 2304, 1, 0, 0, 0, 382, 2306, 1, 0, 0, 0, 384, 386, 3, 2, 1, 0, 385, 384, 1, 0, 0, 0, 386, 389, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 390, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 390, 391, 5, 0, 0, 1, 391, 1, 1, 0, 0, 0, 392, 394, 3, 4, 2, 0, 393, 395, 5, 522, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 398, 3, 6, 3, 0, 397, 392, 1, 0, 0, 0, 397, 396, 1, 0, 0, 0, 398, 3, 1, 0, 0, 0, 399, 412, 3, 8, 4, 0, 400, 412, 3, 10, 5, 0, 401, 412, 3, 12, 6, 0, 402, 412, 3, 14, 7, 0, 403, 412, 3, 20, 10, 0, 404, 412, 3, 24, 12, 0, 405, 412, 3, 26, 13, 0, 406, 412, 3, 28, 14, 0, 407, 412, 3, 30, 15, 0, 408, 412, 3, 32, 16, 0, 409, 412, 3, 34, 17, 0, 410, 412, 3, 36, 18, 0, 411, 399, 1, 0, 0, 0, 411, 400, 1, 0, 0, 0, 411, 401, 1, 0, 0, 0, 411, 402, 1, 0, 0, 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, 5, 1, 0, 0, 0, 413, 414, 5, 522, 0, 0, 414, 7, 1, 0, 0, 0, 415, 430, 3, 40, 20, 0, 416, 430, 3, 102, 51, 0, 417, 430, 3, 104, 52, 0, 418, 430, 3, 106, 53, 0, 419, 430, 3, 100, 50, 0, 420, 430, 3, 112, 56, 0, 421, 430, 3, 126, 63, 0, 422, 430, 3, 128, 64, 0, 423, 430, 3, 130, 65, 0, 424, 430, 3, 132, 66, 0, 425, 430, 3, 134, 67, 0, 426, 430, 3, 136, 68, 0, 427, 430, 3, 138, 69, 0, 428, 430, 3, 140, 70, 0, 429, 415, 1, 0, 0, 0, 429, 416, 1, 0, 0, 0, 429, 417, 1, 0, 0, 0, 429, 418, 1, 0, 0, 0, 429, 419, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 421, 1, 0, 0, 0, 429, 422, 1, 0, 0, 0, 429, 423, 1, 0, 0, 0, 429, 424, 1, 0, 0, 0, 429, 425, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 9, 1, 0, 0, 0, 431, 434, 3, 156, 78, 0, 432, 434, 3, 142, 71, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 11, 1, 0, 0, 0, 435, 436, 7, 0, 0, 0, 436, 437, 3, 326, 163, 0, 437, 13, 1, 0, 0, 0, 438, 442, 5, 135, 0, 0, 439, 443, 3, 16, 8, 0, 440, 441, 5, 480, 0, 0, 441, 443, 5, 146, 0, 0, 442, 439, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 447, 1, 0, 0, 0, 444, 448, 3, 10, 5, 0, 445, 448, 3, 144, 72, 0, 446, 448, 3, 154, 77, 0, 447, 444, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 446, 1, 0, 0, 0, 448, 15, 1, 0, 0, 0, 449, 454, 3, 18, 9, 0, 450, 451, 5, 521, 0, 0, 451, 453, 3, 18, 9, 0, 452, 450, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 17, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 458, 7, 1, 0, 0, 458, 19, 1, 0, 0, 0, 459, 460, 5, 411, 0, 0, 460, 461, 5, 442, 0, 0, 461, 466, 3, 316, 158, 0, 462, 463, 5, 411, 0, 0, 463, 466, 3, 320, 160, 0, 464, 466, 3, 22, 11, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 465, 464, 1, 0, 0, 0, 466, 21, 1, 0, 0, 0, 467, 468, 5, 411, 0, 0, 468, 469, 5, 228, 0, 0, 469, 474, 3, 332, 166, 0, 470, 471, 5, 521, 0, 0, 471, 473, 3, 332, 166, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 23, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 478, 5, 342, 0, 0, 478, 520, 7, 2, 0, 0, 479, 480, 5, 342, 0, 0, 480, 481, 5, 76, 0, 0, 481, 520, 7, 3, 0, 0, 482, 483, 5, 342, 0, 0, 483, 486, 5, 375, 0, 0, 484, 485, 7, 4, 0, 0, 485, 487, 3, 320, 160, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 490, 3, 262, 131, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 520, 1, 0, 0, 0, 491, 492, 5, 342, 0, 0, 492, 493, 5, 58, 0, 0, 493, 496, 7, 4, 0, 0, 494, 497, 3, 328, 164, 0, 495, 497, 3, 326, 163, 0, 496, 494, 1, 0, 0, 0, 496, 495, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 500, 3, 262, 131, 0, 499, 498, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 520, 1, 0, 0, 0, 501, 502, 5, 342, 0, 0, 502, 507, 5, 72, 0, 0, 503, 504, 5, 374, 0, 0, 504, 508, 3, 326, 163, 0, 505, 506, 5, 502, 0, 0, 506, 508, 3, 328, 164, 0, 507, 503, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 520, 1, 0, 0, 0, 509, 511, 5, 342, 0, 0, 510, 512, 5, 412, 0, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 520, 5, 154, 0, 0, 514, 516, 5, 342, 0, 0, 515, 517, 5, 152, 0, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 520, 5, 228, 0, 0, 519, 477, 1, 0, 0, 0, 519, 479, 1, 0, 0, 0, 519, 482, 1, 0, 0, 0, 519, 491, 1, 0, 0, 0, 519, 501, 1, 0, 0, 0, 519, 509, 1, 0, 0, 0, 519, 514, 1, 0, 0, 0, 520, 25, 1, 0, 0, 0, 521, 522, 5, 469, 0, 0, 522, 523, 5, 227, 0, 0, 523, 526, 3, 332, 166, 0, 524, 525, 5, 434, 0, 0, 525, 527, 3, 340, 170, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 27, 1, 0, 0, 0, 528, 529, 5, 501, 0, 0, 529, 530, 5, 227, 0, 0, 530, 531, 3, 332, 166, 0, 531, 29, 1, 0, 0, 0, 532, 534, 5, 341, 0, 0, 533, 535, 3, 342, 171, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 31, 1, 0, 0, 0, 536, 538, 5, 313, 0, 0, 537, 539, 3, 344, 172, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 33, 1, 0, 0, 0, 540, 541, 7, 5, 0, 0, 541, 542, 5, 464, 0, 0, 542, 543, 3, 110, 55, 0, 543, 35, 1, 0, 0, 0, 544, 545, 5, 438, 0, 0, 545, 546, 5, 464, 0, 0, 546, 547, 5, 434, 0, 0, 547, 550, 3, 38, 19, 0, 548, 549, 5, 17, 0, 0, 549, 551, 3, 332, 166, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 595, 1, 0, 0, 0, 552, 553, 5, 438, 0, 0, 553, 554, 5, 457, 0, 0, 554, 555, 5, 434, 0, 0, 555, 558, 3, 38, 19, 0, 556, 557, 5, 17, 0, 0, 557, 559, 3, 332, 166, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 562, 1, 0, 0, 0, 560, 561, 5, 312, 0, 0, 561, 563, 3, 332, 166, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 595, 1, 0, 0, 0, 564, 565, 5, 438, 0, 0, 565, 566, 7, 6, 0, 0, 566, 567, 5, 434, 0, 0, 567, 568, 3, 38, 19, 0, 568, 569, 5, 312, 0, 0, 569, 570, 3, 332, 166, 0, 570, 595, 1, 0, 0, 0, 571, 572, 5, 438, 0, 0, 572, 573, 5, 487, 0, 0, 573, 595, 3, 38, 19, 0, 574, 575, 5, 438, 0, 0, 575, 576, 5, 454, 0, 0, 576, 577, 5, 457, 0, 0, 577, 578, 5, 434, 0, 0, 578, 579, 3, 38, 19, 0, 579, 580, 5, 312, 0, 0, 580, 581, 3, 332, 166, 0, 581, 582, 5, 467, 0, 0, 582, 583, 3, 332, 166, 0, 583, 595, 1, 0, 0, 0, 584, 585, 5, 438, 0, 0, 585, 586, 5, 444, 0, 0, 586, 587, 5, 457, 0, 0, 587, 588, 5, 434, 0, 0, 588, 589, 3, 38, 19, 0, 589, 590, 5, 146, 0, 0, 590, 591, 3, 332, 166, 0, 591, 592, 5, 17, 0, 0, 592, 593, 3, 332, 166, 0, 593, 595, 1, 0, 0, 0, 594, 544, 1, 0, 0, 0, 594, 552, 1, 0, 0, 0, 594, 564, 1, 0, 0, 0, 594, 571, 1, 0, 0, 0, 594, 574, 1, 0, 0, 0, 594, 584, 1, 0, 0, 0, 595, 37, 1, 0, 0, 0, 596, 598, 5, 535, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 601, 3, 332, 166, 0, 600, 597, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 39, 1, 0, 0, 0, 604, 607, 3, 42, 21, 0, 605, 607, 3, 44, 22, 0, 606, 604, 1, 0, 0, 0, 606, 605, 1, 0, 0, 0, 607, 41, 1, 0, 0, 0, 608, 610, 5, 72, 0, 0, 609, 611, 5, 498, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 614, 5, 374, 0, 0, 613, 615, 3, 336, 168, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 3, 324, 162, 0, 617, 618, 5, 517, 0, 0, 618, 623, 3, 46, 23, 0, 619, 620, 5, 521, 0, 0, 620, 622, 3, 46, 23, 0, 621, 619, 1, 0, 0, 0, 622, 625, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 627, 5, 521, 0, 0, 627, 629, 3, 80, 40, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 631, 5, 521, 0, 0, 631, 633, 3, 82, 41, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 635, 5, 521, 0, 0, 635, 637, 3, 86, 43, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 641, 5, 518, 0, 0, 639, 640, 5, 59, 0, 0, 640, 642, 5, 538, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 644, 1, 0, 0, 0, 643, 645, 3, 88, 44, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 3, 334, 167, 0, 647, 649, 3, 96, 48, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 43, 1, 0, 0, 0, 650, 651, 5, 72, 0, 0, 651, 653, 5, 374, 0, 0, 652, 654, 3, 336, 168, 0, 653, 652, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 3, 324, 162, 0, 656, 659, 3, 334, 167, 0, 657, 658, 5, 17, 0, 0, 658, 660, 3, 156, 78, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 45, 1, 0, 0, 0, 661, 665, 3, 48, 24, 0, 662, 665, 3, 72, 36, 0, 663, 665, 3, 76, 38, 0, 664, 661, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 663, 1, 0, 0, 0, 665, 47, 1, 0, 0, 0, 666, 667, 3, 50, 25, 0, 667, 669, 3, 56, 28, 0, 668, 670, 3, 70, 35, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 673, 1, 0, 0, 0, 671, 672, 5, 59, 0, 0, 672, 674, 5, 538, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 49, 1, 0, 0, 0, 675, 678, 3, 332, 166, 0, 676, 678, 3, 256, 128, 0, 677, 675, 1, 0, 0, 0, 677, 676, 1, 0, 0, 0, 678, 51, 1, 0, 0, 0, 679, 682, 3, 332, 166, 0, 680, 682, 4, 26, 0, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 53, 1, 0, 0, 0, 683, 684, 5, 517, 0, 0, 684, 689, 3, 52, 26, 0, 685, 686, 5, 521, 0, 0, 686, 688, 3, 52, 26, 0, 687, 685, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 693, 5, 518, 0, 0, 693, 55, 1, 0, 0, 0, 694, 732, 7, 7, 0, 0, 695, 697, 7, 8, 0, 0, 696, 698, 3, 58, 29, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 732, 1, 0, 0, 0, 699, 701, 5, 380, 0, 0, 700, 702, 3, 58, 29, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 709, 1, 0, 0, 0, 703, 705, 7, 9, 0, 0, 704, 706, 5, 207, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 379, 0, 0, 708, 710, 5, 505, 0, 0, 709, 703, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 732, 1, 0, 0, 0, 711, 713, 7, 10, 0, 0, 712, 714, 3, 60, 30, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 732, 1, 0, 0, 0, 715, 717, 7, 11, 0, 0, 716, 718, 3, 64, 32, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 732, 1, 0, 0, 0, 719, 721, 5, 470, 0, 0, 720, 722, 3, 66, 33, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 732, 1, 0, 0, 0, 723, 725, 5, 322, 0, 0, 724, 726, 3, 68, 34, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 732, 1, 0, 0, 0, 727, 729, 5, 295, 0, 0, 728, 730, 3, 62, 31, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 694, 1, 0, 0, 0, 731, 695, 1, 0, 0, 0, 731, 699, 1, 0, 0, 0, 731, 711, 1, 0, 0, 0, 731, 715, 1, 0, 0, 0, 731, 719, 1, 0, 0, 0, 731, 723, 1, 0, 0, 0, 731, 727, 1, 0, 0, 0, 732, 57, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 735, 3, 364, 182, 0, 735, 736, 5, 518, 0, 0, 736, 59, 1, 0, 0, 0, 737, 738, 5, 517, 0, 0, 738, 741, 3, 364, 182, 0, 739, 740, 5, 521, 0, 0, 740, 742, 3, 364, 182, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 518, 0, 0, 744, 61, 1, 0, 0, 0, 745, 746, 5, 517, 0, 0, 746, 749, 3, 362, 181, 0, 747, 748, 5, 521, 0, 0, 748, 750, 3, 362, 181, 0, 749, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 5, 518, 0, 0, 752, 63, 1, 0, 0, 0, 753, 754, 5, 508, 0, 0, 754, 755, 3, 56, 28, 0, 755, 756, 5, 507, 0, 0, 756, 65, 1, 0, 0, 0, 757, 758, 5, 508, 0, 0, 758, 759, 3, 56, 28, 0, 759, 760, 5, 521, 0, 0, 760, 761, 3, 56, 28, 0, 761, 762, 1, 0, 0, 0, 762, 763, 5, 507, 0, 0, 763, 67, 1, 0, 0, 0, 764, 765, 5, 508, 0, 0, 765, 766, 3, 52, 26, 0, 766, 773, 3, 56, 28, 0, 767, 768, 5, 521, 0, 0, 768, 769, 3, 52, 26, 0, 769, 770, 3, 56, 28, 0, 770, 772, 1, 0, 0, 0, 771, 767, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 777, 5, 507, 0, 0, 777, 793, 1, 0, 0, 0, 778, 779, 5, 517, 0, 0, 779, 780, 3, 52, 26, 0, 780, 787, 3, 56, 28, 0, 781, 782, 5, 521, 0, 0, 782, 783, 3, 52, 26, 0, 783, 784, 3, 56, 28, 0, 784, 786, 1, 0, 0, 0, 785, 781, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 790, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 790, 791, 5, 518, 0, 0, 791, 793, 1, 0, 0, 0, 792, 764, 1, 0, 0, 0, 792, 778, 1, 0, 0, 0, 793, 69, 1, 0, 0, 0, 794, 795, 5, 64, 0, 0, 795, 797, 3, 84, 42, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 289, 0, 0, 799, 802, 5, 467, 0, 0, 800, 801, 5, 242, 0, 0, 801, 803, 5, 125, 0, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 809, 1, 0, 0, 0, 804, 806, 5, 242, 0, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 5, 245, 0, 0, 808, 796, 1, 0, 0, 0, 808, 805, 1, 0, 0, 0, 809, 71, 1, 0, 0, 0, 810, 811, 3, 50, 25, 0, 811, 812, 3, 56, 28, 0, 812, 815, 5, 219, 0, 0, 813, 814, 5, 151, 0, 0, 814, 816, 3, 74, 37, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 5, 424, 0, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 73, 1, 0, 0, 0, 820, 821, 5, 538, 0, 0, 821, 75, 1, 0, 0, 0, 822, 823, 3, 50, 25, 0, 823, 824, 5, 17, 0, 0, 824, 827, 3, 78, 39, 0, 825, 826, 5, 59, 0, 0, 826, 828, 5, 538, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 77, 1, 0, 0, 0, 829, 830, 3, 256, 128, 0, 830, 79, 1, 0, 0, 0, 831, 832, 5, 425, 0, 0, 832, 833, 5, 146, 0, 0, 833, 834, 3, 52, 26, 0, 834, 835, 5, 17, 0, 0, 835, 836, 3, 256, 128, 0, 836, 81, 1, 0, 0, 0, 837, 838, 5, 64, 0, 0, 838, 840, 3, 84, 42, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 289, 0, 0, 842, 843, 5, 467, 0, 0, 843, 844, 3, 54, 27, 0, 844, 845, 5, 242, 0, 0, 845, 846, 5, 125, 0, 0, 846, 83, 1, 0, 0, 0, 847, 848, 3, 308, 154, 0, 848, 85, 1, 0, 0, 0, 849, 850, 5, 278, 0, 0, 850, 851, 5, 146, 0, 0, 851, 852, 5, 372, 0, 0, 852, 87, 1, 0, 0, 0, 853, 854, 5, 270, 0, 0, 854, 855, 5, 34, 0, 0, 855, 856, 3, 90, 45, 0, 856, 89, 1, 0, 0, 0, 857, 858, 5, 517, 0, 0, 858, 863, 3, 92, 46, 0, 859, 860, 5, 521, 0, 0, 860, 862, 3, 92, 46, 0, 861, 859, 1, 0, 0, 0, 862, 865, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 866, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 866, 867, 5, 518, 0, 0, 867, 91, 1, 0, 0, 0, 868, 881, 3, 52, 26, 0, 869, 870, 5, 517, 0, 0, 870, 875, 3, 94, 47, 0, 871, 872, 5, 521, 0, 0, 872, 874, 3, 94, 47, 0, 873, 871, 1, 0, 0, 0, 874, 877, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 878, 1, 0, 0, 0, 877, 875, 1, 0, 0, 0, 878, 879, 5, 518, 0, 0, 879, 881, 1, 0, 0, 0, 880, 868, 1, 0, 0, 0, 880, 869, 1, 0, 0, 0, 881, 93, 1, 0, 0, 0, 882, 885, 3, 284, 142, 0, 883, 885, 3, 358, 179, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, 0, 885, 95, 1, 0, 0, 0, 886, 887, 5, 203, 0, 0, 887, 896, 3, 326, 163, 0, 888, 892, 5, 517, 0, 0, 889, 891, 3, 98, 49, 0, 890, 889, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 895, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 897, 5, 518, 0, 0, 896, 888, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 97, 1, 0, 0, 0, 898, 899, 7, 12, 0, 0, 899, 903, 7, 13, 0, 0, 900, 901, 7, 14, 0, 0, 901, 903, 7, 15, 0, 0, 902, 898, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 99, 1, 0, 0, 0, 904, 905, 5, 72, 0, 0, 905, 906, 5, 442, 0, 0, 906, 907, 3, 318, 159, 0, 907, 908, 3, 334, 167, 0, 908, 101, 1, 0, 0, 0, 909, 910, 5, 72, 0, 0, 910, 912, 5, 448, 0, 0, 911, 913, 3, 336, 168, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 917, 3, 322, 161, 0, 915, 916, 5, 59, 0, 0, 916, 918, 5, 538, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 3, 334, 167, 0, 920, 103, 1, 0, 0, 0, 921, 923, 5, 72, 0, 0, 922, 924, 5, 498, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 927, 5, 502, 0, 0, 926, 928, 3, 336, 168, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 3, 330, 165, 0, 930, 932, 3, 54, 27, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 934, 5, 59, 0, 0, 934, 936, 5, 538, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 5, 17, 0, 0, 938, 939, 3, 156, 78, 0, 939, 105, 1, 0, 0, 0, 940, 944, 5, 72, 0, 0, 941, 945, 5, 498, 0, 0, 942, 943, 5, 498, 0, 0, 943, 945, 5, 371, 0, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 5, 153, 0, 0, 947, 949, 3, 336, 168, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 3, 270, 135, 0, 951, 952, 5, 17, 0, 0, 952, 955, 3, 308, 154, 0, 953, 954, 5, 196, 0, 0, 954, 956, 7, 16, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 958, 1, 0, 0, 0, 957, 959, 3, 108, 54, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 107, 1, 0, 0, 0, 960, 961, 5, 413, 0, 0, 961, 962, 5, 464, 0, 0, 962, 968, 3, 110, 55, 0, 963, 964, 5, 521, 0, 0, 964, 965, 5, 464, 0, 0, 965, 967, 3, 110, 55, 0, 966, 963, 1, 0, 0, 0, 967, 970, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 109, 1, 0, 0, 0, 970, 968, 1, 0, 0, 0, 971, 972, 5, 538, 0, 0, 972, 111, 1, 0, 0, 0, 973, 974, 5, 8, 0, 0, 974, 976, 5, 374, 0, 0, 975, 977, 3, 338, 169, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 984, 3, 326, 163, 0, 979, 985, 3, 114, 57, 0, 980, 985, 3, 116, 58, 0, 981, 985, 3, 118, 59, 0, 982, 985, 3, 120, 60, 0, 983, 985, 3, 122, 61, 0, 984, 979, 1, 0, 0, 0, 984, 980, 1, 0, 0, 0, 984, 981, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 983, 1, 0, 0, 0, 985, 113, 1, 0, 0, 0, 986, 988, 5, 312, 0, 0, 987, 989, 3, 332, 166, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 389, 0, 0, 991, 992, 3, 332, 166, 0, 992, 115, 1, 0, 0, 0, 993, 994, 5, 341, 0, 0, 994, 995, 3, 340, 170, 0, 995, 117, 1, 0, 0, 0, 996, 997, 5, 438, 0, 0, 997, 998, 5, 64, 0, 0, 998, 999, 3, 84, 42, 0, 999, 1000, 5, 289, 0, 0, 1000, 1001, 5, 467, 0, 0, 1001, 1003, 3, 54, 27, 0, 1002, 1004, 3, 124, 62, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 119, 1, 0, 0, 0, 1005, 1006, 5, 116, 0, 0, 1006, 1007, 5, 64, 0, 0, 1007, 1008, 3, 84, 42, 0, 1008, 121, 1, 0, 0, 0, 1009, 1010, 5, 438, 0, 0, 1010, 1011, 5, 404, 0, 0, 1011, 1012, 3, 54, 27, 0, 1012, 123, 1, 0, 0, 0, 1013, 1014, 5, 242, 0, 0, 1014, 1015, 5, 125, 0, 0, 1015, 125, 1, 0, 0, 0, 1016, 1017, 5, 8, 0, 0, 1017, 1018, 5, 502, 0, 0, 1018, 1022, 3, 328, 164, 0, 1019, 1023, 3, 114, 57, 0, 1020, 1021, 5, 17, 0, 0, 1021, 1023, 3, 156, 78, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 127, 1, 0, 0, 0, 1024, 1025, 5, 8, 0, 0, 1025, 1026, 5, 448, 0, 0, 1026, 1027, 3, 320, 160, 0, 1027, 1028, 3, 116, 58, 0, 1028, 129, 1, 0, 0, 0, 1029, 1033, 5, 8, 0, 0, 1030, 1034, 5, 498, 0, 0, 1031, 1032, 5, 498, 0, 0, 1032, 1034, 5, 371, 0, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 153, 0, 0, 1036, 1038, 3, 338, 169, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 3, 272, 136, 0, 1040, 1041, 5, 17, 0, 0, 1041, 1044, 3, 308, 154, 0, 1042, 1043, 5, 196, 0, 0, 1043, 1045, 7, 16, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 131, 1, 0, 0, 0, 1046, 1047, 5, 116, 0, 0, 1047, 1049, 5, 442, 0, 0, 1048, 1050, 3, 338, 169, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 3, 316, 158, 0, 1052, 133, 1, 0, 0, 0, 1053, 1055, 5, 116, 0, 0, 1054, 1056, 5, 498, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 5, 374, 0, 0, 1058, 1060, 3, 338, 169, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 3, 326, 163, 0, 1062, 135, 1, 0, 0, 0, 1063, 1064, 5, 116, 0, 0, 1064, 1066, 5, 448, 0, 0, 1065, 1067, 3, 338, 169, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 3, 320, 160, 0, 1069, 1071, 7, 17, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 137, 1, 0, 0, 0, 1072, 1074, 5, 116, 0, 0, 1073, 1075, 5, 498, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1078, 5, 502, 0, 0, 1077, 1079, 3, 338, 169, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 3, 328, 164, 0, 1081, 139, 1, 0, 0, 0, 1082, 1086, 5, 116, 0, 0, 1083, 1087, 5, 498, 0, 0, 1084, 1085, 5, 498, 0, 0, 1085, 1087, 5, 371, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 5, 153, 0, 0, 1089, 1091, 3, 338, 169, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 3, 272, 136, 0, 1093, 141, 1, 0, 0, 0, 1094, 1096, 5, 132, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1102, 3, 144, 72, 0, 1098, 1102, 3, 152, 76, 0, 1099, 1100, 5, 132, 0, 0, 1100, 1102, 3, 154, 77, 0, 1101, 1095, 1, 0, 0, 0, 1101, 1098, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 143, 1, 0, 0, 0, 1103, 1104, 5, 177, 0, 0, 1104, 1105, 7, 18, 0, 0, 1105, 1114, 3, 326, 163, 0, 1106, 1108, 3, 146, 73, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 3, 54, 27, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1115, 3, 156, 78, 0, 1113, 1115, 3, 148, 74, 0, 1114, 1107, 1, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 145, 1, 0, 0, 0, 1116, 1117, 5, 269, 0, 0, 1117, 1118, 3, 340, 170, 0, 1118, 147, 1, 0, 0, 0, 1119, 1120, 5, 415, 0, 0, 1120, 1125, 3, 150, 75, 0, 1121, 1122, 5, 521, 0, 0, 1122, 1124, 3, 150, 75, 0, 1123, 1121, 1, 0, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 149, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1129, 5, 517, 0, 0, 1129, 1134, 3, 358, 179, 0, 1130, 1131, 5, 521, 0, 0, 1131, 1133, 3, 358, 179, 0, 1132, 1130, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1138, 5, 518, 0, 0, 1138, 151, 1, 0, 0, 0, 1139, 1140, 5, 24, 0, 0, 1140, 1141, 5, 355, 0, 0, 1141, 1142, 5, 341, 0, 0, 1142, 1146, 5, 522, 0, 0, 1143, 1144, 3, 144, 72, 0, 1144, 1145, 5, 522, 0, 0, 1145, 1147, 1, 0, 0, 0, 1146, 1143, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 122, 0, 0, 1151, 153, 1, 0, 0, 0, 1152, 1153, 5, 355, 0, 0, 1153, 1154, 5, 341, 0, 0, 1154, 1158, 5, 24, 0, 0, 1155, 1156, 3, 144, 72, 0, 1156, 1157, 5, 522, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 5, 122, 0, 0, 1163, 155, 1, 0, 0, 0, 1164, 1165, 6, 78, -1, 0, 1165, 1188, 3, 158, 79, 0, 1166, 1167, 3, 160, 80, 0, 1167, 1168, 3, 156, 78, 5, 1168, 1188, 1, 0, 0, 0, 1169, 1170, 5, 517, 0, 0, 1170, 1171, 3, 156, 78, 0, 1171, 1172, 5, 518, 0, 0, 1172, 1188, 1, 0, 0, 0, 1173, 1175, 3, 168, 84, 0, 1174, 1176, 3, 228, 114, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1179, 3, 232, 116, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1182, 3, 166, 83, 0, 1181, 1183, 3, 228, 114, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 0, 1184, 1186, 3, 232, 116, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1164, 1, 0, 0, 0, 1187, 1166, 1, 0, 0, 0, 1187, 1169, 1, 0, 0, 0, 1187, 1173, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1188, 1203, 1, 0, 0, 0, 1189, 1190, 10, 3, 0, 0, 1190, 1192, 7, 19, 0, 0, 1191, 1193, 5, 5, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1196, 3, 156, 78, 0, 1195, 1197, 3, 228, 114, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1200, 3, 232, 116, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1189, 1, 0, 0, 0, 1202, 1205, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 157, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1207, 5, 415, 0, 0, 1207, 1212, 3, 256, 128, 0, 1208, 1209, 5, 521, 0, 0, 1209, 1211, 3, 256, 128, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 159, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1216, 5, 434, 0, 0, 1216, 1221, 3, 162, 81, 0, 1217, 1218, 5, 521, 0, 0, 1218, 1220, 3, 162, 81, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 161, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1236, 3, 164, 82, 0, 1225, 1226, 5, 517, 0, 0, 1226, 1231, 3, 52, 26, 0, 1227, 1228, 5, 521, 0, 0, 1228, 1230, 3, 52, 26, 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, 1234, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1235, 5, 518, 0, 0, 1235, 1237, 1, 0, 0, 0, 1236, 1225, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 5, 17, 0, 0, 1239, 1240, 5, 517, 0, 0, 1240, 1241, 3, 156, 78, 0, 1241, 1242, 5, 518, 0, 0, 1242, 163, 1, 0, 0, 0, 1243, 1244, 3, 308, 154, 0, 1244, 165, 1, 0, 0, 0, 1245, 1247, 3, 168, 84, 0, 1246, 1248, 3, 174, 87, 0, 1247, 1246, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1250, 1, 0, 0, 0, 1249, 1251, 3, 202, 101, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1254, 3, 204, 102, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1257, 3, 218, 109, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1259, 1, 0, 0, 0, 1258, 1260, 3, 220, 110, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1266, 1, 0, 0, 0, 1261, 1262, 3, 168, 84, 0, 1262, 1263, 3, 174, 87, 0, 1263, 1264, 3, 226, 113, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1245, 1, 0, 0, 0, 1265, 1261, 1, 0, 0, 0, 1266, 167, 1, 0, 0, 0, 1267, 1269, 5, 337, 0, 0, 1268, 1270, 3, 368, 184, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1280, 1, 0, 0, 0, 1271, 1281, 5, 528, 0, 0, 1272, 1277, 3, 170, 85, 0, 1273, 1274, 5, 521, 0, 0, 1274, 1276, 3, 170, 85, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1271, 1, 0, 0, 0, 1280, 1272, 1, 0, 0, 0, 1281, 169, 1, 0, 0, 0, 1282, 1298, 3, 172, 86, 0, 1283, 1288, 3, 256, 128, 0, 1284, 1286, 5, 17, 0, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 3, 52, 26, 0, 1288, 1285, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1298, 1, 0, 0, 0, 1290, 1295, 3, 52, 26, 0, 1291, 1293, 5, 17, 0, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 256, 128, 0, 1295, 1292, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1282, 1, 0, 0, 0, 1297, 1283, 1, 0, 0, 0, 1297, 1290, 1, 0, 0, 0, 1298, 171, 1, 0, 0, 0, 1299, 1300, 3, 268, 134, 0, 1300, 1301, 5, 263, 0, 0, 1301, 1302, 3, 224, 112, 0, 1302, 1303, 5, 17, 0, 0, 1303, 1304, 3, 308, 154, 0, 1304, 1312, 1, 0, 0, 0, 1305, 1306, 3, 268, 134, 0, 1306, 1307, 5, 263, 0, 0, 1307, 1308, 3, 300, 150, 0, 1308, 1309, 5, 17, 0, 0, 1309, 1310, 3, 308, 154, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1299, 1, 0, 0, 0, 1311, 1305, 1, 0, 0, 0, 1312, 173, 1, 0, 0, 0, 1313, 1314, 5, 151, 0, 0, 1314, 1315, 3, 176, 88, 0, 1315, 175, 1, 0, 0, 0, 1316, 1317, 6, 88, -1, 0, 1317, 1322, 3, 178, 89, 0, 1318, 1319, 5, 521, 0, 0, 1319, 1321, 3, 178, 89, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1324, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1328, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1328, 3, 186, 93, 0, 1326, 1328, 3, 188, 94, 0, 1327, 1316, 1, 0, 0, 0, 1327, 1325, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1350, 1, 0, 0, 0, 1329, 1330, 10, 3, 0, 0, 1330, 1331, 5, 73, 0, 0, 1331, 1332, 5, 185, 0, 0, 1332, 1349, 3, 176, 88, 4, 1333, 1335, 10, 4, 0, 0, 1334, 1336, 5, 234, 0, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1339, 7, 20, 0, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1341, 1, 0, 0, 0, 1340, 1342, 5, 262, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 5, 185, 0, 0, 1344, 1346, 3, 176, 88, 0, 1345, 1347, 3, 200, 100, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1329, 1, 0, 0, 0, 1348, 1333, 1, 0, 0, 0, 1349, 1352, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 177, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1355, 3, 180, 90, 0, 1354, 1356, 3, 298, 149, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 179, 1, 0, 0, 0, 1357, 1359, 5, 374, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 3, 326, 163, 0, 1361, 1363, 3, 182, 91, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1387, 1, 0, 0, 0, 1364, 1366, 3, 328, 164, 0, 1365, 1367, 3, 182, 91, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1387, 1, 0, 0, 0, 1368, 1369, 5, 199, 0, 0, 1369, 1370, 5, 374, 0, 0, 1370, 1371, 5, 517, 0, 0, 1371, 1372, 3, 266, 133, 0, 1372, 1373, 5, 518, 0, 0, 1373, 1387, 1, 0, 0, 0, 1374, 1376, 5, 199, 0, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 5, 517, 0, 0, 1378, 1379, 3, 156, 78, 0, 1379, 1380, 5, 518, 0, 0, 1380, 1387, 1, 0, 0, 0, 1381, 1382, 5, 406, 0, 0, 1382, 1383, 5, 517, 0, 0, 1383, 1384, 3, 256, 128, 0, 1384, 1385, 5, 518, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1358, 1, 0, 0, 0, 1386, 1364, 1, 0, 0, 0, 1386, 1368, 1, 0, 0, 0, 1386, 1375, 1, 0, 0, 0, 1386, 1381, 1, 0, 0, 0, 1387, 181, 1, 0, 0, 0, 1388, 1389, 5, 146, 0, 0, 1389, 1390, 5, 372, 0, 0, 1390, 1391, 5, 17, 0, 0, 1391, 1392, 5, 250, 0, 0, 1392, 1393, 3, 184, 92, 0, 1393, 183, 1, 0, 0, 0, 1394, 1395, 3, 256, 128, 0, 1395, 185, 1, 0, 0, 0, 1396, 1397, 5, 517, 0, 0, 1397, 1398, 3, 148, 74, 0, 1398, 1399, 5, 518, 0, 0, 1399, 1400, 3, 298, 149, 0, 1400, 187, 1, 0, 0, 0, 1401, 1402, 5, 374, 0, 0, 1402, 1403, 5, 517, 0, 0, 1403, 1404, 3, 190, 95, 0, 1404, 1405, 5, 518, 0, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 3, 192, 96, 0, 1407, 1408, 5, 517, 0, 0, 1408, 1413, 3, 194, 97, 0, 1409, 1410, 5, 521, 0, 0, 1410, 1412, 3, 194, 97, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1417, 5, 518, 0, 0, 1417, 191, 1, 0, 0, 0, 1418, 1419, 7, 21, 0, 0, 1419, 193, 1, 0, 0, 0, 1420, 1421, 5, 374, 0, 0, 1421, 1436, 3, 216, 108, 0, 1422, 1436, 3, 198, 99, 0, 1423, 1436, 3, 286, 143, 0, 1424, 1425, 5, 447, 0, 0, 1425, 1426, 5, 537, 0, 0, 1426, 1427, 5, 374, 0, 0, 1427, 1436, 3, 216, 108, 0, 1428, 1429, 5, 499, 0, 0, 1429, 1430, 5, 537, 0, 0, 1430, 1436, 3, 198, 99, 0, 1431, 1432, 3, 196, 98, 0, 1432, 1433, 5, 537, 0, 0, 1433, 1434, 3, 286, 143, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1420, 1, 0, 0, 0, 1435, 1422, 1, 0, 0, 0, 1435, 1423, 1, 0, 0, 0, 1435, 1424, 1, 0, 0, 0, 1435, 1428, 1, 0, 0, 0, 1435, 1431, 1, 0, 0, 0, 1436, 195, 1, 0, 0, 0, 1437, 1438, 7, 22, 0, 0, 1438, 197, 1, 0, 0, 0, 1439, 1440, 5, 452, 0, 0, 1440, 1441, 5, 517, 0, 0, 1441, 1442, 3, 52, 26, 0, 1442, 1443, 5, 518, 0, 0, 1443, 199, 1, 0, 0, 0, 1444, 1445, 5, 254, 0, 0, 1445, 1449, 3, 258, 129, 0, 1446, 1447, 5, 413, 0, 0, 1447, 1449, 3, 54, 27, 0, 1448, 1444, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 201, 1, 0, 0, 0, 1450, 1451, 5, 431, 0, 0, 1451, 1452, 3, 258, 129, 0, 1452, 203, 1, 0, 0, 0, 1453, 1454, 5, 159, 0, 0, 1454, 1455, 5, 34, 0, 0, 1455, 1460, 3, 206, 103, 0, 1456, 1457, 5, 521, 0, 0, 1457, 1459, 3, 206, 103, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 205, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1504, 3, 52, 26, 0, 1464, 1504, 3, 212, 106, 0, 1465, 1466, 5, 517, 0, 0, 1466, 1504, 5, 518, 0, 0, 1467, 1468, 5, 517, 0, 0, 1468, 1473, 3, 256, 128, 0, 1469, 1470, 5, 521, 0, 0, 1470, 1472, 3, 256, 128, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1475, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1477, 5, 518, 0, 0, 1477, 1504, 1, 0, 0, 0, 1478, 1479, 3, 210, 105, 0, 1479, 1480, 5, 517, 0, 0, 1480, 1485, 3, 256, 128, 0, 1481, 1482, 5, 521, 0, 0, 1482, 1484, 3, 256, 128, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 518, 0, 0, 1489, 1504, 1, 0, 0, 0, 1490, 1491, 3, 208, 104, 0, 1491, 1492, 5, 517, 0, 0, 1492, 1497, 3, 206, 103, 0, 1493, 1494, 5, 521, 0, 0, 1494, 1496, 3, 206, 103, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1501, 5, 518, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1504, 3, 256, 128, 0, 1503, 1463, 1, 0, 0, 0, 1503, 1464, 1, 0, 0, 0, 1503, 1465, 1, 0, 0, 0, 1503, 1467, 1, 0, 0, 0, 1503, 1478, 1, 0, 0, 0, 1503, 1490, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 207, 1, 0, 0, 0, 1505, 1506, 5, 160, 0, 0, 1506, 1507, 5, 494, 0, 0, 1507, 209, 1, 0, 0, 0, 1508, 1509, 7, 23, 0, 0, 1509, 211, 1, 0, 0, 0, 1510, 1511, 3, 214, 107, 0, 1511, 1512, 5, 517, 0, 0, 1512, 1513, 3, 216, 108, 0, 1513, 1514, 5, 521, 0, 0, 1514, 1515, 3, 286, 143, 0, 1515, 1516, 5, 518, 0, 0, 1516, 213, 1, 0, 0, 0, 1517, 1518, 7, 24, 0, 0, 1518, 215, 1, 0, 0, 0, 1519, 1520, 3, 332, 166, 0, 1520, 217, 1, 0, 0, 0, 1521, 1522, 5, 163, 0, 0, 1522, 1523, 3, 258, 129, 0, 1523, 219, 1, 0, 0, 0, 1524, 1525, 5, 433, 0, 0, 1525, 1530, 3, 222, 111, 0, 1526, 1527, 5, 521, 0, 0, 1527, 1529, 3, 222, 111, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1532, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 221, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1534, 3, 300, 150, 0, 1534, 1535, 5, 17, 0, 0, 1535, 1536, 3, 224, 112, 0, 1536, 223, 1, 0, 0, 0, 1537, 1539, 3, 300, 150, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 5, 517, 0, 0, 1541, 1543, 3, 234, 117, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 228, 114, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 250, 125, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 5, 518, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1553, 5, 214, 0, 0, 1553, 1555, 5, 517, 0, 0, 1554, 1556, 3, 234, 117, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 228, 114, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 238, 119, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1564, 1, 0, 0, 0, 1563, 1565, 3, 244, 122, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1568, 3, 246, 123, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1571, 3, 240, 120, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 248, 124, 0, 1573, 1578, 5, 518, 0, 0, 1574, 1576, 5, 17, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 3, 308, 154, 0, 1578, 1575, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 227, 1, 0, 0, 0, 1580, 1581, 5, 259, 0, 0, 1581, 1582, 5, 34, 0, 0, 1582, 1587, 3, 230, 115, 0, 1583, 1584, 5, 521, 0, 0, 1584, 1586, 3, 230, 115, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 229, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1592, 3, 52, 26, 0, 1591, 1593, 7, 25, 0, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1595, 5, 477, 0, 0, 1595, 1597, 7, 26, 0, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 231, 1, 0, 0, 0, 1598, 1601, 5, 205, 0, 0, 1599, 1602, 5, 5, 0, 0, 1600, 1602, 3, 256, 128, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1600, 1, 0, 0, 0, 1602, 233, 1, 0, 0, 0, 1603, 1604, 5, 269, 0, 0, 1604, 1607, 5, 34, 0, 0, 1605, 1608, 3, 52, 26, 0, 1606, 1608, 3, 268, 134, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 1616, 1, 0, 0, 0, 1609, 1612, 5, 521, 0, 0, 1610, 1613, 3, 52, 26, 0, 1611, 1613, 3, 268, 134, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1611, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1609, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1636, 5, 528, 0, 0, 1620, 1636, 5, 531, 0, 0, 1621, 1636, 5, 536, 0, 0, 1622, 1623, 5, 519, 0, 0, 1623, 1624, 5, 539, 0, 0, 1624, 1625, 5, 521, 0, 0, 1625, 1626, 5, 539, 0, 0, 1626, 1636, 5, 520, 0, 0, 1627, 1628, 5, 519, 0, 0, 1628, 1629, 5, 539, 0, 0, 1629, 1630, 5, 521, 0, 0, 1630, 1636, 5, 520, 0, 0, 1631, 1632, 5, 519, 0, 0, 1632, 1633, 5, 521, 0, 0, 1633, 1634, 5, 539, 0, 0, 1634, 1636, 5, 520, 0, 0, 1635, 1619, 1, 0, 0, 0, 1635, 1620, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1622, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 237, 1, 0, 0, 0, 1637, 1638, 5, 216, 0, 0, 1638, 1643, 3, 170, 85, 0, 1639, 1640, 5, 521, 0, 0, 1640, 1642, 3, 170, 85, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1645, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 239, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1647, 5, 272, 0, 0, 1647, 1649, 5, 517, 0, 0, 1648, 1650, 3, 242, 121, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1655, 5, 518, 0, 0, 1654, 1656, 3, 254, 127, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1659, 3, 310, 155, 0, 1658, 1660, 3, 236, 118, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1662, 5, 5, 0, 0, 1662, 1663, 5, 323, 0, 0, 1663, 1664, 5, 273, 0, 0, 1664, 1670, 5, 211, 0, 0, 1665, 1666, 5, 255, 0, 0, 1666, 1667, 5, 322, 0, 0, 1667, 1668, 5, 273, 0, 0, 1668, 1670, 5, 211, 0, 0, 1669, 1661, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1670, 245, 1, 0, 0, 0, 1671, 1672, 5, 439, 0, 0, 1672, 1673, 5, 211, 0, 0, 1673, 1674, 5, 344, 0, 0, 1674, 1675, 5, 479, 0, 0, 1675, 1676, 5, 468, 0, 0, 1676, 1696, 5, 322, 0, 0, 1677, 1678, 5, 439, 0, 0, 1678, 1679, 5, 211, 0, 0, 1679, 1680, 5, 344, 0, 0, 1680, 1681, 5, 389, 0, 0, 1681, 1682, 5, 238, 0, 0, 1682, 1696, 5, 322, 0, 0, 1683, 1684, 5, 439, 0, 0, 1684, 1685, 5, 211, 0, 0, 1685, 1686, 5, 344, 0, 0, 1686, 1687, 5, 389, 0, 0, 1687, 1688, 5, 468, 0, 0, 1688, 1696, 3, 310, 155, 0, 1689, 1690, 5, 439, 0, 0, 1690, 1691, 5, 211, 0, 0, 1691, 1692, 5, 344, 0, 0, 1692, 1693, 5, 389, 0, 0, 1693, 1694, 5, 458, 0, 0, 1694, 1696, 3, 310, 155, 0, 1695, 1671, 1, 0, 0, 0, 1695, 1677, 1, 0, 0, 0, 1695, 1683, 1, 0, 0, 0, 1695, 1689, 1, 0, 0, 0, 1696, 247, 1, 0, 0, 0, 1697, 1698, 5, 105, 0, 0, 1698, 1703, 3, 170, 85, 0, 1699, 1700, 5, 521, 0, 0, 1700, 1702, 3, 170, 85, 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, 249, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1707, 5, 293, 0, 0, 1707, 1708, 5, 27, 0, 0, 1708, 1709, 3, 286, 143, 0, 1709, 1710, 3, 252, 126, 0, 1710, 1716, 1, 0, 0, 0, 1711, 1712, 5, 323, 0, 0, 1712, 1713, 5, 27, 0, 0, 1713, 1714, 5, 539, 0, 0, 1714, 1716, 3, 252, 126, 0, 1715, 1706, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 481, 0, 0, 1718, 1719, 5, 10, 0, 0, 1719, 1720, 5, 76, 0, 0, 1720, 1721, 5, 322, 0, 0, 1721, 253, 1, 0, 0, 0, 1722, 1723, 5, 435, 0, 0, 1723, 1724, 3, 286, 143, 0, 1724, 255, 1, 0, 0, 0, 1725, 1726, 3, 258, 129, 0, 1726, 257, 1, 0, 0, 0, 1727, 1728, 6, 129, -1, 0, 1728, 1729, 5, 242, 0, 0, 1729, 1740, 3, 258, 129, 6, 1730, 1731, 5, 133, 0, 0, 1731, 1732, 5, 517, 0, 0, 1732, 1733, 3, 156, 78, 0, 1733, 1734, 5, 518, 0, 0, 1734, 1740, 1, 0, 0, 0, 1735, 1737, 3, 264, 132, 0, 1736, 1738, 3, 260, 130, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 1, 0, 0, 0, 1739, 1727, 1, 0, 0, 0, 1739, 1730, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1740, 1755, 1, 0, 0, 0, 1741, 1742, 10, 3, 0, 0, 1742, 1743, 5, 10, 0, 0, 1743, 1754, 3, 258, 129, 4, 1744, 1745, 10, 2, 0, 0, 1745, 1746, 5, 258, 0, 0, 1746, 1754, 3, 258, 129, 3, 1747, 1748, 10, 1, 0, 0, 1748, 1750, 5, 184, 0, 0, 1749, 1751, 5, 242, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 7, 27, 0, 0, 1753, 1741, 1, 0, 0, 0, 1753, 1744, 1, 0, 0, 0, 1753, 1747, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 259, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1760, 5, 242, 0, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 5, 27, 0, 0, 1762, 1764, 7, 28, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 264, 132, 0, 1766, 1767, 5, 10, 0, 0, 1767, 1768, 3, 264, 132, 0, 1768, 1833, 1, 0, 0, 0, 1769, 1771, 5, 242, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 5, 170, 0, 0, 1773, 1774, 5, 517, 0, 0, 1774, 1779, 3, 256, 128, 0, 1775, 1776, 5, 521, 0, 0, 1776, 1778, 3, 256, 128, 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, 518, 0, 0, 1783, 1833, 1, 0, 0, 0, 1784, 1786, 5, 242, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 5, 170, 0, 0, 1788, 1789, 5, 517, 0, 0, 1789, 1790, 3, 156, 78, 0, 1790, 1791, 5, 518, 0, 0, 1791, 1833, 1, 0, 0, 0, 1792, 1793, 5, 133, 0, 0, 1793, 1794, 5, 517, 0, 0, 1794, 1795, 3, 156, 78, 0, 1795, 1796, 5, 518, 0, 0, 1796, 1833, 1, 0, 0, 0, 1797, 1799, 5, 242, 0, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 5, 319, 0, 0, 1801, 1833, 3, 264, 132, 0, 1802, 1833, 3, 262, 131, 0, 1803, 1805, 5, 184, 0, 0, 1804, 1806, 5, 242, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1833, 7, 27, 0, 0, 1808, 1810, 5, 184, 0, 0, 1809, 1811, 5, 242, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 5, 113, 0, 0, 1813, 1814, 5, 151, 0, 0, 1814, 1833, 3, 264, 132, 0, 1815, 1817, 5, 242, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 343, 0, 0, 1819, 1820, 5, 389, 0, 0, 1820, 1823, 3, 264, 132, 0, 1821, 1822, 5, 127, 0, 0, 1822, 1824, 3, 362, 181, 0, 1823, 1821, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1833, 1, 0, 0, 0, 1825, 1826, 5, 184, 0, 0, 1826, 1830, 5, 186, 0, 0, 1827, 1831, 5, 414, 0, 0, 1828, 1831, 5, 13, 0, 0, 1829, 1831, 3, 308, 154, 0, 1830, 1827, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1759, 1, 0, 0, 0, 1832, 1770, 1, 0, 0, 0, 1832, 1785, 1, 0, 0, 0, 1832, 1792, 1, 0, 0, 0, 1832, 1798, 1, 0, 0, 0, 1832, 1802, 1, 0, 0, 0, 1832, 1803, 1, 0, 0, 0, 1832, 1808, 1, 0, 0, 0, 1832, 1816, 1, 0, 0, 0, 1832, 1825, 1, 0, 0, 0, 1833, 261, 1, 0, 0, 0, 1834, 1836, 5, 242, 0, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 5, 203, 0, 0, 1838, 1852, 7, 29, 0, 0, 1839, 1840, 5, 517, 0, 0, 1840, 1853, 5, 518, 0, 0, 1841, 1842, 5, 517, 0, 0, 1842, 1847, 3, 256, 128, 0, 1843, 1844, 5, 521, 0, 0, 1844, 1846, 3, 256, 128, 0, 1845, 1843, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1850, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 5, 518, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1839, 1, 0, 0, 0, 1852, 1841, 1, 0, 0, 0, 1853, 1864, 1, 0, 0, 0, 1854, 1856, 5, 242, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1858, 5, 203, 0, 0, 1858, 1861, 3, 264, 132, 0, 1859, 1860, 5, 127, 0, 0, 1860, 1862, 3, 362, 181, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1835, 1, 0, 0, 0, 1863, 1855, 1, 0, 0, 0, 1864, 263, 1, 0, 0, 0, 1865, 1866, 6, 132, -1, 0, 1866, 1870, 3, 268, 134, 0, 1867, 1868, 7, 30, 0, 0, 1868, 1870, 3, 264, 132, 7, 1869, 1865, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1870, 1892, 1, 0, 0, 0, 1871, 1872, 10, 6, 0, 0, 1872, 1873, 7, 31, 0, 0, 1873, 1891, 3, 264, 132, 7, 1874, 1875, 10, 5, 0, 0, 1875, 1876, 7, 32, 0, 0, 1876, 1891, 3, 264, 132, 6, 1877, 1878, 10, 4, 0, 0, 1878, 1879, 5, 512, 0, 0, 1879, 1891, 3, 264, 132, 5, 1880, 1881, 10, 3, 0, 0, 1881, 1882, 5, 513, 0, 0, 1882, 1891, 3, 264, 132, 4, 1883, 1884, 10, 2, 0, 0, 1884, 1885, 5, 511, 0, 0, 1885, 1891, 3, 264, 132, 3, 1886, 1887, 10, 1, 0, 0, 1887, 1888, 3, 350, 175, 0, 1888, 1889, 3, 264, 132, 2, 1889, 1891, 1, 0, 0, 0, 1890, 1871, 1, 0, 0, 0, 1890, 1874, 1, 0, 0, 0, 1890, 1877, 1, 0, 0, 0, 1890, 1880, 1, 0, 0, 0, 1890, 1883, 1, 0, 0, 0, 1890, 1886, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 265, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1915, 3, 376, 188, 0, 1896, 1915, 3, 274, 137, 0, 1897, 1898, 3, 276, 138, 0, 1898, 1910, 5, 517, 0, 0, 1899, 1901, 3, 368, 184, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1907, 3, 278, 139, 0, 1903, 1904, 5, 521, 0, 0, 1904, 1906, 3, 278, 139, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1900, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 5, 518, 0, 0, 1913, 1915, 1, 0, 0, 0, 1914, 1895, 1, 0, 0, 0, 1914, 1896, 1, 0, 0, 0, 1914, 1897, 1, 0, 0, 0, 1915, 267, 1, 0, 0, 0, 1916, 1917, 6, 134, -1, 0, 1917, 1919, 5, 40, 0, 0, 1918, 1920, 3, 314, 157, 0, 1919, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1919, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1924, 5, 120, 0, 0, 1924, 1926, 3, 256, 128, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 5, 122, 0, 0, 1928, 1992, 1, 0, 0, 0, 1929, 1930, 5, 40, 0, 0, 1930, 1932, 3, 256, 128, 0, 1931, 1933, 3, 314, 157, 0, 1932, 1931, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1938, 1, 0, 0, 0, 1936, 1937, 5, 120, 0, 0, 1937, 1939, 3, 256, 128, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1941, 5, 122, 0, 0, 1941, 1992, 1, 0, 0, 0, 1942, 1943, 5, 41, 0, 0, 1943, 1944, 5, 517, 0, 0, 1944, 1945, 3, 256, 128, 0, 1945, 1946, 5, 17, 0, 0, 1946, 1947, 3, 56, 28, 0, 1947, 1948, 5, 518, 0, 0, 1948, 1992, 1, 0, 0, 0, 1949, 1950, 5, 458, 0, 0, 1950, 1951, 5, 517, 0, 0, 1951, 1954, 3, 256, 128, 0, 1952, 1953, 5, 462, 0, 0, 1953, 1955, 5, 477, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 5, 518, 0, 0, 1957, 1992, 1, 0, 0, 0, 1958, 1959, 5, 468, 0, 0, 1959, 1960, 5, 517, 0, 0, 1960, 1963, 3, 256, 128, 0, 1961, 1962, 5, 462, 0, 0, 1962, 1964, 5, 477, 0, 0, 1963, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 5, 518, 0, 0, 1966, 1992, 1, 0, 0, 0, 1967, 1968, 5, 282, 0, 0, 1968, 1969, 5, 517, 0, 0, 1969, 1970, 3, 264, 132, 0, 1970, 1971, 5, 170, 0, 0, 1971, 1972, 3, 264, 132, 0, 1972, 1973, 5, 518, 0, 0, 1973, 1992, 1, 0, 0, 0, 1974, 1992, 3, 358, 179, 0, 1975, 1992, 5, 528, 0, 0, 1976, 1977, 3, 332, 166, 0, 1977, 1978, 5, 514, 0, 0, 1978, 1979, 5, 528, 0, 0, 1979, 1992, 1, 0, 0, 0, 1980, 1981, 5, 517, 0, 0, 1981, 1982, 3, 156, 78, 0, 1982, 1983, 5, 518, 0, 0, 1983, 1992, 1, 0, 0, 0, 1984, 1992, 3, 266, 133, 0, 1985, 1992, 3, 308, 154, 0, 1986, 1992, 3, 280, 140, 0, 1987, 1988, 5, 517, 0, 0, 1988, 1989, 3, 256, 128, 0, 1989, 1990, 5, 518, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1916, 1, 0, 0, 0, 1991, 1929, 1, 0, 0, 0, 1991, 1942, 1, 0, 0, 0, 1991, 1949, 1, 0, 0, 0, 1991, 1958, 1, 0, 0, 0, 1991, 1967, 1, 0, 0, 0, 1991, 1974, 1, 0, 0, 0, 1991, 1975, 1, 0, 0, 0, 1991, 1976, 1, 0, 0, 0, 1991, 1980, 1, 0, 0, 0, 1991, 1984, 1, 0, 0, 0, 1991, 1985, 1, 0, 0, 0, 1991, 1986, 1, 0, 0, 0, 1991, 1987, 1, 0, 0, 0, 1992, 2000, 1, 0, 0, 0, 1993, 1994, 10, 4, 0, 0, 1994, 1995, 5, 515, 0, 0, 1995, 1996, 3, 264, 132, 0, 1996, 1997, 5, 516, 0, 0, 1997, 1999, 1, 0, 0, 0, 1998, 1993, 1, 0, 0, 0, 1999, 2002, 1, 0, 0, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 269, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2003, 2004, 3, 332, 166, 0, 2004, 271, 1, 0, 0, 0, 2005, 2010, 3, 380, 190, 0, 2006, 2010, 3, 376, 188, 0, 2007, 2010, 3, 378, 189, 0, 2008, 2010, 3, 332, 166, 0, 2009, 2005, 1, 0, 0, 0, 2009, 2006, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2008, 1, 0, 0, 0, 2010, 273, 1, 0, 0, 0, 2011, 2012, 3, 378, 189, 0, 2012, 2013, 5, 538, 0, 0, 2013, 2016, 1, 0, 0, 0, 2014, 2016, 3, 286, 143, 0, 2015, 2011, 1, 0, 0, 0, 2015, 2014, 1, 0, 0, 0, 2016, 275, 1, 0, 0, 0, 2017, 2020, 3, 380, 190, 0, 2018, 2020, 3, 332, 166, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2026, 3, 374, 187, 0, 2022, 2026, 3, 372, 186, 0, 2023, 2026, 3, 370, 185, 0, 2024, 2026, 3, 256, 128, 0, 2025, 2021, 1, 0, 0, 0, 2025, 2022, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 279, 1, 0, 0, 0, 2027, 2028, 3, 332, 166, 0, 2028, 281, 1, 0, 0, 0, 2029, 2030, 3, 308, 154, 0, 2030, 283, 1, 0, 0, 0, 2031, 2034, 3, 308, 154, 0, 2032, 2034, 3, 280, 140, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 285, 1, 0, 0, 0, 2035, 2038, 5, 182, 0, 0, 2036, 2039, 3, 288, 144, 0, 2037, 2039, 3, 292, 146, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 287, 1, 0, 0, 0, 2040, 2042, 3, 290, 145, 0, 2041, 2043, 3, 294, 147, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 289, 1, 0, 0, 0, 2044, 2045, 3, 296, 148, 0, 2045, 2046, 3, 372, 186, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2044, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 291, 1, 0, 0, 0, 2051, 2054, 3, 294, 147, 0, 2052, 2055, 3, 290, 145, 0, 2053, 2055, 3, 294, 147, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 293, 1, 0, 0, 0, 2056, 2057, 3, 296, 148, 0, 2057, 2058, 3, 372, 186, 0, 2058, 2059, 5, 389, 0, 0, 2059, 2060, 3, 372, 186, 0, 2060, 295, 1, 0, 0, 0, 2061, 2063, 7, 33, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2067, 7, 34, 0, 0, 2065, 2067, 5, 538, 0, 0, 2066, 2062, 1, 0, 0, 0, 2066, 2065, 1, 0, 0, 0, 2067, 297, 1, 0, 0, 0, 2068, 2070, 5, 17, 0, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2073, 3, 308, 154, 0, 2072, 2074, 3, 304, 152, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 299, 1, 0, 0, 0, 2075, 2076, 3, 308, 154, 0, 2076, 2077, 3, 302, 151, 0, 2077, 301, 1, 0, 0, 0, 2078, 2079, 5, 222, 0, 0, 2079, 2081, 3, 308, 154, 0, 2080, 2078, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2080, 1, 0, 0, 0, 2085, 2084, 1, 0, 0, 0, 2086, 303, 1, 0, 0, 0, 2087, 2088, 5, 517, 0, 0, 2088, 2089, 3, 306, 153, 0, 2089, 2090, 5, 518, 0, 0, 2090, 305, 1, 0, 0, 0, 2091, 2096, 3, 308, 154, 0, 2092, 2093, 5, 521, 0, 0, 2093, 2095, 3, 308, 154, 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, 307, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2099, 2103, 3, 310, 155, 0, 2100, 2103, 3, 312, 156, 0, 2101, 2103, 3, 382, 191, 0, 2102, 2099, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2102, 2101, 1, 0, 0, 0, 2103, 309, 1, 0, 0, 0, 2104, 2105, 7, 35, 0, 0, 2105, 311, 1, 0, 0, 0, 2106, 2107, 5, 538, 0, 0, 2107, 313, 1, 0, 0, 0, 2108, 2109, 5, 429, 0, 0, 2109, 2110, 3, 256, 128, 0, 2110, 2111, 5, 377, 0, 0, 2111, 2112, 3, 256, 128, 0, 2112, 315, 1, 0, 0, 0, 2113, 2114, 3, 308, 154, 0, 2114, 317, 1, 0, 0, 0, 2115, 2116, 3, 308, 154, 0, 2116, 319, 1, 0, 0, 0, 2117, 2120, 3, 308, 154, 0, 2118, 2119, 5, 514, 0, 0, 2119, 2121, 3, 308, 154, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 321, 1, 0, 0, 0, 2122, 2125, 3, 308, 154, 0, 2123, 2124, 5, 514, 0, 0, 2124, 2126, 3, 308, 154, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 323, 1, 0, 0, 0, 2127, 2130, 3, 308, 154, 0, 2128, 2129, 5, 514, 0, 0, 2129, 2131, 3, 308, 154, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2140, 1, 0, 0, 0, 2132, 2133, 3, 308, 154, 0, 2133, 2134, 5, 514, 0, 0, 2134, 2137, 3, 308, 154, 0, 2135, 2136, 5, 514, 0, 0, 2136, 2138, 3, 308, 154, 0, 2137, 2135, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2127, 1, 0, 0, 0, 2139, 2132, 1, 0, 0, 0, 2140, 325, 1, 0, 0, 0, 2141, 2144, 3, 308, 154, 0, 2142, 2143, 5, 514, 0, 0, 2143, 2145, 3, 308, 154, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2154, 1, 0, 0, 0, 2146, 2147, 3, 308, 154, 0, 2147, 2148, 5, 514, 0, 0, 2148, 2151, 3, 308, 154, 0, 2149, 2150, 5, 514, 0, 0, 2150, 2152, 3, 308, 154, 0, 2151, 2149, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2141, 1, 0, 0, 0, 2153, 2146, 1, 0, 0, 0, 2154, 327, 1, 0, 0, 0, 2155, 2158, 3, 308, 154, 0, 2156, 2157, 5, 514, 0, 0, 2157, 2159, 3, 308, 154, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2168, 1, 0, 0, 0, 2160, 2161, 3, 308, 154, 0, 2161, 2162, 5, 514, 0, 0, 2162, 2165, 3, 308, 154, 0, 2163, 2164, 5, 514, 0, 0, 2164, 2166, 3, 308, 154, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2155, 1, 0, 0, 0, 2167, 2160, 1, 0, 0, 0, 2168, 329, 1, 0, 0, 0, 2169, 2172, 3, 308, 154, 0, 2170, 2171, 5, 514, 0, 0, 2171, 2173, 3, 308, 154, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2182, 1, 0, 0, 0, 2174, 2175, 3, 308, 154, 0, 2175, 2176, 5, 514, 0, 0, 2176, 2179, 3, 308, 154, 0, 2177, 2178, 5, 514, 0, 0, 2178, 2180, 3, 308, 154, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2169, 1, 0, 0, 0, 2181, 2174, 1, 0, 0, 0, 2182, 331, 1, 0, 0, 0, 2183, 2188, 3, 308, 154, 0, 2184, 2185, 5, 514, 0, 0, 2185, 2187, 3, 308, 154, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 333, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2192, 5, 434, 0, 0, 2192, 2193, 3, 340, 170, 0, 2193, 335, 1, 0, 0, 0, 2194, 2195, 5, 167, 0, 0, 2195, 2196, 5, 242, 0, 0, 2196, 2197, 5, 133, 0, 0, 2197, 337, 1, 0, 0, 0, 2198, 2199, 5, 167, 0, 0, 2199, 2200, 5, 133, 0, 0, 2200, 339, 1, 0, 0, 0, 2201, 2202, 5, 517, 0, 0, 2202, 2207, 3, 342, 171, 0, 2203, 2204, 5, 521, 0, 0, 2204, 2206, 3, 342, 171, 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, 518, 0, 0, 2211, 341, 1, 0, 0, 0, 2212, 2217, 3, 344, 172, 0, 2213, 2215, 5, 506, 0, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2218, 3, 346, 173, 0, 2217, 2214, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 343, 1, 0, 0, 0, 2219, 2223, 3, 308, 154, 0, 2220, 2223, 3, 280, 140, 0, 2221, 2223, 5, 538, 0, 0, 2222, 2219, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2221, 1, 0, 0, 0, 2223, 345, 1, 0, 0, 0, 2224, 2229, 5, 539, 0, 0, 2225, 2229, 5, 540, 0, 0, 2226, 2229, 3, 366, 183, 0, 2227, 2229, 5, 538, 0, 0, 2228, 2224, 1, 0, 0, 0, 2228, 2225, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2227, 1, 0, 0, 0, 2229, 347, 1, 0, 0, 0, 2230, 2237, 5, 10, 0, 0, 2231, 2232, 5, 512, 0, 0, 2232, 2237, 5, 512, 0, 0, 2233, 2237, 5, 258, 0, 0, 2234, 2235, 5, 511, 0, 0, 2235, 2237, 5, 511, 0, 0, 2236, 2230, 1, 0, 0, 0, 2236, 2231, 1, 0, 0, 0, 2236, 2233, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2237, 349, 1, 0, 0, 0, 2238, 2253, 5, 506, 0, 0, 2239, 2253, 5, 507, 0, 0, 2240, 2253, 5, 508, 0, 0, 2241, 2242, 5, 508, 0, 0, 2242, 2253, 5, 506, 0, 0, 2243, 2244, 5, 507, 0, 0, 2244, 2253, 5, 506, 0, 0, 2245, 2246, 5, 508, 0, 0, 2246, 2253, 5, 507, 0, 0, 2247, 2248, 5, 509, 0, 0, 2248, 2253, 5, 506, 0, 0, 2249, 2250, 5, 508, 0, 0, 2250, 2251, 5, 506, 0, 0, 2251, 2253, 5, 507, 0, 0, 2252, 2238, 1, 0, 0, 0, 2252, 2239, 1, 0, 0, 0, 2252, 2240, 1, 0, 0, 0, 2252, 2241, 1, 0, 0, 0, 2252, 2243, 1, 0, 0, 0, 2252, 2245, 1, 0, 0, 0, 2252, 2247, 1, 0, 0, 0, 2252, 2249, 1, 0, 0, 0, 2253, 351, 1, 0, 0, 0, 2254, 2255, 5, 508, 0, 0, 2255, 2262, 5, 508, 0, 0, 2256, 2257, 5, 507, 0, 0, 2257, 2262, 5, 507, 0, 0, 2258, 2262, 5, 512, 0, 0, 2259, 2262, 5, 513, 0, 0, 2260, 2262, 5, 511, 0, 0, 2261, 2254, 1, 0, 0, 0, 2261, 2256, 1, 0, 0, 0, 2261, 2258, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2261, 2260, 1, 0, 0, 0, 2262, 353, 1, 0, 0, 0, 2263, 2264, 7, 36, 0, 0, 2264, 355, 1, 0, 0, 0, 2265, 2266, 7, 37, 0, 0, 2266, 357, 1, 0, 0, 0, 2267, 2282, 3, 286, 143, 0, 2268, 2282, 3, 360, 180, 0, 2269, 2282, 3, 362, 181, 0, 2270, 2272, 5, 530, 0, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2282, 3, 364, 182, 0, 2274, 2282, 3, 366, 183, 0, 2275, 2282, 5, 540, 0, 0, 2276, 2282, 5, 541, 0, 0, 2277, 2279, 5, 242, 0, 0, 2278, 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2282, 5, 245, 0, 0, 2281, 2267, 1, 0, 0, 0, 2281, 2268, 1, 0, 0, 0, 2281, 2269, 1, 0, 0, 0, 2281, 2271, 1, 0, 0, 0, 2281, 2274, 1, 0, 0, 0, 2281, 2275, 1, 0, 0, 0, 2281, 2276, 1, 0, 0, 0, 2281, 2278, 1, 0, 0, 0, 2282, 359, 1, 0, 0, 0, 2283, 2284, 3, 370, 185, 0, 2284, 2285, 3, 362, 181, 0, 2285, 361, 1, 0, 0, 0, 2286, 2287, 5, 538, 0, 0, 2287, 363, 1, 0, 0, 0, 2288, 2289, 5, 539, 0, 0, 2289, 365, 1, 0, 0, 0, 2290, 2291, 7, 38, 0, 0, 2291, 367, 1, 0, 0, 0, 2292, 2293, 7, 39, 0, 0, 2293, 369, 1, 0, 0, 0, 2294, 2295, 7, 40, 0, 0, 2295, 371, 1, 0, 0, 0, 2296, 2297, 7, 41, 0, 0, 2297, 373, 1, 0, 0, 0, 2298, 2299, 7, 42, 0, 0, 2299, 375, 1, 0, 0, 0, 2300, 2301, 7, 43, 0, 0, 2301, 377, 1, 0, 0, 0, 2302, 2303, 7, 44, 0, 0, 2303, 379, 1, 0, 0, 0, 2304, 2305, 7, 45, 0, 0, 2305, 381, 1, 0, 0, 0, 2306, 2307, 7, 46, 0, 0, 2307, 383, 1, 0, 0, 0, 273, 387, 394, 397, 411, 429, 433, 442, 447, 454, 465, 474, 486, 489, 496, 499, 507, 511, 516, 519, 526, 534, 538, 550, 558, 562, 594, 597, 602, 606, 610, 614, 623, 628, 632, 636, 641, 644, 648, 653, 659, 664, 669, 673, 677, 681, 689, 697, 701, 705, 709, 713, 717, 721, 725, 729, 731, 741, 749, 773, 787, 792, 796, 802, 805, 808, 815, 818, 827, 839, 863, 875, 880, 884, 892, 896, 902, 912, 917, 923, 927, 931, 935, 944, 948, 955, 958, 968, 976, 984, 988, 1003, 1022, 1033, 1037, 1044, 1049, 1055, 1059, 1066, 1070, 1074, 1078, 1086, 1090, 1095, 1101, 1107, 1110, 1114, 1125, 1134, 1148, 1160, 1175, 1178, 1182, 1185, 1187, 1192, 1196, 1199, 1203, 1212, 1221, 1231, 1236, 1247, 1250, 1253, 1256, 1259, 1265, 1269, 1277, 1280, 1285, 1288, 1292, 1295, 1297, 1311, 1322, 1327, 1335, 1338, 1341, 1346, 1348, 1350, 1355, 1358, 1362, 1366, 1375, 1386, 1413, 1435, 1448, 1460, 1473, 1485, 1497, 1503, 1530, 1538, 1542, 1545, 1548, 1555, 1558, 1561, 1564, 1567, 1570, 1575, 1578, 1587, 1592, 1596, 1601, 1607, 1612, 1616, 1635, 1643, 1651, 1655, 1659, 1669, 1695, 1703, 1715, 1737, 1739, 1750, 1753, 1755, 1759, 1763, 1770, 1779, 1785, 1798, 1805, 1810, 1816, 1823, 1830, 1832, 1835, 1847, 1852, 1855, 1861, 1863, 1869, 1890, 1892, 1900, 1907, 1910, 1914, 1921, 1925, 1934, 1938, 1954, 1963, 1991, 2000, 2009, 2015, 2019, 2025, 2033, 2038, 2042, 2049, 2054, 2062, 2066, 2069, 2073, 2082, 2085, 2096, 2102, 2120, 2125, 2130, 2137, 2139, 2144, 2151, 2153, 2158, 2165, 2167, 2172, 2179, 2181, 2188, 2207, 2214, 2217, 2222, 2228, 2236, 2252, 2261, 2271, 2278, 2281] \ No newline at end of file +[4, 1, 542, 2313, 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, 1, 0, 5, 0, 388, 8, 0, 10, 0, 12, 0, 391, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 397, 8, 1, 1, 1, 3, 1, 400, 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, 414, 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, 432, 8, 4, 1, 5, 1, 5, 3, 5, 436, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 445, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 450, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 455, 8, 8, 10, 8, 12, 8, 458, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 468, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 475, 8, 11, 10, 11, 12, 11, 478, 9, 11, 1, 12, 1, 12, 1, 12, 1, 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, 3, 12, 499, 8, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 510, 8, 12, 1, 12, 1, 12, 3, 12, 514, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 519, 8, 12, 1, 12, 3, 12, 522, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 529, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 537, 8, 15, 1, 16, 1, 16, 3, 16, 541, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 561, 8, 18, 1, 18, 1, 18, 3, 18, 565, 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, 597, 8, 18, 1, 19, 3, 19, 600, 8, 19, 1, 19, 4, 19, 603, 8, 19, 11, 19, 12, 19, 604, 1, 20, 1, 20, 3, 20, 609, 8, 20, 1, 21, 1, 21, 3, 21, 613, 8, 21, 1, 21, 1, 21, 3, 21, 617, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 624, 8, 21, 10, 21, 12, 21, 627, 9, 21, 1, 21, 1, 21, 3, 21, 631, 8, 21, 1, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 644, 8, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 656, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 667, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 672, 8, 24, 1, 24, 1, 24, 3, 24, 676, 8, 24, 1, 25, 1, 25, 3, 25, 680, 8, 25, 1, 26, 1, 26, 3, 26, 684, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 692, 8, 28, 10, 28, 12, 28, 695, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 702, 8, 29, 1, 29, 1, 29, 3, 29, 706, 8, 29, 1, 29, 1, 29, 3, 29, 710, 8, 29, 1, 29, 1, 29, 3, 29, 714, 8, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 3, 29, 736, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 746, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 754, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 776, 8, 35, 10, 35, 12, 35, 779, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 790, 8, 35, 10, 35, 12, 35, 793, 9, 35, 1, 35, 1, 35, 3, 35, 797, 8, 35, 1, 36, 1, 36, 3, 36, 801, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 807, 8, 36, 1, 36, 3, 36, 810, 8, 36, 1, 36, 3, 36, 813, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 820, 8, 37, 1, 37, 3, 37, 823, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 832, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 844, 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, 866, 8, 46, 10, 46, 12, 46, 869, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 878, 8, 47, 10, 47, 12, 47, 881, 9, 47, 1, 47, 1, 47, 3, 47, 885, 8, 47, 1, 48, 1, 48, 3, 48, 889, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 895, 8, 49, 10, 49, 12, 49, 898, 9, 49, 1, 49, 3, 49, 901, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 907, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 917, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 922, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 928, 8, 53, 1, 53, 1, 53, 3, 53, 932, 8, 53, 1, 53, 1, 53, 3, 53, 936, 8, 53, 1, 53, 1, 53, 3, 53, 940, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 949, 8, 54, 1, 54, 1, 54, 3, 54, 953, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 960, 8, 54, 1, 54, 3, 54, 963, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 971, 8, 55, 10, 55, 12, 55, 974, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 981, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 989, 8, 57, 1, 58, 1, 58, 3, 58, 993, 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, 1008, 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, 1027, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1038, 8, 66, 1, 66, 1, 66, 3, 66, 1042, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1049, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1054, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1060, 8, 68, 1, 68, 1, 68, 3, 68, 1064, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1071, 8, 69, 1, 69, 1, 69, 3, 69, 1075, 8, 69, 1, 70, 1, 70, 3, 70, 1079, 8, 70, 1, 70, 1, 70, 3, 70, 1083, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1091, 8, 71, 1, 71, 1, 71, 3, 71, 1095, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1100, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1106, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1112, 8, 73, 1, 73, 3, 73, 1115, 8, 73, 1, 73, 1, 73, 3, 73, 1119, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1128, 8, 75, 10, 75, 12, 75, 1131, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1137, 8, 76, 10, 76, 12, 76, 1140, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1151, 8, 77, 11, 77, 12, 77, 1152, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1163, 8, 78, 11, 78, 12, 78, 1164, 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, 1180, 8, 79, 1, 79, 3, 79, 1183, 8, 79, 1, 79, 1, 79, 3, 79, 1187, 8, 79, 1, 79, 3, 79, 1190, 8, 79, 3, 79, 1192, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1197, 8, 79, 1, 79, 1, 79, 3, 79, 1201, 8, 79, 1, 79, 3, 79, 1204, 8, 79, 5, 79, 1206, 8, 79, 10, 79, 12, 79, 1209, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1215, 8, 80, 10, 80, 12, 80, 1218, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1224, 8, 81, 10, 81, 12, 81, 1227, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1234, 8, 82, 10, 82, 12, 82, 1237, 9, 82, 1, 82, 1, 82, 3, 82, 1241, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1252, 8, 84, 1, 84, 3, 84, 1255, 8, 84, 1, 84, 3, 84, 1258, 8, 84, 1, 84, 3, 84, 1261, 8, 84, 1, 84, 3, 84, 1264, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 85, 1, 85, 3, 85, 1274, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1280, 8, 85, 10, 85, 12, 85, 1283, 9, 85, 3, 85, 1285, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1290, 8, 86, 1, 86, 3, 86, 1293, 8, 86, 1, 86, 1, 86, 3, 86, 1297, 8, 86, 1, 86, 3, 86, 1300, 8, 86, 3, 86, 1302, 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, 1316, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1325, 8, 89, 10, 89, 12, 89, 1328, 9, 89, 1, 89, 1, 89, 3, 89, 1332, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1340, 8, 89, 1, 89, 3, 89, 1343, 8, 89, 1, 89, 3, 89, 1346, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1351, 8, 89, 5, 89, 1353, 8, 89, 10, 89, 12, 89, 1356, 9, 89, 1, 90, 1, 90, 3, 90, 1360, 8, 90, 1, 91, 3, 91, 1363, 8, 91, 1, 91, 1, 91, 3, 91, 1367, 8, 91, 1, 91, 1, 91, 3, 91, 1371, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1380, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1391, 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, 1416, 8, 96, 10, 96, 12, 96, 1419, 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, 1440, 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, 1453, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1463, 8, 103, 10, 103, 12, 103, 1466, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1476, 8, 104, 10, 104, 12, 104, 1479, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1488, 8, 104, 10, 104, 12, 104, 1491, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1500, 8, 104, 10, 104, 12, 104, 1503, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1508, 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, 1533, 8, 111, 10, 111, 12, 111, 1536, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1543, 8, 113, 1, 113, 1, 113, 3, 113, 1547, 8, 113, 1, 113, 3, 113, 1550, 8, 113, 1, 113, 3, 113, 1553, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1560, 8, 114, 1, 114, 3, 114, 1563, 8, 114, 1, 114, 3, 114, 1566, 8, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1580, 8, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1590, 8, 115, 10, 115, 12, 115, 1593, 9, 115, 1, 116, 1, 116, 3, 116, 1597, 8, 116, 1, 116, 1, 116, 3, 116, 1601, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1606, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1617, 8, 118, 5, 118, 1619, 8, 118, 10, 118, 12, 118, 1622, 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, 1640, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1646, 8, 120, 10, 120, 12, 120, 1649, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1654, 8, 121, 11, 121, 12, 121, 1655, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 3, 122, 1664, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1674, 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, 1700, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1706, 8, 125, 10, 125, 12, 125, 1709, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1720, 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, 1742, 8, 130, 3, 130, 1744, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1755, 8, 130, 1, 130, 5, 130, 1758, 8, 130, 10, 130, 12, 130, 1761, 9, 130, 1, 131, 3, 131, 1764, 8, 131, 1, 131, 1, 131, 3, 131, 1768, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1775, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1782, 8, 131, 10, 131, 12, 131, 1785, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1790, 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, 1803, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1810, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1815, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1821, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1828, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1835, 8, 131, 3, 131, 1837, 8, 131, 1, 132, 3, 132, 1840, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1850, 8, 132, 10, 132, 12, 132, 1853, 9, 132, 1, 132, 1, 132, 3, 132, 1857, 8, 132, 1, 132, 3, 132, 1860, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1866, 8, 132, 3, 132, 1868, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1874, 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, 1895, 8, 133, 10, 133, 12, 133, 1898, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1905, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1910, 8, 134, 10, 134, 12, 134, 1913, 9, 134, 3, 134, 1915, 8, 134, 1, 134, 1, 134, 3, 134, 1919, 8, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1924, 8, 135, 11, 135, 12, 135, 1925, 1, 135, 1, 135, 3, 135, 1930, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1937, 8, 135, 11, 135, 12, 135, 1938, 1, 135, 1, 135, 3, 135, 1943, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1959, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1968, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1996, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 2003, 8, 135, 10, 135, 12, 135, 2006, 9, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2014, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 3, 139, 2024, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2038, 8, 143, 1, 144, 1, 144, 1, 144, 3, 144, 2043, 8, 144, 1, 145, 1, 145, 3, 145, 2047, 8, 145, 1, 146, 1, 146, 1, 146, 4, 146, 2052, 8, 146, 11, 146, 12, 146, 2053, 1, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 3, 149, 2067, 8, 149, 1, 149, 1, 149, 3, 149, 2071, 8, 149, 1, 150, 3, 150, 2074, 8, 150, 1, 150, 1, 150, 3, 150, 2078, 8, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 4, 152, 2085, 8, 152, 11, 152, 12, 152, 2086, 1, 152, 3, 152, 2090, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2099, 8, 154, 10, 154, 12, 154, 2102, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2107, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2125, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2130, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2135, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2142, 8, 163, 3, 163, 2144, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2149, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2156, 8, 164, 3, 164, 2158, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2163, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2170, 8, 165, 3, 165, 2172, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2177, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2184, 8, 166, 3, 166, 2186, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2191, 8, 167, 10, 167, 12, 167, 2194, 9, 167, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 2210, 8, 171, 10, 171, 12, 171, 2213, 9, 171, 1, 171, 1, 171, 1, 172, 1, 172, 3, 172, 2219, 8, 172, 1, 172, 3, 172, 2222, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2227, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2241, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2257, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2266, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2276, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2283, 8, 180, 1, 180, 3, 180, 2286, 8, 180, 1, 181, 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, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 2192, 5, 158, 178, 260, 266, 270, 193, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2519, 0, 389, 1, 0, 0, 0, 2, 399, 1, 0, 0, 0, 4, 413, 1, 0, 0, 0, 6, 415, 1, 0, 0, 0, 8, 431, 1, 0, 0, 0, 10, 435, 1, 0, 0, 0, 12, 437, 1, 0, 0, 0, 14, 440, 1, 0, 0, 0, 16, 451, 1, 0, 0, 0, 18, 459, 1, 0, 0, 0, 20, 467, 1, 0, 0, 0, 22, 469, 1, 0, 0, 0, 24, 521, 1, 0, 0, 0, 26, 523, 1, 0, 0, 0, 28, 530, 1, 0, 0, 0, 30, 534, 1, 0, 0, 0, 32, 538, 1, 0, 0, 0, 34, 542, 1, 0, 0, 0, 36, 596, 1, 0, 0, 0, 38, 602, 1, 0, 0, 0, 40, 608, 1, 0, 0, 0, 42, 610, 1, 0, 0, 0, 44, 652, 1, 0, 0, 0, 46, 666, 1, 0, 0, 0, 48, 668, 1, 0, 0, 0, 50, 679, 1, 0, 0, 0, 52, 683, 1, 0, 0, 0, 54, 685, 1, 0, 0, 0, 56, 687, 1, 0, 0, 0, 58, 735, 1, 0, 0, 0, 60, 737, 1, 0, 0, 0, 62, 741, 1, 0, 0, 0, 64, 749, 1, 0, 0, 0, 66, 757, 1, 0, 0, 0, 68, 761, 1, 0, 0, 0, 70, 796, 1, 0, 0, 0, 72, 812, 1, 0, 0, 0, 74, 814, 1, 0, 0, 0, 76, 824, 1, 0, 0, 0, 78, 826, 1, 0, 0, 0, 80, 833, 1, 0, 0, 0, 82, 835, 1, 0, 0, 0, 84, 843, 1, 0, 0, 0, 86, 851, 1, 0, 0, 0, 88, 853, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 861, 1, 0, 0, 0, 94, 884, 1, 0, 0, 0, 96, 888, 1, 0, 0, 0, 98, 890, 1, 0, 0, 0, 100, 906, 1, 0, 0, 0, 102, 908, 1, 0, 0, 0, 104, 913, 1, 0, 0, 0, 106, 925, 1, 0, 0, 0, 108, 944, 1, 0, 0, 0, 110, 964, 1, 0, 0, 0, 112, 975, 1, 0, 0, 0, 114, 977, 1, 0, 0, 0, 116, 990, 1, 0, 0, 0, 118, 997, 1, 0, 0, 0, 120, 1000, 1, 0, 0, 0, 122, 1009, 1, 0, 0, 0, 124, 1013, 1, 0, 0, 0, 126, 1017, 1, 0, 0, 0, 128, 1020, 1, 0, 0, 0, 130, 1028, 1, 0, 0, 0, 132, 1033, 1, 0, 0, 0, 134, 1050, 1, 0, 0, 0, 136, 1057, 1, 0, 0, 0, 138, 1067, 1, 0, 0, 0, 140, 1076, 1, 0, 0, 0, 142, 1086, 1, 0, 0, 0, 144, 1105, 1, 0, 0, 0, 146, 1107, 1, 0, 0, 0, 148, 1120, 1, 0, 0, 0, 150, 1123, 1, 0, 0, 0, 152, 1132, 1, 0, 0, 0, 154, 1143, 1, 0, 0, 0, 156, 1156, 1, 0, 0, 0, 158, 1191, 1, 0, 0, 0, 160, 1210, 1, 0, 0, 0, 162, 1219, 1, 0, 0, 0, 164, 1228, 1, 0, 0, 0, 166, 1247, 1, 0, 0, 0, 168, 1269, 1, 0, 0, 0, 170, 1271, 1, 0, 0, 0, 172, 1301, 1, 0, 0, 0, 174, 1315, 1, 0, 0, 0, 176, 1317, 1, 0, 0, 0, 178, 1331, 1, 0, 0, 0, 180, 1357, 1, 0, 0, 0, 182, 1390, 1, 0, 0, 0, 184, 1392, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1400, 1, 0, 0, 0, 190, 1405, 1, 0, 0, 0, 192, 1410, 1, 0, 0, 0, 194, 1422, 1, 0, 0, 0, 196, 1439, 1, 0, 0, 0, 198, 1441, 1, 0, 0, 0, 200, 1443, 1, 0, 0, 0, 202, 1452, 1, 0, 0, 0, 204, 1454, 1, 0, 0, 0, 206, 1457, 1, 0, 0, 0, 208, 1507, 1, 0, 0, 0, 210, 1509, 1, 0, 0, 0, 212, 1512, 1, 0, 0, 0, 214, 1514, 1, 0, 0, 0, 216, 1521, 1, 0, 0, 0, 218, 1523, 1, 0, 0, 0, 220, 1525, 1, 0, 0, 0, 222, 1528, 1, 0, 0, 0, 224, 1537, 1, 0, 0, 0, 226, 1542, 1, 0, 0, 0, 228, 1556, 1, 0, 0, 0, 230, 1584, 1, 0, 0, 0, 232, 1594, 1, 0, 0, 0, 234, 1602, 1, 0, 0, 0, 236, 1607, 1, 0, 0, 0, 238, 1639, 1, 0, 0, 0, 240, 1641, 1, 0, 0, 0, 242, 1650, 1, 0, 0, 0, 244, 1661, 1, 0, 0, 0, 246, 1673, 1, 0, 0, 0, 248, 1699, 1, 0, 0, 0, 250, 1701, 1, 0, 0, 0, 252, 1719, 1, 0, 0, 0, 254, 1721, 1, 0, 0, 0, 256, 1726, 1, 0, 0, 0, 258, 1729, 1, 0, 0, 0, 260, 1743, 1, 0, 0, 0, 262, 1836, 1, 0, 0, 0, 264, 1867, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1918, 1, 0, 0, 0, 270, 1995, 1, 0, 0, 0, 272, 2007, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2023, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2031, 1, 0, 0, 0, 284, 2033, 1, 0, 0, 0, 286, 2037, 1, 0, 0, 0, 288, 2039, 1, 0, 0, 0, 290, 2044, 1, 0, 0, 0, 292, 2051, 1, 0, 0, 0, 294, 2055, 1, 0, 0, 0, 296, 2060, 1, 0, 0, 0, 298, 2070, 1, 0, 0, 0, 300, 2073, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2089, 1, 0, 0, 0, 306, 2091, 1, 0, 0, 0, 308, 2095, 1, 0, 0, 0, 310, 2106, 1, 0, 0, 0, 312, 2108, 1, 0, 0, 0, 314, 2110, 1, 0, 0, 0, 316, 2112, 1, 0, 0, 0, 318, 2117, 1, 0, 0, 0, 320, 2119, 1, 0, 0, 0, 322, 2121, 1, 0, 0, 0, 324, 2126, 1, 0, 0, 0, 326, 2143, 1, 0, 0, 0, 328, 2157, 1, 0, 0, 0, 330, 2171, 1, 0, 0, 0, 332, 2185, 1, 0, 0, 0, 334, 2187, 1, 0, 0, 0, 336, 2195, 1, 0, 0, 0, 338, 2198, 1, 0, 0, 0, 340, 2202, 1, 0, 0, 0, 342, 2205, 1, 0, 0, 0, 344, 2216, 1, 0, 0, 0, 346, 2226, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2240, 1, 0, 0, 0, 352, 2256, 1, 0, 0, 0, 354, 2265, 1, 0, 0, 0, 356, 2267, 1, 0, 0, 0, 358, 2269, 1, 0, 0, 0, 360, 2285, 1, 0, 0, 0, 362, 2287, 1, 0, 0, 0, 364, 2290, 1, 0, 0, 0, 366, 2292, 1, 0, 0, 0, 368, 2294, 1, 0, 0, 0, 370, 2296, 1, 0, 0, 0, 372, 2298, 1, 0, 0, 0, 374, 2300, 1, 0, 0, 0, 376, 2302, 1, 0, 0, 0, 378, 2304, 1, 0, 0, 0, 380, 2306, 1, 0, 0, 0, 382, 2308, 1, 0, 0, 0, 384, 2310, 1, 0, 0, 0, 386, 388, 3, 2, 1, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 5, 0, 0, 1, 393, 1, 1, 0, 0, 0, 394, 396, 3, 4, 2, 0, 395, 397, 5, 522, 0, 0, 396, 395, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 400, 3, 6, 3, 0, 399, 394, 1, 0, 0, 0, 399, 398, 1, 0, 0, 0, 400, 3, 1, 0, 0, 0, 401, 414, 3, 8, 4, 0, 402, 414, 3, 10, 5, 0, 403, 414, 3, 12, 6, 0, 404, 414, 3, 14, 7, 0, 405, 414, 3, 20, 10, 0, 406, 414, 3, 24, 12, 0, 407, 414, 3, 26, 13, 0, 408, 414, 3, 28, 14, 0, 409, 414, 3, 30, 15, 0, 410, 414, 3, 32, 16, 0, 411, 414, 3, 34, 17, 0, 412, 414, 3, 36, 18, 0, 413, 401, 1, 0, 0, 0, 413, 402, 1, 0, 0, 0, 413, 403, 1, 0, 0, 0, 413, 404, 1, 0, 0, 0, 413, 405, 1, 0, 0, 0, 413, 406, 1, 0, 0, 0, 413, 407, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 5, 1, 0, 0, 0, 415, 416, 5, 522, 0, 0, 416, 7, 1, 0, 0, 0, 417, 432, 3, 40, 20, 0, 418, 432, 3, 104, 52, 0, 419, 432, 3, 106, 53, 0, 420, 432, 3, 108, 54, 0, 421, 432, 3, 102, 51, 0, 422, 432, 3, 114, 57, 0, 423, 432, 3, 128, 64, 0, 424, 432, 3, 130, 65, 0, 425, 432, 3, 132, 66, 0, 426, 432, 3, 134, 67, 0, 427, 432, 3, 136, 68, 0, 428, 432, 3, 138, 69, 0, 429, 432, 3, 140, 70, 0, 430, 432, 3, 142, 71, 0, 431, 417, 1, 0, 0, 0, 431, 418, 1, 0, 0, 0, 431, 419, 1, 0, 0, 0, 431, 420, 1, 0, 0, 0, 431, 421, 1, 0, 0, 0, 431, 422, 1, 0, 0, 0, 431, 423, 1, 0, 0, 0, 431, 424, 1, 0, 0, 0, 431, 425, 1, 0, 0, 0, 431, 426, 1, 0, 0, 0, 431, 427, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 9, 1, 0, 0, 0, 433, 436, 3, 158, 79, 0, 434, 436, 3, 144, 72, 0, 435, 433, 1, 0, 0, 0, 435, 434, 1, 0, 0, 0, 436, 11, 1, 0, 0, 0, 437, 438, 7, 0, 0, 0, 438, 439, 3, 328, 164, 0, 439, 13, 1, 0, 0, 0, 440, 444, 5, 135, 0, 0, 441, 445, 3, 16, 8, 0, 442, 443, 5, 480, 0, 0, 443, 445, 5, 146, 0, 0, 444, 441, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 449, 1, 0, 0, 0, 446, 450, 3, 10, 5, 0, 447, 450, 3, 146, 73, 0, 448, 450, 3, 156, 78, 0, 449, 446, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 15, 1, 0, 0, 0, 451, 456, 3, 18, 9, 0, 452, 453, 5, 521, 0, 0, 453, 455, 3, 18, 9, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 17, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 7, 1, 0, 0, 460, 19, 1, 0, 0, 0, 461, 462, 5, 411, 0, 0, 462, 463, 5, 442, 0, 0, 463, 468, 3, 318, 159, 0, 464, 465, 5, 411, 0, 0, 465, 468, 3, 322, 161, 0, 466, 468, 3, 22, 11, 0, 467, 461, 1, 0, 0, 0, 467, 464, 1, 0, 0, 0, 467, 466, 1, 0, 0, 0, 468, 21, 1, 0, 0, 0, 469, 470, 5, 411, 0, 0, 470, 471, 5, 228, 0, 0, 471, 476, 3, 334, 167, 0, 472, 473, 5, 521, 0, 0, 473, 475, 3, 334, 167, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 23, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 480, 5, 342, 0, 0, 480, 522, 7, 2, 0, 0, 481, 482, 5, 342, 0, 0, 482, 483, 5, 76, 0, 0, 483, 522, 7, 3, 0, 0, 484, 485, 5, 342, 0, 0, 485, 488, 5, 375, 0, 0, 486, 487, 7, 4, 0, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 489, 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, 522, 1, 0, 0, 0, 493, 494, 5, 342, 0, 0, 494, 495, 5, 58, 0, 0, 495, 498, 7, 4, 0, 0, 496, 499, 3, 330, 165, 0, 497, 499, 3, 328, 164, 0, 498, 496, 1, 0, 0, 0, 498, 497, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 3, 264, 132, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 522, 1, 0, 0, 0, 503, 504, 5, 342, 0, 0, 504, 509, 5, 72, 0, 0, 505, 506, 5, 374, 0, 0, 506, 510, 3, 328, 164, 0, 507, 508, 5, 502, 0, 0, 508, 510, 3, 330, 165, 0, 509, 505, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 510, 522, 1, 0, 0, 0, 511, 513, 5, 342, 0, 0, 512, 514, 5, 412, 0, 0, 513, 512, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 522, 5, 154, 0, 0, 516, 518, 5, 342, 0, 0, 517, 519, 5, 152, 0, 0, 518, 517, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 5, 228, 0, 0, 521, 479, 1, 0, 0, 0, 521, 481, 1, 0, 0, 0, 521, 484, 1, 0, 0, 0, 521, 493, 1, 0, 0, 0, 521, 503, 1, 0, 0, 0, 521, 511, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 522, 25, 1, 0, 0, 0, 523, 524, 5, 469, 0, 0, 524, 525, 5, 227, 0, 0, 525, 528, 3, 334, 167, 0, 526, 527, 5, 434, 0, 0, 527, 529, 3, 342, 171, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 27, 1, 0, 0, 0, 530, 531, 5, 501, 0, 0, 531, 532, 5, 227, 0, 0, 532, 533, 3, 334, 167, 0, 533, 29, 1, 0, 0, 0, 534, 536, 5, 341, 0, 0, 535, 537, 3, 344, 172, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 31, 1, 0, 0, 0, 538, 540, 5, 313, 0, 0, 539, 541, 3, 346, 173, 0, 540, 539, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 33, 1, 0, 0, 0, 542, 543, 7, 5, 0, 0, 543, 544, 5, 464, 0, 0, 544, 545, 3, 112, 56, 0, 545, 35, 1, 0, 0, 0, 546, 547, 5, 438, 0, 0, 547, 548, 5, 464, 0, 0, 548, 549, 5, 434, 0, 0, 549, 552, 3, 38, 19, 0, 550, 551, 5, 17, 0, 0, 551, 553, 3, 334, 167, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 597, 1, 0, 0, 0, 554, 555, 5, 438, 0, 0, 555, 556, 5, 457, 0, 0, 556, 557, 5, 434, 0, 0, 557, 560, 3, 38, 19, 0, 558, 559, 5, 17, 0, 0, 559, 561, 3, 334, 167, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 312, 0, 0, 563, 565, 3, 334, 167, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 597, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 7, 6, 0, 0, 568, 569, 5, 434, 0, 0, 569, 570, 3, 38, 19, 0, 570, 571, 5, 312, 0, 0, 571, 572, 3, 334, 167, 0, 572, 597, 1, 0, 0, 0, 573, 574, 5, 438, 0, 0, 574, 575, 5, 487, 0, 0, 575, 597, 3, 38, 19, 0, 576, 577, 5, 438, 0, 0, 577, 578, 5, 454, 0, 0, 578, 579, 5, 457, 0, 0, 579, 580, 5, 434, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 312, 0, 0, 582, 583, 3, 334, 167, 0, 583, 584, 5, 467, 0, 0, 584, 585, 3, 334, 167, 0, 585, 597, 1, 0, 0, 0, 586, 587, 5, 438, 0, 0, 587, 588, 5, 444, 0, 0, 588, 589, 5, 457, 0, 0, 589, 590, 5, 434, 0, 0, 590, 591, 3, 38, 19, 0, 591, 592, 5, 146, 0, 0, 592, 593, 3, 334, 167, 0, 593, 594, 5, 17, 0, 0, 594, 595, 3, 334, 167, 0, 595, 597, 1, 0, 0, 0, 596, 546, 1, 0, 0, 0, 596, 554, 1, 0, 0, 0, 596, 566, 1, 0, 0, 0, 596, 573, 1, 0, 0, 0, 596, 576, 1, 0, 0, 0, 596, 586, 1, 0, 0, 0, 597, 37, 1, 0, 0, 0, 598, 600, 5, 535, 0, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 3, 334, 167, 0, 602, 599, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 39, 1, 0, 0, 0, 606, 609, 3, 42, 21, 0, 607, 609, 3, 44, 22, 0, 608, 606, 1, 0, 0, 0, 608, 607, 1, 0, 0, 0, 609, 41, 1, 0, 0, 0, 610, 612, 5, 72, 0, 0, 611, 613, 5, 498, 0, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 616, 5, 374, 0, 0, 615, 617, 3, 338, 169, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 3, 326, 163, 0, 619, 620, 5, 517, 0, 0, 620, 625, 3, 46, 23, 0, 621, 622, 5, 521, 0, 0, 622, 624, 3, 46, 23, 0, 623, 621, 1, 0, 0, 0, 624, 627, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 5, 521, 0, 0, 629, 631, 3, 82, 41, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 633, 5, 521, 0, 0, 633, 635, 3, 84, 42, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 637, 5, 521, 0, 0, 637, 639, 3, 88, 44, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 643, 5, 518, 0, 0, 641, 642, 5, 59, 0, 0, 642, 644, 5, 538, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 646, 1, 0, 0, 0, 645, 647, 3, 90, 45, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 336, 168, 0, 649, 651, 3, 98, 49, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 43, 1, 0, 0, 0, 652, 653, 5, 72, 0, 0, 653, 655, 5, 374, 0, 0, 654, 656, 3, 338, 169, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 326, 163, 0, 658, 661, 3, 336, 168, 0, 659, 660, 5, 17, 0, 0, 660, 662, 3, 158, 79, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 45, 1, 0, 0, 0, 663, 667, 3, 48, 24, 0, 664, 667, 3, 74, 37, 0, 665, 667, 3, 78, 39, 0, 666, 663, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 47, 1, 0, 0, 0, 668, 669, 3, 50, 25, 0, 669, 671, 3, 58, 29, 0, 670, 672, 3, 72, 36, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 674, 5, 59, 0, 0, 674, 676, 5, 538, 0, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 49, 1, 0, 0, 0, 677, 680, 3, 334, 167, 0, 678, 680, 3, 258, 129, 0, 679, 677, 1, 0, 0, 0, 679, 678, 1, 0, 0, 0, 680, 51, 1, 0, 0, 0, 681, 684, 3, 334, 167, 0, 682, 684, 4, 26, 0, 0, 683, 681, 1, 0, 0, 0, 683, 682, 1, 0, 0, 0, 684, 53, 1, 0, 0, 0, 685, 686, 3, 334, 167, 0, 686, 55, 1, 0, 0, 0, 687, 688, 5, 517, 0, 0, 688, 693, 3, 52, 26, 0, 689, 690, 5, 521, 0, 0, 690, 692, 3, 52, 26, 0, 691, 689, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 696, 697, 5, 518, 0, 0, 697, 57, 1, 0, 0, 0, 698, 736, 7, 7, 0, 0, 699, 701, 7, 8, 0, 0, 700, 702, 3, 60, 30, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 736, 1, 0, 0, 0, 703, 705, 5, 380, 0, 0, 704, 706, 3, 60, 30, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 713, 1, 0, 0, 0, 707, 709, 7, 9, 0, 0, 708, 710, 5, 207, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 379, 0, 0, 712, 714, 5, 505, 0, 0, 713, 707, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 736, 1, 0, 0, 0, 715, 717, 7, 10, 0, 0, 716, 718, 3, 62, 31, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 736, 1, 0, 0, 0, 719, 721, 7, 11, 0, 0, 720, 722, 3, 66, 33, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 736, 1, 0, 0, 0, 723, 725, 5, 470, 0, 0, 724, 726, 3, 68, 34, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 736, 1, 0, 0, 0, 727, 729, 5, 322, 0, 0, 728, 730, 3, 70, 35, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 736, 1, 0, 0, 0, 731, 733, 5, 295, 0, 0, 732, 734, 3, 64, 32, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 1, 0, 0, 0, 735, 698, 1, 0, 0, 0, 735, 699, 1, 0, 0, 0, 735, 703, 1, 0, 0, 0, 735, 715, 1, 0, 0, 0, 735, 719, 1, 0, 0, 0, 735, 723, 1, 0, 0, 0, 735, 727, 1, 0, 0, 0, 735, 731, 1, 0, 0, 0, 736, 59, 1, 0, 0, 0, 737, 738, 5, 517, 0, 0, 738, 739, 3, 366, 183, 0, 739, 740, 5, 518, 0, 0, 740, 61, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 745, 3, 366, 183, 0, 743, 744, 5, 521, 0, 0, 744, 746, 3, 366, 183, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 518, 0, 0, 748, 63, 1, 0, 0, 0, 749, 750, 5, 517, 0, 0, 750, 753, 3, 364, 182, 0, 751, 752, 5, 521, 0, 0, 752, 754, 3, 364, 182, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 518, 0, 0, 756, 65, 1, 0, 0, 0, 757, 758, 5, 508, 0, 0, 758, 759, 3, 58, 29, 0, 759, 760, 5, 507, 0, 0, 760, 67, 1, 0, 0, 0, 761, 762, 5, 508, 0, 0, 762, 763, 3, 58, 29, 0, 763, 764, 5, 521, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 1, 0, 0, 0, 766, 767, 5, 507, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 508, 0, 0, 769, 770, 3, 52, 26, 0, 770, 777, 3, 58, 29, 0, 771, 772, 5, 521, 0, 0, 772, 773, 3, 52, 26, 0, 773, 774, 3, 58, 29, 0, 774, 776, 1, 0, 0, 0, 775, 771, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 507, 0, 0, 781, 797, 1, 0, 0, 0, 782, 783, 5, 517, 0, 0, 783, 784, 3, 52, 26, 0, 784, 791, 3, 58, 29, 0, 785, 786, 5, 521, 0, 0, 786, 787, 3, 52, 26, 0, 787, 788, 3, 58, 29, 0, 788, 790, 1, 0, 0, 0, 789, 785, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 5, 518, 0, 0, 795, 797, 1, 0, 0, 0, 796, 768, 1, 0, 0, 0, 796, 782, 1, 0, 0, 0, 797, 71, 1, 0, 0, 0, 798, 799, 5, 64, 0, 0, 799, 801, 3, 86, 43, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 289, 0, 0, 803, 806, 5, 467, 0, 0, 804, 805, 5, 242, 0, 0, 805, 807, 5, 125, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 813, 1, 0, 0, 0, 808, 810, 5, 242, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 245, 0, 0, 812, 800, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 813, 73, 1, 0, 0, 0, 814, 815, 3, 50, 25, 0, 815, 816, 3, 58, 29, 0, 816, 819, 5, 219, 0, 0, 817, 818, 5, 151, 0, 0, 818, 820, 3, 76, 38, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 823, 5, 424, 0, 0, 822, 821, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 75, 1, 0, 0, 0, 824, 825, 5, 538, 0, 0, 825, 77, 1, 0, 0, 0, 826, 827, 3, 50, 25, 0, 827, 828, 5, 17, 0, 0, 828, 831, 3, 80, 40, 0, 829, 830, 5, 59, 0, 0, 830, 832, 5, 538, 0, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 79, 1, 0, 0, 0, 833, 834, 3, 258, 129, 0, 834, 81, 1, 0, 0, 0, 835, 836, 5, 425, 0, 0, 836, 837, 5, 146, 0, 0, 837, 838, 3, 52, 26, 0, 838, 839, 5, 17, 0, 0, 839, 840, 3, 258, 129, 0, 840, 83, 1, 0, 0, 0, 841, 842, 5, 64, 0, 0, 842, 844, 3, 86, 43, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 289, 0, 0, 846, 847, 5, 467, 0, 0, 847, 848, 3, 56, 28, 0, 848, 849, 5, 242, 0, 0, 849, 850, 5, 125, 0, 0, 850, 85, 1, 0, 0, 0, 851, 852, 3, 310, 155, 0, 852, 87, 1, 0, 0, 0, 853, 854, 5, 278, 0, 0, 854, 855, 5, 146, 0, 0, 855, 856, 5, 372, 0, 0, 856, 89, 1, 0, 0, 0, 857, 858, 5, 270, 0, 0, 858, 859, 5, 34, 0, 0, 859, 860, 3, 92, 46, 0, 860, 91, 1, 0, 0, 0, 861, 862, 5, 517, 0, 0, 862, 867, 3, 94, 47, 0, 863, 864, 5, 521, 0, 0, 864, 866, 3, 94, 47, 0, 865, 863, 1, 0, 0, 0, 866, 869, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 870, 871, 5, 518, 0, 0, 871, 93, 1, 0, 0, 0, 872, 885, 3, 52, 26, 0, 873, 874, 5, 517, 0, 0, 874, 879, 3, 96, 48, 0, 875, 876, 5, 521, 0, 0, 876, 878, 3, 96, 48, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 518, 0, 0, 883, 885, 1, 0, 0, 0, 884, 872, 1, 0, 0, 0, 884, 873, 1, 0, 0, 0, 885, 95, 1, 0, 0, 0, 886, 889, 3, 286, 143, 0, 887, 889, 3, 360, 180, 0, 888, 886, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 97, 1, 0, 0, 0, 890, 891, 5, 203, 0, 0, 891, 900, 3, 328, 164, 0, 892, 896, 5, 517, 0, 0, 893, 895, 3, 100, 50, 0, 894, 893, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 901, 5, 518, 0, 0, 900, 892, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 99, 1, 0, 0, 0, 902, 903, 7, 12, 0, 0, 903, 907, 7, 13, 0, 0, 904, 905, 7, 14, 0, 0, 905, 907, 7, 15, 0, 0, 906, 902, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 101, 1, 0, 0, 0, 908, 909, 5, 72, 0, 0, 909, 910, 5, 442, 0, 0, 910, 911, 3, 320, 160, 0, 911, 912, 3, 336, 168, 0, 912, 103, 1, 0, 0, 0, 913, 914, 5, 72, 0, 0, 914, 916, 5, 448, 0, 0, 915, 917, 3, 338, 169, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 921, 3, 324, 162, 0, 919, 920, 5, 59, 0, 0, 920, 922, 5, 538, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 336, 168, 0, 924, 105, 1, 0, 0, 0, 925, 927, 5, 72, 0, 0, 926, 928, 5, 498, 0, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 5, 502, 0, 0, 930, 932, 3, 338, 169, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 3, 332, 166, 0, 934, 936, 3, 56, 28, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 939, 1, 0, 0, 0, 937, 938, 5, 59, 0, 0, 938, 940, 5, 538, 0, 0, 939, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 5, 17, 0, 0, 942, 943, 3, 158, 79, 0, 943, 107, 1, 0, 0, 0, 944, 948, 5, 72, 0, 0, 945, 949, 5, 498, 0, 0, 946, 947, 5, 498, 0, 0, 947, 949, 5, 371, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 5, 153, 0, 0, 951, 953, 3, 338, 169, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 955, 3, 272, 136, 0, 955, 956, 5, 17, 0, 0, 956, 959, 3, 310, 155, 0, 957, 958, 5, 196, 0, 0, 958, 960, 7, 16, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 1, 0, 0, 0, 961, 963, 3, 110, 55, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 109, 1, 0, 0, 0, 964, 965, 5, 413, 0, 0, 965, 966, 5, 464, 0, 0, 966, 972, 3, 112, 56, 0, 967, 968, 5, 521, 0, 0, 968, 969, 5, 464, 0, 0, 969, 971, 3, 112, 56, 0, 970, 967, 1, 0, 0, 0, 971, 974, 1, 0, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 111, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 975, 976, 5, 538, 0, 0, 976, 113, 1, 0, 0, 0, 977, 978, 5, 8, 0, 0, 978, 980, 5, 374, 0, 0, 979, 981, 3, 340, 170, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 988, 3, 328, 164, 0, 983, 989, 3, 116, 58, 0, 984, 989, 3, 118, 59, 0, 985, 989, 3, 120, 60, 0, 986, 989, 3, 122, 61, 0, 987, 989, 3, 124, 62, 0, 988, 983, 1, 0, 0, 0, 988, 984, 1, 0, 0, 0, 988, 985, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 115, 1, 0, 0, 0, 990, 992, 5, 312, 0, 0, 991, 993, 3, 334, 167, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 389, 0, 0, 995, 996, 3, 334, 167, 0, 996, 117, 1, 0, 0, 0, 997, 998, 5, 341, 0, 0, 998, 999, 3, 342, 171, 0, 999, 119, 1, 0, 0, 0, 1000, 1001, 5, 438, 0, 0, 1001, 1002, 5, 64, 0, 0, 1002, 1003, 3, 86, 43, 0, 1003, 1004, 5, 289, 0, 0, 1004, 1005, 5, 467, 0, 0, 1005, 1007, 3, 56, 28, 0, 1006, 1008, 3, 126, 63, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 121, 1, 0, 0, 0, 1009, 1010, 5, 116, 0, 0, 1010, 1011, 5, 64, 0, 0, 1011, 1012, 3, 86, 43, 0, 1012, 123, 1, 0, 0, 0, 1013, 1014, 5, 438, 0, 0, 1014, 1015, 5, 404, 0, 0, 1015, 1016, 3, 56, 28, 0, 1016, 125, 1, 0, 0, 0, 1017, 1018, 5, 242, 0, 0, 1018, 1019, 5, 125, 0, 0, 1019, 127, 1, 0, 0, 0, 1020, 1021, 5, 8, 0, 0, 1021, 1022, 5, 502, 0, 0, 1022, 1026, 3, 330, 165, 0, 1023, 1027, 3, 116, 58, 0, 1024, 1025, 5, 17, 0, 0, 1025, 1027, 3, 158, 79, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1027, 129, 1, 0, 0, 0, 1028, 1029, 5, 8, 0, 0, 1029, 1030, 5, 448, 0, 0, 1030, 1031, 3, 322, 161, 0, 1031, 1032, 3, 118, 59, 0, 1032, 131, 1, 0, 0, 0, 1033, 1037, 5, 8, 0, 0, 1034, 1038, 5, 498, 0, 0, 1035, 1036, 5, 498, 0, 0, 1036, 1038, 5, 371, 0, 0, 1037, 1034, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 5, 153, 0, 0, 1040, 1042, 3, 340, 170, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 3, 274, 137, 0, 1044, 1045, 5, 17, 0, 0, 1045, 1048, 3, 310, 155, 0, 1046, 1047, 5, 196, 0, 0, 1047, 1049, 7, 16, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 133, 1, 0, 0, 0, 1050, 1051, 5, 116, 0, 0, 1051, 1053, 5, 442, 0, 0, 1052, 1054, 3, 340, 170, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 318, 159, 0, 1056, 135, 1, 0, 0, 0, 1057, 1059, 5, 116, 0, 0, 1058, 1060, 5, 498, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 5, 374, 0, 0, 1062, 1064, 3, 340, 170, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 3, 328, 164, 0, 1066, 137, 1, 0, 0, 0, 1067, 1068, 5, 116, 0, 0, 1068, 1070, 5, 448, 0, 0, 1069, 1071, 3, 340, 170, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 3, 322, 161, 0, 1073, 1075, 7, 17, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 139, 1, 0, 0, 0, 1076, 1078, 5, 116, 0, 0, 1077, 1079, 5, 498, 0, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1082, 5, 502, 0, 0, 1081, 1083, 3, 340, 170, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 3, 330, 165, 0, 1085, 141, 1, 0, 0, 0, 1086, 1090, 5, 116, 0, 0, 1087, 1091, 5, 498, 0, 0, 1088, 1089, 5, 498, 0, 0, 1089, 1091, 5, 371, 0, 0, 1090, 1087, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 5, 153, 0, 0, 1093, 1095, 3, 340, 170, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 274, 137, 0, 1097, 143, 1, 0, 0, 0, 1098, 1100, 5, 132, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1106, 3, 146, 73, 0, 1102, 1106, 3, 154, 77, 0, 1103, 1104, 5, 132, 0, 0, 1104, 1106, 3, 156, 78, 0, 1105, 1099, 1, 0, 0, 0, 1105, 1102, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 145, 1, 0, 0, 0, 1107, 1108, 5, 177, 0, 0, 1108, 1109, 7, 18, 0, 0, 1109, 1118, 3, 328, 164, 0, 1110, 1112, 3, 148, 74, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1115, 3, 56, 28, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1119, 3, 158, 79, 0, 1117, 1119, 3, 150, 75, 0, 1118, 1111, 1, 0, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 147, 1, 0, 0, 0, 1120, 1121, 5, 269, 0, 0, 1121, 1122, 3, 342, 171, 0, 1122, 149, 1, 0, 0, 0, 1123, 1124, 5, 415, 0, 0, 1124, 1129, 3, 152, 76, 0, 1125, 1126, 5, 521, 0, 0, 1126, 1128, 3, 152, 76, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 151, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 517, 0, 0, 1133, 1138, 3, 360, 180, 0, 1134, 1135, 5, 521, 0, 0, 1135, 1137, 3, 360, 180, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1141, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 518, 0, 0, 1142, 153, 1, 0, 0, 0, 1143, 1144, 5, 24, 0, 0, 1144, 1145, 5, 355, 0, 0, 1145, 1146, 5, 341, 0, 0, 1146, 1150, 5, 522, 0, 0, 1147, 1148, 3, 146, 73, 0, 1148, 1149, 5, 522, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1147, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 5, 122, 0, 0, 1155, 155, 1, 0, 0, 0, 1156, 1157, 5, 355, 0, 0, 1157, 1158, 5, 341, 0, 0, 1158, 1162, 5, 24, 0, 0, 1159, 1160, 3, 146, 73, 0, 1160, 1161, 5, 522, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1159, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 5, 122, 0, 0, 1167, 157, 1, 0, 0, 0, 1168, 1169, 6, 79, -1, 0, 1169, 1192, 3, 160, 80, 0, 1170, 1171, 3, 162, 81, 0, 1171, 1172, 3, 158, 79, 5, 1172, 1192, 1, 0, 0, 0, 1173, 1174, 5, 517, 0, 0, 1174, 1175, 3, 158, 79, 0, 1175, 1176, 5, 518, 0, 0, 1176, 1192, 1, 0, 0, 0, 1177, 1179, 3, 170, 85, 0, 1178, 1180, 3, 230, 115, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 234, 117, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1192, 1, 0, 0, 0, 1184, 1186, 3, 168, 84, 0, 1185, 1187, 3, 230, 115, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1190, 3, 234, 117, 0, 1189, 1188, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1168, 1, 0, 0, 0, 1191, 1170, 1, 0, 0, 0, 1191, 1173, 1, 0, 0, 0, 1191, 1177, 1, 0, 0, 0, 1191, 1184, 1, 0, 0, 0, 1192, 1207, 1, 0, 0, 0, 1193, 1194, 10, 3, 0, 0, 1194, 1196, 7, 19, 0, 0, 1195, 1197, 5, 5, 0, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, 3, 158, 79, 0, 1199, 1201, 3, 230, 115, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1204, 3, 234, 117, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1193, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 159, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 415, 0, 0, 1211, 1216, 3, 258, 129, 0, 1212, 1213, 5, 521, 0, 0, 1213, 1215, 3, 258, 129, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 161, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 434, 0, 0, 1220, 1225, 3, 164, 82, 0, 1221, 1222, 5, 521, 0, 0, 1222, 1224, 3, 164, 82, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 163, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1240, 3, 166, 83, 0, 1229, 1230, 5, 517, 0, 0, 1230, 1235, 3, 52, 26, 0, 1231, 1232, 5, 521, 0, 0, 1232, 1234, 3, 52, 26, 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, 1238, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1239, 5, 518, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1229, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 5, 17, 0, 0, 1243, 1244, 5, 517, 0, 0, 1244, 1245, 3, 158, 79, 0, 1245, 1246, 5, 518, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1248, 3, 310, 155, 0, 1248, 167, 1, 0, 0, 0, 1249, 1251, 3, 170, 85, 0, 1250, 1252, 3, 176, 88, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1255, 3, 204, 102, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1258, 3, 206, 103, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 220, 110, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 222, 111, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1270, 1, 0, 0, 0, 1265, 1266, 3, 170, 85, 0, 1266, 1267, 3, 176, 88, 0, 1267, 1268, 3, 228, 114, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1249, 1, 0, 0, 0, 1269, 1265, 1, 0, 0, 0, 1270, 169, 1, 0, 0, 0, 1271, 1273, 5, 337, 0, 0, 1272, 1274, 3, 370, 185, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1284, 1, 0, 0, 0, 1275, 1285, 5, 528, 0, 0, 1276, 1281, 3, 172, 86, 0, 1277, 1278, 5, 521, 0, 0, 1278, 1280, 3, 172, 86, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1275, 1, 0, 0, 0, 1284, 1276, 1, 0, 0, 0, 1285, 171, 1, 0, 0, 0, 1286, 1302, 3, 174, 87, 0, 1287, 1292, 3, 258, 129, 0, 1288, 1290, 5, 17, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 3, 52, 26, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1302, 1, 0, 0, 0, 1294, 1299, 3, 52, 26, 0, 1295, 1297, 5, 17, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 3, 258, 129, 0, 1299, 1296, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1286, 1, 0, 0, 0, 1301, 1287, 1, 0, 0, 0, 1301, 1294, 1, 0, 0, 0, 1302, 173, 1, 0, 0, 0, 1303, 1304, 3, 270, 135, 0, 1304, 1305, 5, 263, 0, 0, 1305, 1306, 3, 226, 113, 0, 1306, 1307, 5, 17, 0, 0, 1307, 1308, 3, 310, 155, 0, 1308, 1316, 1, 0, 0, 0, 1309, 1310, 3, 270, 135, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 302, 151, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 310, 155, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1303, 1, 0, 0, 0, 1315, 1309, 1, 0, 0, 0, 1316, 175, 1, 0, 0, 0, 1317, 1318, 5, 151, 0, 0, 1318, 1319, 3, 178, 89, 0, 1319, 177, 1, 0, 0, 0, 1320, 1321, 6, 89, -1, 0, 1321, 1326, 3, 180, 90, 0, 1322, 1323, 5, 521, 0, 0, 1323, 1325, 3, 180, 90, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1328, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1332, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1332, 3, 188, 94, 0, 1330, 1332, 3, 190, 95, 0, 1331, 1320, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1354, 1, 0, 0, 0, 1333, 1334, 10, 3, 0, 0, 1334, 1335, 5, 73, 0, 0, 1335, 1336, 5, 185, 0, 0, 1336, 1353, 3, 178, 89, 4, 1337, 1339, 10, 4, 0, 0, 1338, 1340, 5, 234, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 7, 20, 0, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1346, 5, 262, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 5, 185, 0, 0, 1348, 1350, 3, 178, 89, 0, 1349, 1351, 3, 202, 101, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1333, 1, 0, 0, 0, 1352, 1337, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 179, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1359, 3, 182, 91, 0, 1358, 1360, 3, 300, 150, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 181, 1, 0, 0, 0, 1361, 1363, 5, 374, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1366, 3, 328, 164, 0, 1365, 1367, 3, 184, 92, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1391, 1, 0, 0, 0, 1368, 1370, 3, 330, 165, 0, 1369, 1371, 3, 184, 92, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1391, 1, 0, 0, 0, 1372, 1373, 5, 199, 0, 0, 1373, 1374, 5, 374, 0, 0, 1374, 1375, 5, 517, 0, 0, 1375, 1376, 3, 268, 134, 0, 1376, 1377, 5, 518, 0, 0, 1377, 1391, 1, 0, 0, 0, 1378, 1380, 5, 199, 0, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 5, 517, 0, 0, 1382, 1383, 3, 158, 79, 0, 1383, 1384, 5, 518, 0, 0, 1384, 1391, 1, 0, 0, 0, 1385, 1386, 5, 406, 0, 0, 1386, 1387, 5, 517, 0, 0, 1387, 1388, 3, 258, 129, 0, 1388, 1389, 5, 518, 0, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1362, 1, 0, 0, 0, 1390, 1368, 1, 0, 0, 0, 1390, 1372, 1, 0, 0, 0, 1390, 1379, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1391, 183, 1, 0, 0, 0, 1392, 1393, 5, 146, 0, 0, 1393, 1394, 5, 372, 0, 0, 1394, 1395, 5, 17, 0, 0, 1395, 1396, 5, 250, 0, 0, 1396, 1397, 3, 186, 93, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 3, 258, 129, 0, 1399, 187, 1, 0, 0, 0, 1400, 1401, 5, 517, 0, 0, 1401, 1402, 3, 150, 75, 0, 1402, 1403, 5, 518, 0, 0, 1403, 1404, 3, 300, 150, 0, 1404, 189, 1, 0, 0, 0, 1405, 1406, 5, 374, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 192, 96, 0, 1408, 1409, 5, 518, 0, 0, 1409, 191, 1, 0, 0, 0, 1410, 1411, 3, 194, 97, 0, 1411, 1412, 5, 517, 0, 0, 1412, 1417, 3, 196, 98, 0, 1413, 1414, 5, 521, 0, 0, 1414, 1416, 3, 196, 98, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 518, 0, 0, 1421, 193, 1, 0, 0, 0, 1422, 1423, 7, 21, 0, 0, 1423, 195, 1, 0, 0, 0, 1424, 1425, 5, 374, 0, 0, 1425, 1440, 3, 218, 109, 0, 1426, 1440, 3, 200, 100, 0, 1427, 1440, 3, 288, 144, 0, 1428, 1429, 5, 447, 0, 0, 1429, 1430, 5, 537, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1440, 3, 218, 109, 0, 1432, 1433, 5, 499, 0, 0, 1433, 1434, 5, 537, 0, 0, 1434, 1440, 3, 200, 100, 0, 1435, 1436, 3, 198, 99, 0, 1436, 1437, 5, 537, 0, 0, 1437, 1438, 3, 288, 144, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1424, 1, 0, 0, 0, 1439, 1426, 1, 0, 0, 0, 1439, 1427, 1, 0, 0, 0, 1439, 1428, 1, 0, 0, 0, 1439, 1432, 1, 0, 0, 0, 1439, 1435, 1, 0, 0, 0, 1440, 197, 1, 0, 0, 0, 1441, 1442, 7, 22, 0, 0, 1442, 199, 1, 0, 0, 0, 1443, 1444, 5, 452, 0, 0, 1444, 1445, 5, 517, 0, 0, 1445, 1446, 3, 52, 26, 0, 1446, 1447, 5, 518, 0, 0, 1447, 201, 1, 0, 0, 0, 1448, 1449, 5, 254, 0, 0, 1449, 1453, 3, 260, 130, 0, 1450, 1451, 5, 413, 0, 0, 1451, 1453, 3, 56, 28, 0, 1452, 1448, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 431, 0, 0, 1455, 1456, 3, 260, 130, 0, 1456, 205, 1, 0, 0, 0, 1457, 1458, 5, 159, 0, 0, 1458, 1459, 5, 34, 0, 0, 1459, 1464, 3, 208, 104, 0, 1460, 1461, 5, 521, 0, 0, 1461, 1463, 3, 208, 104, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 207, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1508, 3, 52, 26, 0, 1468, 1508, 3, 214, 107, 0, 1469, 1470, 5, 517, 0, 0, 1470, 1508, 5, 518, 0, 0, 1471, 1472, 5, 517, 0, 0, 1472, 1477, 3, 258, 129, 0, 1473, 1474, 5, 521, 0, 0, 1474, 1476, 3, 258, 129, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1481, 5, 518, 0, 0, 1481, 1508, 1, 0, 0, 0, 1482, 1483, 3, 212, 106, 0, 1483, 1484, 5, 517, 0, 0, 1484, 1489, 3, 258, 129, 0, 1485, 1486, 5, 521, 0, 0, 1486, 1488, 3, 258, 129, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1491, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1493, 5, 518, 0, 0, 1493, 1508, 1, 0, 0, 0, 1494, 1495, 3, 210, 105, 0, 1495, 1496, 5, 517, 0, 0, 1496, 1501, 3, 208, 104, 0, 1497, 1498, 5, 521, 0, 0, 1498, 1500, 3, 208, 104, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1503, 1, 0, 0, 0, 1501, 1499, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1505, 5, 518, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1508, 3, 258, 129, 0, 1507, 1467, 1, 0, 0, 0, 1507, 1468, 1, 0, 0, 0, 1507, 1469, 1, 0, 0, 0, 1507, 1471, 1, 0, 0, 0, 1507, 1482, 1, 0, 0, 0, 1507, 1494, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 209, 1, 0, 0, 0, 1509, 1510, 5, 160, 0, 0, 1510, 1511, 5, 494, 0, 0, 1511, 211, 1, 0, 0, 0, 1512, 1513, 7, 23, 0, 0, 1513, 213, 1, 0, 0, 0, 1514, 1515, 3, 216, 108, 0, 1515, 1516, 5, 517, 0, 0, 1516, 1517, 3, 218, 109, 0, 1517, 1518, 5, 521, 0, 0, 1518, 1519, 3, 288, 144, 0, 1519, 1520, 5, 518, 0, 0, 1520, 215, 1, 0, 0, 0, 1521, 1522, 7, 24, 0, 0, 1522, 217, 1, 0, 0, 0, 1523, 1524, 3, 334, 167, 0, 1524, 219, 1, 0, 0, 0, 1525, 1526, 5, 163, 0, 0, 1526, 1527, 3, 260, 130, 0, 1527, 221, 1, 0, 0, 0, 1528, 1529, 5, 433, 0, 0, 1529, 1534, 3, 224, 112, 0, 1530, 1531, 5, 521, 0, 0, 1531, 1533, 3, 224, 112, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 223, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1538, 3, 302, 151, 0, 1538, 1539, 5, 17, 0, 0, 1539, 1540, 3, 226, 113, 0, 1540, 225, 1, 0, 0, 0, 1541, 1543, 3, 302, 151, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 5, 517, 0, 0, 1545, 1547, 3, 236, 118, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 230, 115, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1553, 3, 252, 126, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 5, 518, 0, 0, 1555, 227, 1, 0, 0, 0, 1556, 1557, 5, 214, 0, 0, 1557, 1559, 5, 517, 0, 0, 1558, 1560, 3, 236, 118, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 1, 0, 0, 0, 1561, 1563, 3, 230, 115, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1566, 3, 240, 120, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 246, 123, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 248, 124, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 242, 121, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 3, 250, 125, 0, 1577, 1582, 5, 518, 0, 0, 1578, 1580, 5, 17, 0, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 3, 310, 155, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 229, 1, 0, 0, 0, 1584, 1585, 5, 259, 0, 0, 1585, 1586, 5, 34, 0, 0, 1586, 1591, 3, 232, 116, 0, 1587, 1588, 5, 521, 0, 0, 1588, 1590, 3, 232, 116, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 231, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1596, 3, 52, 26, 0, 1595, 1597, 7, 25, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1599, 5, 477, 0, 0, 1599, 1601, 7, 26, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 233, 1, 0, 0, 0, 1602, 1605, 5, 205, 0, 0, 1603, 1606, 5, 5, 0, 0, 1604, 1606, 3, 258, 129, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 235, 1, 0, 0, 0, 1607, 1608, 5, 269, 0, 0, 1608, 1611, 5, 34, 0, 0, 1609, 1612, 3, 52, 26, 0, 1610, 1612, 3, 270, 135, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 1620, 1, 0, 0, 0, 1613, 1616, 5, 521, 0, 0, 1614, 1617, 3, 52, 26, 0, 1615, 1617, 3, 270, 135, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1613, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 237, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1640, 5, 528, 0, 0, 1624, 1640, 5, 531, 0, 0, 1625, 1640, 5, 536, 0, 0, 1626, 1627, 5, 519, 0, 0, 1627, 1628, 5, 539, 0, 0, 1628, 1629, 5, 521, 0, 0, 1629, 1630, 5, 539, 0, 0, 1630, 1640, 5, 520, 0, 0, 1631, 1632, 5, 519, 0, 0, 1632, 1633, 5, 539, 0, 0, 1633, 1634, 5, 521, 0, 0, 1634, 1640, 5, 520, 0, 0, 1635, 1636, 5, 519, 0, 0, 1636, 1637, 5, 521, 0, 0, 1637, 1638, 5, 539, 0, 0, 1638, 1640, 5, 520, 0, 0, 1639, 1623, 1, 0, 0, 0, 1639, 1624, 1, 0, 0, 0, 1639, 1625, 1, 0, 0, 0, 1639, 1626, 1, 0, 0, 0, 1639, 1631, 1, 0, 0, 0, 1639, 1635, 1, 0, 0, 0, 1640, 239, 1, 0, 0, 0, 1641, 1642, 5, 216, 0, 0, 1642, 1647, 3, 172, 86, 0, 1643, 1644, 5, 521, 0, 0, 1644, 1646, 3, 172, 86, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 241, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1651, 5, 272, 0, 0, 1651, 1653, 5, 517, 0, 0, 1652, 1654, 3, 244, 122, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1659, 5, 518, 0, 0, 1658, 1660, 3, 256, 128, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1663, 3, 312, 156, 0, 1662, 1664, 3, 238, 119, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 245, 1, 0, 0, 0, 1665, 1666, 5, 5, 0, 0, 1666, 1667, 5, 323, 0, 0, 1667, 1668, 5, 273, 0, 0, 1668, 1674, 5, 211, 0, 0, 1669, 1670, 5, 255, 0, 0, 1670, 1671, 5, 322, 0, 0, 1671, 1672, 5, 273, 0, 0, 1672, 1674, 5, 211, 0, 0, 1673, 1665, 1, 0, 0, 0, 1673, 1669, 1, 0, 0, 0, 1674, 247, 1, 0, 0, 0, 1675, 1676, 5, 439, 0, 0, 1676, 1677, 5, 211, 0, 0, 1677, 1678, 5, 344, 0, 0, 1678, 1679, 5, 479, 0, 0, 1679, 1680, 5, 468, 0, 0, 1680, 1700, 5, 322, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 389, 0, 0, 1685, 1686, 5, 238, 0, 0, 1686, 1700, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 468, 0, 0, 1692, 1700, 3, 312, 156, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 458, 0, 0, 1698, 1700, 3, 312, 156, 0, 1699, 1675, 1, 0, 0, 0, 1699, 1681, 1, 0, 0, 0, 1699, 1687, 1, 0, 0, 0, 1699, 1693, 1, 0, 0, 0, 1700, 249, 1, 0, 0, 0, 1701, 1702, 5, 105, 0, 0, 1702, 1707, 3, 172, 86, 0, 1703, 1704, 5, 521, 0, 0, 1704, 1706, 3, 172, 86, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1709, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 251, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1711, 5, 293, 0, 0, 1711, 1712, 5, 27, 0, 0, 1712, 1713, 3, 288, 144, 0, 1713, 1714, 3, 254, 127, 0, 1714, 1720, 1, 0, 0, 0, 1715, 1716, 5, 323, 0, 0, 1716, 1717, 5, 27, 0, 0, 1717, 1718, 5, 539, 0, 0, 1718, 1720, 3, 254, 127, 0, 1719, 1710, 1, 0, 0, 0, 1719, 1715, 1, 0, 0, 0, 1720, 253, 1, 0, 0, 0, 1721, 1722, 5, 481, 0, 0, 1722, 1723, 5, 10, 0, 0, 1723, 1724, 5, 76, 0, 0, 1724, 1725, 5, 322, 0, 0, 1725, 255, 1, 0, 0, 0, 1726, 1727, 5, 435, 0, 0, 1727, 1728, 3, 288, 144, 0, 1728, 257, 1, 0, 0, 0, 1729, 1730, 3, 260, 130, 0, 1730, 259, 1, 0, 0, 0, 1731, 1732, 6, 130, -1, 0, 1732, 1733, 5, 242, 0, 0, 1733, 1744, 3, 260, 130, 6, 1734, 1735, 5, 133, 0, 0, 1735, 1736, 5, 517, 0, 0, 1736, 1737, 3, 158, 79, 0, 1737, 1738, 5, 518, 0, 0, 1738, 1744, 1, 0, 0, 0, 1739, 1741, 3, 266, 133, 0, 1740, 1742, 3, 262, 131, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1731, 1, 0, 0, 0, 1743, 1734, 1, 0, 0, 0, 1743, 1739, 1, 0, 0, 0, 1744, 1759, 1, 0, 0, 0, 1745, 1746, 10, 3, 0, 0, 1746, 1747, 5, 10, 0, 0, 1747, 1758, 3, 260, 130, 4, 1748, 1749, 10, 2, 0, 0, 1749, 1750, 5, 258, 0, 0, 1750, 1758, 3, 260, 130, 3, 1751, 1752, 10, 1, 0, 0, 1752, 1754, 5, 184, 0, 0, 1753, 1755, 5, 242, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 7, 27, 0, 0, 1757, 1745, 1, 0, 0, 0, 1757, 1748, 1, 0, 0, 0, 1757, 1751, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 261, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1764, 5, 242, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 5, 27, 0, 0, 1766, 1768, 7, 28, 0, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 3, 266, 133, 0, 1770, 1771, 5, 10, 0, 0, 1771, 1772, 3, 266, 133, 0, 1772, 1837, 1, 0, 0, 0, 1773, 1775, 5, 242, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 170, 0, 0, 1777, 1778, 5, 517, 0, 0, 1778, 1783, 3, 258, 129, 0, 1779, 1780, 5, 521, 0, 0, 1780, 1782, 3, 258, 129, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1785, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1786, 1787, 5, 518, 0, 0, 1787, 1837, 1, 0, 0, 0, 1788, 1790, 5, 242, 0, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 5, 170, 0, 0, 1792, 1793, 5, 517, 0, 0, 1793, 1794, 3, 158, 79, 0, 1794, 1795, 5, 518, 0, 0, 1795, 1837, 1, 0, 0, 0, 1796, 1797, 5, 133, 0, 0, 1797, 1798, 5, 517, 0, 0, 1798, 1799, 3, 158, 79, 0, 1799, 1800, 5, 518, 0, 0, 1800, 1837, 1, 0, 0, 0, 1801, 1803, 5, 242, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 5, 319, 0, 0, 1805, 1837, 3, 266, 133, 0, 1806, 1837, 3, 264, 132, 0, 1807, 1809, 5, 184, 0, 0, 1808, 1810, 5, 242, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1837, 7, 27, 0, 0, 1812, 1814, 5, 184, 0, 0, 1813, 1815, 5, 242, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 5, 113, 0, 0, 1817, 1818, 5, 151, 0, 0, 1818, 1837, 3, 266, 133, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 343, 0, 0, 1823, 1824, 5, 389, 0, 0, 1824, 1827, 3, 266, 133, 0, 1825, 1826, 5, 127, 0, 0, 1826, 1828, 3, 364, 182, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1837, 1, 0, 0, 0, 1829, 1830, 5, 184, 0, 0, 1830, 1834, 5, 186, 0, 0, 1831, 1835, 5, 414, 0, 0, 1832, 1835, 5, 13, 0, 0, 1833, 1835, 3, 310, 155, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 1, 0, 0, 0, 1836, 1763, 1, 0, 0, 0, 1836, 1774, 1, 0, 0, 0, 1836, 1789, 1, 0, 0, 0, 1836, 1796, 1, 0, 0, 0, 1836, 1802, 1, 0, 0, 0, 1836, 1806, 1, 0, 0, 0, 1836, 1807, 1, 0, 0, 0, 1836, 1812, 1, 0, 0, 0, 1836, 1820, 1, 0, 0, 0, 1836, 1829, 1, 0, 0, 0, 1837, 263, 1, 0, 0, 0, 1838, 1840, 5, 242, 0, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 5, 203, 0, 0, 1842, 1856, 7, 29, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1857, 5, 518, 0, 0, 1845, 1846, 5, 517, 0, 0, 1846, 1851, 3, 258, 129, 0, 1847, 1848, 5, 521, 0, 0, 1848, 1850, 3, 258, 129, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 518, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1843, 1, 0, 0, 0, 1856, 1845, 1, 0, 0, 0, 1857, 1868, 1, 0, 0, 0, 1858, 1860, 5, 242, 0, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 5, 203, 0, 0, 1862, 1865, 3, 266, 133, 0, 1863, 1864, 5, 127, 0, 0, 1864, 1866, 3, 364, 182, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1868, 1, 0, 0, 0, 1867, 1839, 1, 0, 0, 0, 1867, 1859, 1, 0, 0, 0, 1868, 265, 1, 0, 0, 0, 1869, 1870, 6, 133, -1, 0, 1870, 1874, 3, 270, 135, 0, 1871, 1872, 7, 30, 0, 0, 1872, 1874, 3, 266, 133, 7, 1873, 1869, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1896, 1, 0, 0, 0, 1875, 1876, 10, 6, 0, 0, 1876, 1877, 7, 31, 0, 0, 1877, 1895, 3, 266, 133, 7, 1878, 1879, 10, 5, 0, 0, 1879, 1880, 7, 32, 0, 0, 1880, 1895, 3, 266, 133, 6, 1881, 1882, 10, 4, 0, 0, 1882, 1883, 5, 512, 0, 0, 1883, 1895, 3, 266, 133, 5, 1884, 1885, 10, 3, 0, 0, 1885, 1886, 5, 513, 0, 0, 1886, 1895, 3, 266, 133, 4, 1887, 1888, 10, 2, 0, 0, 1888, 1889, 5, 511, 0, 0, 1889, 1895, 3, 266, 133, 3, 1890, 1891, 10, 1, 0, 0, 1891, 1892, 3, 352, 176, 0, 1892, 1893, 3, 266, 133, 2, 1893, 1895, 1, 0, 0, 0, 1894, 1875, 1, 0, 0, 0, 1894, 1878, 1, 0, 0, 0, 1894, 1881, 1, 0, 0, 0, 1894, 1884, 1, 0, 0, 0, 1894, 1887, 1, 0, 0, 0, 1894, 1890, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 267, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1919, 3, 378, 189, 0, 1900, 1919, 3, 276, 138, 0, 1901, 1902, 3, 278, 139, 0, 1902, 1914, 5, 517, 0, 0, 1903, 1905, 3, 370, 185, 0, 1904, 1903, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1911, 3, 280, 140, 0, 1907, 1908, 5, 521, 0, 0, 1908, 1910, 3, 280, 140, 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, 1915, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1904, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 518, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1899, 1, 0, 0, 0, 1918, 1900, 1, 0, 0, 0, 1918, 1901, 1, 0, 0, 0, 1919, 269, 1, 0, 0, 0, 1920, 1921, 6, 135, -1, 0, 1921, 1923, 5, 40, 0, 0, 1922, 1924, 3, 316, 158, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1928, 5, 120, 0, 0, 1928, 1930, 3, 258, 129, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 5, 122, 0, 0, 1932, 1996, 1, 0, 0, 0, 1933, 1934, 5, 40, 0, 0, 1934, 1936, 3, 258, 129, 0, 1935, 1937, 3, 316, 158, 0, 1936, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1941, 5, 120, 0, 0, 1941, 1943, 3, 258, 129, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 5, 122, 0, 0, 1945, 1996, 1, 0, 0, 0, 1946, 1947, 5, 41, 0, 0, 1947, 1948, 5, 517, 0, 0, 1948, 1949, 3, 258, 129, 0, 1949, 1950, 5, 17, 0, 0, 1950, 1951, 3, 58, 29, 0, 1951, 1952, 5, 518, 0, 0, 1952, 1996, 1, 0, 0, 0, 1953, 1954, 5, 458, 0, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1958, 3, 258, 129, 0, 1956, 1957, 5, 462, 0, 0, 1957, 1959, 5, 477, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 5, 518, 0, 0, 1961, 1996, 1, 0, 0, 0, 1962, 1963, 5, 468, 0, 0, 1963, 1964, 5, 517, 0, 0, 1964, 1967, 3, 258, 129, 0, 1965, 1966, 5, 462, 0, 0, 1966, 1968, 5, 477, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 518, 0, 0, 1970, 1996, 1, 0, 0, 0, 1971, 1972, 5, 282, 0, 0, 1972, 1973, 5, 517, 0, 0, 1973, 1974, 3, 266, 133, 0, 1974, 1975, 5, 170, 0, 0, 1975, 1976, 3, 266, 133, 0, 1976, 1977, 5, 518, 0, 0, 1977, 1996, 1, 0, 0, 0, 1978, 1996, 3, 360, 180, 0, 1979, 1996, 5, 528, 0, 0, 1980, 1981, 3, 334, 167, 0, 1981, 1982, 5, 514, 0, 0, 1982, 1983, 5, 528, 0, 0, 1983, 1996, 1, 0, 0, 0, 1984, 1985, 5, 517, 0, 0, 1985, 1986, 3, 158, 79, 0, 1986, 1987, 5, 518, 0, 0, 1987, 1996, 1, 0, 0, 0, 1988, 1996, 3, 268, 134, 0, 1989, 1996, 3, 54, 27, 0, 1990, 1996, 3, 282, 141, 0, 1991, 1992, 5, 517, 0, 0, 1992, 1993, 3, 258, 129, 0, 1993, 1994, 5, 518, 0, 0, 1994, 1996, 1, 0, 0, 0, 1995, 1920, 1, 0, 0, 0, 1995, 1933, 1, 0, 0, 0, 1995, 1946, 1, 0, 0, 0, 1995, 1953, 1, 0, 0, 0, 1995, 1962, 1, 0, 0, 0, 1995, 1971, 1, 0, 0, 0, 1995, 1978, 1, 0, 0, 0, 1995, 1979, 1, 0, 0, 0, 1995, 1980, 1, 0, 0, 0, 1995, 1984, 1, 0, 0, 0, 1995, 1988, 1, 0, 0, 0, 1995, 1989, 1, 0, 0, 0, 1995, 1990, 1, 0, 0, 0, 1995, 1991, 1, 0, 0, 0, 1996, 2004, 1, 0, 0, 0, 1997, 1998, 10, 4, 0, 0, 1998, 1999, 5, 515, 0, 0, 1999, 2000, 3, 266, 133, 0, 2000, 2001, 5, 516, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 1997, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 271, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2008, 3, 334, 167, 0, 2008, 273, 1, 0, 0, 0, 2009, 2014, 3, 382, 191, 0, 2010, 2014, 3, 378, 189, 0, 2011, 2014, 3, 380, 190, 0, 2012, 2014, 3, 334, 167, 0, 2013, 2009, 1, 0, 0, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 275, 1, 0, 0, 0, 2015, 2016, 3, 380, 190, 0, 2016, 2017, 5, 538, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2020, 3, 288, 144, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2024, 3, 382, 191, 0, 2022, 2024, 3, 334, 167, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2022, 1, 0, 0, 0, 2024, 279, 1, 0, 0, 0, 2025, 2030, 3, 376, 188, 0, 2026, 2030, 3, 374, 187, 0, 2027, 2030, 3, 372, 186, 0, 2028, 2030, 3, 258, 129, 0, 2029, 2025, 1, 0, 0, 0, 2029, 2026, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2032, 3, 334, 167, 0, 2032, 283, 1, 0, 0, 0, 2033, 2034, 3, 310, 155, 0, 2034, 285, 1, 0, 0, 0, 2035, 2038, 3, 310, 155, 0, 2036, 2038, 3, 282, 141, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 287, 1, 0, 0, 0, 2039, 2042, 5, 182, 0, 0, 2040, 2043, 3, 290, 145, 0, 2041, 2043, 3, 294, 147, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 289, 1, 0, 0, 0, 2044, 2046, 3, 292, 146, 0, 2045, 2047, 3, 296, 148, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 291, 1, 0, 0, 0, 2048, 2049, 3, 298, 149, 0, 2049, 2050, 3, 374, 187, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2048, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 293, 1, 0, 0, 0, 2055, 2058, 3, 296, 148, 0, 2056, 2059, 3, 292, 146, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 295, 1, 0, 0, 0, 2060, 2061, 3, 298, 149, 0, 2061, 2062, 3, 374, 187, 0, 2062, 2063, 5, 389, 0, 0, 2063, 2064, 3, 374, 187, 0, 2064, 297, 1, 0, 0, 0, 2065, 2067, 7, 33, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2071, 7, 34, 0, 0, 2069, 2071, 5, 538, 0, 0, 2070, 2066, 1, 0, 0, 0, 2070, 2069, 1, 0, 0, 0, 2071, 299, 1, 0, 0, 0, 2072, 2074, 5, 17, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2077, 3, 310, 155, 0, 2076, 2078, 3, 306, 153, 0, 2077, 2076, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 301, 1, 0, 0, 0, 2079, 2080, 3, 310, 155, 0, 2080, 2081, 3, 304, 152, 0, 2081, 303, 1, 0, 0, 0, 2082, 2083, 5, 222, 0, 0, 2083, 2085, 3, 310, 155, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2090, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2089, 2088, 1, 0, 0, 0, 2090, 305, 1, 0, 0, 0, 2091, 2092, 5, 517, 0, 0, 2092, 2093, 3, 308, 154, 0, 2093, 2094, 5, 518, 0, 0, 2094, 307, 1, 0, 0, 0, 2095, 2100, 3, 310, 155, 0, 2096, 2097, 5, 521, 0, 0, 2097, 2099, 3, 310, 155, 0, 2098, 2096, 1, 0, 0, 0, 2099, 2102, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 309, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2103, 2107, 3, 312, 156, 0, 2104, 2107, 3, 314, 157, 0, 2105, 2107, 3, 384, 192, 0, 2106, 2103, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2105, 1, 0, 0, 0, 2107, 311, 1, 0, 0, 0, 2108, 2109, 7, 35, 0, 0, 2109, 313, 1, 0, 0, 0, 2110, 2111, 5, 538, 0, 0, 2111, 315, 1, 0, 0, 0, 2112, 2113, 5, 429, 0, 0, 2113, 2114, 3, 258, 129, 0, 2114, 2115, 5, 377, 0, 0, 2115, 2116, 3, 258, 129, 0, 2116, 317, 1, 0, 0, 0, 2117, 2118, 3, 310, 155, 0, 2118, 319, 1, 0, 0, 0, 2119, 2120, 3, 310, 155, 0, 2120, 321, 1, 0, 0, 0, 2121, 2124, 3, 310, 155, 0, 2122, 2123, 5, 514, 0, 0, 2123, 2125, 3, 310, 155, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 323, 1, 0, 0, 0, 2126, 2129, 3, 310, 155, 0, 2127, 2128, 5, 514, 0, 0, 2128, 2130, 3, 310, 155, 0, 2129, 2127, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 325, 1, 0, 0, 0, 2131, 2134, 3, 310, 155, 0, 2132, 2133, 5, 514, 0, 0, 2133, 2135, 3, 310, 155, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2144, 1, 0, 0, 0, 2136, 2137, 3, 310, 155, 0, 2137, 2138, 5, 514, 0, 0, 2138, 2141, 3, 310, 155, 0, 2139, 2140, 5, 514, 0, 0, 2140, 2142, 3, 310, 155, 0, 2141, 2139, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2131, 1, 0, 0, 0, 2143, 2136, 1, 0, 0, 0, 2144, 327, 1, 0, 0, 0, 2145, 2148, 3, 310, 155, 0, 2146, 2147, 5, 514, 0, 0, 2147, 2149, 3, 310, 155, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2158, 1, 0, 0, 0, 2150, 2151, 3, 310, 155, 0, 2151, 2152, 5, 514, 0, 0, 2152, 2155, 3, 310, 155, 0, 2153, 2154, 5, 514, 0, 0, 2154, 2156, 3, 310, 155, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2145, 1, 0, 0, 0, 2157, 2150, 1, 0, 0, 0, 2158, 329, 1, 0, 0, 0, 2159, 2162, 3, 310, 155, 0, 2160, 2161, 5, 514, 0, 0, 2161, 2163, 3, 310, 155, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2172, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 2166, 5, 514, 0, 0, 2166, 2169, 3, 310, 155, 0, 2167, 2168, 5, 514, 0, 0, 2168, 2170, 3, 310, 155, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2159, 1, 0, 0, 0, 2171, 2164, 1, 0, 0, 0, 2172, 331, 1, 0, 0, 0, 2173, 2176, 3, 310, 155, 0, 2174, 2175, 5, 514, 0, 0, 2175, 2177, 3, 310, 155, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2186, 1, 0, 0, 0, 2178, 2179, 3, 310, 155, 0, 2179, 2180, 5, 514, 0, 0, 2180, 2183, 3, 310, 155, 0, 2181, 2182, 5, 514, 0, 0, 2182, 2184, 3, 310, 155, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2173, 1, 0, 0, 0, 2185, 2178, 1, 0, 0, 0, 2186, 333, 1, 0, 0, 0, 2187, 2192, 3, 310, 155, 0, 2188, 2189, 5, 514, 0, 0, 2189, 2191, 3, 310, 155, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2193, 335, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 434, 0, 0, 2196, 2197, 3, 342, 171, 0, 2197, 337, 1, 0, 0, 0, 2198, 2199, 5, 167, 0, 0, 2199, 2200, 5, 242, 0, 0, 2200, 2201, 5, 133, 0, 0, 2201, 339, 1, 0, 0, 0, 2202, 2203, 5, 167, 0, 0, 2203, 2204, 5, 133, 0, 0, 2204, 341, 1, 0, 0, 0, 2205, 2206, 5, 517, 0, 0, 2206, 2211, 3, 344, 172, 0, 2207, 2208, 5, 521, 0, 0, 2208, 2210, 3, 344, 172, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 518, 0, 0, 2215, 343, 1, 0, 0, 0, 2216, 2221, 3, 346, 173, 0, 2217, 2219, 5, 506, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 3, 348, 174, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 345, 1, 0, 0, 0, 2223, 2227, 3, 310, 155, 0, 2224, 2227, 3, 282, 141, 0, 2225, 2227, 5, 538, 0, 0, 2226, 2223, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2225, 1, 0, 0, 0, 2227, 347, 1, 0, 0, 0, 2228, 2233, 5, 539, 0, 0, 2229, 2233, 5, 540, 0, 0, 2230, 2233, 3, 368, 184, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2228, 1, 0, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2241, 5, 10, 0, 0, 2235, 2236, 5, 512, 0, 0, 2236, 2241, 5, 512, 0, 0, 2237, 2241, 5, 258, 0, 0, 2238, 2239, 5, 511, 0, 0, 2239, 2241, 5, 511, 0, 0, 2240, 2234, 1, 0, 0, 0, 2240, 2235, 1, 0, 0, 0, 2240, 2237, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2241, 351, 1, 0, 0, 0, 2242, 2257, 5, 506, 0, 0, 2243, 2257, 5, 507, 0, 0, 2244, 2257, 5, 508, 0, 0, 2245, 2246, 5, 508, 0, 0, 2246, 2257, 5, 506, 0, 0, 2247, 2248, 5, 507, 0, 0, 2248, 2257, 5, 506, 0, 0, 2249, 2250, 5, 508, 0, 0, 2250, 2257, 5, 507, 0, 0, 2251, 2252, 5, 509, 0, 0, 2252, 2257, 5, 506, 0, 0, 2253, 2254, 5, 508, 0, 0, 2254, 2255, 5, 506, 0, 0, 2255, 2257, 5, 507, 0, 0, 2256, 2242, 1, 0, 0, 0, 2256, 2243, 1, 0, 0, 0, 2256, 2244, 1, 0, 0, 0, 2256, 2245, 1, 0, 0, 0, 2256, 2247, 1, 0, 0, 0, 2256, 2249, 1, 0, 0, 0, 2256, 2251, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 353, 1, 0, 0, 0, 2258, 2259, 5, 508, 0, 0, 2259, 2266, 5, 508, 0, 0, 2260, 2261, 5, 507, 0, 0, 2261, 2266, 5, 507, 0, 0, 2262, 2266, 5, 512, 0, 0, 2263, 2266, 5, 513, 0, 0, 2264, 2266, 5, 511, 0, 0, 2265, 2258, 1, 0, 0, 0, 2265, 2260, 1, 0, 0, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2264, 1, 0, 0, 0, 2266, 355, 1, 0, 0, 0, 2267, 2268, 7, 36, 0, 0, 2268, 357, 1, 0, 0, 0, 2269, 2270, 7, 37, 0, 0, 2270, 359, 1, 0, 0, 0, 2271, 2286, 3, 288, 144, 0, 2272, 2286, 3, 362, 181, 0, 2273, 2286, 3, 364, 182, 0, 2274, 2276, 5, 530, 0, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 3, 366, 183, 0, 2278, 2286, 3, 368, 184, 0, 2279, 2286, 5, 540, 0, 0, 2280, 2286, 5, 541, 0, 0, 2281, 2283, 5, 242, 0, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 5, 245, 0, 0, 2285, 2271, 1, 0, 0, 0, 2285, 2272, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2275, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2285, 2279, 1, 0, 0, 0, 2285, 2280, 1, 0, 0, 0, 2285, 2282, 1, 0, 0, 0, 2286, 361, 1, 0, 0, 0, 2287, 2288, 3, 372, 186, 0, 2288, 2289, 3, 364, 182, 0, 2289, 363, 1, 0, 0, 0, 2290, 2291, 5, 538, 0, 0, 2291, 365, 1, 0, 0, 0, 2292, 2293, 5, 539, 0, 0, 2293, 367, 1, 0, 0, 0, 2294, 2295, 7, 38, 0, 0, 2295, 369, 1, 0, 0, 0, 2296, 2297, 7, 39, 0, 0, 2297, 371, 1, 0, 0, 0, 2298, 2299, 7, 40, 0, 0, 2299, 373, 1, 0, 0, 0, 2300, 2301, 7, 41, 0, 0, 2301, 375, 1, 0, 0, 0, 2302, 2303, 7, 42, 0, 0, 2303, 377, 1, 0, 0, 0, 2304, 2305, 7, 43, 0, 0, 2305, 379, 1, 0, 0, 0, 2306, 2307, 7, 44, 0, 0, 2307, 381, 1, 0, 0, 0, 2308, 2309, 7, 45, 0, 0, 2309, 383, 1, 0, 0, 0, 2310, 2311, 7, 46, 0, 0, 2311, 385, 1, 0, 0, 0, 273, 389, 396, 399, 413, 431, 435, 444, 449, 456, 467, 476, 488, 491, 498, 501, 509, 513, 518, 521, 528, 536, 540, 552, 560, 564, 596, 599, 604, 608, 612, 616, 625, 630, 634, 638, 643, 646, 650, 655, 661, 666, 671, 675, 679, 683, 693, 701, 705, 709, 713, 717, 721, 725, 729, 733, 735, 745, 753, 777, 791, 796, 800, 806, 809, 812, 819, 822, 831, 843, 867, 879, 884, 888, 896, 900, 906, 916, 921, 927, 931, 935, 939, 948, 952, 959, 962, 972, 980, 988, 992, 1007, 1026, 1037, 1041, 1048, 1053, 1059, 1063, 1070, 1074, 1078, 1082, 1090, 1094, 1099, 1105, 1111, 1114, 1118, 1129, 1138, 1152, 1164, 1179, 1182, 1186, 1189, 1191, 1196, 1200, 1203, 1207, 1216, 1225, 1235, 1240, 1251, 1254, 1257, 1260, 1263, 1269, 1273, 1281, 1284, 1289, 1292, 1296, 1299, 1301, 1315, 1326, 1331, 1339, 1342, 1345, 1350, 1352, 1354, 1359, 1362, 1366, 1370, 1379, 1390, 1417, 1439, 1452, 1464, 1477, 1489, 1501, 1507, 1534, 1542, 1546, 1549, 1552, 1559, 1562, 1565, 1568, 1571, 1574, 1579, 1582, 1591, 1596, 1600, 1605, 1611, 1616, 1620, 1639, 1647, 1655, 1659, 1663, 1673, 1699, 1707, 1719, 1741, 1743, 1754, 1757, 1759, 1763, 1767, 1774, 1783, 1789, 1802, 1809, 1814, 1820, 1827, 1834, 1836, 1839, 1851, 1856, 1859, 1865, 1867, 1873, 1894, 1896, 1904, 1911, 1914, 1918, 1925, 1929, 1938, 1942, 1958, 1967, 1995, 2004, 2013, 2019, 2023, 2029, 2037, 2042, 2046, 2053, 2058, 2066, 2070, 2073, 2077, 2086, 2089, 2100, 2106, 2124, 2129, 2134, 2141, 2143, 2148, 2155, 2157, 2162, 2169, 2171, 2176, 2183, 2185, 2192, 2211, 2218, 2221, 2226, 2232, 2240, 2256, 2265, 2275, 2282, 2285] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.tokens b/src/lib/flink/FlinkSqlParser.tokens index 346ab4ca5..48749ead1 100644 --- a/src/lib/flink/FlinkSqlParser.tokens +++ b/src/lib/flink/FlinkSqlParser.tokens @@ -1,5 +1,5 @@ -SPACE=1 -COMMENT_INPUT=2 +WHITE_SPACE=1 +BRACKETED_COMMENT=2 LINE_COMMENT=3 KW_ABS=4 KW_ALL=5 diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 2fad4df25..7c2f5de7a 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -17,8 +17,8 @@ import { SQLParserBase } from '../SQLParserBase'; export class FlinkSqlParser extends SQLParserBase { - public static readonly SPACE = 1; - public static readonly COMMENT_INPUT = 2; + public static readonly WHITE_SPACE = 1; + public static readonly BRACKETED_COMMENT = 2; public static readonly LINE_COMMENT = 3; public static readonly KW_ABS = 4; public static readonly KW_ALL = 5; @@ -586,171 +586,172 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_physicalColumnDefinition = 24; public static readonly RULE_columnNameCreate = 25; public static readonly RULE_columnName = 26; - public static readonly RULE_columnNameList = 27; - public static readonly RULE_columnType = 28; - public static readonly RULE_lengthOneDimension = 29; - public static readonly RULE_lengthTwoOptionalDimension = 30; - public static readonly RULE_lengthTwoStringDimension = 31; - public static readonly RULE_lengthOneTypeDimension = 32; - public static readonly RULE_mapTypeDimension = 33; - public static readonly RULE_rowTypeDimension = 34; - public static readonly RULE_columnConstraint = 35; - public static readonly RULE_metadataColumnDefinition = 36; - public static readonly RULE_metadataKey = 37; - public static readonly RULE_computedColumnDefinition = 38; - public static readonly RULE_computedColumnExpression = 39; - public static readonly RULE_watermarkDefinition = 40; - public static readonly RULE_tableConstraint = 41; - public static readonly RULE_constraintName = 42; - public static readonly RULE_selfDefinitionClause = 43; - public static readonly RULE_partitionDefinition = 44; - public static readonly RULE_transformList = 45; - public static readonly RULE_transform = 46; - public static readonly RULE_transformArgument = 47; - public static readonly RULE_likeDefinition = 48; - public static readonly RULE_likeOption = 49; - public static readonly RULE_createCatalog = 50; - public static readonly RULE_createDatabase = 51; - public static readonly RULE_createView = 52; - public static readonly RULE_createFunction = 53; - public static readonly RULE_usingClause = 54; - public static readonly RULE_jarFileName = 55; - public static readonly RULE_alterTable = 56; - public static readonly RULE_renameDefinition = 57; - public static readonly RULE_setKeyValueDefinition = 58; - public static readonly RULE_addConstraint = 59; - public static readonly RULE_dropConstraint = 60; - public static readonly RULE_addUnique = 61; - public static readonly RULE_notForced = 62; - public static readonly RULE_alterView = 63; - public static readonly RULE_alterDatabase = 64; - public static readonly RULE_alterFunction = 65; - public static readonly RULE_dropCatalog = 66; - public static readonly RULE_dropTable = 67; - public static readonly RULE_dropDatabase = 68; - public static readonly RULE_dropView = 69; - public static readonly RULE_dropFunction = 70; - public static readonly RULE_insertStatement = 71; - public static readonly RULE_insertSimpleStatement = 72; - public static readonly RULE_insertPartitionDefinition = 73; - public static readonly RULE_valuesDefinition = 74; - public static readonly RULE_valuesRowDefinition = 75; - public static readonly RULE_insertMulStatementCompatibility = 76; - public static readonly RULE_insertMulStatement = 77; - public static readonly RULE_queryStatement = 78; - public static readonly RULE_valuesClause = 79; - public static readonly RULE_withClause = 80; - public static readonly RULE_withItem = 81; - public static readonly RULE_withItemName = 82; - public static readonly RULE_selectStatement = 83; - public static readonly RULE_selectClause = 84; - public static readonly RULE_projectItemDefinition = 85; - public static readonly RULE_overWindowItem = 86; - public static readonly RULE_fromClause = 87; - public static readonly RULE_tableExpression = 88; - public static readonly RULE_tableReference = 89; - public static readonly RULE_tablePrimary = 90; - public static readonly RULE_systemTimePeriod = 91; - public static readonly RULE_dateTimeExpression = 92; - public static readonly RULE_inlineDataValueClause = 93; - public static readonly RULE_windowTVFClause = 94; - public static readonly RULE_windowTVFExpression = 95; - public static readonly RULE_windowTVFName = 96; - public static readonly RULE_windowTVFParam = 97; - public static readonly RULE_timeIntervalParamName = 98; - public static readonly RULE_columnDescriptor = 99; - public static readonly RULE_joinCondition = 100; - public static readonly RULE_whereClause = 101; - public static readonly RULE_groupByClause = 102; - public static readonly RULE_groupItemDefinition = 103; - public static readonly RULE_groupingSets = 104; - public static readonly RULE_groupingSetsNotationName = 105; - public static readonly RULE_groupWindowFunction = 106; - public static readonly RULE_groupWindowFunctionName = 107; - public static readonly RULE_timeAttrColumn = 108; - public static readonly RULE_havingClause = 109; - public static readonly RULE_windowClause = 110; - public static readonly RULE_namedWindow = 111; - public static readonly RULE_windowSpec = 112; - public static readonly RULE_matchRecognizeClause = 113; - public static readonly RULE_orderByClause = 114; - public static readonly RULE_orderItemDefinition = 115; - public static readonly RULE_limitClause = 116; - public static readonly RULE_partitionByClause = 117; - public static readonly RULE_quantifiers = 118; - public static readonly RULE_measuresClause = 119; - public static readonly RULE_patternDefinition = 120; - public static readonly RULE_patternVariable = 121; - public static readonly RULE_outputMode = 122; - public static readonly RULE_afterMatchStrategy = 123; - public static readonly RULE_patternVariablesDefinition = 124; - public static readonly RULE_windowFrame = 125; - public static readonly RULE_frameBound = 126; - public static readonly RULE_withinClause = 127; - public static readonly RULE_expression = 128; - public static readonly RULE_booleanExpression = 129; - public static readonly RULE_predicate = 130; - public static readonly RULE_likePredicate = 131; - public static readonly RULE_valueExpression = 132; - public static readonly RULE_functionCallExpression = 133; - public static readonly RULE_primaryExpression = 134; - public static readonly RULE_functionNameCreate = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionNameAndParams = 137; - public static readonly RULE_functionNameWithParams = 138; - public static readonly RULE_functionParam = 139; - public static readonly RULE_dereferenceDefinition = 140; - public static readonly RULE_correlationName = 141; - public static readonly RULE_qualifiedName = 142; - public static readonly RULE_timeIntervalExpression = 143; - public static readonly RULE_errorCapturingMultiUnitsInterval = 144; - public static readonly RULE_multiUnitsInterval = 145; - public static readonly RULE_errorCapturingUnitToUnitInterval = 146; - public static readonly RULE_unitToUnitInterval = 147; - public static readonly RULE_intervalValue = 148; - public static readonly RULE_tableAlias = 149; - public static readonly RULE_errorCapturingIdentifier = 150; - public static readonly RULE_errorCapturingIdentifierExtra = 151; - public static readonly RULE_identifierList = 152; - public static readonly RULE_identifierSeq = 153; - public static readonly RULE_identifier = 154; - public static readonly RULE_unquotedIdentifier = 155; - public static readonly RULE_quotedIdentifier = 156; - public static readonly RULE_whenClause = 157; - public static readonly RULE_catalogPath = 158; - public static readonly RULE_catalogPathCreate = 159; - public static readonly RULE_databasePath = 160; - public static readonly RULE_databasePathCreate = 161; - public static readonly RULE_tablePathCreate = 162; - public static readonly RULE_tablePath = 163; - public static readonly RULE_viewPath = 164; - public static readonly RULE_viewPathCreate = 165; - public static readonly RULE_uid = 166; - public static readonly RULE_withOption = 167; - public static readonly RULE_ifNotExists = 168; - public static readonly RULE_ifExists = 169; - public static readonly RULE_tablePropertyList = 170; - public static readonly RULE_tableProperty = 171; - public static readonly RULE_tablePropertyKey = 172; - public static readonly RULE_tablePropertyValue = 173; - public static readonly RULE_logicalOperator = 174; - public static readonly RULE_comparisonOperator = 175; - public static readonly RULE_bitOperator = 176; - public static readonly RULE_mathOperator = 177; - public static readonly RULE_unaryOperator = 178; - public static readonly RULE_constant = 179; - public static readonly RULE_timePointLiteral = 180; - public static readonly RULE_stringLiteral = 181; - public static readonly RULE_decimalLiteral = 182; - public static readonly RULE_booleanLiteral = 183; - public static readonly RULE_setQuantifier = 184; - public static readonly RULE_timePointUnit = 185; - public static readonly RULE_timeIntervalUnit = 186; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 187; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 188; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 189; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 190; - public static readonly RULE_nonReservedKeywords = 191; + public static readonly RULE_columnNamePath = 27; + public static readonly RULE_columnNameList = 28; + public static readonly RULE_columnType = 29; + public static readonly RULE_lengthOneDimension = 30; + public static readonly RULE_lengthTwoOptionalDimension = 31; + public static readonly RULE_lengthTwoStringDimension = 32; + public static readonly RULE_lengthOneTypeDimension = 33; + public static readonly RULE_mapTypeDimension = 34; + public static readonly RULE_rowTypeDimension = 35; + public static readonly RULE_columnConstraint = 36; + public static readonly RULE_metadataColumnDefinition = 37; + public static readonly RULE_metadataKey = 38; + public static readonly RULE_computedColumnDefinition = 39; + public static readonly RULE_computedColumnExpression = 40; + public static readonly RULE_watermarkDefinition = 41; + public static readonly RULE_tableConstraint = 42; + public static readonly RULE_constraintName = 43; + public static readonly RULE_selfDefinitionClause = 44; + public static readonly RULE_partitionDefinition = 45; + public static readonly RULE_transformList = 46; + public static readonly RULE_transform = 47; + public static readonly RULE_transformArgument = 48; + public static readonly RULE_likeDefinition = 49; + public static readonly RULE_likeOption = 50; + public static readonly RULE_createCatalog = 51; + public static readonly RULE_createDatabase = 52; + public static readonly RULE_createView = 53; + public static readonly RULE_createFunction = 54; + public static readonly RULE_usingClause = 55; + public static readonly RULE_jarFileName = 56; + public static readonly RULE_alterTable = 57; + public static readonly RULE_renameDefinition = 58; + public static readonly RULE_setKeyValueDefinition = 59; + public static readonly RULE_addConstraint = 60; + public static readonly RULE_dropConstraint = 61; + public static readonly RULE_addUnique = 62; + public static readonly RULE_notForced = 63; + public static readonly RULE_alterView = 64; + public static readonly RULE_alterDatabase = 65; + public static readonly RULE_alterFunction = 66; + public static readonly RULE_dropCatalog = 67; + public static readonly RULE_dropTable = 68; + public static readonly RULE_dropDatabase = 69; + public static readonly RULE_dropView = 70; + public static readonly RULE_dropFunction = 71; + public static readonly RULE_insertStatement = 72; + public static readonly RULE_insertSimpleStatement = 73; + public static readonly RULE_insertPartitionDefinition = 74; + public static readonly RULE_valuesDefinition = 75; + public static readonly RULE_valuesRowDefinition = 76; + public static readonly RULE_insertMulStatementCompatibility = 77; + public static readonly RULE_insertMulStatement = 78; + public static readonly RULE_queryStatement = 79; + public static readonly RULE_valuesClause = 80; + public static readonly RULE_withClause = 81; + public static readonly RULE_withItem = 82; + public static readonly RULE_withItemName = 83; + public static readonly RULE_selectStatement = 84; + public static readonly RULE_selectClause = 85; + public static readonly RULE_projectItemDefinition = 86; + public static readonly RULE_overWindowItem = 87; + public static readonly RULE_fromClause = 88; + public static readonly RULE_tableExpression = 89; + public static readonly RULE_tableReference = 90; + public static readonly RULE_tablePrimary = 91; + public static readonly RULE_systemTimePeriod = 92; + public static readonly RULE_dateTimeExpression = 93; + public static readonly RULE_inlineDataValueClause = 94; + public static readonly RULE_windowTVFClause = 95; + public static readonly RULE_windowTVFExpression = 96; + public static readonly RULE_windowTVFName = 97; + public static readonly RULE_windowTVFParam = 98; + public static readonly RULE_timeIntervalParamName = 99; + public static readonly RULE_columnDescriptor = 100; + public static readonly RULE_joinCondition = 101; + public static readonly RULE_whereClause = 102; + public static readonly RULE_groupByClause = 103; + public static readonly RULE_groupItemDefinition = 104; + public static readonly RULE_groupingSets = 105; + public static readonly RULE_groupingSetsNotationName = 106; + public static readonly RULE_groupWindowFunction = 107; + public static readonly RULE_groupWindowFunctionName = 108; + public static readonly RULE_timeAttrColumn = 109; + public static readonly RULE_havingClause = 110; + public static readonly RULE_windowClause = 111; + public static readonly RULE_namedWindow = 112; + public static readonly RULE_windowSpec = 113; + public static readonly RULE_matchRecognizeClause = 114; + public static readonly RULE_orderByClause = 115; + public static readonly RULE_orderItemDefinition = 116; + public static readonly RULE_limitClause = 117; + public static readonly RULE_partitionByClause = 118; + public static readonly RULE_quantifiers = 119; + public static readonly RULE_measuresClause = 120; + public static readonly RULE_patternDefinition = 121; + public static readonly RULE_patternVariable = 122; + public static readonly RULE_outputMode = 123; + public static readonly RULE_afterMatchStrategy = 124; + public static readonly RULE_patternVariablesDefinition = 125; + public static readonly RULE_windowFrame = 126; + public static readonly RULE_frameBound = 127; + public static readonly RULE_withinClause = 128; + public static readonly RULE_expression = 129; + public static readonly RULE_booleanExpression = 130; + public static readonly RULE_predicate = 131; + public static readonly RULE_likePredicate = 132; + public static readonly RULE_valueExpression = 133; + public static readonly RULE_functionCallExpression = 134; + public static readonly RULE_primaryExpression = 135; + public static readonly RULE_functionNameCreate = 136; + public static readonly RULE_functionName = 137; + public static readonly RULE_functionNameAndParams = 138; + public static readonly RULE_functionNameWithParams = 139; + public static readonly RULE_functionParam = 140; + public static readonly RULE_dereferenceDefinition = 141; + public static readonly RULE_correlationName = 142; + public static readonly RULE_qualifiedName = 143; + public static readonly RULE_timeIntervalExpression = 144; + public static readonly RULE_errorCapturingMultiUnitsInterval = 145; + public static readonly RULE_multiUnitsInterval = 146; + public static readonly RULE_errorCapturingUnitToUnitInterval = 147; + public static readonly RULE_unitToUnitInterval = 148; + public static readonly RULE_intervalValue = 149; + public static readonly RULE_tableAlias = 150; + public static readonly RULE_errorCapturingIdentifier = 151; + public static readonly RULE_errorCapturingIdentifierExtra = 152; + public static readonly RULE_identifierList = 153; + public static readonly RULE_identifierSeq = 154; + public static readonly RULE_identifier = 155; + public static readonly RULE_unquotedIdentifier = 156; + public static readonly RULE_quotedIdentifier = 157; + public static readonly RULE_whenClause = 158; + public static readonly RULE_catalogPath = 159; + public static readonly RULE_catalogPathCreate = 160; + public static readonly RULE_databasePath = 161; + public static readonly RULE_databasePathCreate = 162; + public static readonly RULE_tablePathCreate = 163; + public static readonly RULE_tablePath = 164; + public static readonly RULE_viewPath = 165; + public static readonly RULE_viewPathCreate = 166; + public static readonly RULE_uid = 167; + public static readonly RULE_withOption = 168; + public static readonly RULE_ifNotExists = 169; + public static readonly RULE_ifExists = 170; + public static readonly RULE_tablePropertyList = 171; + public static readonly RULE_tableProperty = 172; + public static readonly RULE_tablePropertyKey = 173; + public static readonly RULE_tablePropertyValue = 174; + public static readonly RULE_logicalOperator = 175; + public static readonly RULE_comparisonOperator = 176; + public static readonly RULE_bitOperator = 177; + public static readonly RULE_mathOperator = 178; + public static readonly RULE_unaryOperator = 179; + public static readonly RULE_constant = 180; + public static readonly RULE_timePointLiteral = 181; + public static readonly RULE_stringLiteral = 182; + public static readonly RULE_decimalLiteral = 183; + public static readonly RULE_booleanLiteral = 184; + public static readonly RULE_setQuantifier = 185; + public static readonly RULE_timePointUnit = 186; + public static readonly RULE_timeIntervalUnit = 187; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 188; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 189; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 190; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 191; + public static readonly RULE_nonReservedKeywords = 192; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -854,21 +855,22 @@ export class FlinkSqlParser extends SQLParserBase { ]; public static readonly symbolicNames = [ - null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "KW_ABS", "KW_ALL", - "KW_ALLOCATE", "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", "KW_ANY", - "KW_ARE", "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", "KW_ARRAY_MAX_CARDINALITY", - "KW_AS", "KW_ASENSITIVE", "KW_ASYMMETRIC", "KW_AT", "KW_ATOMIC", - "KW_AUTHORIZATION", "KW_AVG", "KW_BEGIN", "KW_BEGIN_FRAME", "KW_BEGIN_PARTITION", - "KW_BETWEEN", "KW_BIGINT", "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", - "KW_BOTH", "KW_BY", "KW_BYTES", "KW_CALL", "KW_CALLED", "KW_CARDINALITY", - "KW_CASCADED", "KW_CASE", "KW_CAST", "KW_CATALOGS", "KW_CEIL", "KW_CEILING", - "KW_CHANGELOG_MODE", "KW_CHAR", "KW_CHARACTER", "KW_CHARACTER_LENGTH", - "KW_CHAR_LENGTH", "KW_CHECK", "KW_CLASSIFIER", "KW_CLOB", "KW_CLOSE", - "KW_COALESCE", "KW_COLLATE", "KW_COLLECT", "KW_COLUMN", "KW_COLUMNS", - "KW_COMMENT", "KW_COMMIT", "KW_COMPUTE", "KW_CONDITION", "KW_CONNECT", - "KW_CONSTRAINT", "KW_CONTAINS", "KW_CONVERT", "KW_CORR", "KW_CORRESPONDING", - "KW_COUNT", "KW_COVAR_POP", "KW_COVAR_SAMP", "KW_CREATE", "KW_CROSS", - "KW_CUBE", "KW_CUME_DIST", "KW_CURRENT", "KW_CURRENT_CATALOG", "KW_CURRENT_DATE", + null, "WHITE_SPACE", "BRACKETED_COMMENT", "LINE_COMMENT", "KW_ABS", + "KW_ALL", "KW_ALLOCATE", "KW_ALLOW", "KW_ALTER", "KW_ANALYZE", "KW_AND", + "KW_ANY", "KW_ARE", "KW_ARRAY", "KW_ARRAY_AGG", "KW_ARRAY_CONCAT_AGG", + "KW_ARRAY_MAX_CARDINALITY", "KW_AS", "KW_ASENSITIVE", "KW_ASYMMETRIC", + "KW_AT", "KW_ATOMIC", "KW_AUTHORIZATION", "KW_AVG", "KW_BEGIN", + "KW_BEGIN_FRAME", "KW_BEGIN_PARTITION", "KW_BETWEEN", "KW_BIGINT", + "KW_BINARY", "KW_BIT", "KW_BLOB", "KW_BOOLEAN", "KW_BOTH", "KW_BY", + "KW_BYTES", "KW_CALL", "KW_CALLED", "KW_CARDINALITY", "KW_CASCADED", + "KW_CASE", "KW_CAST", "KW_CATALOGS", "KW_CEIL", "KW_CEILING", "KW_CHANGELOG_MODE", + "KW_CHAR", "KW_CHARACTER", "KW_CHARACTER_LENGTH", "KW_CHAR_LENGTH", + "KW_CHECK", "KW_CLASSIFIER", "KW_CLOB", "KW_CLOSE", "KW_COALESCE", + "KW_COLLATE", "KW_COLLECT", "KW_COLUMN", "KW_COLUMNS", "KW_COMMENT", + "KW_COMMIT", "KW_COMPUTE", "KW_CONDITION", "KW_CONNECT", "KW_CONSTRAINT", + "KW_CONTAINS", "KW_CONVERT", "KW_CORR", "KW_CORRESPONDING", "KW_COUNT", + "KW_COVAR_POP", "KW_COVAR_SAMP", "KW_CREATE", "KW_CROSS", "KW_CUBE", + "KW_CUME_DIST", "KW_CURRENT", "KW_CURRENT_CATALOG", "KW_CURRENT_DATE", "KW_CURRENT_DEFAULT_TRANSFORM_GROUP", "KW_CURRENT_PATH", "KW_CURRENT_ROLE", "KW_CURRENT_ROW", "KW_CURRENT_SCHEMA", "KW_CURRENT_TIME", "KW_CURRENT_TIMESTAMP", "KW_CURRENT_TRANSFORM_GROUP_FOR_TYPE", "KW_CURRENT_USER", "KW_CURSOR", @@ -970,8 +972,8 @@ export class FlinkSqlParser extends SQLParserBase { "showStatement", "loadStatement", "unloadStatement", "setStatement", "resetStatement", "jarStatement", "dtAddStatement", "dtFilePath", "createTable", "simpleCreateTable", "createTableAsSelect", "columnOptionDefinition", - "physicalColumnDefinition", "columnNameCreate", "columnName", "columnNameList", - "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", + "physicalColumnDefinition", "columnNameCreate", "columnName", "columnNamePath", + "columnNameList", "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", "lengthTwoStringDimension", "lengthOneTypeDimension", "mapTypeDimension", "rowTypeDimension", "columnConstraint", "metadataColumnDefinition", "metadataKey", "computedColumnDefinition", "computedColumnExpression", @@ -1037,21 +1039,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 387; + this.state = 389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { { { - this.state = 384; + this.state = 386; this.singleStatement(); } } - this.state = 389; + this.state = 391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 390; + this.state = 392; this.match(FlinkSqlParser.EOF); } } @@ -1073,7 +1075,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 397; + this.state = 399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1099,14 +1101,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 392; - this.sqlStatement(); this.state = 394; + this.sqlStatement(); + this.state = 396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 393; + this.state = 395; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1116,7 +1118,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 396; + this.state = 398; this.emptyStatement(); } break; @@ -1142,90 +1144,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 411; + this.state = 413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 399; + this.state = 401; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 400; + this.state = 402; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 401; + this.state = 403; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 402; + this.state = 404; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 403; + this.state = 405; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 404; + this.state = 406; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 405; + this.state = 407; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 406; + this.state = 408; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 407; + this.state = 409; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 408; + this.state = 410; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 409; + this.state = 411; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 410; + this.state = 412; this.dtAddStatement(); } break; @@ -1251,7 +1253,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 413; + this.state = 415; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1273,104 +1275,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 429; + this.state = 431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 415; + this.state = 417; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 416; + this.state = 418; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 417; + this.state = 419; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 418; + this.state = 420; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 419; + this.state = 421; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 420; + this.state = 422; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 421; + this.state = 423; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 422; + this.state = 424; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 423; + this.state = 425; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 424; + this.state = 426; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 425; + this.state = 427; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 426; + this.state = 428; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 427; + this.state = 429; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 428; + this.state = 430; this.dropFunction(); } break; @@ -1394,7 +1396,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 433; + this.state = 435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1403,7 +1405,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 431; + this.state = 433; this.queryStatement(0); } break; @@ -1412,7 +1414,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 432; + this.state = 434; this.insertStatement(); } break; @@ -1441,7 +1443,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 435; + this.state = 437; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 451)) { this.errorHandler.recoverInline(this); @@ -1450,7 +1452,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 436; + this.state = 438; this.tablePath(); } } @@ -1474,24 +1476,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 438; + this.state = 440; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 442; + this.state = 444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 439; + this.state = 441; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 440; + this.state = 442; this.match(FlinkSqlParser.KW_PLAN); - this.state = 441; + this.state = 443; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1507,24 +1509,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 447; + this.state = 449; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 444; + this.state = 446; this.dmlStatement(); } break; case 2: { - this.state = 445; + this.state = 447; this.insertSimpleStatement(); } break; case 3: { - this.state = 446; + this.state = 448; this.insertMulStatement(); } break; @@ -1552,21 +1554,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 449; + this.state = 451; this.explainDetail(); - this.state = 454; + this.state = 456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 450; + this.state = 452; this.match(FlinkSqlParser.COMMA); - this.state = 451; + this.state = 453; this.explainDetail(); } } - this.state = 456; + this.state = 458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1593,7 +1595,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 457; + this.state = 459; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -1622,33 +1624,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 465; + this.state = 467; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 459; + this.state = 461; this.match(FlinkSqlParser.KW_USE); - this.state = 460; + this.state = 462; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 461; + this.state = 463; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 462; + this.state = 464; this.match(FlinkSqlParser.KW_USE); - this.state = 463; + this.state = 465; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 464; + this.state = 466; this.useModuleStatement(); } break; @@ -1675,25 +1677,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 467; + this.state = 469; this.match(FlinkSqlParser.KW_USE); - this.state = 468; + this.state = 470; this.match(FlinkSqlParser.KW_MODULES); - this.state = 469; + this.state = 471; this.uid(); - this.state = 474; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 470; + this.state = 472; this.match(FlinkSqlParser.COMMA); - this.state = 471; + this.state = 473; this.uid(); } } - this.state = 476; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1718,15 +1720,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 519; + this.state = 521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 477; + this.state = 479; this.match(FlinkSqlParser.KW_SHOW); - this.state = 478; + this.state = 480; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -1740,11 +1742,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 479; + this.state = 481; this.match(FlinkSqlParser.KW_SHOW); - this.state = 480; + this.state = 482; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 481; + this.state = 483; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 448)) { this.errorHandler.recoverInline(this); @@ -1758,16 +1760,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 482; + this.state = 484; this.match(FlinkSqlParser.KW_SHOW); - this.state = 483; + this.state = 485; this.match(FlinkSqlParser.KW_TABLES); - this.state = 486; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 484; + this.state = 486; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1776,17 +1778,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 485; + this.state = 487; this.databasePath(); } } - this.state = 489; + this.state = 491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 488; + this.state = 490; this.likePredicate(); } } @@ -1796,11 +1798,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 491; + this.state = 493; this.match(FlinkSqlParser.KW_SHOW); - this.state = 492; + this.state = 494; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 493; + this.state = 495; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1809,28 +1811,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 496; + this.state = 498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 494; + this.state = 496; this.viewPath(); } break; case 2: { - this.state = 495; + this.state = 497; this.tablePath(); } break; } - this.state = 499; + this.state = 501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 498; + this.state = 500; this.likePredicate(); } } @@ -1840,26 +1842,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 501; + this.state = 503; this.match(FlinkSqlParser.KW_SHOW); - this.state = 502; + this.state = 504; this.match(FlinkSqlParser.KW_CREATE); - this.state = 507; + this.state = 509; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 503; + this.state = 505; this.match(FlinkSqlParser.KW_TABLE); - this.state = 504; + this.state = 506; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 505; + this.state = 507; this.match(FlinkSqlParser.KW_VIEW); - this.state = 506; + this.state = 508; this.viewPath(); } break; @@ -1871,38 +1873,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 509; - this.match(FlinkSqlParser.KW_SHOW); this.state = 511; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 510; + this.state = 512; this.match(FlinkSqlParser.KW_USER); } } - this.state = 513; + this.state = 515; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 514; - this.match(FlinkSqlParser.KW_SHOW); this.state = 516; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 515; + this.state = 517; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 518; + this.state = 520; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1928,20 +1930,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 521; + this.state = 523; this.match(FlinkSqlParser.KW_LOAD); - this.state = 522; + this.state = 524; this.match(FlinkSqlParser.KW_MODULE); - this.state = 523; + this.state = 525; this.uid(); - this.state = 526; + this.state = 528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 524; + this.state = 526; this.match(FlinkSqlParser.KW_WITH); - this.state = 525; + this.state = 527; this.tablePropertyList(); } break; @@ -1968,11 +1970,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 528; + this.state = 530; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 529; + this.state = 531; this.match(FlinkSqlParser.KW_MODULE); - this.state = 530; + this.state = 532; this.uid(); } } @@ -1996,14 +1998,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 532; - this.match(FlinkSqlParser.KW_SET); this.state = 534; + this.match(FlinkSqlParser.KW_SET); + this.state = 536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 533; + this.state = 535; this.tableProperty(); } break; @@ -2030,14 +2032,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 536; - this.match(FlinkSqlParser.KW_RESET); this.state = 538; + this.match(FlinkSqlParser.KW_RESET); + this.state = 540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 537; + this.state = 539; this.tablePropertyKey(); } break; @@ -2065,7 +2067,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 540; + this.state = 542; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 490)) { this.errorHandler.recoverInline(this); @@ -2074,9 +2076,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 541; + this.state = 543; this.match(FlinkSqlParser.KW_JAR); - this.state = 542; + this.state = 544; this.jarFileName(); } } @@ -2099,28 +2101,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 594; + this.state = 596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 544; + this.state = 546; this.match(FlinkSqlParser.KW_ADD); - this.state = 545; + this.state = 547; this.match(FlinkSqlParser.KW_JAR); - this.state = 546; + this.state = 548; this.match(FlinkSqlParser.KW_WITH); - this.state = 547; + this.state = 549; this.dtFilePath(); - this.state = 550; + this.state = 552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 548; + this.state = 550; this.match(FlinkSqlParser.KW_AS); - this.state = 549; + this.state = 551; this.uid(); } } @@ -2130,34 +2132,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 552; + this.state = 554; this.match(FlinkSqlParser.KW_ADD); - this.state = 553; + this.state = 555; this.match(FlinkSqlParser.KW_FILE); - this.state = 554; + this.state = 556; this.match(FlinkSqlParser.KW_WITH); - this.state = 555; + this.state = 557; this.dtFilePath(); - this.state = 558; + this.state = 560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 556; + this.state = 558; this.match(FlinkSqlParser.KW_AS); - this.state = 557; + this.state = 559; this.uid(); } } - this.state = 562; + this.state = 564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 312) { { - this.state = 560; + this.state = 562; this.match(FlinkSqlParser.KW_RENAME); - this.state = 561; + this.state = 563; this.uid(); } } @@ -2167,9 +2169,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 564; + this.state = 566; this.match(FlinkSqlParser.KW_ADD); - this.state = 565; + this.state = 567; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2178,70 +2180,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 566; + this.state = 568; this.match(FlinkSqlParser.KW_WITH); - this.state = 567; + this.state = 569; this.dtFilePath(); - this.state = 568; + this.state = 570; this.match(FlinkSqlParser.KW_RENAME); - this.state = 569; + this.state = 571; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 571; + this.state = 573; this.match(FlinkSqlParser.KW_ADD); - this.state = 572; + this.state = 574; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 573; + this.state = 575; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 574; + this.state = 576; this.match(FlinkSqlParser.KW_ADD); - this.state = 575; + this.state = 577; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 576; + this.state = 578; this.match(FlinkSqlParser.KW_FILE); - this.state = 577; + this.state = 579; this.match(FlinkSqlParser.KW_WITH); - this.state = 578; + this.state = 580; this.dtFilePath(); - this.state = 579; + this.state = 581; this.match(FlinkSqlParser.KW_RENAME); - this.state = 580; + this.state = 582; this.uid(); - this.state = 581; + this.state = 583; this.match(FlinkSqlParser.KW_KEY); - this.state = 582; + this.state = 584; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 584; + this.state = 586; this.match(FlinkSqlParser.KW_ADD); - this.state = 585; + this.state = 587; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 586; + this.state = 588; this.match(FlinkSqlParser.KW_FILE); - this.state = 587; + this.state = 589; this.match(FlinkSqlParser.KW_WITH); - this.state = 588; + this.state = 590; this.dtFilePath(); - this.state = 589; + this.state = 591; this.match(FlinkSqlParser.KW_FOR); - this.state = 590; + this.state = 592; this.uid(); - this.state = 591; + this.state = 593; this.match(FlinkSqlParser.KW_AS); - this.state = 592; + this.state = 594; this.uid(); } break; @@ -2269,7 +2271,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 600; + this.state = 602; this.errorHandler.sync(this); alternative = 1; do { @@ -2277,17 +2279,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 597; + this.state = 599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 535) { { - this.state = 596; + this.state = 598; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 599; + this.state = 601; this.uid(); } } @@ -2295,7 +2297,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 602; + this.state = 604; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2321,18 +2323,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 606; + this.state = 608; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 604; + this.state = 606; this.simpleCreateTable(); } break; case 2: { - this.state = 605; + this.state = 607; this.createTableAsSelect(); } break; @@ -2361,122 +2363,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 608; - this.match(FlinkSqlParser.KW_CREATE); this.state = 610; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 609; + this.state = 611; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 612; - this.match(FlinkSqlParser.KW_TABLE); this.state = 614; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 613; + this.state = 615; this.ifNotExists(); } } - this.state = 616; + this.state = 618; this.tablePathCreate(); - this.state = 617; + this.state = 619; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 618; + this.state = 620; this.columnOptionDefinition(); - this.state = 623; + this.state = 625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 619; + this.state = 621; this.match(FlinkSqlParser.COMMA); - this.state = 620; + this.state = 622; this.columnOptionDefinition(); } } } - this.state = 625; + this.state = 627; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 628; + this.state = 630; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 626; + this.state = 628; this.match(FlinkSqlParser.COMMA); - this.state = 627; + this.state = 629; this.watermarkDefinition(); } break; } - this.state = 632; + this.state = 634; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 630; + this.state = 632; this.match(FlinkSqlParser.COMMA); - this.state = 631; + this.state = 633; this.tableConstraint(); } break; } - this.state = 636; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 634; + this.state = 636; this.match(FlinkSqlParser.COMMA); - this.state = 635; + this.state = 637; this.selfDefinitionClause(); } } - this.state = 638; + this.state = 640; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 641; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 639; + this.state = 641; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 640; + this.state = 642; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 644; + this.state = 646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 643; + this.state = 645; this.partitionDefinition(); } } - this.state = 646; - this.withOption(); this.state = 648; + this.withOption(); + this.state = 650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 647; + this.state = 649; this.likeDefinition(); } } @@ -2504,32 +2506,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 650; + this.state = 652; this.match(FlinkSqlParser.KW_CREATE); - this.state = 651; - this.match(FlinkSqlParser.KW_TABLE); this.state = 653; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 652; + this.state = 654; this.ifNotExists(); } } - this.state = 655; + this.state = 657; this.tablePathCreate(); - this.state = 656; + this.state = 658; this.withOption(); - this.state = 659; + this.state = 661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 657; + this.state = 659; this.match(FlinkSqlParser.KW_AS); - this.state = 658; + this.state = 660; this.queryStatement(0); } } @@ -2554,27 +2556,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 664; + this.state = 666; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 661; + this.state = 663; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 662; + this.state = 664; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 663; + this.state = 665; this.computedColumnDefinition(); } break; @@ -2601,28 +2603,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 666; + this.state = 668; this.columnNameCreate(); - this.state = 667; - this.columnType(); this.state = 669; + this.columnType(); + this.state = 671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { { - this.state = 668; + this.state = 670; this.columnConstraint(); } } - this.state = 673; + this.state = 675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 671; + this.state = 673; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 672; + this.state = 674; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2647,20 +2649,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 677; + this.state = 679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 675; + this.state = 677; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 676; + this.state = 678; this.expression(); } break; @@ -2684,20 +2686,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 681; + this.state = 683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 679; + this.state = 681; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 680; + this.state = 682; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2719,34 +2721,58 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnNamePath); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 685; + this.uid(); + } + } + 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 columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnNameList); + this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 683; + this.state = 687; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 684; + this.state = 688; this.columnName(); - this.state = 689; + this.state = 693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 685; + this.state = 689; this.match(FlinkSqlParser.COMMA); - this.state = 686; + this.state = 690; this.columnName(); } } - this.state = 691; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 692; + this.state = 696; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2766,10 +2792,10 @@ export class FlinkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnType); + this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 731; + this.state = 735; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2777,7 +2803,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 694; + this.state = 698; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 245)) { @@ -2805,7 +2831,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 695; + this.state = 699; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { @@ -2815,12 +2841,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 697; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 696; + this.state = 700; this.lengthOneDimension(); } } @@ -2830,24 +2856,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 699; + this.state = 703; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 701; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 700; + this.state = 704; this.lengthOneDimension(); } } - this.state = 709; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 436) { { - this.state = 703; + this.state = 707; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 436)) { this.errorHandler.recoverInline(this); @@ -2856,19 +2882,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 705; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 704; + this.state = 708; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 707; + this.state = 711; this.match(FlinkSqlParser.KW_TIME); - this.state = 708; + this.state = 712; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2882,7 +2908,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 711; + this.state = 715; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { @@ -2892,12 +2918,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 713; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 712; + this.state = 716; this.lengthTwoOptionalDimension(); } } @@ -2908,7 +2934,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 715; + this.state = 719; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 232)) { @@ -2918,12 +2944,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 717; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 716; + this.state = 720; this.lengthOneTypeDimension(); } } @@ -2933,14 +2959,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 719; + this.state = 723; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 721; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 720; + this.state = 724; this.mapTypeDimension(); } } @@ -2950,14 +2976,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 723; + this.state = 727; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 725; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 517) { { - this.state = 724; + this.state = 728; this.rowTypeDimension(); } } @@ -2967,14 +2993,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 727; + this.state = 731; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 729; + this.state = 733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 728; + this.state = 732; this.lengthTwoStringDimension(); } } @@ -3001,15 +3027,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 58, FlinkSqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 60, FlinkSqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 733; + this.state = 737; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 734; + this.state = 738; this.decimalLiteral(); - this.state = 735; + this.state = 739; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3029,28 +3055,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 60, FlinkSqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 62, FlinkSqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 741; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 738; + this.state = 742; this.decimalLiteral(); - this.state = 741; + this.state = 745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 739; + this.state = 743; this.match(FlinkSqlParser.COMMA); - this.state = 740; + this.state = 744; this.decimalLiteral(); } } - this.state = 743; + this.state = 747; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3070,28 +3096,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoStringDimension(): LengthTwoStringDimensionContext { let localContext = new LengthTwoStringDimensionContext(this.context, this.state); - this.enterRule(localContext, 62, FlinkSqlParser.RULE_lengthTwoStringDimension); + this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthTwoStringDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 745; + this.state = 749; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 746; + this.state = 750; this.stringLiteral(); - this.state = 749; + this.state = 753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 747; + this.state = 751; this.match(FlinkSqlParser.COMMA); - this.state = 748; + this.state = 752; this.stringLiteral(); } } - this.state = 751; + this.state = 755; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3111,15 +3137,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneTypeDimension(): LengthOneTypeDimensionContext { let localContext = new LengthOneTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthOneTypeDimension); + this.enterRule(localContext, 66, FlinkSqlParser.RULE_lengthOneTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 753; + this.state = 757; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 754; + this.state = 758; this.columnType(); - this.state = 755; + this.state = 759; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3139,21 +3165,21 @@ export class FlinkSqlParser extends SQLParserBase { } public mapTypeDimension(): MapTypeDimensionContext { let localContext = new MapTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 66, FlinkSqlParser.RULE_mapTypeDimension); + this.enterRule(localContext, 68, FlinkSqlParser.RULE_mapTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 757; + this.state = 761; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 758; + this.state = 762; this.columnType(); { - this.state = 759; + this.state = 763; this.match(FlinkSqlParser.COMMA); - this.state = 760; + this.state = 764; this.columnType(); } - this.state = 762; + this.state = 766; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3173,71 +3199,71 @@ export class FlinkSqlParser extends SQLParserBase { } public rowTypeDimension(): RowTypeDimensionContext { let localContext = new RowTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 68, FlinkSqlParser.RULE_rowTypeDimension); + this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 792; + this.state = 796; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 764; + this.state = 768; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 765; + this.state = 769; this.columnName(); - this.state = 766; + this.state = 770; this.columnType(); - this.state = 773; + this.state = 777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 767; + this.state = 771; this.match(FlinkSqlParser.COMMA); - this.state = 768; + this.state = 772; this.columnName(); - this.state = 769; + this.state = 773; this.columnType(); } } - this.state = 775; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 776; + this.state = 780; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 778; + this.state = 782; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 779; + this.state = 783; this.columnName(); - this.state = 780; + this.state = 784; this.columnType(); - this.state = 787; + this.state = 791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 781; + this.state = 785; this.match(FlinkSqlParser.COMMA); - this.state = 782; + this.state = 786; this.columnName(); - this.state = 783; + this.state = 787; this.columnType(); } } - this.state = 789; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 790; + this.state = 794; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3261,40 +3287,40 @@ export class FlinkSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 70, FlinkSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 808; + this.state = 812; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 796; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 794; + this.state = 798; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 795; + this.state = 799; this.constraintName(); } } - this.state = 798; + this.state = 802; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 799; + this.state = 803; this.match(FlinkSqlParser.KW_KEY); - this.state = 802; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 800; + this.state = 804; this.match(FlinkSqlParser.KW_NOT); - this.state = 801; + this.state = 805; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3305,17 +3331,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 805; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 804; + this.state = 808; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 807; + this.state = 811; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3339,35 +3365,35 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataColumnDefinition(): MetadataColumnDefinitionContext { let localContext = new MetadataColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 72, FlinkSqlParser.RULE_metadataColumnDefinition); + this.enterRule(localContext, 74, FlinkSqlParser.RULE_metadataColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 810; + this.state = 814; this.columnNameCreate(); - this.state = 811; + this.state = 815; this.columnType(); - this.state = 812; + this.state = 816; this.match(FlinkSqlParser.KW_METADATA); - this.state = 815; + this.state = 819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 813; + this.state = 817; this.match(FlinkSqlParser.KW_FROM); - this.state = 814; + this.state = 818; this.metadataKey(); } } - this.state = 818; + this.state = 822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 424) { { - this.state = 817; + this.state = 821; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3390,11 +3416,11 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataKey(): MetadataKeyContext { let localContext = new MetadataKeyContext(this.context, this.state); - this.enterRule(localContext, 74, FlinkSqlParser.RULE_metadataKey); + this.enterRule(localContext, 76, FlinkSqlParser.RULE_metadataKey); try { this.enterOuterAlt(localContext, 1); { - this.state = 820; + this.state = 824; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3414,25 +3440,25 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnDefinition(): ComputedColumnDefinitionContext { let localContext = new ComputedColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 76, FlinkSqlParser.RULE_computedColumnDefinition); + this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 822; + this.state = 826; this.columnNameCreate(); - this.state = 823; + this.state = 827; this.match(FlinkSqlParser.KW_AS); - this.state = 824; + this.state = 828; this.computedColumnExpression(); - this.state = 827; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 825; + this.state = 829; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 826; + this.state = 830; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3455,11 +3481,11 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnExpression(): ComputedColumnExpressionContext { let localContext = new ComputedColumnExpressionContext(this.context, this.state); - this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnExpression); + this.enterRule(localContext, 80, FlinkSqlParser.RULE_computedColumnExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 833; this.expression(); } } @@ -3479,19 +3505,19 @@ export class FlinkSqlParser extends SQLParserBase { } public watermarkDefinition(): WatermarkDefinitionContext { let localContext = new WatermarkDefinitionContext(this.context, this.state); - this.enterRule(localContext, 80, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localContext, 82, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 831; + this.state = 835; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 832; + this.state = 836; this.match(FlinkSqlParser.KW_FOR); - this.state = 833; + this.state = 837; this.columnName(); - this.state = 834; + this.state = 838; this.match(FlinkSqlParser.KW_AS); - this.state = 835; + this.state = 839; this.expression(); } } @@ -3511,32 +3537,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 82, FlinkSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 84, FlinkSqlParser.RULE_tableConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 839; + this.state = 843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 837; + this.state = 841; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 838; + this.state = 842; this.constraintName(); } } - this.state = 841; + this.state = 845; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 842; + this.state = 846; this.match(FlinkSqlParser.KW_KEY); - this.state = 843; + this.state = 847; this.columnNameList(); - this.state = 844; + this.state = 848; this.match(FlinkSqlParser.KW_NOT); - this.state = 845; + this.state = 849; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3556,11 +3582,11 @@ export class FlinkSqlParser extends SQLParserBase { } public constraintName(): ConstraintNameContext { let localContext = new ConstraintNameContext(this.context, this.state); - this.enterRule(localContext, 84, FlinkSqlParser.RULE_constraintName); + this.enterRule(localContext, 86, FlinkSqlParser.RULE_constraintName); try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 851; this.identifier(); } } @@ -3580,15 +3606,15 @@ export class FlinkSqlParser extends SQLParserBase { } public selfDefinitionClause(): SelfDefinitionClauseContext { let localContext = new SelfDefinitionClauseContext(this.context, this.state); - this.enterRule(localContext, 86, FlinkSqlParser.RULE_selfDefinitionClause); + this.enterRule(localContext, 88, FlinkSqlParser.RULE_selfDefinitionClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 849; + this.state = 853; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 850; + this.state = 854; this.match(FlinkSqlParser.KW_FOR); - this.state = 851; + this.state = 855; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3608,15 +3634,15 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionDefinition(): PartitionDefinitionContext { let localContext = new PartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 88, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localContext, 90, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 857; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 854; + this.state = 858; this.match(FlinkSqlParser.KW_BY); - this.state = 855; + this.state = 859; this.transformList(); } } @@ -3636,32 +3662,32 @@ export class FlinkSqlParser extends SQLParserBase { } public transformList(): TransformListContext { let localContext = new TransformListContext(this.context, this.state); - this.enterRule(localContext, 90, FlinkSqlParser.RULE_transformList); + this.enterRule(localContext, 92, FlinkSqlParser.RULE_transformList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 857; + this.state = 861; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 858; + this.state = 862; this.transform(); - this.state = 863; + this.state = 867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 859; + this.state = 863; this.match(FlinkSqlParser.COMMA); - this.state = 860; + this.state = 864; this.transform(); } } - this.state = 865; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 866; + this.state = 870; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3681,17 +3707,17 @@ export class FlinkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 92, FlinkSqlParser.RULE_transform); + this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 880; + this.state = 884; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 868; + this.state = 872; this.columnName(); } break; @@ -3699,27 +3725,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 869; + this.state = 873; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 870; + this.state = 874; this.transformArgument(); - this.state = 875; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 871; + this.state = 875; this.match(FlinkSqlParser.COMMA); - this.state = 872; + this.state = 876; this.transformArgument(); } } - this.state = 877; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 878; + this.state = 882; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3741,22 +3767,22 @@ export class FlinkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 94, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 884; + this.state = 888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 882; + this.state = 886; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 883; + this.state = 887; this.constant(); } break; @@ -3778,37 +3804,37 @@ export class FlinkSqlParser extends SQLParserBase { } public likeDefinition(): LikeDefinitionContext { let localContext = new LikeDefinitionContext(this.context, this.state); - this.enterRule(localContext, 96, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 890; this.match(FlinkSqlParser.KW_LIKE); - this.state = 887; + this.state = 891; this.tablePath(); - this.state = 896; + this.state = 900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 888; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 892; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 267 || _la === 456 || _la === 463) { { { - this.state = 889; + this.state = 893; this.likeOption(); } } - this.state = 894; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 895; + this.state = 899; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3831,17 +3857,17 @@ export class FlinkSqlParser extends SQLParserBase { } public likeOption(): LikeOptionContext { let localContext = new LikeOptionContext(this.context, this.state); - this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeOption); + this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 902; + this.state = 906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 898; + this.state = 902; _la = this.tokenStream.LA(1); if(!(_la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3850,7 +3876,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 899; + this.state = 903; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 271 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -3866,7 +3892,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 900; + this.state = 904; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3875,7 +3901,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 901; + this.state = 905; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 459 || _la === 478)) { this.errorHandler.recoverInline(this); @@ -3905,17 +3931,17 @@ export class FlinkSqlParser extends SQLParserBase { } public createCatalog(): CreateCatalogContext { let localContext = new CreateCatalogContext(this.context, this.state); - this.enterRule(localContext, 100, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localContext, 102, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localContext, 1); { - this.state = 904; + this.state = 908; this.match(FlinkSqlParser.KW_CREATE); - this.state = 905; + this.state = 909; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 906; + this.state = 910; this.catalogPathCreate(); - this.state = 907; + this.state = 911; this.withOption(); } } @@ -3935,40 +3961,40 @@ export class FlinkSqlParser extends SQLParserBase { } public createDatabase(): CreateDatabaseContext { let localContext = new CreateDatabaseContext(this.context, this.state); - this.enterRule(localContext, 102, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localContext, 104, FlinkSqlParser.RULE_createDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 909; + this.state = 913; this.match(FlinkSqlParser.KW_CREATE); - this.state = 910; + this.state = 914; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 912; + this.state = 916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 911; + this.state = 915; this.ifNotExists(); } } - this.state = 914; + this.state = 918; this.databasePathCreate(); - this.state = 917; + this.state = 921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 915; + this.state = 919; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 916; + this.state = 920; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 919; + this.state = 923; this.withOption(); } } @@ -3988,62 +4014,62 @@ export class FlinkSqlParser extends SQLParserBase { } public createView(): CreateViewContext { let localContext = new CreateViewContext(this.context, this.state); - this.enterRule(localContext, 104, FlinkSqlParser.RULE_createView); + this.enterRule(localContext, 106, FlinkSqlParser.RULE_createView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 921; + this.state = 925; this.match(FlinkSqlParser.KW_CREATE); - this.state = 923; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 922; + this.state = 926; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 925; + this.state = 929; this.match(FlinkSqlParser.KW_VIEW); - this.state = 927; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 926; + this.state = 930; this.ifNotExists(); } } - this.state = 929; + this.state = 933; this.viewPathCreate(); - this.state = 931; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 930; + this.state = 934; this.columnNameList(); } } - this.state = 935; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 933; + this.state = 937; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 934; + this.state = 938; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 937; + this.state = 941; this.match(FlinkSqlParser.KW_AS); - this.state = 938; + this.state = 942; this.queryStatement(0); } } @@ -4063,57 +4089,57 @@ export class FlinkSqlParser extends SQLParserBase { } public createFunction(): CreateFunctionContext { let localContext = new CreateFunctionContext(this.context, this.state); - this.enterRule(localContext, 106, FlinkSqlParser.RULE_createFunction); + this.enterRule(localContext, 108, FlinkSqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 940; - this.match(FlinkSqlParser.KW_CREATE); this.state = 944; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 948; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 941; + this.state = 945; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 942; + this.state = 946; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 943; + this.state = 947; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 946; + this.state = 950; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 948; + this.state = 952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 947; + this.state = 951; this.ifNotExists(); } } - this.state = 950; + this.state = 954; this.functionNameCreate(); - this.state = 951; + this.state = 955; this.match(FlinkSqlParser.KW_AS); - this.state = 952; + this.state = 956; this.identifier(); - this.state = 955; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 953; + this.state = 957; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 954; + this.state = 958; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4125,12 +4151,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 958; + this.state = 962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413) { { - this.state = 957; + this.state = 961; this.usingClause(); } } @@ -4153,32 +4179,32 @@ export class FlinkSqlParser extends SQLParserBase { } public usingClause(): UsingClauseContext { let localContext = new UsingClauseContext(this.context, this.state); - this.enterRule(localContext, 108, FlinkSqlParser.RULE_usingClause); + this.enterRule(localContext, 110, FlinkSqlParser.RULE_usingClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 964; this.match(FlinkSqlParser.KW_USING); - this.state = 961; + this.state = 965; this.match(FlinkSqlParser.KW_JAR); - this.state = 962; + this.state = 966; this.jarFileName(); - this.state = 968; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 963; + this.state = 967; this.match(FlinkSqlParser.COMMA); - this.state = 964; + this.state = 968; this.match(FlinkSqlParser.KW_JAR); - this.state = 965; + this.state = 969; this.jarFileName(); } } - this.state = 970; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4200,11 +4226,11 @@ export class FlinkSqlParser extends SQLParserBase { } public jarFileName(): JarFileNameContext { let localContext = new JarFileNameContext(this.context, this.state); - this.enterRule(localContext, 110, FlinkSqlParser.RULE_jarFileName); + this.enterRule(localContext, 112, FlinkSqlParser.RULE_jarFileName); try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 975; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4224,57 +4250,57 @@ export class FlinkSqlParser extends SQLParserBase { } public alterTable(): AlterTableContext { let localContext = new AlterTableContext(this.context, this.state); - this.enterRule(localContext, 112, FlinkSqlParser.RULE_alterTable); + this.enterRule(localContext, 114, FlinkSqlParser.RULE_alterTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 973; + this.state = 977; this.match(FlinkSqlParser.KW_ALTER); - this.state = 974; + this.state = 978; this.match(FlinkSqlParser.KW_TABLE); - this.state = 976; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 975; + this.state = 979; this.ifExists(); } } - this.state = 978; + this.state = 982; this.tablePath(); - this.state = 984; + this.state = 988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 979; + this.state = 983; this.renameDefinition(); } break; case 2: { - this.state = 980; + this.state = 984; this.setKeyValueDefinition(); } break; case 3: { - this.state = 981; + this.state = 985; this.addConstraint(); } break; case 4: { - this.state = 982; + this.state = 986; this.dropConstraint(); } break; case 5: { - this.state = 983; + this.state = 987; this.addUnique(); } break; @@ -4297,26 +4323,26 @@ export class FlinkSqlParser extends SQLParserBase { } public renameDefinition(): RenameDefinitionContext { let localContext = new RenameDefinitionContext(this.context, this.state); - this.enterRule(localContext, 114, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localContext, 116, FlinkSqlParser.RULE_renameDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 986; + this.state = 990; this.match(FlinkSqlParser.KW_RENAME); - this.state = 988; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 987; + this.state = 991; this.uid(); } } - this.state = 990; + this.state = 994; this.match(FlinkSqlParser.KW_TO); - this.state = 991; + this.state = 995; this.uid(); } } @@ -4336,13 +4362,13 @@ export class FlinkSqlParser extends SQLParserBase { } public setKeyValueDefinition(): SetKeyValueDefinitionContext { let localContext = new SetKeyValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 116, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localContext, 118, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 993; + this.state = 997; this.match(FlinkSqlParser.KW_SET); - this.state = 994; + this.state = 998; this.tablePropertyList(); } } @@ -4362,29 +4388,29 @@ export class FlinkSqlParser extends SQLParserBase { } public addConstraint(): AddConstraintContext { let localContext = new AddConstraintContext(this.context, this.state); - this.enterRule(localContext, 118, FlinkSqlParser.RULE_addConstraint); + this.enterRule(localContext, 120, FlinkSqlParser.RULE_addConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 996; + this.state = 1000; this.match(FlinkSqlParser.KW_ADD); - this.state = 997; + this.state = 1001; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 998; + this.state = 1002; this.constraintName(); - this.state = 999; + this.state = 1003; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1000; + this.state = 1004; this.match(FlinkSqlParser.KW_KEY); - this.state = 1001; + this.state = 1005; this.columnNameList(); - this.state = 1003; + this.state = 1007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1002; + this.state = 1006; this.notForced(); } } @@ -4407,15 +4433,15 @@ export class FlinkSqlParser extends SQLParserBase { } public dropConstraint(): DropConstraintContext { let localContext = new DropConstraintContext(this.context, this.state); - this.enterRule(localContext, 120, FlinkSqlParser.RULE_dropConstraint); + this.enterRule(localContext, 122, FlinkSqlParser.RULE_dropConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 1005; + this.state = 1009; this.match(FlinkSqlParser.KW_DROP); - this.state = 1006; + this.state = 1010; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1007; + this.state = 1011; this.constraintName(); } } @@ -4435,15 +4461,15 @@ export class FlinkSqlParser extends SQLParserBase { } public addUnique(): AddUniqueContext { let localContext = new AddUniqueContext(this.context, this.state); - this.enterRule(localContext, 122, FlinkSqlParser.RULE_addUnique); + this.enterRule(localContext, 124, FlinkSqlParser.RULE_addUnique); try { this.enterOuterAlt(localContext, 1); { - this.state = 1009; + this.state = 1013; this.match(FlinkSqlParser.KW_ADD); - this.state = 1010; + this.state = 1014; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1011; + this.state = 1015; this.columnNameList(); } } @@ -4463,13 +4489,13 @@ export class FlinkSqlParser extends SQLParserBase { } public notForced(): NotForcedContext { let localContext = new NotForcedContext(this.context, this.state); - this.enterRule(localContext, 124, FlinkSqlParser.RULE_notForced); + this.enterRule(localContext, 126, FlinkSqlParser.RULE_notForced); try { this.enterOuterAlt(localContext, 1); { - this.state = 1013; + this.state = 1017; this.match(FlinkSqlParser.KW_NOT); - this.state = 1014; + this.state = 1018; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4489,30 +4515,30 @@ export class FlinkSqlParser extends SQLParserBase { } public alterView(): AlterViewContext { let localContext = new AlterViewContext(this.context, this.state); - this.enterRule(localContext, 126, FlinkSqlParser.RULE_alterView); + this.enterRule(localContext, 128, FlinkSqlParser.RULE_alterView); try { this.enterOuterAlt(localContext, 1); { - this.state = 1016; + this.state = 1020; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1017; + this.state = 1021; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1018; - this.viewPath(); this.state = 1022; + this.viewPath(); + this.state = 1026; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1019; + this.state = 1023; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1020; + this.state = 1024; this.match(FlinkSqlParser.KW_AS); - this.state = 1021; + this.state = 1025; this.queryStatement(0); } break; @@ -4537,17 +4563,17 @@ export class FlinkSqlParser extends SQLParserBase { } public alterDatabase(): AlterDatabaseContext { let localContext = new AlterDatabaseContext(this.context, this.state); - this.enterRule(localContext, 128, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localContext, 130, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localContext, 1); { - this.state = 1024; + this.state = 1028; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1025; + this.state = 1029; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1026; + this.state = 1030; this.databasePath(); - this.state = 1027; + this.state = 1031; this.setKeyValueDefinition(); } } @@ -4567,57 +4593,57 @@ export class FlinkSqlParser extends SQLParserBase { } public alterFunction(): AlterFunctionContext { let localContext = new AlterFunctionContext(this.context, this.state); - this.enterRule(localContext, 130, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localContext, 132, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1029; - this.match(FlinkSqlParser.KW_ALTER); this.state = 1033; + this.match(FlinkSqlParser.KW_ALTER); + this.state = 1037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1030; + this.state = 1034; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1031; + this.state = 1035; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1032; + this.state = 1036; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1035; + this.state = 1039; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1037; + this.state = 1041; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1036; + this.state = 1040; this.ifExists(); } break; } - this.state = 1039; + this.state = 1043; this.functionName(); - this.state = 1040; + this.state = 1044; this.match(FlinkSqlParser.KW_AS); - this.state = 1041; + this.state = 1045; this.identifier(); - this.state = 1044; + this.state = 1048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1042; + this.state = 1046; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1043; + this.state = 1047; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4647,26 +4673,26 @@ export class FlinkSqlParser extends SQLParserBase { } public dropCatalog(): DropCatalogContext { let localContext = new DropCatalogContext(this.context, this.state); - this.enterRule(localContext, 132, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localContext, 134, FlinkSqlParser.RULE_dropCatalog); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1046; + this.state = 1050; this.match(FlinkSqlParser.KW_DROP); - this.state = 1047; + this.state = 1051; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1049; + this.state = 1053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1048; + this.state = 1052; this.ifExists(); } } - this.state = 1051; + this.state = 1055; this.catalogPath(); } } @@ -4686,36 +4712,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropTable(): DropTableContext { let localContext = new DropTableContext(this.context, this.state); - this.enterRule(localContext, 134, FlinkSqlParser.RULE_dropTable); + this.enterRule(localContext, 136, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1053; + this.state = 1057; this.match(FlinkSqlParser.KW_DROP); - this.state = 1055; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1054; + this.state = 1058; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1057; + this.state = 1061; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1059; + this.state = 1063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1058; + this.state = 1062; this.ifExists(); } } - this.state = 1061; + this.state = 1065; this.tablePath(); } } @@ -4735,33 +4761,33 @@ export class FlinkSqlParser extends SQLParserBase { } public dropDatabase(): DropDatabaseContext { let localContext = new DropDatabaseContext(this.context, this.state); - this.enterRule(localContext, 136, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1063; + this.state = 1067; this.match(FlinkSqlParser.KW_DROP); - this.state = 1064; + this.state = 1068; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1066; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1065; + this.state = 1069; this.ifExists(); } } - this.state = 1068; + this.state = 1072; this.databasePath(); - this.state = 1070; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441 || _la === 491) { { - this.state = 1069; + this.state = 1073; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 491)) { @@ -4792,36 +4818,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropView(): DropViewContext { let localContext = new DropViewContext(this.context, this.state); - this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropView); + this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1072; + this.state = 1076; this.match(FlinkSqlParser.KW_DROP); - this.state = 1074; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1073; + this.state = 1077; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1076; + this.state = 1080; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1078; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1077; + this.state = 1081; this.ifExists(); } } - this.state = 1080; + this.state = 1084; this.viewPath(); } } @@ -4841,43 +4867,43 @@ export class FlinkSqlParser extends SQLParserBase { } public dropFunction(): DropFunctionContext { let localContext = new DropFunctionContext(this.context, this.state); - this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localContext, 142, FlinkSqlParser.RULE_dropFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1082; - this.match(FlinkSqlParser.KW_DROP); this.state = 1086; + this.match(FlinkSqlParser.KW_DROP); + this.state = 1090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1083; + this.state = 1087; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1084; + this.state = 1088; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1085; + this.state = 1089; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1088; + this.state = 1092; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1090; + this.state = 1094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1089; + this.state = 1093; this.ifExists(); } break; } - this.state = 1092; + this.state = 1096; this.functionName(); } } @@ -4897,27 +4923,27 @@ export class FlinkSqlParser extends SQLParserBase { } public insertStatement(): InsertStatementContext { let localContext = new InsertStatementContext(this.context, this.state); - this.enterRule(localContext, 142, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1101; + this.state = 1105; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1095; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1094; + this.state = 1098; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1097; + this.state = 1101; this.insertSimpleStatement(); } } @@ -4925,7 +4951,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1098; + this.state = 1102; this.insertMulStatementCompatibility(); } break; @@ -4933,9 +4959,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1099; + this.state = 1103; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1100; + this.state = 1104; this.insertMulStatement(); } } @@ -4958,14 +4984,14 @@ export class FlinkSqlParser extends SQLParserBase { } public insertSimpleStatement(): InsertSimpleStatementContext { let localContext = new InsertSimpleStatementContext(this.context, this.state); - this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1103; + this.state = 1107; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1104; + this.state = 1108; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 266)) { this.errorHandler.recoverInline(this); @@ -4974,40 +5000,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1105; + this.state = 1109; this.tablePath(); - this.state = 1114; + this.state = 1118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1107; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1106; + this.state = 1110; this.insertPartitionDefinition(); } } - this.state = 1110; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1109; + this.state = 1113; this.columnNameList(); } break; } - this.state = 1112; + this.state = 1116; this.queryStatement(0); } break; case 2: { - this.state = 1113; + this.state = 1117; this.valuesDefinition(); } break; @@ -5030,13 +5056,13 @@ export class FlinkSqlParser extends SQLParserBase { } public insertPartitionDefinition(): InsertPartitionDefinitionContext { let localContext = new InsertPartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localContext, 148, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1116; + this.state = 1120; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1117; + this.state = 1121; this.tablePropertyList(); } } @@ -5056,28 +5082,28 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesDefinition(): ValuesDefinitionContext { let localContext = new ValuesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 148, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1119; + this.state = 1123; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1120; + this.state = 1124; this.valuesRowDefinition(); - this.state = 1125; + this.state = 1129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1121; + this.state = 1125; this.match(FlinkSqlParser.COMMA); - this.state = 1122; + this.state = 1126; this.valuesRowDefinition(); } } - this.state = 1127; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5099,32 +5125,32 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesRowDefinition(): ValuesRowDefinitionContext { let localContext = new ValuesRowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localContext, 152, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1128; + this.state = 1132; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1129; + this.state = 1133; this.constant(); - this.state = 1134; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1130; + this.state = 1134; this.match(FlinkSqlParser.COMMA); - this.state = 1131; + this.state = 1135; this.constant(); } } - this.state = 1136; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1137; + this.state = 1141; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5144,36 +5170,36 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localContext = new InsertMulStatementCompatibilityContext(this.context, this.state); - this.enterRule(localContext, 152, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localContext, 154, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1139; + this.state = 1143; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1140; + this.state = 1144; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1141; + this.state = 1145; this.match(FlinkSqlParser.KW_SET); - this.state = 1142; - this.match(FlinkSqlParser.SEMICOLON); this.state = 1146; + this.match(FlinkSqlParser.SEMICOLON); + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1143; + this.state = 1147; this.insertSimpleStatement(); - this.state = 1144; + this.state = 1148; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1148; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1150; + this.state = 1154; this.match(FlinkSqlParser.KW_END); } } @@ -5193,34 +5219,34 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatement(): InsertMulStatementContext { let localContext = new InsertMulStatementContext(this.context, this.state); - this.enterRule(localContext, 154, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localContext, 156, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1152; + this.state = 1156; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1153; + this.state = 1157; this.match(FlinkSqlParser.KW_SET); - this.state = 1154; - this.match(FlinkSqlParser.KW_BEGIN); this.state = 1158; + this.match(FlinkSqlParser.KW_BEGIN); + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1155; + this.state = 1159; this.insertSimpleStatement(); - this.state = 1156; + this.state = 1160; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1160; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1162; + this.state = 1166; this.match(FlinkSqlParser.KW_END); } } @@ -5250,60 +5276,60 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryStatementContext(this.context, parentState); let previousContext = localContext; - let _startState = 156; - this.enterRecursionRule(localContext, 156, FlinkSqlParser.RULE_queryStatement, _p); + let _startState = 158; + this.enterRecursionRule(localContext, 158, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1187; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1165; + this.state = 1169; this.valuesClause(); } break; case 2: { - this.state = 1166; + this.state = 1170; this.withClause(); - this.state = 1167; + this.state = 1171; this.queryStatement(5); } break; case 3: { - this.state = 1169; + this.state = 1173; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1170; + this.state = 1174; this.queryStatement(0); - this.state = 1171; + this.state = 1175; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1173; + this.state = 1177; this.selectClause(); - this.state = 1175; + this.state = 1179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1174; + this.state = 1178; this.orderByClause(); } break; } - this.state = 1178; + this.state = 1182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1177; + this.state = 1181; this.limitClause(); } break; @@ -5312,24 +5338,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1180; + this.state = 1184; this.selectStatement(); - this.state = 1182; + this.state = 1186; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1181; + this.state = 1185; this.orderByClause(); } break; } - this.state = 1185; + this.state = 1189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1184; + this.state = 1188; this.limitClause(); } break; @@ -5338,7 +5364,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1203; + this.state = 1207; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5352,11 +5378,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1189; + this.state = 1193; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1190; + this.state = 1194; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 403)) { @@ -5366,34 +5392,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1192; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1191; + this.state = 1195; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1194; + this.state = 1198; localContext._right = this.queryStatement(0); - this.state = 1196; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1195; + this.state = 1199; this.orderByClause(); } break; } - this.state = 1199; + this.state = 1203; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1198; + this.state = 1202; this.limitClause(); } break; @@ -5401,7 +5427,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1205; + this.state = 1209; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -5423,30 +5449,30 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 158, FlinkSqlParser.RULE_valuesClause); + this.enterRule(localContext, 160, FlinkSqlParser.RULE_valuesClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1206; + this.state = 1210; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1207; + this.state = 1211; this.expression(); - this.state = 1212; + this.state = 1216; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1208; + this.state = 1212; this.match(FlinkSqlParser.COMMA); - this.state = 1209; + this.state = 1213; this.expression(); } } } - this.state = 1214; + this.state = 1218; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5468,28 +5494,28 @@ export class FlinkSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 160, FlinkSqlParser.RULE_withClause); + this.enterRule(localContext, 162, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1215; + this.state = 1219; this.match(FlinkSqlParser.KW_WITH); - this.state = 1216; + this.state = 1220; this.withItem(); - this.state = 1221; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1217; + this.state = 1221; this.match(FlinkSqlParser.COMMA); - this.state = 1218; + this.state = 1222; this.withItem(); } } - this.state = 1223; + this.state = 1227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5511,50 +5537,50 @@ export class FlinkSqlParser extends SQLParserBase { } public withItem(): WithItemContext { let localContext = new WithItemContext(this.context, this.state); - this.enterRule(localContext, 162, FlinkSqlParser.RULE_withItem); + this.enterRule(localContext, 164, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1224; + this.state = 1228; this.withItemName(); - this.state = 1236; + this.state = 1240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 1225; + this.state = 1229; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1226; + this.state = 1230; this.columnName(); - this.state = 1231; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1227; + this.state = 1231; this.match(FlinkSqlParser.COMMA); - this.state = 1228; + this.state = 1232; this.columnName(); } } - this.state = 1233; + this.state = 1237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1234; + this.state = 1238; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1238; + this.state = 1242; this.match(FlinkSqlParser.KW_AS); - this.state = 1239; + this.state = 1243; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1240; + this.state = 1244; this.queryStatement(0); - this.state = 1241; + this.state = 1245; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5574,11 +5600,11 @@ export class FlinkSqlParser extends SQLParserBase { } public withItemName(): WithItemNameContext { let localContext = new WithItemNameContext(this.context, this.state); - this.enterRule(localContext, 164, FlinkSqlParser.RULE_withItemName); + this.enterRule(localContext, 166, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1243; + this.state = 1247; this.identifier(); } } @@ -5598,62 +5624,62 @@ export class FlinkSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 166, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1265; + this.state = 1269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1245; + this.state = 1249; this.selectClause(); - this.state = 1247; + this.state = 1251; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1246; + this.state = 1250; this.fromClause(); } break; } - this.state = 1250; + this.state = 1254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1249; + this.state = 1253; this.whereClause(); } break; } - this.state = 1253; + this.state = 1257; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1252; + this.state = 1256; this.groupByClause(); } break; } - this.state = 1256; + this.state = 1260; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1255; + this.state = 1259; this.havingClause(); } break; } - this.state = 1259; + this.state = 1263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1258; + this.state = 1262; this.windowClause(); } break; @@ -5663,11 +5689,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1261; + this.state = 1265; this.selectClause(); - this.state = 1262; + this.state = 1266; this.fromClause(); - this.state = 1263; + this.state = 1267; this.matchRecognizeClause(); } break; @@ -5689,51 +5715,51 @@ export class FlinkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectClause); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1267; + this.state = 1271; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1269; + this.state = 1273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1268; + this.state = 1272; this.setQuantifier(); } break; } - this.state = 1280; + this.state = 1284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1271; + this.state = 1275; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1272; + this.state = 1276; this.projectItemDefinition(); - this.state = 1277; + this.state = 1281; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1273; + this.state = 1277; this.match(FlinkSqlParser.COMMA); - this.state = 1274; + this.state = 1278; this.projectItemDefinition(); } } } - this.state = 1279; + this.state = 1283; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } @@ -5758,40 +5784,40 @@ export class FlinkSqlParser extends SQLParserBase { } public projectItemDefinition(): ProjectItemDefinitionContext { let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1297; + this.state = 1301; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1282; + this.state = 1286; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1283; + this.state = 1287; this.expression(); - this.state = 1288; + this.state = 1292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1285; + this.state = 1289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1284; + this.state = 1288; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1287; + this.state = 1291; this.columnName(); } break; @@ -5801,24 +5827,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1290; + this.state = 1294; this.columnName(); - this.state = 1295; + this.state = 1299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1292; + this.state = 1296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1291; + this.state = 1295; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1294; + this.state = 1298; this.expression(); } break; @@ -5843,38 +5869,38 @@ export class FlinkSqlParser extends SQLParserBase { } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1311; + this.state = 1315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1299; + this.state = 1303; this.primaryExpression(0); - this.state = 1300; + this.state = 1304; this.match(FlinkSqlParser.KW_OVER); - this.state = 1301; + this.state = 1305; this.windowSpec(); - this.state = 1302; + this.state = 1306; this.match(FlinkSqlParser.KW_AS); - this.state = 1303; + this.state = 1307; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1305; + this.state = 1309; this.primaryExpression(0); - this.state = 1306; + this.state = 1310; this.match(FlinkSqlParser.KW_OVER); - this.state = 1307; + this.state = 1311; this.errorCapturingIdentifier(); - this.state = 1308; + this.state = 1312; this.match(FlinkSqlParser.KW_AS); - this.state = 1309; + this.state = 1313; this.identifier(); } break; @@ -5896,13 +5922,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1313; + this.state = 1317; this.match(FlinkSqlParser.KW_FROM); - this.state = 1314; + this.state = 1318; this.tableExpression(0); } } @@ -5932,35 +5958,35 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 176; - this.enterRecursionRule(localContext, 176, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 178; + this.enterRecursionRule(localContext, 178, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 1317; + this.state = 1321; this.tableReference(); - this.state = 1322; + this.state = 1326; 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 = 1318; + this.state = 1322; this.match(FlinkSqlParser.COMMA); - this.state = 1319; + this.state = 1323; this.tableReference(); } } } - this.state = 1324; + this.state = 1328; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } @@ -5968,19 +5994,19 @@ export class FlinkSqlParser extends SQLParserBase { break; case 2: { - this.state = 1325; + this.state = 1329; this.inlineDataValueClause(); } break; case 3: { - this.state = 1326; + this.state = 1330; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1350; + this.state = 1354; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5990,22 +6016,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1348; + this.state = 1352; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1329; + this.state = 1333; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1330; + this.state = 1334; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1331; + this.state = 1335; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1332; + this.state = 1336; this.tableExpression(4); } break; @@ -6013,26 +6039,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1333; + this.state = 1337; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1335; + this.state = 1339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1334; + this.state = 1338; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1338; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1337; + this.state = 1341; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6044,26 +6070,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1341; + this.state = 1345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1340; + this.state = 1344; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1343; + this.state = 1347; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1344; + this.state = 1348; this.tableExpression(0); - this.state = 1346; + this.state = 1350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1345; + this.state = 1349; this.joinCondition(); } break; @@ -6073,7 +6099,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1352; + this.state = 1356; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); } @@ -6095,18 +6121,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 178, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 180, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; + this.state = 1357; this.tablePrimary(); - this.state = 1355; + this.state = 1359; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 1354; + this.state = 1358; this.tableAlias(); } break; @@ -6129,33 +6155,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1386; + this.state = 1390; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1358; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1357; + this.state = 1361; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1360; + this.state = 1364; this.tablePath(); - this.state = 1362; + this.state = 1366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: { - this.state = 1361; + this.state = 1365; this.systemTimePeriod(); } break; @@ -6165,14 +6191,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1364; + this.state = 1368; this.viewPath(); - this.state = 1366; + this.state = 1370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1365; + this.state = 1369; this.systemTimePeriod(); } break; @@ -6182,49 +6208,49 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1368; + this.state = 1372; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1369; + this.state = 1373; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1370; + this.state = 1374; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1371; + this.state = 1375; this.functionCallExpression(); - this.state = 1372; + this.state = 1376; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1375; + this.state = 1379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1374; + this.state = 1378; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1377; + this.state = 1381; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1378; + this.state = 1382; this.queryStatement(0); - this.state = 1379; + this.state = 1383; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1381; + this.state = 1385; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1382; + this.state = 1386; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1383; + this.state = 1387; this.expression(); - this.state = 1384; + this.state = 1388; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6246,19 +6272,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1392; this.match(FlinkSqlParser.KW_FOR); - this.state = 1389; + this.state = 1393; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1390; + this.state = 1394; this.match(FlinkSqlParser.KW_AS); - this.state = 1391; + this.state = 1395; this.match(FlinkSqlParser.KW_OF); - this.state = 1392; + this.state = 1396; this.dateTimeExpression(); } } @@ -6278,11 +6304,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1394; + this.state = 1398; this.expression(); } } @@ -6302,17 +6328,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1396; + this.state = 1400; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1397; + this.state = 1401; this.valuesDefinition(); - this.state = 1398; + this.state = 1402; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1399; + this.state = 1403; this.tableAlias(); } } @@ -6332,17 +6358,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFClause(): WindowTVFClauseContext { let localContext = new WindowTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_windowTVFClause); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_windowTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1401; + this.state = 1405; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1402; + this.state = 1406; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1403; + this.state = 1407; this.windowTVFExpression(); - this.state = 1404; + this.state = 1408; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6362,34 +6388,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExpression(): WindowTVFExpressionContext { let localContext = new WindowTVFExpressionContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_windowTVFExpression); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1410; this.windowTVFName(); - this.state = 1407; + this.state = 1411; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1408; + this.state = 1412; this.windowTVFParam(); - this.state = 1413; + this.state = 1417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1409; + this.state = 1413; this.match(FlinkSqlParser.COMMA); - this.state = 1410; + this.state = 1414; this.windowTVFParam(); } } - this.state = 1415; + this.state = 1419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1416; + this.state = 1420; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6409,12 +6435,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFName(): WindowTVFNameContext { let localContext = new WindowTVFNameContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFName); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1418; + this.state = 1422; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6441,66 +6467,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1435; + this.state = 1439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1420; + this.state = 1424; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1421; + this.state = 1425; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1422; + this.state = 1426; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1423; + this.state = 1427; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1424; + this.state = 1428; this.match(FlinkSqlParser.KW_DATA); - this.state = 1425; + this.state = 1429; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1426; + this.state = 1430; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1427; + this.state = 1431; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1428; + this.state = 1432; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1429; + this.state = 1433; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1430; + this.state = 1434; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1431; + this.state = 1435; this.timeIntervalParamName(); - this.state = 1432; + this.state = 1436; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1433; + this.state = 1437; this.timeIntervalExpression(); } break; @@ -6522,12 +6548,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1437; + this.state = 1441; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6554,17 +6580,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1439; + this.state = 1443; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1440; + this.state = 1444; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1441; + this.state = 1445; this.columnName(); - this.state = 1442; + this.state = 1446; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6584,26 +6610,26 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1448; + this.state = 1452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1444; + this.state = 1448; this.match(FlinkSqlParser.KW_ON); - this.state = 1445; + this.state = 1449; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1446; + this.state = 1450; this.match(FlinkSqlParser.KW_USING); - this.state = 1447; + this.state = 1451; this.columnNameList(); } break; @@ -6627,13 +6653,13 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1450; + this.state = 1454; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1451; + this.state = 1455; this.booleanExpression(0); } } @@ -6653,32 +6679,32 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1453; + this.state = 1457; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1454; + this.state = 1458; this.match(FlinkSqlParser.KW_BY); - this.state = 1455; + this.state = 1459; this.groupItemDefinition(); - this.state = 1460; + this.state = 1464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1456; + this.state = 1460; this.match(FlinkSqlParser.COMMA); - this.state = 1457; + this.state = 1461; this.groupItemDefinition(); } } } - this.state = 1462; + this.state = 1466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } @@ -6700,124 +6726,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1503; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1467; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1464; + this.state = 1468; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1465; + this.state = 1469; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1466; + this.state = 1470; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1467; + this.state = 1471; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1468; + this.state = 1472; this.expression(); - this.state = 1473; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1469; + this.state = 1473; this.match(FlinkSqlParser.COMMA); - this.state = 1470; + this.state = 1474; this.expression(); } } - this.state = 1475; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1476; + this.state = 1480; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1478; + this.state = 1482; this.groupingSetsNotationName(); - this.state = 1479; + this.state = 1483; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1480; + this.state = 1484; this.expression(); - this.state = 1485; + this.state = 1489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1481; + this.state = 1485; this.match(FlinkSqlParser.COMMA); - this.state = 1482; + this.state = 1486; this.expression(); } } - this.state = 1487; + this.state = 1491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1488; + this.state = 1492; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1490; + this.state = 1494; this.groupingSets(); - this.state = 1491; + this.state = 1495; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1492; + this.state = 1496; this.groupItemDefinition(); - this.state = 1497; + this.state = 1501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1493; + this.state = 1497; this.match(FlinkSqlParser.COMMA); - this.state = 1494; + this.state = 1498; this.groupItemDefinition(); } } - this.state = 1499; + this.state = 1503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1500; + this.state = 1504; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1502; + this.state = 1506; this.expression(); } break; @@ -6839,13 +6865,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1509; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1506; + this.state = 1510; this.match(FlinkSqlParser.KW_SETS); } } @@ -6865,12 +6891,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotationName(): GroupingSetsNotationNameContext { let localContext = new GroupingSetsNotationNameContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSetsNotationName); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupingSetsNotationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1508; + this.state = 1512; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -6897,21 +6923,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1510; + this.state = 1514; this.groupWindowFunctionName(); - this.state = 1511; + this.state = 1515; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1512; + this.state = 1516; this.timeAttrColumn(); - this.state = 1513; + this.state = 1517; this.match(FlinkSqlParser.COMMA); - this.state = 1514; + this.state = 1518; this.timeIntervalExpression(); - this.state = 1515; + this.state = 1519; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6931,12 +6957,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1521; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6963,11 +6989,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1523; this.uid(); } } @@ -6987,13 +7013,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1521; + this.state = 1525; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1522; + this.state = 1526; this.booleanExpression(0); } } @@ -7013,30 +7039,30 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1524; + this.state = 1528; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1525; + this.state = 1529; this.namedWindow(); - this.state = 1530; + this.state = 1534; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1526; + this.state = 1530; this.match(FlinkSqlParser.COMMA); - this.state = 1527; + this.state = 1531; this.namedWindow(); } } } - this.state = 1532; + this.state = 1536; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); } @@ -7058,15 +7084,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1533; + this.state = 1537; localContext._name = this.errorCapturingIdentifier(); - this.state = 1534; + this.state = 1538; this.match(FlinkSqlParser.KW_AS); - this.state = 1535; + this.state = 1539; this.windowSpec(); } } @@ -7086,54 +7112,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1538; + this.state = 1542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1537; + this.state = 1541; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1540; + this.state = 1544; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1542; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1541; + this.state = 1545; this.partitionByClause(); } } - this.state = 1545; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1544; + this.state = 1548; this.orderByClause(); } } - this.state = 1548; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1547; + this.state = 1551; this.windowFrame(); } } - this.state = 1550; + this.state = 1554; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7153,95 +7179,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1552; + this.state = 1556; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1553; + this.state = 1557; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1555; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1554; + this.state = 1558; this.partitionByClause(); } } - this.state = 1558; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1557; + this.state = 1561; this.orderByClause(); } } - this.state = 1561; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1560; + this.state = 1564; this.measuresClause(); } } - this.state = 1564; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1563; + this.state = 1567; this.outputMode(); } } - this.state = 1567; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1566; + this.state = 1570; this.afterMatchStrategy(); } } - this.state = 1570; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1569; + this.state = 1573; this.patternDefinition(); } } - this.state = 1572; + this.state = 1576; this.patternVariablesDefinition(); - this.state = 1573; + this.state = 1577; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1578; + this.state = 1582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1575; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1574; + this.state = 1578; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1577; + this.state = 1581; this.identifier(); } break; @@ -7264,32 +7290,32 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_orderByClause); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1584; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1581; + this.state = 1585; this.match(FlinkSqlParser.KW_BY); - this.state = 1582; + this.state = 1586; this.orderItemDefinition(); - this.state = 1587; + this.state = 1591; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1583; + this.state = 1587; this.match(FlinkSqlParser.COMMA); - this.state = 1584; + this.state = 1588; this.orderItemDefinition(); } } } - this.state = 1589; + this.state = 1593; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); } @@ -7311,19 +7337,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefinition(): OrderItemDefinitionContext { let localContext = new OrderItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderItemDefinition); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_orderItemDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1594; this.columnName(); - this.state = 1592; + this.state = 1596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1591; + this.state = 1595; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7336,14 +7362,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1596; + this.state = 1600; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1594; + this.state = 1598; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1595; + this.state = 1599; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7374,18 +7400,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1598; + this.state = 1602; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1601; + this.state = 1605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1599; + this.state = 1603; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7548,7 +7574,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1600; + this.state = 1604; localContext._limit = this.expression(); } break; @@ -7573,58 +7599,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1603; + this.state = 1607; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1604; + this.state = 1608; this.match(FlinkSqlParser.KW_BY); - this.state = 1607; + this.state = 1611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 1605; + this.state = 1609; this.columnName(); } break; case 2: { - this.state = 1606; + this.state = 1610; this.primaryExpression(0); } break; } - this.state = 1616; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1609; + this.state = 1613; this.match(FlinkSqlParser.COMMA); - this.state = 1612; + this.state = 1616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1610; + this.state = 1614; this.columnName(); } break; case 2: { - this.state = 1611; + this.state = 1615; this.primaryExpression(0); } break; } } } - this.state = 1618; + this.state = 1622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7646,16 +7672,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1635; + this.state = 1639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1619; + this.state = 1623; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7664,7 +7690,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1620; + this.state = 1624; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7673,7 +7699,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1621; + this.state = 1625; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7682,15 +7708,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1622; + this.state = 1626; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1623; + this.state = 1627; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1624; + this.state = 1628; this.match(FlinkSqlParser.COMMA); - this.state = 1625; + this.state = 1629; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1626; + this.state = 1630; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7699,13 +7725,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1627; + this.state = 1631; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1628; + this.state = 1632; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1629; + this.state = 1633; this.match(FlinkSqlParser.COMMA); - this.state = 1630; + this.state = 1634; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7714,13 +7740,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1631; + this.state = 1635; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1632; + this.state = 1636; this.match(FlinkSqlParser.COMMA); - this.state = 1633; + this.state = 1637; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1634; + this.state = 1638; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7743,28 +7769,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1637; + this.state = 1641; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1638; + this.state = 1642; this.projectItemDefinition(); - this.state = 1643; + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1639; + this.state = 1643; this.match(FlinkSqlParser.COMMA); - this.state = 1640; + this.state = 1644; this.projectItemDefinition(); } } - this.state = 1645; + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7786,37 +7812,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefinition(): PatternDefinitionContext { let localContext = new PatternDefinitionContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_patternDefinition); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1646; + this.state = 1650; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1647; + this.state = 1651; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1649; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1648; + this.state = 1652; this.patternVariable(); } } - this.state = 1651; + this.state = 1655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1653; + this.state = 1657; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1655; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1654; + this.state = 1658; this.withinClause(); } } @@ -7839,19 +7865,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1661; this.unquotedIdentifier(); - this.state = 1659; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1658; + this.state = 1662; this.quantifiers(); } } @@ -7874,34 +7900,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_outputMode); try { - this.state = 1669; + this.state = 1673; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1665; this.match(FlinkSqlParser.KW_ALL); - this.state = 1662; + this.state = 1666; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1663; + this.state = 1667; this.match(FlinkSqlParser.KW_PER); - this.state = 1664; + this.state = 1668; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1665; + this.state = 1669; this.match(FlinkSqlParser.KW_ONE); - this.state = 1666; + this.state = 1670; this.match(FlinkSqlParser.KW_ROW); - this.state = 1667; + this.state = 1671; this.match(FlinkSqlParser.KW_PER); - this.state = 1668; + this.state = 1672; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7925,76 +7951,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1695; + this.state = 1699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1671; + this.state = 1675; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1672; + this.state = 1676; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1673; + this.state = 1677; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1674; + this.state = 1678; this.match(FlinkSqlParser.KW_PAST); - this.state = 1675; + this.state = 1679; this.match(FlinkSqlParser.KW_LAST); - this.state = 1676; + this.state = 1680; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1677; + this.state = 1681; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1678; + this.state = 1682; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1679; + this.state = 1683; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1680; + this.state = 1684; this.match(FlinkSqlParser.KW_TO); - this.state = 1681; + this.state = 1685; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1682; + this.state = 1686; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1683; + this.state = 1687; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1684; + this.state = 1688; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1685; + this.state = 1689; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1686; + this.state = 1690; this.match(FlinkSqlParser.KW_TO); - this.state = 1687; + this.state = 1691; this.match(FlinkSqlParser.KW_LAST); - this.state = 1688; + this.state = 1692; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1689; + this.state = 1693; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1690; + this.state = 1694; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1691; + this.state = 1695; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1692; + this.state = 1696; this.match(FlinkSqlParser.KW_TO); - this.state = 1693; + this.state = 1697; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1694; + this.state = 1698; this.unquotedIdentifier(); } break; @@ -8016,28 +8042,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefinition(): PatternVariablesDefinitionContext { let localContext = new PatternVariablesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_patternVariablesDefinition); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_patternVariablesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1697; + this.state = 1701; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1698; + this.state = 1702; this.projectItemDefinition(); - this.state = 1703; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1699; + this.state = 1703; this.match(FlinkSqlParser.COMMA); - this.state = 1700; + this.state = 1704; this.projectItemDefinition(); } } - this.state = 1705; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8059,34 +8085,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1715; + this.state = 1719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1710; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1707; + this.state = 1711; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1708; + this.state = 1712; this.timeIntervalExpression(); - this.state = 1709; + this.state = 1713; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1711; + this.state = 1715; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1712; + this.state = 1716; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1713; + this.state = 1717; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1714; + this.state = 1718; this.frameBound(); } break; @@ -8110,17 +8136,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1721; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1718; + this.state = 1722; this.match(FlinkSqlParser.KW_AND); - this.state = 1719; + this.state = 1723; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1720; + this.state = 1724; this.match(FlinkSqlParser.KW_ROW); } } @@ -8140,13 +8166,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1726; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1723; + this.state = 1727; this.timeIntervalExpression(); } } @@ -8166,11 +8192,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1725; + this.state = 1729; this.booleanExpression(0); } } @@ -8200,14 +8226,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 258; - this.enterRecursionRule(localContext, 258, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 260; + this.enterRecursionRule(localContext, 260, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: @@ -8216,9 +8242,9 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1728; + this.state = 1732; this.match(FlinkSqlParser.KW_NOT); - this.state = 1729; + this.state = 1733; this.booleanExpression(6); } break; @@ -8227,13 +8253,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1730; + this.state = 1734; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1731; + this.state = 1735; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1732; + this.state = 1736; this.queryStatement(0); - this.state = 1733; + this.state = 1737; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8242,14 +8268,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1735; + this.state = 1739; this.valueExpression(0); - this.state = 1737; + this.state = 1741; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { - this.state = 1736; + this.state = 1740; this.predicate(); } break; @@ -8258,7 +8284,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1755; + this.state = 1759; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8268,7 +8294,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1753; + this.state = 1757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: @@ -8276,13 +8302,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1741; + this.state = 1745; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1742; + this.state = 1746; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1743; + this.state = 1747; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8291,13 +8317,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1744; + this.state = 1748; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1745; + this.state = 1749; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1746; + this.state = 1750; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8305,23 +8331,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1747; + this.state = 1751; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1748; + this.state = 1752; this.match(FlinkSqlParser.KW_IS); - this.state = 1750; + this.state = 1754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1749; + this.state = 1753; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1752; + this.state = 1756; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8336,7 +8362,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1757; + this.state = 1761; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -8358,33 +8384,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1832; + this.state = 1836; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1758; + this.state = 1762; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1761; + this.state = 1765; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1763; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1762; + this.state = 1766; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8396,131 +8422,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1765; + this.state = 1769; localContext._lower = this.valueExpression(0); - this.state = 1766; + this.state = 1770; this.match(FlinkSqlParser.KW_AND); - this.state = 1767; + this.state = 1771; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1769; + this.state = 1773; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1772; + this.state = 1776; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1773; + this.state = 1777; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1774; + this.state = 1778; this.expression(); - this.state = 1779; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1775; + this.state = 1779; this.match(FlinkSqlParser.COMMA); - this.state = 1776; + this.state = 1780; this.expression(); } } - this.state = 1781; + this.state = 1785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1782; + this.state = 1786; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1785; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1784; + this.state = 1788; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1787; + this.state = 1791; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1788; + this.state = 1792; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1789; + this.state = 1793; this.queryStatement(0); - this.state = 1790; + this.state = 1794; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1792; + this.state = 1796; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1793; + this.state = 1797; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1794; + this.state = 1798; this.queryStatement(0); - this.state = 1795; + this.state = 1799; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1798; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1797; + this.state = 1801; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1800; + this.state = 1804; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1801; + this.state = 1805; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1802; + this.state = 1806; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1803; + this.state = 1807; this.match(FlinkSqlParser.KW_IS); - this.state = 1805; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1804; + this.state = 1808; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1807; + this.state = 1811; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8535,53 +8561,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1808; + this.state = 1812; this.match(FlinkSqlParser.KW_IS); - this.state = 1810; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1809; + this.state = 1813; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1812; + this.state = 1816; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1813; + this.state = 1817; this.match(FlinkSqlParser.KW_FROM); - this.state = 1814; + this.state = 1818; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1816; + this.state = 1820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1815; + this.state = 1819; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1818; + this.state = 1822; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1819; + this.state = 1823; this.match(FlinkSqlParser.KW_TO); - this.state = 1820; + this.state = 1824; localContext._right = this.valueExpression(0); - this.state = 1823; + this.state = 1827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: { - this.state = 1821; + this.state = 1825; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1822; + this.state = 1826; this.stringLiteral(); } break; @@ -8591,28 +8617,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1825; + this.state = 1829; this.match(FlinkSqlParser.KW_IS); - this.state = 1826; - this.match(FlinkSqlParser.KW_JSON); this.state = 1830; + this.match(FlinkSqlParser.KW_JSON); + this.state = 1834; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 1827; + this.state = 1831; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1828; + this.state = 1832; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1829; + this.state = 1833; this.identifier(); } break; @@ -8637,28 +8663,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1863; + this.state = 1867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1834; + this.state = 1838; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1837; + this.state = 1841; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1838; + this.state = 1842; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8668,40 +8694,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1852; + this.state = 1856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1839; + this.state = 1843; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1840; + this.state = 1844; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1841; + this.state = 1845; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1842; + this.state = 1846; this.expression(); - this.state = 1847; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1843; + this.state = 1847; this.match(FlinkSqlParser.COMMA); - this.state = 1844; + this.state = 1848; this.expression(); } } - this.state = 1849; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1850; + this.state = 1854; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8711,28 +8737,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1855; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1854; + this.state = 1858; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1857; + this.state = 1861; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1858; + this.state = 1862; localContext._pattern = this.valueExpression(0); - this.state = 1861; + this.state = 1865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1859; + this.state = 1863; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1860; + this.state = 1864; this.stringLiteral(); } break; @@ -8767,14 +8793,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 264; - this.enterRecursionRule(localContext, 264, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1869; + this.state = 1873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: @@ -8783,7 +8809,7 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1866; + this.state = 1870; this.primaryExpression(0); } break; @@ -8792,7 +8818,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1867; + this.state = 1871; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -8802,13 +8828,13 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1868; + this.state = 1872; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1892; + this.state = 1896; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8818,7 +8844,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1890; + this.state = 1894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: @@ -8826,11 +8852,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1871; + this.state = 1875; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1872; + this.state = 1876; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -8840,7 +8866,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1873; + this.state = 1877; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8849,11 +8875,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1874; + this.state = 1878; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1875; + this.state = 1879; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -8863,7 +8889,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1876; + this.state = 1880; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8872,13 +8898,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1877; + this.state = 1881; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1878; + this.state = 1882; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1879; + this.state = 1883; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8887,13 +8913,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1880; + this.state = 1884; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1881; + this.state = 1885; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1882; + this.state = 1886; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8902,13 +8928,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1883; + this.state = 1887; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1884; + this.state = 1888; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1885; + this.state = 1889; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8917,20 +8943,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1886; + this.state = 1890; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1887; + this.state = 1891; this.comparisonOperator(); - this.state = 1888; + this.state = 1892; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1894; + this.state = 1898; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); } @@ -8952,10 +8978,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1914; + this.state = 1918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -8965,7 +8991,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1895; + this.state = 1899; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -8975,7 +9001,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1896; + this.state = 1900; this.functionNameAndParams(); } break; @@ -9116,47 +9142,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1897; + this.state = 1901; this.functionNameWithParams(); - this.state = 1898; + this.state = 1902; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1910; + this.state = 1914; 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)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { { - this.state = 1900; + this.state = 1904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1899; + this.state = 1903; this.setQuantifier(); } break; } - this.state = 1902; + this.state = 1906; this.functionParam(); - this.state = 1907; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1903; + this.state = 1907; this.match(FlinkSqlParser.COMMA); - this.state = 1904; + this.state = 1908; this.functionParam(); } } - this.state = 1909; + this.state = 1913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1912; + this.state = 1916; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9190,14 +9216,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 268; - this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1991; + this.state = 1995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: @@ -9206,35 +9232,35 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1917; + this.state = 1921; this.match(FlinkSqlParser.KW_CASE); - this.state = 1919; + this.state = 1923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1918; + this.state = 1922; this.whenClause(); } } - this.state = 1921; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1925; + this.state = 1929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1923; + this.state = 1927; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1924; + this.state = 1928; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1927; + this.state = 1931; this.match(FlinkSqlParser.KW_END); } break; @@ -9243,37 +9269,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1929; + this.state = 1933; this.match(FlinkSqlParser.KW_CASE); - this.state = 1930; + this.state = 1934; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1932; + this.state = 1936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1931; + this.state = 1935; this.whenClause(); } } - this.state = 1934; + this.state = 1938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1938; + this.state = 1942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1936; + this.state = 1940; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1937; + this.state = 1941; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1940; + this.state = 1944; this.match(FlinkSqlParser.KW_END); } break; @@ -9282,17 +9308,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1942; + this.state = 1946; this.match(FlinkSqlParser.KW_CAST); - this.state = 1943; + this.state = 1947; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1944; + this.state = 1948; this.expression(); - this.state = 1945; + this.state = 1949; this.match(FlinkSqlParser.KW_AS); - this.state = 1946; + this.state = 1950; this.columnType(); - this.state = 1947; + this.state = 1951; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9301,25 +9327,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1949; + this.state = 1953; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1950; + this.state = 1954; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1951; + this.state = 1955; this.expression(); - this.state = 1954; + this.state = 1958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1952; + this.state = 1956; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1953; + this.state = 1957; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1956; + this.state = 1960; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9328,25 +9354,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1958; + this.state = 1962; this.match(FlinkSqlParser.KW_LAST); - this.state = 1959; + this.state = 1963; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1960; + this.state = 1964; this.expression(); - this.state = 1963; + this.state = 1967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1961; + this.state = 1965; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1962; + this.state = 1966; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1965; + this.state = 1969; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9355,17 +9381,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1967; + this.state = 1971; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1968; + this.state = 1972; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1969; + this.state = 1973; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1970; + this.state = 1974; this.match(FlinkSqlParser.KW_IN); - this.state = 1971; + this.state = 1975; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1972; + this.state = 1976; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9374,7 +9400,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1974; + this.state = 1978; this.constant(); } break; @@ -9383,7 +9409,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1975; + this.state = 1979; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9392,11 +9418,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1976; + this.state = 1980; this.uid(); - this.state = 1977; + this.state = 1981; this.match(FlinkSqlParser.DOT); - this.state = 1978; + this.state = 1982; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9405,11 +9431,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1980; + this.state = 1984; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1981; + this.state = 1985; this.queryStatement(0); - this.state = 1982; + this.state = 1986; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9418,7 +9444,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1984; + this.state = 1988; this.functionCallExpression(); } break; @@ -9427,8 +9453,8 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1985; - this.identifier(); + this.state = 1989; + this.columnNamePath(); } break; case 13: @@ -9436,7 +9462,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1986; + this.state = 1990; this.dereferenceDefinition(); } break; @@ -9445,17 +9471,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1987; + this.state = 1991; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1988; + this.state = 1992; this.expression(); - this.state = 1989; + this.state = 1993; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2000; + this.state = 2004; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9469,20 +9495,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1993; + this.state = 1997; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1994; + this.state = 1998; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1995; + this.state = 1999; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 1996; + this.state = 2000; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2002; + this.state = 2006; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); } @@ -9504,11 +9530,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2003; + this.state = 2007; this.uid(); } } @@ -9528,36 +9554,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionName); try { - this.state = 2009; + this.state = 2013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2005; + this.state = 2009; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2006; + this.state = 2010; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2007; + this.state = 2011; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2008; + this.state = 2012; this.uid(); } break; @@ -9579,9 +9605,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2015; + this.state = 2019; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -9589,16 +9615,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2011; + this.state = 2015; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2012; + this.state = 2016; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2014; + this.state = 2018; this.timeIntervalExpression(); } break; @@ -9622,22 +9648,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2019; + this.state = 2023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2017; + this.state = 2021; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2018; + this.state = 2022; this.uid(); } break; @@ -9659,36 +9685,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionParam); try { - this.state = 2025; + this.state = 2029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2021; + this.state = 2025; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2022; + this.state = 2026; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2023; + this.state = 2027; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2024; + this.state = 2028; this.expression(); } break; @@ -9710,11 +9736,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 2031; this.uid(); } } @@ -9734,11 +9760,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2029; + this.state = 2033; this.identifier(); } } @@ -9758,22 +9784,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2033; + this.state = 2037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2035; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2032; + this.state = 2036; this.dereferenceDefinition(); } break; @@ -9795,24 +9821,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2039; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2038; + this.state = 2042; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2036; + this.state = 2040; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2037; + this.state = 2041; this.errorCapturingUnitToUnitInterval(); } break; @@ -9835,18 +9861,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2044; this.multiUnitsInterval(); - this.state = 2042; + this.state = 2046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2041; + this.state = 2045; this.unitToUnitInterval(); } break; @@ -9869,12 +9895,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2051; this.errorHandler.sync(this); alternative = 1; do { @@ -9882,9 +9908,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2044; + this.state = 2048; this.intervalValue(); - this.state = 2045; + this.state = 2049; this.timeIntervalUnit(); } } @@ -9892,7 +9918,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2049; + this.state = 2053; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -9914,24 +9940,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2055; localContext._body = this.unitToUnitInterval(); - this.state = 2054; + this.state = 2058; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2052; + this.state = 2056; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2053; + this.state = 2057; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9954,17 +9980,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2056; + this.state = 2060; localContext._value = this.intervalValue(); - this.state = 2057; + this.state = 2061; localContext._from_ = this.timeIntervalUnit(); - this.state = 2058; + this.state = 2062; this.match(FlinkSqlParser.KW_TO); - this.state = 2059; + this.state = 2063; localContext._to = this.timeIntervalUnit(); } } @@ -9984,10 +10010,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2066; + this.state = 2070; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -9996,12 +10022,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2062; + this.state = 2066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2061; + this.state = 2065; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10013,7 +10039,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2064; + this.state = 2068; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10027,7 +10053,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2065; + this.state = 2069; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10051,29 +10077,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2069; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2068; + this.state = 2072; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2071; + this.state = 2075; localContext._alias = this.identifier(); - this.state = 2073; + this.state = 2077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2072; + this.state = 2076; this.identifierList(); } break; @@ -10096,13 +10122,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2075; + this.state = 2079; this.identifier(); - this.state = 2076; + this.state = 2080; this.errorCapturingIdentifierExtra(); } } @@ -10122,29 +10148,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2085; + this.state = 2089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2080; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2078; + this.state = 2082; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2079; + this.state = 2083; this.identifier(); } } - this.state = 2082; + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10178,15 +10204,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2087; + this.state = 2091; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2088; + this.state = 2092; this.identifierSeq(); - this.state = 2089; + this.state = 2093; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10206,26 +10232,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2091; + this.state = 2095; this.identifier(); - this.state = 2096; + this.state = 2100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2092; + this.state = 2096; this.match(FlinkSqlParser.COMMA); - this.state = 2093; + this.state = 2097; this.identifier(); } } - this.state = 2098; + this.state = 2102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10247,9 +10273,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifier); try { - this.state = 2102; + this.state = 2106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10257,7 +10283,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2103; this.unquotedIdentifier(); } break; @@ -10265,7 +10291,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2100; + this.state = 2104; this.quotedIdentifier(); } break; @@ -10340,7 +10366,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2101; + this.state = 2105; this.nonReservedKeywords(); } break; @@ -10364,12 +10390,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2108; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10396,11 +10422,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2106; + this.state = 2110; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10420,17 +10446,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2112; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2109; + this.state = 2113; localContext._condition = this.expression(); - this.state = 2110; + this.state = 2114; this.match(FlinkSqlParser.KW_THEN); - this.state = 2111; + this.state = 2115; localContext._result = this.expression(); } } @@ -10450,11 +10476,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2113; + this.state = 2117; this.identifier(); } } @@ -10474,11 +10500,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2115; + this.state = 2119; this.identifier(); } } @@ -10498,21 +10524,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2121; this.identifier(); - this.state = 2120; + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2118; + this.state = 2122; this.match(FlinkSqlParser.DOT); - this.state = 2119; + this.state = 2123; this.identifier(); } } @@ -10535,21 +10561,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2122; + this.state = 2126; this.identifier(); - this.state = 2125; + this.state = 2129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2123; + this.state = 2127; this.match(FlinkSqlParser.DOT); - this.state = 2124; + this.state = 2128; this.identifier(); } } @@ -10572,25 +10598,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2139; + this.state = 2143; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2127; + this.state = 2131; this.identifier(); - this.state = 2130; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2128; + this.state = 2132; this.match(FlinkSqlParser.DOT); - this.state = 2129; + this.state = 2133; this.identifier(); } } @@ -10600,20 +10626,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2132; + this.state = 2136; this.identifier(); - this.state = 2133; + this.state = 2137; this.match(FlinkSqlParser.DOT); - this.state = 2134; + this.state = 2138; this.identifier(); - this.state = 2137; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2135; + this.state = 2139; this.match(FlinkSqlParser.DOT); - this.state = 2136; + this.state = 2140; this.identifier(); } } @@ -10638,24 +10664,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePath); try { - this.state = 2153; + this.state = 2157; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2145; this.identifier(); - this.state = 2144; + this.state = 2148; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2142; + this.state = 2146; this.match(FlinkSqlParser.DOT); - this.state = 2143; + this.state = 2147; this.identifier(); } break; @@ -10665,20 +10691,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2146; + this.state = 2150; this.identifier(); - this.state = 2147; + this.state = 2151; this.match(FlinkSqlParser.DOT); - this.state = 2148; + this.state = 2152; this.identifier(); - this.state = 2151; + this.state = 2155; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2149; + this.state = 2153; this.match(FlinkSqlParser.DOT); - this.state = 2150; + this.state = 2154; this.identifier(); } break; @@ -10703,24 +10729,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_viewPath); try { - this.state = 2167; + this.state = 2171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2155; + this.state = 2159; this.identifier(); - this.state = 2158; + this.state = 2162; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2156; + this.state = 2160; this.match(FlinkSqlParser.DOT); - this.state = 2157; + this.state = 2161; this.identifier(); } break; @@ -10730,20 +10756,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2160; + this.state = 2164; this.identifier(); - this.state = 2161; + this.state = 2165; this.match(FlinkSqlParser.DOT); - this.state = 2162; + this.state = 2166; this.identifier(); - this.state = 2165; + this.state = 2169; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2163; + this.state = 2167; this.match(FlinkSqlParser.DOT); - this.state = 2164; + this.state = 2168; this.identifier(); } break; @@ -10768,25 +10794,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2181; + this.state = 2185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2169; + this.state = 2173; this.identifier(); - this.state = 2172; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2170; + this.state = 2174; this.match(FlinkSqlParser.DOT); - this.state = 2171; + this.state = 2175; this.identifier(); } } @@ -10796,20 +10822,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2174; + this.state = 2178; this.identifier(); - this.state = 2175; + this.state = 2179; this.match(FlinkSqlParser.DOT); - this.state = 2176; + this.state = 2180; this.identifier(); - this.state = 2179; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2177; + this.state = 2181; this.match(FlinkSqlParser.DOT); - this.state = 2178; + this.state = 2182; this.identifier(); } } @@ -10834,28 +10860,28 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2183; + this.state = 2187; this.identifier(); - this.state = 2188; + this.state = 2192; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2184; + this.state = 2188; this.match(FlinkSqlParser.DOT); - this.state = 2185; + this.state = 2189; this.identifier(); } } } - this.state = 2190; + this.state = 2194; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); } @@ -10877,13 +10903,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2195; this.match(FlinkSqlParser.KW_WITH); - this.state = 2192; + this.state = 2196; this.tablePropertyList(); } } @@ -10903,15 +10929,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2198; this.match(FlinkSqlParser.KW_IF); - this.state = 2195; + this.state = 2199; this.match(FlinkSqlParser.KW_NOT); - this.state = 2196; + this.state = 2200; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10931,13 +10957,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2198; + this.state = 2202; this.match(FlinkSqlParser.KW_IF); - this.state = 2199; + this.state = 2203; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10957,32 +10983,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2205; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2202; + this.state = 2206; this.tableProperty(); - this.state = 2207; + this.state = 2211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2203; + this.state = 2207; this.match(FlinkSqlParser.COMMA); - this.state = 2204; + this.state = 2208; this.tableProperty(); } } - this.state = 2209; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2210; + this.state = 2214; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11002,29 +11028,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2212; + this.state = 2216; localContext._key = this.tablePropertyKey(); - this.state = 2217; + this.state = 2221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2214; + this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2213; + this.state = 2217; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2216; + this.state = 2220; localContext._value = this.tablePropertyValue(); } } @@ -11047,29 +11073,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2222; + this.state = 2226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2223; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2220; + this.state = 2224; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2221; + this.state = 2225; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11091,22 +11117,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2228; + this.state = 2232; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2224; + this.state = 2228; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2225; + this.state = 2229; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11114,14 +11140,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2226; + this.state = 2230; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2227; + this.state = 2231; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11145,40 +11171,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2236; + this.state = 2240; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2230; + this.state = 2234; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2231; + this.state = 2235; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2232; + this.state = 2236; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2233; + this.state = 2237; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2234; + this.state = 2238; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2235; + this.state = 2239; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11202,76 +11228,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2252; + this.state = 2256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2238; + this.state = 2242; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2239; + this.state = 2243; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2240; + this.state = 2244; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2241; + this.state = 2245; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2242; + this.state = 2246; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2243; + this.state = 2247; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2244; + this.state = 2248; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2245; + this.state = 2249; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2246; + this.state = 2250; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2247; + this.state = 2251; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2248; + this.state = 2252; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2249; + this.state = 2253; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2250; + this.state = 2254; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2251; + this.state = 2255; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11293,47 +11319,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2261; + this.state = 2265; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2254; + this.state = 2258; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2255; + this.state = 2259; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2256; + this.state = 2260; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2257; + this.state = 2261; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2258; + this.state = 2262; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2259; + this.state = 2263; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2260; + this.state = 2264; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11357,12 +11383,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2263; + this.state = 2267; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11389,12 +11415,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2265; + this.state = 2269; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11421,16 +11447,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2281; + this.state = 2285; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2271; this.timeIntervalExpression(); } break; @@ -11446,14 +11472,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2268; + this.state = 2272; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2269; + this.state = 2273; this.stringLiteral(); } break; @@ -11461,17 +11487,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2271; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2270; + this.state = 2274; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2273; + this.state = 2277; this.decimalLiteral(); } break; @@ -11479,21 +11505,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2274; + this.state = 2278; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2275; + this.state = 2279; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2276; + this.state = 2280; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11501,17 +11527,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2278; + this.state = 2282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2277; + this.state = 2281; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2280; + this.state = 2284; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11535,13 +11561,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2283; + this.state = 2287; this.timePointUnit(); - this.state = 2284; + this.state = 2288; this.stringLiteral(); } } @@ -11561,11 +11587,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2286; + this.state = 2290; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11585,11 +11611,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2288; + this.state = 2292; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11609,12 +11635,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2294; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -11641,12 +11667,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2292; + this.state = 2296; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11673,12 +11699,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2294; + this.state = 2298; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11705,12 +11731,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2300; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -11737,12 +11763,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2302; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -11769,12 +11795,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2304; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -11801,12 +11827,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2306; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -11833,12 +11859,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2308; _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)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11865,12 +11891,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2310; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11900,15 +11926,15 @@ export class FlinkSqlParser extends SQLParserBase { switch (ruleIndex) { case 26: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 78: + case 79: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 88: + case 89: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 129: + case 130: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 132: + case 133: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 134: + case 135: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11973,7 +11999,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,542,2309,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,542,2313,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, @@ -12005,954 +12031,956 @@ export class FlinkSqlParser extends SQLParserBase { 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, - 1,0,5,0,386,8,0,10,0,12,0,389,9,0,1,0,1,0,1,1,1,1,3,1,395,8,1,1, - 1,3,1,398,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,412,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,430,8,4,1,5,1,5,3,5,434,8,5,1,6,1,6,1,6,1,7,1,7,1, - 7,1,7,3,7,443,8,7,1,7,1,7,1,7,3,7,448,8,7,1,8,1,8,1,8,5,8,453,8, - 8,10,8,12,8,456,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,466, - 8,10,1,11,1,11,1,11,1,11,1,11,5,11,473,8,11,10,11,12,11,476,9,11, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,487,8,12,1,12, - 3,12,490,8,12,1,12,1,12,1,12,1,12,1,12,3,12,497,8,12,1,12,3,12,500, - 8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,508,8,12,1,12,1,12,3,12, - 512,8,12,1,12,1,12,1,12,3,12,517,8,12,1,12,3,12,520,8,12,1,13,1, - 13,1,13,1,13,1,13,3,13,527,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3, - 15,535,8,15,1,16,1,16,3,16,539,8,16,1,17,1,17,1,17,1,17,1,18,1,18, - 1,18,1,18,1,18,1,18,3,18,551,8,18,1,18,1,18,1,18,1,18,1,18,1,18, - 3,18,559,8,18,1,18,1,18,3,18,563,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,595, - 8,18,1,19,3,19,598,8,19,1,19,4,19,601,8,19,11,19,12,19,602,1,20, - 1,20,3,20,607,8,20,1,21,1,21,3,21,611,8,21,1,21,1,21,3,21,615,8, - 21,1,21,1,21,1,21,1,21,1,21,5,21,622,8,21,10,21,12,21,625,9,21,1, - 21,1,21,3,21,629,8,21,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637, - 8,21,1,21,1,21,1,21,3,21,642,8,21,1,21,3,21,645,8,21,1,21,1,21,3, - 21,649,8,21,1,22,1,22,1,22,3,22,654,8,22,1,22,1,22,1,22,1,22,3,22, - 660,8,22,1,23,1,23,1,23,3,23,665,8,23,1,24,1,24,1,24,3,24,670,8, - 24,1,24,1,24,3,24,674,8,24,1,25,1,25,3,25,678,8,25,1,26,1,26,3,26, - 682,8,26,1,27,1,27,1,27,1,27,5,27,688,8,27,10,27,12,27,691,9,27, - 1,27,1,27,1,28,1,28,1,28,3,28,698,8,28,1,28,1,28,3,28,702,8,28,1, - 28,1,28,3,28,706,8,28,1,28,1,28,3,28,710,8,28,1,28,1,28,3,28,714, - 8,28,1,28,1,28,3,28,718,8,28,1,28,1,28,3,28,722,8,28,1,28,1,28,3, - 28,726,8,28,1,28,1,28,3,28,730,8,28,3,28,732,8,28,1,29,1,29,1,29, - 1,29,1,30,1,30,1,30,1,30,3,30,742,8,30,1,30,1,30,1,31,1,31,1,31, - 1,31,3,31,750,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,772, - 8,34,10,34,12,34,775,9,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,5,34,786,8,34,10,34,12,34,789,9,34,1,34,1,34,3,34,793,8,34, - 1,35,1,35,3,35,797,8,35,1,35,1,35,1,35,1,35,3,35,803,8,35,1,35,3, - 35,806,8,35,1,35,3,35,809,8,35,1,36,1,36,1,36,1,36,1,36,3,36,816, - 8,36,1,36,3,36,819,8,36,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3,38, - 828,8,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41, - 840,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,43, - 1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,5,45,862,8,45,10,45, - 12,45,865,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,5,46,874,8,46, - 10,46,12,46,877,9,46,1,46,1,46,3,46,881,8,46,1,47,1,47,3,47,885, - 8,47,1,48,1,48,1,48,1,48,5,48,891,8,48,10,48,12,48,894,9,48,1,48, - 3,48,897,8,48,1,49,1,49,1,49,1,49,3,49,903,8,49,1,50,1,50,1,50,1, - 50,1,50,1,51,1,51,1,51,3,51,913,8,51,1,51,1,51,1,51,3,51,918,8,51, - 1,51,1,51,1,52,1,52,3,52,924,8,52,1,52,1,52,3,52,928,8,52,1,52,1, - 52,3,52,932,8,52,1,52,1,52,3,52,936,8,52,1,52,1,52,1,52,1,53,1,53, - 1,53,1,53,3,53,945,8,53,1,53,1,53,3,53,949,8,53,1,53,1,53,1,53,1, - 53,1,53,3,53,956,8,53,1,53,3,53,959,8,53,1,54,1,54,1,54,1,54,1,54, - 1,54,5,54,967,8,54,10,54,12,54,970,9,54,1,55,1,55,1,56,1,56,1,56, - 3,56,977,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,985,8,56,1,57,1, - 57,3,57,989,8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,3,59,1004,8,59,1,60,1,60,1,60,1,60,1,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1023,8, - 63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,3,65,1034,8,65,1, - 65,1,65,3,65,1038,8,65,1,65,1,65,1,65,1,65,1,65,3,65,1045,8,65,1, - 66,1,66,1,66,3,66,1050,8,66,1,66,1,66,1,67,1,67,3,67,1056,8,67,1, - 67,1,67,3,67,1060,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1067,8,68,1, - 68,1,68,3,68,1071,8,68,1,69,1,69,3,69,1075,8,69,1,69,1,69,3,69,1079, - 8,69,1,69,1,69,1,70,1,70,1,70,1,70,3,70,1087,8,70,1,70,1,70,3,70, - 1091,8,70,1,70,1,70,1,71,3,71,1096,8,71,1,71,1,71,1,71,1,71,3,71, - 1102,8,71,1,72,1,72,1,72,1,72,3,72,1108,8,72,1,72,3,72,1111,8,72, - 1,72,1,72,3,72,1115,8,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,5,74, - 1124,8,74,10,74,12,74,1127,9,74,1,75,1,75,1,75,1,75,5,75,1133,8, - 75,10,75,12,75,1136,9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,4,76,1147,8,76,11,76,12,76,1148,1,76,1,76,1,77,1,77,1,77,1, - 77,1,77,1,77,4,77,1159,8,77,11,77,12,77,1160,1,77,1,77,1,78,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1176,8,78,1,78, - 3,78,1179,8,78,1,78,1,78,3,78,1183,8,78,1,78,3,78,1186,8,78,3,78, - 1188,8,78,1,78,1,78,1,78,3,78,1193,8,78,1,78,1,78,3,78,1197,8,78, - 1,78,3,78,1200,8,78,5,78,1202,8,78,10,78,12,78,1205,9,78,1,79,1, - 79,1,79,1,79,5,79,1211,8,79,10,79,12,79,1214,9,79,1,80,1,80,1,80, - 1,80,5,80,1220,8,80,10,80,12,80,1223,9,80,1,81,1,81,1,81,1,81,1, - 81,5,81,1230,8,81,10,81,12,81,1233,9,81,1,81,1,81,3,81,1237,8,81, - 1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,3,83,1248,8,83,1,83, - 3,83,1251,8,83,1,83,3,83,1254,8,83,1,83,3,83,1257,8,83,1,83,3,83, - 1260,8,83,1,83,1,83,1,83,1,83,3,83,1266,8,83,1,84,1,84,3,84,1270, - 8,84,1,84,1,84,1,84,1,84,5,84,1276,8,84,10,84,12,84,1279,9,84,3, - 84,1281,8,84,1,85,1,85,1,85,3,85,1286,8,85,1,85,3,85,1289,8,85,1, - 85,1,85,3,85,1293,8,85,1,85,3,85,1296,8,85,3,85,1298,8,85,1,86,1, - 86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,3,86,1312,8, - 86,1,87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,1321,8,88,10,88,12,88, - 1324,9,88,1,88,1,88,3,88,1328,8,88,1,88,1,88,1,88,1,88,1,88,1,88, - 3,88,1336,8,88,1,88,3,88,1339,8,88,1,88,3,88,1342,8,88,1,88,1,88, - 1,88,3,88,1347,8,88,5,88,1349,8,88,10,88,12,88,1352,9,88,1,89,1, - 89,3,89,1356,8,89,1,90,3,90,1359,8,90,1,90,1,90,3,90,1363,8,90,1, - 90,1,90,3,90,1367,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1376, - 8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1387,8,90, - 1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,93,1,93,1,93,1,93,1,93, - 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,5,95,1412,8,95, - 10,95,12,95,1415,9,95,1,95,1,95,1,96,1,96,1,97,1,97,1,97,1,97,1, - 97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,1436,8, - 97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,3, - 100,1449,8,100,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,5, - 102,1459,8,102,10,102,12,102,1462,9,102,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,5,103,1472,8,103,10,103,12,103,1475,9,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103,1484,8,103,10,103, - 12,103,1487,9,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103, - 1496,8,103,10,103,12,103,1499,9,103,1,103,1,103,1,103,3,103,1504, - 8,103,1,104,1,104,1,104,1,105,1,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,107,1,107,1,108,1,108,1,109,1,109,1,109,1,110,1,110, - 1,110,1,110,5,110,1529,8,110,10,110,12,110,1532,9,110,1,111,1,111, - 1,111,1,111,1,112,3,112,1539,8,112,1,112,1,112,3,112,1543,8,112, - 1,112,3,112,1546,8,112,1,112,3,112,1549,8,112,1,112,1,112,1,113, - 1,113,1,113,3,113,1556,8,113,1,113,3,113,1559,8,113,1,113,3,113, - 1562,8,113,1,113,3,113,1565,8,113,1,113,3,113,1568,8,113,1,113,3, - 113,1571,8,113,1,113,1,113,1,113,3,113,1576,8,113,1,113,3,113,1579, - 8,113,1,114,1,114,1,114,1,114,1,114,5,114,1586,8,114,10,114,12,114, - 1589,9,114,1,115,1,115,3,115,1593,8,115,1,115,1,115,3,115,1597,8, - 115,1,116,1,116,1,116,3,116,1602,8,116,1,117,1,117,1,117,1,117,3, - 117,1608,8,117,1,117,1,117,1,117,3,117,1613,8,117,5,117,1615,8,117, - 10,117,12,117,1618,9,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,1636, - 8,118,1,119,1,119,1,119,1,119,5,119,1642,8,119,10,119,12,119,1645, - 9,119,1,120,1,120,1,120,4,120,1650,8,120,11,120,12,120,1651,1,120, - 1,120,3,120,1656,8,120,1,121,1,121,3,121,1660,8,121,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,3,122,1670,8,122,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,1696,8,123,1,124,1,124,1,124,1,124,5,124,1702,8,124,10,124, - 12,124,1705,9,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 1,125,3,125,1716,8,125,1,126,1,126,1,126,1,126,1,126,1,127,1,127, - 1,127,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, - 1,129,1,129,3,129,1738,8,129,3,129,1740,8,129,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,3,129,1751,8,129,1,129,5,129, - 1754,8,129,10,129,12,129,1757,9,129,1,130,3,130,1760,8,130,1,130, - 1,130,3,130,1764,8,130,1,130,1,130,1,130,1,130,1,130,3,130,1771, - 8,130,1,130,1,130,1,130,1,130,1,130,5,130,1778,8,130,10,130,12,130, - 1781,9,130,1,130,1,130,1,130,3,130,1786,8,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1799,8,130, - 1,130,1,130,1,130,1,130,1,130,3,130,1806,8,130,1,130,1,130,1,130, - 3,130,1811,8,130,1,130,1,130,1,130,1,130,3,130,1817,8,130,1,130, - 1,130,1,130,1,130,1,130,3,130,1824,8,130,1,130,1,130,1,130,1,130, - 1,130,3,130,1831,8,130,3,130,1833,8,130,1,131,3,131,1836,8,131,1, - 131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,5,131,1846,8,131,10, - 131,12,131,1849,9,131,1,131,1,131,3,131,1853,8,131,1,131,3,131,1856, - 8,131,1,131,1,131,1,131,1,131,3,131,1862,8,131,3,131,1864,8,131, - 1,132,1,132,1,132,1,132,3,132,1870,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,5,132,1891,8,132,10,132,12,132,1894,9,132, - 1,133,1,133,1,133,1,133,1,133,3,133,1901,8,133,1,133,1,133,1,133, - 5,133,1906,8,133,10,133,12,133,1909,9,133,3,133,1911,8,133,1,133, - 1,133,3,133,1915,8,133,1,134,1,134,1,134,4,134,1920,8,134,11,134, - 12,134,1921,1,134,1,134,3,134,1926,8,134,1,134,1,134,1,134,1,134, - 1,134,4,134,1933,8,134,11,134,12,134,1934,1,134,1,134,3,134,1939, - 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,1955,8,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, - 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, - 1992,8,134,1,134,1,134,1,134,1,134,1,134,5,134,1999,8,134,10,134, - 12,134,2002,9,134,1,135,1,135,1,136,1,136,1,136,1,136,3,136,2010, - 8,136,1,137,1,137,1,137,1,137,3,137,2016,8,137,1,138,1,138,3,138, - 2020,8,138,1,139,1,139,1,139,1,139,3,139,2026,8,139,1,140,1,140, - 1,141,1,141,1,142,1,142,3,142,2034,8,142,1,143,1,143,1,143,3,143, - 2039,8,143,1,144,1,144,3,144,2043,8,144,1,145,1,145,1,145,4,145, - 2048,8,145,11,145,12,145,2049,1,146,1,146,1,146,3,146,2055,8,146, - 1,147,1,147,1,147,1,147,1,147,1,148,3,148,2063,8,148,1,148,1,148, - 3,148,2067,8,148,1,149,3,149,2070,8,149,1,149,1,149,3,149,2074,8, - 149,1,150,1,150,1,150,1,151,1,151,4,151,2081,8,151,11,151,12,151, - 2082,1,151,3,151,2086,8,151,1,152,1,152,1,152,1,152,1,153,1,153, - 1,153,5,153,2095,8,153,10,153,12,153,2098,9,153,1,154,1,154,1,154, - 3,154,2103,8,154,1,155,1,155,1,156,1,156,1,157,1,157,1,157,1,157, - 1,157,1,158,1,158,1,159,1,159,1,160,1,160,1,160,3,160,2121,8,160, - 1,161,1,161,1,161,3,161,2126,8,161,1,162,1,162,1,162,3,162,2131, - 8,162,1,162,1,162,1,162,1,162,1,162,3,162,2138,8,162,3,162,2140, - 8,162,1,163,1,163,1,163,3,163,2145,8,163,1,163,1,163,1,163,1,163, - 1,163,3,163,2152,8,163,3,163,2154,8,163,1,164,1,164,1,164,3,164, - 2159,8,164,1,164,1,164,1,164,1,164,1,164,3,164,2166,8,164,3,164, - 2168,8,164,1,165,1,165,1,165,3,165,2173,8,165,1,165,1,165,1,165, - 1,165,1,165,3,165,2180,8,165,3,165,2182,8,165,1,166,1,166,1,166, - 5,166,2187,8,166,10,166,12,166,2190,9,166,1,167,1,167,1,167,1,168, - 1,168,1,168,1,168,1,169,1,169,1,169,1,170,1,170,1,170,1,170,5,170, - 2206,8,170,10,170,12,170,2209,9,170,1,170,1,170,1,171,1,171,3,171, - 2215,8,171,1,171,3,171,2218,8,171,1,172,1,172,1,172,3,172,2223,8, - 172,1,173,1,173,1,173,1,173,3,173,2229,8,173,1,174,1,174,1,174,1, - 174,1,174,1,174,3,174,2237,8,174,1,175,1,175,1,175,1,175,1,175,1, - 175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2253,8, - 175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,3,176,2262,8,176,1, - 177,1,177,1,178,1,178,1,179,1,179,1,179,1,179,3,179,2272,8,179,1, - 179,1,179,1,179,1,179,1,179,3,179,2279,8,179,1,179,3,179,2282,8, - 179,1,180,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,188,1,188,1,189,1,189, - 1,190,1,190,1,191,1,191,1,191,1,2188,5,156,176,258,264,268,192,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,0,47,2,0,109,109,451,451,3,0,45,45,128,128,189,189,4,0,42,42, - 90,90,423,423,465,465,2,0,442,442,448,448,2,0,151,151,170,170,2, - 0,438,438,490,490,2,0,483,486,488,488,3,0,32,32,91,91,245,245,11, - 0,28,29,35,35,46,46,92,92,178,179,345,345,361,361,379,379,382,382, - 388,388,417,418,2,0,434,434,436,436,4,0,101,102,115,115,144,144, - 247,247,2,0,13,13,232,232,2,0,456,456,463,463,3,0,5,5,271,271,445, - 445,3,0,267,267,456,456,463,463,3,0,426,426,459,459,478,478,3,0, - 331,331,466,466,482,482,2,0,441,441,491,491,2,0,183,183,266,266, - 3,0,130,130,180,180,403,403,4,0,152,152,174,174,202,202,318,318, - 3,0,446,446,460,460,500,500,4,0,251,251,447,447,495,497,499,499, - 2,0,74,74,321,321,3,0,460,460,493,493,500,500,2,0,440,440,451,451, - 2,0,458,458,468,468,4,0,140,140,245,245,398,398,405,405,2,0,19,19, - 370,370,2,0,5,5,11,11,2,0,510,510,530,531,4,0,453,453,528,528,532, - 532,535,535,2,0,530,531,533,533,1,0,530,531,1,0,539,540,2,0,539, - 539,542,542,4,0,453,453,528,528,530,532,534,535,3,0,242,242,509, - 510,530,531,2,0,140,140,398,398,2,0,5,5,113,113,10,0,97,97,165,165, - 223,223,230,230,335,335,437,437,471,471,473,473,489,489,503,503, - 15,0,97,97,165,165,223,223,230,230,335,335,428,428,437,437,443,443, - 449,450,455,455,461,461,471,476,489,489,492,492,503,504,11,0,5,5, - 13,13,33,33,78,78,84,85,113,113,201,201,208,209,390,390,414,414, - 528,528,3,0,78,78,84,85,208,209,2,0,91,91,379,380,53,0,4,4,13,13, - 23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119, - 119,134,134,139,139,143,143,145,145,160,160,165,165,167,167,187, - 188,190,195,198,198,200,200,202,202,206,206,210,210,215,215,221, - 221,223,224,230,230,244,244,246,246,265,265,277,277,282,282,284, - 284,294,294,318,318,322,324,335,335,358,359,365,365,368,368,381, - 381,396,396,399,400,409,409,420,421,437,437,470,470,489,489,503, - 503,1,0,438,505,2516,0,387,1,0,0,0,2,397,1,0,0,0,4,411,1,0,0,0,6, - 413,1,0,0,0,8,429,1,0,0,0,10,433,1,0,0,0,12,435,1,0,0,0,14,438,1, - 0,0,0,16,449,1,0,0,0,18,457,1,0,0,0,20,465,1,0,0,0,22,467,1,0,0, - 0,24,519,1,0,0,0,26,521,1,0,0,0,28,528,1,0,0,0,30,532,1,0,0,0,32, - 536,1,0,0,0,34,540,1,0,0,0,36,594,1,0,0,0,38,600,1,0,0,0,40,606, - 1,0,0,0,42,608,1,0,0,0,44,650,1,0,0,0,46,664,1,0,0,0,48,666,1,0, - 0,0,50,677,1,0,0,0,52,681,1,0,0,0,54,683,1,0,0,0,56,731,1,0,0,0, - 58,733,1,0,0,0,60,737,1,0,0,0,62,745,1,0,0,0,64,753,1,0,0,0,66,757, - 1,0,0,0,68,792,1,0,0,0,70,808,1,0,0,0,72,810,1,0,0,0,74,820,1,0, - 0,0,76,822,1,0,0,0,78,829,1,0,0,0,80,831,1,0,0,0,82,839,1,0,0,0, - 84,847,1,0,0,0,86,849,1,0,0,0,88,853,1,0,0,0,90,857,1,0,0,0,92,880, - 1,0,0,0,94,884,1,0,0,0,96,886,1,0,0,0,98,902,1,0,0,0,100,904,1,0, - 0,0,102,909,1,0,0,0,104,921,1,0,0,0,106,940,1,0,0,0,108,960,1,0, - 0,0,110,971,1,0,0,0,112,973,1,0,0,0,114,986,1,0,0,0,116,993,1,0, - 0,0,118,996,1,0,0,0,120,1005,1,0,0,0,122,1009,1,0,0,0,124,1013,1, - 0,0,0,126,1016,1,0,0,0,128,1024,1,0,0,0,130,1029,1,0,0,0,132,1046, - 1,0,0,0,134,1053,1,0,0,0,136,1063,1,0,0,0,138,1072,1,0,0,0,140,1082, - 1,0,0,0,142,1101,1,0,0,0,144,1103,1,0,0,0,146,1116,1,0,0,0,148,1119, - 1,0,0,0,150,1128,1,0,0,0,152,1139,1,0,0,0,154,1152,1,0,0,0,156,1187, - 1,0,0,0,158,1206,1,0,0,0,160,1215,1,0,0,0,162,1224,1,0,0,0,164,1243, - 1,0,0,0,166,1265,1,0,0,0,168,1267,1,0,0,0,170,1297,1,0,0,0,172,1311, - 1,0,0,0,174,1313,1,0,0,0,176,1327,1,0,0,0,178,1353,1,0,0,0,180,1386, - 1,0,0,0,182,1388,1,0,0,0,184,1394,1,0,0,0,186,1396,1,0,0,0,188,1401, - 1,0,0,0,190,1406,1,0,0,0,192,1418,1,0,0,0,194,1435,1,0,0,0,196,1437, - 1,0,0,0,198,1439,1,0,0,0,200,1448,1,0,0,0,202,1450,1,0,0,0,204,1453, - 1,0,0,0,206,1503,1,0,0,0,208,1505,1,0,0,0,210,1508,1,0,0,0,212,1510, - 1,0,0,0,214,1517,1,0,0,0,216,1519,1,0,0,0,218,1521,1,0,0,0,220,1524, - 1,0,0,0,222,1533,1,0,0,0,224,1538,1,0,0,0,226,1552,1,0,0,0,228,1580, - 1,0,0,0,230,1590,1,0,0,0,232,1598,1,0,0,0,234,1603,1,0,0,0,236,1635, - 1,0,0,0,238,1637,1,0,0,0,240,1646,1,0,0,0,242,1657,1,0,0,0,244,1669, - 1,0,0,0,246,1695,1,0,0,0,248,1697,1,0,0,0,250,1715,1,0,0,0,252,1717, - 1,0,0,0,254,1722,1,0,0,0,256,1725,1,0,0,0,258,1739,1,0,0,0,260,1832, - 1,0,0,0,262,1863,1,0,0,0,264,1869,1,0,0,0,266,1914,1,0,0,0,268,1991, - 1,0,0,0,270,2003,1,0,0,0,272,2009,1,0,0,0,274,2015,1,0,0,0,276,2019, - 1,0,0,0,278,2025,1,0,0,0,280,2027,1,0,0,0,282,2029,1,0,0,0,284,2033, - 1,0,0,0,286,2035,1,0,0,0,288,2040,1,0,0,0,290,2047,1,0,0,0,292,2051, - 1,0,0,0,294,2056,1,0,0,0,296,2066,1,0,0,0,298,2069,1,0,0,0,300,2075, - 1,0,0,0,302,2085,1,0,0,0,304,2087,1,0,0,0,306,2091,1,0,0,0,308,2102, - 1,0,0,0,310,2104,1,0,0,0,312,2106,1,0,0,0,314,2108,1,0,0,0,316,2113, - 1,0,0,0,318,2115,1,0,0,0,320,2117,1,0,0,0,322,2122,1,0,0,0,324,2139, - 1,0,0,0,326,2153,1,0,0,0,328,2167,1,0,0,0,330,2181,1,0,0,0,332,2183, - 1,0,0,0,334,2191,1,0,0,0,336,2194,1,0,0,0,338,2198,1,0,0,0,340,2201, - 1,0,0,0,342,2212,1,0,0,0,344,2222,1,0,0,0,346,2228,1,0,0,0,348,2236, - 1,0,0,0,350,2252,1,0,0,0,352,2261,1,0,0,0,354,2263,1,0,0,0,356,2265, - 1,0,0,0,358,2281,1,0,0,0,360,2283,1,0,0,0,362,2286,1,0,0,0,364,2288, - 1,0,0,0,366,2290,1,0,0,0,368,2292,1,0,0,0,370,2294,1,0,0,0,372,2296, - 1,0,0,0,374,2298,1,0,0,0,376,2300,1,0,0,0,378,2302,1,0,0,0,380,2304, - 1,0,0,0,382,2306,1,0,0,0,384,386,3,2,1,0,385,384,1,0,0,0,386,389, - 1,0,0,0,387,385,1,0,0,0,387,388,1,0,0,0,388,390,1,0,0,0,389,387, - 1,0,0,0,390,391,5,0,0,1,391,1,1,0,0,0,392,394,3,4,2,0,393,395,5, - 522,0,0,394,393,1,0,0,0,394,395,1,0,0,0,395,398,1,0,0,0,396,398, - 3,6,3,0,397,392,1,0,0,0,397,396,1,0,0,0,398,3,1,0,0,0,399,412,3, - 8,4,0,400,412,3,10,5,0,401,412,3,12,6,0,402,412,3,14,7,0,403,412, - 3,20,10,0,404,412,3,24,12,0,405,412,3,26,13,0,406,412,3,28,14,0, - 407,412,3,30,15,0,408,412,3,32,16,0,409,412,3,34,17,0,410,412,3, - 36,18,0,411,399,1,0,0,0,411,400,1,0,0,0,411,401,1,0,0,0,411,402, - 1,0,0,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,5,1,0,0,0,413,414,5,522,0,0,414,7,1,0,0,0,415,430,3, - 40,20,0,416,430,3,102,51,0,417,430,3,104,52,0,418,430,3,106,53,0, - 419,430,3,100,50,0,420,430,3,112,56,0,421,430,3,126,63,0,422,430, - 3,128,64,0,423,430,3,130,65,0,424,430,3,132,66,0,425,430,3,134,67, - 0,426,430,3,136,68,0,427,430,3,138,69,0,428,430,3,140,70,0,429,415, - 1,0,0,0,429,416,1,0,0,0,429,417,1,0,0,0,429,418,1,0,0,0,429,419, - 1,0,0,0,429,420,1,0,0,0,429,421,1,0,0,0,429,422,1,0,0,0,429,423, - 1,0,0,0,429,424,1,0,0,0,429,425,1,0,0,0,429,426,1,0,0,0,429,427, - 1,0,0,0,429,428,1,0,0,0,430,9,1,0,0,0,431,434,3,156,78,0,432,434, - 3,142,71,0,433,431,1,0,0,0,433,432,1,0,0,0,434,11,1,0,0,0,435,436, - 7,0,0,0,436,437,3,326,163,0,437,13,1,0,0,0,438,442,5,135,0,0,439, - 443,3,16,8,0,440,441,5,480,0,0,441,443,5,146,0,0,442,439,1,0,0,0, - 442,440,1,0,0,0,442,443,1,0,0,0,443,447,1,0,0,0,444,448,3,10,5,0, - 445,448,3,144,72,0,446,448,3,154,77,0,447,444,1,0,0,0,447,445,1, - 0,0,0,447,446,1,0,0,0,448,15,1,0,0,0,449,454,3,18,9,0,450,451,5, - 521,0,0,451,453,3,18,9,0,452,450,1,0,0,0,453,456,1,0,0,0,454,452, - 1,0,0,0,454,455,1,0,0,0,455,17,1,0,0,0,456,454,1,0,0,0,457,458,7, - 1,0,0,458,19,1,0,0,0,459,460,5,411,0,0,460,461,5,442,0,0,461,466, - 3,316,158,0,462,463,5,411,0,0,463,466,3,320,160,0,464,466,3,22,11, - 0,465,459,1,0,0,0,465,462,1,0,0,0,465,464,1,0,0,0,466,21,1,0,0,0, - 467,468,5,411,0,0,468,469,5,228,0,0,469,474,3,332,166,0,470,471, - 5,521,0,0,471,473,3,332,166,0,472,470,1,0,0,0,473,476,1,0,0,0,474, - 472,1,0,0,0,474,475,1,0,0,0,475,23,1,0,0,0,476,474,1,0,0,0,477,478, - 5,342,0,0,478,520,7,2,0,0,479,480,5,342,0,0,480,481,5,76,0,0,481, - 520,7,3,0,0,482,483,5,342,0,0,483,486,5,375,0,0,484,485,7,4,0,0, - 485,487,3,320,160,0,486,484,1,0,0,0,486,487,1,0,0,0,487,489,1,0, - 0,0,488,490,3,262,131,0,489,488,1,0,0,0,489,490,1,0,0,0,490,520, - 1,0,0,0,491,492,5,342,0,0,492,493,5,58,0,0,493,496,7,4,0,0,494,497, - 3,328,164,0,495,497,3,326,163,0,496,494,1,0,0,0,496,495,1,0,0,0, - 497,499,1,0,0,0,498,500,3,262,131,0,499,498,1,0,0,0,499,500,1,0, - 0,0,500,520,1,0,0,0,501,502,5,342,0,0,502,507,5,72,0,0,503,504,5, - 374,0,0,504,508,3,326,163,0,505,506,5,502,0,0,506,508,3,328,164, - 0,507,503,1,0,0,0,507,505,1,0,0,0,508,520,1,0,0,0,509,511,5,342, - 0,0,510,512,5,412,0,0,511,510,1,0,0,0,511,512,1,0,0,0,512,513,1, - 0,0,0,513,520,5,154,0,0,514,516,5,342,0,0,515,517,5,152,0,0,516, - 515,1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518,520,5,228,0,0,519, - 477,1,0,0,0,519,479,1,0,0,0,519,482,1,0,0,0,519,491,1,0,0,0,519, - 501,1,0,0,0,519,509,1,0,0,0,519,514,1,0,0,0,520,25,1,0,0,0,521,522, - 5,469,0,0,522,523,5,227,0,0,523,526,3,332,166,0,524,525,5,434,0, - 0,525,527,3,340,170,0,526,524,1,0,0,0,526,527,1,0,0,0,527,27,1,0, - 0,0,528,529,5,501,0,0,529,530,5,227,0,0,530,531,3,332,166,0,531, - 29,1,0,0,0,532,534,5,341,0,0,533,535,3,342,171,0,534,533,1,0,0,0, - 534,535,1,0,0,0,535,31,1,0,0,0,536,538,5,313,0,0,537,539,3,344,172, - 0,538,537,1,0,0,0,538,539,1,0,0,0,539,33,1,0,0,0,540,541,7,5,0,0, - 541,542,5,464,0,0,542,543,3,110,55,0,543,35,1,0,0,0,544,545,5,438, - 0,0,545,546,5,464,0,0,546,547,5,434,0,0,547,550,3,38,19,0,548,549, - 5,17,0,0,549,551,3,332,166,0,550,548,1,0,0,0,550,551,1,0,0,0,551, - 595,1,0,0,0,552,553,5,438,0,0,553,554,5,457,0,0,554,555,5,434,0, - 0,555,558,3,38,19,0,556,557,5,17,0,0,557,559,3,332,166,0,558,556, - 1,0,0,0,558,559,1,0,0,0,559,562,1,0,0,0,560,561,5,312,0,0,561,563, - 3,332,166,0,562,560,1,0,0,0,562,563,1,0,0,0,563,595,1,0,0,0,564, - 565,5,438,0,0,565,566,7,6,0,0,566,567,5,434,0,0,567,568,3,38,19, - 0,568,569,5,312,0,0,569,570,3,332,166,0,570,595,1,0,0,0,571,572, - 5,438,0,0,572,573,5,487,0,0,573,595,3,38,19,0,574,575,5,438,0,0, - 575,576,5,454,0,0,576,577,5,457,0,0,577,578,5,434,0,0,578,579,3, - 38,19,0,579,580,5,312,0,0,580,581,3,332,166,0,581,582,5,467,0,0, - 582,583,3,332,166,0,583,595,1,0,0,0,584,585,5,438,0,0,585,586,5, - 444,0,0,586,587,5,457,0,0,587,588,5,434,0,0,588,589,3,38,19,0,589, - 590,5,146,0,0,590,591,3,332,166,0,591,592,5,17,0,0,592,593,3,332, - 166,0,593,595,1,0,0,0,594,544,1,0,0,0,594,552,1,0,0,0,594,564,1, - 0,0,0,594,571,1,0,0,0,594,574,1,0,0,0,594,584,1,0,0,0,595,37,1,0, - 0,0,596,598,5,535,0,0,597,596,1,0,0,0,597,598,1,0,0,0,598,599,1, - 0,0,0,599,601,3,332,166,0,600,597,1,0,0,0,601,602,1,0,0,0,602,600, - 1,0,0,0,602,603,1,0,0,0,603,39,1,0,0,0,604,607,3,42,21,0,605,607, - 3,44,22,0,606,604,1,0,0,0,606,605,1,0,0,0,607,41,1,0,0,0,608,610, - 5,72,0,0,609,611,5,498,0,0,610,609,1,0,0,0,610,611,1,0,0,0,611,612, - 1,0,0,0,612,614,5,374,0,0,613,615,3,336,168,0,614,613,1,0,0,0,614, - 615,1,0,0,0,615,616,1,0,0,0,616,617,3,324,162,0,617,618,5,517,0, - 0,618,623,3,46,23,0,619,620,5,521,0,0,620,622,3,46,23,0,621,619, - 1,0,0,0,622,625,1,0,0,0,623,621,1,0,0,0,623,624,1,0,0,0,624,628, - 1,0,0,0,625,623,1,0,0,0,626,627,5,521,0,0,627,629,3,80,40,0,628, - 626,1,0,0,0,628,629,1,0,0,0,629,632,1,0,0,0,630,631,5,521,0,0,631, - 633,3,82,41,0,632,630,1,0,0,0,632,633,1,0,0,0,633,636,1,0,0,0,634, - 635,5,521,0,0,635,637,3,86,43,0,636,634,1,0,0,0,636,637,1,0,0,0, - 637,638,1,0,0,0,638,641,5,518,0,0,639,640,5,59,0,0,640,642,5,538, - 0,0,641,639,1,0,0,0,641,642,1,0,0,0,642,644,1,0,0,0,643,645,3,88, - 44,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,648,3,334, - 167,0,647,649,3,96,48,0,648,647,1,0,0,0,648,649,1,0,0,0,649,43,1, - 0,0,0,650,651,5,72,0,0,651,653,5,374,0,0,652,654,3,336,168,0,653, - 652,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,656,3,324,162,0, - 656,659,3,334,167,0,657,658,5,17,0,0,658,660,3,156,78,0,659,657, - 1,0,0,0,659,660,1,0,0,0,660,45,1,0,0,0,661,665,3,48,24,0,662,665, - 3,72,36,0,663,665,3,76,38,0,664,661,1,0,0,0,664,662,1,0,0,0,664, - 663,1,0,0,0,665,47,1,0,0,0,666,667,3,50,25,0,667,669,3,56,28,0,668, - 670,3,70,35,0,669,668,1,0,0,0,669,670,1,0,0,0,670,673,1,0,0,0,671, - 672,5,59,0,0,672,674,5,538,0,0,673,671,1,0,0,0,673,674,1,0,0,0,674, - 49,1,0,0,0,675,678,3,332,166,0,676,678,3,256,128,0,677,675,1,0,0, - 0,677,676,1,0,0,0,678,51,1,0,0,0,679,682,3,332,166,0,680,682,4,26, - 0,0,681,679,1,0,0,0,681,680,1,0,0,0,682,53,1,0,0,0,683,684,5,517, - 0,0,684,689,3,52,26,0,685,686,5,521,0,0,686,688,3,52,26,0,687,685, - 1,0,0,0,688,691,1,0,0,0,689,687,1,0,0,0,689,690,1,0,0,0,690,692, - 1,0,0,0,691,689,1,0,0,0,692,693,5,518,0,0,693,55,1,0,0,0,694,732, - 7,7,0,0,695,697,7,8,0,0,696,698,3,58,29,0,697,696,1,0,0,0,697,698, - 1,0,0,0,698,732,1,0,0,0,699,701,5,380,0,0,700,702,3,58,29,0,701, - 700,1,0,0,0,701,702,1,0,0,0,702,709,1,0,0,0,703,705,7,9,0,0,704, - 706,5,207,0,0,705,704,1,0,0,0,705,706,1,0,0,0,706,707,1,0,0,0,707, - 708,5,379,0,0,708,710,5,505,0,0,709,703,1,0,0,0,709,710,1,0,0,0, - 710,732,1,0,0,0,711,713,7,10,0,0,712,714,3,60,30,0,713,712,1,0,0, - 0,713,714,1,0,0,0,714,732,1,0,0,0,715,717,7,11,0,0,716,718,3,64, - 32,0,717,716,1,0,0,0,717,718,1,0,0,0,718,732,1,0,0,0,719,721,5,470, - 0,0,720,722,3,66,33,0,721,720,1,0,0,0,721,722,1,0,0,0,722,732,1, - 0,0,0,723,725,5,322,0,0,724,726,3,68,34,0,725,724,1,0,0,0,725,726, - 1,0,0,0,726,732,1,0,0,0,727,729,5,295,0,0,728,730,3,62,31,0,729, - 728,1,0,0,0,729,730,1,0,0,0,730,732,1,0,0,0,731,694,1,0,0,0,731, - 695,1,0,0,0,731,699,1,0,0,0,731,711,1,0,0,0,731,715,1,0,0,0,731, - 719,1,0,0,0,731,723,1,0,0,0,731,727,1,0,0,0,732,57,1,0,0,0,733,734, - 5,517,0,0,734,735,3,364,182,0,735,736,5,518,0,0,736,59,1,0,0,0,737, - 738,5,517,0,0,738,741,3,364,182,0,739,740,5,521,0,0,740,742,3,364, - 182,0,741,739,1,0,0,0,741,742,1,0,0,0,742,743,1,0,0,0,743,744,5, - 518,0,0,744,61,1,0,0,0,745,746,5,517,0,0,746,749,3,362,181,0,747, - 748,5,521,0,0,748,750,3,362,181,0,749,747,1,0,0,0,749,750,1,0,0, - 0,750,751,1,0,0,0,751,752,5,518,0,0,752,63,1,0,0,0,753,754,5,508, - 0,0,754,755,3,56,28,0,755,756,5,507,0,0,756,65,1,0,0,0,757,758,5, - 508,0,0,758,759,3,56,28,0,759,760,5,521,0,0,760,761,3,56,28,0,761, - 762,1,0,0,0,762,763,5,507,0,0,763,67,1,0,0,0,764,765,5,508,0,0,765, - 766,3,52,26,0,766,773,3,56,28,0,767,768,5,521,0,0,768,769,3,52,26, - 0,769,770,3,56,28,0,770,772,1,0,0,0,771,767,1,0,0,0,772,775,1,0, - 0,0,773,771,1,0,0,0,773,774,1,0,0,0,774,776,1,0,0,0,775,773,1,0, - 0,0,776,777,5,507,0,0,777,793,1,0,0,0,778,779,5,517,0,0,779,780, - 3,52,26,0,780,787,3,56,28,0,781,782,5,521,0,0,782,783,3,52,26,0, - 783,784,3,56,28,0,784,786,1,0,0,0,785,781,1,0,0,0,786,789,1,0,0, - 0,787,785,1,0,0,0,787,788,1,0,0,0,788,790,1,0,0,0,789,787,1,0,0, - 0,790,791,5,518,0,0,791,793,1,0,0,0,792,764,1,0,0,0,792,778,1,0, - 0,0,793,69,1,0,0,0,794,795,5,64,0,0,795,797,3,84,42,0,796,794,1, - 0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,799,5,289,0,0,799,802, - 5,467,0,0,800,801,5,242,0,0,801,803,5,125,0,0,802,800,1,0,0,0,802, - 803,1,0,0,0,803,809,1,0,0,0,804,806,5,242,0,0,805,804,1,0,0,0,805, - 806,1,0,0,0,806,807,1,0,0,0,807,809,5,245,0,0,808,796,1,0,0,0,808, - 805,1,0,0,0,809,71,1,0,0,0,810,811,3,50,25,0,811,812,3,56,28,0,812, - 815,5,219,0,0,813,814,5,151,0,0,814,816,3,74,37,0,815,813,1,0,0, - 0,815,816,1,0,0,0,816,818,1,0,0,0,817,819,5,424,0,0,818,817,1,0, - 0,0,818,819,1,0,0,0,819,73,1,0,0,0,820,821,5,538,0,0,821,75,1,0, - 0,0,822,823,3,50,25,0,823,824,5,17,0,0,824,827,3,78,39,0,825,826, - 5,59,0,0,826,828,5,538,0,0,827,825,1,0,0,0,827,828,1,0,0,0,828,77, - 1,0,0,0,829,830,3,256,128,0,830,79,1,0,0,0,831,832,5,425,0,0,832, - 833,5,146,0,0,833,834,3,52,26,0,834,835,5,17,0,0,835,836,3,256,128, - 0,836,81,1,0,0,0,837,838,5,64,0,0,838,840,3,84,42,0,839,837,1,0, - 0,0,839,840,1,0,0,0,840,841,1,0,0,0,841,842,5,289,0,0,842,843,5, - 467,0,0,843,844,3,54,27,0,844,845,5,242,0,0,845,846,5,125,0,0,846, - 83,1,0,0,0,847,848,3,308,154,0,848,85,1,0,0,0,849,850,5,278,0,0, - 850,851,5,146,0,0,851,852,5,372,0,0,852,87,1,0,0,0,853,854,5,270, - 0,0,854,855,5,34,0,0,855,856,3,90,45,0,856,89,1,0,0,0,857,858,5, - 517,0,0,858,863,3,92,46,0,859,860,5,521,0,0,860,862,3,92,46,0,861, - 859,1,0,0,0,862,865,1,0,0,0,863,861,1,0,0,0,863,864,1,0,0,0,864, - 866,1,0,0,0,865,863,1,0,0,0,866,867,5,518,0,0,867,91,1,0,0,0,868, - 881,3,52,26,0,869,870,5,517,0,0,870,875,3,94,47,0,871,872,5,521, - 0,0,872,874,3,94,47,0,873,871,1,0,0,0,874,877,1,0,0,0,875,873,1, - 0,0,0,875,876,1,0,0,0,876,878,1,0,0,0,877,875,1,0,0,0,878,879,5, - 518,0,0,879,881,1,0,0,0,880,868,1,0,0,0,880,869,1,0,0,0,881,93,1, - 0,0,0,882,885,3,284,142,0,883,885,3,358,179,0,884,882,1,0,0,0,884, - 883,1,0,0,0,885,95,1,0,0,0,886,887,5,203,0,0,887,896,3,326,163,0, - 888,892,5,517,0,0,889,891,3,98,49,0,890,889,1,0,0,0,891,894,1,0, - 0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,895,1,0,0,0,894,892,1,0, - 0,0,895,897,5,518,0,0,896,888,1,0,0,0,896,897,1,0,0,0,897,97,1,0, - 0,0,898,899,7,12,0,0,899,903,7,13,0,0,900,901,7,14,0,0,901,903,7, - 15,0,0,902,898,1,0,0,0,902,900,1,0,0,0,903,99,1,0,0,0,904,905,5, - 72,0,0,905,906,5,442,0,0,906,907,3,318,159,0,907,908,3,334,167,0, - 908,101,1,0,0,0,909,910,5,72,0,0,910,912,5,448,0,0,911,913,3,336, - 168,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,917,3, - 322,161,0,915,916,5,59,0,0,916,918,5,538,0,0,917,915,1,0,0,0,917, - 918,1,0,0,0,918,919,1,0,0,0,919,920,3,334,167,0,920,103,1,0,0,0, - 921,923,5,72,0,0,922,924,5,498,0,0,923,922,1,0,0,0,923,924,1,0,0, - 0,924,925,1,0,0,0,925,927,5,502,0,0,926,928,3,336,168,0,927,926, - 1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,931,3,330,165,0,930, - 932,3,54,27,0,931,930,1,0,0,0,931,932,1,0,0,0,932,935,1,0,0,0,933, - 934,5,59,0,0,934,936,5,538,0,0,935,933,1,0,0,0,935,936,1,0,0,0,936, - 937,1,0,0,0,937,938,5,17,0,0,938,939,3,156,78,0,939,105,1,0,0,0, - 940,944,5,72,0,0,941,945,5,498,0,0,942,943,5,498,0,0,943,945,5,371, - 0,0,944,941,1,0,0,0,944,942,1,0,0,0,944,945,1,0,0,0,945,946,1,0, - 0,0,946,948,5,153,0,0,947,949,3,336,168,0,948,947,1,0,0,0,948,949, - 1,0,0,0,949,950,1,0,0,0,950,951,3,270,135,0,951,952,5,17,0,0,952, - 955,3,308,154,0,953,954,5,196,0,0,954,956,7,16,0,0,955,953,1,0,0, - 0,955,956,1,0,0,0,956,958,1,0,0,0,957,959,3,108,54,0,958,957,1,0, - 0,0,958,959,1,0,0,0,959,107,1,0,0,0,960,961,5,413,0,0,961,962,5, - 464,0,0,962,968,3,110,55,0,963,964,5,521,0,0,964,965,5,464,0,0,965, - 967,3,110,55,0,966,963,1,0,0,0,967,970,1,0,0,0,968,966,1,0,0,0,968, - 969,1,0,0,0,969,109,1,0,0,0,970,968,1,0,0,0,971,972,5,538,0,0,972, - 111,1,0,0,0,973,974,5,8,0,0,974,976,5,374,0,0,975,977,3,338,169, - 0,976,975,1,0,0,0,976,977,1,0,0,0,977,978,1,0,0,0,978,984,3,326, - 163,0,979,985,3,114,57,0,980,985,3,116,58,0,981,985,3,118,59,0,982, - 985,3,120,60,0,983,985,3,122,61,0,984,979,1,0,0,0,984,980,1,0,0, - 0,984,981,1,0,0,0,984,982,1,0,0,0,984,983,1,0,0,0,985,113,1,0,0, - 0,986,988,5,312,0,0,987,989,3,332,166,0,988,987,1,0,0,0,988,989, - 1,0,0,0,989,990,1,0,0,0,990,991,5,389,0,0,991,992,3,332,166,0,992, - 115,1,0,0,0,993,994,5,341,0,0,994,995,3,340,170,0,995,117,1,0,0, - 0,996,997,5,438,0,0,997,998,5,64,0,0,998,999,3,84,42,0,999,1000, - 5,289,0,0,1000,1001,5,467,0,0,1001,1003,3,54,27,0,1002,1004,3,124, - 62,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,119,1,0,0,0,1005,1006, - 5,116,0,0,1006,1007,5,64,0,0,1007,1008,3,84,42,0,1008,121,1,0,0, - 0,1009,1010,5,438,0,0,1010,1011,5,404,0,0,1011,1012,3,54,27,0,1012, - 123,1,0,0,0,1013,1014,5,242,0,0,1014,1015,5,125,0,0,1015,125,1,0, - 0,0,1016,1017,5,8,0,0,1017,1018,5,502,0,0,1018,1022,3,328,164,0, - 1019,1023,3,114,57,0,1020,1021,5,17,0,0,1021,1023,3,156,78,0,1022, - 1019,1,0,0,0,1022,1020,1,0,0,0,1023,127,1,0,0,0,1024,1025,5,8,0, - 0,1025,1026,5,448,0,0,1026,1027,3,320,160,0,1027,1028,3,116,58,0, - 1028,129,1,0,0,0,1029,1033,5,8,0,0,1030,1034,5,498,0,0,1031,1032, - 5,498,0,0,1032,1034,5,371,0,0,1033,1030,1,0,0,0,1033,1031,1,0,0, - 0,1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035,1037,5,153,0,0,1036,1038, - 3,338,169,0,1037,1036,1,0,0,0,1037,1038,1,0,0,0,1038,1039,1,0,0, - 0,1039,1040,3,272,136,0,1040,1041,5,17,0,0,1041,1044,3,308,154,0, - 1042,1043,5,196,0,0,1043,1045,7,16,0,0,1044,1042,1,0,0,0,1044,1045, - 1,0,0,0,1045,131,1,0,0,0,1046,1047,5,116,0,0,1047,1049,5,442,0,0, - 1048,1050,3,338,169,0,1049,1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051, - 1,0,0,0,1051,1052,3,316,158,0,1052,133,1,0,0,0,1053,1055,5,116,0, - 0,1054,1056,5,498,0,0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,1057, - 1,0,0,0,1057,1059,5,374,0,0,1058,1060,3,338,169,0,1059,1058,1,0, - 0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1062,3,326,163,0,1062, - 135,1,0,0,0,1063,1064,5,116,0,0,1064,1066,5,448,0,0,1065,1067,3, - 338,169,0,1066,1065,1,0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0, - 1068,1070,3,320,160,0,1069,1071,7,17,0,0,1070,1069,1,0,0,0,1070, - 1071,1,0,0,0,1071,137,1,0,0,0,1072,1074,5,116,0,0,1073,1075,5,498, - 0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1078, - 5,502,0,0,1077,1079,3,338,169,0,1078,1077,1,0,0,0,1078,1079,1,0, - 0,0,1079,1080,1,0,0,0,1080,1081,3,328,164,0,1081,139,1,0,0,0,1082, - 1086,5,116,0,0,1083,1087,5,498,0,0,1084,1085,5,498,0,0,1085,1087, - 5,371,0,0,1086,1083,1,0,0,0,1086,1084,1,0,0,0,1086,1087,1,0,0,0, - 1087,1088,1,0,0,0,1088,1090,5,153,0,0,1089,1091,3,338,169,0,1090, - 1089,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1093,3,272, - 136,0,1093,141,1,0,0,0,1094,1096,5,132,0,0,1095,1094,1,0,0,0,1095, - 1096,1,0,0,0,1096,1097,1,0,0,0,1097,1102,3,144,72,0,1098,1102,3, - 152,76,0,1099,1100,5,132,0,0,1100,1102,3,154,77,0,1101,1095,1,0, - 0,0,1101,1098,1,0,0,0,1101,1099,1,0,0,0,1102,143,1,0,0,0,1103,1104, - 5,177,0,0,1104,1105,7,18,0,0,1105,1114,3,326,163,0,1106,1108,3,146, - 73,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1110,1,0,0,0,1109, - 1111,3,54,27,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111,1112,1,0, - 0,0,1112,1115,3,156,78,0,1113,1115,3,148,74,0,1114,1107,1,0,0,0, - 1114,1113,1,0,0,0,1115,145,1,0,0,0,1116,1117,5,269,0,0,1117,1118, - 3,340,170,0,1118,147,1,0,0,0,1119,1120,5,415,0,0,1120,1125,3,150, - 75,0,1121,1122,5,521,0,0,1122,1124,3,150,75,0,1123,1121,1,0,0,0, - 1124,1127,1,0,0,0,1125,1123,1,0,0,0,1125,1126,1,0,0,0,1126,149,1, - 0,0,0,1127,1125,1,0,0,0,1128,1129,5,517,0,0,1129,1134,3,358,179, - 0,1130,1131,5,521,0,0,1131,1133,3,358,179,0,1132,1130,1,0,0,0,1133, - 1136,1,0,0,0,1134,1132,1,0,0,0,1134,1135,1,0,0,0,1135,1137,1,0,0, - 0,1136,1134,1,0,0,0,1137,1138,5,518,0,0,1138,151,1,0,0,0,1139,1140, - 5,24,0,0,1140,1141,5,355,0,0,1141,1142,5,341,0,0,1142,1146,5,522, - 0,0,1143,1144,3,144,72,0,1144,1145,5,522,0,0,1145,1147,1,0,0,0,1146, - 1143,1,0,0,0,1147,1148,1,0,0,0,1148,1146,1,0,0,0,1148,1149,1,0,0, - 0,1149,1150,1,0,0,0,1150,1151,5,122,0,0,1151,153,1,0,0,0,1152,1153, - 5,355,0,0,1153,1154,5,341,0,0,1154,1158,5,24,0,0,1155,1156,3,144, - 72,0,1156,1157,5,522,0,0,1157,1159,1,0,0,0,1158,1155,1,0,0,0,1159, - 1160,1,0,0,0,1160,1158,1,0,0,0,1160,1161,1,0,0,0,1161,1162,1,0,0, - 0,1162,1163,5,122,0,0,1163,155,1,0,0,0,1164,1165,6,78,-1,0,1165, - 1188,3,158,79,0,1166,1167,3,160,80,0,1167,1168,3,156,78,5,1168,1188, - 1,0,0,0,1169,1170,5,517,0,0,1170,1171,3,156,78,0,1171,1172,5,518, - 0,0,1172,1188,1,0,0,0,1173,1175,3,168,84,0,1174,1176,3,228,114,0, - 1175,1174,1,0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1179, - 3,232,116,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1188,1,0,0, - 0,1180,1182,3,166,83,0,1181,1183,3,228,114,0,1182,1181,1,0,0,0,1182, - 1183,1,0,0,0,1183,1185,1,0,0,0,1184,1186,3,232,116,0,1185,1184,1, - 0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187,1164,1,0,0,0,1187, - 1166,1,0,0,0,1187,1169,1,0,0,0,1187,1173,1,0,0,0,1187,1180,1,0,0, - 0,1188,1203,1,0,0,0,1189,1190,10,3,0,0,1190,1192,7,19,0,0,1191,1193, - 5,5,0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1194,1,0,0,0,1194, - 1196,3,156,78,0,1195,1197,3,228,114,0,1196,1195,1,0,0,0,1196,1197, - 1,0,0,0,1197,1199,1,0,0,0,1198,1200,3,232,116,0,1199,1198,1,0,0, - 0,1199,1200,1,0,0,0,1200,1202,1,0,0,0,1201,1189,1,0,0,0,1202,1205, - 1,0,0,0,1203,1201,1,0,0,0,1203,1204,1,0,0,0,1204,157,1,0,0,0,1205, - 1203,1,0,0,0,1206,1207,5,415,0,0,1207,1212,3,256,128,0,1208,1209, - 5,521,0,0,1209,1211,3,256,128,0,1210,1208,1,0,0,0,1211,1214,1,0, - 0,0,1212,1210,1,0,0,0,1212,1213,1,0,0,0,1213,159,1,0,0,0,1214,1212, - 1,0,0,0,1215,1216,5,434,0,0,1216,1221,3,162,81,0,1217,1218,5,521, - 0,0,1218,1220,3,162,81,0,1219,1217,1,0,0,0,1220,1223,1,0,0,0,1221, - 1219,1,0,0,0,1221,1222,1,0,0,0,1222,161,1,0,0,0,1223,1221,1,0,0, - 0,1224,1236,3,164,82,0,1225,1226,5,517,0,0,1226,1231,3,52,26,0,1227, - 1228,5,521,0,0,1228,1230,3,52,26,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,1234,1,0,0,0,1233, - 1231,1,0,0,0,1234,1235,5,518,0,0,1235,1237,1,0,0,0,1236,1225,1,0, - 0,0,1236,1237,1,0,0,0,1237,1238,1,0,0,0,1238,1239,5,17,0,0,1239, - 1240,5,517,0,0,1240,1241,3,156,78,0,1241,1242,5,518,0,0,1242,163, - 1,0,0,0,1243,1244,3,308,154,0,1244,165,1,0,0,0,1245,1247,3,168,84, - 0,1246,1248,3,174,87,0,1247,1246,1,0,0,0,1247,1248,1,0,0,0,1248, - 1250,1,0,0,0,1249,1251,3,202,101,0,1250,1249,1,0,0,0,1250,1251,1, - 0,0,0,1251,1253,1,0,0,0,1252,1254,3,204,102,0,1253,1252,1,0,0,0, - 1253,1254,1,0,0,0,1254,1256,1,0,0,0,1255,1257,3,218,109,0,1256,1255, - 1,0,0,0,1256,1257,1,0,0,0,1257,1259,1,0,0,0,1258,1260,3,220,110, - 0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260,1266,1,0,0,0,1261,1262, - 3,168,84,0,1262,1263,3,174,87,0,1263,1264,3,226,113,0,1264,1266, - 1,0,0,0,1265,1245,1,0,0,0,1265,1261,1,0,0,0,1266,167,1,0,0,0,1267, - 1269,5,337,0,0,1268,1270,3,368,184,0,1269,1268,1,0,0,0,1269,1270, - 1,0,0,0,1270,1280,1,0,0,0,1271,1281,5,528,0,0,1272,1277,3,170,85, - 0,1273,1274,5,521,0,0,1274,1276,3,170,85,0,1275,1273,1,0,0,0,1276, - 1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278,1,0,0,0,1278,1281,1,0,0, - 0,1279,1277,1,0,0,0,1280,1271,1,0,0,0,1280,1272,1,0,0,0,1281,169, - 1,0,0,0,1282,1298,3,172,86,0,1283,1288,3,256,128,0,1284,1286,5,17, - 0,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287,1,0,0,0,1287,1289, - 3,52,26,0,1288,1285,1,0,0,0,1288,1289,1,0,0,0,1289,1298,1,0,0,0, - 1290,1295,3,52,26,0,1291,1293,5,17,0,0,1292,1291,1,0,0,0,1292,1293, - 1,0,0,0,1293,1294,1,0,0,0,1294,1296,3,256,128,0,1295,1292,1,0,0, - 0,1295,1296,1,0,0,0,1296,1298,1,0,0,0,1297,1282,1,0,0,0,1297,1283, - 1,0,0,0,1297,1290,1,0,0,0,1298,171,1,0,0,0,1299,1300,3,268,134,0, - 1300,1301,5,263,0,0,1301,1302,3,224,112,0,1302,1303,5,17,0,0,1303, - 1304,3,308,154,0,1304,1312,1,0,0,0,1305,1306,3,268,134,0,1306,1307, - 5,263,0,0,1307,1308,3,300,150,0,1308,1309,5,17,0,0,1309,1310,3,308, - 154,0,1310,1312,1,0,0,0,1311,1299,1,0,0,0,1311,1305,1,0,0,0,1312, - 173,1,0,0,0,1313,1314,5,151,0,0,1314,1315,3,176,88,0,1315,175,1, - 0,0,0,1316,1317,6,88,-1,0,1317,1322,3,178,89,0,1318,1319,5,521,0, - 0,1319,1321,3,178,89,0,1320,1318,1,0,0,0,1321,1324,1,0,0,0,1322, - 1320,1,0,0,0,1322,1323,1,0,0,0,1323,1328,1,0,0,0,1324,1322,1,0,0, - 0,1325,1328,3,186,93,0,1326,1328,3,188,94,0,1327,1316,1,0,0,0,1327, - 1325,1,0,0,0,1327,1326,1,0,0,0,1328,1350,1,0,0,0,1329,1330,10,3, - 0,0,1330,1331,5,73,0,0,1331,1332,5,185,0,0,1332,1349,3,176,88,4, - 1333,1335,10,4,0,0,1334,1336,5,234,0,0,1335,1334,1,0,0,0,1335,1336, - 1,0,0,0,1336,1338,1,0,0,0,1337,1339,7,20,0,0,1338,1337,1,0,0,0,1338, - 1339,1,0,0,0,1339,1341,1,0,0,0,1340,1342,5,262,0,0,1341,1340,1,0, - 0,0,1341,1342,1,0,0,0,1342,1343,1,0,0,0,1343,1344,5,185,0,0,1344, - 1346,3,176,88,0,1345,1347,3,200,100,0,1346,1345,1,0,0,0,1346,1347, - 1,0,0,0,1347,1349,1,0,0,0,1348,1329,1,0,0,0,1348,1333,1,0,0,0,1349, - 1352,1,0,0,0,1350,1348,1,0,0,0,1350,1351,1,0,0,0,1351,177,1,0,0, - 0,1352,1350,1,0,0,0,1353,1355,3,180,90,0,1354,1356,3,298,149,0,1355, - 1354,1,0,0,0,1355,1356,1,0,0,0,1356,179,1,0,0,0,1357,1359,5,374, - 0,0,1358,1357,1,0,0,0,1358,1359,1,0,0,0,1359,1360,1,0,0,0,1360,1362, - 3,326,163,0,1361,1363,3,182,91,0,1362,1361,1,0,0,0,1362,1363,1,0, - 0,0,1363,1387,1,0,0,0,1364,1366,3,328,164,0,1365,1367,3,182,91,0, - 1366,1365,1,0,0,0,1366,1367,1,0,0,0,1367,1387,1,0,0,0,1368,1369, - 5,199,0,0,1369,1370,5,374,0,0,1370,1371,5,517,0,0,1371,1372,3,266, - 133,0,1372,1373,5,518,0,0,1373,1387,1,0,0,0,1374,1376,5,199,0,0, - 1375,1374,1,0,0,0,1375,1376,1,0,0,0,1376,1377,1,0,0,0,1377,1378, - 5,517,0,0,1378,1379,3,156,78,0,1379,1380,5,518,0,0,1380,1387,1,0, - 0,0,1381,1382,5,406,0,0,1382,1383,5,517,0,0,1383,1384,3,256,128, - 0,1384,1385,5,518,0,0,1385,1387,1,0,0,0,1386,1358,1,0,0,0,1386,1364, - 1,0,0,0,1386,1368,1,0,0,0,1386,1375,1,0,0,0,1386,1381,1,0,0,0,1387, - 181,1,0,0,0,1388,1389,5,146,0,0,1389,1390,5,372,0,0,1390,1391,5, - 17,0,0,1391,1392,5,250,0,0,1392,1393,3,184,92,0,1393,183,1,0,0,0, - 1394,1395,3,256,128,0,1395,185,1,0,0,0,1396,1397,5,517,0,0,1397, - 1398,3,148,74,0,1398,1399,5,518,0,0,1399,1400,3,298,149,0,1400,187, - 1,0,0,0,1401,1402,5,374,0,0,1402,1403,5,517,0,0,1403,1404,3,190, - 95,0,1404,1405,5,518,0,0,1405,189,1,0,0,0,1406,1407,3,192,96,0,1407, - 1408,5,517,0,0,1408,1413,3,194,97,0,1409,1410,5,521,0,0,1410,1412, - 3,194,97,0,1411,1409,1,0,0,0,1412,1415,1,0,0,0,1413,1411,1,0,0,0, - 1413,1414,1,0,0,0,1414,1416,1,0,0,0,1415,1413,1,0,0,0,1416,1417, - 5,518,0,0,1417,191,1,0,0,0,1418,1419,7,21,0,0,1419,193,1,0,0,0,1420, - 1421,5,374,0,0,1421,1436,3,216,108,0,1422,1436,3,198,99,0,1423,1436, - 3,286,143,0,1424,1425,5,447,0,0,1425,1426,5,537,0,0,1426,1427,5, - 374,0,0,1427,1436,3,216,108,0,1428,1429,5,499,0,0,1429,1430,5,537, - 0,0,1430,1436,3,198,99,0,1431,1432,3,196,98,0,1432,1433,5,537,0, - 0,1433,1434,3,286,143,0,1434,1436,1,0,0,0,1435,1420,1,0,0,0,1435, - 1422,1,0,0,0,1435,1423,1,0,0,0,1435,1424,1,0,0,0,1435,1428,1,0,0, - 0,1435,1431,1,0,0,0,1436,195,1,0,0,0,1437,1438,7,22,0,0,1438,197, - 1,0,0,0,1439,1440,5,452,0,0,1440,1441,5,517,0,0,1441,1442,3,52,26, - 0,1442,1443,5,518,0,0,1443,199,1,0,0,0,1444,1445,5,254,0,0,1445, - 1449,3,258,129,0,1446,1447,5,413,0,0,1447,1449,3,54,27,0,1448,1444, - 1,0,0,0,1448,1446,1,0,0,0,1449,201,1,0,0,0,1450,1451,5,431,0,0,1451, - 1452,3,258,129,0,1452,203,1,0,0,0,1453,1454,5,159,0,0,1454,1455, - 5,34,0,0,1455,1460,3,206,103,0,1456,1457,5,521,0,0,1457,1459,3,206, - 103,0,1458,1456,1,0,0,0,1459,1462,1,0,0,0,1460,1458,1,0,0,0,1460, - 1461,1,0,0,0,1461,205,1,0,0,0,1462,1460,1,0,0,0,1463,1504,3,52,26, - 0,1464,1504,3,212,106,0,1465,1466,5,517,0,0,1466,1504,5,518,0,0, - 1467,1468,5,517,0,0,1468,1473,3,256,128,0,1469,1470,5,521,0,0,1470, - 1472,3,256,128,0,1471,1469,1,0,0,0,1472,1475,1,0,0,0,1473,1471,1, - 0,0,0,1473,1474,1,0,0,0,1474,1476,1,0,0,0,1475,1473,1,0,0,0,1476, - 1477,5,518,0,0,1477,1504,1,0,0,0,1478,1479,3,210,105,0,1479,1480, - 5,517,0,0,1480,1485,3,256,128,0,1481,1482,5,521,0,0,1482,1484,3, - 256,128,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0, - 1485,1486,1,0,0,0,1486,1488,1,0,0,0,1487,1485,1,0,0,0,1488,1489, - 5,518,0,0,1489,1504,1,0,0,0,1490,1491,3,208,104,0,1491,1492,5,517, - 0,0,1492,1497,3,206,103,0,1493,1494,5,521,0,0,1494,1496,3,206,103, - 0,1495,1493,1,0,0,0,1496,1499,1,0,0,0,1497,1495,1,0,0,0,1497,1498, - 1,0,0,0,1498,1500,1,0,0,0,1499,1497,1,0,0,0,1500,1501,5,518,0,0, - 1501,1504,1,0,0,0,1502,1504,3,256,128,0,1503,1463,1,0,0,0,1503,1464, - 1,0,0,0,1503,1465,1,0,0,0,1503,1467,1,0,0,0,1503,1478,1,0,0,0,1503, - 1490,1,0,0,0,1503,1502,1,0,0,0,1504,207,1,0,0,0,1505,1506,5,160, - 0,0,1506,1507,5,494,0,0,1507,209,1,0,0,0,1508,1509,7,23,0,0,1509, - 211,1,0,0,0,1510,1511,3,214,107,0,1511,1512,5,517,0,0,1512,1513, - 3,216,108,0,1513,1514,5,521,0,0,1514,1515,3,286,143,0,1515,1516, - 5,518,0,0,1516,213,1,0,0,0,1517,1518,7,24,0,0,1518,215,1,0,0,0,1519, - 1520,3,332,166,0,1520,217,1,0,0,0,1521,1522,5,163,0,0,1522,1523, - 3,258,129,0,1523,219,1,0,0,0,1524,1525,5,433,0,0,1525,1530,3,222, - 111,0,1526,1527,5,521,0,0,1527,1529,3,222,111,0,1528,1526,1,0,0, - 0,1529,1532,1,0,0,0,1530,1528,1,0,0,0,1530,1531,1,0,0,0,1531,221, - 1,0,0,0,1532,1530,1,0,0,0,1533,1534,3,300,150,0,1534,1535,5,17,0, - 0,1535,1536,3,224,112,0,1536,223,1,0,0,0,1537,1539,3,300,150,0,1538, - 1537,1,0,0,0,1538,1539,1,0,0,0,1539,1540,1,0,0,0,1540,1542,5,517, - 0,0,1541,1543,3,234,117,0,1542,1541,1,0,0,0,1542,1543,1,0,0,0,1543, - 1545,1,0,0,0,1544,1546,3,228,114,0,1545,1544,1,0,0,0,1545,1546,1, - 0,0,0,1546,1548,1,0,0,0,1547,1549,3,250,125,0,1548,1547,1,0,0,0, - 1548,1549,1,0,0,0,1549,1550,1,0,0,0,1550,1551,5,518,0,0,1551,225, - 1,0,0,0,1552,1553,5,214,0,0,1553,1555,5,517,0,0,1554,1556,3,234, - 117,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1558,1,0,0,0,1557, - 1559,3,228,114,0,1558,1557,1,0,0,0,1558,1559,1,0,0,0,1559,1561,1, - 0,0,0,1560,1562,3,238,119,0,1561,1560,1,0,0,0,1561,1562,1,0,0,0, - 1562,1564,1,0,0,0,1563,1565,3,244,122,0,1564,1563,1,0,0,0,1564,1565, - 1,0,0,0,1565,1567,1,0,0,0,1566,1568,3,246,123,0,1567,1566,1,0,0, - 0,1567,1568,1,0,0,0,1568,1570,1,0,0,0,1569,1571,3,240,120,0,1570, - 1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573,3,248, - 124,0,1573,1578,5,518,0,0,1574,1576,5,17,0,0,1575,1574,1,0,0,0,1575, - 1576,1,0,0,0,1576,1577,1,0,0,0,1577,1579,3,308,154,0,1578,1575,1, - 0,0,0,1578,1579,1,0,0,0,1579,227,1,0,0,0,1580,1581,5,259,0,0,1581, - 1582,5,34,0,0,1582,1587,3,230,115,0,1583,1584,5,521,0,0,1584,1586, - 3,230,115,0,1585,1583,1,0,0,0,1586,1589,1,0,0,0,1587,1585,1,0,0, - 0,1587,1588,1,0,0,0,1588,229,1,0,0,0,1589,1587,1,0,0,0,1590,1592, - 3,52,26,0,1591,1593,7,25,0,0,1592,1591,1,0,0,0,1592,1593,1,0,0,0, - 1593,1596,1,0,0,0,1594,1595,5,477,0,0,1595,1597,7,26,0,0,1596,1594, - 1,0,0,0,1596,1597,1,0,0,0,1597,231,1,0,0,0,1598,1601,5,205,0,0,1599, - 1602,5,5,0,0,1600,1602,3,256,128,0,1601,1599,1,0,0,0,1601,1600,1, - 0,0,0,1602,233,1,0,0,0,1603,1604,5,269,0,0,1604,1607,5,34,0,0,1605, - 1608,3,52,26,0,1606,1608,3,268,134,0,1607,1605,1,0,0,0,1607,1606, - 1,0,0,0,1608,1616,1,0,0,0,1609,1612,5,521,0,0,1610,1613,3,52,26, - 0,1611,1613,3,268,134,0,1612,1610,1,0,0,0,1612,1611,1,0,0,0,1613, - 1615,1,0,0,0,1614,1609,1,0,0,0,1615,1618,1,0,0,0,1616,1614,1,0,0, - 0,1616,1617,1,0,0,0,1617,235,1,0,0,0,1618,1616,1,0,0,0,1619,1636, - 5,528,0,0,1620,1636,5,531,0,0,1621,1636,5,536,0,0,1622,1623,5,519, - 0,0,1623,1624,5,539,0,0,1624,1625,5,521,0,0,1625,1626,5,539,0,0, - 1626,1636,5,520,0,0,1627,1628,5,519,0,0,1628,1629,5,539,0,0,1629, - 1630,5,521,0,0,1630,1636,5,520,0,0,1631,1632,5,519,0,0,1632,1633, - 5,521,0,0,1633,1634,5,539,0,0,1634,1636,5,520,0,0,1635,1619,1,0, - 0,0,1635,1620,1,0,0,0,1635,1621,1,0,0,0,1635,1622,1,0,0,0,1635,1627, - 1,0,0,0,1635,1631,1,0,0,0,1636,237,1,0,0,0,1637,1638,5,216,0,0,1638, - 1643,3,170,85,0,1639,1640,5,521,0,0,1640,1642,3,170,85,0,1641,1639, - 1,0,0,0,1642,1645,1,0,0,0,1643,1641,1,0,0,0,1643,1644,1,0,0,0,1644, - 239,1,0,0,0,1645,1643,1,0,0,0,1646,1647,5,272,0,0,1647,1649,5,517, - 0,0,1648,1650,3,242,121,0,1649,1648,1,0,0,0,1650,1651,1,0,0,0,1651, - 1649,1,0,0,0,1651,1652,1,0,0,0,1652,1653,1,0,0,0,1653,1655,5,518, - 0,0,1654,1656,3,254,127,0,1655,1654,1,0,0,0,1655,1656,1,0,0,0,1656, - 241,1,0,0,0,1657,1659,3,310,155,0,1658,1660,3,236,118,0,1659,1658, - 1,0,0,0,1659,1660,1,0,0,0,1660,243,1,0,0,0,1661,1662,5,5,0,0,1662, - 1663,5,323,0,0,1663,1664,5,273,0,0,1664,1670,5,211,0,0,1665,1666, - 5,255,0,0,1666,1667,5,322,0,0,1667,1668,5,273,0,0,1668,1670,5,211, - 0,0,1669,1661,1,0,0,0,1669,1665,1,0,0,0,1670,245,1,0,0,0,1671,1672, - 5,439,0,0,1672,1673,5,211,0,0,1673,1674,5,344,0,0,1674,1675,5,479, - 0,0,1675,1676,5,468,0,0,1676,1696,5,322,0,0,1677,1678,5,439,0,0, - 1678,1679,5,211,0,0,1679,1680,5,344,0,0,1680,1681,5,389,0,0,1681, - 1682,5,238,0,0,1682,1696,5,322,0,0,1683,1684,5,439,0,0,1684,1685, - 5,211,0,0,1685,1686,5,344,0,0,1686,1687,5,389,0,0,1687,1688,5,468, - 0,0,1688,1696,3,310,155,0,1689,1690,5,439,0,0,1690,1691,5,211,0, - 0,1691,1692,5,344,0,0,1692,1693,5,389,0,0,1693,1694,5,458,0,0,1694, - 1696,3,310,155,0,1695,1671,1,0,0,0,1695,1677,1,0,0,0,1695,1683,1, - 0,0,0,1695,1689,1,0,0,0,1696,247,1,0,0,0,1697,1698,5,105,0,0,1698, - 1703,3,170,85,0,1699,1700,5,521,0,0,1700,1702,3,170,85,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, - 249,1,0,0,0,1705,1703,1,0,0,0,1706,1707,5,293,0,0,1707,1708,5,27, - 0,0,1708,1709,3,286,143,0,1709,1710,3,252,126,0,1710,1716,1,0,0, - 0,1711,1712,5,323,0,0,1712,1713,5,27,0,0,1713,1714,5,539,0,0,1714, - 1716,3,252,126,0,1715,1706,1,0,0,0,1715,1711,1,0,0,0,1716,251,1, - 0,0,0,1717,1718,5,481,0,0,1718,1719,5,10,0,0,1719,1720,5,76,0,0, - 1720,1721,5,322,0,0,1721,253,1,0,0,0,1722,1723,5,435,0,0,1723,1724, - 3,286,143,0,1724,255,1,0,0,0,1725,1726,3,258,129,0,1726,257,1,0, - 0,0,1727,1728,6,129,-1,0,1728,1729,5,242,0,0,1729,1740,3,258,129, - 6,1730,1731,5,133,0,0,1731,1732,5,517,0,0,1732,1733,3,156,78,0,1733, - 1734,5,518,0,0,1734,1740,1,0,0,0,1735,1737,3,264,132,0,1736,1738, - 3,260,130,0,1737,1736,1,0,0,0,1737,1738,1,0,0,0,1738,1740,1,0,0, - 0,1739,1727,1,0,0,0,1739,1730,1,0,0,0,1739,1735,1,0,0,0,1740,1755, - 1,0,0,0,1741,1742,10,3,0,0,1742,1743,5,10,0,0,1743,1754,3,258,129, - 4,1744,1745,10,2,0,0,1745,1746,5,258,0,0,1746,1754,3,258,129,3,1747, - 1748,10,1,0,0,1748,1750,5,184,0,0,1749,1751,5,242,0,0,1750,1749, - 1,0,0,0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754,7,27,0,0,1753, - 1741,1,0,0,0,1753,1744,1,0,0,0,1753,1747,1,0,0,0,1754,1757,1,0,0, - 0,1755,1753,1,0,0,0,1755,1756,1,0,0,0,1756,259,1,0,0,0,1757,1755, - 1,0,0,0,1758,1760,5,242,0,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0, - 1760,1761,1,0,0,0,1761,1763,5,27,0,0,1762,1764,7,28,0,0,1763,1762, - 1,0,0,0,1763,1764,1,0,0,0,1764,1765,1,0,0,0,1765,1766,3,264,132, - 0,1766,1767,5,10,0,0,1767,1768,3,264,132,0,1768,1833,1,0,0,0,1769, - 1771,5,242,0,0,1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0, - 0,0,1772,1773,5,170,0,0,1773,1774,5,517,0,0,1774,1779,3,256,128, - 0,1775,1776,5,521,0,0,1776,1778,3,256,128,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,518,0,0,1783,1833,1,0,0,0,1784,1786, - 5,242,0,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786,1787,1,0,0,0, - 1787,1788,5,170,0,0,1788,1789,5,517,0,0,1789,1790,3,156,78,0,1790, - 1791,5,518,0,0,1791,1833,1,0,0,0,1792,1793,5,133,0,0,1793,1794,5, - 517,0,0,1794,1795,3,156,78,0,1795,1796,5,518,0,0,1796,1833,1,0,0, - 0,1797,1799,5,242,0,0,1798,1797,1,0,0,0,1798,1799,1,0,0,0,1799,1800, - 1,0,0,0,1800,1801,5,319,0,0,1801,1833,3,264,132,0,1802,1833,3,262, - 131,0,1803,1805,5,184,0,0,1804,1806,5,242,0,0,1805,1804,1,0,0,0, - 1805,1806,1,0,0,0,1806,1807,1,0,0,0,1807,1833,7,27,0,0,1808,1810, - 5,184,0,0,1809,1811,5,242,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0, - 0,1811,1812,1,0,0,0,1812,1813,5,113,0,0,1813,1814,5,151,0,0,1814, - 1833,3,264,132,0,1815,1817,5,242,0,0,1816,1815,1,0,0,0,1816,1817, - 1,0,0,0,1817,1818,1,0,0,0,1818,1819,5,343,0,0,1819,1820,5,389,0, - 0,1820,1823,3,264,132,0,1821,1822,5,127,0,0,1822,1824,3,362,181, - 0,1823,1821,1,0,0,0,1823,1824,1,0,0,0,1824,1833,1,0,0,0,1825,1826, - 5,184,0,0,1826,1830,5,186,0,0,1827,1831,5,414,0,0,1828,1831,5,13, - 0,0,1829,1831,3,308,154,0,1830,1827,1,0,0,0,1830,1828,1,0,0,0,1830, - 1829,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1759,1,0,0, - 0,1832,1770,1,0,0,0,1832,1785,1,0,0,0,1832,1792,1,0,0,0,1832,1798, - 1,0,0,0,1832,1802,1,0,0,0,1832,1803,1,0,0,0,1832,1808,1,0,0,0,1832, - 1816,1,0,0,0,1832,1825,1,0,0,0,1833,261,1,0,0,0,1834,1836,5,242, - 0,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1837,1,0,0,0,1837,1838, - 5,203,0,0,1838,1852,7,29,0,0,1839,1840,5,517,0,0,1840,1853,5,518, - 0,0,1841,1842,5,517,0,0,1842,1847,3,256,128,0,1843,1844,5,521,0, - 0,1844,1846,3,256,128,0,1845,1843,1,0,0,0,1846,1849,1,0,0,0,1847, - 1845,1,0,0,0,1847,1848,1,0,0,0,1848,1850,1,0,0,0,1849,1847,1,0,0, - 0,1850,1851,5,518,0,0,1851,1853,1,0,0,0,1852,1839,1,0,0,0,1852,1841, - 1,0,0,0,1853,1864,1,0,0,0,1854,1856,5,242,0,0,1855,1854,1,0,0,0, - 1855,1856,1,0,0,0,1856,1857,1,0,0,0,1857,1858,5,203,0,0,1858,1861, - 3,264,132,0,1859,1860,5,127,0,0,1860,1862,3,362,181,0,1861,1859, - 1,0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1835,1,0,0,0,1863, - 1855,1,0,0,0,1864,263,1,0,0,0,1865,1866,6,132,-1,0,1866,1870,3,268, - 134,0,1867,1868,7,30,0,0,1868,1870,3,264,132,7,1869,1865,1,0,0,0, - 1869,1867,1,0,0,0,1870,1892,1,0,0,0,1871,1872,10,6,0,0,1872,1873, - 7,31,0,0,1873,1891,3,264,132,7,1874,1875,10,5,0,0,1875,1876,7,32, - 0,0,1876,1891,3,264,132,6,1877,1878,10,4,0,0,1878,1879,5,512,0,0, - 1879,1891,3,264,132,5,1880,1881,10,3,0,0,1881,1882,5,513,0,0,1882, - 1891,3,264,132,4,1883,1884,10,2,0,0,1884,1885,5,511,0,0,1885,1891, - 3,264,132,3,1886,1887,10,1,0,0,1887,1888,3,350,175,0,1888,1889,3, - 264,132,2,1889,1891,1,0,0,0,1890,1871,1,0,0,0,1890,1874,1,0,0,0, - 1890,1877,1,0,0,0,1890,1880,1,0,0,0,1890,1883,1,0,0,0,1890,1886, - 1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0,0,1892,1893,1,0,0,0,1893, - 265,1,0,0,0,1894,1892,1,0,0,0,1895,1915,3,376,188,0,1896,1915,3, - 274,137,0,1897,1898,3,276,138,0,1898,1910,5,517,0,0,1899,1901,3, - 368,184,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902,1,0,0,0, - 1902,1907,3,278,139,0,1903,1904,5,521,0,0,1904,1906,3,278,139,0, - 1905,1903,1,0,0,0,1906,1909,1,0,0,0,1907,1905,1,0,0,0,1907,1908, - 1,0,0,0,1908,1911,1,0,0,0,1909,1907,1,0,0,0,1910,1900,1,0,0,0,1910, - 1911,1,0,0,0,1911,1912,1,0,0,0,1912,1913,5,518,0,0,1913,1915,1,0, - 0,0,1914,1895,1,0,0,0,1914,1896,1,0,0,0,1914,1897,1,0,0,0,1915,267, - 1,0,0,0,1916,1917,6,134,-1,0,1917,1919,5,40,0,0,1918,1920,3,314, - 157,0,1919,1918,1,0,0,0,1920,1921,1,0,0,0,1921,1919,1,0,0,0,1921, - 1922,1,0,0,0,1922,1925,1,0,0,0,1923,1924,5,120,0,0,1924,1926,3,256, - 128,0,1925,1923,1,0,0,0,1925,1926,1,0,0,0,1926,1927,1,0,0,0,1927, - 1928,5,122,0,0,1928,1992,1,0,0,0,1929,1930,5,40,0,0,1930,1932,3, - 256,128,0,1931,1933,3,314,157,0,1932,1931,1,0,0,0,1933,1934,1,0, - 0,0,1934,1932,1,0,0,0,1934,1935,1,0,0,0,1935,1938,1,0,0,0,1936,1937, - 5,120,0,0,1937,1939,3,256,128,0,1938,1936,1,0,0,0,1938,1939,1,0, - 0,0,1939,1940,1,0,0,0,1940,1941,5,122,0,0,1941,1992,1,0,0,0,1942, - 1943,5,41,0,0,1943,1944,5,517,0,0,1944,1945,3,256,128,0,1945,1946, - 5,17,0,0,1946,1947,3,56,28,0,1947,1948,5,518,0,0,1948,1992,1,0,0, - 0,1949,1950,5,458,0,0,1950,1951,5,517,0,0,1951,1954,3,256,128,0, - 1952,1953,5,462,0,0,1953,1955,5,477,0,0,1954,1952,1,0,0,0,1954,1955, - 1,0,0,0,1955,1956,1,0,0,0,1956,1957,5,518,0,0,1957,1992,1,0,0,0, - 1958,1959,5,468,0,0,1959,1960,5,517,0,0,1960,1963,3,256,128,0,1961, - 1962,5,462,0,0,1962,1964,5,477,0,0,1963,1961,1,0,0,0,1963,1964,1, - 0,0,0,1964,1965,1,0,0,0,1965,1966,5,518,0,0,1966,1992,1,0,0,0,1967, - 1968,5,282,0,0,1968,1969,5,517,0,0,1969,1970,3,264,132,0,1970,1971, - 5,170,0,0,1971,1972,3,264,132,0,1972,1973,5,518,0,0,1973,1992,1, - 0,0,0,1974,1992,3,358,179,0,1975,1992,5,528,0,0,1976,1977,3,332, - 166,0,1977,1978,5,514,0,0,1978,1979,5,528,0,0,1979,1992,1,0,0,0, - 1980,1981,5,517,0,0,1981,1982,3,156,78,0,1982,1983,5,518,0,0,1983, - 1992,1,0,0,0,1984,1992,3,266,133,0,1985,1992,3,308,154,0,1986,1992, - 3,280,140,0,1987,1988,5,517,0,0,1988,1989,3,256,128,0,1989,1990, - 5,518,0,0,1990,1992,1,0,0,0,1991,1916,1,0,0,0,1991,1929,1,0,0,0, - 1991,1942,1,0,0,0,1991,1949,1,0,0,0,1991,1958,1,0,0,0,1991,1967, - 1,0,0,0,1991,1974,1,0,0,0,1991,1975,1,0,0,0,1991,1976,1,0,0,0,1991, - 1980,1,0,0,0,1991,1984,1,0,0,0,1991,1985,1,0,0,0,1991,1986,1,0,0, - 0,1991,1987,1,0,0,0,1992,2000,1,0,0,0,1993,1994,10,4,0,0,1994,1995, - 5,515,0,0,1995,1996,3,264,132,0,1996,1997,5,516,0,0,1997,1999,1, - 0,0,0,1998,1993,1,0,0,0,1999,2002,1,0,0,0,2000,1998,1,0,0,0,2000, - 2001,1,0,0,0,2001,269,1,0,0,0,2002,2000,1,0,0,0,2003,2004,3,332, - 166,0,2004,271,1,0,0,0,2005,2010,3,380,190,0,2006,2010,3,376,188, - 0,2007,2010,3,378,189,0,2008,2010,3,332,166,0,2009,2005,1,0,0,0, - 2009,2006,1,0,0,0,2009,2007,1,0,0,0,2009,2008,1,0,0,0,2010,273,1, - 0,0,0,2011,2012,3,378,189,0,2012,2013,5,538,0,0,2013,2016,1,0,0, - 0,2014,2016,3,286,143,0,2015,2011,1,0,0,0,2015,2014,1,0,0,0,2016, - 275,1,0,0,0,2017,2020,3,380,190,0,2018,2020,3,332,166,0,2019,2017, - 1,0,0,0,2019,2018,1,0,0,0,2020,277,1,0,0,0,2021,2026,3,374,187,0, - 2022,2026,3,372,186,0,2023,2026,3,370,185,0,2024,2026,3,256,128, - 0,2025,2021,1,0,0,0,2025,2022,1,0,0,0,2025,2023,1,0,0,0,2025,2024, - 1,0,0,0,2026,279,1,0,0,0,2027,2028,3,332,166,0,2028,281,1,0,0,0, - 2029,2030,3,308,154,0,2030,283,1,0,0,0,2031,2034,3,308,154,0,2032, - 2034,3,280,140,0,2033,2031,1,0,0,0,2033,2032,1,0,0,0,2034,285,1, - 0,0,0,2035,2038,5,182,0,0,2036,2039,3,288,144,0,2037,2039,3,292, - 146,0,2038,2036,1,0,0,0,2038,2037,1,0,0,0,2038,2039,1,0,0,0,2039, - 287,1,0,0,0,2040,2042,3,290,145,0,2041,2043,3,294,147,0,2042,2041, - 1,0,0,0,2042,2043,1,0,0,0,2043,289,1,0,0,0,2044,2045,3,296,148,0, - 2045,2046,3,372,186,0,2046,2048,1,0,0,0,2047,2044,1,0,0,0,2048,2049, - 1,0,0,0,2049,2047,1,0,0,0,2049,2050,1,0,0,0,2050,291,1,0,0,0,2051, - 2054,3,294,147,0,2052,2055,3,290,145,0,2053,2055,3,294,147,0,2054, - 2052,1,0,0,0,2054,2053,1,0,0,0,2054,2055,1,0,0,0,2055,293,1,0,0, - 0,2056,2057,3,296,148,0,2057,2058,3,372,186,0,2058,2059,5,389,0, - 0,2059,2060,3,372,186,0,2060,295,1,0,0,0,2061,2063,7,33,0,0,2062, - 2061,1,0,0,0,2062,2063,1,0,0,0,2063,2064,1,0,0,0,2064,2067,7,34, - 0,0,2065,2067,5,538,0,0,2066,2062,1,0,0,0,2066,2065,1,0,0,0,2067, - 297,1,0,0,0,2068,2070,5,17,0,0,2069,2068,1,0,0,0,2069,2070,1,0,0, - 0,2070,2071,1,0,0,0,2071,2073,3,308,154,0,2072,2074,3,304,152,0, - 2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,299,1,0,0,0,2075,2076,3, - 308,154,0,2076,2077,3,302,151,0,2077,301,1,0,0,0,2078,2079,5,222, - 0,0,2079,2081,3,308,154,0,2080,2078,1,0,0,0,2081,2082,1,0,0,0,2082, - 2080,1,0,0,0,2082,2083,1,0,0,0,2083,2086,1,0,0,0,2084,2086,1,0,0, - 0,2085,2080,1,0,0,0,2085,2084,1,0,0,0,2086,303,1,0,0,0,2087,2088, - 5,517,0,0,2088,2089,3,306,153,0,2089,2090,5,518,0,0,2090,305,1,0, - 0,0,2091,2096,3,308,154,0,2092,2093,5,521,0,0,2093,2095,3,308,154, - 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,307,1,0,0,0,2098,2096,1,0,0,0,2099,2103,3,310,155,0, - 2100,2103,3,312,156,0,2101,2103,3,382,191,0,2102,2099,1,0,0,0,2102, - 2100,1,0,0,0,2102,2101,1,0,0,0,2103,309,1,0,0,0,2104,2105,7,35,0, - 0,2105,311,1,0,0,0,2106,2107,5,538,0,0,2107,313,1,0,0,0,2108,2109, - 5,429,0,0,2109,2110,3,256,128,0,2110,2111,5,377,0,0,2111,2112,3, - 256,128,0,2112,315,1,0,0,0,2113,2114,3,308,154,0,2114,317,1,0,0, - 0,2115,2116,3,308,154,0,2116,319,1,0,0,0,2117,2120,3,308,154,0,2118, - 2119,5,514,0,0,2119,2121,3,308,154,0,2120,2118,1,0,0,0,2120,2121, - 1,0,0,0,2121,321,1,0,0,0,2122,2125,3,308,154,0,2123,2124,5,514,0, - 0,2124,2126,3,308,154,0,2125,2123,1,0,0,0,2125,2126,1,0,0,0,2126, - 323,1,0,0,0,2127,2130,3,308,154,0,2128,2129,5,514,0,0,2129,2131, - 3,308,154,0,2130,2128,1,0,0,0,2130,2131,1,0,0,0,2131,2140,1,0,0, - 0,2132,2133,3,308,154,0,2133,2134,5,514,0,0,2134,2137,3,308,154, - 0,2135,2136,5,514,0,0,2136,2138,3,308,154,0,2137,2135,1,0,0,0,2137, - 2138,1,0,0,0,2138,2140,1,0,0,0,2139,2127,1,0,0,0,2139,2132,1,0,0, - 0,2140,325,1,0,0,0,2141,2144,3,308,154,0,2142,2143,5,514,0,0,2143, - 2145,3,308,154,0,2144,2142,1,0,0,0,2144,2145,1,0,0,0,2145,2154,1, - 0,0,0,2146,2147,3,308,154,0,2147,2148,5,514,0,0,2148,2151,3,308, - 154,0,2149,2150,5,514,0,0,2150,2152,3,308,154,0,2151,2149,1,0,0, - 0,2151,2152,1,0,0,0,2152,2154,1,0,0,0,2153,2141,1,0,0,0,2153,2146, - 1,0,0,0,2154,327,1,0,0,0,2155,2158,3,308,154,0,2156,2157,5,514,0, - 0,2157,2159,3,308,154,0,2158,2156,1,0,0,0,2158,2159,1,0,0,0,2159, - 2168,1,0,0,0,2160,2161,3,308,154,0,2161,2162,5,514,0,0,2162,2165, - 3,308,154,0,2163,2164,5,514,0,0,2164,2166,3,308,154,0,2165,2163, - 1,0,0,0,2165,2166,1,0,0,0,2166,2168,1,0,0,0,2167,2155,1,0,0,0,2167, - 2160,1,0,0,0,2168,329,1,0,0,0,2169,2172,3,308,154,0,2170,2171,5, - 514,0,0,2171,2173,3,308,154,0,2172,2170,1,0,0,0,2172,2173,1,0,0, - 0,2173,2182,1,0,0,0,2174,2175,3,308,154,0,2175,2176,5,514,0,0,2176, - 2179,3,308,154,0,2177,2178,5,514,0,0,2178,2180,3,308,154,0,2179, - 2177,1,0,0,0,2179,2180,1,0,0,0,2180,2182,1,0,0,0,2181,2169,1,0,0, - 0,2181,2174,1,0,0,0,2182,331,1,0,0,0,2183,2188,3,308,154,0,2184, - 2185,5,514,0,0,2185,2187,3,308,154,0,2186,2184,1,0,0,0,2187,2190, - 1,0,0,0,2188,2189,1,0,0,0,2188,2186,1,0,0,0,2189,333,1,0,0,0,2190, - 2188,1,0,0,0,2191,2192,5,434,0,0,2192,2193,3,340,170,0,2193,335, - 1,0,0,0,2194,2195,5,167,0,0,2195,2196,5,242,0,0,2196,2197,5,133, - 0,0,2197,337,1,0,0,0,2198,2199,5,167,0,0,2199,2200,5,133,0,0,2200, - 339,1,0,0,0,2201,2202,5,517,0,0,2202,2207,3,342,171,0,2203,2204, - 5,521,0,0,2204,2206,3,342,171,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,518,0,0,2211,341,1,0,0,0,2212,2217,3,344,172, - 0,2213,2215,5,506,0,0,2214,2213,1,0,0,0,2214,2215,1,0,0,0,2215,2216, - 1,0,0,0,2216,2218,3,346,173,0,2217,2214,1,0,0,0,2217,2218,1,0,0, - 0,2218,343,1,0,0,0,2219,2223,3,308,154,0,2220,2223,3,280,140,0,2221, - 2223,5,538,0,0,2222,2219,1,0,0,0,2222,2220,1,0,0,0,2222,2221,1,0, - 0,0,2223,345,1,0,0,0,2224,2229,5,539,0,0,2225,2229,5,540,0,0,2226, - 2229,3,366,183,0,2227,2229,5,538,0,0,2228,2224,1,0,0,0,2228,2225, - 1,0,0,0,2228,2226,1,0,0,0,2228,2227,1,0,0,0,2229,347,1,0,0,0,2230, - 2237,5,10,0,0,2231,2232,5,512,0,0,2232,2237,5,512,0,0,2233,2237, - 5,258,0,0,2234,2235,5,511,0,0,2235,2237,5,511,0,0,2236,2230,1,0, - 0,0,2236,2231,1,0,0,0,2236,2233,1,0,0,0,2236,2234,1,0,0,0,2237,349, - 1,0,0,0,2238,2253,5,506,0,0,2239,2253,5,507,0,0,2240,2253,5,508, - 0,0,2241,2242,5,508,0,0,2242,2253,5,506,0,0,2243,2244,5,507,0,0, - 2244,2253,5,506,0,0,2245,2246,5,508,0,0,2246,2253,5,507,0,0,2247, - 2248,5,509,0,0,2248,2253,5,506,0,0,2249,2250,5,508,0,0,2250,2251, - 5,506,0,0,2251,2253,5,507,0,0,2252,2238,1,0,0,0,2252,2239,1,0,0, - 0,2252,2240,1,0,0,0,2252,2241,1,0,0,0,2252,2243,1,0,0,0,2252,2245, - 1,0,0,0,2252,2247,1,0,0,0,2252,2249,1,0,0,0,2253,351,1,0,0,0,2254, - 2255,5,508,0,0,2255,2262,5,508,0,0,2256,2257,5,507,0,0,2257,2262, - 5,507,0,0,2258,2262,5,512,0,0,2259,2262,5,513,0,0,2260,2262,5,511, - 0,0,2261,2254,1,0,0,0,2261,2256,1,0,0,0,2261,2258,1,0,0,0,2261,2259, - 1,0,0,0,2261,2260,1,0,0,0,2262,353,1,0,0,0,2263,2264,7,36,0,0,2264, - 355,1,0,0,0,2265,2266,7,37,0,0,2266,357,1,0,0,0,2267,2282,3,286, - 143,0,2268,2282,3,360,180,0,2269,2282,3,362,181,0,2270,2272,5,530, - 0,0,2271,2270,1,0,0,0,2271,2272,1,0,0,0,2272,2273,1,0,0,0,2273,2282, - 3,364,182,0,2274,2282,3,366,183,0,2275,2282,5,540,0,0,2276,2282, - 5,541,0,0,2277,2279,5,242,0,0,2278,2277,1,0,0,0,2278,2279,1,0,0, - 0,2279,2280,1,0,0,0,2280,2282,5,245,0,0,2281,2267,1,0,0,0,2281,2268, - 1,0,0,0,2281,2269,1,0,0,0,2281,2271,1,0,0,0,2281,2274,1,0,0,0,2281, - 2275,1,0,0,0,2281,2276,1,0,0,0,2281,2278,1,0,0,0,2282,359,1,0,0, - 0,2283,2284,3,370,185,0,2284,2285,3,362,181,0,2285,361,1,0,0,0,2286, - 2287,5,538,0,0,2287,363,1,0,0,0,2288,2289,5,539,0,0,2289,365,1,0, - 0,0,2290,2291,7,38,0,0,2291,367,1,0,0,0,2292,2293,7,39,0,0,2293, - 369,1,0,0,0,2294,2295,7,40,0,0,2295,371,1,0,0,0,2296,2297,7,41,0, - 0,2297,373,1,0,0,0,2298,2299,7,42,0,0,2299,375,1,0,0,0,2300,2301, - 7,43,0,0,2301,377,1,0,0,0,2302,2303,7,44,0,0,2303,379,1,0,0,0,2304, - 2305,7,45,0,0,2305,381,1,0,0,0,2306,2307,7,46,0,0,2307,383,1,0,0, - 0,273,387,394,397,411,429,433,442,447,454,465,474,486,489,496,499, - 507,511,516,519,526,534,538,550,558,562,594,597,602,606,610,614, - 623,628,632,636,641,644,648,653,659,664,669,673,677,681,689,697, - 701,705,709,713,717,721,725,729,731,741,749,773,787,792,796,802, - 805,808,815,818,827,839,863,875,880,884,892,896,902,912,917,923, - 927,931,935,944,948,955,958,968,976,984,988,1003,1022,1033,1037, - 1044,1049,1055,1059,1066,1070,1074,1078,1086,1090,1095,1101,1107, - 1110,1114,1125,1134,1148,1160,1175,1178,1182,1185,1187,1192,1196, - 1199,1203,1212,1221,1231,1236,1247,1250,1253,1256,1259,1265,1269, - 1277,1280,1285,1288,1292,1295,1297,1311,1322,1327,1335,1338,1341, - 1346,1348,1350,1355,1358,1362,1366,1375,1386,1413,1435,1448,1460, - 1473,1485,1497,1503,1530,1538,1542,1545,1548,1555,1558,1561,1564, - 1567,1570,1575,1578,1587,1592,1596,1601,1607,1612,1616,1635,1643, - 1651,1655,1659,1669,1695,1703,1715,1737,1739,1750,1753,1755,1759, - 1763,1770,1779,1785,1798,1805,1810,1816,1823,1830,1832,1835,1847, - 1852,1855,1861,1863,1869,1890,1892,1900,1907,1910,1914,1921,1925, - 1934,1938,1954,1963,1991,2000,2009,2015,2019,2025,2033,2038,2042, - 2049,2054,2062,2066,2069,2073,2082,2085,2096,2102,2120,2125,2130, - 2137,2139,2144,2151,2153,2158,2165,2167,2172,2179,2181,2188,2207, - 2214,2217,2222,2228,2236,2252,2261,2271,2278,2281 + 2,192,7,192,1,0,5,0,388,8,0,10,0,12,0,391,9,0,1,0,1,0,1,1,1,1,3, + 1,397,8,1,1,1,3,1,400,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,414,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,432,8,4,1,5,1,5,3,5,436,8,5,1,6,1,6,1, + 6,1,7,1,7,1,7,1,7,3,7,445,8,7,1,7,1,7,1,7,3,7,450,8,7,1,8,1,8,1, + 8,5,8,455,8,8,10,8,12,8,458,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10, + 1,10,3,10,468,8,10,1,11,1,11,1,11,1,11,1,11,5,11,475,8,11,10,11, + 12,11,478,9,11,1,12,1,12,1,12,1,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,3,12,499,8, + 12,1,12,3,12,502,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,510,8,12, + 1,12,1,12,3,12,514,8,12,1,12,1,12,1,12,3,12,519,8,12,1,12,3,12,522, + 8,12,1,13,1,13,1,13,1,13,1,13,3,13,529,8,13,1,14,1,14,1,14,1,14, + 1,15,1,15,3,15,537,8,15,1,16,1,16,3,16,541,8,16,1,17,1,17,1,17,1, + 17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,553,8,18,1,18,1,18,1,18,1, + 18,1,18,1,18,3,18,561,8,18,1,18,1,18,3,18,565,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,597,8,18,1,19,3,19,600,8,19,1,19,4,19,603,8,19,11,19,12, + 19,604,1,20,1,20,3,20,609,8,20,1,21,1,21,3,21,613,8,21,1,21,1,21, + 3,21,617,8,21,1,21,1,21,1,21,1,21,1,21,5,21,624,8,21,10,21,12,21, + 627,9,21,1,21,1,21,3,21,631,8,21,1,21,1,21,3,21,635,8,21,1,21,1, + 21,3,21,639,8,21,1,21,1,21,1,21,3,21,644,8,21,1,21,3,21,647,8,21, + 1,21,1,21,3,21,651,8,21,1,22,1,22,1,22,3,22,656,8,22,1,22,1,22,1, + 22,1,22,3,22,662,8,22,1,23,1,23,1,23,3,23,667,8,23,1,24,1,24,1,24, + 3,24,672,8,24,1,24,1,24,3,24,676,8,24,1,25,1,25,3,25,680,8,25,1, + 26,1,26,3,26,684,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,692,8,28, + 10,28,12,28,695,9,28,1,28,1,28,1,29,1,29,1,29,3,29,702,8,29,1,29, + 1,29,3,29,706,8,29,1,29,1,29,3,29,710,8,29,1,29,1,29,3,29,714,8, + 29,1,29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29, + 726,8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,3,29,736, + 8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,746,8,31,1,31, + 1,31,1,32,1,32,1,32,1,32,3,32,754,8,32,1,32,1,32,1,33,1,33,1,33, + 1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35, + 1,35,1,35,5,35,776,8,35,10,35,12,35,779,9,35,1,35,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,5,35,790,8,35,10,35,12,35,793,9,35,1,35, + 1,35,3,35,797,8,35,1,36,1,36,3,36,801,8,36,1,36,1,36,1,36,1,36,3, + 36,807,8,36,1,36,3,36,810,8,36,1,36,3,36,813,8,36,1,37,1,37,1,37, + 1,37,1,37,3,37,820,8,37,1,37,3,37,823,8,37,1,38,1,38,1,39,1,39,1, + 39,1,39,1,39,3,39,832,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1, + 41,1,42,1,42,3,42,844,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,866,8,46,10,46,12,46,869,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1, + 47,5,47,878,8,47,10,47,12,47,881,9,47,1,47,1,47,3,47,885,8,47,1, + 48,1,48,3,48,889,8,48,1,49,1,49,1,49,1,49,5,49,895,8,49,10,49,12, + 49,898,9,49,1,49,3,49,901,8,49,1,50,1,50,1,50,1,50,3,50,907,8,50, + 1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,917,8,52,1,52,1,52, + 1,52,3,52,922,8,52,1,52,1,52,1,53,1,53,3,53,928,8,53,1,53,1,53,3, + 53,932,8,53,1,53,1,53,3,53,936,8,53,1,53,1,53,3,53,940,8,53,1,53, + 1,53,1,53,1,54,1,54,1,54,1,54,3,54,949,8,54,1,54,1,54,3,54,953,8, + 54,1,54,1,54,1,54,1,54,1,54,3,54,960,8,54,1,54,3,54,963,8,54,1,55, + 1,55,1,55,1,55,1,55,1,55,5,55,971,8,55,10,55,12,55,974,9,55,1,56, + 1,56,1,57,1,57,1,57,3,57,981,8,57,1,57,1,57,1,57,1,57,1,57,1,57, + 3,57,989,8,57,1,58,1,58,3,58,993,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,1008,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,1027,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1, + 66,3,66,1038,8,66,1,66,1,66,3,66,1042,8,66,1,66,1,66,1,66,1,66,1, + 66,3,66,1049,8,66,1,67,1,67,1,67,3,67,1054,8,67,1,67,1,67,1,68,1, + 68,3,68,1060,8,68,1,68,1,68,3,68,1064,8,68,1,68,1,68,1,69,1,69,1, + 69,3,69,1071,8,69,1,69,1,69,3,69,1075,8,69,1,70,1,70,3,70,1079,8, + 70,1,70,1,70,3,70,1083,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1091, + 8,71,1,71,1,71,3,71,1095,8,71,1,71,1,71,1,72,3,72,1100,8,72,1,72, + 1,72,1,72,1,72,3,72,1106,8,72,1,73,1,73,1,73,1,73,3,73,1112,8,73, + 1,73,3,73,1115,8,73,1,73,1,73,3,73,1119,8,73,1,74,1,74,1,74,1,75, + 1,75,1,75,1,75,5,75,1128,8,75,10,75,12,75,1131,9,75,1,76,1,76,1, + 76,1,76,5,76,1137,8,76,10,76,12,76,1140,9,76,1,76,1,76,1,77,1,77, + 1,77,1,77,1,77,1,77,1,77,4,77,1151,8,77,11,77,12,77,1152,1,77,1, + 77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1163,8,78,11,78,12,78,1164, + 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,1180,8,79,1,79,3,79,1183,8,79,1,79,1,79,3,79,1187,8,79,1,79, + 3,79,1190,8,79,3,79,1192,8,79,1,79,1,79,1,79,3,79,1197,8,79,1,79, + 1,79,3,79,1201,8,79,1,79,3,79,1204,8,79,5,79,1206,8,79,10,79,12, + 79,1209,9,79,1,80,1,80,1,80,1,80,5,80,1215,8,80,10,80,12,80,1218, + 9,80,1,81,1,81,1,81,1,81,5,81,1224,8,81,10,81,12,81,1227,9,81,1, + 82,1,82,1,82,1,82,1,82,5,82,1234,8,82,10,82,12,82,1237,9,82,1,82, + 1,82,3,82,1241,8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84, + 3,84,1252,8,84,1,84,3,84,1255,8,84,1,84,3,84,1258,8,84,1,84,3,84, + 1261,8,84,1,84,3,84,1264,8,84,1,84,1,84,1,84,1,84,3,84,1270,8,84, + 1,85,1,85,3,85,1274,8,85,1,85,1,85,1,85,1,85,5,85,1280,8,85,10,85, + 12,85,1283,9,85,3,85,1285,8,85,1,86,1,86,1,86,3,86,1290,8,86,1,86, + 3,86,1293,8,86,1,86,1,86,3,86,1297,8,86,1,86,3,86,1300,8,86,3,86, + 1302,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,1316,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1325, + 8,89,10,89,12,89,1328,9,89,1,89,1,89,3,89,1332,8,89,1,89,1,89,1, + 89,1,89,1,89,1,89,3,89,1340,8,89,1,89,3,89,1343,8,89,1,89,3,89,1346, + 8,89,1,89,1,89,1,89,3,89,1351,8,89,5,89,1353,8,89,10,89,12,89,1356, + 9,89,1,90,1,90,3,90,1360,8,90,1,91,3,91,1363,8,91,1,91,1,91,3,91, + 1367,8,91,1,91,1,91,3,91,1371,8,91,1,91,1,91,1,91,1,91,1,91,1,91, + 1,91,3,91,1380,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, + 3,91,1391,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,1416,8,96,10,96,12,96,1419,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,1440,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,1453,8,101,1,102,1,102,1,102,1,103,1,103, + 1,103,1,103,1,103,5,103,1463,8,103,10,103,12,103,1466,9,103,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104,1476,8,104,10,104, + 12,104,1479,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104, + 1488,8,104,10,104,12,104,1491,9,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,5,104,1500,8,104,10,104,12,104,1503,9,104,1,104,1,104, + 1,104,3,104,1508,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,1533,8,111,10,111,12,111,1536, + 9,111,1,112,1,112,1,112,1,112,1,113,3,113,1543,8,113,1,113,1,113, + 3,113,1547,8,113,1,113,3,113,1550,8,113,1,113,3,113,1553,8,113,1, + 113,1,113,1,114,1,114,1,114,3,114,1560,8,114,1,114,3,114,1563,8, + 114,1,114,3,114,1566,8,114,1,114,3,114,1569,8,114,1,114,3,114,1572, + 8,114,1,114,3,114,1575,8,114,1,114,1,114,1,114,3,114,1580,8,114, + 1,114,3,114,1583,8,114,1,115,1,115,1,115,1,115,1,115,5,115,1590, + 8,115,10,115,12,115,1593,9,115,1,116,1,116,3,116,1597,8,116,1,116, + 1,116,3,116,1601,8,116,1,117,1,117,1,117,3,117,1606,8,117,1,118, + 1,118,1,118,1,118,3,118,1612,8,118,1,118,1,118,1,118,3,118,1617, + 8,118,5,118,1619,8,118,10,118,12,118,1622,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,1640,8,119,1,120,1,120,1,120,1,120,5,120,1646, + 8,120,10,120,12,120,1649,9,120,1,121,1,121,1,121,4,121,1654,8,121, + 11,121,12,121,1655,1,121,1,121,3,121,1660,8,121,1,122,1,122,3,122, + 1664,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, + 1674,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,1700,8,124,1,125,1,125,1,125,1,125, + 5,125,1706,8,125,10,125,12,125,1709,9,125,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,3,126,1720,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,1742,8,130,3,130,1744, + 8,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, + 1755,8,130,1,130,5,130,1758,8,130,10,130,12,130,1761,9,130,1,131, + 3,131,1764,8,131,1,131,1,131,3,131,1768,8,131,1,131,1,131,1,131, + 1,131,1,131,3,131,1775,8,131,1,131,1,131,1,131,1,131,1,131,5,131, + 1782,8,131,10,131,12,131,1785,9,131,1,131,1,131,1,131,3,131,1790, + 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,1803,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1810, + 8,131,1,131,1,131,1,131,3,131,1815,8,131,1,131,1,131,1,131,1,131, + 3,131,1821,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1828,8,131, + 1,131,1,131,1,131,1,131,1,131,3,131,1835,8,131,3,131,1837,8,131, + 1,132,3,132,1840,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,5,132,1850,8,132,10,132,12,132,1853,9,132,1,132,1,132,3,132, + 1857,8,132,1,132,3,132,1860,8,132,1,132,1,132,1,132,1,132,3,132, + 1866,8,132,3,132,1868,8,132,1,133,1,133,1,133,1,133,3,133,1874,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,1895, + 8,133,10,133,12,133,1898,9,133,1,134,1,134,1,134,1,134,1,134,3,134, + 1905,8,134,1,134,1,134,1,134,5,134,1910,8,134,10,134,12,134,1913, + 9,134,3,134,1915,8,134,1,134,1,134,3,134,1919,8,134,1,135,1,135, + 1,135,4,135,1924,8,135,11,135,12,135,1925,1,135,1,135,3,135,1930, + 8,135,1,135,1,135,1,135,1,135,1,135,4,135,1937,8,135,11,135,12,135, + 1938,1,135,1,135,3,135,1943,8,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1959, + 8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1968,8,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,3,135,1996,8,135,1,135,1,135,1,135,1,135, + 1,135,5,135,2003,8,135,10,135,12,135,2006,9,135,1,136,1,136,1,137, + 1,137,1,137,1,137,3,137,2014,8,137,1,138,1,138,1,138,1,138,3,138, + 2020,8,138,1,139,1,139,3,139,2024,8,139,1,140,1,140,1,140,1,140, + 3,140,2030,8,140,1,141,1,141,1,142,1,142,1,143,1,143,3,143,2038, + 8,143,1,144,1,144,1,144,3,144,2043,8,144,1,145,1,145,3,145,2047, + 8,145,1,146,1,146,1,146,4,146,2052,8,146,11,146,12,146,2053,1,147, + 1,147,1,147,3,147,2059,8,147,1,148,1,148,1,148,1,148,1,148,1,149, + 3,149,2067,8,149,1,149,1,149,3,149,2071,8,149,1,150,3,150,2074,8, + 150,1,150,1,150,3,150,2078,8,150,1,151,1,151,1,151,1,152,1,152,4, + 152,2085,8,152,11,152,12,152,2086,1,152,3,152,2090,8,152,1,153,1, + 153,1,153,1,153,1,154,1,154,1,154,5,154,2099,8,154,10,154,12,154, + 2102,9,154,1,155,1,155,1,155,3,155,2107,8,155,1,156,1,156,1,157, + 1,157,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,160,1,160,1,161, + 1,161,1,161,3,161,2125,8,161,1,162,1,162,1,162,3,162,2130,8,162, + 1,163,1,163,1,163,3,163,2135,8,163,1,163,1,163,1,163,1,163,1,163, + 3,163,2142,8,163,3,163,2144,8,163,1,164,1,164,1,164,3,164,2149,8, + 164,1,164,1,164,1,164,1,164,1,164,3,164,2156,8,164,3,164,2158,8, + 164,1,165,1,165,1,165,3,165,2163,8,165,1,165,1,165,1,165,1,165,1, + 165,3,165,2170,8,165,3,165,2172,8,165,1,166,1,166,1,166,3,166,2177, + 8,166,1,166,1,166,1,166,1,166,1,166,3,166,2184,8,166,3,166,2186, + 8,166,1,167,1,167,1,167,5,167,2191,8,167,10,167,12,167,2194,9,167, + 1,168,1,168,1,168,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,171, + 1,171,1,171,1,171,5,171,2210,8,171,10,171,12,171,2213,9,171,1,171, + 1,171,1,172,1,172,3,172,2219,8,172,1,172,3,172,2222,8,172,1,173, + 1,173,1,173,3,173,2227,8,173,1,174,1,174,1,174,1,174,3,174,2233, + 8,174,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2241,8,175,1,176, + 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,3,176,2257,8,176,1,177,1,177,1,177,1,177,1,177,1,177, + 1,177,3,177,2266,8,177,1,178,1,178,1,179,1,179,1,180,1,180,1,180, + 1,180,3,180,2276,8,180,1,180,1,180,1,180,1,180,1,180,3,180,2283, + 8,180,1,180,3,180,2286,8,180,1,181,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,188,1,188, + 1,189,1,189,1,190,1,190,1,191,1,191,1,192,1,192,1,192,1,2192,5,158, + 178,260,266,270,193,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,0,47,2,0,109,109,451,451,3,0,45,45,128, + 128,189,189,4,0,42,42,90,90,423,423,465,465,2,0,442,442,448,448, + 2,0,151,151,170,170,2,0,438,438,490,490,2,0,483,486,488,488,3,0, + 32,32,91,91,245,245,11,0,28,29,35,35,46,46,92,92,178,179,345,345, + 361,361,379,379,382,382,388,388,417,418,2,0,434,434,436,436,4,0, + 101,102,115,115,144,144,247,247,2,0,13,13,232,232,2,0,456,456,463, + 463,3,0,5,5,271,271,445,445,3,0,267,267,456,456,463,463,3,0,426, + 426,459,459,478,478,3,0,331,331,466,466,482,482,2,0,441,441,491, + 491,2,0,183,183,266,266,3,0,130,130,180,180,403,403,4,0,152,152, + 174,174,202,202,318,318,3,0,446,446,460,460,500,500,4,0,251,251, + 447,447,495,497,499,499,2,0,74,74,321,321,3,0,460,460,493,493,500, + 500,2,0,440,440,451,451,2,0,458,458,468,468,4,0,140,140,245,245, + 398,398,405,405,2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530, + 531,4,0,453,453,528,528,532,532,535,535,2,0,530,531,533,533,1,0, + 530,531,1,0,539,540,2,0,539,539,542,542,4,0,453,453,528,528,530, + 532,534,535,3,0,242,242,509,510,530,531,2,0,140,140,398,398,2,0, + 5,5,113,113,10,0,97,97,165,165,223,223,230,230,335,335,437,437,471, + 471,473,473,489,489,503,503,15,0,97,97,165,165,223,223,230,230,335, + 335,428,428,437,437,443,443,449,450,455,455,461,461,471,476,489, + 489,492,492,503,504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201, + 201,208,209,390,390,414,414,528,528,3,0,78,78,84,85,208,209,2,0, + 91,91,379,380,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56, + 69,69,75,75,98,99,107,107,119,119,134,134,139,139,143,143,145,145, + 160,160,165,165,167,167,187,188,190,195,198,198,200,200,202,202, + 206,206,210,210,215,215,221,221,223,224,230,230,244,244,246,246, + 265,265,277,277,282,282,284,284,294,294,318,318,322,324,335,335, + 358,359,365,365,368,368,381,381,396,396,399,400,409,409,420,421, + 437,437,470,470,489,489,503,503,1,0,438,505,2519,0,389,1,0,0,0,2, + 399,1,0,0,0,4,413,1,0,0,0,6,415,1,0,0,0,8,431,1,0,0,0,10,435,1,0, + 0,0,12,437,1,0,0,0,14,440,1,0,0,0,16,451,1,0,0,0,18,459,1,0,0,0, + 20,467,1,0,0,0,22,469,1,0,0,0,24,521,1,0,0,0,26,523,1,0,0,0,28,530, + 1,0,0,0,30,534,1,0,0,0,32,538,1,0,0,0,34,542,1,0,0,0,36,596,1,0, + 0,0,38,602,1,0,0,0,40,608,1,0,0,0,42,610,1,0,0,0,44,652,1,0,0,0, + 46,666,1,0,0,0,48,668,1,0,0,0,50,679,1,0,0,0,52,683,1,0,0,0,54,685, + 1,0,0,0,56,687,1,0,0,0,58,735,1,0,0,0,60,737,1,0,0,0,62,741,1,0, + 0,0,64,749,1,0,0,0,66,757,1,0,0,0,68,761,1,0,0,0,70,796,1,0,0,0, + 72,812,1,0,0,0,74,814,1,0,0,0,76,824,1,0,0,0,78,826,1,0,0,0,80,833, + 1,0,0,0,82,835,1,0,0,0,84,843,1,0,0,0,86,851,1,0,0,0,88,853,1,0, + 0,0,90,857,1,0,0,0,92,861,1,0,0,0,94,884,1,0,0,0,96,888,1,0,0,0, + 98,890,1,0,0,0,100,906,1,0,0,0,102,908,1,0,0,0,104,913,1,0,0,0,106, + 925,1,0,0,0,108,944,1,0,0,0,110,964,1,0,0,0,112,975,1,0,0,0,114, + 977,1,0,0,0,116,990,1,0,0,0,118,997,1,0,0,0,120,1000,1,0,0,0,122, + 1009,1,0,0,0,124,1013,1,0,0,0,126,1017,1,0,0,0,128,1020,1,0,0,0, + 130,1028,1,0,0,0,132,1033,1,0,0,0,134,1050,1,0,0,0,136,1057,1,0, + 0,0,138,1067,1,0,0,0,140,1076,1,0,0,0,142,1086,1,0,0,0,144,1105, + 1,0,0,0,146,1107,1,0,0,0,148,1120,1,0,0,0,150,1123,1,0,0,0,152,1132, + 1,0,0,0,154,1143,1,0,0,0,156,1156,1,0,0,0,158,1191,1,0,0,0,160,1210, + 1,0,0,0,162,1219,1,0,0,0,164,1228,1,0,0,0,166,1247,1,0,0,0,168,1269, + 1,0,0,0,170,1271,1,0,0,0,172,1301,1,0,0,0,174,1315,1,0,0,0,176,1317, + 1,0,0,0,178,1331,1,0,0,0,180,1357,1,0,0,0,182,1390,1,0,0,0,184,1392, + 1,0,0,0,186,1398,1,0,0,0,188,1400,1,0,0,0,190,1405,1,0,0,0,192,1410, + 1,0,0,0,194,1422,1,0,0,0,196,1439,1,0,0,0,198,1441,1,0,0,0,200,1443, + 1,0,0,0,202,1452,1,0,0,0,204,1454,1,0,0,0,206,1457,1,0,0,0,208,1507, + 1,0,0,0,210,1509,1,0,0,0,212,1512,1,0,0,0,214,1514,1,0,0,0,216,1521, + 1,0,0,0,218,1523,1,0,0,0,220,1525,1,0,0,0,222,1528,1,0,0,0,224,1537, + 1,0,0,0,226,1542,1,0,0,0,228,1556,1,0,0,0,230,1584,1,0,0,0,232,1594, + 1,0,0,0,234,1602,1,0,0,0,236,1607,1,0,0,0,238,1639,1,0,0,0,240,1641, + 1,0,0,0,242,1650,1,0,0,0,244,1661,1,0,0,0,246,1673,1,0,0,0,248,1699, + 1,0,0,0,250,1701,1,0,0,0,252,1719,1,0,0,0,254,1721,1,0,0,0,256,1726, + 1,0,0,0,258,1729,1,0,0,0,260,1743,1,0,0,0,262,1836,1,0,0,0,264,1867, + 1,0,0,0,266,1873,1,0,0,0,268,1918,1,0,0,0,270,1995,1,0,0,0,272,2007, + 1,0,0,0,274,2013,1,0,0,0,276,2019,1,0,0,0,278,2023,1,0,0,0,280,2029, + 1,0,0,0,282,2031,1,0,0,0,284,2033,1,0,0,0,286,2037,1,0,0,0,288,2039, + 1,0,0,0,290,2044,1,0,0,0,292,2051,1,0,0,0,294,2055,1,0,0,0,296,2060, + 1,0,0,0,298,2070,1,0,0,0,300,2073,1,0,0,0,302,2079,1,0,0,0,304,2089, + 1,0,0,0,306,2091,1,0,0,0,308,2095,1,0,0,0,310,2106,1,0,0,0,312,2108, + 1,0,0,0,314,2110,1,0,0,0,316,2112,1,0,0,0,318,2117,1,0,0,0,320,2119, + 1,0,0,0,322,2121,1,0,0,0,324,2126,1,0,0,0,326,2143,1,0,0,0,328,2157, + 1,0,0,0,330,2171,1,0,0,0,332,2185,1,0,0,0,334,2187,1,0,0,0,336,2195, + 1,0,0,0,338,2198,1,0,0,0,340,2202,1,0,0,0,342,2205,1,0,0,0,344,2216, + 1,0,0,0,346,2226,1,0,0,0,348,2232,1,0,0,0,350,2240,1,0,0,0,352,2256, + 1,0,0,0,354,2265,1,0,0,0,356,2267,1,0,0,0,358,2269,1,0,0,0,360,2285, + 1,0,0,0,362,2287,1,0,0,0,364,2290,1,0,0,0,366,2292,1,0,0,0,368,2294, + 1,0,0,0,370,2296,1,0,0,0,372,2298,1,0,0,0,374,2300,1,0,0,0,376,2302, + 1,0,0,0,378,2304,1,0,0,0,380,2306,1,0,0,0,382,2308,1,0,0,0,384,2310, + 1,0,0,0,386,388,3,2,1,0,387,386,1,0,0,0,388,391,1,0,0,0,389,387, + 1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,389,1,0,0,0,392,393, + 5,0,0,1,393,1,1,0,0,0,394,396,3,4,2,0,395,397,5,522,0,0,396,395, + 1,0,0,0,396,397,1,0,0,0,397,400,1,0,0,0,398,400,3,6,3,0,399,394, + 1,0,0,0,399,398,1,0,0,0,400,3,1,0,0,0,401,414,3,8,4,0,402,414,3, + 10,5,0,403,414,3,12,6,0,404,414,3,14,7,0,405,414,3,20,10,0,406,414, + 3,24,12,0,407,414,3,26,13,0,408,414,3,28,14,0,409,414,3,30,15,0, + 410,414,3,32,16,0,411,414,3,34,17,0,412,414,3,36,18,0,413,401,1, + 0,0,0,413,402,1,0,0,0,413,403,1,0,0,0,413,404,1,0,0,0,413,405,1, + 0,0,0,413,406,1,0,0,0,413,407,1,0,0,0,413,408,1,0,0,0,413,409,1, + 0,0,0,413,410,1,0,0,0,413,411,1,0,0,0,413,412,1,0,0,0,414,5,1,0, + 0,0,415,416,5,522,0,0,416,7,1,0,0,0,417,432,3,40,20,0,418,432,3, + 104,52,0,419,432,3,106,53,0,420,432,3,108,54,0,421,432,3,102,51, + 0,422,432,3,114,57,0,423,432,3,128,64,0,424,432,3,130,65,0,425,432, + 3,132,66,0,426,432,3,134,67,0,427,432,3,136,68,0,428,432,3,138,69, + 0,429,432,3,140,70,0,430,432,3,142,71,0,431,417,1,0,0,0,431,418, + 1,0,0,0,431,419,1,0,0,0,431,420,1,0,0,0,431,421,1,0,0,0,431,422, + 1,0,0,0,431,423,1,0,0,0,431,424,1,0,0,0,431,425,1,0,0,0,431,426, + 1,0,0,0,431,427,1,0,0,0,431,428,1,0,0,0,431,429,1,0,0,0,431,430, + 1,0,0,0,432,9,1,0,0,0,433,436,3,158,79,0,434,436,3,144,72,0,435, + 433,1,0,0,0,435,434,1,0,0,0,436,11,1,0,0,0,437,438,7,0,0,0,438,439, + 3,328,164,0,439,13,1,0,0,0,440,444,5,135,0,0,441,445,3,16,8,0,442, + 443,5,480,0,0,443,445,5,146,0,0,444,441,1,0,0,0,444,442,1,0,0,0, + 444,445,1,0,0,0,445,449,1,0,0,0,446,450,3,10,5,0,447,450,3,146,73, + 0,448,450,3,156,78,0,449,446,1,0,0,0,449,447,1,0,0,0,449,448,1,0, + 0,0,450,15,1,0,0,0,451,456,3,18,9,0,452,453,5,521,0,0,453,455,3, + 18,9,0,454,452,1,0,0,0,455,458,1,0,0,0,456,454,1,0,0,0,456,457,1, + 0,0,0,457,17,1,0,0,0,458,456,1,0,0,0,459,460,7,1,0,0,460,19,1,0, + 0,0,461,462,5,411,0,0,462,463,5,442,0,0,463,468,3,318,159,0,464, + 465,5,411,0,0,465,468,3,322,161,0,466,468,3,22,11,0,467,461,1,0, + 0,0,467,464,1,0,0,0,467,466,1,0,0,0,468,21,1,0,0,0,469,470,5,411, + 0,0,470,471,5,228,0,0,471,476,3,334,167,0,472,473,5,521,0,0,473, + 475,3,334,167,0,474,472,1,0,0,0,475,478,1,0,0,0,476,474,1,0,0,0, + 476,477,1,0,0,0,477,23,1,0,0,0,478,476,1,0,0,0,479,480,5,342,0,0, + 480,522,7,2,0,0,481,482,5,342,0,0,482,483,5,76,0,0,483,522,7,3,0, + 0,484,485,5,342,0,0,485,488,5,375,0,0,486,487,7,4,0,0,487,489,3, + 322,161,0,488,486,1,0,0,0,488,489,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,522,1,0,0,0,493, + 494,5,342,0,0,494,495,5,58,0,0,495,498,7,4,0,0,496,499,3,330,165, + 0,497,499,3,328,164,0,498,496,1,0,0,0,498,497,1,0,0,0,499,501,1, + 0,0,0,500,502,3,264,132,0,501,500,1,0,0,0,501,502,1,0,0,0,502,522, + 1,0,0,0,503,504,5,342,0,0,504,509,5,72,0,0,505,506,5,374,0,0,506, + 510,3,328,164,0,507,508,5,502,0,0,508,510,3,330,165,0,509,505,1, + 0,0,0,509,507,1,0,0,0,510,522,1,0,0,0,511,513,5,342,0,0,512,514, + 5,412,0,0,513,512,1,0,0,0,513,514,1,0,0,0,514,515,1,0,0,0,515,522, + 5,154,0,0,516,518,5,342,0,0,517,519,5,152,0,0,518,517,1,0,0,0,518, + 519,1,0,0,0,519,520,1,0,0,0,520,522,5,228,0,0,521,479,1,0,0,0,521, + 481,1,0,0,0,521,484,1,0,0,0,521,493,1,0,0,0,521,503,1,0,0,0,521, + 511,1,0,0,0,521,516,1,0,0,0,522,25,1,0,0,0,523,524,5,469,0,0,524, + 525,5,227,0,0,525,528,3,334,167,0,526,527,5,434,0,0,527,529,3,342, + 171,0,528,526,1,0,0,0,528,529,1,0,0,0,529,27,1,0,0,0,530,531,5,501, + 0,0,531,532,5,227,0,0,532,533,3,334,167,0,533,29,1,0,0,0,534,536, + 5,341,0,0,535,537,3,344,172,0,536,535,1,0,0,0,536,537,1,0,0,0,537, + 31,1,0,0,0,538,540,5,313,0,0,539,541,3,346,173,0,540,539,1,0,0,0, + 540,541,1,0,0,0,541,33,1,0,0,0,542,543,7,5,0,0,543,544,5,464,0,0, + 544,545,3,112,56,0,545,35,1,0,0,0,546,547,5,438,0,0,547,548,5,464, + 0,0,548,549,5,434,0,0,549,552,3,38,19,0,550,551,5,17,0,0,551,553, + 3,334,167,0,552,550,1,0,0,0,552,553,1,0,0,0,553,597,1,0,0,0,554, + 555,5,438,0,0,555,556,5,457,0,0,556,557,5,434,0,0,557,560,3,38,19, + 0,558,559,5,17,0,0,559,561,3,334,167,0,560,558,1,0,0,0,560,561,1, + 0,0,0,561,564,1,0,0,0,562,563,5,312,0,0,563,565,3,334,167,0,564, + 562,1,0,0,0,564,565,1,0,0,0,565,597,1,0,0,0,566,567,5,438,0,0,567, + 568,7,6,0,0,568,569,5,434,0,0,569,570,3,38,19,0,570,571,5,312,0, + 0,571,572,3,334,167,0,572,597,1,0,0,0,573,574,5,438,0,0,574,575, + 5,487,0,0,575,597,3,38,19,0,576,577,5,438,0,0,577,578,5,454,0,0, + 578,579,5,457,0,0,579,580,5,434,0,0,580,581,3,38,19,0,581,582,5, + 312,0,0,582,583,3,334,167,0,583,584,5,467,0,0,584,585,3,334,167, + 0,585,597,1,0,0,0,586,587,5,438,0,0,587,588,5,444,0,0,588,589,5, + 457,0,0,589,590,5,434,0,0,590,591,3,38,19,0,591,592,5,146,0,0,592, + 593,3,334,167,0,593,594,5,17,0,0,594,595,3,334,167,0,595,597,1,0, + 0,0,596,546,1,0,0,0,596,554,1,0,0,0,596,566,1,0,0,0,596,573,1,0, + 0,0,596,576,1,0,0,0,596,586,1,0,0,0,597,37,1,0,0,0,598,600,5,535, + 0,0,599,598,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,603,3,334, + 167,0,602,599,1,0,0,0,603,604,1,0,0,0,604,602,1,0,0,0,604,605,1, + 0,0,0,605,39,1,0,0,0,606,609,3,42,21,0,607,609,3,44,22,0,608,606, + 1,0,0,0,608,607,1,0,0,0,609,41,1,0,0,0,610,612,5,72,0,0,611,613, + 5,498,0,0,612,611,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,616, + 5,374,0,0,615,617,3,338,169,0,616,615,1,0,0,0,616,617,1,0,0,0,617, + 618,1,0,0,0,618,619,3,326,163,0,619,620,5,517,0,0,620,625,3,46,23, + 0,621,622,5,521,0,0,622,624,3,46,23,0,623,621,1,0,0,0,624,627,1, + 0,0,0,625,623,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,625,1, + 0,0,0,628,629,5,521,0,0,629,631,3,82,41,0,630,628,1,0,0,0,630,631, + 1,0,0,0,631,634,1,0,0,0,632,633,5,521,0,0,633,635,3,84,42,0,634, + 632,1,0,0,0,634,635,1,0,0,0,635,638,1,0,0,0,636,637,5,521,0,0,637, + 639,3,88,44,0,638,636,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640, + 643,5,518,0,0,641,642,5,59,0,0,642,644,5,538,0,0,643,641,1,0,0,0, + 643,644,1,0,0,0,644,646,1,0,0,0,645,647,3,90,45,0,646,645,1,0,0, + 0,646,647,1,0,0,0,647,648,1,0,0,0,648,650,3,336,168,0,649,651,3, + 98,49,0,650,649,1,0,0,0,650,651,1,0,0,0,651,43,1,0,0,0,652,653,5, + 72,0,0,653,655,5,374,0,0,654,656,3,338,169,0,655,654,1,0,0,0,655, + 656,1,0,0,0,656,657,1,0,0,0,657,658,3,326,163,0,658,661,3,336,168, + 0,659,660,5,17,0,0,660,662,3,158,79,0,661,659,1,0,0,0,661,662,1, + 0,0,0,662,45,1,0,0,0,663,667,3,48,24,0,664,667,3,74,37,0,665,667, + 3,78,39,0,666,663,1,0,0,0,666,664,1,0,0,0,666,665,1,0,0,0,667,47, + 1,0,0,0,668,669,3,50,25,0,669,671,3,58,29,0,670,672,3,72,36,0,671, + 670,1,0,0,0,671,672,1,0,0,0,672,675,1,0,0,0,673,674,5,59,0,0,674, + 676,5,538,0,0,675,673,1,0,0,0,675,676,1,0,0,0,676,49,1,0,0,0,677, + 680,3,334,167,0,678,680,3,258,129,0,679,677,1,0,0,0,679,678,1,0, + 0,0,680,51,1,0,0,0,681,684,3,334,167,0,682,684,4,26,0,0,683,681, + 1,0,0,0,683,682,1,0,0,0,684,53,1,0,0,0,685,686,3,334,167,0,686,55, + 1,0,0,0,687,688,5,517,0,0,688,693,3,52,26,0,689,690,5,521,0,0,690, + 692,3,52,26,0,691,689,1,0,0,0,692,695,1,0,0,0,693,691,1,0,0,0,693, + 694,1,0,0,0,694,696,1,0,0,0,695,693,1,0,0,0,696,697,5,518,0,0,697, + 57,1,0,0,0,698,736,7,7,0,0,699,701,7,8,0,0,700,702,3,60,30,0,701, + 700,1,0,0,0,701,702,1,0,0,0,702,736,1,0,0,0,703,705,5,380,0,0,704, + 706,3,60,30,0,705,704,1,0,0,0,705,706,1,0,0,0,706,713,1,0,0,0,707, + 709,7,9,0,0,708,710,5,207,0,0,709,708,1,0,0,0,709,710,1,0,0,0,710, + 711,1,0,0,0,711,712,5,379,0,0,712,714,5,505,0,0,713,707,1,0,0,0, + 713,714,1,0,0,0,714,736,1,0,0,0,715,717,7,10,0,0,716,718,3,62,31, + 0,717,716,1,0,0,0,717,718,1,0,0,0,718,736,1,0,0,0,719,721,7,11,0, + 0,720,722,3,66,33,0,721,720,1,0,0,0,721,722,1,0,0,0,722,736,1,0, + 0,0,723,725,5,470,0,0,724,726,3,68,34,0,725,724,1,0,0,0,725,726, + 1,0,0,0,726,736,1,0,0,0,727,729,5,322,0,0,728,730,3,70,35,0,729, + 728,1,0,0,0,729,730,1,0,0,0,730,736,1,0,0,0,731,733,5,295,0,0,732, + 734,3,64,32,0,733,732,1,0,0,0,733,734,1,0,0,0,734,736,1,0,0,0,735, + 698,1,0,0,0,735,699,1,0,0,0,735,703,1,0,0,0,735,715,1,0,0,0,735, + 719,1,0,0,0,735,723,1,0,0,0,735,727,1,0,0,0,735,731,1,0,0,0,736, + 59,1,0,0,0,737,738,5,517,0,0,738,739,3,366,183,0,739,740,5,518,0, + 0,740,61,1,0,0,0,741,742,5,517,0,0,742,745,3,366,183,0,743,744,5, + 521,0,0,744,746,3,366,183,0,745,743,1,0,0,0,745,746,1,0,0,0,746, + 747,1,0,0,0,747,748,5,518,0,0,748,63,1,0,0,0,749,750,5,517,0,0,750, + 753,3,364,182,0,751,752,5,521,0,0,752,754,3,364,182,0,753,751,1, + 0,0,0,753,754,1,0,0,0,754,755,1,0,0,0,755,756,5,518,0,0,756,65,1, + 0,0,0,757,758,5,508,0,0,758,759,3,58,29,0,759,760,5,507,0,0,760, + 67,1,0,0,0,761,762,5,508,0,0,762,763,3,58,29,0,763,764,5,521,0,0, + 764,765,3,58,29,0,765,766,1,0,0,0,766,767,5,507,0,0,767,69,1,0,0, + 0,768,769,5,508,0,0,769,770,3,52,26,0,770,777,3,58,29,0,771,772, + 5,521,0,0,772,773,3,52,26,0,773,774,3,58,29,0,774,776,1,0,0,0,775, + 771,1,0,0,0,776,779,1,0,0,0,777,775,1,0,0,0,777,778,1,0,0,0,778, + 780,1,0,0,0,779,777,1,0,0,0,780,781,5,507,0,0,781,797,1,0,0,0,782, + 783,5,517,0,0,783,784,3,52,26,0,784,791,3,58,29,0,785,786,5,521, + 0,0,786,787,3,52,26,0,787,788,3,58,29,0,788,790,1,0,0,0,789,785, + 1,0,0,0,790,793,1,0,0,0,791,789,1,0,0,0,791,792,1,0,0,0,792,794, + 1,0,0,0,793,791,1,0,0,0,794,795,5,518,0,0,795,797,1,0,0,0,796,768, + 1,0,0,0,796,782,1,0,0,0,797,71,1,0,0,0,798,799,5,64,0,0,799,801, + 3,86,43,0,800,798,1,0,0,0,800,801,1,0,0,0,801,802,1,0,0,0,802,803, + 5,289,0,0,803,806,5,467,0,0,804,805,5,242,0,0,805,807,5,125,0,0, + 806,804,1,0,0,0,806,807,1,0,0,0,807,813,1,0,0,0,808,810,5,242,0, + 0,809,808,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811,813,5,245, + 0,0,812,800,1,0,0,0,812,809,1,0,0,0,813,73,1,0,0,0,814,815,3,50, + 25,0,815,816,3,58,29,0,816,819,5,219,0,0,817,818,5,151,0,0,818,820, + 3,76,38,0,819,817,1,0,0,0,819,820,1,0,0,0,820,822,1,0,0,0,821,823, + 5,424,0,0,822,821,1,0,0,0,822,823,1,0,0,0,823,75,1,0,0,0,824,825, + 5,538,0,0,825,77,1,0,0,0,826,827,3,50,25,0,827,828,5,17,0,0,828, + 831,3,80,40,0,829,830,5,59,0,0,830,832,5,538,0,0,831,829,1,0,0,0, + 831,832,1,0,0,0,832,79,1,0,0,0,833,834,3,258,129,0,834,81,1,0,0, + 0,835,836,5,425,0,0,836,837,5,146,0,0,837,838,3,52,26,0,838,839, + 5,17,0,0,839,840,3,258,129,0,840,83,1,0,0,0,841,842,5,64,0,0,842, + 844,3,86,43,0,843,841,1,0,0,0,843,844,1,0,0,0,844,845,1,0,0,0,845, + 846,5,289,0,0,846,847,5,467,0,0,847,848,3,56,28,0,848,849,5,242, + 0,0,849,850,5,125,0,0,850,85,1,0,0,0,851,852,3,310,155,0,852,87, + 1,0,0,0,853,854,5,278,0,0,854,855,5,146,0,0,855,856,5,372,0,0,856, + 89,1,0,0,0,857,858,5,270,0,0,858,859,5,34,0,0,859,860,3,92,46,0, + 860,91,1,0,0,0,861,862,5,517,0,0,862,867,3,94,47,0,863,864,5,521, + 0,0,864,866,3,94,47,0,865,863,1,0,0,0,866,869,1,0,0,0,867,865,1, + 0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,867,1,0,0,0,870,871,5, + 518,0,0,871,93,1,0,0,0,872,885,3,52,26,0,873,874,5,517,0,0,874,879, + 3,96,48,0,875,876,5,521,0,0,876,878,3,96,48,0,877,875,1,0,0,0,878, + 881,1,0,0,0,879,877,1,0,0,0,879,880,1,0,0,0,880,882,1,0,0,0,881, + 879,1,0,0,0,882,883,5,518,0,0,883,885,1,0,0,0,884,872,1,0,0,0,884, + 873,1,0,0,0,885,95,1,0,0,0,886,889,3,286,143,0,887,889,3,360,180, + 0,888,886,1,0,0,0,888,887,1,0,0,0,889,97,1,0,0,0,890,891,5,203,0, + 0,891,900,3,328,164,0,892,896,5,517,0,0,893,895,3,100,50,0,894,893, + 1,0,0,0,895,898,1,0,0,0,896,894,1,0,0,0,896,897,1,0,0,0,897,899, + 1,0,0,0,898,896,1,0,0,0,899,901,5,518,0,0,900,892,1,0,0,0,900,901, + 1,0,0,0,901,99,1,0,0,0,902,903,7,12,0,0,903,907,7,13,0,0,904,905, + 7,14,0,0,905,907,7,15,0,0,906,902,1,0,0,0,906,904,1,0,0,0,907,101, + 1,0,0,0,908,909,5,72,0,0,909,910,5,442,0,0,910,911,3,320,160,0,911, + 912,3,336,168,0,912,103,1,0,0,0,913,914,5,72,0,0,914,916,5,448,0, + 0,915,917,3,338,169,0,916,915,1,0,0,0,916,917,1,0,0,0,917,918,1, + 0,0,0,918,921,3,324,162,0,919,920,5,59,0,0,920,922,5,538,0,0,921, + 919,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,336,168,0, + 924,105,1,0,0,0,925,927,5,72,0,0,926,928,5,498,0,0,927,926,1,0,0, + 0,927,928,1,0,0,0,928,929,1,0,0,0,929,931,5,502,0,0,930,932,3,338, + 169,0,931,930,1,0,0,0,931,932,1,0,0,0,932,933,1,0,0,0,933,935,3, + 332,166,0,934,936,3,56,28,0,935,934,1,0,0,0,935,936,1,0,0,0,936, + 939,1,0,0,0,937,938,5,59,0,0,938,940,5,538,0,0,939,937,1,0,0,0,939, + 940,1,0,0,0,940,941,1,0,0,0,941,942,5,17,0,0,942,943,3,158,79,0, + 943,107,1,0,0,0,944,948,5,72,0,0,945,949,5,498,0,0,946,947,5,498, + 0,0,947,949,5,371,0,0,948,945,1,0,0,0,948,946,1,0,0,0,948,949,1, + 0,0,0,949,950,1,0,0,0,950,952,5,153,0,0,951,953,3,338,169,0,952, + 951,1,0,0,0,952,953,1,0,0,0,953,954,1,0,0,0,954,955,3,272,136,0, + 955,956,5,17,0,0,956,959,3,310,155,0,957,958,5,196,0,0,958,960,7, + 16,0,0,959,957,1,0,0,0,959,960,1,0,0,0,960,962,1,0,0,0,961,963,3, + 110,55,0,962,961,1,0,0,0,962,963,1,0,0,0,963,109,1,0,0,0,964,965, + 5,413,0,0,965,966,5,464,0,0,966,972,3,112,56,0,967,968,5,521,0,0, + 968,969,5,464,0,0,969,971,3,112,56,0,970,967,1,0,0,0,971,974,1,0, + 0,0,972,970,1,0,0,0,972,973,1,0,0,0,973,111,1,0,0,0,974,972,1,0, + 0,0,975,976,5,538,0,0,976,113,1,0,0,0,977,978,5,8,0,0,978,980,5, + 374,0,0,979,981,3,340,170,0,980,979,1,0,0,0,980,981,1,0,0,0,981, + 982,1,0,0,0,982,988,3,328,164,0,983,989,3,116,58,0,984,989,3,118, + 59,0,985,989,3,120,60,0,986,989,3,122,61,0,987,989,3,124,62,0,988, + 983,1,0,0,0,988,984,1,0,0,0,988,985,1,0,0,0,988,986,1,0,0,0,988, + 987,1,0,0,0,989,115,1,0,0,0,990,992,5,312,0,0,991,993,3,334,167, + 0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,995,5,389, + 0,0,995,996,3,334,167,0,996,117,1,0,0,0,997,998,5,341,0,0,998,999, + 3,342,171,0,999,119,1,0,0,0,1000,1001,5,438,0,0,1001,1002,5,64,0, + 0,1002,1003,3,86,43,0,1003,1004,5,289,0,0,1004,1005,5,467,0,0,1005, + 1007,3,56,28,0,1006,1008,3,126,63,0,1007,1006,1,0,0,0,1007,1008, + 1,0,0,0,1008,121,1,0,0,0,1009,1010,5,116,0,0,1010,1011,5,64,0,0, + 1011,1012,3,86,43,0,1012,123,1,0,0,0,1013,1014,5,438,0,0,1014,1015, + 5,404,0,0,1015,1016,3,56,28,0,1016,125,1,0,0,0,1017,1018,5,242,0, + 0,1018,1019,5,125,0,0,1019,127,1,0,0,0,1020,1021,5,8,0,0,1021,1022, + 5,502,0,0,1022,1026,3,330,165,0,1023,1027,3,116,58,0,1024,1025,5, + 17,0,0,1025,1027,3,158,79,0,1026,1023,1,0,0,0,1026,1024,1,0,0,0, + 1027,129,1,0,0,0,1028,1029,5,8,0,0,1029,1030,5,448,0,0,1030,1031, + 3,322,161,0,1031,1032,3,118,59,0,1032,131,1,0,0,0,1033,1037,5,8, + 0,0,1034,1038,5,498,0,0,1035,1036,5,498,0,0,1036,1038,5,371,0,0, + 1037,1034,1,0,0,0,1037,1035,1,0,0,0,1037,1038,1,0,0,0,1038,1039, + 1,0,0,0,1039,1041,5,153,0,0,1040,1042,3,340,170,0,1041,1040,1,0, + 0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1044,3,274,137,0,1044, + 1045,5,17,0,0,1045,1048,3,310,155,0,1046,1047,5,196,0,0,1047,1049, + 7,16,0,0,1048,1046,1,0,0,0,1048,1049,1,0,0,0,1049,133,1,0,0,0,1050, + 1051,5,116,0,0,1051,1053,5,442,0,0,1052,1054,3,340,170,0,1053,1052, + 1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0,0,1055,1056,3,318,159, + 0,1056,135,1,0,0,0,1057,1059,5,116,0,0,1058,1060,5,498,0,0,1059, + 1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1063,5,374, + 0,0,1062,1064,3,340,170,0,1063,1062,1,0,0,0,1063,1064,1,0,0,0,1064, + 1065,1,0,0,0,1065,1066,3,328,164,0,1066,137,1,0,0,0,1067,1068,5, + 116,0,0,1068,1070,5,448,0,0,1069,1071,3,340,170,0,1070,1069,1,0, + 0,0,1070,1071,1,0,0,0,1071,1072,1,0,0,0,1072,1074,3,322,161,0,1073, + 1075,7,17,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,139,1,0,0, + 0,1076,1078,5,116,0,0,1077,1079,5,498,0,0,1078,1077,1,0,0,0,1078, + 1079,1,0,0,0,1079,1080,1,0,0,0,1080,1082,5,502,0,0,1081,1083,3,340, + 170,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0,1084, + 1085,3,330,165,0,1085,141,1,0,0,0,1086,1090,5,116,0,0,1087,1091, + 5,498,0,0,1088,1089,5,498,0,0,1089,1091,5,371,0,0,1090,1087,1,0, + 0,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1094, + 5,153,0,0,1093,1095,3,340,170,0,1094,1093,1,0,0,0,1094,1095,1,0, + 0,0,1095,1096,1,0,0,0,1096,1097,3,274,137,0,1097,143,1,0,0,0,1098, + 1100,5,132,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0, + 0,0,1101,1106,3,146,73,0,1102,1106,3,154,77,0,1103,1104,5,132,0, + 0,1104,1106,3,156,78,0,1105,1099,1,0,0,0,1105,1102,1,0,0,0,1105, + 1103,1,0,0,0,1106,145,1,0,0,0,1107,1108,5,177,0,0,1108,1109,7,18, + 0,0,1109,1118,3,328,164,0,1110,1112,3,148,74,0,1111,1110,1,0,0,0, + 1111,1112,1,0,0,0,1112,1114,1,0,0,0,1113,1115,3,56,28,0,1114,1113, + 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1119,3,158,79,0, + 1117,1119,3,150,75,0,1118,1111,1,0,0,0,1118,1117,1,0,0,0,1119,147, + 1,0,0,0,1120,1121,5,269,0,0,1121,1122,3,342,171,0,1122,149,1,0,0, + 0,1123,1124,5,415,0,0,1124,1129,3,152,76,0,1125,1126,5,521,0,0,1126, + 1128,3,152,76,0,1127,1125,1,0,0,0,1128,1131,1,0,0,0,1129,1127,1, + 0,0,0,1129,1130,1,0,0,0,1130,151,1,0,0,0,1131,1129,1,0,0,0,1132, + 1133,5,517,0,0,1133,1138,3,360,180,0,1134,1135,5,521,0,0,1135,1137, + 3,360,180,0,1136,1134,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0, + 0,1138,1139,1,0,0,0,1139,1141,1,0,0,0,1140,1138,1,0,0,0,1141,1142, + 5,518,0,0,1142,153,1,0,0,0,1143,1144,5,24,0,0,1144,1145,5,355,0, + 0,1145,1146,5,341,0,0,1146,1150,5,522,0,0,1147,1148,3,146,73,0,1148, + 1149,5,522,0,0,1149,1151,1,0,0,0,1150,1147,1,0,0,0,1151,1152,1,0, + 0,0,1152,1150,1,0,0,0,1152,1153,1,0,0,0,1153,1154,1,0,0,0,1154,1155, + 5,122,0,0,1155,155,1,0,0,0,1156,1157,5,355,0,0,1157,1158,5,341,0, + 0,1158,1162,5,24,0,0,1159,1160,3,146,73,0,1160,1161,5,522,0,0,1161, + 1163,1,0,0,0,1162,1159,1,0,0,0,1163,1164,1,0,0,0,1164,1162,1,0,0, + 0,1164,1165,1,0,0,0,1165,1166,1,0,0,0,1166,1167,5,122,0,0,1167,157, + 1,0,0,0,1168,1169,6,79,-1,0,1169,1192,3,160,80,0,1170,1171,3,162, + 81,0,1171,1172,3,158,79,5,1172,1192,1,0,0,0,1173,1174,5,517,0,0, + 1174,1175,3,158,79,0,1175,1176,5,518,0,0,1176,1192,1,0,0,0,1177, + 1179,3,170,85,0,1178,1180,3,230,115,0,1179,1178,1,0,0,0,1179,1180, + 1,0,0,0,1180,1182,1,0,0,0,1181,1183,3,234,117,0,1182,1181,1,0,0, + 0,1182,1183,1,0,0,0,1183,1192,1,0,0,0,1184,1186,3,168,84,0,1185, + 1187,3,230,115,0,1186,1185,1,0,0,0,1186,1187,1,0,0,0,1187,1189,1, + 0,0,0,1188,1190,3,234,117,0,1189,1188,1,0,0,0,1189,1190,1,0,0,0, + 1190,1192,1,0,0,0,1191,1168,1,0,0,0,1191,1170,1,0,0,0,1191,1173, + 1,0,0,0,1191,1177,1,0,0,0,1191,1184,1,0,0,0,1192,1207,1,0,0,0,1193, + 1194,10,3,0,0,1194,1196,7,19,0,0,1195,1197,5,5,0,0,1196,1195,1,0, + 0,0,1196,1197,1,0,0,0,1197,1198,1,0,0,0,1198,1200,3,158,79,0,1199, + 1201,3,230,115,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1203,1, + 0,0,0,1202,1204,3,234,117,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0, + 1204,1206,1,0,0,0,1205,1193,1,0,0,0,1206,1209,1,0,0,0,1207,1205, + 1,0,0,0,1207,1208,1,0,0,0,1208,159,1,0,0,0,1209,1207,1,0,0,0,1210, + 1211,5,415,0,0,1211,1216,3,258,129,0,1212,1213,5,521,0,0,1213,1215, + 3,258,129,0,1214,1212,1,0,0,0,1215,1218,1,0,0,0,1216,1214,1,0,0, + 0,1216,1217,1,0,0,0,1217,161,1,0,0,0,1218,1216,1,0,0,0,1219,1220, + 5,434,0,0,1220,1225,3,164,82,0,1221,1222,5,521,0,0,1222,1224,3,164, + 82,0,1223,1221,1,0,0,0,1224,1227,1,0,0,0,1225,1223,1,0,0,0,1225, + 1226,1,0,0,0,1226,163,1,0,0,0,1227,1225,1,0,0,0,1228,1240,3,166, + 83,0,1229,1230,5,517,0,0,1230,1235,3,52,26,0,1231,1232,5,521,0,0, + 1232,1234,3,52,26,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,1238,1,0,0,0,1237,1235,1,0,0,0,1238, + 1239,5,518,0,0,1239,1241,1,0,0,0,1240,1229,1,0,0,0,1240,1241,1,0, + 0,0,1241,1242,1,0,0,0,1242,1243,5,17,0,0,1243,1244,5,517,0,0,1244, + 1245,3,158,79,0,1245,1246,5,518,0,0,1246,165,1,0,0,0,1247,1248,3, + 310,155,0,1248,167,1,0,0,0,1249,1251,3,170,85,0,1250,1252,3,176, + 88,0,1251,1250,1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253, + 1255,3,204,102,0,1254,1253,1,0,0,0,1254,1255,1,0,0,0,1255,1257,1, + 0,0,0,1256,1258,3,206,103,0,1257,1256,1,0,0,0,1257,1258,1,0,0,0, + 1258,1260,1,0,0,0,1259,1261,3,220,110,0,1260,1259,1,0,0,0,1260,1261, + 1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,222,111,0,1263,1262,1,0,0, + 0,1263,1264,1,0,0,0,1264,1270,1,0,0,0,1265,1266,3,170,85,0,1266, + 1267,3,176,88,0,1267,1268,3,228,114,0,1268,1270,1,0,0,0,1269,1249, + 1,0,0,0,1269,1265,1,0,0,0,1270,169,1,0,0,0,1271,1273,5,337,0,0,1272, + 1274,3,370,185,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1284,1, + 0,0,0,1275,1285,5,528,0,0,1276,1281,3,172,86,0,1277,1278,5,521,0, + 0,1278,1280,3,172,86,0,1279,1277,1,0,0,0,1280,1283,1,0,0,0,1281, + 1279,1,0,0,0,1281,1282,1,0,0,0,1282,1285,1,0,0,0,1283,1281,1,0,0, + 0,1284,1275,1,0,0,0,1284,1276,1,0,0,0,1285,171,1,0,0,0,1286,1302, + 3,174,87,0,1287,1292,3,258,129,0,1288,1290,5,17,0,0,1289,1288,1, + 0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1293,3,52,26,0,1292, + 1289,1,0,0,0,1292,1293,1,0,0,0,1293,1302,1,0,0,0,1294,1299,3,52, + 26,0,1295,1297,5,17,0,0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297, + 1298,1,0,0,0,1298,1300,3,258,129,0,1299,1296,1,0,0,0,1299,1300,1, + 0,0,0,1300,1302,1,0,0,0,1301,1286,1,0,0,0,1301,1287,1,0,0,0,1301, + 1294,1,0,0,0,1302,173,1,0,0,0,1303,1304,3,270,135,0,1304,1305,5, + 263,0,0,1305,1306,3,226,113,0,1306,1307,5,17,0,0,1307,1308,3,310, + 155,0,1308,1316,1,0,0,0,1309,1310,3,270,135,0,1310,1311,5,263,0, + 0,1311,1312,3,302,151,0,1312,1313,5,17,0,0,1313,1314,3,310,155,0, + 1314,1316,1,0,0,0,1315,1303,1,0,0,0,1315,1309,1,0,0,0,1316,175,1, + 0,0,0,1317,1318,5,151,0,0,1318,1319,3,178,89,0,1319,177,1,0,0,0, + 1320,1321,6,89,-1,0,1321,1326,3,180,90,0,1322,1323,5,521,0,0,1323, + 1325,3,180,90,0,1324,1322,1,0,0,0,1325,1328,1,0,0,0,1326,1324,1, + 0,0,0,1326,1327,1,0,0,0,1327,1332,1,0,0,0,1328,1326,1,0,0,0,1329, + 1332,3,188,94,0,1330,1332,3,190,95,0,1331,1320,1,0,0,0,1331,1329, + 1,0,0,0,1331,1330,1,0,0,0,1332,1354,1,0,0,0,1333,1334,10,3,0,0,1334, + 1335,5,73,0,0,1335,1336,5,185,0,0,1336,1353,3,178,89,4,1337,1339, + 10,4,0,0,1338,1340,5,234,0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0, + 1340,1342,1,0,0,0,1341,1343,7,20,0,0,1342,1341,1,0,0,0,1342,1343, + 1,0,0,0,1343,1345,1,0,0,0,1344,1346,5,262,0,0,1345,1344,1,0,0,0, + 1345,1346,1,0,0,0,1346,1347,1,0,0,0,1347,1348,5,185,0,0,1348,1350, + 3,178,89,0,1349,1351,3,202,101,0,1350,1349,1,0,0,0,1350,1351,1,0, + 0,0,1351,1353,1,0,0,0,1352,1333,1,0,0,0,1352,1337,1,0,0,0,1353,1356, + 1,0,0,0,1354,1352,1,0,0,0,1354,1355,1,0,0,0,1355,179,1,0,0,0,1356, + 1354,1,0,0,0,1357,1359,3,182,91,0,1358,1360,3,300,150,0,1359,1358, + 1,0,0,0,1359,1360,1,0,0,0,1360,181,1,0,0,0,1361,1363,5,374,0,0,1362, + 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1366,3,328, + 164,0,1365,1367,3,184,92,0,1366,1365,1,0,0,0,1366,1367,1,0,0,0,1367, + 1391,1,0,0,0,1368,1370,3,330,165,0,1369,1371,3,184,92,0,1370,1369, + 1,0,0,0,1370,1371,1,0,0,0,1371,1391,1,0,0,0,1372,1373,5,199,0,0, + 1373,1374,5,374,0,0,1374,1375,5,517,0,0,1375,1376,3,268,134,0,1376, + 1377,5,518,0,0,1377,1391,1,0,0,0,1378,1380,5,199,0,0,1379,1378,1, + 0,0,0,1379,1380,1,0,0,0,1380,1381,1,0,0,0,1381,1382,5,517,0,0,1382, + 1383,3,158,79,0,1383,1384,5,518,0,0,1384,1391,1,0,0,0,1385,1386, + 5,406,0,0,1386,1387,5,517,0,0,1387,1388,3,258,129,0,1388,1389,5, + 518,0,0,1389,1391,1,0,0,0,1390,1362,1,0,0,0,1390,1368,1,0,0,0,1390, + 1372,1,0,0,0,1390,1379,1,0,0,0,1390,1385,1,0,0,0,1391,183,1,0,0, + 0,1392,1393,5,146,0,0,1393,1394,5,372,0,0,1394,1395,5,17,0,0,1395, + 1396,5,250,0,0,1396,1397,3,186,93,0,1397,185,1,0,0,0,1398,1399,3, + 258,129,0,1399,187,1,0,0,0,1400,1401,5,517,0,0,1401,1402,3,150,75, + 0,1402,1403,5,518,0,0,1403,1404,3,300,150,0,1404,189,1,0,0,0,1405, + 1406,5,374,0,0,1406,1407,5,517,0,0,1407,1408,3,192,96,0,1408,1409, + 5,518,0,0,1409,191,1,0,0,0,1410,1411,3,194,97,0,1411,1412,5,517, + 0,0,1412,1417,3,196,98,0,1413,1414,5,521,0,0,1414,1416,3,196,98, + 0,1415,1413,1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418, + 1,0,0,0,1418,1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,518,0,0, + 1421,193,1,0,0,0,1422,1423,7,21,0,0,1423,195,1,0,0,0,1424,1425,5, + 374,0,0,1425,1440,3,218,109,0,1426,1440,3,200,100,0,1427,1440,3, + 288,144,0,1428,1429,5,447,0,0,1429,1430,5,537,0,0,1430,1431,5,374, + 0,0,1431,1440,3,218,109,0,1432,1433,5,499,0,0,1433,1434,5,537,0, + 0,1434,1440,3,200,100,0,1435,1436,3,198,99,0,1436,1437,5,537,0,0, + 1437,1438,3,288,144,0,1438,1440,1,0,0,0,1439,1424,1,0,0,0,1439,1426, + 1,0,0,0,1439,1427,1,0,0,0,1439,1428,1,0,0,0,1439,1432,1,0,0,0,1439, + 1435,1,0,0,0,1440,197,1,0,0,0,1441,1442,7,22,0,0,1442,199,1,0,0, + 0,1443,1444,5,452,0,0,1444,1445,5,517,0,0,1445,1446,3,52,26,0,1446, + 1447,5,518,0,0,1447,201,1,0,0,0,1448,1449,5,254,0,0,1449,1453,3, + 260,130,0,1450,1451,5,413,0,0,1451,1453,3,56,28,0,1452,1448,1,0, + 0,0,1452,1450,1,0,0,0,1453,203,1,0,0,0,1454,1455,5,431,0,0,1455, + 1456,3,260,130,0,1456,205,1,0,0,0,1457,1458,5,159,0,0,1458,1459, + 5,34,0,0,1459,1464,3,208,104,0,1460,1461,5,521,0,0,1461,1463,3,208, + 104,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462,1,0,0,0,1464, + 1465,1,0,0,0,1465,207,1,0,0,0,1466,1464,1,0,0,0,1467,1508,3,52,26, + 0,1468,1508,3,214,107,0,1469,1470,5,517,0,0,1470,1508,5,518,0,0, + 1471,1472,5,517,0,0,1472,1477,3,258,129,0,1473,1474,5,521,0,0,1474, + 1476,3,258,129,0,1475,1473,1,0,0,0,1476,1479,1,0,0,0,1477,1475,1, + 0,0,0,1477,1478,1,0,0,0,1478,1480,1,0,0,0,1479,1477,1,0,0,0,1480, + 1481,5,518,0,0,1481,1508,1,0,0,0,1482,1483,3,212,106,0,1483,1484, + 5,517,0,0,1484,1489,3,258,129,0,1485,1486,5,521,0,0,1486,1488,3, + 258,129,0,1487,1485,1,0,0,0,1488,1491,1,0,0,0,1489,1487,1,0,0,0, + 1489,1490,1,0,0,0,1490,1492,1,0,0,0,1491,1489,1,0,0,0,1492,1493, + 5,518,0,0,1493,1508,1,0,0,0,1494,1495,3,210,105,0,1495,1496,5,517, + 0,0,1496,1501,3,208,104,0,1497,1498,5,521,0,0,1498,1500,3,208,104, + 0,1499,1497,1,0,0,0,1500,1503,1,0,0,0,1501,1499,1,0,0,0,1501,1502, + 1,0,0,0,1502,1504,1,0,0,0,1503,1501,1,0,0,0,1504,1505,5,518,0,0, + 1505,1508,1,0,0,0,1506,1508,3,258,129,0,1507,1467,1,0,0,0,1507,1468, + 1,0,0,0,1507,1469,1,0,0,0,1507,1471,1,0,0,0,1507,1482,1,0,0,0,1507, + 1494,1,0,0,0,1507,1506,1,0,0,0,1508,209,1,0,0,0,1509,1510,5,160, + 0,0,1510,1511,5,494,0,0,1511,211,1,0,0,0,1512,1513,7,23,0,0,1513, + 213,1,0,0,0,1514,1515,3,216,108,0,1515,1516,5,517,0,0,1516,1517, + 3,218,109,0,1517,1518,5,521,0,0,1518,1519,3,288,144,0,1519,1520, + 5,518,0,0,1520,215,1,0,0,0,1521,1522,7,24,0,0,1522,217,1,0,0,0,1523, + 1524,3,334,167,0,1524,219,1,0,0,0,1525,1526,5,163,0,0,1526,1527, + 3,260,130,0,1527,221,1,0,0,0,1528,1529,5,433,0,0,1529,1534,3,224, + 112,0,1530,1531,5,521,0,0,1531,1533,3,224,112,0,1532,1530,1,0,0, + 0,1533,1536,1,0,0,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,223, + 1,0,0,0,1536,1534,1,0,0,0,1537,1538,3,302,151,0,1538,1539,5,17,0, + 0,1539,1540,3,226,113,0,1540,225,1,0,0,0,1541,1543,3,302,151,0,1542, + 1541,1,0,0,0,1542,1543,1,0,0,0,1543,1544,1,0,0,0,1544,1546,5,517, + 0,0,1545,1547,3,236,118,0,1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547, + 1549,1,0,0,0,1548,1550,3,230,115,0,1549,1548,1,0,0,0,1549,1550,1, + 0,0,0,1550,1552,1,0,0,0,1551,1553,3,252,126,0,1552,1551,1,0,0,0, + 1552,1553,1,0,0,0,1553,1554,1,0,0,0,1554,1555,5,518,0,0,1555,227, + 1,0,0,0,1556,1557,5,214,0,0,1557,1559,5,517,0,0,1558,1560,3,236, + 118,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1562,1,0,0,0,1561, + 1563,3,230,115,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1, + 0,0,0,1564,1566,3,240,120,0,1565,1564,1,0,0,0,1565,1566,1,0,0,0, + 1566,1568,1,0,0,0,1567,1569,3,246,123,0,1568,1567,1,0,0,0,1568,1569, + 1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,248,124,0,1571,1570,1,0,0, + 0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575,3,242,121,0,1574, + 1573,1,0,0,0,1574,1575,1,0,0,0,1575,1576,1,0,0,0,1576,1577,3,250, + 125,0,1577,1582,5,518,0,0,1578,1580,5,17,0,0,1579,1578,1,0,0,0,1579, + 1580,1,0,0,0,1580,1581,1,0,0,0,1581,1583,3,310,155,0,1582,1579,1, + 0,0,0,1582,1583,1,0,0,0,1583,229,1,0,0,0,1584,1585,5,259,0,0,1585, + 1586,5,34,0,0,1586,1591,3,232,116,0,1587,1588,5,521,0,0,1588,1590, + 3,232,116,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0, + 0,1591,1592,1,0,0,0,1592,231,1,0,0,0,1593,1591,1,0,0,0,1594,1596, + 3,52,26,0,1595,1597,7,25,0,0,1596,1595,1,0,0,0,1596,1597,1,0,0,0, + 1597,1600,1,0,0,0,1598,1599,5,477,0,0,1599,1601,7,26,0,0,1600,1598, + 1,0,0,0,1600,1601,1,0,0,0,1601,233,1,0,0,0,1602,1605,5,205,0,0,1603, + 1606,5,5,0,0,1604,1606,3,258,129,0,1605,1603,1,0,0,0,1605,1604,1, + 0,0,0,1606,235,1,0,0,0,1607,1608,5,269,0,0,1608,1611,5,34,0,0,1609, + 1612,3,52,26,0,1610,1612,3,270,135,0,1611,1609,1,0,0,0,1611,1610, + 1,0,0,0,1612,1620,1,0,0,0,1613,1616,5,521,0,0,1614,1617,3,52,26, + 0,1615,1617,3,270,135,0,1616,1614,1,0,0,0,1616,1615,1,0,0,0,1617, + 1619,1,0,0,0,1618,1613,1,0,0,0,1619,1622,1,0,0,0,1620,1618,1,0,0, + 0,1620,1621,1,0,0,0,1621,237,1,0,0,0,1622,1620,1,0,0,0,1623,1640, + 5,528,0,0,1624,1640,5,531,0,0,1625,1640,5,536,0,0,1626,1627,5,519, + 0,0,1627,1628,5,539,0,0,1628,1629,5,521,0,0,1629,1630,5,539,0,0, + 1630,1640,5,520,0,0,1631,1632,5,519,0,0,1632,1633,5,539,0,0,1633, + 1634,5,521,0,0,1634,1640,5,520,0,0,1635,1636,5,519,0,0,1636,1637, + 5,521,0,0,1637,1638,5,539,0,0,1638,1640,5,520,0,0,1639,1623,1,0, + 0,0,1639,1624,1,0,0,0,1639,1625,1,0,0,0,1639,1626,1,0,0,0,1639,1631, + 1,0,0,0,1639,1635,1,0,0,0,1640,239,1,0,0,0,1641,1642,5,216,0,0,1642, + 1647,3,172,86,0,1643,1644,5,521,0,0,1644,1646,3,172,86,0,1645,1643, + 1,0,0,0,1646,1649,1,0,0,0,1647,1645,1,0,0,0,1647,1648,1,0,0,0,1648, + 241,1,0,0,0,1649,1647,1,0,0,0,1650,1651,5,272,0,0,1651,1653,5,517, + 0,0,1652,1654,3,244,122,0,1653,1652,1,0,0,0,1654,1655,1,0,0,0,1655, + 1653,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1659,5,518, + 0,0,1658,1660,3,256,128,0,1659,1658,1,0,0,0,1659,1660,1,0,0,0,1660, + 243,1,0,0,0,1661,1663,3,312,156,0,1662,1664,3,238,119,0,1663,1662, + 1,0,0,0,1663,1664,1,0,0,0,1664,245,1,0,0,0,1665,1666,5,5,0,0,1666, + 1667,5,323,0,0,1667,1668,5,273,0,0,1668,1674,5,211,0,0,1669,1670, + 5,255,0,0,1670,1671,5,322,0,0,1671,1672,5,273,0,0,1672,1674,5,211, + 0,0,1673,1665,1,0,0,0,1673,1669,1,0,0,0,1674,247,1,0,0,0,1675,1676, + 5,439,0,0,1676,1677,5,211,0,0,1677,1678,5,344,0,0,1678,1679,5,479, + 0,0,1679,1680,5,468,0,0,1680,1700,5,322,0,0,1681,1682,5,439,0,0, + 1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,389,0,0,1685, + 1686,5,238,0,0,1686,1700,5,322,0,0,1687,1688,5,439,0,0,1688,1689, + 5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692,5,468, + 0,0,1692,1700,3,312,156,0,1693,1694,5,439,0,0,1694,1695,5,211,0, + 0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,458,0,0,1698, + 1700,3,312,156,0,1699,1675,1,0,0,0,1699,1681,1,0,0,0,1699,1687,1, + 0,0,0,1699,1693,1,0,0,0,1700,249,1,0,0,0,1701,1702,5,105,0,0,1702, + 1707,3,172,86,0,1703,1704,5,521,0,0,1704,1706,3,172,86,0,1705,1703, + 1,0,0,0,1706,1709,1,0,0,0,1707,1705,1,0,0,0,1707,1708,1,0,0,0,1708, + 251,1,0,0,0,1709,1707,1,0,0,0,1710,1711,5,293,0,0,1711,1712,5,27, + 0,0,1712,1713,3,288,144,0,1713,1714,3,254,127,0,1714,1720,1,0,0, + 0,1715,1716,5,323,0,0,1716,1717,5,27,0,0,1717,1718,5,539,0,0,1718, + 1720,3,254,127,0,1719,1710,1,0,0,0,1719,1715,1,0,0,0,1720,253,1, + 0,0,0,1721,1722,5,481,0,0,1722,1723,5,10,0,0,1723,1724,5,76,0,0, + 1724,1725,5,322,0,0,1725,255,1,0,0,0,1726,1727,5,435,0,0,1727,1728, + 3,288,144,0,1728,257,1,0,0,0,1729,1730,3,260,130,0,1730,259,1,0, + 0,0,1731,1732,6,130,-1,0,1732,1733,5,242,0,0,1733,1744,3,260,130, + 6,1734,1735,5,133,0,0,1735,1736,5,517,0,0,1736,1737,3,158,79,0,1737, + 1738,5,518,0,0,1738,1744,1,0,0,0,1739,1741,3,266,133,0,1740,1742, + 3,262,131,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1744,1,0,0, + 0,1743,1731,1,0,0,0,1743,1734,1,0,0,0,1743,1739,1,0,0,0,1744,1759, + 1,0,0,0,1745,1746,10,3,0,0,1746,1747,5,10,0,0,1747,1758,3,260,130, + 4,1748,1749,10,2,0,0,1749,1750,5,258,0,0,1750,1758,3,260,130,3,1751, + 1752,10,1,0,0,1752,1754,5,184,0,0,1753,1755,5,242,0,0,1754,1753, + 1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1758,7,27,0,0,1757, + 1745,1,0,0,0,1757,1748,1,0,0,0,1757,1751,1,0,0,0,1758,1761,1,0,0, + 0,1759,1757,1,0,0,0,1759,1760,1,0,0,0,1760,261,1,0,0,0,1761,1759, + 1,0,0,0,1762,1764,5,242,0,0,1763,1762,1,0,0,0,1763,1764,1,0,0,0, + 1764,1765,1,0,0,0,1765,1767,5,27,0,0,1766,1768,7,28,0,0,1767,1766, + 1,0,0,0,1767,1768,1,0,0,0,1768,1769,1,0,0,0,1769,1770,3,266,133, + 0,1770,1771,5,10,0,0,1771,1772,3,266,133,0,1772,1837,1,0,0,0,1773, + 1775,5,242,0,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0, + 0,0,1776,1777,5,170,0,0,1777,1778,5,517,0,0,1778,1783,3,258,129, + 0,1779,1780,5,521,0,0,1780,1782,3,258,129,0,1781,1779,1,0,0,0,1782, + 1785,1,0,0,0,1783,1781,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0, + 0,1785,1783,1,0,0,0,1786,1787,5,518,0,0,1787,1837,1,0,0,0,1788,1790, + 5,242,0,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0, + 1791,1792,5,170,0,0,1792,1793,5,517,0,0,1793,1794,3,158,79,0,1794, + 1795,5,518,0,0,1795,1837,1,0,0,0,1796,1797,5,133,0,0,1797,1798,5, + 517,0,0,1798,1799,3,158,79,0,1799,1800,5,518,0,0,1800,1837,1,0,0, + 0,1801,1803,5,242,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0,0,1803,1804, + 1,0,0,0,1804,1805,5,319,0,0,1805,1837,3,266,133,0,1806,1837,3,264, + 132,0,1807,1809,5,184,0,0,1808,1810,5,242,0,0,1809,1808,1,0,0,0, + 1809,1810,1,0,0,0,1810,1811,1,0,0,0,1811,1837,7,27,0,0,1812,1814, + 5,184,0,0,1813,1815,5,242,0,0,1814,1813,1,0,0,0,1814,1815,1,0,0, + 0,1815,1816,1,0,0,0,1816,1817,5,113,0,0,1817,1818,5,151,0,0,1818, + 1837,3,266,133,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821, + 1,0,0,0,1821,1822,1,0,0,0,1822,1823,5,343,0,0,1823,1824,5,389,0, + 0,1824,1827,3,266,133,0,1825,1826,5,127,0,0,1826,1828,3,364,182, + 0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828,1837,1,0,0,0,1829,1830, + 5,184,0,0,1830,1834,5,186,0,0,1831,1835,5,414,0,0,1832,1835,5,13, + 0,0,1833,1835,3,310,155,0,1834,1831,1,0,0,0,1834,1832,1,0,0,0,1834, + 1833,1,0,0,0,1834,1835,1,0,0,0,1835,1837,1,0,0,0,1836,1763,1,0,0, + 0,1836,1774,1,0,0,0,1836,1789,1,0,0,0,1836,1796,1,0,0,0,1836,1802, + 1,0,0,0,1836,1806,1,0,0,0,1836,1807,1,0,0,0,1836,1812,1,0,0,0,1836, + 1820,1,0,0,0,1836,1829,1,0,0,0,1837,263,1,0,0,0,1838,1840,5,242, + 0,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841,1,0,0,0,1841,1842, + 5,203,0,0,1842,1856,7,29,0,0,1843,1844,5,517,0,0,1844,1857,5,518, + 0,0,1845,1846,5,517,0,0,1846,1851,3,258,129,0,1847,1848,5,521,0, + 0,1848,1850,3,258,129,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851, + 1849,1,0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0, + 0,1854,1855,5,518,0,0,1855,1857,1,0,0,0,1856,1843,1,0,0,0,1856,1845, + 1,0,0,0,1857,1868,1,0,0,0,1858,1860,5,242,0,0,1859,1858,1,0,0,0, + 1859,1860,1,0,0,0,1860,1861,1,0,0,0,1861,1862,5,203,0,0,1862,1865, + 3,266,133,0,1863,1864,5,127,0,0,1864,1866,3,364,182,0,1865,1863, + 1,0,0,0,1865,1866,1,0,0,0,1866,1868,1,0,0,0,1867,1839,1,0,0,0,1867, + 1859,1,0,0,0,1868,265,1,0,0,0,1869,1870,6,133,-1,0,1870,1874,3,270, + 135,0,1871,1872,7,30,0,0,1872,1874,3,266,133,7,1873,1869,1,0,0,0, + 1873,1871,1,0,0,0,1874,1896,1,0,0,0,1875,1876,10,6,0,0,1876,1877, + 7,31,0,0,1877,1895,3,266,133,7,1878,1879,10,5,0,0,1879,1880,7,32, + 0,0,1880,1895,3,266,133,6,1881,1882,10,4,0,0,1882,1883,5,512,0,0, + 1883,1895,3,266,133,5,1884,1885,10,3,0,0,1885,1886,5,513,0,0,1886, + 1895,3,266,133,4,1887,1888,10,2,0,0,1888,1889,5,511,0,0,1889,1895, + 3,266,133,3,1890,1891,10,1,0,0,1891,1892,3,352,176,0,1892,1893,3, + 266,133,2,1893,1895,1,0,0,0,1894,1875,1,0,0,0,1894,1878,1,0,0,0, + 1894,1881,1,0,0,0,1894,1884,1,0,0,0,1894,1887,1,0,0,0,1894,1890, + 1,0,0,0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897, + 267,1,0,0,0,1898,1896,1,0,0,0,1899,1919,3,378,189,0,1900,1919,3, + 276,138,0,1901,1902,3,278,139,0,1902,1914,5,517,0,0,1903,1905,3, + 370,185,0,1904,1903,1,0,0,0,1904,1905,1,0,0,0,1905,1906,1,0,0,0, + 1906,1911,3,280,140,0,1907,1908,5,521,0,0,1908,1910,3,280,140,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,1915,1,0,0,0,1913,1911,1,0,0,0,1914,1904,1,0,0,0,1914, + 1915,1,0,0,0,1915,1916,1,0,0,0,1916,1917,5,518,0,0,1917,1919,1,0, + 0,0,1918,1899,1,0,0,0,1918,1900,1,0,0,0,1918,1901,1,0,0,0,1919,269, + 1,0,0,0,1920,1921,6,135,-1,0,1921,1923,5,40,0,0,1922,1924,3,316, + 158,0,1923,1922,1,0,0,0,1924,1925,1,0,0,0,1925,1923,1,0,0,0,1925, + 1926,1,0,0,0,1926,1929,1,0,0,0,1927,1928,5,120,0,0,1928,1930,3,258, + 129,0,1929,1927,1,0,0,0,1929,1930,1,0,0,0,1930,1931,1,0,0,0,1931, + 1932,5,122,0,0,1932,1996,1,0,0,0,1933,1934,5,40,0,0,1934,1936,3, + 258,129,0,1935,1937,3,316,158,0,1936,1935,1,0,0,0,1937,1938,1,0, + 0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1942,1,0,0,0,1940,1941, + 5,120,0,0,1941,1943,3,258,129,0,1942,1940,1,0,0,0,1942,1943,1,0, + 0,0,1943,1944,1,0,0,0,1944,1945,5,122,0,0,1945,1996,1,0,0,0,1946, + 1947,5,41,0,0,1947,1948,5,517,0,0,1948,1949,3,258,129,0,1949,1950, + 5,17,0,0,1950,1951,3,58,29,0,1951,1952,5,518,0,0,1952,1996,1,0,0, + 0,1953,1954,5,458,0,0,1954,1955,5,517,0,0,1955,1958,3,258,129,0, + 1956,1957,5,462,0,0,1957,1959,5,477,0,0,1958,1956,1,0,0,0,1958,1959, + 1,0,0,0,1959,1960,1,0,0,0,1960,1961,5,518,0,0,1961,1996,1,0,0,0, + 1962,1963,5,468,0,0,1963,1964,5,517,0,0,1964,1967,3,258,129,0,1965, + 1966,5,462,0,0,1966,1968,5,477,0,0,1967,1965,1,0,0,0,1967,1968,1, + 0,0,0,1968,1969,1,0,0,0,1969,1970,5,518,0,0,1970,1996,1,0,0,0,1971, + 1972,5,282,0,0,1972,1973,5,517,0,0,1973,1974,3,266,133,0,1974,1975, + 5,170,0,0,1975,1976,3,266,133,0,1976,1977,5,518,0,0,1977,1996,1, + 0,0,0,1978,1996,3,360,180,0,1979,1996,5,528,0,0,1980,1981,3,334, + 167,0,1981,1982,5,514,0,0,1982,1983,5,528,0,0,1983,1996,1,0,0,0, + 1984,1985,5,517,0,0,1985,1986,3,158,79,0,1986,1987,5,518,0,0,1987, + 1996,1,0,0,0,1988,1996,3,268,134,0,1989,1996,3,54,27,0,1990,1996, + 3,282,141,0,1991,1992,5,517,0,0,1992,1993,3,258,129,0,1993,1994, + 5,518,0,0,1994,1996,1,0,0,0,1995,1920,1,0,0,0,1995,1933,1,0,0,0, + 1995,1946,1,0,0,0,1995,1953,1,0,0,0,1995,1962,1,0,0,0,1995,1971, + 1,0,0,0,1995,1978,1,0,0,0,1995,1979,1,0,0,0,1995,1980,1,0,0,0,1995, + 1984,1,0,0,0,1995,1988,1,0,0,0,1995,1989,1,0,0,0,1995,1990,1,0,0, + 0,1995,1991,1,0,0,0,1996,2004,1,0,0,0,1997,1998,10,4,0,0,1998,1999, + 5,515,0,0,1999,2000,3,266,133,0,2000,2001,5,516,0,0,2001,2003,1, + 0,0,0,2002,1997,1,0,0,0,2003,2006,1,0,0,0,2004,2002,1,0,0,0,2004, + 2005,1,0,0,0,2005,271,1,0,0,0,2006,2004,1,0,0,0,2007,2008,3,334, + 167,0,2008,273,1,0,0,0,2009,2014,3,382,191,0,2010,2014,3,378,189, + 0,2011,2014,3,380,190,0,2012,2014,3,334,167,0,2013,2009,1,0,0,0, + 2013,2010,1,0,0,0,2013,2011,1,0,0,0,2013,2012,1,0,0,0,2014,275,1, + 0,0,0,2015,2016,3,380,190,0,2016,2017,5,538,0,0,2017,2020,1,0,0, + 0,2018,2020,3,288,144,0,2019,2015,1,0,0,0,2019,2018,1,0,0,0,2020, + 277,1,0,0,0,2021,2024,3,382,191,0,2022,2024,3,334,167,0,2023,2021, + 1,0,0,0,2023,2022,1,0,0,0,2024,279,1,0,0,0,2025,2030,3,376,188,0, + 2026,2030,3,374,187,0,2027,2030,3,372,186,0,2028,2030,3,258,129, + 0,2029,2025,1,0,0,0,2029,2026,1,0,0,0,2029,2027,1,0,0,0,2029,2028, + 1,0,0,0,2030,281,1,0,0,0,2031,2032,3,334,167,0,2032,283,1,0,0,0, + 2033,2034,3,310,155,0,2034,285,1,0,0,0,2035,2038,3,310,155,0,2036, + 2038,3,282,141,0,2037,2035,1,0,0,0,2037,2036,1,0,0,0,2038,287,1, + 0,0,0,2039,2042,5,182,0,0,2040,2043,3,290,145,0,2041,2043,3,294, + 147,0,2042,2040,1,0,0,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043, + 289,1,0,0,0,2044,2046,3,292,146,0,2045,2047,3,296,148,0,2046,2045, + 1,0,0,0,2046,2047,1,0,0,0,2047,291,1,0,0,0,2048,2049,3,298,149,0, + 2049,2050,3,374,187,0,2050,2052,1,0,0,0,2051,2048,1,0,0,0,2052,2053, + 1,0,0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,293,1,0,0,0,2055, + 2058,3,296,148,0,2056,2059,3,292,146,0,2057,2059,3,296,148,0,2058, + 2056,1,0,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,295,1,0,0, + 0,2060,2061,3,298,149,0,2061,2062,3,374,187,0,2062,2063,5,389,0, + 0,2063,2064,3,374,187,0,2064,297,1,0,0,0,2065,2067,7,33,0,0,2066, + 2065,1,0,0,0,2066,2067,1,0,0,0,2067,2068,1,0,0,0,2068,2071,7,34, + 0,0,2069,2071,5,538,0,0,2070,2066,1,0,0,0,2070,2069,1,0,0,0,2071, + 299,1,0,0,0,2072,2074,5,17,0,0,2073,2072,1,0,0,0,2073,2074,1,0,0, + 0,2074,2075,1,0,0,0,2075,2077,3,310,155,0,2076,2078,3,306,153,0, + 2077,2076,1,0,0,0,2077,2078,1,0,0,0,2078,301,1,0,0,0,2079,2080,3, + 310,155,0,2080,2081,3,304,152,0,2081,303,1,0,0,0,2082,2083,5,222, + 0,0,2083,2085,3,310,155,0,2084,2082,1,0,0,0,2085,2086,1,0,0,0,2086, + 2084,1,0,0,0,2086,2087,1,0,0,0,2087,2090,1,0,0,0,2088,2090,1,0,0, + 0,2089,2084,1,0,0,0,2089,2088,1,0,0,0,2090,305,1,0,0,0,2091,2092, + 5,517,0,0,2092,2093,3,308,154,0,2093,2094,5,518,0,0,2094,307,1,0, + 0,0,2095,2100,3,310,155,0,2096,2097,5,521,0,0,2097,2099,3,310,155, + 0,2098,2096,1,0,0,0,2099,2102,1,0,0,0,2100,2098,1,0,0,0,2100,2101, + 1,0,0,0,2101,309,1,0,0,0,2102,2100,1,0,0,0,2103,2107,3,312,156,0, + 2104,2107,3,314,157,0,2105,2107,3,384,192,0,2106,2103,1,0,0,0,2106, + 2104,1,0,0,0,2106,2105,1,0,0,0,2107,311,1,0,0,0,2108,2109,7,35,0, + 0,2109,313,1,0,0,0,2110,2111,5,538,0,0,2111,315,1,0,0,0,2112,2113, + 5,429,0,0,2113,2114,3,258,129,0,2114,2115,5,377,0,0,2115,2116,3, + 258,129,0,2116,317,1,0,0,0,2117,2118,3,310,155,0,2118,319,1,0,0, + 0,2119,2120,3,310,155,0,2120,321,1,0,0,0,2121,2124,3,310,155,0,2122, + 2123,5,514,0,0,2123,2125,3,310,155,0,2124,2122,1,0,0,0,2124,2125, + 1,0,0,0,2125,323,1,0,0,0,2126,2129,3,310,155,0,2127,2128,5,514,0, + 0,2128,2130,3,310,155,0,2129,2127,1,0,0,0,2129,2130,1,0,0,0,2130, + 325,1,0,0,0,2131,2134,3,310,155,0,2132,2133,5,514,0,0,2133,2135, + 3,310,155,0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2144,1,0,0, + 0,2136,2137,3,310,155,0,2137,2138,5,514,0,0,2138,2141,3,310,155, + 0,2139,2140,5,514,0,0,2140,2142,3,310,155,0,2141,2139,1,0,0,0,2141, + 2142,1,0,0,0,2142,2144,1,0,0,0,2143,2131,1,0,0,0,2143,2136,1,0,0, + 0,2144,327,1,0,0,0,2145,2148,3,310,155,0,2146,2147,5,514,0,0,2147, + 2149,3,310,155,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2158,1, + 0,0,0,2150,2151,3,310,155,0,2151,2152,5,514,0,0,2152,2155,3,310, + 155,0,2153,2154,5,514,0,0,2154,2156,3,310,155,0,2155,2153,1,0,0, + 0,2155,2156,1,0,0,0,2156,2158,1,0,0,0,2157,2145,1,0,0,0,2157,2150, + 1,0,0,0,2158,329,1,0,0,0,2159,2162,3,310,155,0,2160,2161,5,514,0, + 0,2161,2163,3,310,155,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163, + 2172,1,0,0,0,2164,2165,3,310,155,0,2165,2166,5,514,0,0,2166,2169, + 3,310,155,0,2167,2168,5,514,0,0,2168,2170,3,310,155,0,2169,2167, + 1,0,0,0,2169,2170,1,0,0,0,2170,2172,1,0,0,0,2171,2159,1,0,0,0,2171, + 2164,1,0,0,0,2172,331,1,0,0,0,2173,2176,3,310,155,0,2174,2175,5, + 514,0,0,2175,2177,3,310,155,0,2176,2174,1,0,0,0,2176,2177,1,0,0, + 0,2177,2186,1,0,0,0,2178,2179,3,310,155,0,2179,2180,5,514,0,0,2180, + 2183,3,310,155,0,2181,2182,5,514,0,0,2182,2184,3,310,155,0,2183, + 2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0,0,2185,2173,1,0,0, + 0,2185,2178,1,0,0,0,2186,333,1,0,0,0,2187,2192,3,310,155,0,2188, + 2189,5,514,0,0,2189,2191,3,310,155,0,2190,2188,1,0,0,0,2191,2194, + 1,0,0,0,2192,2193,1,0,0,0,2192,2190,1,0,0,0,2193,335,1,0,0,0,2194, + 2192,1,0,0,0,2195,2196,5,434,0,0,2196,2197,3,342,171,0,2197,337, + 1,0,0,0,2198,2199,5,167,0,0,2199,2200,5,242,0,0,2200,2201,5,133, + 0,0,2201,339,1,0,0,0,2202,2203,5,167,0,0,2203,2204,5,133,0,0,2204, + 341,1,0,0,0,2205,2206,5,517,0,0,2206,2211,3,344,172,0,2207,2208, + 5,521,0,0,2208,2210,3,344,172,0,2209,2207,1,0,0,0,2210,2213,1,0, + 0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212,2214,1,0,0,0,2213,2211, + 1,0,0,0,2214,2215,5,518,0,0,2215,343,1,0,0,0,2216,2221,3,346,173, + 0,2217,2219,5,506,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220, + 1,0,0,0,2220,2222,3,348,174,0,2221,2218,1,0,0,0,2221,2222,1,0,0, + 0,2222,345,1,0,0,0,2223,2227,3,310,155,0,2224,2227,3,282,141,0,2225, + 2227,5,538,0,0,2226,2223,1,0,0,0,2226,2224,1,0,0,0,2226,2225,1,0, + 0,0,2227,347,1,0,0,0,2228,2233,5,539,0,0,2229,2233,5,540,0,0,2230, + 2233,3,368,184,0,2231,2233,5,538,0,0,2232,2228,1,0,0,0,2232,2229, + 1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0,0,0,2233,349,1,0,0,0,2234, + 2241,5,10,0,0,2235,2236,5,512,0,0,2236,2241,5,512,0,0,2237,2241, + 5,258,0,0,2238,2239,5,511,0,0,2239,2241,5,511,0,0,2240,2234,1,0, + 0,0,2240,2235,1,0,0,0,2240,2237,1,0,0,0,2240,2238,1,0,0,0,2241,351, + 1,0,0,0,2242,2257,5,506,0,0,2243,2257,5,507,0,0,2244,2257,5,508, + 0,0,2245,2246,5,508,0,0,2246,2257,5,506,0,0,2247,2248,5,507,0,0, + 2248,2257,5,506,0,0,2249,2250,5,508,0,0,2250,2257,5,507,0,0,2251, + 2252,5,509,0,0,2252,2257,5,506,0,0,2253,2254,5,508,0,0,2254,2255, + 5,506,0,0,2255,2257,5,507,0,0,2256,2242,1,0,0,0,2256,2243,1,0,0, + 0,2256,2244,1,0,0,0,2256,2245,1,0,0,0,2256,2247,1,0,0,0,2256,2249, + 1,0,0,0,2256,2251,1,0,0,0,2256,2253,1,0,0,0,2257,353,1,0,0,0,2258, + 2259,5,508,0,0,2259,2266,5,508,0,0,2260,2261,5,507,0,0,2261,2266, + 5,507,0,0,2262,2266,5,512,0,0,2263,2266,5,513,0,0,2264,2266,5,511, + 0,0,2265,2258,1,0,0,0,2265,2260,1,0,0,0,2265,2262,1,0,0,0,2265,2263, + 1,0,0,0,2265,2264,1,0,0,0,2266,355,1,0,0,0,2267,2268,7,36,0,0,2268, + 357,1,0,0,0,2269,2270,7,37,0,0,2270,359,1,0,0,0,2271,2286,3,288, + 144,0,2272,2286,3,362,181,0,2273,2286,3,364,182,0,2274,2276,5,530, + 0,0,2275,2274,1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2286, + 3,366,183,0,2278,2286,3,368,184,0,2279,2286,5,540,0,0,2280,2286, + 5,541,0,0,2281,2283,5,242,0,0,2282,2281,1,0,0,0,2282,2283,1,0,0, + 0,2283,2284,1,0,0,0,2284,2286,5,245,0,0,2285,2271,1,0,0,0,2285,2272, + 1,0,0,0,2285,2273,1,0,0,0,2285,2275,1,0,0,0,2285,2278,1,0,0,0,2285, + 2279,1,0,0,0,2285,2280,1,0,0,0,2285,2282,1,0,0,0,2286,361,1,0,0, + 0,2287,2288,3,372,186,0,2288,2289,3,364,182,0,2289,363,1,0,0,0,2290, + 2291,5,538,0,0,2291,365,1,0,0,0,2292,2293,5,539,0,0,2293,367,1,0, + 0,0,2294,2295,7,38,0,0,2295,369,1,0,0,0,2296,2297,7,39,0,0,2297, + 371,1,0,0,0,2298,2299,7,40,0,0,2299,373,1,0,0,0,2300,2301,7,41,0, + 0,2301,375,1,0,0,0,2302,2303,7,42,0,0,2303,377,1,0,0,0,2304,2305, + 7,43,0,0,2305,379,1,0,0,0,2306,2307,7,44,0,0,2307,381,1,0,0,0,2308, + 2309,7,45,0,0,2309,383,1,0,0,0,2310,2311,7,46,0,0,2311,385,1,0,0, + 0,273,389,396,399,413,431,435,444,449,456,467,476,488,491,498,501, + 509,513,518,521,528,536,540,552,560,564,596,599,604,608,612,616, + 625,630,634,638,643,646,650,655,661,666,671,675,679,683,693,701, + 705,709,713,717,721,725,729,733,735,745,753,777,791,796,800,806, + 809,812,819,822,831,843,867,879,884,888,896,900,906,916,921,927, + 931,935,939,948,952,959,962,972,980,988,992,1007,1026,1037,1041, + 1048,1053,1059,1063,1070,1074,1078,1082,1090,1094,1099,1105,1111, + 1114,1118,1129,1138,1152,1164,1179,1182,1186,1189,1191,1196,1200, + 1203,1207,1216,1225,1235,1240,1251,1254,1257,1260,1263,1269,1273, + 1281,1284,1289,1292,1296,1299,1301,1315,1326,1331,1339,1342,1345, + 1350,1352,1354,1359,1362,1366,1370,1379,1390,1417,1439,1452,1464, + 1477,1489,1501,1507,1534,1542,1546,1549,1552,1559,1562,1565,1568, + 1571,1574,1579,1582,1591,1596,1600,1605,1611,1616,1620,1639,1647, + 1655,1659,1663,1673,1699,1707,1719,1741,1743,1754,1757,1759,1763, + 1767,1774,1783,1789,1802,1809,1814,1820,1827,1834,1836,1839,1851, + 1856,1859,1865,1867,1873,1894,1896,1904,1911,1914,1918,1925,1929, + 1938,1942,1958,1967,1995,2004,2013,2019,2023,2029,2037,2042,2046, + 2053,2058,2066,2070,2073,2077,2086,2089,2100,2106,2124,2129,2134, + 2141,2143,2148,2155,2157,2162,2169,2171,2176,2183,2185,2192,2211, + 2218,2221,2226,2232,2240,2256,2265,2275,2282,2285 ]; private static __ATN: antlr.ATN; @@ -14227,6 +14255,36 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public uid(): UidContext { + return this.getRuleContext(0, UidContext)!; + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_columnNamePath; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19693,8 +19751,8 @@ export class ColumnReferenceContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; } public override enterRule(listener: FlinkSqlParserListener): void { if(listener.enterColumnReference) { diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index b95ce7648..08214fd43 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -35,6 +35,7 @@ import { ColumnOptionDefinitionContext } from "./FlinkSqlParser.js"; import { PhysicalColumnDefinitionContext } from "./FlinkSqlParser.js"; import { ColumnNameCreateContext } from "./FlinkSqlParser.js"; import { ColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnNamePathContext } from "./FlinkSqlParser.js"; import { ColumnNameListContext } from "./FlinkSqlParser.js"; import { ColumnTypeContext } from "./FlinkSqlParser.js"; import { LengthOneDimensionContext } from "./FlinkSqlParser.js"; @@ -501,6 +502,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.columnNameList`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 3dff39dcd..073b38833 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -35,6 +35,7 @@ import { ColumnOptionDefinitionContext } from "./FlinkSqlParser.js"; import { PhysicalColumnDefinitionContext } from "./FlinkSqlParser.js"; import { ColumnNameCreateContext } from "./FlinkSqlParser.js"; import { ColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnNamePathContext } from "./FlinkSqlParser.js"; import { ColumnNameListContext } from "./FlinkSqlParser.js"; import { ColumnTypeContext } from "./FlinkSqlParser.js"; import { LengthOneDimensionContext } from "./FlinkSqlParser.js"; @@ -396,6 +397,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.columnNameList`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index 1d595e86d..abf1d9f07 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1010,6 +1010,7 @@ columnNameTypeOrConstraintList columnNameColonTypeList columnNameList columnName +columnNamePath columnNameCreate extColumnName columnNameOrderList @@ -1153,6 +1154,7 @@ expressions expressionsInParenthesis expressionsNotInParenthesis orderByClause +partitionByClause clusterByClause distributeByClause sortByClause @@ -1230,4 +1232,4 @@ poolAssignList atn: -[4, 1, 438, 4801, 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, 1, 0, 5, 0, 694, 8, 0, 10, 0, 12, 0, 697, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 703, 8, 1, 1, 1, 3, 1, 706, 8, 1, 1, 2, 1, 2, 5, 2, 710, 8, 2, 10, 2, 12, 2, 713, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 718, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 725, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 735, 8, 3, 1, 3, 3, 3, 738, 8, 3, 1, 3, 1, 3, 3, 3, 742, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 757, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 764, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 770, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 775, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 780, 8, 5, 1, 5, 3, 5, 783, 8, 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, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 805, 8, 5, 10, 5, 12, 5, 808, 9, 5, 1, 5, 1, 5, 5, 5, 812, 8, 5, 10, 5, 12, 5, 815, 9, 5, 3, 5, 817, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 822, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 827, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 833, 8, 6, 1, 7, 1, 7, 3, 7, 837, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 850, 8, 8, 1, 9, 1, 9, 3, 9, 854, 8, 9, 1, 9, 1, 9, 3, 9, 858, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 863, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 870, 8, 10, 1, 10, 1, 10, 3, 10, 874, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 879, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 886, 8, 12, 1, 12, 1, 12, 3, 12, 890, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 895, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 941, 8, 14, 11, 14, 12, 14, 942, 1, 14, 1, 14, 1, 14, 4, 14, 948, 8, 14, 11, 14, 12, 14, 949, 1, 14, 1, 14, 1, 14, 3, 14, 955, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 978, 8, 21, 1, 21, 1, 21, 3, 21, 982, 8, 21, 1, 21, 1, 21, 3, 21, 986, 8, 21, 1, 21, 3, 21, 989, 8, 21, 1, 21, 1, 21, 3, 21, 993, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1004, 8, 21, 1, 21, 1, 21, 3, 21, 1008, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1014, 8, 21, 3, 21, 1016, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1027, 8, 24, 1, 24, 1, 24, 3, 24, 1031, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1038, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1046, 8, 26, 1, 26, 3, 26, 1049, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1054, 8, 27, 1, 27, 1, 27, 3, 27, 1058, 8, 27, 1, 27, 3, 27, 1061, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1071, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1079, 8, 29, 5, 29, 1081, 8, 29, 10, 29, 12, 29, 1084, 9, 29, 3, 29, 1086, 8, 29, 1, 30, 1, 30, 3, 30, 1090, 8, 30, 1, 31, 1, 31, 3, 31, 1094, 8, 31, 1, 31, 3, 31, 1097, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1102, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1108, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1113, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1118, 8, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1133, 8, 33, 3, 33, 1135, 8, 33, 1, 33, 1, 33, 3, 33, 1139, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1149, 8, 36, 1, 36, 1, 36, 3, 36, 1153, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1159, 8, 36, 1, 36, 3, 36, 1162, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1174, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1187, 8, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1199, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1204, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1210, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1216, 8, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 3, 36, 1222, 8, 36, 1, 36, 3, 36, 1225, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1234, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1247, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1255, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 3, 36, 1265, 8, 36, 1, 36, 3, 36, 1268, 8, 36, 3, 36, 1270, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1281, 8, 36, 3, 36, 1283, 8, 36, 1, 36, 3, 36, 1286, 8, 36, 1, 36, 3, 36, 1289, 8, 36, 1, 36, 3, 36, 1292, 8, 36, 1, 36, 3, 36, 1295, 8, 36, 1, 36, 3, 36, 1298, 8, 36, 3, 36, 1300, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1318, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1326, 8, 36, 3, 36, 1328, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1338, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1371, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1376, 8, 45, 1, 46, 1, 46, 3, 46, 1380, 8, 46, 1, 46, 1, 46, 3, 46, 1384, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1391, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1396, 8, 47, 10, 47, 12, 47, 1399, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1404, 8, 47, 1, 48, 1, 48, 3, 48, 1408, 8, 48, 1, 48, 3, 48, 1411, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1416, 8, 48, 10, 48, 12, 48, 1419, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1441, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1446, 8, 53, 1, 53, 1, 53, 3, 53, 1450, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1458, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1467, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1474, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1480, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1487, 8, 58, 1, 58, 3, 58, 1490, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1496, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1501, 8, 59, 10, 59, 12, 59, 1504, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1511, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1518, 8, 62, 10, 62, 12, 62, 1521, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1529, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1536, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1556, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1563, 8, 69, 3, 69, 1565, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1570, 8, 70, 10, 70, 12, 70, 1573, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1582, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1590, 8, 73, 1, 74, 1, 74, 3, 74, 1594, 8, 74, 1, 74, 1, 74, 3, 74, 1598, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1611, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1620, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1636, 8, 78, 1, 78, 1, 78, 3, 78, 1640, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1645, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1650, 8, 78, 1, 78, 3, 78, 1653, 8, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 3, 78, 1659, 8, 78, 1, 78, 3, 78, 1662, 8, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1670, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1679, 8, 80, 1, 80, 1, 80, 3, 80, 1683, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1690, 8, 80, 1, 80, 3, 80, 1693, 8, 80, 1, 80, 3, 80, 1696, 8, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1711, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1717, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1743, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1751, 8, 88, 1, 88, 1, 88, 3, 88, 1755, 8, 88, 1, 88, 3, 88, 1758, 8, 88, 1, 88, 3, 88, 1761, 8, 88, 1, 88, 3, 88, 1764, 8, 88, 1, 88, 3, 88, 1767, 8, 88, 1, 88, 3, 88, 1770, 8, 88, 1, 88, 3, 88, 1773, 8, 88, 1, 88, 3, 88, 1776, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1785, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1795, 8, 90, 1, 90, 3, 90, 1798, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1818, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1824, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1830, 8, 94, 1, 94, 3, 94, 1833, 8, 94, 3, 94, 1835, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1842, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1849, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1862, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1867, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1874, 8, 101, 10, 101, 12, 101, 1877, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1882, 8, 102, 10, 102, 12, 102, 1885, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1892, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1905, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1918, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1934, 8, 105, 1, 106, 1, 106, 3, 106, 1938, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1953, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1959, 8, 110, 1, 110, 3, 110, 1962, 8, 110, 1, 110, 3, 110, 1965, 8, 110, 1, 110, 3, 110, 1968, 8, 110, 1, 110, 3, 110, 1971, 8, 110, 1, 111, 1, 111, 3, 111, 1975, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1988, 8, 114, 10, 114, 12, 114, 1991, 9, 114, 3, 114, 1993, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2002, 8, 116, 10, 116, 12, 116, 2005, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2018, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2052, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2060, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2065, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2073, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2078, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2083, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2088, 8, 124, 10, 124, 12, 124, 2091, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2096, 8, 125, 10, 125, 12, 125, 2099, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2104, 8, 126, 10, 126, 12, 126, 2107, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2112, 8, 127, 10, 127, 12, 127, 2115, 9, 127, 1, 128, 1, 128, 3, 128, 2119, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2129, 8, 130, 5, 130, 2131, 8, 130, 10, 130, 12, 130, 2134, 9, 130, 1, 131, 1, 131, 1, 131, 5, 131, 2139, 8, 131, 10, 131, 12, 131, 2142, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 3, 133, 2150, 8, 133, 1, 133, 3, 133, 2153, 8, 133, 1, 134, 1, 134, 3, 134, 2157, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 3, 136, 2164, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 2170, 8, 138, 1, 138, 1, 138, 3, 138, 2174, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2180, 8, 139, 1, 140, 1, 140, 3, 140, 2184, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2196, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2205, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2216, 8, 144, 1, 145, 1, 145, 3, 145, 2220, 8, 145, 1, 146, 1, 146, 1, 146, 5, 146, 2225, 8, 146, 10, 146, 12, 146, 2228, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2237, 8, 148, 10, 148, 12, 148, 2240, 9, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2249, 8, 151, 1, 151, 3, 151, 2252, 8, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2257, 8, 152, 10, 152, 12, 152, 2260, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2265, 8, 153, 1, 154, 1, 154, 3, 154, 2269, 8, 154, 1, 154, 3, 154, 2272, 8, 154, 1, 154, 3, 154, 2275, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2281, 8, 155, 1, 156, 1, 156, 3, 156, 2285, 8, 156, 1, 157, 1, 157, 3, 157, 2289, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2294, 8, 158, 1, 158, 1, 158, 3, 158, 2298, 8, 158, 1, 159, 1, 159, 3, 159, 2302, 8, 159, 1, 160, 1, 160, 3, 160, 2306, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2314, 8, 160, 1, 161, 1, 161, 3, 161, 2318, 8, 161, 1, 161, 1, 161, 3, 161, 2322, 8, 161, 1, 162, 1, 162, 3, 162, 2326, 8, 162, 1, 163, 1, 163, 3, 163, 2330, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2338, 8, 163, 1, 164, 1, 164, 3, 164, 2342, 8, 164, 1, 164, 1, 164, 3, 164, 2346, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2354, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2359, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2364, 8, 167, 1, 168, 1, 168, 3, 168, 2368, 8, 168, 1, 169, 1, 169, 3, 169, 2372, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2379, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 2386, 8, 172, 10, 172, 12, 172, 2389, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2396, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2408, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2426, 8, 174, 1, 174, 3, 174, 2429, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2435, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 2461, 8, 179, 1, 180, 3, 180, 2464, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2470, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 2476, 8, 182, 10, 182, 12, 182, 2479, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2486, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2497, 8, 184, 10, 184, 12, 184, 2500, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2506, 8, 185, 1, 185, 3, 185, 2509, 8, 185, 1, 185, 3, 185, 2512, 8, 185, 1, 185, 3, 185, 2515, 8, 185, 1, 185, 3, 185, 2518, 8, 185, 1, 185, 3, 185, 2521, 8, 185, 1, 185, 3, 185, 2524, 8, 185, 1, 185, 3, 185, 2527, 8, 185, 1, 185, 3, 185, 2530, 8, 185, 1, 185, 3, 185, 2533, 8, 185, 1, 185, 3, 185, 2536, 8, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2541, 8, 185, 1, 185, 3, 185, 2544, 8, 185, 1, 185, 3, 185, 2547, 8, 185, 1, 185, 3, 185, 2550, 8, 185, 1, 185, 3, 185, 2553, 8, 185, 1, 185, 3, 185, 2556, 8, 185, 1, 185, 3, 185, 2559, 8, 185, 1, 185, 3, 185, 2562, 8, 185, 1, 185, 3, 185, 2565, 8, 185, 1, 185, 3, 185, 2568, 8, 185, 1, 185, 3, 185, 2571, 8, 185, 3, 185, 2573, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2579, 8, 186, 1, 187, 1, 187, 3, 187, 2583, 8, 187, 1, 187, 3, 187, 2586, 8, 187, 1, 187, 3, 187, 2589, 8, 187, 1, 187, 3, 187, 2592, 8, 187, 1, 187, 3, 187, 2595, 8, 187, 1, 187, 3, 187, 2598, 8, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2605, 8, 187, 1, 188, 1, 188, 3, 188, 2609, 8, 188, 1, 188, 3, 188, 2612, 8, 188, 1, 188, 3, 188, 2615, 8, 188, 1, 188, 3, 188, 2618, 8, 188, 1, 188, 3, 188, 2621, 8, 188, 1, 188, 3, 188, 2624, 8, 188, 1, 189, 1, 189, 1, 189, 4, 189, 2629, 8, 189, 11, 189, 12, 189, 2630, 1, 190, 3, 190, 2634, 8, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2642, 8, 191, 1, 191, 1, 191, 3, 191, 2646, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2653, 8, 191, 3, 191, 2655, 8, 191, 1, 192, 3, 192, 2658, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2663, 8, 192, 1, 192, 3, 192, 2666, 8, 192, 1, 192, 1, 192, 3, 192, 2670, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 2675, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2689, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 2695, 8, 196, 10, 196, 12, 196, 2698, 9, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2705, 8, 197, 10, 197, 12, 197, 2708, 9, 197, 3, 197, 2710, 8, 197, 1, 197, 1, 197, 3, 197, 2714, 8, 197, 1, 197, 1, 197, 3, 197, 2718, 8, 197, 1, 197, 1, 197, 1, 197, 3, 197, 2723, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2730, 8, 198, 1, 199, 1, 199, 5, 199, 2734, 8, 199, 10, 199, 12, 199, 2737, 9, 199, 1, 199, 3, 199, 2740, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2747, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2752, 8, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2765, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2773, 8, 202, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2792, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2802, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2815, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2825, 8, 207, 1, 207, 1, 207, 3, 207, 2829, 8, 207, 4, 207, 2831, 8, 207, 11, 207, 12, 207, 2832, 1, 207, 1, 207, 5, 207, 2837, 8, 207, 10, 207, 12, 207, 2840, 9, 207, 1, 207, 1, 207, 5, 207, 2844, 8, 207, 10, 207, 12, 207, 2847, 9, 207, 1, 207, 1, 207, 5, 207, 2851, 8, 207, 10, 207, 12, 207, 2854, 9, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2862, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2869, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2889, 8, 207, 1, 207, 3, 207, 2892, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2906, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2921, 8, 208, 1, 208, 1, 208, 3, 208, 2925, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 5, 208, 2943, 8, 208, 10, 208, 12, 208, 2946, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2957, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2963, 8, 208, 1, 208, 3, 208, 2966, 8, 208, 1, 208, 3, 208, 2969, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2975, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2981, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2988, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2996, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3002, 8, 208, 1, 208, 1, 208, 3, 208, 3006, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3011, 8, 208, 1, 208, 3, 208, 3014, 8, 208, 1, 208, 1, 208, 3, 208, 3018, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3025, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3030, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3035, 8, 208, 1, 208, 3, 208, 3038, 8, 208, 3, 208, 3040, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3048, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3056, 8, 209, 1, 209, 1, 209, 3, 209, 3060, 8, 209, 4, 209, 3062, 8, 209, 11, 209, 12, 209, 3063, 1, 209, 1, 209, 3, 209, 3068, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3085, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3102, 8, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 3109, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 3116, 8, 213, 10, 213, 12, 213, 3119, 9, 213, 1, 213, 1, 213, 3, 213, 3123, 8, 213, 1, 213, 3, 213, 3126, 8, 213, 1, 213, 3, 213, 3129, 8, 213, 1, 214, 1, 214, 3, 214, 3133, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3148, 8, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3162, 8, 216, 1, 216, 3, 216, 3165, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 217, 1, 218, 1, 218, 3, 218, 3180, 8, 218, 1, 218, 3, 218, 3183, 8, 218, 1, 218, 3, 218, 3186, 8, 218, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3195, 8, 218, 1, 218, 3, 218, 3198, 8, 218, 1, 218, 3, 218, 3201, 8, 218, 1, 218, 3, 218, 3204, 8, 218, 1, 218, 3, 218, 3207, 8, 218, 1, 218, 3, 218, 3210, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3216, 8, 218, 1, 218, 3, 218, 3219, 8, 218, 1, 218, 3, 218, 3222, 8, 218, 1, 218, 3, 218, 3225, 8, 218, 1, 218, 3, 218, 3228, 8, 218, 1, 218, 3, 218, 3231, 8, 218, 1, 218, 3, 218, 3234, 8, 218, 1, 218, 3, 218, 3237, 8, 218, 1, 218, 3, 218, 3240, 8, 218, 1, 218, 3, 218, 3243, 8, 218, 1, 218, 1, 218, 3, 218, 3247, 8, 218, 3, 218, 3249, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3255, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3260, 8, 218, 1, 218, 3, 218, 3263, 8, 218, 1, 218, 3, 218, 3266, 8, 218, 1, 218, 3, 218, 3269, 8, 218, 1, 218, 3, 218, 3272, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3278, 8, 218, 1, 218, 3, 218, 3281, 8, 218, 1, 218, 3, 218, 3284, 8, 218, 1, 218, 3, 218, 3287, 8, 218, 1, 218, 3, 218, 3290, 8, 218, 1, 218, 3, 218, 3293, 8, 218, 1, 218, 3, 218, 3296, 8, 218, 1, 218, 3, 218, 3299, 8, 218, 1, 218, 3, 218, 3302, 8, 218, 1, 218, 3, 218, 3305, 8, 218, 1, 218, 1, 218, 3, 218, 3309, 8, 218, 3, 218, 3311, 8, 218, 3, 218, 3313, 8, 218, 1, 219, 1, 219, 1, 219, 3, 219, 3318, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3323, 8, 219, 1, 219, 1, 219, 3, 219, 3327, 8, 219, 1, 219, 1, 219, 3, 219, 3331, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3336, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3341, 8, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 3348, 8, 221, 10, 221, 12, 221, 3351, 9, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3358, 8, 222, 10, 222, 12, 222, 3361, 9, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3366, 8, 223, 10, 223, 12, 223, 3369, 9, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3378, 8, 225, 11, 225, 12, 225, 3379, 1, 225, 3, 225, 3383, 8, 225, 1, 226, 1, 226, 5, 226, 3387, 8, 226, 10, 226, 12, 226, 3390, 9, 226, 1, 226, 1, 226, 5, 226, 3394, 8, 226, 10, 226, 12, 226, 3397, 9, 226, 1, 226, 1, 226, 5, 226, 3401, 8, 226, 10, 226, 12, 226, 3404, 9, 226, 1, 226, 1, 226, 5, 226, 3408, 8, 226, 10, 226, 12, 226, 3411, 9, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3417, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3426, 8, 227, 5, 227, 3428, 8, 227, 10, 227, 12, 227, 3431, 9, 227, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3437, 8, 228, 1, 228, 5, 228, 3440, 8, 228, 10, 228, 12, 228, 3443, 9, 228, 1, 229, 3, 229, 3446, 8, 229, 1, 229, 1, 229, 3, 229, 3450, 8, 229, 1, 229, 3, 229, 3453, 8, 229, 1, 229, 3, 229, 3456, 8, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3467, 8, 230, 1, 230, 1, 230, 3, 230, 3471, 8, 230, 3, 230, 3473, 8, 230, 1, 230, 3, 230, 3476, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3487, 8, 231, 10, 231, 12, 231, 3490, 9, 231, 3, 231, 3492, 8, 231, 1, 231, 3, 231, 3495, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3505, 8, 231, 10, 231, 12, 231, 3508, 9, 231, 3, 231, 3510, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3517, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3524, 8, 231, 10, 231, 12, 231, 3527, 9, 231, 1, 231, 1, 231, 3, 231, 3531, 8, 231, 3, 231, 3533, 8, 231, 3, 231, 3535, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3550, 8, 233, 10, 233, 12, 233, 3553, 9, 233, 3, 233, 3555, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3563, 8, 233, 1, 233, 3, 233, 3566, 8, 233, 1, 234, 1, 234, 3, 234, 3570, 8, 234, 1, 234, 3, 234, 3573, 8, 234, 1, 234, 3, 234, 3576, 8, 234, 1, 234, 3, 234, 3579, 8, 234, 1, 234, 3, 234, 3582, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3594, 8, 235, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 3, 238, 3602, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3609, 8, 239, 1, 239, 3, 239, 3612, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3619, 8, 240, 1, 240, 3, 240, 3622, 8, 240, 1, 241, 1, 241, 1, 241, 3, 241, 3627, 8, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3634, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 3642, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3650, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3655, 8, 244, 1, 244, 1, 244, 3, 244, 3659, 8, 244, 1, 245, 1, 245, 1, 245, 3, 245, 3664, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3671, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 3683, 8, 246, 10, 246, 12, 246, 3686, 9, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3701, 8, 248, 10, 248, 12, 248, 3704, 9, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3711, 8, 248, 10, 248, 12, 248, 3714, 9, 248, 3, 248, 3716, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3723, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3730, 8, 249, 10, 249, 12, 249, 3733, 9, 249, 3, 249, 3735, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 3, 250, 3741, 8, 250, 1, 250, 3, 250, 3744, 8, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3749, 8, 250, 10, 250, 12, 250, 3752, 9, 250, 1, 250, 1, 250, 3, 250, 3756, 8, 250, 1, 250, 3, 250, 3759, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3772, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3778, 8, 251, 3, 251, 3780, 8, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 3788, 8, 252, 1, 252, 3, 252, 3791, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 3799, 8, 252, 10, 252, 12, 252, 3802, 9, 252, 1, 252, 1, 252, 3, 252, 3806, 8, 252, 3, 252, 3808, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3820, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3826, 8, 253, 3, 253, 3828, 8, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3835, 8, 254, 1, 255, 1, 255, 1, 255, 5, 255, 3840, 8, 255, 10, 255, 12, 255, 3843, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 3854, 8, 256, 10, 256, 12, 256, 3857, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3862, 8, 257, 1, 257, 3, 257, 3865, 8, 257, 1, 257, 3, 257, 3868, 8, 257, 1, 257, 3, 257, 3871, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3880, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3887, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3893, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3902, 8, 260, 1, 261, 1, 261, 3, 261, 3906, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 3912, 8, 261, 10, 261, 12, 261, 3915, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 3924, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3932, 8, 262, 10, 262, 12, 262, 3935, 9, 262, 1, 262, 1, 262, 3, 262, 3939, 8, 262, 1, 263, 1, 263, 3, 263, 3943, 8, 263, 1, 263, 1, 263, 5, 263, 3947, 8, 263, 10, 263, 12, 263, 3950, 9, 263, 1, 263, 1, 263, 3, 263, 3954, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 3, 266, 3964, 8, 266, 1, 267, 1, 267, 3, 267, 3968, 8, 267, 1, 267, 3, 267, 3971, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3976, 8, 267, 1, 267, 3, 267, 3979, 8, 267, 5, 267, 3981, 8, 267, 10, 267, 12, 267, 3984, 9, 267, 1, 268, 1, 268, 3, 268, 3988, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 4, 270, 3997, 8, 270, 11, 270, 12, 270, 3998, 3, 270, 4001, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 4008, 8, 271, 10, 271, 12, 271, 4011, 9, 271, 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, 1, 274, 5, 274, 4027, 8, 274, 10, 274, 12, 274, 4030, 9, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 4037, 8, 274, 10, 274, 12, 274, 4040, 9, 274, 3, 274, 4042, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4049, 8, 275, 1, 275, 3, 275, 4052, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4062, 8, 275, 1, 275, 1, 275, 1, 275, 5, 275, 4067, 8, 275, 10, 275, 12, 275, 4070, 9, 275, 3, 275, 4072, 8, 275, 3, 275, 4074, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4085, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4095, 8, 275, 3, 275, 4097, 8, 275, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 278, 1, 278, 3, 278, 4106, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 4111, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4120, 8, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 4, 281, 4131, 8, 281, 11, 281, 12, 281, 4132, 1, 281, 1, 281, 3, 281, 4137, 8, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 4, 282, 4147, 8, 282, 11, 282, 12, 282, 4148, 1, 282, 1, 282, 3, 282, 4153, 8, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4162, 8, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4181, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 5, 286, 4197, 8, 286, 10, 286, 12, 286, 4200, 9, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 4211, 8, 286, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4226, 8, 288, 1, 288, 1, 288, 3, 288, 4230, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 4246, 8, 289, 1, 290, 1, 290, 1, 290, 5, 290, 4251, 8, 290, 10, 290, 12, 290, 4254, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4267, 8, 291, 1, 292, 5, 292, 4270, 8, 292, 10, 292, 12, 292, 4273, 9, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 5, 292, 4282, 8, 292, 10, 292, 12, 292, 4285, 9, 292, 1, 293, 1, 293, 1, 293, 5, 293, 4290, 8, 293, 10, 293, 12, 293, 4293, 9, 293, 1, 294, 1, 294, 1, 294, 5, 294, 4298, 8, 294, 10, 294, 12, 294, 4301, 9, 294, 1, 295, 1, 295, 1, 295, 5, 295, 4306, 8, 295, 10, 295, 12, 295, 4309, 9, 295, 1, 296, 1, 296, 1, 296, 5, 296, 4314, 8, 296, 10, 296, 12, 296, 4317, 9, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4322, 8, 297, 10, 297, 12, 297, 4325, 9, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4330, 8, 298, 10, 298, 12, 298, 4333, 9, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 3, 301, 4343, 8, 301, 1, 301, 1, 301, 3, 301, 4347, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 4355, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4371, 8, 303, 1, 304, 1, 304, 3, 304, 4375, 8, 304, 1, 305, 1, 305, 1, 305, 3, 305, 4380, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 4393, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 4402, 8, 308, 10, 308, 12, 308, 4405, 9, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4413, 8, 309, 1, 310, 5, 310, 4416, 8, 310, 10, 310, 12, 310, 4419, 9, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4424, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 4429, 8, 311, 10, 311, 12, 311, 4432, 9, 311, 1, 312, 1, 312, 3, 312, 4436, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 5, 313, 4443, 8, 313, 10, 313, 12, 313, 4446, 9, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 3, 314, 4453, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4459, 8, 315, 10, 315, 12, 315, 4462, 9, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 3, 316, 4469, 8, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 3, 319, 4479, 8, 319, 1, 320, 1, 320, 1, 320, 3, 320, 4484, 8, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 4543, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4549, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4558, 8, 325, 3, 325, 4560, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 5, 325, 4574, 8, 325, 10, 325, 12, 325, 4577, 9, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4584, 8, 325, 1, 325, 1, 325, 3, 325, 4588, 8, 325, 3, 325, 4590, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4596, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4601, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4618, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4644, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4649, 8, 325, 3, 325, 4651, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4679, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4696, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4701, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4710, 8, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4721, 8, 327, 1, 328, 1, 328, 1, 328, 5, 328, 4726, 8, 328, 10, 328, 12, 328, 4729, 9, 328, 1, 329, 1, 329, 1, 329, 3, 329, 4734, 8, 329, 1, 330, 1, 330, 1, 330, 3, 330, 4739, 8, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 5, 341, 4764, 8, 341, 10, 341, 12, 341, 4767, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 4777, 8, 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, 4791, 8, 344, 1, 345, 1, 345, 1, 345, 5, 345, 4796, 8, 345, 10, 345, 12, 345, 4799, 9, 345, 1, 345, 1, 813, 0, 346, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 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, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5392, 0, 695, 1, 0, 0, 0, 2, 702, 1, 0, 0, 0, 4, 707, 1, 0, 0, 0, 6, 741, 1, 0, 0, 0, 8, 743, 1, 0, 0, 0, 10, 816, 1, 0, 0, 0, 12, 818, 1, 0, 0, 0, 14, 834, 1, 0, 0, 0, 16, 843, 1, 0, 0, 0, 18, 851, 1, 0, 0, 0, 20, 864, 1, 0, 0, 0, 22, 875, 1, 0, 0, 0, 24, 880, 1, 0, 0, 0, 26, 891, 1, 0, 0, 0, 28, 954, 1, 0, 0, 0, 30, 956, 1, 0, 0, 0, 32, 959, 1, 0, 0, 0, 34, 963, 1, 0, 0, 0, 36, 965, 1, 0, 0, 0, 38, 968, 1, 0, 0, 0, 40, 971, 1, 0, 0, 0, 42, 1015, 1, 0, 0, 0, 44, 1017, 1, 0, 0, 0, 46, 1020, 1, 0, 0, 0, 48, 1023, 1, 0, 0, 0, 50, 1032, 1, 0, 0, 0, 52, 1035, 1, 0, 0, 0, 54, 1050, 1, 0, 0, 0, 56, 1062, 1, 0, 0, 0, 58, 1067, 1, 0, 0, 0, 60, 1087, 1, 0, 0, 0, 62, 1091, 1, 0, 0, 0, 64, 1098, 1, 0, 0, 0, 66, 1123, 1, 0, 0, 0, 68, 1140, 1, 0, 0, 0, 70, 1142, 1, 0, 0, 0, 72, 1327, 1, 0, 0, 0, 74, 1337, 1, 0, 0, 0, 76, 1339, 1, 0, 0, 0, 78, 1344, 1, 0, 0, 0, 80, 1349, 1, 0, 0, 0, 82, 1351, 1, 0, 0, 0, 84, 1355, 1, 0, 0, 0, 86, 1359, 1, 0, 0, 0, 88, 1363, 1, 0, 0, 0, 90, 1367, 1, 0, 0, 0, 92, 1377, 1, 0, 0, 0, 94, 1388, 1, 0, 0, 0, 96, 1405, 1, 0, 0, 0, 98, 1423, 1, 0, 0, 0, 100, 1428, 1, 0, 0, 0, 102, 1431, 1, 0, 0, 0, 104, 1435, 1, 0, 0, 0, 106, 1442, 1, 0, 0, 0, 108, 1451, 1, 0, 0, 0, 110, 1457, 1, 0, 0, 0, 112, 1459, 1, 0, 0, 0, 114, 1473, 1, 0, 0, 0, 116, 1495, 1, 0, 0, 0, 118, 1497, 1, 0, 0, 0, 120, 1505, 1, 0, 0, 0, 122, 1512, 1, 0, 0, 0, 124, 1514, 1, 0, 0, 0, 126, 1528, 1, 0, 0, 0, 128, 1535, 1, 0, 0, 0, 130, 1537, 1, 0, 0, 0, 132, 1541, 1, 0, 0, 0, 134, 1545, 1, 0, 0, 0, 136, 1549, 1, 0, 0, 0, 138, 1553, 1, 0, 0, 0, 140, 1566, 1, 0, 0, 0, 142, 1574, 1, 0, 0, 0, 144, 1577, 1, 0, 0, 0, 146, 1579, 1, 0, 0, 0, 148, 1591, 1, 0, 0, 0, 150, 1601, 1, 0, 0, 0, 152, 1604, 1, 0, 0, 0, 154, 1615, 1, 0, 0, 0, 156, 1623, 1, 0, 0, 0, 158, 1666, 1, 0, 0, 0, 160, 1675, 1, 0, 0, 0, 162, 1703, 1, 0, 0, 0, 164, 1716, 1, 0, 0, 0, 166, 1718, 1, 0, 0, 0, 168, 1724, 1, 0, 0, 0, 170, 1727, 1, 0, 0, 0, 172, 1733, 1, 0, 0, 0, 174, 1739, 1, 0, 0, 0, 176, 1746, 1, 0, 0, 0, 178, 1780, 1, 0, 0, 0, 180, 1788, 1, 0, 0, 0, 182, 1801, 1, 0, 0, 0, 184, 1806, 1, 0, 0, 0, 186, 1817, 1, 0, 0, 0, 188, 1834, 1, 0, 0, 0, 190, 1836, 1, 0, 0, 0, 192, 1841, 1, 0, 0, 0, 194, 1848, 1, 0, 0, 0, 196, 1850, 1, 0, 0, 0, 198, 1853, 1, 0, 0, 0, 200, 1856, 1, 0, 0, 0, 202, 1870, 1, 0, 0, 0, 204, 1878, 1, 0, 0, 0, 206, 1904, 1, 0, 0, 0, 208, 1906, 1, 0, 0, 0, 210, 1923, 1, 0, 0, 0, 212, 1937, 1, 0, 0, 0, 214, 1939, 1, 0, 0, 0, 216, 1942, 1, 0, 0, 0, 218, 1945, 1, 0, 0, 0, 220, 1954, 1, 0, 0, 0, 222, 1974, 1, 0, 0, 0, 224, 1976, 1, 0, 0, 0, 226, 1979, 1, 0, 0, 0, 228, 1992, 1, 0, 0, 0, 230, 1994, 1, 0, 0, 0, 232, 1998, 1, 0, 0, 0, 234, 2006, 1, 0, 0, 0, 236, 2010, 1, 0, 0, 0, 238, 2019, 1, 0, 0, 0, 240, 2025, 1, 0, 0, 0, 242, 2031, 1, 0, 0, 0, 244, 2036, 1, 0, 0, 0, 246, 2082, 1, 0, 0, 0, 248, 2084, 1, 0, 0, 0, 250, 2092, 1, 0, 0, 0, 252, 2100, 1, 0, 0, 0, 254, 2108, 1, 0, 0, 0, 256, 2118, 1, 0, 0, 0, 258, 2120, 1, 0, 0, 0, 260, 2122, 1, 0, 0, 0, 262, 2135, 1, 0, 0, 0, 264, 2143, 1, 0, 0, 0, 266, 2152, 1, 0, 0, 0, 268, 2156, 1, 0, 0, 0, 270, 2158, 1, 0, 0, 0, 272, 2163, 1, 0, 0, 0, 274, 2165, 1, 0, 0, 0, 276, 2169, 1, 0, 0, 0, 278, 2175, 1, 0, 0, 0, 280, 2183, 1, 0, 0, 0, 282, 2185, 1, 0, 0, 0, 284, 2188, 1, 0, 0, 0, 286, 2195, 1, 0, 0, 0, 288, 2206, 1, 0, 0, 0, 290, 2219, 1, 0, 0, 0, 292, 2221, 1, 0, 0, 0, 294, 2229, 1, 0, 0, 0, 296, 2233, 1, 0, 0, 0, 298, 2241, 1, 0, 0, 0, 300, 2243, 1, 0, 0, 0, 302, 2246, 1, 0, 0, 0, 304, 2253, 1, 0, 0, 0, 306, 2261, 1, 0, 0, 0, 308, 2268, 1, 0, 0, 0, 310, 2276, 1, 0, 0, 0, 312, 2284, 1, 0, 0, 0, 314, 2288, 1, 0, 0, 0, 316, 2290, 1, 0, 0, 0, 318, 2301, 1, 0, 0, 0, 320, 2305, 1, 0, 0, 0, 322, 2317, 1, 0, 0, 0, 324, 2325, 1, 0, 0, 0, 326, 2329, 1, 0, 0, 0, 328, 2341, 1, 0, 0, 0, 330, 2353, 1, 0, 0, 0, 332, 2358, 1, 0, 0, 0, 334, 2363, 1, 0, 0, 0, 336, 2365, 1, 0, 0, 0, 338, 2369, 1, 0, 0, 0, 340, 2373, 1, 0, 0, 0, 342, 2380, 1, 0, 0, 0, 344, 2382, 1, 0, 0, 0, 346, 2395, 1, 0, 0, 0, 348, 2434, 1, 0, 0, 0, 350, 2436, 1, 0, 0, 0, 352, 2441, 1, 0, 0, 0, 354, 2446, 1, 0, 0, 0, 356, 2453, 1, 0, 0, 0, 358, 2458, 1, 0, 0, 0, 360, 2463, 1, 0, 0, 0, 362, 2469, 1, 0, 0, 0, 364, 2471, 1, 0, 0, 0, 366, 2480, 1, 0, 0, 0, 368, 2492, 1, 0, 0, 0, 370, 2572, 1, 0, 0, 0, 372, 2578, 1, 0, 0, 0, 374, 2604, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2628, 1, 0, 0, 0, 380, 2633, 1, 0, 0, 0, 382, 2637, 1, 0, 0, 0, 384, 2669, 1, 0, 0, 0, 386, 2671, 1, 0, 0, 0, 388, 2682, 1, 0, 0, 0, 390, 2688, 1, 0, 0, 0, 392, 2690, 1, 0, 0, 0, 394, 2722, 1, 0, 0, 0, 396, 2729, 1, 0, 0, 0, 398, 2735, 1, 0, 0, 0, 400, 2741, 1, 0, 0, 0, 402, 2756, 1, 0, 0, 0, 404, 2766, 1, 0, 0, 0, 406, 2774, 1, 0, 0, 0, 408, 2777, 1, 0, 0, 0, 410, 2780, 1, 0, 0, 0, 412, 2783, 1, 0, 0, 0, 414, 2905, 1, 0, 0, 0, 416, 3039, 1, 0, 0, 0, 418, 3067, 1, 0, 0, 0, 420, 3084, 1, 0, 0, 0, 422, 3101, 1, 0, 0, 0, 424, 3103, 1, 0, 0, 0, 426, 3106, 1, 0, 0, 0, 428, 3132, 1, 0, 0, 0, 430, 3137, 1, 0, 0, 0, 432, 3164, 1, 0, 0, 0, 434, 3175, 1, 0, 0, 0, 436, 3312, 1, 0, 0, 0, 438, 3314, 1, 0, 0, 0, 440, 3337, 1, 0, 0, 0, 442, 3349, 1, 0, 0, 0, 444, 3354, 1, 0, 0, 0, 446, 3362, 1, 0, 0, 0, 448, 3370, 1, 0, 0, 0, 450, 3382, 1, 0, 0, 0, 452, 3416, 1, 0, 0, 0, 454, 3418, 1, 0, 0, 0, 456, 3436, 1, 0, 0, 0, 458, 3445, 1, 0, 0, 0, 460, 3475, 1, 0, 0, 0, 462, 3534, 1, 0, 0, 0, 464, 3536, 1, 0, 0, 0, 466, 3565, 1, 0, 0, 0, 468, 3567, 1, 0, 0, 0, 470, 3583, 1, 0, 0, 0, 472, 3595, 1, 0, 0, 0, 474, 3597, 1, 0, 0, 0, 476, 3601, 1, 0, 0, 0, 478, 3611, 1, 0, 0, 0, 480, 3621, 1, 0, 0, 0, 482, 3626, 1, 0, 0, 0, 484, 3633, 1, 0, 0, 0, 486, 3637, 1, 0, 0, 0, 488, 3658, 1, 0, 0, 0, 490, 3663, 1, 0, 0, 0, 492, 3665, 1, 0, 0, 0, 494, 3693, 1, 0, 0, 0, 496, 3696, 1, 0, 0, 0, 498, 3717, 1, 0, 0, 0, 500, 3758, 1, 0, 0, 0, 502, 3760, 1, 0, 0, 0, 504, 3807, 1, 0, 0, 0, 506, 3809, 1, 0, 0, 0, 508, 3834, 1, 0, 0, 0, 510, 3836, 1, 0, 0, 0, 512, 3844, 1, 0, 0, 0, 514, 3870, 1, 0, 0, 0, 516, 3872, 1, 0, 0, 0, 518, 3892, 1, 0, 0, 0, 520, 3894, 1, 0, 0, 0, 522, 3905, 1, 0, 0, 0, 524, 3918, 1, 0, 0, 0, 526, 3953, 1, 0, 0, 0, 528, 3955, 1, 0, 0, 0, 530, 3958, 1, 0, 0, 0, 532, 3963, 1, 0, 0, 0, 534, 3965, 1, 0, 0, 0, 536, 3987, 1, 0, 0, 0, 538, 3989, 1, 0, 0, 0, 540, 3993, 1, 0, 0, 0, 542, 4002, 1, 0, 0, 0, 544, 4012, 1, 0, 0, 0, 546, 4016, 1, 0, 0, 0, 548, 4020, 1, 0, 0, 0, 550, 4096, 1, 0, 0, 0, 552, 4098, 1, 0, 0, 0, 554, 4101, 1, 0, 0, 0, 556, 4105, 1, 0, 0, 0, 558, 4110, 1, 0, 0, 0, 560, 4112, 1, 0, 0, 0, 562, 4123, 1, 0, 0, 0, 564, 4140, 1, 0, 0, 0, 566, 4156, 1, 0, 0, 0, 568, 4165, 1, 0, 0, 0, 570, 4180, 1, 0, 0, 0, 572, 4210, 1, 0, 0, 0, 574, 4212, 1, 0, 0, 0, 576, 4229, 1, 0, 0, 0, 578, 4245, 1, 0, 0, 0, 580, 4247, 1, 0, 0, 0, 582, 4266, 1, 0, 0, 0, 584, 4271, 1, 0, 0, 0, 586, 4286, 1, 0, 0, 0, 588, 4294, 1, 0, 0, 0, 590, 4302, 1, 0, 0, 0, 592, 4310, 1, 0, 0, 0, 594, 4318, 1, 0, 0, 0, 596, 4326, 1, 0, 0, 0, 598, 4334, 1, 0, 0, 0, 600, 4336, 1, 0, 0, 0, 602, 4346, 1, 0, 0, 0, 604, 4354, 1, 0, 0, 0, 606, 4370, 1, 0, 0, 0, 608, 4374, 1, 0, 0, 0, 610, 4379, 1, 0, 0, 0, 612, 4381, 1, 0, 0, 0, 614, 4392, 1, 0, 0, 0, 616, 4394, 1, 0, 0, 0, 618, 4412, 1, 0, 0, 0, 620, 4417, 1, 0, 0, 0, 622, 4425, 1, 0, 0, 0, 624, 4433, 1, 0, 0, 0, 626, 4437, 1, 0, 0, 0, 628, 4449, 1, 0, 0, 0, 630, 4454, 1, 0, 0, 0, 632, 4465, 1, 0, 0, 0, 634, 4472, 1, 0, 0, 0, 636, 4474, 1, 0, 0, 0, 638, 4478, 1, 0, 0, 0, 640, 4480, 1, 0, 0, 0, 642, 4485, 1, 0, 0, 0, 644, 4487, 1, 0, 0, 0, 646, 4489, 1, 0, 0, 0, 648, 4542, 1, 0, 0, 0, 650, 4709, 1, 0, 0, 0, 652, 4711, 1, 0, 0, 0, 654, 4720, 1, 0, 0, 0, 656, 4722, 1, 0, 0, 0, 658, 4733, 1, 0, 0, 0, 660, 4735, 1, 0, 0, 0, 662, 4740, 1, 0, 0, 0, 664, 4742, 1, 0, 0, 0, 666, 4744, 1, 0, 0, 0, 668, 4746, 1, 0, 0, 0, 670, 4748, 1, 0, 0, 0, 672, 4750, 1, 0, 0, 0, 674, 4752, 1, 0, 0, 0, 676, 4754, 1, 0, 0, 0, 678, 4756, 1, 0, 0, 0, 680, 4758, 1, 0, 0, 0, 682, 4760, 1, 0, 0, 0, 684, 4768, 1, 0, 0, 0, 686, 4776, 1, 0, 0, 0, 688, 4790, 1, 0, 0, 0, 690, 4792, 1, 0, 0, 0, 692, 694, 3, 2, 1, 0, 693, 692, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 0, 0, 1, 699, 1, 1, 0, 0, 0, 700, 703, 3, 4, 2, 0, 701, 703, 3, 10, 5, 0, 702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 705, 1, 0, 0, 0, 704, 706, 5, 398, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 3, 1, 0, 0, 0, 707, 717, 5, 119, 0, 0, 708, 710, 3, 6, 3, 0, 709, 708, 1, 0, 0, 0, 710, 713, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 714, 718, 3, 10, 5, 0, 715, 716, 5, 284, 0, 0, 716, 718, 3, 360, 180, 0, 717, 711, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 5, 1, 0, 0, 0, 719, 742, 5, 122, 0, 0, 720, 742, 5, 138, 0, 0, 721, 742, 5, 88, 0, 0, 722, 724, 5, 37, 0, 0, 723, 725, 7, 0, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 742, 1, 0, 0, 0, 726, 742, 5, 192, 0, 0, 727, 742, 5, 21, 0, 0, 728, 742, 5, 10, 0, 0, 729, 742, 5, 275, 0, 0, 730, 742, 5, 191, 0, 0, 731, 742, 5, 19, 0, 0, 732, 734, 5, 377, 0, 0, 733, 735, 5, 225, 0, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 738, 3, 8, 4, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 742, 1, 0, 0, 0, 739, 742, 5, 79, 0, 0, 740, 742, 5, 78, 0, 0, 741, 719, 1, 0, 0, 0, 741, 720, 1, 0, 0, 0, 741, 721, 1, 0, 0, 0, 741, 722, 1, 0, 0, 0, 741, 726, 1, 0, 0, 0, 741, 727, 1, 0, 0, 0, 741, 728, 1, 0, 0, 0, 741, 729, 1, 0, 0, 0, 741, 730, 1, 0, 0, 0, 741, 731, 1, 0, 0, 0, 741, 732, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 740, 1, 0, 0, 0, 742, 7, 1, 0, 0, 0, 743, 744, 7, 1, 0, 0, 744, 9, 1, 0, 0, 0, 745, 817, 3, 360, 180, 0, 746, 817, 3, 12, 6, 0, 747, 817, 3, 16, 8, 0, 748, 817, 3, 18, 9, 0, 749, 817, 3, 20, 10, 0, 750, 817, 3, 24, 12, 0, 751, 752, 5, 277, 0, 0, 752, 753, 5, 320, 0, 0, 753, 756, 3, 472, 236, 0, 754, 755, 5, 387, 0, 0, 755, 757, 3, 230, 115, 0, 756, 754, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 817, 1, 0, 0, 0, 758, 817, 3, 28, 14, 0, 759, 760, 5, 86, 0, 0, 760, 761, 5, 139, 0, 0, 761, 763, 3, 478, 239, 0, 762, 764, 3, 494, 247, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 817, 1, 0, 0, 0, 765, 766, 5, 365, 0, 0, 766, 767, 3, 478, 239, 0, 767, 769, 3, 392, 196, 0, 768, 770, 3, 494, 247, 0, 769, 768, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 817, 1, 0, 0, 0, 771, 817, 3, 394, 197, 0, 772, 774, 5, 203, 0, 0, 773, 775, 5, 436, 0, 0, 774, 773, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 5, 166, 0, 0, 777, 782, 3, 478, 239, 0, 778, 780, 5, 17, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 3, 638, 319, 0, 782, 779, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 370, 0, 0, 785, 786, 3, 456, 228, 0, 786, 787, 5, 224, 0, 0, 787, 788, 3, 580, 290, 0, 788, 789, 3, 398, 199, 0, 789, 817, 1, 0, 0, 0, 790, 791, 5, 249, 0, 0, 791, 792, 3, 638, 319, 0, 792, 793, 5, 139, 0, 0, 793, 794, 3, 360, 180, 0, 794, 817, 1, 0, 0, 0, 795, 796, 5, 115, 0, 0, 796, 797, 3, 638, 319, 0, 797, 798, 5, 370, 0, 0, 798, 799, 3, 296, 148, 0, 799, 817, 1, 0, 0, 0, 800, 801, 5, 304, 0, 0, 801, 806, 3, 648, 324, 0, 802, 803, 7, 2, 0, 0, 803, 805, 3, 648, 324, 0, 804, 802, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 813, 5, 405, 0, 0, 810, 812, 9, 0, 0, 0, 811, 810, 1, 0, 0, 0, 812, 815, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 817, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 816, 745, 1, 0, 0, 0, 816, 746, 1, 0, 0, 0, 816, 747, 1, 0, 0, 0, 816, 748, 1, 0, 0, 0, 816, 749, 1, 0, 0, 0, 816, 750, 1, 0, 0, 0, 816, 751, 1, 0, 0, 0, 816, 758, 1, 0, 0, 0, 816, 759, 1, 0, 0, 0, 816, 765, 1, 0, 0, 0, 816, 771, 1, 0, 0, 0, 816, 772, 1, 0, 0, 0, 816, 790, 1, 0, 0, 0, 816, 795, 1, 0, 0, 0, 816, 800, 1, 0, 0, 0, 817, 11, 1, 0, 0, 0, 818, 819, 5, 187, 0, 0, 819, 821, 5, 66, 0, 0, 820, 822, 5, 188, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 5, 158, 0, 0, 824, 826, 5, 426, 0, 0, 825, 827, 5, 235, 0, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 5, 166, 0, 0, 829, 830, 5, 329, 0, 0, 830, 832, 3, 624, 312, 0, 831, 833, 3, 56, 28, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 13, 1, 0, 0, 0, 834, 836, 5, 134, 0, 0, 835, 837, 5, 204, 0, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 5, 279, 0, 0, 839, 840, 5, 399, 0, 0, 840, 841, 5, 426, 0, 0, 841, 842, 5, 400, 0, 0, 842, 15, 1, 0, 0, 0, 843, 844, 5, 120, 0, 0, 844, 845, 5, 329, 0, 0, 845, 846, 3, 624, 312, 0, 846, 847, 5, 341, 0, 0, 847, 849, 5, 426, 0, 0, 848, 850, 3, 14, 7, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 17, 1, 0, 0, 0, 851, 857, 5, 153, 0, 0, 852, 854, 5, 123, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 5, 329, 0, 0, 856, 858, 3, 624, 312, 0, 857, 853, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 139, 0, 0, 860, 862, 5, 426, 0, 0, 861, 863, 3, 424, 212, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 19, 1, 0, 0, 0, 864, 865, 5, 277, 0, 0, 865, 866, 5, 103, 0, 0, 866, 869, 3, 22, 11, 0, 867, 868, 5, 278, 0, 0, 868, 870, 3, 22, 11, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 872, 5, 387, 0, 0, 872, 874, 3, 230, 115, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 21, 1, 0, 0, 0, 875, 878, 3, 472, 236, 0, 876, 877, 5, 395, 0, 0, 877, 879, 3, 26, 13, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 23, 1, 0, 0, 0, 880, 881, 5, 277, 0, 0, 881, 882, 5, 187, 0, 0, 882, 885, 3, 22, 11, 0, 883, 884, 5, 166, 0, 0, 884, 886, 3, 472, 236, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 888, 5, 387, 0, 0, 888, 890, 3, 230, 115, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 25, 1, 0, 0, 0, 891, 894, 5, 426, 0, 0, 892, 893, 5, 395, 0, 0, 893, 895, 5, 426, 0, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 27, 1, 0, 0, 0, 896, 955, 3, 42, 21, 0, 897, 955, 3, 46, 23, 0, 898, 955, 3, 48, 24, 0, 899, 955, 3, 436, 218, 0, 900, 955, 3, 54, 27, 0, 901, 955, 3, 52, 26, 0, 902, 955, 3, 412, 206, 0, 903, 955, 3, 64, 32, 0, 904, 955, 3, 72, 36, 0, 905, 955, 3, 138, 69, 0, 906, 955, 3, 160, 80, 0, 907, 955, 3, 176, 88, 0, 908, 955, 3, 180, 90, 0, 909, 955, 3, 184, 92, 0, 910, 955, 3, 182, 91, 0, 911, 955, 3, 174, 87, 0, 912, 955, 3, 178, 89, 0, 913, 955, 3, 146, 73, 0, 914, 955, 3, 152, 76, 0, 915, 955, 3, 148, 74, 0, 916, 955, 3, 150, 75, 0, 917, 955, 3, 154, 77, 0, 918, 955, 3, 156, 78, 0, 919, 955, 3, 158, 79, 0, 920, 955, 3, 66, 33, 0, 921, 955, 3, 76, 38, 0, 922, 955, 3, 82, 41, 0, 923, 955, 3, 78, 39, 0, 924, 955, 3, 84, 42, 0, 925, 955, 3, 86, 43, 0, 926, 955, 3, 88, 44, 0, 927, 955, 3, 90, 45, 0, 928, 955, 3, 92, 46, 0, 929, 955, 3, 106, 53, 0, 930, 955, 3, 98, 49, 0, 931, 955, 3, 108, 54, 0, 932, 955, 3, 100, 50, 0, 933, 955, 3, 94, 47, 0, 934, 955, 3, 96, 48, 0, 935, 955, 3, 104, 52, 0, 936, 955, 3, 102, 51, 0, 937, 938, 5, 1, 0, 0, 938, 940, 7, 3, 0, 0, 939, 941, 5, 431, 0, 0, 940, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 955, 1, 0, 0, 0, 944, 945, 5, 176, 0, 0, 945, 947, 5, 258, 0, 0, 946, 948, 5, 426, 0, 0, 947, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 955, 1, 0, 0, 0, 951, 955, 3, 650, 325, 0, 952, 955, 3, 438, 219, 0, 953, 955, 3, 440, 220, 0, 954, 896, 1, 0, 0, 0, 954, 897, 1, 0, 0, 0, 954, 898, 1, 0, 0, 0, 954, 899, 1, 0, 0, 0, 954, 900, 1, 0, 0, 0, 954, 901, 1, 0, 0, 0, 954, 902, 1, 0, 0, 0, 954, 903, 1, 0, 0, 0, 954, 904, 1, 0, 0, 0, 954, 905, 1, 0, 0, 0, 954, 906, 1, 0, 0, 0, 954, 907, 1, 0, 0, 0, 954, 908, 1, 0, 0, 0, 954, 909, 1, 0, 0, 0, 954, 910, 1, 0, 0, 0, 954, 911, 1, 0, 0, 0, 954, 912, 1, 0, 0, 0, 954, 913, 1, 0, 0, 0, 954, 914, 1, 0, 0, 0, 954, 915, 1, 0, 0, 0, 954, 916, 1, 0, 0, 0, 954, 917, 1, 0, 0, 0, 954, 918, 1, 0, 0, 0, 954, 919, 1, 0, 0, 0, 954, 920, 1, 0, 0, 0, 954, 921, 1, 0, 0, 0, 954, 922, 1, 0, 0, 0, 954, 923, 1, 0, 0, 0, 954, 924, 1, 0, 0, 0, 954, 925, 1, 0, 0, 0, 954, 926, 1, 0, 0, 0, 954, 927, 1, 0, 0, 0, 954, 928, 1, 0, 0, 0, 954, 929, 1, 0, 0, 0, 954, 930, 1, 0, 0, 0, 954, 931, 1, 0, 0, 0, 954, 932, 1, 0, 0, 0, 954, 933, 1, 0, 0, 0, 954, 934, 1, 0, 0, 0, 954, 935, 1, 0, 0, 0, 954, 936, 1, 0, 0, 0, 954, 937, 1, 0, 0, 0, 954, 944, 1, 0, 0, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 953, 1, 0, 0, 0, 955, 29, 1, 0, 0, 0, 956, 957, 5, 151, 0, 0, 957, 958, 5, 117, 0, 0, 958, 31, 1, 0, 0, 0, 959, 960, 5, 151, 0, 0, 960, 961, 5, 216, 0, 0, 961, 962, 5, 117, 0, 0, 962, 33, 1, 0, 0, 0, 963, 964, 7, 4, 0, 0, 964, 35, 1, 0, 0, 0, 965, 966, 3, 662, 331, 0, 966, 967, 5, 284, 0, 0, 967, 37, 1, 0, 0, 0, 968, 969, 3, 664, 332, 0, 969, 970, 5, 284, 0, 0, 970, 39, 1, 0, 0, 0, 971, 972, 5, 321, 0, 0, 972, 973, 5, 17, 0, 0, 973, 974, 5, 92, 0, 0, 974, 41, 1, 0, 0, 0, 975, 977, 5, 58, 0, 0, 976, 978, 5, 273, 0, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 981, 3, 70, 35, 0, 980, 982, 3, 32, 16, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 474, 237, 0, 984, 986, 3, 50, 25, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 988, 1, 0, 0, 0, 987, 989, 3, 424, 212, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 992, 1, 0, 0, 0, 990, 991, 5, 196, 0, 0, 991, 993, 5, 426, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 997, 1, 0, 0, 0, 994, 995, 5, 387, 0, 0, 995, 996, 5, 76, 0, 0, 996, 998, 3, 230, 115, 0, 997, 994, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1016, 1, 0, 0, 0, 999, 1000, 5, 58, 0, 0, 1000, 1001, 5, 273, 0, 0, 1001, 1003, 3, 70, 35, 0, 1002, 1004, 3, 32, 16, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1007, 3, 474, 237, 0, 1006, 1008, 3, 50, 25, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1013, 3, 44, 22, 0, 1010, 1011, 5, 387, 0, 0, 1011, 1012, 5, 76, 0, 0, 1012, 1014, 3, 230, 115, 0, 1013, 1010, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 975, 1, 0, 0, 0, 1015, 999, 1, 0, 0, 0, 1016, 43, 1, 0, 0, 0, 1017, 1018, 5, 370, 0, 0, 1018, 1019, 3, 472, 236, 0, 1019, 45, 1, 0, 0, 0, 1020, 1021, 5, 368, 0, 0, 1021, 1022, 3, 472, 236, 0, 1022, 47, 1, 0, 0, 0, 1023, 1024, 5, 101, 0, 0, 1024, 1026, 3, 70, 35, 0, 1025, 1027, 3, 30, 15, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1030, 3, 472, 236, 0, 1029, 1031, 3, 34, 17, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 49, 1, 0, 0, 0, 1032, 1033, 5, 47, 0, 0, 1033, 1034, 5, 426, 0, 0, 1034, 51, 1, 0, 0, 0, 1035, 1037, 5, 351, 0, 0, 1036, 1038, 5, 329, 0, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1045, 3, 624, 312, 0, 1040, 1041, 5, 46, 0, 0, 1041, 1042, 5, 399, 0, 0, 1042, 1043, 3, 254, 127, 0, 1043, 1044, 5, 400, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 1040, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 1, 0, 0, 0, 1047, 1049, 5, 135, 0, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 53, 1, 0, 0, 0, 1050, 1051, 5, 101, 0, 0, 1051, 1053, 5, 329, 0, 0, 1052, 1054, 3, 30, 15, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 3, 478, 239, 0, 1056, 1058, 5, 255, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1061, 3, 14, 7, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 55, 1, 0, 0, 0, 1062, 1063, 5, 160, 0, 0, 1063, 1064, 5, 426, 0, 0, 1064, 1065, 5, 301, 0, 0, 1065, 1066, 5, 426, 0, 0, 1066, 57, 1, 0, 0, 0, 1067, 1070, 3, 638, 319, 0, 1068, 1069, 5, 395, 0, 0, 1069, 1071, 3, 638, 319, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1085, 1, 0, 0, 0, 1072, 1082, 3, 638, 319, 0, 1073, 1078, 5, 395, 0, 0, 1074, 1079, 5, 104, 0, 0, 1075, 1079, 5, 175, 0, 0, 1076, 1079, 5, 375, 0, 0, 1077, 1079, 3, 638, 319, 0, 1078, 1074, 1, 0, 0, 0, 1078, 1075, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1073, 1, 0, 0, 0, 1081, 1084, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1085, 1072, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 59, 1, 0, 0, 0, 1087, 1089, 3, 58, 29, 0, 1088, 1090, 3, 626, 313, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 61, 1, 0, 0, 0, 1091, 1093, 3, 476, 238, 0, 1092, 1094, 3, 626, 313, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 3, 260, 130, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 63, 1, 0, 0, 0, 1098, 1121, 7, 5, 0, 0, 1099, 1101, 3, 70, 35, 0, 1100, 1102, 5, 122, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 3, 472, 236, 0, 1104, 1122, 1, 0, 0, 0, 1105, 1107, 5, 69, 0, 0, 1106, 1108, 5, 122, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1122, 3, 472, 236, 0, 1110, 1112, 5, 141, 0, 0, 1111, 1113, 5, 122, 0, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1122, 3, 556, 278, 0, 1115, 1118, 5, 138, 0, 0, 1116, 1118, 5, 122, 0, 0, 1117, 1115, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1122, 3, 62, 31, 0, 1120, 1122, 3, 62, 31, 0, 1121, 1099, 1, 0, 0, 0, 1121, 1105, 1, 0, 0, 0, 1121, 1110, 1, 0, 0, 0, 1121, 1117, 1, 0, 0, 0, 1121, 1120, 1, 0, 0, 0, 1122, 65, 1, 0, 0, 0, 1123, 1124, 5, 10, 0, 0, 1124, 1125, 5, 329, 0, 0, 1125, 1138, 3, 624, 312, 0, 1126, 1127, 5, 52, 0, 0, 1127, 1134, 5, 319, 0, 0, 1128, 1135, 5, 215, 0, 0, 1129, 1130, 5, 134, 0, 0, 1130, 1132, 5, 46, 0, 0, 1131, 1133, 3, 254, 127, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1128, 1, 0, 0, 0, 1134, 1129, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1139, 1, 0, 0, 0, 1136, 1137, 5, 33, 0, 0, 1137, 1139, 5, 204, 0, 0, 1138, 1126, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 67, 1, 0, 0, 0, 1140, 1141, 7, 6, 0, 0, 1141, 69, 1, 0, 0, 0, 1142, 1143, 7, 7, 0, 0, 1143, 71, 1, 0, 0, 0, 1144, 1145, 5, 308, 0, 0, 1145, 1148, 7, 8, 0, 0, 1146, 1147, 5, 184, 0, 0, 1147, 1149, 3, 194, 97, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1328, 1, 0, 0, 0, 1150, 1152, 5, 308, 0, 0, 1151, 1153, 5, 122, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1158, 5, 330, 0, 0, 1155, 1156, 3, 68, 34, 0, 1156, 1157, 3, 472, 236, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1162, 3, 74, 37, 0, 1161, 1160, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1328, 1, 0, 0, 0, 1163, 1164, 5, 308, 0, 0, 1164, 1168, 5, 379, 0, 0, 1165, 1166, 3, 68, 34, 0, 1166, 1167, 3, 472, 236, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1173, 1, 0, 0, 0, 1170, 1171, 5, 184, 0, 0, 1171, 1174, 3, 194, 97, 0, 1172, 1174, 3, 194, 97, 0, 1173, 1170, 1, 0, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1328, 1, 0, 0, 0, 1175, 1176, 5, 308, 0, 0, 1176, 1177, 5, 202, 0, 0, 1177, 1181, 5, 379, 0, 0, 1178, 1179, 3, 68, 34, 0, 1179, 1180, 3, 472, 236, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1178, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1186, 1, 0, 0, 0, 1183, 1184, 5, 184, 0, 0, 1184, 1187, 3, 194, 97, 0, 1185, 1187, 3, 194, 97, 0, 1186, 1183, 1, 0, 0, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1328, 1, 0, 0, 0, 1188, 1190, 5, 308, 0, 0, 1189, 1191, 5, 315, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 46, 0, 0, 1193, 1194, 3, 68, 34, 0, 1194, 1198, 3, 476, 238, 0, 1195, 1196, 3, 68, 34, 0, 1196, 1197, 3, 472, 236, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1195, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1201, 5, 184, 0, 0, 1201, 1204, 3, 194, 97, 0, 1202, 1204, 3, 194, 97, 0, 1203, 1200, 1, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1328, 1, 0, 0, 0, 1205, 1206, 5, 308, 0, 0, 1206, 1209, 5, 142, 0, 0, 1207, 1208, 5, 184, 0, 0, 1208, 1210, 3, 556, 278, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1328, 1, 0, 0, 0, 1211, 1212, 5, 308, 0, 0, 1212, 1213, 5, 239, 0, 0, 1213, 1215, 3, 476, 238, 0, 1214, 1216, 3, 626, 313, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 1, 0, 0, 0, 1217, 1219, 3, 494, 247, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1221, 1, 0, 0, 0, 1220, 1222, 3, 542, 271, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 3, 386, 193, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1328, 1, 0, 0, 0, 1226, 1227, 5, 308, 0, 0, 1227, 1233, 5, 58, 0, 0, 1228, 1229, 3, 70, 35, 0, 1229, 1230, 3, 472, 236, 0, 1230, 1234, 1, 0, 0, 0, 1231, 1232, 5, 329, 0, 0, 1232, 1234, 3, 478, 239, 0, 1233, 1228, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1328, 1, 0, 0, 0, 1235, 1236, 5, 308, 0, 0, 1236, 1237, 5, 329, 0, 0, 1237, 1241, 5, 122, 0, 0, 1238, 1239, 3, 68, 34, 0, 1239, 1240, 3, 472, 236, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 5, 184, 0, 0, 1244, 1246, 3, 194, 97, 0, 1245, 1247, 3, 626, 313, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1328, 1, 0, 0, 0, 1248, 1249, 5, 308, 0, 0, 1249, 1250, 5, 332, 0, 0, 1250, 1254, 3, 478, 239, 0, 1251, 1252, 5, 399, 0, 0, 1252, 1253, 5, 426, 0, 0, 1253, 1255, 5, 400, 0, 0, 1254, 1251, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1328, 1, 0, 0, 0, 1256, 1257, 5, 308, 0, 0, 1257, 1269, 5, 191, 0, 0, 1258, 1259, 3, 70, 35, 0, 1259, 1261, 3, 472, 236, 0, 1260, 1262, 5, 122, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1270, 1, 0, 0, 0, 1263, 1265, 3, 60, 30, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1268, 5, 122, 0, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1258, 1, 0, 0, 0, 1269, 1264, 1, 0, 0, 0, 1270, 1328, 1, 0, 0, 0, 1271, 1272, 5, 308, 0, 0, 1272, 1299, 5, 50, 0, 0, 1273, 1274, 5, 51, 0, 0, 1274, 1275, 5, 405, 0, 0, 1275, 1300, 5, 431, 0, 0, 1276, 1277, 3, 70, 35, 0, 1277, 1278, 3, 472, 236, 0, 1278, 1283, 1, 0, 0, 0, 1279, 1281, 3, 60, 30, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1276, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1286, 3, 406, 203, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1289, 3, 408, 204, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1292, 3, 410, 205, 0, 1291, 1290, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1295, 3, 542, 271, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 3, 386, 193, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1273, 1, 0, 0, 0, 1299, 1282, 1, 0, 0, 0, 1300, 1328, 1, 0, 0, 0, 1301, 1302, 5, 308, 0, 0, 1302, 1328, 5, 346, 0, 0, 1303, 1304, 5, 308, 0, 0, 1304, 1305, 5, 54, 0, 0, 1305, 1328, 5, 426, 0, 0, 1306, 1307, 5, 308, 0, 0, 1307, 1311, 5, 280, 0, 0, 1308, 1309, 5, 243, 0, 0, 1309, 1312, 3, 638, 319, 0, 1310, 1312, 5, 244, 0, 0, 1311, 1308, 1, 0, 0, 0, 1311, 1310, 1, 0, 0, 0, 1312, 1328, 1, 0, 0, 0, 1313, 1314, 5, 308, 0, 0, 1314, 1328, 5, 70, 0, 0, 1315, 1317, 5, 308, 0, 0, 1316, 1318, 5, 138, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 7, 9, 0, 0, 1320, 1321, 5, 224, 0, 0, 1321, 1325, 3, 478, 239, 0, 1322, 1323, 3, 68, 34, 0, 1323, 1324, 3, 472, 236, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1322, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1328, 1, 0, 0, 0, 1327, 1144, 1, 0, 0, 0, 1327, 1150, 1, 0, 0, 0, 1327, 1163, 1, 0, 0, 0, 1327, 1175, 1, 0, 0, 0, 1327, 1188, 1, 0, 0, 0, 1327, 1205, 1, 0, 0, 0, 1327, 1211, 1, 0, 0, 0, 1327, 1226, 1, 0, 0, 0, 1327, 1235, 1, 0, 0, 0, 1327, 1248, 1, 0, 0, 0, 1327, 1256, 1, 0, 0, 0, 1327, 1271, 1, 0, 0, 0, 1327, 1301, 1, 0, 0, 0, 1327, 1303, 1, 0, 0, 0, 1327, 1306, 1, 0, 0, 0, 1327, 1313, 1, 0, 0, 0, 1327, 1315, 1, 0, 0, 0, 1328, 73, 1, 0, 0, 0, 1329, 1330, 5, 384, 0, 0, 1330, 1331, 3, 638, 319, 0, 1331, 1332, 5, 405, 0, 0, 1332, 1333, 5, 426, 0, 0, 1333, 1338, 1, 0, 0, 0, 1334, 1335, 5, 184, 0, 0, 1335, 1338, 3, 194, 97, 0, 1336, 1338, 3, 194, 97, 0, 1337, 1329, 1, 0, 0, 0, 1337, 1334, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1338, 75, 1, 0, 0, 0, 1339, 1340, 5, 190, 0, 0, 1340, 1341, 5, 329, 0, 0, 1341, 1342, 3, 624, 312, 0, 1342, 1343, 3, 80, 40, 0, 1343, 77, 1, 0, 0, 0, 1344, 1345, 5, 190, 0, 0, 1345, 1346, 3, 70, 35, 0, 1346, 1347, 3, 472, 236, 0, 1347, 1348, 3, 80, 40, 0, 1348, 79, 1, 0, 0, 0, 1349, 1350, 7, 10, 0, 0, 1350, 81, 1, 0, 0, 0, 1351, 1352, 5, 361, 0, 0, 1352, 1353, 5, 329, 0, 0, 1353, 1354, 3, 624, 312, 0, 1354, 83, 1, 0, 0, 0, 1355, 1356, 5, 361, 0, 0, 1356, 1357, 3, 70, 35, 0, 1357, 1358, 3, 472, 236, 0, 1358, 85, 1, 0, 0, 0, 1359, 1360, 5, 58, 0, 0, 1360, 1361, 5, 287, 0, 0, 1361, 1362, 3, 638, 319, 0, 1362, 87, 1, 0, 0, 0, 1363, 1364, 5, 101, 0, 0, 1364, 1365, 5, 287, 0, 0, 1365, 1366, 3, 638, 319, 0, 1366, 89, 1, 0, 0, 0, 1367, 1368, 5, 143, 0, 0, 1368, 1370, 3, 118, 59, 0, 1369, 1371, 3, 112, 56, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 5, 341, 0, 0, 1373, 1375, 3, 124, 62, 0, 1374, 1376, 3, 130, 65, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 91, 1, 0, 0, 0, 1377, 1379, 5, 283, 0, 0, 1378, 1380, 3, 132, 66, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1383, 3, 118, 59, 0, 1382, 1384, 3, 112, 56, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 5, 139, 0, 0, 1386, 1387, 3, 124, 62, 0, 1387, 93, 1, 0, 0, 0, 1388, 1390, 5, 143, 0, 0, 1389, 1391, 5, 287, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1397, 3, 638, 319, 0, 1393, 1394, 5, 397, 0, 0, 1394, 1396, 3, 638, 319, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1401, 5, 341, 0, 0, 1401, 1403, 3, 124, 62, 0, 1402, 1404, 3, 136, 68, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 95, 1, 0, 0, 0, 1405, 1407, 5, 283, 0, 0, 1406, 1408, 3, 134, 67, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 638, 319, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 638, 319, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 139, 0, 0, 1421, 1422, 3, 124, 62, 0, 1422, 97, 1, 0, 0, 0, 1423, 1424, 5, 308, 0, 0, 1424, 1425, 5, 287, 0, 0, 1425, 1426, 5, 143, 0, 0, 1426, 1427, 3, 126, 63, 0, 1427, 99, 1, 0, 0, 0, 1428, 1429, 5, 308, 0, 0, 1429, 1430, 5, 288, 0, 0, 1430, 101, 1, 0, 0, 0, 1431, 1432, 5, 308, 0, 0, 1432, 1433, 5, 62, 0, 0, 1433, 1434, 5, 288, 0, 0, 1434, 103, 1, 0, 0, 0, 1435, 1436, 5, 304, 0, 0, 1436, 1440, 5, 287, 0, 0, 1437, 1441, 5, 7, 0, 0, 1438, 1441, 5, 213, 0, 0, 1439, 1441, 3, 638, 319, 0, 1440, 1437, 1, 0, 0, 0, 1440, 1438, 1, 0, 0, 0, 1440, 1439, 1, 0, 0, 0, 1441, 105, 1, 0, 0, 0, 1442, 1443, 5, 308, 0, 0, 1443, 1445, 5, 143, 0, 0, 1444, 1446, 3, 126, 63, 0, 1445, 1444, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 5, 224, 0, 0, 1448, 1450, 3, 110, 55, 0, 1449, 1447, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 107, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 252, 0, 0, 1453, 1454, 3, 638, 319, 0, 1454, 109, 1, 0, 0, 0, 1455, 1458, 5, 7, 0, 0, 1456, 1458, 3, 116, 58, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 111, 1, 0, 0, 0, 1459, 1460, 5, 224, 0, 0, 1460, 1461, 3, 114, 57, 0, 1461, 113, 1, 0, 0, 0, 1462, 1463, 3, 70, 35, 0, 1463, 1464, 3, 472, 236, 0, 1464, 1474, 1, 0, 0, 0, 1465, 1467, 5, 329, 0, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1474, 3, 624, 312, 0, 1469, 1470, 5, 366, 0, 0, 1470, 1474, 5, 426, 0, 0, 1471, 1472, 5, 303, 0, 0, 1472, 1474, 3, 638, 319, 0, 1473, 1462, 1, 0, 0, 0, 1473, 1466, 1, 0, 0, 0, 1473, 1469, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1474, 115, 1, 0, 0, 0, 1475, 1476, 3, 70, 35, 0, 1476, 1477, 3, 472, 236, 0, 1477, 1496, 1, 0, 0, 0, 1478, 1480, 5, 329, 0, 0, 1479, 1478, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1486, 3, 478, 239, 0, 1482, 1483, 5, 399, 0, 0, 1483, 1484, 3, 254, 127, 0, 1484, 1485, 5, 400, 0, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1482, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1490, 3, 626, 313, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1496, 1, 0, 0, 0, 1491, 1492, 5, 366, 0, 0, 1492, 1496, 5, 426, 0, 0, 1493, 1494, 5, 303, 0, 0, 1494, 1496, 3, 638, 319, 0, 1495, 1475, 1, 0, 0, 0, 1495, 1479, 1, 0, 0, 0, 1495, 1491, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 117, 1, 0, 0, 0, 1497, 1502, 3, 120, 60, 0, 1498, 1499, 5, 397, 0, 0, 1499, 1501, 3, 120, 60, 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, 119, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1510, 3, 122, 61, 0, 1506, 1507, 5, 399, 0, 0, 1507, 1508, 3, 254, 127, 0, 1508, 1509, 5, 400, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1506, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 121, 1, 0, 0, 0, 1512, 1513, 7, 11, 0, 0, 1513, 123, 1, 0, 0, 0, 1514, 1519, 3, 126, 63, 0, 1515, 1516, 5, 397, 0, 0, 1516, 1518, 3, 126, 63, 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, 125, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1523, 5, 369, 0, 0, 1523, 1529, 3, 642, 321, 0, 1524, 1525, 5, 144, 0, 0, 1525, 1529, 3, 642, 321, 0, 1526, 1527, 5, 287, 0, 0, 1527, 1529, 3, 638, 319, 0, 1528, 1522, 1, 0, 0, 0, 1528, 1524, 1, 0, 0, 0, 1528, 1526, 1, 0, 0, 0, 1529, 127, 1, 0, 0, 0, 1530, 1531, 5, 369, 0, 0, 1531, 1536, 3, 642, 321, 0, 1532, 1533, 5, 287, 0, 0, 1533, 1536, 3, 638, 319, 0, 1534, 1536, 3, 638, 319, 0, 1535, 1530, 1, 0, 0, 0, 1535, 1532, 1, 0, 0, 0, 1535, 1534, 1, 0, 0, 0, 1536, 129, 1, 0, 0, 0, 1537, 1538, 5, 387, 0, 0, 1538, 1539, 5, 143, 0, 0, 1539, 1540, 5, 227, 0, 0, 1540, 131, 1, 0, 0, 0, 1541, 1542, 5, 143, 0, 0, 1542, 1543, 5, 227, 0, 0, 1543, 1544, 5, 134, 0, 0, 1544, 133, 1, 0, 0, 0, 1545, 1546, 5, 5, 0, 0, 1546, 1547, 5, 227, 0, 0, 1547, 1548, 5, 134, 0, 0, 1548, 135, 1, 0, 0, 0, 1549, 1550, 5, 387, 0, 0, 1550, 1551, 5, 5, 0, 0, 1551, 1552, 5, 227, 0, 0, 1552, 137, 1, 0, 0, 0, 1553, 1555, 5, 212, 0, 0, 1554, 1556, 5, 276, 0, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 5, 329, 0, 0, 1558, 1564, 3, 478, 239, 0, 1559, 1560, 7, 12, 0, 0, 1560, 1562, 5, 239, 0, 0, 1561, 1563, 3, 630, 315, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1559, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 139, 1, 0, 0, 0, 1566, 1571, 3, 142, 71, 0, 1567, 1568, 5, 397, 0, 0, 1568, 1570, 3, 142, 71, 0, 1569, 1567, 1, 0, 0, 0, 1570, 1573, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 141, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1575, 3, 144, 72, 0, 1575, 1576, 5, 426, 0, 0, 1576, 143, 1, 0, 0, 0, 1577, 1578, 7, 13, 0, 0, 1578, 145, 1, 0, 0, 0, 1579, 1581, 5, 58, 0, 0, 1580, 1582, 5, 333, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 5, 141, 0, 0, 1584, 1585, 3, 554, 277, 0, 1585, 1586, 5, 17, 0, 0, 1586, 1589, 5, 426, 0, 0, 1587, 1588, 5, 370, 0, 0, 1588, 1590, 3, 140, 70, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 147, 1, 0, 0, 0, 1591, 1593, 5, 101, 0, 0, 1592, 1594, 5, 333, 0, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 5, 141, 0, 0, 1596, 1598, 3, 30, 15, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 3, 556, 278, 0, 1600, 149, 1, 0, 0, 0, 1601, 1602, 5, 271, 0, 0, 1602, 1603, 7, 14, 0, 0, 1603, 151, 1, 0, 0, 0, 1604, 1605, 5, 58, 0, 0, 1605, 1606, 5, 333, 0, 0, 1606, 1607, 5, 194, 0, 0, 1607, 1608, 5, 432, 0, 0, 1608, 1610, 5, 399, 0, 0, 1609, 1611, 3, 248, 124, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 5, 400, 0, 0, 1613, 1614, 3, 580, 290, 0, 1614, 153, 1, 0, 0, 0, 1615, 1616, 5, 101, 0, 0, 1616, 1617, 5, 333, 0, 0, 1617, 1619, 5, 194, 0, 0, 1618, 1620, 3, 30, 15, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 5, 432, 0, 0, 1622, 155, 1, 0, 0, 0, 1623, 1624, 5, 58, 0, 0, 1624, 1625, 5, 155, 0, 0, 1625, 1626, 3, 638, 319, 0, 1626, 1627, 5, 224, 0, 0, 1627, 1628, 5, 329, 0, 0, 1628, 1629, 3, 478, 239, 0, 1629, 1630, 3, 264, 132, 0, 1630, 1631, 5, 17, 0, 0, 1631, 1635, 5, 426, 0, 0, 1632, 1633, 5, 387, 0, 0, 1633, 1634, 5, 84, 0, 0, 1634, 1636, 5, 265, 0, 0, 1635, 1632, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1638, 5, 150, 0, 0, 1638, 1640, 3, 226, 113, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1644, 1, 0, 0, 0, 1641, 1642, 5, 154, 0, 0, 1642, 1643, 5, 329, 0, 0, 1643, 1645, 3, 478, 239, 0, 1644, 1641, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1649, 1, 0, 0, 0, 1646, 1647, 5, 238, 0, 0, 1647, 1648, 5, 32, 0, 0, 1648, 1650, 3, 264, 132, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1655, 1, 0, 0, 0, 1651, 1653, 3, 222, 111, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 3, 246, 123, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1659, 3, 424, 212, 0, 1658, 1657, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1661, 1, 0, 0, 0, 1660, 1662, 3, 224, 112, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1665, 3, 196, 98, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 157, 1, 0, 0, 0, 1666, 1667, 5, 101, 0, 0, 1667, 1669, 5, 155, 0, 0, 1668, 1670, 3, 30, 15, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 3, 638, 319, 0, 1672, 1673, 5, 224, 0, 0, 1673, 1674, 3, 478, 239, 0, 1674, 159, 1, 0, 0, 0, 1675, 1678, 5, 58, 0, 0, 1676, 1677, 5, 228, 0, 0, 1677, 1679, 5, 278, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 378, 0, 0, 1681, 1683, 3, 32, 16, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1689, 3, 484, 242, 0, 1685, 1686, 5, 399, 0, 0, 1686, 1687, 3, 304, 152, 0, 1687, 1688, 5, 400, 0, 0, 1688, 1690, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1693, 3, 196, 98, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 162, 81, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 1, 0, 0, 0, 1697, 1699, 3, 224, 112, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 5, 17, 0, 0, 1701, 1702, 3, 380, 190, 0, 1702, 161, 1, 0, 0, 0, 1703, 1704, 5, 238, 0, 0, 1704, 1710, 5, 224, 0, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1711, 3, 254, 127, 0, 1707, 1708, 5, 316, 0, 0, 1708, 1709, 5, 399, 0, 0, 1709, 1711, 3, 204, 102, 0, 1710, 1705, 1, 0, 0, 0, 1710, 1707, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 5, 400, 0, 0, 1713, 163, 1, 0, 0, 0, 1714, 1717, 3, 166, 83, 0, 1715, 1717, 3, 168, 84, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1715, 1, 0, 0, 0, 1717, 165, 1, 0, 0, 0, 1718, 1719, 5, 42, 0, 0, 1719, 1720, 5, 224, 0, 0, 1720, 1721, 5, 399, 0, 0, 1721, 1722, 3, 254, 127, 0, 1722, 1723, 5, 400, 0, 0, 1723, 167, 1, 0, 0, 0, 1724, 1725, 3, 170, 85, 0, 1725, 1726, 3, 172, 86, 0, 1726, 169, 1, 0, 0, 0, 1727, 1728, 5, 98, 0, 0, 1728, 1729, 5, 224, 0, 0, 1729, 1730, 5, 399, 0, 0, 1730, 1731, 3, 254, 127, 0, 1731, 1732, 5, 400, 0, 0, 1732, 171, 1, 0, 0, 0, 1733, 1734, 5, 315, 0, 0, 1734, 1735, 5, 224, 0, 0, 1735, 1736, 5, 399, 0, 0, 1736, 1737, 3, 254, 127, 0, 1737, 1738, 5, 400, 0, 0, 1738, 173, 1, 0, 0, 0, 1739, 1740, 5, 101, 0, 0, 1740, 1742, 5, 378, 0, 0, 1741, 1743, 3, 30, 15, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 3, 482, 241, 0, 1745, 175, 1, 0, 0, 0, 1746, 1747, 5, 58, 0, 0, 1747, 1748, 5, 202, 0, 0, 1748, 1750, 5, 378, 0, 0, 1749, 1751, 3, 32, 16, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 3, 484, 242, 0, 1753, 1755, 3, 38, 19, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1758, 3, 196, 98, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1761, 3, 162, 81, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1764, 3, 164, 82, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1766, 1, 0, 0, 0, 1765, 1767, 3, 222, 111, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1769, 1, 0, 0, 0, 1768, 1770, 3, 246, 123, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1773, 3, 424, 212, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1776, 3, 224, 112, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 5, 17, 0, 0, 1778, 1779, 3, 380, 190, 0, 1779, 177, 1, 0, 0, 0, 1780, 1781, 5, 101, 0, 0, 1781, 1782, 5, 202, 0, 0, 1782, 1784, 5, 378, 0, 0, 1783, 1785, 3, 30, 15, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 3, 482, 241, 0, 1787, 179, 1, 0, 0, 0, 1788, 1789, 5, 58, 0, 0, 1789, 1790, 5, 293, 0, 0, 1790, 1791, 5, 258, 0, 0, 1791, 1792, 3, 638, 319, 0, 1792, 1794, 3, 188, 94, 0, 1793, 1795, 3, 190, 95, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1797, 1, 0, 0, 0, 1796, 1798, 3, 268, 134, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 3, 192, 96, 0, 1800, 181, 1, 0, 0, 0, 1801, 1802, 5, 101, 0, 0, 1802, 1803, 5, 293, 0, 0, 1803, 1804, 5, 258, 0, 0, 1804, 1805, 3, 638, 319, 0, 1805, 183, 1, 0, 0, 0, 1806, 1807, 5, 9, 0, 0, 1807, 1808, 5, 293, 0, 0, 1808, 1809, 5, 258, 0, 0, 1809, 1810, 3, 638, 319, 0, 1810, 1811, 3, 186, 93, 0, 1811, 185, 1, 0, 0, 0, 1812, 1818, 3, 188, 94, 0, 1813, 1818, 3, 190, 95, 0, 1814, 1818, 3, 268, 134, 0, 1815, 1818, 3, 192, 96, 0, 1816, 1818, 5, 115, 0, 0, 1817, 1812, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1817, 1814, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1816, 1, 0, 0, 0, 1818, 187, 1, 0, 0, 0, 1819, 1820, 5, 59, 0, 0, 1820, 1835, 5, 426, 0, 0, 1821, 1823, 5, 111, 0, 0, 1822, 1824, 5, 431, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1832, 3, 578, 289, 0, 1826, 1830, 5, 20, 0, 0, 1827, 1828, 5, 223, 0, 0, 1828, 1830, 5, 32, 0, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 5, 426, 0, 0, 1832, 1829, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1819, 1, 0, 0, 0, 1834, 1821, 1, 0, 0, 0, 1835, 189, 1, 0, 0, 0, 1836, 1837, 5, 116, 0, 0, 1837, 1838, 5, 17, 0, 0, 1838, 1839, 5, 426, 0, 0, 1839, 191, 1, 0, 0, 0, 1840, 1842, 5, 85, 0, 0, 1841, 1840, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 5, 17, 0, 0, 1844, 1845, 3, 2, 1, 0, 1845, 193, 1, 0, 0, 0, 1846, 1849, 3, 638, 319, 0, 1847, 1849, 5, 426, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1847, 1, 0, 0, 0, 1849, 195, 1, 0, 0, 0, 1850, 1851, 5, 47, 0, 0, 1851, 1852, 5, 426, 0, 0, 1852, 197, 1, 0, 0, 0, 1853, 1854, 5, 183, 0, 0, 1854, 1855, 5, 431, 0, 0, 1855, 199, 1, 0, 0, 0, 1856, 1857, 5, 238, 0, 0, 1857, 1866, 5, 32, 0, 0, 1858, 1861, 5, 399, 0, 0, 1859, 1862, 3, 202, 101, 0, 1860, 1862, 3, 254, 127, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1860, 1, 0, 0, 0, 1862, 1867, 1, 0, 0, 0, 1863, 1864, 5, 316, 0, 0, 1864, 1865, 5, 399, 0, 0, 1865, 1867, 3, 204, 102, 0, 1866, 1858, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 5, 400, 0, 0, 1869, 201, 1, 0, 0, 0, 1870, 1875, 3, 316, 158, 0, 1871, 1872, 5, 397, 0, 0, 1872, 1874, 3, 316, 158, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 203, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1883, 3, 206, 103, 0, 1879, 1880, 5, 397, 0, 0, 1880, 1882, 3, 206, 103, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 205, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1905, 3, 256, 128, 0, 1887, 1892, 3, 666, 333, 0, 1888, 1892, 3, 668, 334, 0, 1889, 1892, 3, 672, 336, 0, 1890, 1892, 3, 674, 337, 0, 1891, 1887, 1, 0, 0, 0, 1891, 1888, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 5, 399, 0, 0, 1894, 1895, 3, 256, 128, 0, 1895, 1896, 5, 400, 0, 0, 1896, 1905, 1, 0, 0, 0, 1897, 1898, 7, 15, 0, 0, 1898, 1899, 5, 399, 0, 0, 1899, 1900, 5, 431, 0, 0, 1900, 1901, 5, 397, 0, 0, 1901, 1902, 3, 256, 128, 0, 1902, 1903, 5, 400, 0, 0, 1903, 1905, 1, 0, 0, 0, 1904, 1886, 1, 0, 0, 0, 1904, 1891, 1, 0, 0, 0, 1904, 1897, 1, 0, 0, 0, 1905, 207, 1, 0, 0, 0, 1906, 1907, 5, 42, 0, 0, 1907, 1908, 5, 32, 0, 0, 1908, 1909, 5, 399, 0, 0, 1909, 1910, 3, 254, 127, 0, 1910, 1917, 5, 400, 0, 0, 1911, 1912, 5, 315, 0, 0, 1912, 1913, 5, 32, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 262, 131, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1911, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 5, 166, 0, 0, 1920, 1921, 5, 431, 0, 0, 1921, 1922, 5, 31, 0, 0, 1922, 209, 1, 0, 0, 0, 1923, 1924, 5, 310, 0, 0, 1924, 1925, 5, 32, 0, 0, 1925, 1926, 5, 399, 0, 0, 1926, 1927, 3, 254, 127, 0, 1927, 1928, 5, 400, 0, 0, 1928, 1929, 5, 224, 0, 0, 1929, 1930, 5, 399, 0, 0, 1930, 1931, 3, 290, 145, 0, 1931, 1933, 5, 400, 0, 0, 1932, 1934, 3, 40, 20, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 211, 1, 0, 0, 0, 1935, 1938, 3, 218, 109, 0, 1936, 1938, 3, 220, 110, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 213, 1, 0, 0, 0, 1939, 1940, 5, 266, 0, 0, 1940, 1941, 5, 426, 0, 0, 1941, 215, 1, 0, 0, 0, 1942, 1943, 5, 267, 0, 0, 1943, 1944, 5, 426, 0, 0, 1944, 217, 1, 0, 0, 0, 1945, 1946, 5, 291, 0, 0, 1946, 1947, 5, 137, 0, 0, 1947, 1948, 5, 301, 0, 0, 1948, 1952, 5, 426, 0, 0, 1949, 1950, 5, 387, 0, 0, 1950, 1951, 5, 302, 0, 0, 1951, 1953, 3, 226, 113, 0, 1952, 1949, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 219, 1, 0, 0, 0, 1954, 1955, 5, 291, 0, 0, 1955, 1956, 5, 137, 0, 0, 1956, 1958, 5, 87, 0, 0, 1957, 1959, 3, 236, 118, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1962, 3, 238, 119, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 3, 240, 120, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 1, 0, 0, 0, 1966, 1968, 3, 242, 121, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1970, 1, 0, 0, 0, 1969, 1971, 3, 244, 122, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 221, 1, 0, 0, 0, 1972, 1975, 3, 220, 110, 0, 1973, 1975, 3, 218, 109, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1973, 1, 0, 0, 0, 1975, 223, 1, 0, 0, 0, 1976, 1977, 5, 332, 0, 0, 1977, 1978, 3, 226, 113, 0, 1978, 225, 1, 0, 0, 0, 1979, 1980, 5, 399, 0, 0, 1980, 1981, 3, 228, 114, 0, 1981, 1982, 5, 400, 0, 0, 1982, 227, 1, 0, 0, 0, 1983, 1993, 3, 232, 116, 0, 1984, 1989, 5, 426, 0, 0, 1985, 1986, 5, 397, 0, 0, 1986, 1988, 5, 426, 0, 0, 1987, 1985, 1, 0, 0, 0, 1988, 1991, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1983, 1, 0, 0, 0, 1992, 1984, 1, 0, 0, 0, 1993, 229, 1, 0, 0, 0, 1994, 1995, 5, 399, 0, 0, 1995, 1996, 3, 232, 116, 0, 1996, 1997, 5, 400, 0, 0, 1997, 231, 1, 0, 0, 0, 1998, 2003, 3, 234, 117, 0, 1999, 2000, 5, 397, 0, 0, 2000, 2002, 3, 234, 117, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 233, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2007, 5, 426, 0, 0, 2007, 2008, 5, 405, 0, 0, 2008, 2009, 5, 426, 0, 0, 2009, 235, 1, 0, 0, 0, 2010, 2011, 5, 127, 0, 0, 2011, 2012, 5, 334, 0, 0, 2012, 2013, 5, 32, 0, 0, 2013, 2017, 5, 426, 0, 0, 2014, 2015, 5, 110, 0, 0, 2015, 2016, 5, 32, 0, 0, 2016, 2018, 5, 426, 0, 0, 2017, 2014, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 237, 1, 0, 0, 0, 2019, 2020, 5, 44, 0, 0, 2020, 2021, 5, 169, 0, 0, 2021, 2022, 5, 334, 0, 0, 2022, 2023, 5, 32, 0, 0, 2023, 2024, 5, 426, 0, 0, 2024, 239, 1, 0, 0, 0, 2025, 2026, 5, 198, 0, 0, 2026, 2027, 5, 174, 0, 0, 2027, 2028, 5, 334, 0, 0, 2028, 2029, 5, 32, 0, 0, 2029, 2030, 5, 426, 0, 0, 2030, 241, 1, 0, 0, 0, 2031, 2032, 5, 186, 0, 0, 2032, 2033, 5, 334, 0, 0, 2033, 2034, 5, 32, 0, 0, 2034, 2035, 5, 426, 0, 0, 2035, 243, 1, 0, 0, 0, 2036, 2037, 5, 219, 0, 0, 2037, 2038, 5, 85, 0, 0, 2038, 2039, 5, 17, 0, 0, 2039, 2040, 5, 426, 0, 0, 2040, 245, 1, 0, 0, 0, 2041, 2042, 5, 321, 0, 0, 2042, 2043, 5, 17, 0, 0, 2043, 2044, 5, 160, 0, 0, 2044, 2045, 5, 426, 0, 0, 2045, 2046, 5, 233, 0, 0, 2046, 2051, 5, 426, 0, 0, 2047, 2048, 5, 159, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 2050, 5, 232, 0, 0, 2050, 2052, 5, 426, 0, 0, 2051, 2047, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2083, 1, 0, 0, 0, 2053, 2054, 5, 321, 0, 0, 2054, 2055, 5, 32, 0, 0, 2055, 2059, 5, 426, 0, 0, 2056, 2057, 5, 387, 0, 0, 2057, 2058, 5, 302, 0, 0, 2058, 2060, 3, 226, 113, 0, 2059, 2056, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2064, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2065, 3, 638, 319, 0, 2064, 2061, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2083, 1, 0, 0, 0, 2066, 2067, 5, 321, 0, 0, 2067, 2068, 5, 32, 0, 0, 2068, 2072, 3, 638, 319, 0, 2069, 2070, 5, 387, 0, 0, 2070, 2071, 5, 302, 0, 0, 2071, 2073, 3, 226, 113, 0, 2072, 2069, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2077, 1, 0, 0, 0, 2074, 2075, 5, 321, 0, 0, 2075, 2076, 5, 17, 0, 0, 2076, 2078, 3, 638, 319, 0, 2077, 2074, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2083, 1, 0, 0, 0, 2079, 2080, 5, 321, 0, 0, 2080, 2081, 5, 17, 0, 0, 2081, 2083, 3, 638, 319, 0, 2082, 2041, 1, 0, 0, 0, 2082, 2053, 1, 0, 0, 0, 2082, 2066, 1, 0, 0, 0, 2082, 2079, 1, 0, 0, 0, 2083, 247, 1, 0, 0, 0, 2084, 2089, 3, 310, 155, 0, 2085, 2086, 5, 397, 0, 0, 2086, 2088, 3, 310, 155, 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, 249, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2097, 3, 312, 156, 0, 2093, 2094, 5, 397, 0, 0, 2094, 2096, 3, 312, 156, 0, 2095, 2093, 1, 0, 0, 0, 2096, 2099, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 251, 1, 0, 0, 0, 2099, 2097, 1, 0, 0, 0, 2100, 2105, 3, 340, 170, 0, 2101, 2102, 5, 397, 0, 0, 2102, 2104, 3, 340, 170, 0, 2103, 2101, 1, 0, 0, 0, 2104, 2107, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 253, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2113, 3, 256, 128, 0, 2109, 2110, 5, 397, 0, 0, 2110, 2112, 3, 256, 128, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 255, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 3, 682, 341, 0, 2117, 2119, 4, 128, 0, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 257, 1, 0, 0, 0, 2120, 2121, 3, 638, 319, 0, 2121, 259, 1, 0, 0, 0, 2122, 2132, 3, 256, 128, 0, 2123, 2128, 5, 395, 0, 0, 2124, 2129, 5, 104, 0, 0, 2125, 2129, 5, 175, 0, 0, 2126, 2129, 5, 375, 0, 0, 2127, 2129, 3, 638, 319, 0, 2128, 2124, 1, 0, 0, 0, 2128, 2125, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2127, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2123, 1, 0, 0, 0, 2131, 2134, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 261, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2135, 2140, 3, 302, 151, 0, 2136, 2137, 5, 397, 0, 0, 2137, 2139, 3, 302, 151, 0, 2138, 2136, 1, 0, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 263, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2144, 5, 399, 0, 0, 2144, 2145, 3, 254, 127, 0, 2145, 2146, 5, 400, 0, 0, 2146, 265, 1, 0, 0, 0, 2147, 2149, 3, 268, 134, 0, 2148, 2150, 3, 270, 135, 0, 2149, 2148, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2153, 1, 0, 0, 0, 2151, 2153, 3, 272, 136, 0, 2152, 2147, 1, 0, 0, 0, 2152, 2151, 1, 0, 0, 0, 2153, 267, 1, 0, 0, 0, 2154, 2157, 3, 662, 331, 0, 2155, 2157, 3, 664, 332, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 269, 1, 0, 0, 0, 2158, 2159, 7, 16, 0, 0, 2159, 271, 1, 0, 0, 0, 2160, 2164, 5, 109, 0, 0, 2161, 2162, 5, 216, 0, 0, 2162, 2164, 5, 109, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2164, 273, 1, 0, 0, 0, 2165, 2166, 7, 17, 0, 0, 2166, 275, 1, 0, 0, 0, 2167, 2168, 5, 55, 0, 0, 2168, 2170, 3, 638, 319, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 3, 280, 140, 0, 2172, 2174, 3, 336, 168, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 277, 1, 0, 0, 0, 2175, 2176, 5, 55, 0, 0, 2176, 2177, 3, 638, 319, 0, 2177, 2179, 3, 280, 140, 0, 2178, 2180, 3, 338, 169, 0, 2179, 2178, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 279, 1, 0, 0, 0, 2181, 2184, 3, 282, 141, 0, 2182, 2184, 3, 284, 142, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2182, 1, 0, 0, 0, 2184, 281, 1, 0, 0, 0, 2185, 2186, 3, 334, 167, 0, 2186, 2187, 3, 264, 132, 0, 2187, 283, 1, 0, 0, 0, 2188, 2189, 5, 40, 0, 0, 2189, 2190, 5, 399, 0, 0, 2190, 2191, 3, 580, 290, 0, 2191, 2192, 5, 400, 0, 0, 2192, 285, 1, 0, 0, 0, 2193, 2194, 5, 55, 0, 0, 2194, 2196, 3, 638, 319, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 5, 136, 0, 0, 2198, 2199, 5, 173, 0, 0, 2199, 2200, 3, 264, 132, 0, 2200, 2201, 5, 269, 0, 0, 2201, 2202, 3, 478, 239, 0, 2202, 2204, 3, 264, 132, 0, 2203, 2205, 3, 336, 168, 0, 2204, 2203, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 287, 1, 0, 0, 0, 2206, 2207, 5, 55, 0, 0, 2207, 2208, 3, 638, 319, 0, 2208, 2209, 5, 136, 0, 0, 2209, 2210, 5, 173, 0, 0, 2210, 2211, 3, 264, 132, 0, 2211, 2212, 5, 269, 0, 0, 2212, 2213, 3, 478, 239, 0, 2213, 2215, 3, 264, 132, 0, 2214, 2216, 3, 338, 169, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 289, 1, 0, 0, 0, 2217, 2220, 3, 296, 148, 0, 2218, 2220, 3, 292, 146, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2218, 1, 0, 0, 0, 2220, 291, 1, 0, 0, 0, 2221, 2226, 3, 294, 147, 0, 2222, 2223, 5, 397, 0, 0, 2223, 2225, 3, 294, 147, 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, 293, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2230, 5, 399, 0, 0, 2230, 2231, 3, 296, 148, 0, 2231, 2232, 5, 400, 0, 0, 2232, 295, 1, 0, 0, 0, 2233, 2238, 3, 572, 286, 0, 2234, 2235, 5, 397, 0, 0, 2235, 2237, 3, 572, 286, 0, 2236, 2234, 1, 0, 0, 0, 2237, 2240, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 297, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2242, 7, 18, 0, 0, 2242, 299, 1, 0, 0, 0, 2243, 2244, 5, 220, 0, 0, 2244, 2245, 7, 19, 0, 0, 2245, 301, 1, 0, 0, 0, 2246, 2248, 3, 256, 128, 0, 2247, 2249, 3, 298, 149, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2251, 1, 0, 0, 0, 2250, 2252, 3, 300, 150, 0, 2251, 2250, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 303, 1, 0, 0, 0, 2253, 2258, 3, 306, 153, 0, 2254, 2255, 5, 397, 0, 0, 2255, 2257, 3, 306, 153, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2260, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 305, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 3, 258, 129, 0, 2262, 2263, 5, 47, 0, 0, 2263, 2265, 5, 426, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 307, 1, 0, 0, 0, 2266, 2269, 3, 256, 128, 0, 2267, 2269, 3, 580, 290, 0, 2268, 2266, 1, 0, 0, 0, 2268, 2267, 1, 0, 0, 0, 2269, 2271, 1, 0, 0, 0, 2270, 2272, 3, 298, 149, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2274, 1, 0, 0, 0, 2273, 2275, 3, 300, 150, 0, 2274, 2273, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 309, 1, 0, 0, 0, 2276, 2277, 3, 258, 129, 0, 2277, 2280, 3, 342, 171, 0, 2278, 2279, 5, 47, 0, 0, 2279, 2281, 5, 426, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 311, 1, 0, 0, 0, 2282, 2285, 3, 314, 157, 0, 2283, 2285, 3, 316, 158, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 313, 1, 0, 0, 0, 2286, 2289, 3, 286, 143, 0, 2287, 2289, 3, 276, 138, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2287, 1, 0, 0, 0, 2289, 315, 1, 0, 0, 0, 2290, 2291, 3, 258, 129, 0, 2291, 2293, 3, 342, 171, 0, 2292, 2294, 3, 318, 159, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2297, 1, 0, 0, 0, 2295, 2296, 5, 47, 0, 0, 2296, 2298, 5, 426, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 317, 1, 0, 0, 0, 2299, 2302, 3, 320, 160, 0, 2300, 2302, 3, 322, 161, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2300, 1, 0, 0, 0, 2302, 319, 1, 0, 0, 0, 2303, 2304, 5, 55, 0, 0, 2304, 2306, 3, 638, 319, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2308, 5, 269, 0, 0, 2308, 2309, 3, 478, 239, 0, 2309, 2310, 5, 399, 0, 0, 2310, 2311, 3, 256, 128, 0, 2311, 2313, 5, 400, 0, 0, 2312, 2314, 3, 336, 168, 0, 2313, 2312, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 321, 1, 0, 0, 0, 2315, 2316, 5, 55, 0, 0, 2316, 2318, 3, 638, 319, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2321, 3, 330, 165, 0, 2320, 2322, 3, 336, 168, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 323, 1, 0, 0, 0, 2323, 2326, 3, 326, 163, 0, 2324, 2326, 3, 328, 164, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2324, 1, 0, 0, 0, 2326, 325, 1, 0, 0, 0, 2327, 2328, 5, 55, 0, 0, 2328, 2330, 3, 638, 319, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 5, 269, 0, 0, 2332, 2333, 3, 478, 239, 0, 2333, 2334, 5, 399, 0, 0, 2334, 2335, 3, 256, 128, 0, 2335, 2337, 5, 400, 0, 0, 2336, 2338, 3, 338, 169, 0, 2337, 2336, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 327, 1, 0, 0, 0, 2339, 2340, 5, 55, 0, 0, 2340, 2342, 3, 638, 319, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2345, 3, 330, 165, 0, 2344, 2346, 3, 338, 169, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 329, 1, 0, 0, 0, 2347, 2348, 5, 216, 0, 0, 2348, 2354, 5, 219, 0, 0, 2349, 2350, 5, 83, 0, 0, 2350, 2354, 3, 332, 166, 0, 2351, 2354, 3, 284, 142, 0, 2352, 2354, 3, 334, 167, 0, 2353, 2347, 1, 0, 0, 0, 2353, 2349, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 331, 1, 0, 0, 0, 2355, 2359, 3, 572, 286, 0, 2356, 2359, 3, 550, 275, 0, 2357, 2359, 3, 560, 280, 0, 2358, 2355, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2357, 1, 0, 0, 0, 2359, 333, 1, 0, 0, 0, 2360, 2361, 5, 251, 0, 0, 2361, 2364, 5, 173, 0, 0, 2362, 2364, 5, 358, 0, 0, 2363, 2360, 1, 0, 0, 0, 2363, 2362, 1, 0, 0, 0, 2364, 335, 1, 0, 0, 0, 2365, 2367, 3, 266, 133, 0, 2366, 2368, 3, 274, 137, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 337, 1, 0, 0, 0, 2369, 2371, 3, 266, 133, 0, 2370, 2372, 3, 274, 137, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 339, 1, 0, 0, 0, 2373, 2374, 3, 258, 129, 0, 2374, 2375, 5, 396, 0, 0, 2375, 2378, 3, 342, 171, 0, 2376, 2377, 5, 47, 0, 0, 2377, 2379, 5, 426, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 341, 1, 0, 0, 0, 2380, 2381, 3, 346, 173, 0, 2381, 343, 1, 0, 0, 0, 2382, 2387, 3, 342, 171, 0, 2383, 2384, 5, 397, 0, 0, 2384, 2386, 3, 342, 171, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 345, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2396, 3, 348, 174, 0, 2391, 2396, 3, 350, 175, 0, 2392, 2396, 3, 352, 176, 0, 2393, 2396, 3, 354, 177, 0, 2394, 2396, 3, 356, 178, 0, 2395, 2390, 1, 0, 0, 0, 2395, 2391, 1, 0, 0, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 347, 1, 0, 0, 0, 2397, 2435, 5, 340, 0, 0, 2398, 2435, 5, 311, 0, 0, 2399, 2435, 5, 162, 0, 0, 2400, 2435, 5, 163, 0, 0, 2401, 2435, 5, 26, 0, 0, 2402, 2435, 5, 28, 0, 0, 2403, 2435, 5, 131, 0, 0, 2404, 2435, 5, 264, 0, 0, 2405, 2407, 5, 100, 0, 0, 2406, 2408, 5, 248, 0, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2435, 1, 0, 0, 0, 2409, 2435, 5, 71, 0, 0, 2410, 2435, 5, 72, 0, 0, 2411, 2435, 5, 337, 0, 0, 2412, 2435, 5, 338, 0, 0, 2413, 2414, 5, 337, 0, 0, 2414, 2415, 5, 387, 0, 0, 2415, 2416, 5, 188, 0, 0, 2416, 2417, 5, 336, 0, 0, 2417, 2435, 5, 394, 0, 0, 2418, 2435, 5, 323, 0, 0, 2419, 2435, 5, 27, 0, 0, 2420, 2428, 3, 680, 340, 0, 2421, 2422, 5, 399, 0, 0, 2422, 2425, 5, 431, 0, 0, 2423, 2424, 5, 397, 0, 0, 2424, 2426, 5, 431, 0, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2429, 5, 400, 0, 0, 2428, 2421, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2435, 1, 0, 0, 0, 2430, 2431, 7, 20, 0, 0, 2431, 2432, 5, 399, 0, 0, 2432, 2433, 5, 431, 0, 0, 2433, 2435, 5, 400, 0, 0, 2434, 2397, 1, 0, 0, 0, 2434, 2398, 1, 0, 0, 0, 2434, 2399, 1, 0, 0, 0, 2434, 2400, 1, 0, 0, 0, 2434, 2401, 1, 0, 0, 0, 2434, 2402, 1, 0, 0, 0, 2434, 2403, 1, 0, 0, 0, 2434, 2404, 1, 0, 0, 0, 2434, 2405, 1, 0, 0, 0, 2434, 2409, 1, 0, 0, 0, 2434, 2410, 1, 0, 0, 0, 2434, 2411, 1, 0, 0, 0, 2434, 2412, 1, 0, 0, 0, 2434, 2413, 1, 0, 0, 0, 2434, 2418, 1, 0, 0, 0, 2434, 2419, 1, 0, 0, 0, 2434, 2420, 1, 0, 0, 0, 2434, 2430, 1, 0, 0, 0, 2435, 349, 1, 0, 0, 0, 2436, 2437, 5, 16, 0, 0, 2437, 2438, 5, 409, 0, 0, 2438, 2439, 3, 346, 173, 0, 2439, 2440, 5, 411, 0, 0, 2440, 351, 1, 0, 0, 0, 2441, 2442, 5, 324, 0, 0, 2442, 2443, 5, 409, 0, 0, 2443, 2444, 3, 252, 126, 0, 2444, 2445, 5, 411, 0, 0, 2445, 353, 1, 0, 0, 0, 2446, 2447, 5, 198, 0, 0, 2447, 2448, 5, 409, 0, 0, 2448, 2449, 3, 348, 174, 0, 2449, 2450, 5, 397, 0, 0, 2450, 2451, 3, 346, 173, 0, 2451, 2452, 5, 411, 0, 0, 2452, 355, 1, 0, 0, 0, 2453, 2454, 5, 357, 0, 0, 2454, 2455, 5, 409, 0, 0, 2455, 2456, 3, 344, 172, 0, 2456, 2457, 5, 411, 0, 0, 2457, 357, 1, 0, 0, 0, 2458, 2460, 7, 21, 0, 0, 2459, 2461, 7, 22, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 359, 1, 0, 0, 0, 2462, 2464, 3, 364, 182, 0, 2463, 2462, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 3, 362, 181, 0, 2466, 361, 1, 0, 0, 0, 2467, 2470, 3, 368, 184, 0, 2468, 2470, 3, 372, 186, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2468, 1, 0, 0, 0, 2470, 363, 1, 0, 0, 0, 2471, 2472, 5, 387, 0, 0, 2472, 2477, 3, 366, 183, 0, 2473, 2474, 5, 397, 0, 0, 2474, 2476, 3, 366, 183, 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, 365, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2485, 3, 638, 319, 0, 2481, 2482, 5, 399, 0, 0, 2482, 2483, 3, 254, 127, 0, 2483, 2484, 5, 400, 0, 0, 2484, 2486, 1, 0, 0, 0, 2485, 2481, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 5, 17, 0, 0, 2488, 2489, 5, 399, 0, 0, 2489, 2490, 3, 360, 180, 0, 2490, 2491, 5, 400, 0, 0, 2491, 367, 1, 0, 0, 0, 2492, 2498, 3, 370, 185, 0, 2493, 2494, 3, 358, 179, 0, 2494, 2495, 3, 370, 185, 0, 2495, 2497, 1, 0, 0, 0, 2496, 2493, 1, 0, 0, 0, 2497, 2500, 1, 0, 0, 0, 2498, 2496, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 369, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2502, 3, 448, 224, 0, 2502, 2503, 3, 382, 191, 0, 2503, 2505, 3, 500, 250, 0, 2504, 2506, 3, 462, 231, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2508, 1, 0, 0, 0, 2507, 2509, 3, 494, 247, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2512, 3, 520, 260, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2515, 3, 528, 264, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2517, 1, 0, 0, 0, 2516, 2518, 3, 512, 256, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2520, 1, 0, 0, 0, 2519, 2521, 3, 530, 265, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2524, 3, 542, 271, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2527, 3, 544, 272, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2530, 3, 546, 273, 0, 2529, 2528, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2533, 3, 548, 274, 0, 2532, 2531, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2536, 3, 386, 193, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2573, 1, 0, 0, 0, 2537, 2538, 3, 448, 224, 0, 2538, 2540, 3, 500, 250, 0, 2539, 2541, 3, 462, 231, 0, 2540, 2539, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2543, 1, 0, 0, 0, 2542, 2544, 3, 494, 247, 0, 2543, 2542, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2547, 3, 520, 260, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2550, 3, 528, 264, 0, 2549, 2548, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 512, 256, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 530, 265, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2559, 3, 542, 271, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2562, 3, 544, 272, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2565, 3, 546, 273, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 548, 274, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2570, 1, 0, 0, 0, 2569, 2571, 3, 386, 193, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2501, 1, 0, 0, 0, 2572, 2537, 1, 0, 0, 0, 2573, 371, 1, 0, 0, 0, 2574, 2575, 3, 382, 191, 0, 2575, 2576, 3, 376, 188, 0, 2576, 2579, 1, 0, 0, 0, 2577, 2579, 3, 376, 188, 0, 2578, 2574, 1, 0, 0, 0, 2578, 2577, 1, 0, 0, 0, 2579, 373, 1, 0, 0, 0, 2580, 2582, 3, 500, 250, 0, 2581, 2583, 3, 448, 224, 0, 2582, 2581, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 494, 247, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2588, 1, 0, 0, 0, 2587, 2589, 3, 520, 260, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 528, 264, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2595, 3, 512, 256, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 530, 265, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2605, 1, 0, 0, 0, 2599, 2600, 5, 399, 0, 0, 2600, 2601, 3, 376, 188, 0, 2601, 2602, 5, 400, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2605, 3, 496, 248, 0, 2604, 2580, 1, 0, 0, 0, 2604, 2599, 1, 0, 0, 0, 2604, 2603, 1, 0, 0, 0, 2605, 375, 1, 0, 0, 0, 2606, 2608, 3, 374, 187, 0, 2607, 2609, 3, 378, 189, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2612, 3, 542, 271, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2614, 1, 0, 0, 0, 2613, 2615, 3, 544, 272, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 1, 0, 0, 0, 2616, 2618, 3, 546, 273, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 548, 274, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 3, 386, 193, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 377, 1, 0, 0, 0, 2625, 2626, 3, 358, 179, 0, 2626, 2627, 3, 374, 187, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2625, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 379, 1, 0, 0, 0, 2632, 2634, 3, 364, 182, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 3, 376, 188, 0, 2636, 381, 1, 0, 0, 0, 2637, 2654, 5, 161, 0, 0, 2638, 2639, 5, 235, 0, 0, 2639, 2641, 3, 384, 192, 0, 2640, 2642, 3, 32, 16, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2655, 1, 0, 0, 0, 2643, 2645, 5, 166, 0, 0, 2644, 2646, 5, 329, 0, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2652, 3, 624, 312, 0, 2648, 2649, 5, 399, 0, 0, 2649, 2650, 3, 254, 127, 0, 2650, 2651, 5, 400, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2638, 1, 0, 0, 0, 2654, 2643, 1, 0, 0, 0, 2655, 383, 1, 0, 0, 0, 2656, 2658, 5, 188, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 5, 93, 0, 0, 2660, 2662, 5, 426, 0, 0, 2661, 2663, 3, 222, 111, 0, 2662, 2661, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 246, 123, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2670, 1, 0, 0, 0, 2667, 2668, 5, 329, 0, 0, 2668, 2670, 3, 624, 312, 0, 2669, 2657, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2670, 385, 1, 0, 0, 0, 2671, 2680, 5, 185, 0, 0, 2672, 2673, 5, 431, 0, 0, 2673, 2675, 5, 397, 0, 0, 2674, 2672, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2681, 5, 431, 0, 0, 2677, 2678, 5, 431, 0, 0, 2678, 2679, 5, 223, 0, 0, 2679, 2681, 5, 431, 0, 0, 2680, 2674, 1, 0, 0, 0, 2680, 2677, 1, 0, 0, 0, 2681, 387, 1, 0, 0, 0, 2682, 2683, 3, 256, 128, 0, 2683, 2684, 5, 405, 0, 0, 2684, 2685, 3, 390, 195, 0, 2685, 389, 1, 0, 0, 0, 2686, 2689, 5, 83, 0, 0, 2687, 2689, 3, 590, 295, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2687, 1, 0, 0, 0, 2689, 391, 1, 0, 0, 0, 2690, 2691, 5, 304, 0, 0, 2691, 2696, 3, 388, 194, 0, 2692, 2693, 5, 397, 0, 0, 2693, 2695, 3, 388, 194, 0, 2694, 2692, 1, 0, 0, 0, 2695, 2698, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 393, 1, 0, 0, 0, 2698, 2696, 1, 0, 0, 0, 2699, 2700, 5, 318, 0, 0, 2700, 2709, 5, 344, 0, 0, 2701, 2706, 3, 396, 198, 0, 2702, 2703, 5, 397, 0, 0, 2703, 2705, 3, 396, 198, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2708, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2701, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2723, 1, 0, 0, 0, 2711, 2713, 5, 48, 0, 0, 2712, 2714, 5, 389, 0, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2723, 1, 0, 0, 0, 2715, 2717, 5, 289, 0, 0, 2716, 2718, 5, 389, 0, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2723, 1, 0, 0, 0, 2719, 2720, 5, 304, 0, 0, 2720, 2721, 5, 22, 0, 0, 2721, 2723, 7, 23, 0, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2711, 1, 0, 0, 0, 2722, 2715, 1, 0, 0, 0, 2722, 2719, 1, 0, 0, 0, 2723, 395, 1, 0, 0, 0, 2724, 2725, 5, 168, 0, 0, 2725, 2726, 5, 182, 0, 0, 2726, 2730, 5, 312, 0, 0, 2727, 2728, 5, 261, 0, 0, 2728, 2730, 7, 24, 0, 0, 2729, 2724, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2730, 397, 1, 0, 0, 0, 2731, 2734, 3, 402, 201, 0, 2732, 2734, 3, 404, 202, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2739, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2740, 3, 400, 200, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 399, 1, 0, 0, 0, 2741, 2742, 5, 383, 0, 0, 2742, 2743, 5, 216, 0, 0, 2743, 2746, 5, 201, 0, 0, 2744, 2745, 5, 11, 0, 0, 2745, 2747, 3, 580, 290, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 5, 335, 0, 0, 2749, 2751, 5, 161, 0, 0, 2750, 2752, 3, 264, 132, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 5, 374, 0, 0, 2754, 2755, 3, 538, 269, 0, 2755, 401, 1, 0, 0, 0, 2756, 2757, 5, 383, 0, 0, 2757, 2758, 5, 201, 0, 0, 2758, 2759, 5, 11, 0, 0, 2759, 2760, 3, 580, 290, 0, 2760, 2764, 5, 335, 0, 0, 2761, 2762, 5, 365, 0, 0, 2762, 2765, 3, 392, 196, 0, 2763, 2765, 5, 86, 0, 0, 2764, 2761, 1, 0, 0, 0, 2764, 2763, 1, 0, 0, 0, 2765, 403, 1, 0, 0, 0, 2766, 2767, 5, 383, 0, 0, 2767, 2768, 5, 201, 0, 0, 2768, 2772, 5, 335, 0, 0, 2769, 2770, 5, 365, 0, 0, 2770, 2773, 3, 392, 196, 0, 2771, 2773, 5, 86, 0, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2771, 1, 0, 0, 0, 2773, 405, 1, 0, 0, 0, 2774, 2775, 5, 246, 0, 0, 2775, 2776, 5, 426, 0, 0, 2776, 407, 1, 0, 0, 0, 2777, 2778, 5, 352, 0, 0, 2778, 2779, 5, 426, 0, 0, 2779, 409, 1, 0, 0, 0, 2780, 2781, 5, 320, 0, 0, 2781, 2782, 5, 426, 0, 0, 2782, 411, 1, 0, 0, 0, 2783, 2814, 5, 9, 0, 0, 2784, 2785, 5, 329, 0, 0, 2785, 2786, 3, 478, 239, 0, 2786, 2787, 3, 414, 207, 0, 2787, 2815, 1, 0, 0, 0, 2788, 2789, 5, 378, 0, 0, 2789, 2791, 3, 482, 241, 0, 2790, 2792, 5, 17, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 418, 209, 0, 2794, 2815, 1, 0, 0, 0, 2795, 2796, 5, 202, 0, 0, 2796, 2797, 5, 378, 0, 0, 2797, 2801, 3, 482, 241, 0, 2798, 2802, 3, 36, 18, 0, 2799, 2802, 3, 38, 19, 0, 2800, 2802, 5, 265, 0, 0, 2801, 2798, 1, 0, 0, 0, 2801, 2799, 1, 0, 0, 0, 2801, 2800, 1, 0, 0, 0, 2802, 2815, 1, 0, 0, 0, 2803, 2804, 3, 70, 35, 0, 2804, 2805, 3, 420, 210, 0, 2805, 2815, 1, 0, 0, 0, 2806, 2807, 5, 69, 0, 0, 2807, 2815, 3, 422, 211, 0, 2808, 2809, 5, 155, 0, 0, 2809, 2810, 3, 638, 319, 0, 2810, 2811, 5, 224, 0, 0, 2811, 2812, 3, 624, 312, 0, 2812, 2813, 5, 265, 0, 0, 2813, 2815, 1, 0, 0, 0, 2814, 2784, 1, 0, 0, 0, 2814, 2788, 1, 0, 0, 0, 2814, 2795, 1, 0, 0, 0, 2814, 2803, 1, 0, 0, 0, 2814, 2806, 1, 0, 0, 0, 2814, 2808, 1, 0, 0, 0, 2815, 413, 1, 0, 0, 0, 2816, 2817, 5, 274, 0, 0, 2817, 2818, 5, 341, 0, 0, 2818, 2906, 3, 480, 240, 0, 2819, 2820, 5, 102, 0, 0, 2820, 2906, 5, 239, 0, 0, 2821, 2906, 3, 426, 213, 0, 2822, 2824, 5, 4, 0, 0, 2823, 2825, 3, 32, 16, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2830, 1, 0, 0, 0, 2826, 2828, 3, 626, 313, 0, 2827, 2829, 3, 424, 212, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2826, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2906, 1, 0, 0, 0, 2834, 2838, 5, 342, 0, 0, 2835, 2837, 3, 626, 313, 0, 2836, 2835, 1, 0, 0, 0, 2837, 2840, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2906, 1, 0, 0, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2845, 5, 15, 0, 0, 2842, 2844, 3, 626, 313, 0, 2843, 2842, 1, 0, 0, 0, 2844, 2847, 1, 0, 0, 0, 2845, 2843, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2906, 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2848, 2852, 5, 353, 0, 0, 2849, 2851, 3, 626, 313, 0, 2850, 2849, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2906, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2856, 5, 304, 0, 0, 2856, 2857, 5, 332, 0, 0, 2857, 2906, 3, 226, 113, 0, 2858, 2859, 5, 363, 0, 0, 2859, 2861, 5, 332, 0, 0, 2860, 2862, 3, 30, 15, 0, 2861, 2860, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2906, 3, 226, 113, 0, 2864, 2906, 3, 210, 105, 0, 2865, 2868, 5, 216, 0, 0, 2866, 2869, 5, 310, 0, 0, 2867, 2869, 3, 40, 20, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 2906, 1, 0, 0, 0, 2870, 2871, 5, 113, 0, 0, 2871, 2872, 3, 626, 313, 0, 2872, 2873, 5, 387, 0, 0, 2873, 2874, 5, 329, 0, 0, 2874, 2875, 3, 478, 239, 0, 2875, 2906, 1, 0, 0, 0, 2876, 2877, 5, 237, 0, 0, 2877, 2878, 5, 45, 0, 0, 2878, 2879, 5, 399, 0, 0, 2879, 2880, 3, 310, 155, 0, 2880, 2881, 5, 400, 0, 0, 2881, 2906, 1, 0, 0, 0, 2882, 2883, 5, 101, 0, 0, 2883, 2884, 5, 55, 0, 0, 2884, 2906, 3, 638, 319, 0, 2885, 2888, 5, 4, 0, 0, 2886, 2889, 3, 288, 144, 0, 2887, 2889, 3, 278, 139, 0, 2888, 2886, 1, 0, 0, 0, 2888, 2887, 1, 0, 0, 0, 2889, 2906, 1, 0, 0, 0, 2890, 2892, 3, 626, 313, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2906, 3, 416, 208, 0, 2894, 2895, 5, 304, 0, 0, 2895, 2896, 5, 236, 0, 0, 2896, 2906, 3, 126, 63, 0, 2897, 2898, 5, 304, 0, 0, 2898, 2899, 5, 237, 0, 0, 2899, 2900, 5, 316, 0, 0, 2900, 2901, 5, 399, 0, 0, 2901, 2902, 3, 204, 102, 0, 2902, 2903, 5, 400, 0, 0, 2903, 2906, 1, 0, 0, 0, 2904, 2906, 3, 430, 215, 0, 2905, 2816, 1, 0, 0, 0, 2905, 2819, 1, 0, 0, 0, 2905, 2821, 1, 0, 0, 0, 2905, 2822, 1, 0, 0, 0, 2905, 2834, 1, 0, 0, 0, 2905, 2841, 1, 0, 0, 0, 2905, 2848, 1, 0, 0, 0, 2905, 2855, 1, 0, 0, 0, 2905, 2858, 1, 0, 0, 0, 2905, 2864, 1, 0, 0, 0, 2905, 2865, 1, 0, 0, 0, 2905, 2870, 1, 0, 0, 0, 2905, 2876, 1, 0, 0, 0, 2905, 2882, 1, 0, 0, 0, 2905, 2885, 1, 0, 0, 0, 2905, 2891, 1, 0, 0, 0, 2905, 2894, 1, 0, 0, 0, 2905, 2897, 1, 0, 0, 0, 2905, 2904, 1, 0, 0, 0, 2906, 415, 1, 0, 0, 0, 2907, 2908, 5, 304, 0, 0, 2908, 2909, 5, 129, 0, 0, 2909, 3040, 3, 432, 216, 0, 2910, 2911, 5, 304, 0, 0, 2911, 2912, 5, 189, 0, 0, 2912, 3040, 5, 426, 0, 0, 2913, 3040, 5, 53, 0, 0, 2914, 2924, 5, 304, 0, 0, 2915, 2916, 5, 301, 0, 0, 2916, 2920, 5, 426, 0, 0, 2917, 2918, 5, 387, 0, 0, 2918, 2919, 5, 302, 0, 0, 2919, 2921, 3, 226, 113, 0, 2920, 2917, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2925, 1, 0, 0, 0, 2922, 2923, 5, 302, 0, 0, 2923, 2925, 3, 226, 113, 0, 2924, 2915, 1, 0, 0, 0, 2924, 2922, 1, 0, 0, 0, 2925, 3040, 1, 0, 0, 0, 2926, 2927, 5, 363, 0, 0, 2927, 2928, 5, 302, 0, 0, 2928, 3040, 3, 226, 113, 0, 2929, 2930, 5, 274, 0, 0, 2930, 2931, 5, 341, 0, 0, 2931, 3040, 3, 626, 313, 0, 2932, 2933, 5, 166, 0, 0, 2933, 2934, 5, 431, 0, 0, 2934, 3040, 5, 31, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 310, 0, 0, 2937, 2938, 5, 189, 0, 0, 2938, 2939, 5, 399, 0, 0, 2939, 2944, 3, 428, 214, 0, 2940, 2941, 5, 397, 0, 0, 2941, 2943, 3, 428, 214, 0, 2942, 2940, 1, 0, 0, 0, 2943, 2946, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2947, 1, 0, 0, 0, 2946, 2944, 1, 0, 0, 0, 2947, 2948, 5, 400, 0, 0, 2948, 3040, 1, 0, 0, 0, 2949, 2950, 5, 216, 0, 0, 2950, 3040, 7, 25, 0, 0, 2951, 3040, 3, 208, 104, 0, 2952, 2953, 5, 49, 0, 0, 2953, 2956, 5, 426, 0, 0, 2954, 2955, 5, 11, 0, 0, 2955, 2957, 5, 380, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2962, 1, 0, 0, 0, 2958, 2959, 5, 42, 0, 0, 2959, 2960, 5, 166, 0, 0, 2960, 2961, 5, 431, 0, 0, 2961, 2963, 5, 31, 0, 0, 2962, 2958, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2966, 3, 542, 271, 0, 2965, 2964, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2968, 1, 0, 0, 0, 2967, 2969, 3, 406, 203, 0, 2968, 2967, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2974, 1, 0, 0, 0, 2970, 2971, 5, 387, 0, 0, 2971, 2972, 5, 235, 0, 0, 2972, 2973, 5, 332, 0, 0, 2973, 2975, 3, 226, 113, 0, 2974, 2970, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 3040, 1, 0, 0, 0, 2976, 2977, 5, 365, 0, 0, 2977, 2978, 5, 319, 0, 0, 2978, 2980, 5, 134, 0, 0, 2979, 2981, 5, 45, 0, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 3, 256, 128, 0, 2983, 2984, 5, 304, 0, 0, 2984, 2987, 3, 226, 113, 0, 2985, 2986, 5, 47, 0, 0, 2986, 2988, 5, 426, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 3040, 1, 0, 0, 0, 2989, 2990, 5, 365, 0, 0, 2990, 2991, 5, 319, 0, 0, 2991, 2992, 5, 304, 0, 0, 2992, 3040, 3, 226, 113, 0, 2993, 2995, 5, 38, 0, 0, 2994, 2996, 5, 45, 0, 0, 2995, 2994, 1, 0, 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 3, 256, 128, 0, 2998, 2999, 3, 258, 129, 0, 2999, 3001, 3, 342, 171, 0, 3000, 3002, 3, 324, 162, 0, 3001, 3000, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3005, 1, 0, 0, 0, 3003, 3004, 5, 47, 0, 0, 3004, 3006, 5, 426, 0, 0, 3005, 3003, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3010, 1, 0, 0, 0, 3007, 3011, 5, 130, 0, 0, 3008, 3009, 5, 6, 0, 0, 3009, 3011, 3, 638, 319, 0, 3010, 3007, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3013, 1, 0, 0, 0, 3012, 3014, 3, 34, 17, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3040, 1, 0, 0, 0, 3015, 3018, 5, 4, 0, 0, 3016, 3018, 5, 278, 0, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 5, 46, 0, 0, 3020, 3021, 5, 399, 0, 0, 3021, 3022, 3, 248, 124, 0, 3022, 3024, 5, 400, 0, 0, 3023, 3025, 3, 34, 17, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3040, 1, 0, 0, 0, 3026, 3027, 5, 365, 0, 0, 3027, 3029, 5, 46, 0, 0, 3028, 3030, 3, 34, 17, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3040, 1, 0, 0, 0, 3031, 3037, 3, 268, 134, 0, 3032, 3034, 5, 218, 0, 0, 3033, 3035, 5, 34, 0, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3038, 1, 0, 0, 0, 3036, 3038, 5, 222, 0, 0, 3037, 3032, 1, 0, 0, 0, 3037, 3036, 1, 0, 0, 0, 3038, 3040, 1, 0, 0, 0, 3039, 2907, 1, 0, 0, 0, 3039, 2910, 1, 0, 0, 0, 3039, 2913, 1, 0, 0, 0, 3039, 2914, 1, 0, 0, 0, 3039, 2926, 1, 0, 0, 0, 3039, 2929, 1, 0, 0, 0, 3039, 2932, 1, 0, 0, 0, 3039, 2935, 1, 0, 0, 0, 3039, 2949, 1, 0, 0, 0, 3039, 2951, 1, 0, 0, 0, 3039, 2952, 1, 0, 0, 0, 3039, 2976, 1, 0, 0, 0, 3039, 2989, 1, 0, 0, 0, 3039, 2993, 1, 0, 0, 0, 3039, 3017, 1, 0, 0, 0, 3039, 3026, 1, 0, 0, 0, 3039, 3031, 1, 0, 0, 0, 3040, 417, 1, 0, 0, 0, 3041, 3042, 5, 304, 0, 0, 3042, 3043, 5, 332, 0, 0, 3043, 3068, 3, 226, 113, 0, 3044, 3045, 5, 363, 0, 0, 3045, 3047, 5, 332, 0, 0, 3046, 3048, 3, 30, 15, 0, 3047, 3046, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3068, 3, 226, 113, 0, 3050, 3051, 5, 274, 0, 0, 3051, 3052, 5, 341, 0, 0, 3052, 3068, 3, 480, 240, 0, 3053, 3055, 5, 4, 0, 0, 3054, 3056, 3, 32, 16, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3061, 1, 0, 0, 0, 3057, 3059, 3, 626, 313, 0, 3058, 3060, 3, 424, 212, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3062, 1, 0, 0, 0, 3061, 3057, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3068, 1, 0, 0, 0, 3065, 3068, 3, 426, 213, 0, 3066, 3068, 3, 380, 190, 0, 3067, 3041, 1, 0, 0, 0, 3067, 3044, 1, 0, 0, 0, 3067, 3050, 1, 0, 0, 0, 3067, 3053, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 419, 1, 0, 0, 0, 3069, 3070, 3, 472, 236, 0, 3070, 3071, 5, 304, 0, 0, 3071, 3072, 5, 76, 0, 0, 3072, 3073, 3, 230, 115, 0, 3073, 3085, 1, 0, 0, 0, 3074, 3075, 3, 472, 236, 0, 3075, 3076, 5, 304, 0, 0, 3076, 3077, 5, 236, 0, 0, 3077, 3078, 3, 128, 64, 0, 3078, 3085, 1, 0, 0, 0, 3079, 3080, 3, 472, 236, 0, 3080, 3081, 5, 304, 0, 0, 3081, 3082, 7, 26, 0, 0, 3082, 3083, 5, 426, 0, 0, 3083, 3085, 1, 0, 0, 0, 3084, 3069, 1, 0, 0, 0, 3084, 3074, 1, 0, 0, 0, 3084, 3079, 1, 0, 0, 0, 3085, 421, 1, 0, 0, 0, 3086, 3087, 3, 472, 236, 0, 3087, 3088, 5, 304, 0, 0, 3088, 3089, 5, 77, 0, 0, 3089, 3090, 3, 230, 115, 0, 3090, 3102, 1, 0, 0, 0, 3091, 3092, 3, 472, 236, 0, 3092, 3093, 5, 304, 0, 0, 3093, 3094, 5, 236, 0, 0, 3094, 3095, 3, 128, 64, 0, 3095, 3102, 1, 0, 0, 0, 3096, 3097, 3, 472, 236, 0, 3097, 3098, 5, 304, 0, 0, 3098, 3099, 5, 367, 0, 0, 3099, 3100, 5, 426, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3086, 1, 0, 0, 0, 3101, 3091, 1, 0, 0, 0, 3101, 3096, 1, 0, 0, 0, 3102, 423, 1, 0, 0, 0, 3103, 3104, 5, 189, 0, 0, 3104, 3105, 5, 426, 0, 0, 3105, 425, 1, 0, 0, 0, 3106, 3108, 5, 101, 0, 0, 3107, 3109, 3, 30, 15, 0, 3108, 3107, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3111, 5, 237, 0, 0, 3111, 3117, 3, 630, 315, 0, 3112, 3113, 5, 397, 0, 0, 3113, 3114, 5, 237, 0, 0, 3114, 3116, 3, 630, 315, 0, 3115, 3112, 1, 0, 0, 0, 3116, 3119, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3122, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3121, 5, 152, 0, 0, 3121, 3123, 5, 254, 0, 0, 3122, 3120, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3125, 1, 0, 0, 0, 3124, 3126, 5, 255, 0, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3128, 1, 0, 0, 0, 3127, 3129, 3, 14, 7, 0, 3128, 3127, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 427, 1, 0, 0, 0, 3130, 3133, 3, 572, 286, 0, 3131, 3133, 3, 294, 147, 0, 3132, 3130, 1, 0, 0, 0, 3132, 3131, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 5, 405, 0, 0, 3135, 3136, 5, 426, 0, 0, 3136, 429, 1, 0, 0, 0, 3137, 3147, 5, 115, 0, 0, 3138, 3139, 5, 289, 0, 0, 3139, 3140, 5, 399, 0, 0, 3140, 3148, 7, 27, 0, 0, 3141, 3142, 5, 118, 0, 0, 3142, 3143, 5, 399, 0, 0, 3143, 3148, 5, 426, 0, 0, 3144, 3145, 5, 306, 0, 0, 3145, 3146, 5, 399, 0, 0, 3146, 3148, 5, 431, 0, 0, 3147, 3138, 1, 0, 0, 0, 3147, 3141, 1, 0, 0, 0, 3147, 3144, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 400, 0, 0, 3150, 431, 1, 0, 0, 0, 3151, 3152, 5, 160, 0, 0, 3152, 3153, 5, 426, 0, 0, 3153, 3154, 5, 233, 0, 0, 3154, 3155, 5, 426, 0, 0, 3155, 3156, 5, 301, 0, 0, 3156, 3161, 5, 426, 0, 0, 3157, 3158, 5, 159, 0, 0, 3158, 3159, 5, 426, 0, 0, 3159, 3160, 5, 232, 0, 0, 3160, 3162, 5, 426, 0, 0, 3161, 3157, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3165, 1, 0, 0, 0, 3163, 3165, 3, 638, 319, 0, 3164, 3151, 1, 0, 0, 0, 3164, 3163, 1, 0, 0, 0, 3165, 433, 1, 0, 0, 0, 3166, 3167, 5, 184, 0, 0, 3167, 3176, 5, 128, 0, 0, 3168, 3169, 5, 184, 0, 0, 3169, 3170, 5, 128, 0, 0, 3170, 3171, 3, 638, 319, 0, 3171, 3172, 5, 426, 0, 0, 3172, 3176, 1, 0, 0, 0, 3173, 3174, 5, 184, 0, 0, 3174, 3176, 3, 478, 239, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3168, 1, 0, 0, 0, 3175, 3173, 1, 0, 0, 0, 3176, 435, 1, 0, 0, 0, 3177, 3179, 5, 58, 0, 0, 3178, 3180, 5, 333, 0, 0, 3179, 3178, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3182, 1, 0, 0, 0, 3181, 3183, 5, 345, 0, 0, 3182, 3181, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 3185, 1, 0, 0, 0, 3184, 3186, 5, 123, 0, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3189, 5, 329, 0, 0, 3188, 3190, 3, 32, 16, 0, 3189, 3188, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3248, 3, 480, 240, 0, 3192, 3194, 3, 434, 217, 0, 3193, 3195, 3, 200, 100, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3197, 1, 0, 0, 0, 3196, 3198, 3, 222, 111, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3200, 1, 0, 0, 0, 3199, 3201, 3, 246, 123, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, 0, 0, 0, 3202, 3204, 3, 424, 212, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 224, 112, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3209, 1, 0, 0, 0, 3208, 3210, 3, 198, 99, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3249, 1, 0, 0, 0, 3211, 3212, 5, 399, 0, 0, 3212, 3213, 3, 250, 125, 0, 3213, 3214, 5, 400, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3211, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3219, 3, 196, 98, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3221, 1, 0, 0, 0, 3220, 3222, 3, 200, 100, 0, 3221, 3220, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 208, 104, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3228, 3, 210, 105, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3231, 3, 222, 111, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3234, 3, 246, 123, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 1, 0, 0, 0, 3235, 3237, 3, 424, 212, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 3, 224, 112, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3243, 3, 198, 99, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3245, 5, 17, 0, 0, 3245, 3247, 3, 380, 190, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3192, 1, 0, 0, 0, 3248, 3215, 1, 0, 0, 0, 3249, 3313, 1, 0, 0, 0, 3250, 3251, 5, 58, 0, 0, 3251, 3252, 5, 195, 0, 0, 3252, 3254, 5, 329, 0, 0, 3253, 3255, 3, 32, 16, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3310, 3, 480, 240, 0, 3257, 3259, 3, 434, 217, 0, 3258, 3260, 3, 222, 111, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 3, 246, 123, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 3, 424, 212, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 224, 112, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 198, 99, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3311, 1, 0, 0, 0, 3273, 3274, 5, 399, 0, 0, 3274, 3275, 3, 250, 125, 0, 3275, 3276, 5, 400, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3273, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3280, 1, 0, 0, 0, 3279, 3281, 3, 196, 98, 0, 3280, 3279, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3283, 1, 0, 0, 0, 3282, 3284, 3, 200, 100, 0, 3283, 3282, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3287, 3, 208, 104, 0, 3286, 3285, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3289, 1, 0, 0, 0, 3288, 3290, 3, 210, 105, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 222, 111, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3295, 1, 0, 0, 0, 3294, 3296, 3, 246, 123, 0, 3295, 3294, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 424, 212, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3302, 3, 224, 112, 0, 3301, 3300, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3304, 1, 0, 0, 0, 3303, 3305, 3, 198, 99, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3308, 1, 0, 0, 0, 3306, 3307, 5, 17, 0, 0, 3307, 3309, 3, 380, 190, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3257, 1, 0, 0, 0, 3310, 3277, 1, 0, 0, 0, 3311, 3313, 1, 0, 0, 0, 3312, 3177, 1, 0, 0, 0, 3312, 3250, 1, 0, 0, 0, 3313, 437, 1, 0, 0, 0, 3314, 3315, 5, 58, 0, 0, 3315, 3317, 5, 69, 0, 0, 3316, 3318, 3, 32, 16, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3322, 3, 638, 319, 0, 3320, 3321, 5, 352, 0, 0, 3321, 3323, 5, 426, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3325, 5, 367, 0, 0, 3325, 3327, 5, 426, 0, 0, 3326, 3324, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3330, 1, 0, 0, 0, 3328, 3329, 5, 47, 0, 0, 3329, 3331, 5, 426, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3335, 1, 0, 0, 0, 3332, 3333, 5, 387, 0, 0, 3333, 3334, 5, 77, 0, 0, 3334, 3336, 3, 230, 115, 0, 3335, 3332, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 439, 1, 0, 0, 0, 3337, 3338, 5, 101, 0, 0, 3338, 3340, 5, 69, 0, 0, 3339, 3341, 3, 30, 15, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 3, 638, 319, 0, 3343, 441, 1, 0, 0, 0, 3344, 3345, 3, 638, 319, 0, 3345, 3346, 5, 395, 0, 0, 3346, 3348, 1, 0, 0, 0, 3347, 3344, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3352, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3353, 5, 415, 0, 0, 3353, 443, 1, 0, 0, 0, 3354, 3359, 3, 580, 290, 0, 3355, 3356, 5, 397, 0, 0, 3356, 3358, 3, 580, 290, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 445, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3367, 3, 638, 319, 0, 3363, 3364, 5, 397, 0, 0, 3364, 3366, 3, 638, 319, 0, 3365, 3363, 1, 0, 0, 0, 3366, 3369, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 447, 1, 0, 0, 0, 3369, 3367, 1, 0, 0, 0, 3370, 3371, 5, 139, 0, 0, 3371, 3372, 3, 450, 225, 0, 3372, 449, 1, 0, 0, 0, 3373, 3374, 5, 359, 0, 0, 3374, 3377, 3, 458, 229, 0, 3375, 3376, 5, 397, 0, 0, 3376, 3378, 3, 458, 229, 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, 3383, 1, 0, 0, 0, 3381, 3383, 3, 454, 227, 0, 3382, 3373, 1, 0, 0, 0, 3382, 3381, 1, 0, 0, 0, 3383, 451, 1, 0, 0, 0, 3384, 3388, 3, 468, 234, 0, 3385, 3387, 3, 462, 231, 0, 3386, 3385, 1, 0, 0, 0, 3387, 3390, 1, 0, 0, 0, 3388, 3386, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3417, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3395, 3, 498, 249, 0, 3392, 3394, 3, 462, 231, 0, 3393, 3392, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3417, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3402, 3, 486, 243, 0, 3399, 3401, 3, 462, 231, 0, 3400, 3399, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3417, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3409, 3, 492, 246, 0, 3406, 3408, 3, 462, 231, 0, 3407, 3406, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3407, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3417, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 3413, 5, 399, 0, 0, 3413, 3414, 3, 454, 227, 0, 3414, 3415, 5, 400, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3384, 1, 0, 0, 0, 3416, 3391, 1, 0, 0, 0, 3416, 3398, 1, 0, 0, 0, 3416, 3405, 1, 0, 0, 0, 3416, 3412, 1, 0, 0, 0, 3417, 453, 1, 0, 0, 0, 3418, 3429, 3, 452, 226, 0, 3419, 3420, 3, 460, 230, 0, 3420, 3425, 3, 456, 228, 0, 3421, 3422, 5, 224, 0, 0, 3422, 3426, 3, 580, 290, 0, 3423, 3424, 5, 370, 0, 0, 3424, 3426, 3, 264, 132, 0, 3425, 3421, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3428, 1, 0, 0, 0, 3427, 3419, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 455, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3437, 3, 468, 234, 0, 3433, 3437, 3, 498, 249, 0, 3434, 3437, 3, 486, 243, 0, 3435, 3437, 3, 492, 246, 0, 3436, 3432, 1, 0, 0, 0, 3436, 3433, 1, 0, 0, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3435, 1, 0, 0, 0, 3437, 3441, 1, 0, 0, 0, 3438, 3440, 3, 462, 231, 0, 3439, 3438, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 457, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3444, 3446, 5, 250, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3449, 3, 476, 238, 0, 3448, 3450, 3, 466, 233, 0, 3449, 3448, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3455, 1, 0, 0, 0, 3451, 3453, 5, 17, 0, 0, 3452, 3451, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 3, 638, 319, 0, 3455, 3452, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 5, 399, 0, 0, 3458, 3459, 3, 444, 222, 0, 3459, 3460, 5, 400, 0, 0, 3460, 459, 1, 0, 0, 0, 3461, 3476, 5, 397, 0, 0, 3462, 3473, 5, 157, 0, 0, 3463, 3473, 5, 60, 0, 0, 3464, 3466, 7, 28, 0, 0, 3465, 3467, 5, 231, 0, 0, 3466, 3465, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3473, 1, 0, 0, 0, 3468, 3470, 5, 180, 0, 0, 3469, 3471, 7, 29, 0, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3462, 1, 0, 0, 0, 3472, 3463, 1, 0, 0, 0, 3472, 3464, 1, 0, 0, 0, 3472, 3468, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 5, 171, 0, 0, 3475, 3461, 1, 0, 0, 0, 3475, 3472, 1, 0, 0, 0, 3476, 461, 1, 0, 0, 0, 3477, 3478, 5, 178, 0, 0, 3478, 3479, 5, 378, 0, 0, 3479, 3480, 5, 231, 0, 0, 3480, 3481, 3, 550, 275, 0, 3481, 3491, 3, 464, 232, 0, 3482, 3483, 5, 17, 0, 0, 3483, 3488, 3, 638, 319, 0, 3484, 3485, 5, 397, 0, 0, 3485, 3487, 3, 638, 319, 0, 3486, 3484, 1, 0, 0, 0, 3487, 3490, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3492, 1, 0, 0, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3482, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3535, 1, 0, 0, 0, 3493, 3495, 5, 397, 0, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3532, 5, 178, 0, 0, 3497, 3498, 5, 378, 0, 0, 3498, 3499, 3, 550, 275, 0, 3499, 3509, 3, 464, 232, 0, 3500, 3501, 5, 17, 0, 0, 3501, 3506, 3, 638, 319, 0, 3502, 3503, 5, 397, 0, 0, 3503, 3505, 3, 638, 319, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3508, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3510, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3509, 3500, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3533, 1, 0, 0, 0, 3511, 3512, 5, 329, 0, 0, 3512, 3513, 5, 399, 0, 0, 3513, 3514, 3, 496, 248, 0, 3514, 3516, 5, 400, 0, 0, 3515, 3517, 5, 17, 0, 0, 3516, 3515, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3530, 3, 464, 232, 0, 3519, 3520, 5, 399, 0, 0, 3520, 3525, 3, 638, 319, 0, 3521, 3522, 5, 397, 0, 0, 3522, 3524, 3, 638, 319, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3528, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 3529, 5, 400, 0, 0, 3529, 3531, 1, 0, 0, 0, 3530, 3519, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3533, 1, 0, 0, 0, 3532, 3497, 1, 0, 0, 0, 3532, 3511, 1, 0, 0, 0, 3533, 3535, 1, 0, 0, 0, 3534, 3477, 1, 0, 0, 0, 3534, 3494, 1, 0, 0, 0, 3535, 463, 1, 0, 0, 0, 3536, 3537, 3, 638, 319, 0, 3537, 465, 1, 0, 0, 0, 3538, 3539, 5, 331, 0, 0, 3539, 3540, 5, 399, 0, 0, 3540, 3541, 5, 30, 0, 0, 3541, 3542, 5, 431, 0, 0, 3542, 3543, 5, 230, 0, 0, 3543, 3544, 5, 221, 0, 0, 3544, 3554, 5, 431, 0, 0, 3545, 3546, 5, 224, 0, 0, 3546, 3551, 3, 580, 290, 0, 3547, 3548, 5, 397, 0, 0, 3548, 3550, 3, 580, 290, 0, 3549, 3547, 1, 0, 0, 0, 3550, 3553, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3555, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 3545, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3566, 5, 400, 0, 0, 3557, 3558, 5, 331, 0, 0, 3558, 3562, 5, 399, 0, 0, 3559, 3560, 5, 431, 0, 0, 3560, 3563, 7, 30, 0, 0, 3561, 3563, 5, 430, 0, 0, 3562, 3559, 1, 0, 0, 0, 3562, 3561, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3566, 5, 400, 0, 0, 3565, 3538, 1, 0, 0, 0, 3565, 3557, 1, 0, 0, 0, 3566, 467, 1, 0, 0, 0, 3567, 3569, 3, 476, 238, 0, 3568, 3570, 3, 226, 113, 0, 3569, 3568, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3572, 1, 0, 0, 0, 3571, 3573, 3, 466, 233, 0, 3572, 3571, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3576, 3, 470, 235, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3581, 1, 0, 0, 0, 3577, 3579, 5, 17, 0, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 3, 638, 319, 0, 3581, 3578, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 469, 1, 0, 0, 0, 3583, 3593, 5, 134, 0, 0, 3584, 3585, 5, 327, 0, 0, 3585, 3586, 5, 17, 0, 0, 3586, 3587, 5, 221, 0, 0, 3587, 3594, 3, 580, 290, 0, 3588, 3589, 5, 134, 0, 0, 3589, 3590, 5, 328, 0, 0, 3590, 3591, 5, 17, 0, 0, 3591, 3592, 5, 221, 0, 0, 3592, 3594, 5, 431, 0, 0, 3593, 3584, 1, 0, 0, 0, 3593, 3588, 1, 0, 0, 0, 3594, 471, 1, 0, 0, 0, 3595, 3596, 3, 638, 319, 0, 3596, 473, 1, 0, 0, 0, 3597, 3598, 3, 638, 319, 0, 3598, 475, 1, 0, 0, 0, 3599, 3602, 3, 478, 239, 0, 3600, 3602, 3, 482, 241, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 477, 1, 0, 0, 0, 3603, 3604, 3, 638, 319, 0, 3604, 3605, 5, 395, 0, 0, 3605, 3608, 3, 638, 319, 0, 3606, 3607, 5, 395, 0, 0, 3607, 3609, 3, 638, 319, 0, 3608, 3606, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 3612, 1, 0, 0, 0, 3610, 3612, 3, 638, 319, 0, 3611, 3603, 1, 0, 0, 0, 3611, 3610, 1, 0, 0, 0, 3612, 479, 1, 0, 0, 0, 3613, 3614, 3, 638, 319, 0, 3614, 3615, 5, 395, 0, 0, 3615, 3618, 3, 638, 319, 0, 3616, 3617, 5, 395, 0, 0, 3617, 3619, 3, 638, 319, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3622, 3, 638, 319, 0, 3621, 3613, 1, 0, 0, 0, 3621, 3620, 1, 0, 0, 0, 3622, 481, 1, 0, 0, 0, 3623, 3624, 3, 638, 319, 0, 3624, 3625, 5, 395, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3623, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3629, 3, 638, 319, 0, 3629, 483, 1, 0, 0, 0, 3630, 3631, 3, 638, 319, 0, 3631, 3632, 5, 395, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3630, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3636, 3, 638, 319, 0, 3636, 485, 1, 0, 0, 0, 3637, 3638, 5, 399, 0, 0, 3638, 3639, 3, 360, 180, 0, 3639, 3641, 5, 400, 0, 0, 3640, 3642, 5, 17, 0, 0, 3641, 3640, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3644, 3, 638, 319, 0, 3644, 487, 1, 0, 0, 0, 3645, 3646, 5, 237, 0, 0, 3646, 3647, 5, 32, 0, 0, 3647, 3649, 3, 536, 268, 0, 3648, 3650, 3, 542, 271, 0, 3649, 3648, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3659, 1, 0, 0, 0, 3651, 3659, 3, 542, 271, 0, 3652, 3654, 3, 546, 273, 0, 3653, 3655, 3, 548, 274, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3659, 1, 0, 0, 0, 3656, 3659, 3, 548, 274, 0, 3657, 3659, 3, 544, 272, 0, 3658, 3645, 1, 0, 0, 0, 3658, 3651, 1, 0, 0, 0, 3658, 3652, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3657, 1, 0, 0, 0, 3659, 489, 1, 0, 0, 0, 3660, 3664, 3, 486, 243, 0, 3661, 3664, 3, 468, 234, 0, 3662, 3664, 3, 492, 246, 0, 3663, 3660, 1, 0, 0, 0, 3663, 3661, 1, 0, 0, 0, 3663, 3662, 1, 0, 0, 0, 3664, 491, 1, 0, 0, 0, 3665, 3666, 3, 638, 319, 0, 3666, 3667, 5, 399, 0, 0, 3667, 3668, 5, 224, 0, 0, 3668, 3670, 3, 490, 245, 0, 3669, 3671, 3, 488, 244, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3687, 1, 0, 0, 0, 3672, 3673, 5, 432, 0, 0, 3673, 3674, 5, 399, 0, 0, 3674, 3675, 3, 580, 290, 0, 3675, 3684, 5, 400, 0, 0, 3676, 3677, 5, 397, 0, 0, 3677, 3678, 5, 432, 0, 0, 3678, 3679, 5, 399, 0, 0, 3679, 3680, 3, 580, 290, 0, 3680, 3681, 5, 400, 0, 0, 3681, 3683, 1, 0, 0, 0, 3682, 3676, 1, 0, 0, 0, 3683, 3686, 1, 0, 0, 0, 3684, 3682, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3688, 1, 0, 0, 0, 3686, 3684, 1, 0, 0, 0, 3687, 3672, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3691, 5, 400, 0, 0, 3690, 3692, 3, 638, 319, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3694, 5, 384, 0, 0, 3694, 3695, 3, 580, 290, 0, 3695, 495, 1, 0, 0, 0, 3696, 3715, 5, 374, 0, 0, 3697, 3702, 3, 538, 269, 0, 3698, 3699, 5, 397, 0, 0, 3699, 3701, 3, 538, 269, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3716, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 5, 399, 0, 0, 3706, 3707, 3, 534, 267, 0, 3707, 3712, 5, 400, 0, 0, 3708, 3709, 5, 397, 0, 0, 3709, 3711, 3, 538, 269, 0, 3710, 3708, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3716, 1, 0, 0, 0, 3714, 3712, 1, 0, 0, 0, 3715, 3697, 1, 0, 0, 0, 3715, 3705, 1, 0, 0, 0, 3716, 497, 1, 0, 0, 0, 3717, 3718, 5, 329, 0, 0, 3718, 3719, 5, 399, 0, 0, 3719, 3720, 3, 496, 248, 0, 3720, 3722, 5, 400, 0, 0, 3721, 3723, 5, 17, 0, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3734, 3, 464, 232, 0, 3725, 3726, 5, 399, 0, 0, 3726, 3731, 3, 638, 319, 0, 3727, 3728, 5, 397, 0, 0, 3728, 3730, 3, 638, 319, 0, 3729, 3727, 1, 0, 0, 0, 3730, 3733, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3725, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3737, 5, 400, 0, 0, 3737, 499, 1, 0, 0, 0, 3738, 3740, 5, 299, 0, 0, 3739, 3741, 5, 436, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3755, 1, 0, 0, 0, 3742, 3744, 7, 22, 0, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3750, 3, 504, 252, 0, 3746, 3747, 5, 397, 0, 0, 3747, 3749, 3, 504, 252, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3752, 1, 0, 0, 0, 3750, 3748, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3756, 1, 0, 0, 0, 3752, 3750, 1, 0, 0, 0, 3753, 3754, 5, 347, 0, 0, 3754, 3756, 3, 502, 251, 0, 3755, 3743, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3759, 3, 506, 253, 0, 3758, 3738, 1, 0, 0, 0, 3758, 3757, 1, 0, 0, 0, 3759, 501, 1, 0, 0, 0, 3760, 3761, 5, 399, 0, 0, 3761, 3762, 3, 510, 255, 0, 3762, 3763, 5, 400, 0, 0, 3763, 3764, 3, 212, 106, 0, 3764, 3765, 3, 216, 108, 0, 3765, 3766, 5, 370, 0, 0, 3766, 3779, 5, 426, 0, 0, 3767, 3777, 5, 17, 0, 0, 3768, 3771, 5, 399, 0, 0, 3769, 3772, 3, 446, 223, 0, 3770, 3772, 3, 248, 124, 0, 3771, 3769, 1, 0, 0, 0, 3771, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 5, 400, 0, 0, 3774, 3778, 1, 0, 0, 0, 3775, 3778, 3, 446, 223, 0, 3776, 3778, 3, 248, 124, 0, 3777, 3768, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3777, 3776, 1, 0, 0, 0, 3778, 3780, 1, 0, 0, 0, 3779, 3767, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 3, 212, 106, 0, 3782, 3783, 3, 214, 107, 0, 3783, 503, 1, 0, 0, 0, 3784, 3808, 3, 442, 221, 0, 3785, 3788, 3, 256, 128, 0, 3786, 3788, 3, 580, 290, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3786, 1, 0, 0, 0, 3788, 3805, 1, 0, 0, 0, 3789, 3791, 5, 17, 0, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3806, 3, 638, 319, 0, 3793, 3794, 5, 17, 0, 0, 3794, 3795, 5, 399, 0, 0, 3795, 3800, 3, 638, 319, 0, 3796, 3797, 5, 397, 0, 0, 3797, 3799, 3, 638, 319, 0, 3798, 3796, 1, 0, 0, 0, 3799, 3802, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3804, 5, 400, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3790, 1, 0, 0, 0, 3805, 3793, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3784, 1, 0, 0, 0, 3807, 3787, 1, 0, 0, 0, 3808, 505, 1, 0, 0, 0, 3809, 3810, 7, 31, 0, 0, 3810, 3811, 3, 510, 255, 0, 3811, 3812, 3, 212, 106, 0, 3812, 3813, 3, 216, 108, 0, 3813, 3814, 5, 370, 0, 0, 3814, 3827, 5, 426, 0, 0, 3815, 3825, 5, 17, 0, 0, 3816, 3819, 5, 399, 0, 0, 3817, 3820, 3, 446, 223, 0, 3818, 3820, 3, 248, 124, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3818, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 5, 400, 0, 0, 3822, 3826, 1, 0, 0, 0, 3823, 3826, 3, 446, 223, 0, 3824, 3826, 3, 248, 124, 0, 3825, 3816, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3824, 1, 0, 0, 0, 3826, 3828, 1, 0, 0, 0, 3827, 3815, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 3, 212, 106, 0, 3830, 3831, 3, 214, 107, 0, 3831, 507, 1, 0, 0, 0, 3832, 3835, 3, 442, 221, 0, 3833, 3835, 3, 580, 290, 0, 3834, 3832, 1, 0, 0, 0, 3834, 3833, 1, 0, 0, 0, 3835, 509, 1, 0, 0, 0, 3836, 3841, 3, 508, 254, 0, 3837, 3838, 5, 397, 0, 0, 3838, 3840, 3, 508, 254, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 511, 1, 0, 0, 0, 3843, 3841, 1, 0, 0, 0, 3844, 3845, 5, 386, 0, 0, 3845, 3846, 3, 638, 319, 0, 3846, 3847, 5, 17, 0, 0, 3847, 3855, 3, 514, 257, 0, 3848, 3849, 5, 397, 0, 0, 3849, 3850, 3, 638, 319, 0, 3850, 3851, 5, 17, 0, 0, 3851, 3852, 3, 514, 257, 0, 3852, 3854, 1, 0, 0, 0, 3853, 3848, 1, 0, 0, 0, 3854, 3857, 1, 0, 0, 0, 3855, 3853, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 513, 1, 0, 0, 0, 3857, 3855, 1, 0, 0, 0, 3858, 3871, 3, 638, 319, 0, 3859, 3861, 5, 399, 0, 0, 3860, 3862, 3, 638, 319, 0, 3861, 3860, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3864, 1, 0, 0, 0, 3863, 3865, 3, 488, 244, 0, 3864, 3863, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3867, 1, 0, 0, 0, 3866, 3868, 3, 516, 258, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 5, 400, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3859, 1, 0, 0, 0, 3871, 515, 1, 0, 0, 0, 3872, 3886, 7, 32, 0, 0, 3873, 3874, 5, 354, 0, 0, 3874, 3880, 5, 247, 0, 0, 3875, 3876, 5, 62, 0, 0, 3876, 3880, 5, 291, 0, 0, 3877, 3878, 5, 431, 0, 0, 3878, 3880, 5, 247, 0, 0, 3879, 3873, 1, 0, 0, 0, 3879, 3875, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3880, 3887, 1, 0, 0, 0, 3881, 3882, 5, 25, 0, 0, 3882, 3883, 3, 518, 259, 0, 3883, 3884, 5, 11, 0, 0, 3884, 3885, 3, 518, 259, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3879, 1, 0, 0, 0, 3886, 3881, 1, 0, 0, 0, 3887, 517, 1, 0, 0, 0, 3888, 3889, 7, 33, 0, 0, 3889, 3893, 7, 34, 0, 0, 3890, 3891, 5, 62, 0, 0, 3891, 3893, 5, 291, 0, 0, 3892, 3888, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3893, 519, 1, 0, 0, 0, 3894, 3895, 5, 144, 0, 0, 3895, 3901, 5, 32, 0, 0, 3896, 3902, 3, 256, 128, 0, 3897, 3902, 3, 522, 261, 0, 3898, 3902, 3, 524, 262, 0, 3899, 3900, 5, 399, 0, 0, 3900, 3902, 5, 400, 0, 0, 3901, 3896, 1, 0, 0, 0, 3901, 3897, 1, 0, 0, 0, 3901, 3898, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 521, 1, 0, 0, 0, 3903, 3906, 5, 290, 0, 0, 3904, 3906, 5, 61, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3904, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3908, 5, 399, 0, 0, 3908, 3913, 3, 580, 290, 0, 3909, 3910, 5, 397, 0, 0, 3910, 3912, 3, 580, 290, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3915, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3916, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3917, 5, 400, 0, 0, 3917, 523, 1, 0, 0, 0, 3918, 3923, 3, 540, 270, 0, 3919, 3920, 5, 387, 0, 0, 3920, 3924, 5, 290, 0, 0, 3921, 3922, 5, 387, 0, 0, 3922, 3924, 5, 61, 0, 0, 3923, 3919, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3938, 1, 0, 0, 0, 3925, 3926, 5, 145, 0, 0, 3926, 3927, 5, 305, 0, 0, 3927, 3928, 5, 399, 0, 0, 3928, 3933, 3, 526, 263, 0, 3929, 3930, 5, 397, 0, 0, 3930, 3932, 3, 526, 263, 0, 3931, 3929, 1, 0, 0, 0, 3932, 3935, 1, 0, 0, 0, 3933, 3931, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3936, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3937, 5, 400, 0, 0, 3937, 3939, 1, 0, 0, 0, 3938, 3925, 1, 0, 0, 0, 3938, 3939, 1, 0, 0, 0, 3939, 525, 1, 0, 0, 0, 3940, 3942, 5, 399, 0, 0, 3941, 3943, 3, 580, 290, 0, 3942, 3941, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3948, 1, 0, 0, 0, 3944, 3945, 5, 397, 0, 0, 3945, 3947, 3, 580, 290, 0, 3946, 3944, 1, 0, 0, 0, 3947, 3950, 1, 0, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3951, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 5, 400, 0, 0, 3952, 3954, 3, 580, 290, 0, 3953, 3940, 1, 0, 0, 0, 3953, 3952, 1, 0, 0, 0, 3954, 527, 1, 0, 0, 0, 3955, 3956, 5, 146, 0, 0, 3956, 3957, 3, 580, 290, 0, 3957, 529, 1, 0, 0, 0, 3958, 3959, 5, 256, 0, 0, 3959, 3960, 3, 580, 290, 0, 3960, 531, 1, 0, 0, 0, 3961, 3964, 5, 83, 0, 0, 3962, 3964, 3, 580, 290, 0, 3963, 3961, 1, 0, 0, 0, 3963, 3962, 1, 0, 0, 0, 3964, 533, 1, 0, 0, 0, 3965, 3967, 3, 580, 290, 0, 3966, 3968, 5, 17, 0, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3971, 3, 638, 319, 0, 3970, 3969, 1, 0, 0, 0, 3970, 3971, 1, 0, 0, 0, 3971, 3982, 1, 0, 0, 0, 3972, 3973, 5, 397, 0, 0, 3973, 3975, 3, 580, 290, 0, 3974, 3976, 5, 17, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 1, 0, 0, 0, 3977, 3979, 3, 638, 319, 0, 3978, 3977, 1, 0, 0, 0, 3978, 3979, 1, 0, 0, 0, 3979, 3981, 1, 0, 0, 0, 3980, 3972, 1, 0, 0, 0, 3981, 3984, 1, 0, 0, 0, 3982, 3980, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 535, 1, 0, 0, 0, 3984, 3982, 1, 0, 0, 0, 3985, 3988, 3, 538, 269, 0, 3986, 3988, 3, 540, 270, 0, 3987, 3985, 1, 0, 0, 0, 3987, 3986, 1, 0, 0, 0, 3988, 537, 1, 0, 0, 0, 3989, 3990, 5, 399, 0, 0, 3990, 3991, 3, 540, 270, 0, 3991, 3992, 5, 400, 0, 0, 3992, 539, 1, 0, 0, 0, 3993, 4000, 3, 532, 266, 0, 3994, 3995, 5, 397, 0, 0, 3995, 3997, 3, 532, 266, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 3996, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4001, 1, 0, 0, 0, 4000, 3996, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 541, 1, 0, 0, 0, 4002, 4003, 5, 229, 0, 0, 4003, 4004, 5, 32, 0, 0, 4004, 4009, 3, 308, 154, 0, 4005, 4006, 5, 397, 0, 0, 4006, 4008, 3, 308, 154, 0, 4007, 4005, 1, 0, 0, 0, 4008, 4011, 1, 0, 0, 0, 4009, 4007, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 543, 1, 0, 0, 0, 4011, 4009, 1, 0, 0, 0, 4012, 4013, 5, 41, 0, 0, 4013, 4014, 5, 32, 0, 0, 4014, 4015, 3, 536, 268, 0, 4015, 545, 1, 0, 0, 0, 4016, 4017, 5, 97, 0, 0, 4017, 4018, 5, 32, 0, 0, 4018, 4019, 3, 536, 268, 0, 4019, 547, 1, 0, 0, 0, 4020, 4021, 5, 314, 0, 0, 4021, 4041, 5, 32, 0, 0, 4022, 4023, 5, 399, 0, 0, 4023, 4028, 3, 308, 154, 0, 4024, 4025, 5, 397, 0, 0, 4025, 4027, 3, 308, 154, 0, 4026, 4024, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4032, 5, 400, 0, 0, 4032, 4042, 1, 0, 0, 0, 4033, 4038, 3, 308, 154, 0, 4034, 4035, 5, 397, 0, 0, 4035, 4037, 3, 308, 154, 0, 4036, 4034, 1, 0, 0, 0, 4037, 4040, 1, 0, 0, 0, 4038, 4036, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4042, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4041, 4022, 1, 0, 0, 0, 4041, 4033, 1, 0, 0, 0, 4042, 549, 1, 0, 0, 0, 4043, 4044, 5, 349, 0, 0, 4044, 4048, 5, 399, 0, 0, 4045, 4049, 5, 179, 0, 0, 4046, 4049, 5, 343, 0, 0, 4047, 4049, 5, 29, 0, 0, 4048, 4045, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 1, 0, 0, 0, 4050, 4052, 3, 508, 254, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4054, 5, 139, 0, 0, 4054, 4055, 3, 508, 254, 0, 4055, 4056, 5, 400, 0, 0, 4056, 4097, 1, 0, 0, 0, 4057, 4058, 3, 558, 279, 0, 4058, 4073, 5, 399, 0, 0, 4059, 4074, 5, 415, 0, 0, 4060, 4062, 7, 22, 0, 0, 4061, 4060, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4071, 1, 0, 0, 0, 4063, 4068, 3, 508, 254, 0, 4064, 4065, 5, 397, 0, 0, 4065, 4067, 3, 508, 254, 0, 4066, 4064, 1, 0, 0, 0, 4067, 4070, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4068, 4069, 1, 0, 0, 0, 4069, 4072, 1, 0, 0, 0, 4070, 4068, 1, 0, 0, 0, 4071, 4063, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4074, 1, 0, 0, 0, 4073, 4059, 1, 0, 0, 0, 4073, 4061, 1, 0, 0, 0, 4074, 4094, 1, 0, 0, 0, 4075, 4076, 5, 400, 0, 0, 4076, 4077, 5, 388, 0, 0, 4077, 4078, 5, 144, 0, 0, 4078, 4079, 5, 399, 0, 0, 4079, 4080, 3, 542, 271, 0, 4080, 4081, 5, 400, 0, 0, 4081, 4095, 1, 0, 0, 0, 4082, 4084, 5, 400, 0, 0, 4083, 4085, 3, 552, 276, 0, 4084, 4083, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 5, 234, 0, 0, 4087, 4095, 3, 514, 257, 0, 4088, 4089, 3, 552, 276, 0, 4089, 4090, 5, 400, 0, 0, 4090, 4091, 5, 234, 0, 0, 4091, 4092, 3, 514, 257, 0, 4092, 4095, 1, 0, 0, 0, 4093, 4095, 5, 400, 0, 0, 4094, 4075, 1, 0, 0, 0, 4094, 4082, 1, 0, 0, 0, 4094, 4088, 1, 0, 0, 0, 4094, 4093, 1, 0, 0, 0, 4095, 4097, 1, 0, 0, 0, 4096, 4043, 1, 0, 0, 0, 4096, 4057, 1, 0, 0, 0, 4097, 551, 1, 0, 0, 0, 4098, 4099, 7, 35, 0, 0, 4099, 4100, 5, 220, 0, 0, 4100, 553, 1, 0, 0, 0, 4101, 4102, 3, 640, 320, 0, 4102, 555, 1, 0, 0, 0, 4103, 4106, 3, 640, 320, 0, 4104, 4106, 5, 426, 0, 0, 4105, 4103, 1, 0, 0, 0, 4105, 4104, 1, 0, 0, 0, 4106, 557, 1, 0, 0, 0, 4107, 4111, 3, 640, 320, 0, 4108, 4111, 3, 646, 323, 0, 4109, 4111, 3, 636, 318, 0, 4110, 4107, 1, 0, 0, 0, 4110, 4108, 1, 0, 0, 0, 4110, 4109, 1, 0, 0, 0, 4111, 559, 1, 0, 0, 0, 4112, 4113, 5, 36, 0, 0, 4113, 4114, 5, 399, 0, 0, 4114, 4115, 3, 580, 290, 0, 4115, 4116, 5, 17, 0, 0, 4116, 4119, 3, 348, 174, 0, 4117, 4118, 5, 137, 0, 0, 4118, 4120, 5, 426, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4122, 5, 400, 0, 0, 4122, 561, 1, 0, 0, 0, 4123, 4124, 5, 35, 0, 0, 4124, 4130, 3, 580, 290, 0, 4125, 4126, 5, 383, 0, 0, 4126, 4127, 3, 580, 290, 0, 4127, 4128, 5, 335, 0, 0, 4128, 4129, 3, 580, 290, 0, 4129, 4131, 1, 0, 0, 0, 4130, 4125, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4136, 1, 0, 0, 0, 4134, 4135, 5, 105, 0, 0, 4135, 4137, 3, 580, 290, 0, 4136, 4134, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 5, 108, 0, 0, 4139, 563, 1, 0, 0, 0, 4140, 4146, 5, 35, 0, 0, 4141, 4142, 5, 383, 0, 0, 4142, 4143, 3, 580, 290, 0, 4143, 4144, 5, 335, 0, 0, 4144, 4145, 3, 580, 290, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4141, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4146, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4152, 1, 0, 0, 0, 4150, 4151, 5, 105, 0, 0, 4151, 4153, 3, 580, 290, 0, 4152, 4150, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4155, 5, 108, 0, 0, 4155, 565, 1, 0, 0, 0, 4156, 4157, 5, 132, 0, 0, 4157, 4158, 5, 399, 0, 0, 4158, 4161, 3, 580, 290, 0, 4159, 4160, 5, 341, 0, 0, 4160, 4162, 3, 570, 285, 0, 4161, 4159, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 5, 400, 0, 0, 4164, 567, 1, 0, 0, 0, 4165, 4166, 5, 124, 0, 0, 4166, 4167, 5, 399, 0, 0, 4167, 4168, 3, 570, 285, 0, 4168, 4169, 5, 139, 0, 0, 4169, 4170, 3, 580, 290, 0, 4170, 4171, 5, 400, 0, 0, 4171, 569, 1, 0, 0, 0, 4172, 4181, 3, 666, 333, 0, 4173, 4181, 5, 257, 0, 0, 4174, 4181, 3, 668, 334, 0, 4175, 4181, 3, 670, 335, 0, 4176, 4181, 3, 672, 336, 0, 4177, 4181, 3, 674, 337, 0, 4178, 4181, 3, 676, 338, 0, 4179, 4181, 3, 678, 339, 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, 571, 1, 0, 0, 0, 4182, 4183, 3, 574, 287, 0, 4183, 4184, 3, 578, 289, 0, 4184, 4211, 1, 0, 0, 0, 4185, 4211, 5, 431, 0, 0, 4186, 4187, 5, 71, 0, 0, 4187, 4211, 5, 426, 0, 0, 4188, 4211, 5, 63, 0, 0, 4189, 4190, 5, 337, 0, 0, 4190, 4211, 5, 426, 0, 0, 4191, 4211, 5, 64, 0, 0, 4192, 4193, 5, 338, 0, 0, 4193, 4211, 5, 426, 0, 0, 4194, 4198, 5, 426, 0, 0, 4195, 4197, 5, 426, 0, 0, 4196, 4195, 1, 0, 0, 0, 4197, 4200, 1, 0, 0, 0, 4198, 4196, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4211, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4201, 4211, 5, 428, 0, 0, 4202, 4211, 5, 429, 0, 0, 4203, 4204, 5, 433, 0, 0, 4204, 4211, 5, 427, 0, 0, 4205, 4211, 5, 350, 0, 0, 4206, 4211, 5, 125, 0, 0, 4207, 4211, 5, 219, 0, 0, 4208, 4211, 5, 424, 0, 0, 4209, 4211, 5, 432, 0, 0, 4210, 4182, 1, 0, 0, 0, 4210, 4185, 1, 0, 0, 0, 4210, 4186, 1, 0, 0, 0, 4210, 4188, 1, 0, 0, 0, 4210, 4189, 1, 0, 0, 0, 4210, 4191, 1, 0, 0, 0, 4210, 4192, 1, 0, 0, 0, 4210, 4194, 1, 0, 0, 0, 4210, 4201, 1, 0, 0, 0, 4210, 4202, 1, 0, 0, 0, 4210, 4203, 1, 0, 0, 0, 4210, 4205, 1, 0, 0, 0, 4210, 4206, 1, 0, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4208, 1, 0, 0, 0, 4210, 4209, 1, 0, 0, 0, 4211, 573, 1, 0, 0, 0, 4212, 4213, 7, 27, 0, 0, 4213, 575, 1, 0, 0, 0, 4214, 4215, 5, 399, 0, 0, 4215, 4216, 3, 574, 287, 0, 4216, 4217, 5, 400, 0, 0, 4217, 4218, 3, 578, 289, 0, 4218, 4230, 1, 0, 0, 0, 4219, 4225, 5, 165, 0, 0, 4220, 4226, 3, 574, 287, 0, 4221, 4222, 5, 399, 0, 0, 4222, 4223, 3, 580, 290, 0, 4223, 4224, 5, 400, 0, 0, 4224, 4226, 1, 0, 0, 0, 4225, 4220, 1, 0, 0, 0, 4225, 4221, 1, 0, 0, 0, 4226, 4227, 1, 0, 0, 0, 4227, 4228, 3, 578, 289, 0, 4228, 4230, 1, 0, 0, 0, 4229, 4214, 1, 0, 0, 0, 4229, 4219, 1, 0, 0, 0, 4230, 577, 1, 0, 0, 0, 4231, 4232, 3, 666, 333, 0, 4232, 4233, 5, 341, 0, 0, 4233, 4234, 3, 668, 334, 0, 4234, 4246, 1, 0, 0, 0, 4235, 4236, 3, 672, 336, 0, 4236, 4237, 5, 341, 0, 0, 4237, 4238, 3, 678, 339, 0, 4238, 4246, 1, 0, 0, 0, 4239, 4246, 3, 666, 333, 0, 4240, 4246, 3, 668, 334, 0, 4241, 4246, 3, 672, 336, 0, 4242, 4246, 3, 674, 337, 0, 4243, 4246, 3, 676, 338, 0, 4244, 4246, 3, 678, 339, 0, 4245, 4231, 1, 0, 0, 0, 4245, 4235, 1, 0, 0, 0, 4245, 4239, 1, 0, 0, 0, 4245, 4240, 1, 0, 0, 0, 4245, 4241, 1, 0, 0, 0, 4245, 4242, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4245, 4244, 1, 0, 0, 0, 4246, 579, 1, 0, 0, 0, 4247, 4252, 3, 622, 311, 0, 4248, 4249, 5, 228, 0, 0, 4249, 4251, 3, 622, 311, 0, 4250, 4248, 1, 0, 0, 0, 4251, 4254, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4252, 4253, 1, 0, 0, 0, 4253, 581, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4255, 4267, 3, 572, 286, 0, 4256, 4267, 3, 576, 288, 0, 4257, 4267, 3, 560, 280, 0, 4258, 4267, 3, 568, 284, 0, 4259, 4267, 3, 566, 283, 0, 4260, 4267, 3, 562, 281, 0, 4261, 4267, 3, 564, 282, 0, 4262, 4267, 3, 600, 300, 0, 4263, 4267, 3, 550, 275, 0, 4264, 4267, 3, 538, 269, 0, 4265, 4267, 3, 638, 319, 0, 4266, 4255, 1, 0, 0, 0, 4266, 4256, 1, 0, 0, 0, 4266, 4257, 1, 0, 0, 0, 4266, 4258, 1, 0, 0, 0, 4266, 4259, 1, 0, 0, 0, 4266, 4260, 1, 0, 0, 0, 4266, 4261, 1, 0, 0, 0, 4266, 4262, 1, 0, 0, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4264, 1, 0, 0, 0, 4266, 4265, 1, 0, 0, 0, 4267, 583, 1, 0, 0, 0, 4268, 4270, 7, 36, 0, 0, 4269, 4268, 1, 0, 0, 0, 4270, 4273, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4274, 1, 0, 0, 0, 4273, 4271, 1, 0, 0, 0, 4274, 4283, 3, 582, 291, 0, 4275, 4276, 5, 401, 0, 0, 4276, 4277, 3, 580, 290, 0, 4277, 4278, 5, 402, 0, 0, 4278, 4282, 1, 0, 0, 0, 4279, 4280, 5, 395, 0, 0, 4280, 4282, 3, 638, 319, 0, 4281, 4275, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4285, 1, 0, 0, 0, 4283, 4281, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 585, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4286, 4291, 3, 584, 292, 0, 4287, 4288, 5, 423, 0, 0, 4288, 4290, 3, 584, 292, 0, 4289, 4287, 1, 0, 0, 0, 4290, 4293, 1, 0, 0, 0, 4291, 4289, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 587, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4294, 4299, 3, 586, 293, 0, 4295, 4296, 7, 37, 0, 0, 4296, 4298, 3, 586, 293, 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, 589, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4302, 4307, 3, 588, 294, 0, 4303, 4304, 7, 38, 0, 0, 4304, 4306, 3, 588, 294, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 591, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4315, 3, 590, 295, 0, 4311, 4312, 5, 422, 0, 0, 4312, 4314, 3, 590, 295, 0, 4313, 4311, 1, 0, 0, 0, 4314, 4317, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 593, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4318, 4323, 3, 592, 296, 0, 4319, 4320, 5, 419, 0, 0, 4320, 4322, 3, 592, 296, 0, 4321, 4319, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 595, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4331, 3, 594, 297, 0, 4327, 4328, 5, 421, 0, 0, 4328, 4330, 3, 594, 297, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 597, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4335, 7, 39, 0, 0, 4335, 599, 1, 0, 0, 0, 4336, 4337, 5, 399, 0, 0, 4337, 4338, 3, 376, 188, 0, 4338, 4339, 5, 400, 0, 0, 4339, 601, 1, 0, 0, 0, 4340, 4342, 3, 596, 298, 0, 4341, 4343, 3, 604, 302, 0, 4342, 4341, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4347, 1, 0, 0, 0, 4344, 4345, 5, 117, 0, 0, 4345, 4347, 3, 600, 300, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4344, 1, 0, 0, 0, 4347, 603, 1, 0, 0, 0, 4348, 4349, 3, 598, 299, 0, 4349, 4350, 3, 596, 298, 0, 4350, 4355, 1, 0, 0, 0, 4351, 4355, 3, 606, 303, 0, 4352, 4353, 5, 216, 0, 0, 4353, 4355, 3, 610, 305, 0, 4354, 4348, 1, 0, 0, 0, 4354, 4351, 1, 0, 0, 0, 4354, 4352, 1, 0, 0, 0, 4355, 605, 1, 0, 0, 0, 4356, 4357, 5, 154, 0, 0, 4357, 4371, 3, 608, 304, 0, 4358, 4359, 5, 25, 0, 0, 4359, 4360, 3, 596, 298, 0, 4360, 4361, 5, 11, 0, 0, 4361, 4362, 3, 596, 298, 0, 4362, 4371, 1, 0, 0, 0, 4363, 4364, 5, 184, 0, 0, 4364, 4365, 7, 40, 0, 0, 4365, 4371, 3, 538, 269, 0, 4366, 4367, 3, 634, 317, 0, 4367, 4368, 7, 41, 0, 0, 4368, 4369, 3, 600, 300, 0, 4369, 4371, 1, 0, 0, 0, 4370, 4356, 1, 0, 0, 0, 4370, 4358, 1, 0, 0, 0, 4370, 4363, 1, 0, 0, 0, 4370, 4366, 1, 0, 0, 0, 4371, 607, 1, 0, 0, 0, 4372, 4375, 3, 600, 300, 0, 4373, 4375, 3, 538, 269, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4373, 1, 0, 0, 0, 4375, 609, 1, 0, 0, 0, 4376, 4377, 7, 42, 0, 0, 4377, 4380, 3, 596, 298, 0, 4378, 4380, 3, 606, 303, 0, 4379, 4376, 1, 0, 0, 0, 4379, 4378, 1, 0, 0, 0, 4380, 611, 1, 0, 0, 0, 4381, 4382, 5, 167, 0, 0, 4382, 4383, 5, 96, 0, 0, 4383, 4384, 5, 139, 0, 0, 4384, 613, 1, 0, 0, 0, 4385, 4393, 5, 405, 0, 0, 4386, 4393, 5, 406, 0, 0, 4387, 4393, 5, 407, 0, 0, 4388, 4389, 5, 167, 0, 0, 4389, 4390, 5, 216, 0, 0, 4390, 4391, 5, 96, 0, 0, 4391, 4393, 5, 139, 0, 0, 4392, 4385, 1, 0, 0, 0, 4392, 4386, 1, 0, 0, 0, 4392, 4387, 1, 0, 0, 0, 4392, 4388, 1, 0, 0, 0, 4393, 615, 1, 0, 0, 0, 4394, 4403, 3, 602, 301, 0, 4395, 4396, 3, 614, 307, 0, 4396, 4397, 3, 602, 301, 0, 4397, 4402, 1, 0, 0, 0, 4398, 4399, 3, 612, 306, 0, 4399, 4400, 3, 602, 301, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4395, 1, 0, 0, 0, 4401, 4398, 1, 0, 0, 0, 4402, 4405, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 617, 1, 0, 0, 0, 4405, 4403, 1, 0, 0, 0, 4406, 4413, 5, 219, 0, 0, 4407, 4413, 5, 350, 0, 0, 4408, 4413, 5, 125, 0, 0, 4409, 4413, 5, 360, 0, 0, 4410, 4411, 5, 216, 0, 0, 4411, 4413, 7, 43, 0, 0, 4412, 4406, 1, 0, 0, 0, 4412, 4407, 1, 0, 0, 0, 4412, 4408, 1, 0, 0, 0, 4412, 4409, 1, 0, 0, 0, 4412, 4410, 1, 0, 0, 0, 4413, 619, 1, 0, 0, 0, 4414, 4416, 5, 216, 0, 0, 4415, 4414, 1, 0, 0, 0, 4416, 4419, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4420, 4423, 3, 616, 308, 0, 4421, 4422, 5, 167, 0, 0, 4422, 4424, 3, 618, 309, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 621, 1, 0, 0, 0, 4425, 4430, 3, 620, 310, 0, 4426, 4427, 5, 11, 0, 0, 4427, 4429, 3, 620, 310, 0, 4428, 4426, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 623, 1, 0, 0, 0, 4432, 4430, 1, 0, 0, 0, 4433, 4435, 3, 478, 239, 0, 4434, 4436, 3, 626, 313, 0, 4435, 4434, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 625, 1, 0, 0, 0, 4437, 4438, 5, 237, 0, 0, 4438, 4439, 5, 399, 0, 0, 4439, 4444, 3, 628, 314, 0, 4440, 4441, 5, 397, 0, 0, 4441, 4443, 3, 628, 314, 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, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4448, 5, 400, 0, 0, 4448, 627, 1, 0, 0, 0, 4449, 4452, 3, 638, 319, 0, 4450, 4451, 5, 405, 0, 0, 4451, 4453, 3, 572, 286, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 629, 1, 0, 0, 0, 4454, 4455, 5, 399, 0, 0, 4455, 4460, 3, 632, 316, 0, 4456, 4457, 5, 397, 0, 0, 4457, 4459, 3, 632, 316, 0, 4458, 4456, 1, 0, 0, 0, 4459, 4462, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 4463, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 4464, 5, 400, 0, 0, 4464, 631, 1, 0, 0, 0, 4465, 4468, 3, 638, 319, 0, 4466, 4469, 5, 184, 0, 0, 4467, 4469, 3, 634, 317, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4471, 3, 572, 286, 0, 4471, 633, 1, 0, 0, 0, 4472, 4473, 7, 44, 0, 0, 4473, 635, 1, 0, 0, 0, 4474, 4475, 7, 45, 0, 0, 4475, 637, 1, 0, 0, 0, 4476, 4479, 5, 432, 0, 0, 4477, 4479, 3, 644, 322, 0, 4478, 4476, 1, 0, 0, 0, 4478, 4477, 1, 0, 0, 0, 4479, 639, 1, 0, 0, 0, 4480, 4483, 3, 638, 319, 0, 4481, 4482, 5, 395, 0, 0, 4482, 4484, 3, 638, 319, 0, 4483, 4481, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 641, 1, 0, 0, 0, 4485, 4486, 3, 638, 319, 0, 4486, 643, 1, 0, 0, 0, 4487, 4488, 7, 46, 0, 0, 4488, 645, 1, 0, 0, 0, 4489, 4490, 7, 47, 0, 0, 4490, 647, 1, 0, 0, 0, 4491, 4543, 3, 638, 319, 0, 4492, 4543, 5, 299, 0, 0, 4493, 4543, 5, 171, 0, 0, 4494, 4543, 5, 237, 0, 0, 4495, 4543, 5, 198, 0, 0, 4496, 4543, 5, 268, 0, 0, 4497, 4543, 5, 369, 0, 0, 4498, 4543, 5, 241, 0, 0, 4499, 4543, 5, 165, 0, 0, 4500, 4543, 5, 292, 0, 0, 4501, 4543, 5, 356, 0, 0, 4502, 4543, 5, 144, 0, 0, 4503, 4543, 5, 203, 0, 0, 4504, 4543, 5, 219, 0, 0, 4505, 4543, 5, 126, 0, 0, 4506, 4543, 5, 188, 0, 0, 4507, 4543, 5, 101, 0, 0, 4508, 4543, 5, 329, 0, 0, 4509, 4543, 5, 224, 0, 0, 4510, 4543, 5, 291, 0, 0, 4511, 4543, 5, 145, 0, 0, 4512, 4543, 5, 304, 0, 0, 4513, 4543, 5, 135, 0, 0, 4514, 4543, 5, 318, 0, 0, 4515, 4543, 5, 161, 0, 0, 4516, 4543, 5, 54, 0, 0, 4517, 4543, 5, 166, 0, 0, 4518, 4543, 5, 358, 0, 0, 4519, 4543, 5, 45, 0, 0, 4520, 4543, 5, 347, 0, 0, 4521, 4543, 5, 96, 0, 0, 4522, 4543, 5, 154, 0, 0, 4523, 4543, 5, 269, 0, 0, 4524, 4543, 5, 337, 0, 0, 4525, 4543, 5, 225, 0, 0, 4526, 4543, 5, 108, 0, 0, 4527, 4543, 5, 141, 0, 0, 4528, 4543, 5, 365, 0, 0, 4529, 4543, 5, 21, 0, 0, 4530, 4543, 5, 78, 0, 0, 4531, 4543, 5, 374, 0, 0, 4532, 4543, 5, 336, 0, 0, 4533, 4543, 5, 167, 0, 0, 4534, 4543, 5, 134, 0, 0, 4535, 4543, 5, 216, 0, 0, 4536, 4543, 5, 27, 0, 0, 4537, 4543, 5, 370, 0, 0, 4538, 4543, 5, 263, 0, 0, 4539, 4543, 5, 25, 0, 0, 4540, 4543, 5, 62, 0, 0, 4541, 4543, 5, 17, 0, 0, 4542, 4491, 1, 0, 0, 0, 4542, 4492, 1, 0, 0, 0, 4542, 4493, 1, 0, 0, 0, 4542, 4494, 1, 0, 0, 0, 4542, 4495, 1, 0, 0, 0, 4542, 4496, 1, 0, 0, 0, 4542, 4497, 1, 0, 0, 0, 4542, 4498, 1, 0, 0, 0, 4542, 4499, 1, 0, 0, 0, 4542, 4500, 1, 0, 0, 0, 4542, 4501, 1, 0, 0, 0, 4542, 4502, 1, 0, 0, 0, 4542, 4503, 1, 0, 0, 0, 4542, 4504, 1, 0, 0, 0, 4542, 4505, 1, 0, 0, 0, 4542, 4506, 1, 0, 0, 0, 4542, 4507, 1, 0, 0, 0, 4542, 4508, 1, 0, 0, 0, 4542, 4509, 1, 0, 0, 0, 4542, 4510, 1, 0, 0, 0, 4542, 4511, 1, 0, 0, 0, 4542, 4512, 1, 0, 0, 0, 4542, 4513, 1, 0, 0, 0, 4542, 4514, 1, 0, 0, 0, 4542, 4515, 1, 0, 0, 0, 4542, 4516, 1, 0, 0, 0, 4542, 4517, 1, 0, 0, 0, 4542, 4518, 1, 0, 0, 0, 4542, 4519, 1, 0, 0, 0, 4542, 4520, 1, 0, 0, 0, 4542, 4521, 1, 0, 0, 0, 4542, 4522, 1, 0, 0, 0, 4542, 4523, 1, 0, 0, 0, 4542, 4524, 1, 0, 0, 0, 4542, 4525, 1, 0, 0, 0, 4542, 4526, 1, 0, 0, 0, 4542, 4527, 1, 0, 0, 0, 4542, 4528, 1, 0, 0, 0, 4542, 4529, 1, 0, 0, 0, 4542, 4530, 1, 0, 0, 0, 4542, 4531, 1, 0, 0, 0, 4542, 4532, 1, 0, 0, 0, 4542, 4533, 1, 0, 0, 0, 4542, 4534, 1, 0, 0, 0, 4542, 4535, 1, 0, 0, 0, 4542, 4536, 1, 0, 0, 0, 4542, 4537, 1, 0, 0, 0, 4542, 4538, 1, 0, 0, 0, 4542, 4539, 1, 0, 0, 0, 4542, 4540, 1, 0, 0, 0, 4542, 4541, 1, 0, 0, 0, 4543, 649, 1, 0, 0, 0, 4544, 4545, 5, 58, 0, 0, 4545, 4546, 5, 280, 0, 0, 4546, 4548, 5, 243, 0, 0, 4547, 4549, 3, 32, 16, 0, 4548, 4547, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4559, 1, 0, 0, 0, 4550, 4551, 3, 638, 319, 0, 4551, 4552, 5, 184, 0, 0, 4552, 4553, 3, 638, 319, 0, 4553, 4560, 1, 0, 0, 0, 4554, 4557, 3, 638, 319, 0, 4555, 4556, 5, 387, 0, 0, 4556, 4558, 3, 656, 328, 0, 4557, 4555, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 4560, 1, 0, 0, 0, 4559, 4550, 1, 0, 0, 0, 4559, 4554, 1, 0, 0, 0, 4560, 4710, 1, 0, 0, 0, 4561, 4562, 5, 9, 0, 0, 4562, 4563, 5, 280, 0, 0, 4563, 4564, 5, 243, 0, 0, 4564, 4589, 3, 638, 319, 0, 4565, 4590, 5, 373, 0, 0, 4566, 4590, 3, 664, 332, 0, 4567, 4568, 5, 304, 0, 0, 4568, 4590, 3, 656, 328, 0, 4569, 4570, 5, 363, 0, 0, 4570, 4575, 3, 658, 329, 0, 4571, 4572, 5, 397, 0, 0, 4572, 4574, 3, 658, 329, 0, 4573, 4571, 1, 0, 0, 0, 4574, 4577, 1, 0, 0, 0, 4575, 4573, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4590, 1, 0, 0, 0, 4577, 4575, 1, 0, 0, 0, 4578, 4579, 5, 274, 0, 0, 4579, 4580, 5, 341, 0, 0, 4580, 4590, 3, 638, 319, 0, 4581, 4583, 3, 660, 330, 0, 4582, 4584, 3, 662, 331, 0, 4583, 4582, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4590, 1, 0, 0, 0, 4585, 4587, 3, 662, 331, 0, 4586, 4588, 3, 660, 330, 0, 4587, 4586, 1, 0, 0, 0, 4587, 4588, 1, 0, 0, 0, 4588, 4590, 1, 0, 0, 0, 4589, 4565, 1, 0, 0, 0, 4589, 4566, 1, 0, 0, 0, 4589, 4567, 1, 0, 0, 0, 4589, 4569, 1, 0, 0, 0, 4589, 4578, 1, 0, 0, 0, 4589, 4581, 1, 0, 0, 0, 4589, 4585, 1, 0, 0, 0, 4590, 4710, 1, 0, 0, 0, 4591, 4592, 5, 101, 0, 0, 4592, 4593, 5, 280, 0, 0, 4593, 4595, 5, 243, 0, 0, 4594, 4596, 3, 30, 15, 0, 4595, 4594, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 4710, 3, 638, 319, 0, 4598, 4601, 3, 662, 331, 0, 4599, 4601, 3, 664, 332, 0, 4600, 4598, 1, 0, 0, 0, 4600, 4599, 1, 0, 0, 0, 4601, 4602, 1, 0, 0, 0, 4602, 4603, 5, 390, 0, 0, 4603, 4604, 5, 197, 0, 0, 4604, 4710, 1, 0, 0, 0, 4605, 4617, 5, 278, 0, 0, 4606, 4607, 5, 3, 0, 0, 4607, 4608, 5, 280, 0, 0, 4608, 4609, 5, 243, 0, 0, 4609, 4610, 5, 387, 0, 0, 4610, 4618, 3, 638, 319, 0, 4611, 4612, 5, 280, 0, 0, 4612, 4613, 5, 243, 0, 0, 4613, 4614, 3, 638, 319, 0, 4614, 4615, 5, 387, 0, 0, 4615, 4616, 3, 638, 319, 0, 4616, 4618, 1, 0, 0, 0, 4617, 4606, 1, 0, 0, 0, 4617, 4611, 1, 0, 0, 0, 4618, 4710, 1, 0, 0, 0, 4619, 4620, 5, 58, 0, 0, 4620, 4621, 5, 348, 0, 0, 4621, 4622, 3, 638, 319, 0, 4622, 4623, 5, 395, 0, 0, 4623, 4624, 3, 638, 319, 0, 4624, 4625, 5, 383, 0, 0, 4625, 4626, 3, 684, 342, 0, 4626, 4627, 5, 99, 0, 0, 4627, 4628, 3, 686, 343, 0, 4628, 4710, 1, 0, 0, 0, 4629, 4630, 5, 9, 0, 0, 4630, 4631, 5, 348, 0, 0, 4631, 4632, 3, 638, 319, 0, 4632, 4633, 5, 395, 0, 0, 4633, 4650, 3, 638, 319, 0, 4634, 4635, 5, 383, 0, 0, 4635, 4636, 3, 684, 342, 0, 4636, 4637, 5, 99, 0, 0, 4637, 4638, 3, 686, 343, 0, 4638, 4651, 1, 0, 0, 0, 4639, 4640, 5, 4, 0, 0, 4640, 4644, 5, 341, 0, 0, 4641, 4642, 5, 101, 0, 0, 4642, 4644, 5, 139, 0, 0, 4643, 4639, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4648, 1, 0, 0, 0, 4645, 4646, 5, 246, 0, 0, 4646, 4649, 3, 682, 341, 0, 4647, 4649, 5, 362, 0, 0, 4648, 4645, 1, 0, 0, 0, 4648, 4647, 1, 0, 0, 0, 4649, 4651, 1, 0, 0, 0, 4650, 4634, 1, 0, 0, 0, 4650, 4643, 1, 0, 0, 0, 4651, 4710, 1, 0, 0, 0, 4652, 4653, 5, 101, 0, 0, 4653, 4654, 5, 348, 0, 0, 4654, 4655, 3, 638, 319, 0, 4655, 4656, 5, 395, 0, 0, 4656, 4657, 3, 638, 319, 0, 4657, 4710, 1, 0, 0, 0, 4658, 4659, 5, 58, 0, 0, 4659, 4660, 5, 246, 0, 0, 4660, 4661, 3, 638, 319, 0, 4661, 4662, 5, 395, 0, 0, 4662, 4663, 3, 682, 341, 0, 4663, 4664, 5, 387, 0, 0, 4664, 4665, 3, 690, 345, 0, 4665, 4710, 1, 0, 0, 0, 4666, 4667, 5, 9, 0, 0, 4667, 4668, 5, 246, 0, 0, 4668, 4669, 3, 638, 319, 0, 4669, 4670, 5, 395, 0, 0, 4670, 4678, 3, 682, 341, 0, 4671, 4672, 5, 304, 0, 0, 4672, 4679, 3, 690, 345, 0, 4673, 4674, 5, 363, 0, 0, 4674, 4679, 5, 294, 0, 0, 4675, 4676, 7, 48, 0, 0, 4676, 4677, 5, 348, 0, 0, 4677, 4679, 3, 638, 319, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4673, 1, 0, 0, 0, 4678, 4675, 1, 0, 0, 0, 4679, 4710, 1, 0, 0, 0, 4680, 4681, 5, 101, 0, 0, 4681, 4682, 5, 246, 0, 0, 4682, 4683, 3, 638, 319, 0, 4683, 4684, 5, 395, 0, 0, 4684, 4685, 3, 682, 341, 0, 4685, 4710, 1, 0, 0, 0, 4686, 4687, 7, 49, 0, 0, 4687, 4688, 3, 652, 326, 0, 4688, 4689, 5, 200, 0, 0, 4689, 4690, 5, 426, 0, 0, 4690, 4691, 5, 154, 0, 0, 4691, 4695, 3, 638, 319, 0, 4692, 4693, 5, 341, 0, 0, 4693, 4696, 3, 682, 341, 0, 4694, 4696, 5, 362, 0, 0, 4695, 4692, 1, 0, 0, 0, 4695, 4694, 1, 0, 0, 0, 4696, 4700, 1, 0, 0, 0, 4697, 4698, 5, 387, 0, 0, 4698, 4699, 5, 229, 0, 0, 4699, 4701, 5, 431, 0, 0, 4700, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4710, 1, 0, 0, 0, 4702, 4703, 5, 101, 0, 0, 4703, 4704, 3, 652, 326, 0, 4704, 4705, 5, 200, 0, 0, 4705, 4706, 5, 426, 0, 0, 4706, 4707, 5, 154, 0, 0, 4707, 4708, 3, 638, 319, 0, 4708, 4710, 1, 0, 0, 0, 4709, 4544, 1, 0, 0, 0, 4709, 4561, 1, 0, 0, 0, 4709, 4591, 1, 0, 0, 0, 4709, 4600, 1, 0, 0, 0, 4709, 4605, 1, 0, 0, 0, 4709, 4619, 1, 0, 0, 0, 4709, 4629, 1, 0, 0, 0, 4709, 4652, 1, 0, 0, 0, 4709, 4658, 1, 0, 0, 0, 4709, 4666, 1, 0, 0, 0, 4709, 4680, 1, 0, 0, 0, 4709, 4686, 1, 0, 0, 0, 4709, 4702, 1, 0, 0, 0, 4710, 651, 1, 0, 0, 0, 4711, 4712, 7, 50, 0, 0, 4712, 653, 1, 0, 0, 0, 4713, 4714, 5, 259, 0, 0, 4714, 4715, 5, 405, 0, 0, 4715, 4721, 5, 431, 0, 0, 4716, 4717, 5, 83, 0, 0, 4717, 4718, 5, 246, 0, 0, 4718, 4719, 5, 405, 0, 0, 4719, 4721, 3, 682, 341, 0, 4720, 4713, 1, 0, 0, 0, 4720, 4716, 1, 0, 0, 0, 4721, 655, 1, 0, 0, 0, 4722, 4727, 3, 654, 327, 0, 4723, 4724, 5, 397, 0, 0, 4724, 4726, 3, 654, 327, 0, 4725, 4723, 1, 0, 0, 0, 4726, 4729, 1, 0, 0, 0, 4727, 4725, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 657, 1, 0, 0, 0, 4729, 4727, 1, 0, 0, 0, 4730, 4734, 5, 259, 0, 0, 4731, 4732, 5, 83, 0, 0, 4732, 4734, 5, 246, 0, 0, 4733, 4730, 1, 0, 0, 0, 4733, 4731, 1, 0, 0, 0, 4734, 659, 1, 0, 0, 0, 4735, 4738, 5, 2, 0, 0, 4736, 4737, 5, 387, 0, 0, 4737, 4739, 5, 278, 0, 0, 4738, 4736, 1, 0, 0, 0, 4738, 4739, 1, 0, 0, 0, 4739, 661, 1, 0, 0, 0, 4740, 4741, 7, 51, 0, 0, 4741, 663, 1, 0, 0, 0, 4742, 4743, 7, 52, 0, 0, 4743, 665, 1, 0, 0, 0, 4744, 4745, 7, 53, 0, 0, 4745, 667, 1, 0, 0, 0, 4746, 4747, 7, 54, 0, 0, 4747, 669, 1, 0, 0, 0, 4748, 4749, 7, 55, 0, 0, 4749, 671, 1, 0, 0, 0, 4750, 4751, 7, 56, 0, 0, 4751, 673, 1, 0, 0, 0, 4752, 4753, 7, 57, 0, 0, 4753, 675, 1, 0, 0, 0, 4754, 4755, 7, 58, 0, 0, 4755, 677, 1, 0, 0, 0, 4756, 4757, 7, 59, 0, 0, 4757, 679, 1, 0, 0, 0, 4758, 4759, 7, 60, 0, 0, 4759, 681, 1, 0, 0, 0, 4760, 4765, 3, 638, 319, 0, 4761, 4762, 5, 395, 0, 0, 4762, 4764, 3, 638, 319, 0, 4763, 4761, 1, 0, 0, 0, 4764, 4767, 1, 0, 0, 0, 4765, 4763, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 683, 1, 0, 0, 0, 4767, 4765, 1, 0, 0, 0, 4768, 4769, 3, 638, 319, 0, 4769, 4770, 5, 411, 0, 0, 4770, 4771, 7, 27, 0, 0, 4771, 685, 1, 0, 0, 0, 4772, 4777, 5, 176, 0, 0, 4773, 4774, 5, 211, 0, 0, 4774, 4775, 5, 341, 0, 0, 4775, 4777, 3, 682, 341, 0, 4776, 4772, 1, 0, 0, 0, 4776, 4773, 1, 0, 0, 0, 4777, 687, 1, 0, 0, 0, 4778, 4779, 5, 8, 0, 0, 4779, 4780, 5, 405, 0, 0, 4780, 4791, 5, 431, 0, 0, 4781, 4782, 5, 259, 0, 0, 4782, 4783, 5, 405, 0, 0, 4783, 4791, 5, 431, 0, 0, 4784, 4785, 5, 294, 0, 0, 4785, 4786, 5, 405, 0, 0, 4786, 4791, 5, 426, 0, 0, 4787, 4788, 5, 240, 0, 0, 4788, 4789, 5, 405, 0, 0, 4789, 4791, 3, 682, 341, 0, 4790, 4778, 1, 0, 0, 0, 4790, 4781, 1, 0, 0, 0, 4790, 4784, 1, 0, 0, 0, 4790, 4787, 1, 0, 0, 0, 4791, 689, 1, 0, 0, 0, 4792, 4797, 3, 688, 344, 0, 4793, 4794, 5, 397, 0, 0, 4794, 4796, 3, 688, 344, 0, 4795, 4793, 1, 0, 0, 0, 4796, 4799, 1, 0, 0, 0, 4797, 4795, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 691, 1, 0, 0, 0, 4799, 4797, 1, 0, 0, 0, 621, 695, 702, 705, 711, 717, 724, 734, 737, 741, 756, 763, 769, 774, 779, 782, 806, 813, 816, 821, 826, 832, 836, 849, 853, 857, 862, 869, 873, 878, 885, 889, 894, 942, 949, 954, 977, 981, 985, 988, 992, 997, 1003, 1007, 1013, 1015, 1026, 1030, 1037, 1045, 1048, 1053, 1057, 1060, 1070, 1078, 1082, 1085, 1089, 1093, 1096, 1101, 1107, 1112, 1117, 1121, 1132, 1134, 1138, 1148, 1152, 1158, 1161, 1168, 1173, 1181, 1186, 1190, 1198, 1203, 1209, 1215, 1218, 1221, 1224, 1233, 1241, 1246, 1254, 1261, 1264, 1267, 1269, 1280, 1282, 1285, 1288, 1291, 1294, 1297, 1299, 1311, 1317, 1325, 1327, 1337, 1370, 1375, 1379, 1383, 1390, 1397, 1403, 1407, 1410, 1417, 1440, 1445, 1449, 1457, 1466, 1473, 1479, 1486, 1489, 1495, 1502, 1510, 1519, 1528, 1535, 1555, 1562, 1564, 1571, 1581, 1589, 1593, 1597, 1610, 1619, 1635, 1639, 1644, 1649, 1652, 1655, 1658, 1661, 1664, 1669, 1678, 1682, 1689, 1692, 1695, 1698, 1710, 1716, 1742, 1750, 1754, 1757, 1760, 1763, 1766, 1769, 1772, 1775, 1784, 1794, 1797, 1817, 1823, 1829, 1832, 1834, 1841, 1848, 1861, 1866, 1875, 1883, 1891, 1904, 1917, 1933, 1937, 1952, 1958, 1961, 1964, 1967, 1970, 1974, 1989, 1992, 2003, 2017, 2051, 2059, 2064, 2072, 2077, 2082, 2089, 2097, 2105, 2113, 2118, 2128, 2132, 2140, 2149, 2152, 2156, 2163, 2169, 2173, 2179, 2183, 2195, 2204, 2215, 2219, 2226, 2238, 2248, 2251, 2258, 2264, 2268, 2271, 2274, 2280, 2284, 2288, 2293, 2297, 2301, 2305, 2313, 2317, 2321, 2325, 2329, 2337, 2341, 2345, 2353, 2358, 2363, 2367, 2371, 2378, 2387, 2395, 2407, 2425, 2428, 2434, 2460, 2463, 2469, 2477, 2485, 2498, 2505, 2508, 2511, 2514, 2517, 2520, 2523, 2526, 2529, 2532, 2535, 2540, 2543, 2546, 2549, 2552, 2555, 2558, 2561, 2564, 2567, 2570, 2572, 2578, 2582, 2585, 2588, 2591, 2594, 2597, 2604, 2608, 2611, 2614, 2617, 2620, 2623, 2630, 2633, 2641, 2645, 2652, 2654, 2657, 2662, 2665, 2669, 2674, 2680, 2688, 2696, 2706, 2709, 2713, 2717, 2722, 2729, 2733, 2735, 2739, 2746, 2751, 2764, 2772, 2791, 2801, 2814, 2824, 2828, 2832, 2838, 2845, 2852, 2861, 2868, 2888, 2891, 2905, 2920, 2924, 2944, 2956, 2962, 2965, 2968, 2974, 2980, 2987, 2995, 3001, 3005, 3010, 3013, 3017, 3024, 3029, 3034, 3037, 3039, 3047, 3055, 3059, 3063, 3067, 3084, 3101, 3108, 3117, 3122, 3125, 3128, 3132, 3147, 3161, 3164, 3175, 3179, 3182, 3185, 3189, 3194, 3197, 3200, 3203, 3206, 3209, 3215, 3218, 3221, 3224, 3227, 3230, 3233, 3236, 3239, 3242, 3246, 3248, 3254, 3259, 3262, 3265, 3268, 3271, 3277, 3280, 3283, 3286, 3289, 3292, 3295, 3298, 3301, 3304, 3308, 3310, 3312, 3317, 3322, 3326, 3330, 3335, 3340, 3349, 3359, 3367, 3379, 3382, 3388, 3395, 3402, 3409, 3416, 3425, 3429, 3436, 3441, 3445, 3449, 3452, 3455, 3466, 3470, 3472, 3475, 3488, 3491, 3494, 3506, 3509, 3516, 3525, 3530, 3532, 3534, 3551, 3554, 3562, 3565, 3569, 3572, 3575, 3578, 3581, 3593, 3601, 3608, 3611, 3618, 3621, 3626, 3633, 3641, 3649, 3654, 3658, 3663, 3670, 3684, 3687, 3691, 3702, 3712, 3715, 3722, 3731, 3734, 3740, 3743, 3750, 3755, 3758, 3771, 3777, 3779, 3787, 3790, 3800, 3805, 3807, 3819, 3825, 3827, 3834, 3841, 3855, 3861, 3864, 3867, 3870, 3879, 3886, 3892, 3901, 3905, 3913, 3923, 3933, 3938, 3942, 3948, 3953, 3963, 3967, 3970, 3975, 3978, 3982, 3987, 3998, 4000, 4009, 4028, 4038, 4041, 4048, 4051, 4061, 4068, 4071, 4073, 4084, 4094, 4096, 4105, 4110, 4119, 4132, 4136, 4148, 4152, 4161, 4180, 4198, 4210, 4225, 4229, 4245, 4252, 4266, 4271, 4281, 4283, 4291, 4299, 4307, 4315, 4323, 4331, 4342, 4346, 4354, 4370, 4374, 4379, 4392, 4401, 4403, 4412, 4417, 4423, 4430, 4435, 4444, 4452, 4460, 4468, 4478, 4483, 4542, 4548, 4557, 4559, 4575, 4583, 4587, 4589, 4595, 4600, 4617, 4643, 4648, 4650, 4678, 4695, 4700, 4709, 4720, 4727, 4733, 4738, 4765, 4776, 4790, 4797] \ No newline at end of file +[4, 1, 438, 4809, 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, 1, 0, 5, 0, 698, 8, 0, 10, 0, 12, 0, 701, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 707, 8, 1, 1, 1, 3, 1, 710, 8, 1, 1, 2, 1, 2, 5, 2, 714, 8, 2, 10, 2, 12, 2, 717, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 722, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 729, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 739, 8, 3, 1, 3, 3, 3, 742, 8, 3, 1, 3, 1, 3, 3, 3, 746, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 761, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 768, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 774, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 779, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 3, 5, 787, 8, 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, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 809, 8, 5, 10, 5, 12, 5, 812, 9, 5, 1, 5, 1, 5, 5, 5, 816, 8, 5, 10, 5, 12, 5, 819, 9, 5, 3, 5, 821, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 826, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 831, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 837, 8, 6, 1, 7, 1, 7, 3, 7, 841, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 854, 8, 8, 1, 9, 1, 9, 3, 9, 858, 8, 9, 1, 9, 1, 9, 3, 9, 862, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 867, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 874, 8, 10, 1, 10, 1, 10, 3, 10, 878, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 883, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 890, 8, 12, 1, 12, 1, 12, 3, 12, 894, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 899, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 945, 8, 14, 11, 14, 12, 14, 946, 1, 14, 1, 14, 1, 14, 4, 14, 952, 8, 14, 11, 14, 12, 14, 953, 1, 14, 1, 14, 1, 14, 3, 14, 959, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 982, 8, 21, 1, 21, 1, 21, 3, 21, 986, 8, 21, 1, 21, 1, 21, 3, 21, 990, 8, 21, 1, 21, 3, 21, 993, 8, 21, 1, 21, 1, 21, 3, 21, 997, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1008, 8, 21, 1, 21, 1, 21, 3, 21, 1012, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 3, 21, 1020, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1031, 8, 24, 1, 24, 1, 24, 3, 24, 1035, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1042, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1050, 8, 26, 1, 26, 3, 26, 1053, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1058, 8, 27, 1, 27, 1, 27, 3, 27, 1062, 8, 27, 1, 27, 3, 27, 1065, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1075, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1083, 8, 29, 5, 29, 1085, 8, 29, 10, 29, 12, 29, 1088, 9, 29, 3, 29, 1090, 8, 29, 1, 30, 1, 30, 3, 30, 1094, 8, 30, 1, 31, 1, 31, 3, 31, 1098, 8, 31, 1, 31, 3, 31, 1101, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1106, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1112, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1117, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 3, 32, 1126, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1137, 8, 33, 3, 33, 1139, 8, 33, 1, 33, 1, 33, 3, 33, 1143, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1153, 8, 36, 1, 36, 1, 36, 3, 36, 1157, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1163, 8, 36, 1, 36, 3, 36, 1166, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1178, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1186, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 3, 36, 1195, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1203, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1208, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1214, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1220, 8, 36, 1, 36, 3, 36, 1223, 8, 36, 1, 36, 3, 36, 1226, 8, 36, 1, 36, 3, 36, 1229, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1238, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1246, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1251, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1259, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1266, 8, 36, 1, 36, 3, 36, 1269, 8, 36, 1, 36, 3, 36, 1272, 8, 36, 3, 36, 1274, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1285, 8, 36, 3, 36, 1287, 8, 36, 1, 36, 3, 36, 1290, 8, 36, 1, 36, 3, 36, 1293, 8, 36, 1, 36, 3, 36, 1296, 8, 36, 1, 36, 3, 36, 1299, 8, 36, 1, 36, 3, 36, 1302, 8, 36, 3, 36, 1304, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1316, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1322, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1330, 8, 36, 3, 36, 1332, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1342, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1375, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1380, 8, 45, 1, 46, 1, 46, 3, 46, 1384, 8, 46, 1, 46, 1, 46, 3, 46, 1388, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1395, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1400, 8, 47, 10, 47, 12, 47, 1403, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1408, 8, 47, 1, 48, 1, 48, 3, 48, 1412, 8, 48, 1, 48, 3, 48, 1415, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1420, 8, 48, 10, 48, 12, 48, 1423, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1445, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1450, 8, 53, 1, 53, 1, 53, 3, 53, 1454, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1462, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1471, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1478, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1484, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1491, 8, 58, 1, 58, 3, 58, 1494, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1505, 8, 59, 10, 59, 12, 59, 1508, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1515, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1522, 8, 62, 10, 62, 12, 62, 1525, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1533, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1540, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1560, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1567, 8, 69, 3, 69, 1569, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1574, 8, 70, 10, 70, 12, 70, 1577, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1586, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1594, 8, 73, 1, 74, 1, 74, 3, 74, 1598, 8, 74, 1, 74, 1, 74, 3, 74, 1602, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1615, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1624, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1640, 8, 78, 1, 78, 1, 78, 3, 78, 1644, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1649, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1654, 8, 78, 1, 78, 3, 78, 1657, 8, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 3, 78, 1663, 8, 78, 1, 78, 3, 78, 1666, 8, 78, 1, 78, 3, 78, 1669, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1674, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1683, 8, 80, 1, 80, 1, 80, 3, 80, 1687, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1694, 8, 80, 1, 80, 3, 80, 1697, 8, 80, 1, 80, 3, 80, 1700, 8, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1715, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1721, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1747, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1755, 8, 88, 1, 88, 1, 88, 3, 88, 1759, 8, 88, 1, 88, 3, 88, 1762, 8, 88, 1, 88, 3, 88, 1765, 8, 88, 1, 88, 3, 88, 1768, 8, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 3, 88, 1774, 8, 88, 1, 88, 3, 88, 1777, 8, 88, 1, 88, 3, 88, 1780, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1789, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1799, 8, 90, 1, 90, 3, 90, 1802, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1822, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1828, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1834, 8, 94, 1, 94, 3, 94, 1837, 8, 94, 3, 94, 1839, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1846, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1853, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1866, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1871, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1878, 8, 101, 10, 101, 12, 101, 1881, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1886, 8, 102, 10, 102, 12, 102, 1889, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1896, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1909, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1922, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1938, 8, 105, 1, 106, 1, 106, 3, 106, 1942, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1957, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1963, 8, 110, 1, 110, 3, 110, 1966, 8, 110, 1, 110, 3, 110, 1969, 8, 110, 1, 110, 3, 110, 1972, 8, 110, 1, 110, 3, 110, 1975, 8, 110, 1, 111, 1, 111, 3, 111, 1979, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1992, 8, 114, 10, 114, 12, 114, 1995, 9, 114, 3, 114, 1997, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2006, 8, 116, 10, 116, 12, 116, 2009, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2022, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2056, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2064, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2069, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2077, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2082, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2087, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2092, 8, 124, 10, 124, 12, 124, 2095, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2100, 8, 125, 10, 125, 12, 125, 2103, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2108, 8, 126, 10, 126, 12, 126, 2111, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2116, 8, 127, 10, 127, 12, 127, 2119, 9, 127, 1, 128, 1, 128, 3, 128, 2123, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2135, 8, 131, 5, 131, 2137, 8, 131, 10, 131, 12, 131, 2140, 9, 131, 1, 132, 1, 132, 1, 132, 5, 132, 2145, 8, 132, 10, 132, 12, 132, 2148, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2156, 8, 134, 1, 134, 3, 134, 2159, 8, 134, 1, 135, 1, 135, 3, 135, 2163, 8, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 2170, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2176, 8, 139, 1, 139, 1, 139, 3, 139, 2180, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2186, 8, 140, 1, 141, 1, 141, 3, 141, 2190, 8, 141, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2202, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2211, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2222, 8, 145, 1, 146, 1, 146, 3, 146, 2226, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 2231, 8, 147, 10, 147, 12, 147, 2234, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2243, 8, 149, 10, 149, 12, 149, 2246, 9, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2255, 8, 152, 1, 152, 3, 152, 2258, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2263, 8, 153, 10, 153, 12, 153, 2266, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2271, 8, 154, 1, 155, 1, 155, 3, 155, 2275, 8, 155, 1, 155, 3, 155, 2278, 8, 155, 1, 155, 3, 155, 2281, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2287, 8, 156, 1, 157, 1, 157, 3, 157, 2291, 8, 157, 1, 158, 1, 158, 3, 158, 2295, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2300, 8, 159, 1, 159, 1, 159, 3, 159, 2304, 8, 159, 1, 160, 1, 160, 3, 160, 2308, 8, 160, 1, 161, 1, 161, 3, 161, 2312, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2320, 8, 161, 1, 162, 1, 162, 3, 162, 2324, 8, 162, 1, 162, 1, 162, 3, 162, 2328, 8, 162, 1, 163, 1, 163, 3, 163, 2332, 8, 163, 1, 164, 1, 164, 3, 164, 2336, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2344, 8, 164, 1, 165, 1, 165, 3, 165, 2348, 8, 165, 1, 165, 1, 165, 3, 165, 2352, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2360, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2365, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2370, 8, 168, 1, 169, 1, 169, 3, 169, 2374, 8, 169, 1, 170, 1, 170, 3, 170, 2378, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2385, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2392, 8, 173, 10, 173, 12, 173, 2395, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2402, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2414, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2432, 8, 175, 1, 175, 3, 175, 2435, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2441, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 3, 180, 2467, 8, 180, 1, 181, 3, 181, 2470, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2476, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2482, 8, 183, 10, 183, 12, 183, 2485, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2492, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2503, 8, 185, 10, 185, 12, 185, 2506, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2512, 8, 186, 1, 186, 3, 186, 2515, 8, 186, 1, 186, 3, 186, 2518, 8, 186, 1, 186, 3, 186, 2521, 8, 186, 1, 186, 3, 186, 2524, 8, 186, 1, 186, 3, 186, 2527, 8, 186, 1, 186, 3, 186, 2530, 8, 186, 1, 186, 3, 186, 2533, 8, 186, 1, 186, 3, 186, 2536, 8, 186, 1, 186, 3, 186, 2539, 8, 186, 1, 186, 3, 186, 2542, 8, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2547, 8, 186, 1, 186, 3, 186, 2550, 8, 186, 1, 186, 3, 186, 2553, 8, 186, 1, 186, 3, 186, 2556, 8, 186, 1, 186, 3, 186, 2559, 8, 186, 1, 186, 3, 186, 2562, 8, 186, 1, 186, 3, 186, 2565, 8, 186, 1, 186, 3, 186, 2568, 8, 186, 1, 186, 3, 186, 2571, 8, 186, 1, 186, 3, 186, 2574, 8, 186, 1, 186, 3, 186, 2577, 8, 186, 3, 186, 2579, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2585, 8, 187, 1, 188, 1, 188, 3, 188, 2589, 8, 188, 1, 188, 3, 188, 2592, 8, 188, 1, 188, 3, 188, 2595, 8, 188, 1, 188, 3, 188, 2598, 8, 188, 1, 188, 3, 188, 2601, 8, 188, 1, 188, 3, 188, 2604, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2611, 8, 188, 1, 189, 1, 189, 3, 189, 2615, 8, 189, 1, 189, 3, 189, 2618, 8, 189, 1, 189, 3, 189, 2621, 8, 189, 1, 189, 3, 189, 2624, 8, 189, 1, 189, 3, 189, 2627, 8, 189, 1, 189, 3, 189, 2630, 8, 189, 1, 190, 1, 190, 1, 190, 4, 190, 2635, 8, 190, 11, 190, 12, 190, 2636, 1, 191, 3, 191, 2640, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2648, 8, 192, 1, 192, 1, 192, 3, 192, 2652, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2659, 8, 192, 3, 192, 2661, 8, 192, 1, 193, 3, 193, 2664, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2669, 8, 193, 1, 193, 3, 193, 2672, 8, 193, 1, 193, 1, 193, 3, 193, 2676, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 2681, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2687, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 3, 196, 2695, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2701, 8, 197, 10, 197, 12, 197, 2704, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2711, 8, 198, 10, 198, 12, 198, 2714, 9, 198, 3, 198, 2716, 8, 198, 1, 198, 1, 198, 3, 198, 2720, 8, 198, 1, 198, 1, 198, 3, 198, 2724, 8, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2729, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2736, 8, 199, 1, 200, 1, 200, 5, 200, 2740, 8, 200, 10, 200, 12, 200, 2743, 9, 200, 1, 200, 3, 200, 2746, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2753, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2758, 8, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2771, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2779, 8, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2798, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2808, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2821, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2831, 8, 208, 1, 208, 1, 208, 3, 208, 2835, 8, 208, 4, 208, 2837, 8, 208, 11, 208, 12, 208, 2838, 1, 208, 1, 208, 5, 208, 2843, 8, 208, 10, 208, 12, 208, 2846, 9, 208, 1, 208, 1, 208, 5, 208, 2850, 8, 208, 10, 208, 12, 208, 2853, 9, 208, 1, 208, 1, 208, 5, 208, 2857, 8, 208, 10, 208, 12, 208, 2860, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2868, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2875, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2895, 8, 208, 1, 208, 3, 208, 2898, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2912, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2927, 8, 209, 1, 209, 1, 209, 3, 209, 2931, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 2949, 8, 209, 10, 209, 12, 209, 2952, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2963, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2969, 8, 209, 1, 209, 3, 209, 2972, 8, 209, 1, 209, 3, 209, 2975, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2981, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2987, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2994, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3002, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3008, 8, 209, 1, 209, 1, 209, 3, 209, 3012, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3017, 8, 209, 1, 209, 3, 209, 3020, 8, 209, 1, 209, 1, 209, 3, 209, 3024, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3031, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3036, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3041, 8, 209, 1, 209, 3, 209, 3044, 8, 209, 3, 209, 3046, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3054, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3062, 8, 210, 1, 210, 1, 210, 3, 210, 3066, 8, 210, 4, 210, 3068, 8, 210, 11, 210, 12, 210, 3069, 1, 210, 1, 210, 3, 210, 3074, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3091, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3108, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 3, 214, 3115, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3122, 8, 214, 10, 214, 12, 214, 3125, 9, 214, 1, 214, 1, 214, 3, 214, 3129, 8, 214, 1, 214, 3, 214, 3132, 8, 214, 1, 214, 3, 214, 3135, 8, 214, 1, 215, 1, 215, 3, 215, 3139, 8, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3154, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3168, 8, 217, 1, 217, 3, 217, 3171, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3182, 8, 218, 1, 219, 1, 219, 3, 219, 3186, 8, 219, 1, 219, 3, 219, 3189, 8, 219, 1, 219, 3, 219, 3192, 8, 219, 1, 219, 1, 219, 3, 219, 3196, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3201, 8, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 219, 3, 219, 3207, 8, 219, 1, 219, 3, 219, 3210, 8, 219, 1, 219, 3, 219, 3213, 8, 219, 1, 219, 3, 219, 3216, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3222, 8, 219, 1, 219, 3, 219, 3225, 8, 219, 1, 219, 3, 219, 3228, 8, 219, 1, 219, 3, 219, 3231, 8, 219, 1, 219, 3, 219, 3234, 8, 219, 1, 219, 3, 219, 3237, 8, 219, 1, 219, 3, 219, 3240, 8, 219, 1, 219, 3, 219, 3243, 8, 219, 1, 219, 3, 219, 3246, 8, 219, 1, 219, 3, 219, 3249, 8, 219, 1, 219, 1, 219, 3, 219, 3253, 8, 219, 3, 219, 3255, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3261, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3266, 8, 219, 1, 219, 3, 219, 3269, 8, 219, 1, 219, 3, 219, 3272, 8, 219, 1, 219, 3, 219, 3275, 8, 219, 1, 219, 3, 219, 3278, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3284, 8, 219, 1, 219, 3, 219, 3287, 8, 219, 1, 219, 3, 219, 3290, 8, 219, 1, 219, 3, 219, 3293, 8, 219, 1, 219, 3, 219, 3296, 8, 219, 1, 219, 3, 219, 3299, 8, 219, 1, 219, 3, 219, 3302, 8, 219, 1, 219, 3, 219, 3305, 8, 219, 1, 219, 3, 219, 3308, 8, 219, 1, 219, 3, 219, 3311, 8, 219, 1, 219, 1, 219, 3, 219, 3315, 8, 219, 3, 219, 3317, 8, 219, 3, 219, 3319, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3329, 8, 220, 1, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3342, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3347, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3354, 8, 222, 10, 222, 12, 222, 3357, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3364, 8, 223, 10, 223, 12, 223, 3367, 9, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3372, 8, 224, 10, 224, 12, 224, 3375, 9, 224, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 3384, 8, 226, 11, 226, 12, 226, 3385, 1, 226, 3, 226, 3389, 8, 226, 1, 227, 1, 227, 5, 227, 3393, 8, 227, 10, 227, 12, 227, 3396, 9, 227, 1, 227, 1, 227, 5, 227, 3400, 8, 227, 10, 227, 12, 227, 3403, 9, 227, 1, 227, 1, 227, 5, 227, 3407, 8, 227, 10, 227, 12, 227, 3410, 9, 227, 1, 227, 1, 227, 5, 227, 3414, 8, 227, 10, 227, 12, 227, 3417, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3423, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3432, 8, 228, 5, 228, 3434, 8, 228, 10, 228, 12, 228, 3437, 9, 228, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3443, 8, 229, 1, 229, 5, 229, 3446, 8, 229, 10, 229, 12, 229, 3449, 9, 229, 1, 230, 3, 230, 3452, 8, 230, 1, 230, 1, 230, 3, 230, 3456, 8, 230, 1, 230, 3, 230, 3459, 8, 230, 1, 230, 3, 230, 3462, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3473, 8, 231, 1, 231, 1, 231, 3, 231, 3477, 8, 231, 3, 231, 3479, 8, 231, 1, 231, 3, 231, 3482, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3493, 8, 232, 10, 232, 12, 232, 3496, 9, 232, 3, 232, 3498, 8, 232, 1, 232, 3, 232, 3501, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3511, 8, 232, 10, 232, 12, 232, 3514, 9, 232, 3, 232, 3516, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3523, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3530, 8, 232, 10, 232, 12, 232, 3533, 9, 232, 1, 232, 1, 232, 3, 232, 3537, 8, 232, 3, 232, 3539, 8, 232, 3, 232, 3541, 8, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 3556, 8, 234, 10, 234, 12, 234, 3559, 9, 234, 3, 234, 3561, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 3569, 8, 234, 1, 234, 3, 234, 3572, 8, 234, 1, 235, 1, 235, 3, 235, 3576, 8, 235, 1, 235, 3, 235, 3579, 8, 235, 1, 235, 3, 235, 3582, 8, 235, 1, 235, 3, 235, 3585, 8, 235, 1, 235, 3, 235, 3588, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 3600, 8, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 3, 239, 3608, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3615, 8, 240, 1, 240, 3, 240, 3618, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3625, 8, 241, 1, 241, 3, 241, 3628, 8, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3633, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3640, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3648, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3654, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3659, 8, 245, 1, 245, 1, 245, 3, 245, 3663, 8, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3668, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 3675, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 5, 247, 3687, 8, 247, 10, 247, 12, 247, 3690, 9, 247, 3, 247, 3692, 8, 247, 1, 247, 1, 247, 3, 247, 3696, 8, 247, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3705, 8, 249, 10, 249, 12, 249, 3708, 9, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3715, 8, 249, 10, 249, 12, 249, 3718, 9, 249, 3, 249, 3720, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 3727, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3734, 8, 250, 10, 250, 12, 250, 3737, 9, 250, 3, 250, 3739, 8, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 3745, 8, 251, 1, 251, 3, 251, 3748, 8, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3753, 8, 251, 10, 251, 12, 251, 3756, 9, 251, 1, 251, 1, 251, 3, 251, 3760, 8, 251, 1, 251, 3, 251, 3763, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3776, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3782, 8, 252, 3, 252, 3784, 8, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3792, 8, 253, 1, 253, 3, 253, 3795, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3803, 8, 253, 10, 253, 12, 253, 3806, 9, 253, 1, 253, 1, 253, 3, 253, 3810, 8, 253, 3, 253, 3812, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3824, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3830, 8, 254, 3, 254, 3832, 8, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 3839, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3844, 8, 256, 10, 256, 12, 256, 3847, 9, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3858, 8, 257, 10, 257, 12, 257, 3861, 9, 257, 1, 258, 1, 258, 1, 258, 3, 258, 3866, 8, 258, 1, 258, 3, 258, 3869, 8, 258, 1, 258, 3, 258, 3872, 8, 258, 1, 258, 3, 258, 3875, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3884, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3891, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3897, 8, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 3906, 8, 261, 1, 262, 1, 262, 3, 262, 3910, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3916, 8, 262, 10, 262, 12, 262, 3919, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 3928, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3936, 8, 263, 10, 263, 12, 263, 3939, 9, 263, 1, 263, 1, 263, 3, 263, 3943, 8, 263, 1, 264, 1, 264, 3, 264, 3947, 8, 264, 1, 264, 1, 264, 5, 264, 3951, 8, 264, 10, 264, 12, 264, 3954, 9, 264, 1, 264, 1, 264, 3, 264, 3958, 8, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 3, 267, 3968, 8, 267, 1, 268, 1, 268, 3, 268, 3972, 8, 268, 1, 268, 3, 268, 3975, 8, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3980, 8, 268, 1, 268, 3, 268, 3983, 8, 268, 5, 268, 3985, 8, 268, 10, 268, 12, 268, 3988, 9, 268, 1, 269, 1, 269, 3, 269, 3992, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 4, 271, 4001, 8, 271, 11, 271, 12, 271, 4002, 3, 271, 4005, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 5, 272, 4012, 8, 272, 10, 272, 12, 272, 4015, 9, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 4035, 8, 276, 10, 276, 12, 276, 4038, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 4045, 8, 276, 10, 276, 12, 276, 4048, 9, 276, 3, 276, 4050, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4057, 8, 277, 1, 277, 3, 277, 4060, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4070, 8, 277, 1, 277, 1, 277, 1, 277, 5, 277, 4075, 8, 277, 10, 277, 12, 277, 4078, 9, 277, 3, 277, 4080, 8, 277, 3, 277, 4082, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4093, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4103, 8, 277, 3, 277, 4105, 8, 277, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 4114, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 4119, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4128, 8, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 4, 283, 4139, 8, 283, 11, 283, 12, 283, 4140, 1, 283, 1, 283, 3, 283, 4145, 8, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 4, 284, 4155, 8, 284, 11, 284, 12, 284, 4156, 1, 284, 1, 284, 3, 284, 4161, 8, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4170, 8, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 4189, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 5, 288, 4205, 8, 288, 10, 288, 12, 288, 4208, 9, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4219, 8, 288, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 4234, 8, 290, 1, 290, 1, 290, 3, 290, 4238, 8, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4254, 8, 291, 1, 292, 1, 292, 1, 292, 5, 292, 4259, 8, 292, 10, 292, 12, 292, 4262, 9, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4275, 8, 293, 1, 294, 5, 294, 4278, 8, 294, 10, 294, 12, 294, 4281, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4290, 8, 294, 10, 294, 12, 294, 4293, 9, 294, 1, 295, 1, 295, 1, 295, 5, 295, 4298, 8, 295, 10, 295, 12, 295, 4301, 9, 295, 1, 296, 1, 296, 1, 296, 5, 296, 4306, 8, 296, 10, 296, 12, 296, 4309, 9, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4314, 8, 297, 10, 297, 12, 297, 4317, 9, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4322, 8, 298, 10, 298, 12, 298, 4325, 9, 298, 1, 299, 1, 299, 1, 299, 5, 299, 4330, 8, 299, 10, 299, 12, 299, 4333, 9, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4338, 8, 300, 10, 300, 12, 300, 4341, 9, 300, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 3, 303, 4351, 8, 303, 1, 303, 1, 303, 3, 303, 4355, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 4363, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 4379, 8, 305, 1, 306, 1, 306, 3, 306, 4383, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 4388, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4401, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 4410, 8, 310, 10, 310, 12, 310, 4413, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4421, 8, 311, 1, 312, 5, 312, 4424, 8, 312, 10, 312, 12, 312, 4427, 9, 312, 1, 312, 1, 312, 1, 312, 3, 312, 4432, 8, 312, 1, 313, 1, 313, 1, 313, 5, 313, 4437, 8, 313, 10, 313, 12, 313, 4440, 9, 313, 1, 314, 1, 314, 3, 314, 4444, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4451, 8, 315, 10, 315, 12, 315, 4454, 9, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 3, 316, 4461, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 5, 317, 4467, 8, 317, 10, 317, 12, 317, 4470, 9, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 3, 318, 4477, 8, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 4487, 8, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4492, 8, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 4551, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4557, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4566, 8, 327, 3, 327, 4568, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 4582, 8, 327, 10, 327, 12, 327, 4585, 9, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4592, 8, 327, 1, 327, 1, 327, 3, 327, 4596, 8, 327, 3, 327, 4598, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4604, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4609, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4626, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4652, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4657, 8, 327, 3, 327, 4659, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4687, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4704, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4709, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4718, 8, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 4729, 8, 329, 1, 330, 1, 330, 1, 330, 5, 330, 4734, 8, 330, 10, 330, 12, 330, 4737, 9, 330, 1, 331, 1, 331, 1, 331, 3, 331, 4742, 8, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4747, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 4772, 8, 343, 10, 343, 12, 343, 4775, 9, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4785, 8, 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, 3, 346, 4799, 8, 346, 1, 347, 1, 347, 1, 347, 5, 347, 4804, 8, 347, 10, 347, 12, 347, 4807, 9, 347, 1, 347, 1, 817, 0, 348, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 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, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5398, 0, 699, 1, 0, 0, 0, 2, 706, 1, 0, 0, 0, 4, 711, 1, 0, 0, 0, 6, 745, 1, 0, 0, 0, 8, 747, 1, 0, 0, 0, 10, 820, 1, 0, 0, 0, 12, 822, 1, 0, 0, 0, 14, 838, 1, 0, 0, 0, 16, 847, 1, 0, 0, 0, 18, 855, 1, 0, 0, 0, 20, 868, 1, 0, 0, 0, 22, 879, 1, 0, 0, 0, 24, 884, 1, 0, 0, 0, 26, 895, 1, 0, 0, 0, 28, 958, 1, 0, 0, 0, 30, 960, 1, 0, 0, 0, 32, 963, 1, 0, 0, 0, 34, 967, 1, 0, 0, 0, 36, 969, 1, 0, 0, 0, 38, 972, 1, 0, 0, 0, 40, 975, 1, 0, 0, 0, 42, 1019, 1, 0, 0, 0, 44, 1021, 1, 0, 0, 0, 46, 1024, 1, 0, 0, 0, 48, 1027, 1, 0, 0, 0, 50, 1036, 1, 0, 0, 0, 52, 1039, 1, 0, 0, 0, 54, 1054, 1, 0, 0, 0, 56, 1066, 1, 0, 0, 0, 58, 1071, 1, 0, 0, 0, 60, 1091, 1, 0, 0, 0, 62, 1095, 1, 0, 0, 0, 64, 1102, 1, 0, 0, 0, 66, 1127, 1, 0, 0, 0, 68, 1144, 1, 0, 0, 0, 70, 1146, 1, 0, 0, 0, 72, 1331, 1, 0, 0, 0, 74, 1341, 1, 0, 0, 0, 76, 1343, 1, 0, 0, 0, 78, 1348, 1, 0, 0, 0, 80, 1353, 1, 0, 0, 0, 82, 1355, 1, 0, 0, 0, 84, 1359, 1, 0, 0, 0, 86, 1363, 1, 0, 0, 0, 88, 1367, 1, 0, 0, 0, 90, 1371, 1, 0, 0, 0, 92, 1381, 1, 0, 0, 0, 94, 1392, 1, 0, 0, 0, 96, 1409, 1, 0, 0, 0, 98, 1427, 1, 0, 0, 0, 100, 1432, 1, 0, 0, 0, 102, 1435, 1, 0, 0, 0, 104, 1439, 1, 0, 0, 0, 106, 1446, 1, 0, 0, 0, 108, 1455, 1, 0, 0, 0, 110, 1461, 1, 0, 0, 0, 112, 1463, 1, 0, 0, 0, 114, 1477, 1, 0, 0, 0, 116, 1499, 1, 0, 0, 0, 118, 1501, 1, 0, 0, 0, 120, 1509, 1, 0, 0, 0, 122, 1516, 1, 0, 0, 0, 124, 1518, 1, 0, 0, 0, 126, 1532, 1, 0, 0, 0, 128, 1539, 1, 0, 0, 0, 130, 1541, 1, 0, 0, 0, 132, 1545, 1, 0, 0, 0, 134, 1549, 1, 0, 0, 0, 136, 1553, 1, 0, 0, 0, 138, 1557, 1, 0, 0, 0, 140, 1570, 1, 0, 0, 0, 142, 1578, 1, 0, 0, 0, 144, 1581, 1, 0, 0, 0, 146, 1583, 1, 0, 0, 0, 148, 1595, 1, 0, 0, 0, 150, 1605, 1, 0, 0, 0, 152, 1608, 1, 0, 0, 0, 154, 1619, 1, 0, 0, 0, 156, 1627, 1, 0, 0, 0, 158, 1670, 1, 0, 0, 0, 160, 1679, 1, 0, 0, 0, 162, 1707, 1, 0, 0, 0, 164, 1720, 1, 0, 0, 0, 166, 1722, 1, 0, 0, 0, 168, 1728, 1, 0, 0, 0, 170, 1731, 1, 0, 0, 0, 172, 1737, 1, 0, 0, 0, 174, 1743, 1, 0, 0, 0, 176, 1750, 1, 0, 0, 0, 178, 1784, 1, 0, 0, 0, 180, 1792, 1, 0, 0, 0, 182, 1805, 1, 0, 0, 0, 184, 1810, 1, 0, 0, 0, 186, 1821, 1, 0, 0, 0, 188, 1838, 1, 0, 0, 0, 190, 1840, 1, 0, 0, 0, 192, 1845, 1, 0, 0, 0, 194, 1852, 1, 0, 0, 0, 196, 1854, 1, 0, 0, 0, 198, 1857, 1, 0, 0, 0, 200, 1860, 1, 0, 0, 0, 202, 1874, 1, 0, 0, 0, 204, 1882, 1, 0, 0, 0, 206, 1908, 1, 0, 0, 0, 208, 1910, 1, 0, 0, 0, 210, 1927, 1, 0, 0, 0, 212, 1941, 1, 0, 0, 0, 214, 1943, 1, 0, 0, 0, 216, 1946, 1, 0, 0, 0, 218, 1949, 1, 0, 0, 0, 220, 1958, 1, 0, 0, 0, 222, 1978, 1, 0, 0, 0, 224, 1980, 1, 0, 0, 0, 226, 1983, 1, 0, 0, 0, 228, 1996, 1, 0, 0, 0, 230, 1998, 1, 0, 0, 0, 232, 2002, 1, 0, 0, 0, 234, 2010, 1, 0, 0, 0, 236, 2014, 1, 0, 0, 0, 238, 2023, 1, 0, 0, 0, 240, 2029, 1, 0, 0, 0, 242, 2035, 1, 0, 0, 0, 244, 2040, 1, 0, 0, 0, 246, 2086, 1, 0, 0, 0, 248, 2088, 1, 0, 0, 0, 250, 2096, 1, 0, 0, 0, 252, 2104, 1, 0, 0, 0, 254, 2112, 1, 0, 0, 0, 256, 2122, 1, 0, 0, 0, 258, 2124, 1, 0, 0, 0, 260, 2126, 1, 0, 0, 0, 262, 2128, 1, 0, 0, 0, 264, 2141, 1, 0, 0, 0, 266, 2149, 1, 0, 0, 0, 268, 2158, 1, 0, 0, 0, 270, 2162, 1, 0, 0, 0, 272, 2164, 1, 0, 0, 0, 274, 2169, 1, 0, 0, 0, 276, 2171, 1, 0, 0, 0, 278, 2175, 1, 0, 0, 0, 280, 2181, 1, 0, 0, 0, 282, 2189, 1, 0, 0, 0, 284, 2191, 1, 0, 0, 0, 286, 2194, 1, 0, 0, 0, 288, 2201, 1, 0, 0, 0, 290, 2212, 1, 0, 0, 0, 292, 2225, 1, 0, 0, 0, 294, 2227, 1, 0, 0, 0, 296, 2235, 1, 0, 0, 0, 298, 2239, 1, 0, 0, 0, 300, 2247, 1, 0, 0, 0, 302, 2249, 1, 0, 0, 0, 304, 2252, 1, 0, 0, 0, 306, 2259, 1, 0, 0, 0, 308, 2267, 1, 0, 0, 0, 310, 2274, 1, 0, 0, 0, 312, 2282, 1, 0, 0, 0, 314, 2290, 1, 0, 0, 0, 316, 2294, 1, 0, 0, 0, 318, 2296, 1, 0, 0, 0, 320, 2307, 1, 0, 0, 0, 322, 2311, 1, 0, 0, 0, 324, 2323, 1, 0, 0, 0, 326, 2331, 1, 0, 0, 0, 328, 2335, 1, 0, 0, 0, 330, 2347, 1, 0, 0, 0, 332, 2359, 1, 0, 0, 0, 334, 2364, 1, 0, 0, 0, 336, 2369, 1, 0, 0, 0, 338, 2371, 1, 0, 0, 0, 340, 2375, 1, 0, 0, 0, 342, 2379, 1, 0, 0, 0, 344, 2386, 1, 0, 0, 0, 346, 2388, 1, 0, 0, 0, 348, 2401, 1, 0, 0, 0, 350, 2440, 1, 0, 0, 0, 352, 2442, 1, 0, 0, 0, 354, 2447, 1, 0, 0, 0, 356, 2452, 1, 0, 0, 0, 358, 2459, 1, 0, 0, 0, 360, 2464, 1, 0, 0, 0, 362, 2469, 1, 0, 0, 0, 364, 2475, 1, 0, 0, 0, 366, 2477, 1, 0, 0, 0, 368, 2486, 1, 0, 0, 0, 370, 2498, 1, 0, 0, 0, 372, 2578, 1, 0, 0, 0, 374, 2584, 1, 0, 0, 0, 376, 2610, 1, 0, 0, 0, 378, 2612, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2639, 1, 0, 0, 0, 384, 2643, 1, 0, 0, 0, 386, 2675, 1, 0, 0, 0, 388, 2677, 1, 0, 0, 0, 390, 2688, 1, 0, 0, 0, 392, 2694, 1, 0, 0, 0, 394, 2696, 1, 0, 0, 0, 396, 2728, 1, 0, 0, 0, 398, 2735, 1, 0, 0, 0, 400, 2741, 1, 0, 0, 0, 402, 2747, 1, 0, 0, 0, 404, 2762, 1, 0, 0, 0, 406, 2772, 1, 0, 0, 0, 408, 2780, 1, 0, 0, 0, 410, 2783, 1, 0, 0, 0, 412, 2786, 1, 0, 0, 0, 414, 2789, 1, 0, 0, 0, 416, 2911, 1, 0, 0, 0, 418, 3045, 1, 0, 0, 0, 420, 3073, 1, 0, 0, 0, 422, 3090, 1, 0, 0, 0, 424, 3107, 1, 0, 0, 0, 426, 3109, 1, 0, 0, 0, 428, 3112, 1, 0, 0, 0, 430, 3138, 1, 0, 0, 0, 432, 3143, 1, 0, 0, 0, 434, 3170, 1, 0, 0, 0, 436, 3181, 1, 0, 0, 0, 438, 3318, 1, 0, 0, 0, 440, 3320, 1, 0, 0, 0, 442, 3343, 1, 0, 0, 0, 444, 3355, 1, 0, 0, 0, 446, 3360, 1, 0, 0, 0, 448, 3368, 1, 0, 0, 0, 450, 3376, 1, 0, 0, 0, 452, 3388, 1, 0, 0, 0, 454, 3422, 1, 0, 0, 0, 456, 3424, 1, 0, 0, 0, 458, 3442, 1, 0, 0, 0, 460, 3451, 1, 0, 0, 0, 462, 3481, 1, 0, 0, 0, 464, 3540, 1, 0, 0, 0, 466, 3542, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3573, 1, 0, 0, 0, 472, 3589, 1, 0, 0, 0, 474, 3601, 1, 0, 0, 0, 476, 3603, 1, 0, 0, 0, 478, 3607, 1, 0, 0, 0, 480, 3617, 1, 0, 0, 0, 482, 3627, 1, 0, 0, 0, 484, 3632, 1, 0, 0, 0, 486, 3639, 1, 0, 0, 0, 488, 3643, 1, 0, 0, 0, 490, 3662, 1, 0, 0, 0, 492, 3667, 1, 0, 0, 0, 494, 3669, 1, 0, 0, 0, 496, 3697, 1, 0, 0, 0, 498, 3700, 1, 0, 0, 0, 500, 3721, 1, 0, 0, 0, 502, 3762, 1, 0, 0, 0, 504, 3764, 1, 0, 0, 0, 506, 3811, 1, 0, 0, 0, 508, 3813, 1, 0, 0, 0, 510, 3838, 1, 0, 0, 0, 512, 3840, 1, 0, 0, 0, 514, 3848, 1, 0, 0, 0, 516, 3874, 1, 0, 0, 0, 518, 3876, 1, 0, 0, 0, 520, 3896, 1, 0, 0, 0, 522, 3898, 1, 0, 0, 0, 524, 3909, 1, 0, 0, 0, 526, 3922, 1, 0, 0, 0, 528, 3957, 1, 0, 0, 0, 530, 3959, 1, 0, 0, 0, 532, 3962, 1, 0, 0, 0, 534, 3967, 1, 0, 0, 0, 536, 3969, 1, 0, 0, 0, 538, 3991, 1, 0, 0, 0, 540, 3993, 1, 0, 0, 0, 542, 3997, 1, 0, 0, 0, 544, 4006, 1, 0, 0, 0, 546, 4016, 1, 0, 0, 0, 548, 4020, 1, 0, 0, 0, 550, 4024, 1, 0, 0, 0, 552, 4028, 1, 0, 0, 0, 554, 4104, 1, 0, 0, 0, 556, 4106, 1, 0, 0, 0, 558, 4109, 1, 0, 0, 0, 560, 4113, 1, 0, 0, 0, 562, 4118, 1, 0, 0, 0, 564, 4120, 1, 0, 0, 0, 566, 4131, 1, 0, 0, 0, 568, 4148, 1, 0, 0, 0, 570, 4164, 1, 0, 0, 0, 572, 4173, 1, 0, 0, 0, 574, 4188, 1, 0, 0, 0, 576, 4218, 1, 0, 0, 0, 578, 4220, 1, 0, 0, 0, 580, 4237, 1, 0, 0, 0, 582, 4253, 1, 0, 0, 0, 584, 4255, 1, 0, 0, 0, 586, 4274, 1, 0, 0, 0, 588, 4279, 1, 0, 0, 0, 590, 4294, 1, 0, 0, 0, 592, 4302, 1, 0, 0, 0, 594, 4310, 1, 0, 0, 0, 596, 4318, 1, 0, 0, 0, 598, 4326, 1, 0, 0, 0, 600, 4334, 1, 0, 0, 0, 602, 4342, 1, 0, 0, 0, 604, 4344, 1, 0, 0, 0, 606, 4354, 1, 0, 0, 0, 608, 4362, 1, 0, 0, 0, 610, 4378, 1, 0, 0, 0, 612, 4382, 1, 0, 0, 0, 614, 4387, 1, 0, 0, 0, 616, 4389, 1, 0, 0, 0, 618, 4400, 1, 0, 0, 0, 620, 4402, 1, 0, 0, 0, 622, 4420, 1, 0, 0, 0, 624, 4425, 1, 0, 0, 0, 626, 4433, 1, 0, 0, 0, 628, 4441, 1, 0, 0, 0, 630, 4445, 1, 0, 0, 0, 632, 4457, 1, 0, 0, 0, 634, 4462, 1, 0, 0, 0, 636, 4473, 1, 0, 0, 0, 638, 4480, 1, 0, 0, 0, 640, 4482, 1, 0, 0, 0, 642, 4486, 1, 0, 0, 0, 644, 4488, 1, 0, 0, 0, 646, 4493, 1, 0, 0, 0, 648, 4495, 1, 0, 0, 0, 650, 4497, 1, 0, 0, 0, 652, 4550, 1, 0, 0, 0, 654, 4717, 1, 0, 0, 0, 656, 4719, 1, 0, 0, 0, 658, 4728, 1, 0, 0, 0, 660, 4730, 1, 0, 0, 0, 662, 4741, 1, 0, 0, 0, 664, 4743, 1, 0, 0, 0, 666, 4748, 1, 0, 0, 0, 668, 4750, 1, 0, 0, 0, 670, 4752, 1, 0, 0, 0, 672, 4754, 1, 0, 0, 0, 674, 4756, 1, 0, 0, 0, 676, 4758, 1, 0, 0, 0, 678, 4760, 1, 0, 0, 0, 680, 4762, 1, 0, 0, 0, 682, 4764, 1, 0, 0, 0, 684, 4766, 1, 0, 0, 0, 686, 4768, 1, 0, 0, 0, 688, 4776, 1, 0, 0, 0, 690, 4784, 1, 0, 0, 0, 692, 4798, 1, 0, 0, 0, 694, 4800, 1, 0, 0, 0, 696, 698, 3, 2, 1, 0, 697, 696, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 702, 1, 0, 0, 0, 701, 699, 1, 0, 0, 0, 702, 703, 5, 0, 0, 1, 703, 1, 1, 0, 0, 0, 704, 707, 3, 4, 2, 0, 705, 707, 3, 10, 5, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 709, 1, 0, 0, 0, 708, 710, 5, 398, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 3, 1, 0, 0, 0, 711, 721, 5, 119, 0, 0, 712, 714, 3, 6, 3, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 722, 3, 10, 5, 0, 719, 720, 5, 284, 0, 0, 720, 722, 3, 362, 181, 0, 721, 715, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 5, 1, 0, 0, 0, 723, 746, 5, 122, 0, 0, 724, 746, 5, 138, 0, 0, 725, 746, 5, 88, 0, 0, 726, 728, 5, 37, 0, 0, 727, 729, 7, 0, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 746, 1, 0, 0, 0, 730, 746, 5, 192, 0, 0, 731, 746, 5, 21, 0, 0, 732, 746, 5, 10, 0, 0, 733, 746, 5, 275, 0, 0, 734, 746, 5, 191, 0, 0, 735, 746, 5, 19, 0, 0, 736, 738, 5, 377, 0, 0, 737, 739, 5, 225, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 741, 1, 0, 0, 0, 740, 742, 3, 8, 4, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 746, 1, 0, 0, 0, 743, 746, 5, 79, 0, 0, 744, 746, 5, 78, 0, 0, 745, 723, 1, 0, 0, 0, 745, 724, 1, 0, 0, 0, 745, 725, 1, 0, 0, 0, 745, 726, 1, 0, 0, 0, 745, 730, 1, 0, 0, 0, 745, 731, 1, 0, 0, 0, 745, 732, 1, 0, 0, 0, 745, 733, 1, 0, 0, 0, 745, 734, 1, 0, 0, 0, 745, 735, 1, 0, 0, 0, 745, 736, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 744, 1, 0, 0, 0, 746, 7, 1, 0, 0, 0, 747, 748, 7, 1, 0, 0, 748, 9, 1, 0, 0, 0, 749, 821, 3, 362, 181, 0, 750, 821, 3, 12, 6, 0, 751, 821, 3, 16, 8, 0, 752, 821, 3, 18, 9, 0, 753, 821, 3, 20, 10, 0, 754, 821, 3, 24, 12, 0, 755, 756, 5, 277, 0, 0, 756, 757, 5, 320, 0, 0, 757, 760, 3, 474, 237, 0, 758, 759, 5, 387, 0, 0, 759, 761, 3, 230, 115, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 821, 1, 0, 0, 0, 762, 821, 3, 28, 14, 0, 763, 764, 5, 86, 0, 0, 764, 765, 5, 139, 0, 0, 765, 767, 3, 480, 240, 0, 766, 768, 3, 496, 248, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 821, 1, 0, 0, 0, 769, 770, 5, 365, 0, 0, 770, 771, 3, 480, 240, 0, 771, 773, 3, 394, 197, 0, 772, 774, 3, 496, 248, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 821, 1, 0, 0, 0, 775, 821, 3, 396, 198, 0, 776, 778, 5, 203, 0, 0, 777, 779, 5, 436, 0, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 5, 166, 0, 0, 781, 786, 3, 480, 240, 0, 782, 784, 5, 17, 0, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 3, 642, 321, 0, 786, 783, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 5, 370, 0, 0, 789, 790, 3, 458, 229, 0, 790, 791, 5, 224, 0, 0, 791, 792, 3, 584, 292, 0, 792, 793, 3, 400, 200, 0, 793, 821, 1, 0, 0, 0, 794, 795, 5, 249, 0, 0, 795, 796, 3, 642, 321, 0, 796, 797, 5, 139, 0, 0, 797, 798, 3, 362, 181, 0, 798, 821, 1, 0, 0, 0, 799, 800, 5, 115, 0, 0, 800, 801, 3, 642, 321, 0, 801, 802, 5, 370, 0, 0, 802, 803, 3, 298, 149, 0, 803, 821, 1, 0, 0, 0, 804, 805, 5, 304, 0, 0, 805, 810, 3, 652, 326, 0, 806, 807, 7, 2, 0, 0, 807, 809, 3, 652, 326, 0, 808, 806, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 817, 5, 405, 0, 0, 814, 816, 9, 0, 0, 0, 815, 814, 1, 0, 0, 0, 816, 819, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 820, 749, 1, 0, 0, 0, 820, 750, 1, 0, 0, 0, 820, 751, 1, 0, 0, 0, 820, 752, 1, 0, 0, 0, 820, 753, 1, 0, 0, 0, 820, 754, 1, 0, 0, 0, 820, 755, 1, 0, 0, 0, 820, 762, 1, 0, 0, 0, 820, 763, 1, 0, 0, 0, 820, 769, 1, 0, 0, 0, 820, 775, 1, 0, 0, 0, 820, 776, 1, 0, 0, 0, 820, 794, 1, 0, 0, 0, 820, 799, 1, 0, 0, 0, 820, 804, 1, 0, 0, 0, 821, 11, 1, 0, 0, 0, 822, 823, 5, 187, 0, 0, 823, 825, 5, 66, 0, 0, 824, 826, 5, 188, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 5, 158, 0, 0, 828, 830, 5, 426, 0, 0, 829, 831, 5, 235, 0, 0, 830, 829, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 5, 166, 0, 0, 833, 834, 5, 329, 0, 0, 834, 836, 3, 628, 314, 0, 835, 837, 3, 56, 28, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 13, 1, 0, 0, 0, 838, 840, 5, 134, 0, 0, 839, 841, 5, 204, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 279, 0, 0, 843, 844, 5, 399, 0, 0, 844, 845, 5, 426, 0, 0, 845, 846, 5, 400, 0, 0, 846, 15, 1, 0, 0, 0, 847, 848, 5, 120, 0, 0, 848, 849, 5, 329, 0, 0, 849, 850, 3, 628, 314, 0, 850, 851, 5, 341, 0, 0, 851, 853, 5, 426, 0, 0, 852, 854, 3, 14, 7, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 17, 1, 0, 0, 0, 855, 861, 5, 153, 0, 0, 856, 858, 5, 123, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 329, 0, 0, 860, 862, 3, 628, 314, 0, 861, 857, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 139, 0, 0, 864, 866, 5, 426, 0, 0, 865, 867, 3, 426, 213, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 19, 1, 0, 0, 0, 868, 869, 5, 277, 0, 0, 869, 870, 5, 103, 0, 0, 870, 873, 3, 22, 11, 0, 871, 872, 5, 278, 0, 0, 872, 874, 3, 22, 11, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 877, 1, 0, 0, 0, 875, 876, 5, 387, 0, 0, 876, 878, 3, 230, 115, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 21, 1, 0, 0, 0, 879, 882, 3, 474, 237, 0, 880, 881, 5, 395, 0, 0, 881, 883, 3, 26, 13, 0, 882, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 23, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 187, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 166, 0, 0, 888, 890, 3, 474, 237, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 25, 1, 0, 0, 0, 895, 898, 5, 426, 0, 0, 896, 897, 5, 395, 0, 0, 897, 899, 5, 426, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 27, 1, 0, 0, 0, 900, 959, 3, 42, 21, 0, 901, 959, 3, 46, 23, 0, 902, 959, 3, 48, 24, 0, 903, 959, 3, 438, 219, 0, 904, 959, 3, 54, 27, 0, 905, 959, 3, 52, 26, 0, 906, 959, 3, 414, 207, 0, 907, 959, 3, 64, 32, 0, 908, 959, 3, 72, 36, 0, 909, 959, 3, 138, 69, 0, 910, 959, 3, 160, 80, 0, 911, 959, 3, 176, 88, 0, 912, 959, 3, 180, 90, 0, 913, 959, 3, 184, 92, 0, 914, 959, 3, 182, 91, 0, 915, 959, 3, 174, 87, 0, 916, 959, 3, 178, 89, 0, 917, 959, 3, 146, 73, 0, 918, 959, 3, 152, 76, 0, 919, 959, 3, 148, 74, 0, 920, 959, 3, 150, 75, 0, 921, 959, 3, 154, 77, 0, 922, 959, 3, 156, 78, 0, 923, 959, 3, 158, 79, 0, 924, 959, 3, 66, 33, 0, 925, 959, 3, 76, 38, 0, 926, 959, 3, 82, 41, 0, 927, 959, 3, 78, 39, 0, 928, 959, 3, 84, 42, 0, 929, 959, 3, 86, 43, 0, 930, 959, 3, 88, 44, 0, 931, 959, 3, 90, 45, 0, 932, 959, 3, 92, 46, 0, 933, 959, 3, 106, 53, 0, 934, 959, 3, 98, 49, 0, 935, 959, 3, 108, 54, 0, 936, 959, 3, 100, 50, 0, 937, 959, 3, 94, 47, 0, 938, 959, 3, 96, 48, 0, 939, 959, 3, 104, 52, 0, 940, 959, 3, 102, 51, 0, 941, 942, 5, 1, 0, 0, 942, 944, 7, 3, 0, 0, 943, 945, 5, 431, 0, 0, 944, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 959, 1, 0, 0, 0, 948, 949, 5, 176, 0, 0, 949, 951, 5, 258, 0, 0, 950, 952, 5, 426, 0, 0, 951, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 959, 1, 0, 0, 0, 955, 959, 3, 654, 327, 0, 956, 959, 3, 440, 220, 0, 957, 959, 3, 442, 221, 0, 958, 900, 1, 0, 0, 0, 958, 901, 1, 0, 0, 0, 958, 902, 1, 0, 0, 0, 958, 903, 1, 0, 0, 0, 958, 904, 1, 0, 0, 0, 958, 905, 1, 0, 0, 0, 958, 906, 1, 0, 0, 0, 958, 907, 1, 0, 0, 0, 958, 908, 1, 0, 0, 0, 958, 909, 1, 0, 0, 0, 958, 910, 1, 0, 0, 0, 958, 911, 1, 0, 0, 0, 958, 912, 1, 0, 0, 0, 958, 913, 1, 0, 0, 0, 958, 914, 1, 0, 0, 0, 958, 915, 1, 0, 0, 0, 958, 916, 1, 0, 0, 0, 958, 917, 1, 0, 0, 0, 958, 918, 1, 0, 0, 0, 958, 919, 1, 0, 0, 0, 958, 920, 1, 0, 0, 0, 958, 921, 1, 0, 0, 0, 958, 922, 1, 0, 0, 0, 958, 923, 1, 0, 0, 0, 958, 924, 1, 0, 0, 0, 958, 925, 1, 0, 0, 0, 958, 926, 1, 0, 0, 0, 958, 927, 1, 0, 0, 0, 958, 928, 1, 0, 0, 0, 958, 929, 1, 0, 0, 0, 958, 930, 1, 0, 0, 0, 958, 931, 1, 0, 0, 0, 958, 932, 1, 0, 0, 0, 958, 933, 1, 0, 0, 0, 958, 934, 1, 0, 0, 0, 958, 935, 1, 0, 0, 0, 958, 936, 1, 0, 0, 0, 958, 937, 1, 0, 0, 0, 958, 938, 1, 0, 0, 0, 958, 939, 1, 0, 0, 0, 958, 940, 1, 0, 0, 0, 958, 941, 1, 0, 0, 0, 958, 948, 1, 0, 0, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 29, 1, 0, 0, 0, 960, 961, 5, 151, 0, 0, 961, 962, 5, 117, 0, 0, 962, 31, 1, 0, 0, 0, 963, 964, 5, 151, 0, 0, 964, 965, 5, 216, 0, 0, 965, 966, 5, 117, 0, 0, 966, 33, 1, 0, 0, 0, 967, 968, 7, 4, 0, 0, 968, 35, 1, 0, 0, 0, 969, 970, 3, 666, 333, 0, 970, 971, 5, 284, 0, 0, 971, 37, 1, 0, 0, 0, 972, 973, 3, 668, 334, 0, 973, 974, 5, 284, 0, 0, 974, 39, 1, 0, 0, 0, 975, 976, 5, 321, 0, 0, 976, 977, 5, 17, 0, 0, 977, 978, 5, 92, 0, 0, 978, 41, 1, 0, 0, 0, 979, 981, 5, 58, 0, 0, 980, 982, 5, 273, 0, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 70, 35, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 989, 3, 476, 238, 0, 988, 990, 3, 50, 25, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 992, 1, 0, 0, 0, 991, 993, 3, 426, 213, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 996, 1, 0, 0, 0, 994, 995, 5, 196, 0, 0, 995, 997, 5, 426, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 1001, 1, 0, 0, 0, 998, 999, 5, 387, 0, 0, 999, 1000, 5, 76, 0, 0, 1000, 1002, 3, 230, 115, 0, 1001, 998, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1020, 1, 0, 0, 0, 1003, 1004, 5, 58, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1007, 3, 70, 35, 0, 1006, 1008, 3, 32, 16, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 3, 476, 238, 0, 1010, 1012, 3, 50, 25, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 3, 44, 22, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1020, 1, 0, 0, 0, 1019, 979, 1, 0, 0, 0, 1019, 1003, 1, 0, 0, 0, 1020, 43, 1, 0, 0, 0, 1021, 1022, 5, 370, 0, 0, 1022, 1023, 3, 474, 237, 0, 1023, 45, 1, 0, 0, 0, 1024, 1025, 5, 368, 0, 0, 1025, 1026, 3, 474, 237, 0, 1026, 47, 1, 0, 0, 0, 1027, 1028, 5, 101, 0, 0, 1028, 1030, 3, 70, 35, 0, 1029, 1031, 3, 30, 15, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1034, 3, 474, 237, 0, 1033, 1035, 3, 34, 17, 0, 1034, 1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 49, 1, 0, 0, 0, 1036, 1037, 5, 47, 0, 0, 1037, 1038, 5, 426, 0, 0, 1038, 51, 1, 0, 0, 0, 1039, 1041, 5, 351, 0, 0, 1040, 1042, 5, 329, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1049, 3, 628, 314, 0, 1044, 1045, 5, 46, 0, 0, 1045, 1046, 5, 399, 0, 0, 1046, 1047, 3, 254, 127, 0, 1047, 1048, 5, 400, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1044, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1052, 1, 0, 0, 0, 1051, 1053, 5, 135, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 53, 1, 0, 0, 0, 1054, 1055, 5, 101, 0, 0, 1055, 1057, 5, 329, 0, 0, 1056, 1058, 3, 30, 15, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 3, 480, 240, 0, 1060, 1062, 5, 255, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1065, 3, 14, 7, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 55, 1, 0, 0, 0, 1066, 1067, 5, 160, 0, 0, 1067, 1068, 5, 426, 0, 0, 1068, 1069, 5, 301, 0, 0, 1069, 1070, 5, 426, 0, 0, 1070, 57, 1, 0, 0, 0, 1071, 1074, 3, 642, 321, 0, 1072, 1073, 5, 395, 0, 0, 1073, 1075, 3, 642, 321, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1089, 1, 0, 0, 0, 1076, 1086, 3, 642, 321, 0, 1077, 1082, 5, 395, 0, 0, 1078, 1083, 5, 104, 0, 0, 1079, 1083, 5, 175, 0, 0, 1080, 1083, 5, 375, 0, 0, 1081, 1083, 3, 642, 321, 0, 1082, 1078, 1, 0, 0, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1077, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1076, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 59, 1, 0, 0, 0, 1091, 1093, 3, 58, 29, 0, 1092, 1094, 3, 630, 315, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 61, 1, 0, 0, 0, 1095, 1097, 3, 478, 239, 0, 1096, 1098, 3, 630, 315, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 262, 131, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 63, 1, 0, 0, 0, 1102, 1125, 7, 5, 0, 0, 1103, 1105, 3, 70, 35, 0, 1104, 1106, 5, 122, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 474, 237, 0, 1108, 1126, 1, 0, 0, 0, 1109, 1111, 5, 69, 0, 0, 1110, 1112, 5, 122, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1126, 3, 474, 237, 0, 1114, 1116, 5, 141, 0, 0, 1115, 1117, 5, 122, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1126, 3, 560, 280, 0, 1119, 1122, 5, 138, 0, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1126, 3, 62, 31, 0, 1124, 1126, 3, 62, 31, 0, 1125, 1103, 1, 0, 0, 0, 1125, 1109, 1, 0, 0, 0, 1125, 1114, 1, 0, 0, 0, 1125, 1121, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 65, 1, 0, 0, 0, 1127, 1128, 5, 10, 0, 0, 1128, 1129, 5, 329, 0, 0, 1129, 1142, 3, 628, 314, 0, 1130, 1131, 5, 52, 0, 0, 1131, 1138, 5, 319, 0, 0, 1132, 1139, 5, 215, 0, 0, 1133, 1134, 5, 134, 0, 0, 1134, 1136, 5, 46, 0, 0, 1135, 1137, 3, 254, 127, 0, 1136, 1135, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 1, 0, 0, 0, 1138, 1132, 1, 0, 0, 0, 1138, 1133, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1143, 1, 0, 0, 0, 1140, 1141, 5, 33, 0, 0, 1141, 1143, 5, 204, 0, 0, 1142, 1130, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 67, 1, 0, 0, 0, 1144, 1145, 7, 6, 0, 0, 1145, 69, 1, 0, 0, 0, 1146, 1147, 7, 7, 0, 0, 1147, 71, 1, 0, 0, 0, 1148, 1149, 5, 308, 0, 0, 1149, 1152, 7, 8, 0, 0, 1150, 1151, 5, 184, 0, 0, 1151, 1153, 3, 194, 97, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1332, 1, 0, 0, 0, 1154, 1156, 5, 308, 0, 0, 1155, 1157, 5, 122, 0, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1162, 5, 330, 0, 0, 1159, 1160, 3, 68, 34, 0, 1160, 1161, 3, 474, 237, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1159, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1166, 3, 74, 37, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1332, 1, 0, 0, 0, 1167, 1168, 5, 308, 0, 0, 1168, 1172, 5, 379, 0, 0, 1169, 1170, 3, 68, 34, 0, 1170, 1171, 3, 474, 237, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1177, 1, 0, 0, 0, 1174, 1175, 5, 184, 0, 0, 1175, 1178, 3, 194, 97, 0, 1176, 1178, 3, 194, 97, 0, 1177, 1174, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1332, 1, 0, 0, 0, 1179, 1180, 5, 308, 0, 0, 1180, 1181, 5, 202, 0, 0, 1181, 1185, 5, 379, 0, 0, 1182, 1183, 3, 68, 34, 0, 1183, 1184, 3, 474, 237, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1182, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1190, 1, 0, 0, 0, 1187, 1188, 5, 184, 0, 0, 1188, 1191, 3, 194, 97, 0, 1189, 1191, 3, 194, 97, 0, 1190, 1187, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1332, 1, 0, 0, 0, 1192, 1194, 5, 308, 0, 0, 1193, 1195, 5, 315, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 46, 0, 0, 1197, 1198, 3, 68, 34, 0, 1198, 1202, 3, 478, 239, 0, 1199, 1200, 3, 68, 34, 0, 1200, 1201, 3, 474, 237, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1199, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1207, 1, 0, 0, 0, 1204, 1205, 5, 184, 0, 0, 1205, 1208, 3, 194, 97, 0, 1206, 1208, 3, 194, 97, 0, 1207, 1204, 1, 0, 0, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1332, 1, 0, 0, 0, 1209, 1210, 5, 308, 0, 0, 1210, 1213, 5, 142, 0, 0, 1211, 1212, 5, 184, 0, 0, 1212, 1214, 3, 560, 280, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1332, 1, 0, 0, 0, 1215, 1216, 5, 308, 0, 0, 1216, 1217, 5, 239, 0, 0, 1217, 1219, 3, 478, 239, 0, 1218, 1220, 3, 630, 315, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1223, 3, 496, 248, 0, 1222, 1221, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1226, 3, 544, 272, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 1, 0, 0, 0, 1227, 1229, 3, 388, 194, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1332, 1, 0, 0, 0, 1230, 1231, 5, 308, 0, 0, 1231, 1237, 5, 58, 0, 0, 1232, 1233, 3, 70, 35, 0, 1233, 1234, 3, 474, 237, 0, 1234, 1238, 1, 0, 0, 0, 1235, 1236, 5, 329, 0, 0, 1236, 1238, 3, 480, 240, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1332, 1, 0, 0, 0, 1239, 1240, 5, 308, 0, 0, 1240, 1241, 5, 329, 0, 0, 1241, 1245, 5, 122, 0, 0, 1242, 1243, 3, 68, 34, 0, 1243, 1244, 3, 474, 237, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1242, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 5, 184, 0, 0, 1248, 1250, 3, 194, 97, 0, 1249, 1251, 3, 630, 315, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1332, 1, 0, 0, 0, 1252, 1253, 5, 308, 0, 0, 1253, 1254, 5, 332, 0, 0, 1254, 1258, 3, 480, 240, 0, 1255, 1256, 5, 399, 0, 0, 1256, 1257, 5, 426, 0, 0, 1257, 1259, 5, 400, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1332, 1, 0, 0, 0, 1260, 1261, 5, 308, 0, 0, 1261, 1273, 5, 191, 0, 0, 1262, 1263, 3, 70, 35, 0, 1263, 1265, 3, 474, 237, 0, 1264, 1266, 5, 122, 0, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1274, 1, 0, 0, 0, 1267, 1269, 3, 60, 30, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1272, 5, 122, 0, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1262, 1, 0, 0, 0, 1273, 1268, 1, 0, 0, 0, 1274, 1332, 1, 0, 0, 0, 1275, 1276, 5, 308, 0, 0, 1276, 1303, 5, 50, 0, 0, 1277, 1278, 5, 51, 0, 0, 1278, 1279, 5, 405, 0, 0, 1279, 1304, 5, 431, 0, 0, 1280, 1281, 3, 70, 35, 0, 1281, 1282, 3, 474, 237, 0, 1282, 1287, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1280, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 3, 408, 204, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 410, 205, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 412, 206, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 544, 272, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 388, 194, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 1, 0, 0, 0, 1303, 1277, 1, 0, 0, 0, 1303, 1286, 1, 0, 0, 0, 1304, 1332, 1, 0, 0, 0, 1305, 1306, 5, 308, 0, 0, 1306, 1332, 5, 346, 0, 0, 1307, 1308, 5, 308, 0, 0, 1308, 1309, 5, 54, 0, 0, 1309, 1332, 5, 426, 0, 0, 1310, 1311, 5, 308, 0, 0, 1311, 1315, 5, 280, 0, 0, 1312, 1313, 5, 243, 0, 0, 1313, 1316, 3, 642, 321, 0, 1314, 1316, 5, 244, 0, 0, 1315, 1312, 1, 0, 0, 0, 1315, 1314, 1, 0, 0, 0, 1316, 1332, 1, 0, 0, 0, 1317, 1318, 5, 308, 0, 0, 1318, 1332, 5, 70, 0, 0, 1319, 1321, 5, 308, 0, 0, 1320, 1322, 5, 138, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 7, 9, 0, 0, 1324, 1325, 5, 224, 0, 0, 1325, 1329, 3, 480, 240, 0, 1326, 1327, 3, 68, 34, 0, 1327, 1328, 3, 474, 237, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1326, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1148, 1, 0, 0, 0, 1331, 1154, 1, 0, 0, 0, 1331, 1167, 1, 0, 0, 0, 1331, 1179, 1, 0, 0, 0, 1331, 1192, 1, 0, 0, 0, 1331, 1209, 1, 0, 0, 0, 1331, 1215, 1, 0, 0, 0, 1331, 1230, 1, 0, 0, 0, 1331, 1239, 1, 0, 0, 0, 1331, 1252, 1, 0, 0, 0, 1331, 1260, 1, 0, 0, 0, 1331, 1275, 1, 0, 0, 0, 1331, 1305, 1, 0, 0, 0, 1331, 1307, 1, 0, 0, 0, 1331, 1310, 1, 0, 0, 0, 1331, 1317, 1, 0, 0, 0, 1331, 1319, 1, 0, 0, 0, 1332, 73, 1, 0, 0, 0, 1333, 1334, 5, 384, 0, 0, 1334, 1335, 3, 642, 321, 0, 1335, 1336, 5, 405, 0, 0, 1336, 1337, 5, 426, 0, 0, 1337, 1342, 1, 0, 0, 0, 1338, 1339, 5, 184, 0, 0, 1339, 1342, 3, 194, 97, 0, 1340, 1342, 3, 194, 97, 0, 1341, 1333, 1, 0, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 75, 1, 0, 0, 0, 1343, 1344, 5, 190, 0, 0, 1344, 1345, 5, 329, 0, 0, 1345, 1346, 3, 628, 314, 0, 1346, 1347, 3, 80, 40, 0, 1347, 77, 1, 0, 0, 0, 1348, 1349, 5, 190, 0, 0, 1349, 1350, 3, 70, 35, 0, 1350, 1351, 3, 474, 237, 0, 1351, 1352, 3, 80, 40, 0, 1352, 79, 1, 0, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 81, 1, 0, 0, 0, 1355, 1356, 5, 361, 0, 0, 1356, 1357, 5, 329, 0, 0, 1357, 1358, 3, 628, 314, 0, 1358, 83, 1, 0, 0, 0, 1359, 1360, 5, 361, 0, 0, 1360, 1361, 3, 70, 35, 0, 1361, 1362, 3, 474, 237, 0, 1362, 85, 1, 0, 0, 0, 1363, 1364, 5, 58, 0, 0, 1364, 1365, 5, 287, 0, 0, 1365, 1366, 3, 642, 321, 0, 1366, 87, 1, 0, 0, 0, 1367, 1368, 5, 101, 0, 0, 1368, 1369, 5, 287, 0, 0, 1369, 1370, 3, 642, 321, 0, 1370, 89, 1, 0, 0, 0, 1371, 1372, 5, 143, 0, 0, 1372, 1374, 3, 118, 59, 0, 1373, 1375, 3, 112, 56, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 5, 341, 0, 0, 1377, 1379, 3, 124, 62, 0, 1378, 1380, 3, 130, 65, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 91, 1, 0, 0, 0, 1381, 1383, 5, 283, 0, 0, 1382, 1384, 3, 132, 66, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1387, 3, 118, 59, 0, 1386, 1388, 3, 112, 56, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 5, 139, 0, 0, 1390, 1391, 3, 124, 62, 0, 1391, 93, 1, 0, 0, 0, 1392, 1394, 5, 143, 0, 0, 1393, 1395, 5, 287, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1401, 3, 642, 321, 0, 1397, 1398, 5, 397, 0, 0, 1398, 1400, 3, 642, 321, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1404, 1405, 5, 341, 0, 0, 1405, 1407, 3, 124, 62, 0, 1406, 1408, 3, 136, 68, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 95, 1, 0, 0, 0, 1409, 1411, 5, 283, 0, 0, 1410, 1412, 3, 134, 67, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1415, 5, 287, 0, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1421, 3, 642, 321, 0, 1417, 1418, 5, 397, 0, 0, 1418, 1420, 3, 642, 321, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1423, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1425, 5, 139, 0, 0, 1425, 1426, 3, 124, 62, 0, 1426, 97, 1, 0, 0, 0, 1427, 1428, 5, 308, 0, 0, 1428, 1429, 5, 287, 0, 0, 1429, 1430, 5, 143, 0, 0, 1430, 1431, 3, 126, 63, 0, 1431, 99, 1, 0, 0, 0, 1432, 1433, 5, 308, 0, 0, 1433, 1434, 5, 288, 0, 0, 1434, 101, 1, 0, 0, 0, 1435, 1436, 5, 308, 0, 0, 1436, 1437, 5, 62, 0, 0, 1437, 1438, 5, 288, 0, 0, 1438, 103, 1, 0, 0, 0, 1439, 1440, 5, 304, 0, 0, 1440, 1444, 5, 287, 0, 0, 1441, 1445, 5, 7, 0, 0, 1442, 1445, 5, 213, 0, 0, 1443, 1445, 3, 642, 321, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 105, 1, 0, 0, 0, 1446, 1447, 5, 308, 0, 0, 1447, 1449, 5, 143, 0, 0, 1448, 1450, 3, 126, 63, 0, 1449, 1448, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1453, 1, 0, 0, 0, 1451, 1452, 5, 224, 0, 0, 1452, 1454, 3, 110, 55, 0, 1453, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 107, 1, 0, 0, 0, 1455, 1456, 5, 308, 0, 0, 1456, 1457, 5, 252, 0, 0, 1457, 1458, 3, 642, 321, 0, 1458, 109, 1, 0, 0, 0, 1459, 1462, 5, 7, 0, 0, 1460, 1462, 3, 116, 58, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 111, 1, 0, 0, 0, 1463, 1464, 5, 224, 0, 0, 1464, 1465, 3, 114, 57, 0, 1465, 113, 1, 0, 0, 0, 1466, 1467, 3, 70, 35, 0, 1467, 1468, 3, 474, 237, 0, 1468, 1478, 1, 0, 0, 0, 1469, 1471, 5, 329, 0, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1478, 3, 628, 314, 0, 1473, 1474, 5, 366, 0, 0, 1474, 1478, 5, 426, 0, 0, 1475, 1476, 5, 303, 0, 0, 1476, 1478, 3, 642, 321, 0, 1477, 1466, 1, 0, 0, 0, 1477, 1470, 1, 0, 0, 0, 1477, 1473, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 115, 1, 0, 0, 0, 1479, 1480, 3, 70, 35, 0, 1480, 1481, 3, 474, 237, 0, 1481, 1500, 1, 0, 0, 0, 1482, 1484, 5, 329, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1490, 3, 480, 240, 0, 1486, 1487, 5, 399, 0, 0, 1487, 1488, 3, 254, 127, 0, 1488, 1489, 5, 400, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1486, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1493, 1, 0, 0, 0, 1492, 1494, 3, 630, 315, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1500, 1, 0, 0, 0, 1495, 1496, 5, 366, 0, 0, 1496, 1500, 5, 426, 0, 0, 1497, 1498, 5, 303, 0, 0, 1498, 1500, 3, 642, 321, 0, 1499, 1479, 1, 0, 0, 0, 1499, 1483, 1, 0, 0, 0, 1499, 1495, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 117, 1, 0, 0, 0, 1501, 1506, 3, 120, 60, 0, 1502, 1503, 5, 397, 0, 0, 1503, 1505, 3, 120, 60, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 119, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1514, 3, 122, 61, 0, 1510, 1511, 5, 399, 0, 0, 1511, 1512, 3, 254, 127, 0, 1512, 1513, 5, 400, 0, 0, 1513, 1515, 1, 0, 0, 0, 1514, 1510, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 121, 1, 0, 0, 0, 1516, 1517, 7, 11, 0, 0, 1517, 123, 1, 0, 0, 0, 1518, 1523, 3, 126, 63, 0, 1519, 1520, 5, 397, 0, 0, 1520, 1522, 3, 126, 63, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 125, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1527, 5, 369, 0, 0, 1527, 1533, 3, 646, 323, 0, 1528, 1529, 5, 144, 0, 0, 1529, 1533, 3, 646, 323, 0, 1530, 1531, 5, 287, 0, 0, 1531, 1533, 3, 642, 321, 0, 1532, 1526, 1, 0, 0, 0, 1532, 1528, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 127, 1, 0, 0, 0, 1534, 1535, 5, 369, 0, 0, 1535, 1540, 3, 646, 323, 0, 1536, 1537, 5, 287, 0, 0, 1537, 1540, 3, 642, 321, 0, 1538, 1540, 3, 642, 321, 0, 1539, 1534, 1, 0, 0, 0, 1539, 1536, 1, 0, 0, 0, 1539, 1538, 1, 0, 0, 0, 1540, 129, 1, 0, 0, 0, 1541, 1542, 5, 387, 0, 0, 1542, 1543, 5, 143, 0, 0, 1543, 1544, 5, 227, 0, 0, 1544, 131, 1, 0, 0, 0, 1545, 1546, 5, 143, 0, 0, 1546, 1547, 5, 227, 0, 0, 1547, 1548, 5, 134, 0, 0, 1548, 133, 1, 0, 0, 0, 1549, 1550, 5, 5, 0, 0, 1550, 1551, 5, 227, 0, 0, 1551, 1552, 5, 134, 0, 0, 1552, 135, 1, 0, 0, 0, 1553, 1554, 5, 387, 0, 0, 1554, 1555, 5, 5, 0, 0, 1555, 1556, 5, 227, 0, 0, 1556, 137, 1, 0, 0, 0, 1557, 1559, 5, 212, 0, 0, 1558, 1560, 5, 276, 0, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 329, 0, 0, 1562, 1568, 3, 480, 240, 0, 1563, 1564, 7, 12, 0, 0, 1564, 1566, 5, 239, 0, 0, 1565, 1567, 3, 634, 317, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1563, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 139, 1, 0, 0, 0, 1570, 1575, 3, 142, 71, 0, 1571, 1572, 5, 397, 0, 0, 1572, 1574, 3, 142, 71, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1577, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 141, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1579, 3, 144, 72, 0, 1579, 1580, 5, 426, 0, 0, 1580, 143, 1, 0, 0, 0, 1581, 1582, 7, 13, 0, 0, 1582, 145, 1, 0, 0, 0, 1583, 1585, 5, 58, 0, 0, 1584, 1586, 5, 333, 0, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 5, 141, 0, 0, 1588, 1589, 3, 558, 279, 0, 1589, 1590, 5, 17, 0, 0, 1590, 1593, 5, 426, 0, 0, 1591, 1592, 5, 370, 0, 0, 1592, 1594, 3, 140, 70, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 147, 1, 0, 0, 0, 1595, 1597, 5, 101, 0, 0, 1596, 1598, 5, 333, 0, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1601, 5, 141, 0, 0, 1600, 1602, 3, 30, 15, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 3, 560, 280, 0, 1604, 149, 1, 0, 0, 0, 1605, 1606, 5, 271, 0, 0, 1606, 1607, 7, 14, 0, 0, 1607, 151, 1, 0, 0, 0, 1608, 1609, 5, 58, 0, 0, 1609, 1610, 5, 333, 0, 0, 1610, 1611, 5, 194, 0, 0, 1611, 1612, 5, 432, 0, 0, 1612, 1614, 5, 399, 0, 0, 1613, 1615, 3, 248, 124, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 5, 400, 0, 0, 1617, 1618, 3, 584, 292, 0, 1618, 153, 1, 0, 0, 0, 1619, 1620, 5, 101, 0, 0, 1620, 1621, 5, 333, 0, 0, 1621, 1623, 5, 194, 0, 0, 1622, 1624, 3, 30, 15, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 5, 432, 0, 0, 1626, 155, 1, 0, 0, 0, 1627, 1628, 5, 58, 0, 0, 1628, 1629, 5, 155, 0, 0, 1629, 1630, 3, 642, 321, 0, 1630, 1631, 5, 224, 0, 0, 1631, 1632, 5, 329, 0, 0, 1632, 1633, 3, 480, 240, 0, 1633, 1634, 3, 266, 133, 0, 1634, 1635, 5, 17, 0, 0, 1635, 1639, 5, 426, 0, 0, 1636, 1637, 5, 387, 0, 0, 1637, 1638, 5, 84, 0, 0, 1638, 1640, 5, 265, 0, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1643, 1, 0, 0, 0, 1641, 1642, 5, 150, 0, 0, 1642, 1644, 3, 226, 113, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1648, 1, 0, 0, 0, 1645, 1646, 5, 154, 0, 0, 1646, 1647, 5, 329, 0, 0, 1647, 1649, 3, 480, 240, 0, 1648, 1645, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1653, 1, 0, 0, 0, 1650, 1651, 5, 238, 0, 0, 1651, 1652, 5, 32, 0, 0, 1652, 1654, 3, 266, 133, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1659, 1, 0, 0, 0, 1655, 1657, 3, 222, 111, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 3, 246, 123, 0, 1659, 1656, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 1, 0, 0, 0, 1661, 1663, 3, 426, 213, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1666, 3, 224, 112, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 1, 0, 0, 0, 1667, 1669, 3, 196, 98, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 157, 1, 0, 0, 0, 1670, 1671, 5, 101, 0, 0, 1671, 1673, 5, 155, 0, 0, 1672, 1674, 3, 30, 15, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 3, 642, 321, 0, 1676, 1677, 5, 224, 0, 0, 1677, 1678, 3, 480, 240, 0, 1678, 159, 1, 0, 0, 0, 1679, 1682, 5, 58, 0, 0, 1680, 1681, 5, 228, 0, 0, 1681, 1683, 5, 278, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1686, 5, 378, 0, 0, 1685, 1687, 3, 32, 16, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1693, 3, 486, 243, 0, 1689, 1690, 5, 399, 0, 0, 1690, 1691, 3, 306, 153, 0, 1691, 1692, 5, 400, 0, 0, 1692, 1694, 1, 0, 0, 0, 1693, 1689, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1697, 3, 196, 98, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 1, 0, 0, 0, 1698, 1700, 3, 162, 81, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 224, 112, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 5, 17, 0, 0, 1705, 1706, 3, 382, 191, 0, 1706, 161, 1, 0, 0, 0, 1707, 1708, 5, 238, 0, 0, 1708, 1714, 5, 224, 0, 0, 1709, 1710, 5, 399, 0, 0, 1710, 1715, 3, 254, 127, 0, 1711, 1712, 5, 316, 0, 0, 1712, 1713, 5, 399, 0, 0, 1713, 1715, 3, 204, 102, 0, 1714, 1709, 1, 0, 0, 0, 1714, 1711, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 5, 400, 0, 0, 1717, 163, 1, 0, 0, 0, 1718, 1721, 3, 166, 83, 0, 1719, 1721, 3, 168, 84, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1719, 1, 0, 0, 0, 1721, 165, 1, 0, 0, 0, 1722, 1723, 5, 42, 0, 0, 1723, 1724, 5, 224, 0, 0, 1724, 1725, 5, 399, 0, 0, 1725, 1726, 3, 254, 127, 0, 1726, 1727, 5, 400, 0, 0, 1727, 167, 1, 0, 0, 0, 1728, 1729, 3, 170, 85, 0, 1729, 1730, 3, 172, 86, 0, 1730, 169, 1, 0, 0, 0, 1731, 1732, 5, 98, 0, 0, 1732, 1733, 5, 224, 0, 0, 1733, 1734, 5, 399, 0, 0, 1734, 1735, 3, 254, 127, 0, 1735, 1736, 5, 400, 0, 0, 1736, 171, 1, 0, 0, 0, 1737, 1738, 5, 315, 0, 0, 1738, 1739, 5, 224, 0, 0, 1739, 1740, 5, 399, 0, 0, 1740, 1741, 3, 254, 127, 0, 1741, 1742, 5, 400, 0, 0, 1742, 173, 1, 0, 0, 0, 1743, 1744, 5, 101, 0, 0, 1744, 1746, 5, 378, 0, 0, 1745, 1747, 3, 30, 15, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 3, 484, 242, 0, 1749, 175, 1, 0, 0, 0, 1750, 1751, 5, 58, 0, 0, 1751, 1752, 5, 202, 0, 0, 1752, 1754, 5, 378, 0, 0, 1753, 1755, 3, 32, 16, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 3, 486, 243, 0, 1757, 1759, 3, 38, 19, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 1, 0, 0, 0, 1760, 1762, 3, 196, 98, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 1, 0, 0, 0, 1763, 1765, 3, 162, 81, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 164, 82, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1771, 3, 222, 111, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1774, 3, 246, 123, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1777, 3, 426, 213, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1780, 3, 224, 112, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 5, 17, 0, 0, 1782, 1783, 3, 382, 191, 0, 1783, 177, 1, 0, 0, 0, 1784, 1785, 5, 101, 0, 0, 1785, 1786, 5, 202, 0, 0, 1786, 1788, 5, 378, 0, 0, 1787, 1789, 3, 30, 15, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 3, 484, 242, 0, 1791, 179, 1, 0, 0, 0, 1792, 1793, 5, 58, 0, 0, 1793, 1794, 5, 293, 0, 0, 1794, 1795, 5, 258, 0, 0, 1795, 1796, 3, 642, 321, 0, 1796, 1798, 3, 188, 94, 0, 1797, 1799, 3, 190, 95, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 1, 0, 0, 0, 1800, 1802, 3, 270, 135, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 3, 192, 96, 0, 1804, 181, 1, 0, 0, 0, 1805, 1806, 5, 101, 0, 0, 1806, 1807, 5, 293, 0, 0, 1807, 1808, 5, 258, 0, 0, 1808, 1809, 3, 642, 321, 0, 1809, 183, 1, 0, 0, 0, 1810, 1811, 5, 9, 0, 0, 1811, 1812, 5, 293, 0, 0, 1812, 1813, 5, 258, 0, 0, 1813, 1814, 3, 642, 321, 0, 1814, 1815, 3, 186, 93, 0, 1815, 185, 1, 0, 0, 0, 1816, 1822, 3, 188, 94, 0, 1817, 1822, 3, 190, 95, 0, 1818, 1822, 3, 270, 135, 0, 1819, 1822, 3, 192, 96, 0, 1820, 1822, 5, 115, 0, 0, 1821, 1816, 1, 0, 0, 0, 1821, 1817, 1, 0, 0, 0, 1821, 1818, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1821, 1820, 1, 0, 0, 0, 1822, 187, 1, 0, 0, 0, 1823, 1824, 5, 59, 0, 0, 1824, 1839, 5, 426, 0, 0, 1825, 1827, 5, 111, 0, 0, 1826, 1828, 5, 431, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1836, 3, 582, 291, 0, 1830, 1834, 5, 20, 0, 0, 1831, 1832, 5, 223, 0, 0, 1832, 1834, 5, 32, 0, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 5, 426, 0, 0, 1836, 1833, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1823, 1, 0, 0, 0, 1838, 1825, 1, 0, 0, 0, 1839, 189, 1, 0, 0, 0, 1840, 1841, 5, 116, 0, 0, 1841, 1842, 5, 17, 0, 0, 1842, 1843, 5, 426, 0, 0, 1843, 191, 1, 0, 0, 0, 1844, 1846, 5, 85, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 17, 0, 0, 1848, 1849, 3, 2, 1, 0, 1849, 193, 1, 0, 0, 0, 1850, 1853, 3, 642, 321, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1850, 1, 0, 0, 0, 1852, 1851, 1, 0, 0, 0, 1853, 195, 1, 0, 0, 0, 1854, 1855, 5, 47, 0, 0, 1855, 1856, 5, 426, 0, 0, 1856, 197, 1, 0, 0, 0, 1857, 1858, 5, 183, 0, 0, 1858, 1859, 5, 431, 0, 0, 1859, 199, 1, 0, 0, 0, 1860, 1861, 5, 238, 0, 0, 1861, 1870, 5, 32, 0, 0, 1862, 1865, 5, 399, 0, 0, 1863, 1866, 3, 202, 101, 0, 1864, 1866, 3, 254, 127, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 1871, 1, 0, 0, 0, 1867, 1868, 5, 316, 0, 0, 1868, 1869, 5, 399, 0, 0, 1869, 1871, 3, 204, 102, 0, 1870, 1862, 1, 0, 0, 0, 1870, 1867, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 5, 400, 0, 0, 1873, 201, 1, 0, 0, 0, 1874, 1879, 3, 318, 159, 0, 1875, 1876, 5, 397, 0, 0, 1876, 1878, 3, 318, 159, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 203, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1887, 3, 206, 103, 0, 1883, 1884, 5, 397, 0, 0, 1884, 1886, 3, 206, 103, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1889, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 205, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1890, 1909, 3, 256, 128, 0, 1891, 1896, 3, 670, 335, 0, 1892, 1896, 3, 672, 336, 0, 1893, 1896, 3, 676, 338, 0, 1894, 1896, 3, 678, 339, 0, 1895, 1891, 1, 0, 0, 0, 1895, 1892, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 5, 399, 0, 0, 1898, 1899, 3, 256, 128, 0, 1899, 1900, 5, 400, 0, 0, 1900, 1909, 1, 0, 0, 0, 1901, 1902, 7, 15, 0, 0, 1902, 1903, 5, 399, 0, 0, 1903, 1904, 5, 431, 0, 0, 1904, 1905, 5, 397, 0, 0, 1905, 1906, 3, 256, 128, 0, 1906, 1907, 5, 400, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1890, 1, 0, 0, 0, 1908, 1895, 1, 0, 0, 0, 1908, 1901, 1, 0, 0, 0, 1909, 207, 1, 0, 0, 0, 1910, 1911, 5, 42, 0, 0, 1911, 1912, 5, 32, 0, 0, 1912, 1913, 5, 399, 0, 0, 1913, 1914, 3, 254, 127, 0, 1914, 1921, 5, 400, 0, 0, 1915, 1916, 5, 315, 0, 0, 1916, 1917, 5, 32, 0, 0, 1917, 1918, 5, 399, 0, 0, 1918, 1919, 3, 264, 132, 0, 1919, 1920, 5, 400, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1915, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 5, 166, 0, 0, 1924, 1925, 5, 431, 0, 0, 1925, 1926, 5, 31, 0, 0, 1926, 209, 1, 0, 0, 0, 1927, 1928, 5, 310, 0, 0, 1928, 1929, 5, 32, 0, 0, 1929, 1930, 5, 399, 0, 0, 1930, 1931, 3, 254, 127, 0, 1931, 1932, 5, 400, 0, 0, 1932, 1933, 5, 224, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 292, 146, 0, 1935, 1937, 5, 400, 0, 0, 1936, 1938, 3, 40, 20, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 211, 1, 0, 0, 0, 1939, 1942, 3, 218, 109, 0, 1940, 1942, 3, 220, 110, 0, 1941, 1939, 1, 0, 0, 0, 1941, 1940, 1, 0, 0, 0, 1942, 213, 1, 0, 0, 0, 1943, 1944, 5, 266, 0, 0, 1944, 1945, 5, 426, 0, 0, 1945, 215, 1, 0, 0, 0, 1946, 1947, 5, 267, 0, 0, 1947, 1948, 5, 426, 0, 0, 1948, 217, 1, 0, 0, 0, 1949, 1950, 5, 291, 0, 0, 1950, 1951, 5, 137, 0, 0, 1951, 1952, 5, 301, 0, 0, 1952, 1956, 5, 426, 0, 0, 1953, 1954, 5, 387, 0, 0, 1954, 1955, 5, 302, 0, 0, 1955, 1957, 3, 226, 113, 0, 1956, 1953, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 219, 1, 0, 0, 0, 1958, 1959, 5, 291, 0, 0, 1959, 1960, 5, 137, 0, 0, 1960, 1962, 5, 87, 0, 0, 1961, 1963, 3, 236, 118, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1965, 1, 0, 0, 0, 1964, 1966, 3, 238, 119, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 1, 0, 0, 0, 1967, 1969, 3, 240, 120, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 242, 121, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 244, 122, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 221, 1, 0, 0, 0, 1976, 1979, 3, 220, 110, 0, 1977, 1979, 3, 218, 109, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1977, 1, 0, 0, 0, 1979, 223, 1, 0, 0, 0, 1980, 1981, 5, 332, 0, 0, 1981, 1982, 3, 226, 113, 0, 1982, 225, 1, 0, 0, 0, 1983, 1984, 5, 399, 0, 0, 1984, 1985, 3, 228, 114, 0, 1985, 1986, 5, 400, 0, 0, 1986, 227, 1, 0, 0, 0, 1987, 1997, 3, 232, 116, 0, 1988, 1993, 5, 426, 0, 0, 1989, 1990, 5, 397, 0, 0, 1990, 1992, 5, 426, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1997, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1996, 1987, 1, 0, 0, 0, 1996, 1988, 1, 0, 0, 0, 1997, 229, 1, 0, 0, 0, 1998, 1999, 5, 399, 0, 0, 1999, 2000, 3, 232, 116, 0, 2000, 2001, 5, 400, 0, 0, 2001, 231, 1, 0, 0, 0, 2002, 2007, 3, 234, 117, 0, 2003, 2004, 5, 397, 0, 0, 2004, 2006, 3, 234, 117, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2009, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 233, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2010, 2011, 5, 426, 0, 0, 2011, 2012, 5, 405, 0, 0, 2012, 2013, 5, 426, 0, 0, 2013, 235, 1, 0, 0, 0, 2014, 2015, 5, 127, 0, 0, 2015, 2016, 5, 334, 0, 0, 2016, 2017, 5, 32, 0, 0, 2017, 2021, 5, 426, 0, 0, 2018, 2019, 5, 110, 0, 0, 2019, 2020, 5, 32, 0, 0, 2020, 2022, 5, 426, 0, 0, 2021, 2018, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 237, 1, 0, 0, 0, 2023, 2024, 5, 44, 0, 0, 2024, 2025, 5, 169, 0, 0, 2025, 2026, 5, 334, 0, 0, 2026, 2027, 5, 32, 0, 0, 2027, 2028, 5, 426, 0, 0, 2028, 239, 1, 0, 0, 0, 2029, 2030, 5, 198, 0, 0, 2030, 2031, 5, 174, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2034, 5, 426, 0, 0, 2034, 241, 1, 0, 0, 0, 2035, 2036, 5, 186, 0, 0, 2036, 2037, 5, 334, 0, 0, 2037, 2038, 5, 32, 0, 0, 2038, 2039, 5, 426, 0, 0, 2039, 243, 1, 0, 0, 0, 2040, 2041, 5, 219, 0, 0, 2041, 2042, 5, 85, 0, 0, 2042, 2043, 5, 17, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 245, 1, 0, 0, 0, 2045, 2046, 5, 321, 0, 0, 2046, 2047, 5, 17, 0, 0, 2047, 2048, 5, 160, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 2050, 5, 233, 0, 0, 2050, 2055, 5, 426, 0, 0, 2051, 2052, 5, 159, 0, 0, 2052, 2053, 5, 426, 0, 0, 2053, 2054, 5, 232, 0, 0, 2054, 2056, 5, 426, 0, 0, 2055, 2051, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2087, 1, 0, 0, 0, 2057, 2058, 5, 321, 0, 0, 2058, 2059, 5, 32, 0, 0, 2059, 2063, 5, 426, 0, 0, 2060, 2061, 5, 387, 0, 0, 2061, 2062, 5, 302, 0, 0, 2062, 2064, 3, 226, 113, 0, 2063, 2060, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2068, 1, 0, 0, 0, 2065, 2066, 5, 321, 0, 0, 2066, 2067, 5, 17, 0, 0, 2067, 2069, 3, 642, 321, 0, 2068, 2065, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2087, 1, 0, 0, 0, 2070, 2071, 5, 321, 0, 0, 2071, 2072, 5, 32, 0, 0, 2072, 2076, 3, 642, 321, 0, 2073, 2074, 5, 387, 0, 0, 2074, 2075, 5, 302, 0, 0, 2075, 2077, 3, 226, 113, 0, 2076, 2073, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2081, 1, 0, 0, 0, 2078, 2079, 5, 321, 0, 0, 2079, 2080, 5, 17, 0, 0, 2080, 2082, 3, 642, 321, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2087, 1, 0, 0, 0, 2083, 2084, 5, 321, 0, 0, 2084, 2085, 5, 17, 0, 0, 2085, 2087, 3, 642, 321, 0, 2086, 2045, 1, 0, 0, 0, 2086, 2057, 1, 0, 0, 0, 2086, 2070, 1, 0, 0, 0, 2086, 2083, 1, 0, 0, 0, 2087, 247, 1, 0, 0, 0, 2088, 2093, 3, 312, 156, 0, 2089, 2090, 5, 397, 0, 0, 2090, 2092, 3, 312, 156, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 249, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2096, 2101, 3, 314, 157, 0, 2097, 2098, 5, 397, 0, 0, 2098, 2100, 3, 314, 157, 0, 2099, 2097, 1, 0, 0, 0, 2100, 2103, 1, 0, 0, 0, 2101, 2099, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 251, 1, 0, 0, 0, 2103, 2101, 1, 0, 0, 0, 2104, 2109, 3, 342, 171, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 342, 171, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 253, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 256, 128, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 256, 128, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 255, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2123, 3, 686, 343, 0, 2121, 2123, 4, 128, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 257, 1, 0, 0, 0, 2124, 2125, 3, 686, 343, 0, 2125, 259, 1, 0, 0, 0, 2126, 2127, 3, 642, 321, 0, 2127, 261, 1, 0, 0, 0, 2128, 2138, 3, 256, 128, 0, 2129, 2134, 5, 395, 0, 0, 2130, 2135, 5, 104, 0, 0, 2131, 2135, 5, 175, 0, 0, 2132, 2135, 5, 375, 0, 0, 2133, 2135, 3, 642, 321, 0, 2134, 2130, 1, 0, 0, 0, 2134, 2131, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2129, 1, 0, 0, 0, 2137, 2140, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 263, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2146, 3, 304, 152, 0, 2142, 2143, 5, 397, 0, 0, 2143, 2145, 3, 304, 152, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 265, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2150, 5, 399, 0, 0, 2150, 2151, 3, 254, 127, 0, 2151, 2152, 5, 400, 0, 0, 2152, 267, 1, 0, 0, 0, 2153, 2155, 3, 270, 135, 0, 2154, 2156, 3, 272, 136, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2159, 3, 274, 137, 0, 2158, 2153, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 269, 1, 0, 0, 0, 2160, 2163, 3, 666, 333, 0, 2161, 2163, 3, 668, 334, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 271, 1, 0, 0, 0, 2164, 2165, 7, 16, 0, 0, 2165, 273, 1, 0, 0, 0, 2166, 2170, 5, 109, 0, 0, 2167, 2168, 5, 216, 0, 0, 2168, 2170, 5, 109, 0, 0, 2169, 2166, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 275, 1, 0, 0, 0, 2171, 2172, 7, 17, 0, 0, 2172, 277, 1, 0, 0, 0, 2173, 2174, 5, 55, 0, 0, 2174, 2176, 3, 642, 321, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 3, 282, 141, 0, 2178, 2180, 3, 338, 169, 0, 2179, 2178, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 279, 1, 0, 0, 0, 2181, 2182, 5, 55, 0, 0, 2182, 2183, 3, 642, 321, 0, 2183, 2185, 3, 282, 141, 0, 2184, 2186, 3, 340, 170, 0, 2185, 2184, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 281, 1, 0, 0, 0, 2187, 2190, 3, 284, 142, 0, 2188, 2190, 3, 286, 143, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 283, 1, 0, 0, 0, 2191, 2192, 3, 336, 168, 0, 2192, 2193, 3, 266, 133, 0, 2193, 285, 1, 0, 0, 0, 2194, 2195, 5, 40, 0, 0, 2195, 2196, 5, 399, 0, 0, 2196, 2197, 3, 584, 292, 0, 2197, 2198, 5, 400, 0, 0, 2198, 287, 1, 0, 0, 0, 2199, 2200, 5, 55, 0, 0, 2200, 2202, 3, 642, 321, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 5, 136, 0, 0, 2204, 2205, 5, 173, 0, 0, 2205, 2206, 3, 266, 133, 0, 2206, 2207, 5, 269, 0, 0, 2207, 2208, 3, 480, 240, 0, 2208, 2210, 3, 266, 133, 0, 2209, 2211, 3, 338, 169, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 289, 1, 0, 0, 0, 2212, 2213, 5, 55, 0, 0, 2213, 2214, 3, 642, 321, 0, 2214, 2215, 5, 136, 0, 0, 2215, 2216, 5, 173, 0, 0, 2216, 2217, 3, 266, 133, 0, 2217, 2218, 5, 269, 0, 0, 2218, 2219, 3, 480, 240, 0, 2219, 2221, 3, 266, 133, 0, 2220, 2222, 3, 340, 170, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 291, 1, 0, 0, 0, 2223, 2226, 3, 298, 149, 0, 2224, 2226, 3, 294, 147, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2224, 1, 0, 0, 0, 2226, 293, 1, 0, 0, 0, 2227, 2232, 3, 296, 148, 0, 2228, 2229, 5, 397, 0, 0, 2229, 2231, 3, 296, 148, 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, 295, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 5, 399, 0, 0, 2236, 2237, 3, 298, 149, 0, 2237, 2238, 5, 400, 0, 0, 2238, 297, 1, 0, 0, 0, 2239, 2244, 3, 576, 288, 0, 2240, 2241, 5, 397, 0, 0, 2241, 2243, 3, 576, 288, 0, 2242, 2240, 1, 0, 0, 0, 2243, 2246, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 299, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2248, 7, 18, 0, 0, 2248, 301, 1, 0, 0, 0, 2249, 2250, 5, 220, 0, 0, 2250, 2251, 7, 19, 0, 0, 2251, 303, 1, 0, 0, 0, 2252, 2254, 3, 256, 128, 0, 2253, 2255, 3, 300, 150, 0, 2254, 2253, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2257, 1, 0, 0, 0, 2256, 2258, 3, 302, 151, 0, 2257, 2256, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 305, 1, 0, 0, 0, 2259, 2264, 3, 308, 154, 0, 2260, 2261, 5, 397, 0, 0, 2261, 2263, 3, 308, 154, 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, 307, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2270, 3, 260, 130, 0, 2268, 2269, 5, 47, 0, 0, 2269, 2271, 5, 426, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 309, 1, 0, 0, 0, 2272, 2275, 3, 256, 128, 0, 2273, 2275, 3, 584, 292, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2273, 1, 0, 0, 0, 2275, 2277, 1, 0, 0, 0, 2276, 2278, 3, 300, 150, 0, 2277, 2276, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2280, 1, 0, 0, 0, 2279, 2281, 3, 302, 151, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 311, 1, 0, 0, 0, 2282, 2283, 3, 260, 130, 0, 2283, 2286, 3, 344, 172, 0, 2284, 2285, 5, 47, 0, 0, 2285, 2287, 5, 426, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 313, 1, 0, 0, 0, 2288, 2291, 3, 316, 158, 0, 2289, 2291, 3, 318, 159, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2289, 1, 0, 0, 0, 2291, 315, 1, 0, 0, 0, 2292, 2295, 3, 288, 144, 0, 2293, 2295, 3, 278, 139, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2293, 1, 0, 0, 0, 2295, 317, 1, 0, 0, 0, 2296, 2297, 3, 260, 130, 0, 2297, 2299, 3, 344, 172, 0, 2298, 2300, 3, 320, 160, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2303, 1, 0, 0, 0, 2301, 2302, 5, 47, 0, 0, 2302, 2304, 5, 426, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 319, 1, 0, 0, 0, 2305, 2308, 3, 322, 161, 0, 2306, 2308, 3, 324, 162, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 321, 1, 0, 0, 0, 2309, 2310, 5, 55, 0, 0, 2310, 2312, 3, 642, 321, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2314, 5, 269, 0, 0, 2314, 2315, 3, 480, 240, 0, 2315, 2316, 5, 399, 0, 0, 2316, 2317, 3, 256, 128, 0, 2317, 2319, 5, 400, 0, 0, 2318, 2320, 3, 338, 169, 0, 2319, 2318, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 323, 1, 0, 0, 0, 2321, 2322, 5, 55, 0, 0, 2322, 2324, 3, 642, 321, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2327, 3, 332, 166, 0, 2326, 2328, 3, 338, 169, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 325, 1, 0, 0, 0, 2329, 2332, 3, 328, 164, 0, 2330, 2332, 3, 330, 165, 0, 2331, 2329, 1, 0, 0, 0, 2331, 2330, 1, 0, 0, 0, 2332, 327, 1, 0, 0, 0, 2333, 2334, 5, 55, 0, 0, 2334, 2336, 3, 642, 321, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 269, 0, 0, 2338, 2339, 3, 480, 240, 0, 2339, 2340, 5, 399, 0, 0, 2340, 2341, 3, 256, 128, 0, 2341, 2343, 5, 400, 0, 0, 2342, 2344, 3, 340, 170, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 329, 1, 0, 0, 0, 2345, 2346, 5, 55, 0, 0, 2346, 2348, 3, 642, 321, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2351, 3, 332, 166, 0, 2350, 2352, 3, 340, 170, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 331, 1, 0, 0, 0, 2353, 2354, 5, 216, 0, 0, 2354, 2360, 5, 219, 0, 0, 2355, 2356, 5, 83, 0, 0, 2356, 2360, 3, 334, 167, 0, 2357, 2360, 3, 286, 143, 0, 2358, 2360, 3, 336, 168, 0, 2359, 2353, 1, 0, 0, 0, 2359, 2355, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2359, 2358, 1, 0, 0, 0, 2360, 333, 1, 0, 0, 0, 2361, 2365, 3, 576, 288, 0, 2362, 2365, 3, 554, 277, 0, 2363, 2365, 3, 564, 282, 0, 2364, 2361, 1, 0, 0, 0, 2364, 2362, 1, 0, 0, 0, 2364, 2363, 1, 0, 0, 0, 2365, 335, 1, 0, 0, 0, 2366, 2367, 5, 251, 0, 0, 2367, 2370, 5, 173, 0, 0, 2368, 2370, 5, 358, 0, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2368, 1, 0, 0, 0, 2370, 337, 1, 0, 0, 0, 2371, 2373, 3, 268, 134, 0, 2372, 2374, 3, 276, 138, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 339, 1, 0, 0, 0, 2375, 2377, 3, 268, 134, 0, 2376, 2378, 3, 276, 138, 0, 2377, 2376, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 341, 1, 0, 0, 0, 2379, 2380, 3, 260, 130, 0, 2380, 2381, 5, 396, 0, 0, 2381, 2384, 3, 344, 172, 0, 2382, 2383, 5, 47, 0, 0, 2383, 2385, 5, 426, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 343, 1, 0, 0, 0, 2386, 2387, 3, 348, 174, 0, 2387, 345, 1, 0, 0, 0, 2388, 2393, 3, 344, 172, 0, 2389, 2390, 5, 397, 0, 0, 2390, 2392, 3, 344, 172, 0, 2391, 2389, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 347, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2402, 3, 350, 175, 0, 2397, 2402, 3, 352, 176, 0, 2398, 2402, 3, 354, 177, 0, 2399, 2402, 3, 356, 178, 0, 2400, 2402, 3, 358, 179, 0, 2401, 2396, 1, 0, 0, 0, 2401, 2397, 1, 0, 0, 0, 2401, 2398, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2400, 1, 0, 0, 0, 2402, 349, 1, 0, 0, 0, 2403, 2441, 5, 340, 0, 0, 2404, 2441, 5, 311, 0, 0, 2405, 2441, 5, 162, 0, 0, 2406, 2441, 5, 163, 0, 0, 2407, 2441, 5, 26, 0, 0, 2408, 2441, 5, 28, 0, 0, 2409, 2441, 5, 131, 0, 0, 2410, 2441, 5, 264, 0, 0, 2411, 2413, 5, 100, 0, 0, 2412, 2414, 5, 248, 0, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2441, 1, 0, 0, 0, 2415, 2441, 5, 71, 0, 0, 2416, 2441, 5, 72, 0, 0, 2417, 2441, 5, 337, 0, 0, 2418, 2441, 5, 338, 0, 0, 2419, 2420, 5, 337, 0, 0, 2420, 2421, 5, 387, 0, 0, 2421, 2422, 5, 188, 0, 0, 2422, 2423, 5, 336, 0, 0, 2423, 2441, 5, 394, 0, 0, 2424, 2441, 5, 323, 0, 0, 2425, 2441, 5, 27, 0, 0, 2426, 2434, 3, 684, 342, 0, 2427, 2428, 5, 399, 0, 0, 2428, 2431, 5, 431, 0, 0, 2429, 2430, 5, 397, 0, 0, 2430, 2432, 5, 431, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2435, 5, 400, 0, 0, 2434, 2427, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2441, 1, 0, 0, 0, 2436, 2437, 7, 20, 0, 0, 2437, 2438, 5, 399, 0, 0, 2438, 2439, 5, 431, 0, 0, 2439, 2441, 5, 400, 0, 0, 2440, 2403, 1, 0, 0, 0, 2440, 2404, 1, 0, 0, 0, 2440, 2405, 1, 0, 0, 0, 2440, 2406, 1, 0, 0, 0, 2440, 2407, 1, 0, 0, 0, 2440, 2408, 1, 0, 0, 0, 2440, 2409, 1, 0, 0, 0, 2440, 2410, 1, 0, 0, 0, 2440, 2411, 1, 0, 0, 0, 2440, 2415, 1, 0, 0, 0, 2440, 2416, 1, 0, 0, 0, 2440, 2417, 1, 0, 0, 0, 2440, 2418, 1, 0, 0, 0, 2440, 2419, 1, 0, 0, 0, 2440, 2424, 1, 0, 0, 0, 2440, 2425, 1, 0, 0, 0, 2440, 2426, 1, 0, 0, 0, 2440, 2436, 1, 0, 0, 0, 2441, 351, 1, 0, 0, 0, 2442, 2443, 5, 16, 0, 0, 2443, 2444, 5, 409, 0, 0, 2444, 2445, 3, 348, 174, 0, 2445, 2446, 5, 411, 0, 0, 2446, 353, 1, 0, 0, 0, 2447, 2448, 5, 324, 0, 0, 2448, 2449, 5, 409, 0, 0, 2449, 2450, 3, 252, 126, 0, 2450, 2451, 5, 411, 0, 0, 2451, 355, 1, 0, 0, 0, 2452, 2453, 5, 198, 0, 0, 2453, 2454, 5, 409, 0, 0, 2454, 2455, 3, 350, 175, 0, 2455, 2456, 5, 397, 0, 0, 2456, 2457, 3, 348, 174, 0, 2457, 2458, 5, 411, 0, 0, 2458, 357, 1, 0, 0, 0, 2459, 2460, 5, 357, 0, 0, 2460, 2461, 5, 409, 0, 0, 2461, 2462, 3, 346, 173, 0, 2462, 2463, 5, 411, 0, 0, 2463, 359, 1, 0, 0, 0, 2464, 2466, 7, 21, 0, 0, 2465, 2467, 7, 22, 0, 0, 2466, 2465, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 361, 1, 0, 0, 0, 2468, 2470, 3, 366, 183, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2472, 3, 364, 182, 0, 2472, 363, 1, 0, 0, 0, 2473, 2476, 3, 370, 185, 0, 2474, 2476, 3, 374, 187, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2474, 1, 0, 0, 0, 2476, 365, 1, 0, 0, 0, 2477, 2478, 5, 387, 0, 0, 2478, 2483, 3, 368, 184, 0, 2479, 2480, 5, 397, 0, 0, 2480, 2482, 3, 368, 184, 0, 2481, 2479, 1, 0, 0, 0, 2482, 2485, 1, 0, 0, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 367, 1, 0, 0, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2491, 3, 642, 321, 0, 2487, 2488, 5, 399, 0, 0, 2488, 2489, 3, 254, 127, 0, 2489, 2490, 5, 400, 0, 0, 2490, 2492, 1, 0, 0, 0, 2491, 2487, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 17, 0, 0, 2494, 2495, 5, 399, 0, 0, 2495, 2496, 3, 362, 181, 0, 2496, 2497, 5, 400, 0, 0, 2497, 369, 1, 0, 0, 0, 2498, 2504, 3, 372, 186, 0, 2499, 2500, 3, 360, 180, 0, 2500, 2501, 3, 372, 186, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2499, 1, 0, 0, 0, 2503, 2506, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 371, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2508, 3, 450, 225, 0, 2508, 2509, 3, 384, 192, 0, 2509, 2511, 3, 502, 251, 0, 2510, 2512, 3, 464, 232, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2515, 3, 496, 248, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2517, 1, 0, 0, 0, 2516, 2518, 3, 522, 261, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2520, 1, 0, 0, 0, 2519, 2521, 3, 530, 265, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2524, 3, 514, 257, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2527, 3, 532, 266, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2530, 3, 544, 272, 0, 2529, 2528, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2533, 3, 548, 274, 0, 2532, 2531, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2536, 3, 550, 275, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2539, 3, 552, 276, 0, 2538, 2537, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2542, 3, 388, 194, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2579, 1, 0, 0, 0, 2543, 2544, 3, 450, 225, 0, 2544, 2546, 3, 502, 251, 0, 2545, 2547, 3, 464, 232, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2550, 3, 496, 248, 0, 2549, 2548, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 522, 261, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 530, 265, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2559, 3, 514, 257, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2562, 3, 532, 266, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2565, 3, 544, 272, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 548, 274, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2570, 1, 0, 0, 0, 2569, 2571, 3, 550, 275, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2574, 3, 552, 276, 0, 2573, 2572, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2577, 3, 388, 194, 0, 2576, 2575, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2507, 1, 0, 0, 0, 2578, 2543, 1, 0, 0, 0, 2579, 373, 1, 0, 0, 0, 2580, 2581, 3, 384, 192, 0, 2581, 2582, 3, 378, 189, 0, 2582, 2585, 1, 0, 0, 0, 2583, 2585, 3, 378, 189, 0, 2584, 2580, 1, 0, 0, 0, 2584, 2583, 1, 0, 0, 0, 2585, 375, 1, 0, 0, 0, 2586, 2588, 3, 502, 251, 0, 2587, 2589, 3, 450, 225, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 496, 248, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2595, 3, 522, 261, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 530, 265, 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, 2603, 1, 0, 0, 0, 2602, 2604, 3, 532, 266, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2611, 1, 0, 0, 0, 2605, 2606, 5, 399, 0, 0, 2606, 2607, 3, 378, 189, 0, 2607, 2608, 5, 400, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2611, 3, 498, 249, 0, 2610, 2586, 1, 0, 0, 0, 2610, 2605, 1, 0, 0, 0, 2610, 2609, 1, 0, 0, 0, 2611, 377, 1, 0, 0, 0, 2612, 2614, 3, 376, 188, 0, 2613, 2615, 3, 380, 190, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 1, 0, 0, 0, 2616, 2618, 3, 544, 272, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 548, 274, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 3, 550, 275, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2626, 1, 0, 0, 0, 2625, 2627, 3, 552, 276, 0, 2626, 2625, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2630, 3, 388, 194, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 379, 1, 0, 0, 0, 2631, 2632, 3, 360, 180, 0, 2632, 2633, 3, 376, 188, 0, 2633, 2635, 1, 0, 0, 0, 2634, 2631, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 381, 1, 0, 0, 0, 2638, 2640, 3, 366, 183, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 3, 378, 189, 0, 2642, 383, 1, 0, 0, 0, 2643, 2660, 5, 161, 0, 0, 2644, 2645, 5, 235, 0, 0, 2645, 2647, 3, 386, 193, 0, 2646, 2648, 3, 32, 16, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2661, 1, 0, 0, 0, 2649, 2651, 5, 166, 0, 0, 2650, 2652, 5, 329, 0, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2658, 3, 628, 314, 0, 2654, 2655, 5, 399, 0, 0, 2655, 2656, 3, 254, 127, 0, 2656, 2657, 5, 400, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2644, 1, 0, 0, 0, 2660, 2649, 1, 0, 0, 0, 2661, 385, 1, 0, 0, 0, 2662, 2664, 5, 188, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 5, 93, 0, 0, 2666, 2668, 5, 426, 0, 0, 2667, 2669, 3, 222, 111, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2672, 3, 246, 123, 0, 2671, 2670, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2676, 1, 0, 0, 0, 2673, 2674, 5, 329, 0, 0, 2674, 2676, 3, 628, 314, 0, 2675, 2663, 1, 0, 0, 0, 2675, 2673, 1, 0, 0, 0, 2676, 387, 1, 0, 0, 0, 2677, 2686, 5, 185, 0, 0, 2678, 2679, 5, 431, 0, 0, 2679, 2681, 5, 397, 0, 0, 2680, 2678, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2687, 5, 431, 0, 0, 2683, 2684, 5, 431, 0, 0, 2684, 2685, 5, 223, 0, 0, 2685, 2687, 5, 431, 0, 0, 2686, 2680, 1, 0, 0, 0, 2686, 2683, 1, 0, 0, 0, 2687, 389, 1, 0, 0, 0, 2688, 2689, 3, 256, 128, 0, 2689, 2690, 5, 405, 0, 0, 2690, 2691, 3, 392, 196, 0, 2691, 391, 1, 0, 0, 0, 2692, 2695, 5, 83, 0, 0, 2693, 2695, 3, 594, 297, 0, 2694, 2692, 1, 0, 0, 0, 2694, 2693, 1, 0, 0, 0, 2695, 393, 1, 0, 0, 0, 2696, 2697, 5, 304, 0, 0, 2697, 2702, 3, 390, 195, 0, 2698, 2699, 5, 397, 0, 0, 2699, 2701, 3, 390, 195, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 395, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 318, 0, 0, 2706, 2715, 5, 344, 0, 0, 2707, 2712, 3, 398, 199, 0, 2708, 2709, 5, 397, 0, 0, 2709, 2711, 3, 398, 199, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2714, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2716, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2707, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2729, 1, 0, 0, 0, 2717, 2719, 5, 48, 0, 0, 2718, 2720, 5, 389, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2729, 1, 0, 0, 0, 2721, 2723, 5, 289, 0, 0, 2722, 2724, 5, 389, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2729, 1, 0, 0, 0, 2725, 2726, 5, 304, 0, 0, 2726, 2727, 5, 22, 0, 0, 2727, 2729, 7, 23, 0, 0, 2728, 2705, 1, 0, 0, 0, 2728, 2717, 1, 0, 0, 0, 2728, 2721, 1, 0, 0, 0, 2728, 2725, 1, 0, 0, 0, 2729, 397, 1, 0, 0, 0, 2730, 2731, 5, 168, 0, 0, 2731, 2732, 5, 182, 0, 0, 2732, 2736, 5, 312, 0, 0, 2733, 2734, 5, 261, 0, 0, 2734, 2736, 7, 24, 0, 0, 2735, 2730, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 399, 1, 0, 0, 0, 2737, 2740, 3, 404, 202, 0, 2738, 2740, 3, 406, 203, 0, 2739, 2737, 1, 0, 0, 0, 2739, 2738, 1, 0, 0, 0, 2740, 2743, 1, 0, 0, 0, 2741, 2739, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2745, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2746, 3, 402, 201, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 401, 1, 0, 0, 0, 2747, 2748, 5, 383, 0, 0, 2748, 2749, 5, 216, 0, 0, 2749, 2752, 5, 201, 0, 0, 2750, 2751, 5, 11, 0, 0, 2751, 2753, 3, 584, 292, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2755, 5, 335, 0, 0, 2755, 2757, 5, 161, 0, 0, 2756, 2758, 3, 266, 133, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 5, 374, 0, 0, 2760, 2761, 3, 540, 270, 0, 2761, 403, 1, 0, 0, 0, 2762, 2763, 5, 383, 0, 0, 2763, 2764, 5, 201, 0, 0, 2764, 2765, 5, 11, 0, 0, 2765, 2766, 3, 584, 292, 0, 2766, 2770, 5, 335, 0, 0, 2767, 2768, 5, 365, 0, 0, 2768, 2771, 3, 394, 197, 0, 2769, 2771, 5, 86, 0, 0, 2770, 2767, 1, 0, 0, 0, 2770, 2769, 1, 0, 0, 0, 2771, 405, 1, 0, 0, 0, 2772, 2773, 5, 383, 0, 0, 2773, 2774, 5, 201, 0, 0, 2774, 2778, 5, 335, 0, 0, 2775, 2776, 5, 365, 0, 0, 2776, 2779, 3, 394, 197, 0, 2777, 2779, 5, 86, 0, 0, 2778, 2775, 1, 0, 0, 0, 2778, 2777, 1, 0, 0, 0, 2779, 407, 1, 0, 0, 0, 2780, 2781, 5, 246, 0, 0, 2781, 2782, 5, 426, 0, 0, 2782, 409, 1, 0, 0, 0, 2783, 2784, 5, 352, 0, 0, 2784, 2785, 5, 426, 0, 0, 2785, 411, 1, 0, 0, 0, 2786, 2787, 5, 320, 0, 0, 2787, 2788, 5, 426, 0, 0, 2788, 413, 1, 0, 0, 0, 2789, 2820, 5, 9, 0, 0, 2790, 2791, 5, 329, 0, 0, 2791, 2792, 3, 480, 240, 0, 2792, 2793, 3, 416, 208, 0, 2793, 2821, 1, 0, 0, 0, 2794, 2795, 5, 378, 0, 0, 2795, 2797, 3, 484, 242, 0, 2796, 2798, 5, 17, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 3, 420, 210, 0, 2800, 2821, 1, 0, 0, 0, 2801, 2802, 5, 202, 0, 0, 2802, 2803, 5, 378, 0, 0, 2803, 2807, 3, 484, 242, 0, 2804, 2808, 3, 36, 18, 0, 2805, 2808, 3, 38, 19, 0, 2806, 2808, 5, 265, 0, 0, 2807, 2804, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2821, 1, 0, 0, 0, 2809, 2810, 3, 70, 35, 0, 2810, 2811, 3, 422, 211, 0, 2811, 2821, 1, 0, 0, 0, 2812, 2813, 5, 69, 0, 0, 2813, 2821, 3, 424, 212, 0, 2814, 2815, 5, 155, 0, 0, 2815, 2816, 3, 642, 321, 0, 2816, 2817, 5, 224, 0, 0, 2817, 2818, 3, 628, 314, 0, 2818, 2819, 5, 265, 0, 0, 2819, 2821, 1, 0, 0, 0, 2820, 2790, 1, 0, 0, 0, 2820, 2794, 1, 0, 0, 0, 2820, 2801, 1, 0, 0, 0, 2820, 2809, 1, 0, 0, 0, 2820, 2812, 1, 0, 0, 0, 2820, 2814, 1, 0, 0, 0, 2821, 415, 1, 0, 0, 0, 2822, 2823, 5, 274, 0, 0, 2823, 2824, 5, 341, 0, 0, 2824, 2912, 3, 482, 241, 0, 2825, 2826, 5, 102, 0, 0, 2826, 2912, 5, 239, 0, 0, 2827, 2912, 3, 428, 214, 0, 2828, 2830, 5, 4, 0, 0, 2829, 2831, 3, 32, 16, 0, 2830, 2829, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2836, 1, 0, 0, 0, 2832, 2834, 3, 630, 315, 0, 2833, 2835, 3, 426, 213, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2837, 1, 0, 0, 0, 2836, 2832, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2912, 1, 0, 0, 0, 2840, 2844, 5, 342, 0, 0, 2841, 2843, 3, 630, 315, 0, 2842, 2841, 1, 0, 0, 0, 2843, 2846, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2912, 1, 0, 0, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2851, 5, 15, 0, 0, 2848, 2850, 3, 630, 315, 0, 2849, 2848, 1, 0, 0, 0, 2850, 2853, 1, 0, 0, 0, 2851, 2849, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2912, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2854, 2858, 5, 353, 0, 0, 2855, 2857, 3, 630, 315, 0, 2856, 2855, 1, 0, 0, 0, 2857, 2860, 1, 0, 0, 0, 2858, 2856, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2912, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2861, 2862, 5, 304, 0, 0, 2862, 2863, 5, 332, 0, 0, 2863, 2912, 3, 226, 113, 0, 2864, 2865, 5, 363, 0, 0, 2865, 2867, 5, 332, 0, 0, 2866, 2868, 3, 30, 15, 0, 2867, 2866, 1, 0, 0, 0, 2867, 2868, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2912, 3, 226, 113, 0, 2870, 2912, 3, 210, 105, 0, 2871, 2874, 5, 216, 0, 0, 2872, 2875, 5, 310, 0, 0, 2873, 2875, 3, 40, 20, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2873, 1, 0, 0, 0, 2875, 2912, 1, 0, 0, 0, 2876, 2877, 5, 113, 0, 0, 2877, 2878, 3, 630, 315, 0, 2878, 2879, 5, 387, 0, 0, 2879, 2880, 5, 329, 0, 0, 2880, 2881, 3, 480, 240, 0, 2881, 2912, 1, 0, 0, 0, 2882, 2883, 5, 237, 0, 0, 2883, 2884, 5, 45, 0, 0, 2884, 2885, 5, 399, 0, 0, 2885, 2886, 3, 312, 156, 0, 2886, 2887, 5, 400, 0, 0, 2887, 2912, 1, 0, 0, 0, 2888, 2889, 5, 101, 0, 0, 2889, 2890, 5, 55, 0, 0, 2890, 2912, 3, 642, 321, 0, 2891, 2894, 5, 4, 0, 0, 2892, 2895, 3, 290, 145, 0, 2893, 2895, 3, 280, 140, 0, 2894, 2892, 1, 0, 0, 0, 2894, 2893, 1, 0, 0, 0, 2895, 2912, 1, 0, 0, 0, 2896, 2898, 3, 630, 315, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2912, 3, 418, 209, 0, 2900, 2901, 5, 304, 0, 0, 2901, 2902, 5, 236, 0, 0, 2902, 2912, 3, 126, 63, 0, 2903, 2904, 5, 304, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 316, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 204, 102, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2912, 1, 0, 0, 0, 2910, 2912, 3, 432, 216, 0, 2911, 2822, 1, 0, 0, 0, 2911, 2825, 1, 0, 0, 0, 2911, 2827, 1, 0, 0, 0, 2911, 2828, 1, 0, 0, 0, 2911, 2840, 1, 0, 0, 0, 2911, 2847, 1, 0, 0, 0, 2911, 2854, 1, 0, 0, 0, 2911, 2861, 1, 0, 0, 0, 2911, 2864, 1, 0, 0, 0, 2911, 2870, 1, 0, 0, 0, 2911, 2871, 1, 0, 0, 0, 2911, 2876, 1, 0, 0, 0, 2911, 2882, 1, 0, 0, 0, 2911, 2888, 1, 0, 0, 0, 2911, 2891, 1, 0, 0, 0, 2911, 2897, 1, 0, 0, 0, 2911, 2900, 1, 0, 0, 0, 2911, 2903, 1, 0, 0, 0, 2911, 2910, 1, 0, 0, 0, 2912, 417, 1, 0, 0, 0, 2913, 2914, 5, 304, 0, 0, 2914, 2915, 5, 129, 0, 0, 2915, 3046, 3, 434, 217, 0, 2916, 2917, 5, 304, 0, 0, 2917, 2918, 5, 189, 0, 0, 2918, 3046, 5, 426, 0, 0, 2919, 3046, 5, 53, 0, 0, 2920, 2930, 5, 304, 0, 0, 2921, 2922, 5, 301, 0, 0, 2922, 2926, 5, 426, 0, 0, 2923, 2924, 5, 387, 0, 0, 2924, 2925, 5, 302, 0, 0, 2925, 2927, 3, 226, 113, 0, 2926, 2923, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2931, 1, 0, 0, 0, 2928, 2929, 5, 302, 0, 0, 2929, 2931, 3, 226, 113, 0, 2930, 2921, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2931, 3046, 1, 0, 0, 0, 2932, 2933, 5, 363, 0, 0, 2933, 2934, 5, 302, 0, 0, 2934, 3046, 3, 226, 113, 0, 2935, 2936, 5, 274, 0, 0, 2936, 2937, 5, 341, 0, 0, 2937, 3046, 3, 630, 315, 0, 2938, 2939, 5, 166, 0, 0, 2939, 2940, 5, 431, 0, 0, 2940, 3046, 5, 31, 0, 0, 2941, 2942, 5, 304, 0, 0, 2942, 2943, 5, 310, 0, 0, 2943, 2944, 5, 189, 0, 0, 2944, 2945, 5, 399, 0, 0, 2945, 2950, 3, 430, 215, 0, 2946, 2947, 5, 397, 0, 0, 2947, 2949, 3, 430, 215, 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, 2953, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2954, 5, 400, 0, 0, 2954, 3046, 1, 0, 0, 0, 2955, 2956, 5, 216, 0, 0, 2956, 3046, 7, 25, 0, 0, 2957, 3046, 3, 208, 104, 0, 2958, 2959, 5, 49, 0, 0, 2959, 2962, 5, 426, 0, 0, 2960, 2961, 5, 11, 0, 0, 2961, 2963, 5, 380, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2968, 1, 0, 0, 0, 2964, 2965, 5, 42, 0, 0, 2965, 2966, 5, 166, 0, 0, 2966, 2967, 5, 431, 0, 0, 2967, 2969, 5, 31, 0, 0, 2968, 2964, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2972, 3, 544, 272, 0, 2971, 2970, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2974, 1, 0, 0, 0, 2973, 2975, 3, 408, 204, 0, 2974, 2973, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2980, 1, 0, 0, 0, 2976, 2977, 5, 387, 0, 0, 2977, 2978, 5, 235, 0, 0, 2978, 2979, 5, 332, 0, 0, 2979, 2981, 3, 226, 113, 0, 2980, 2976, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 3046, 1, 0, 0, 0, 2982, 2983, 5, 365, 0, 0, 2983, 2984, 5, 319, 0, 0, 2984, 2986, 5, 134, 0, 0, 2985, 2987, 5, 45, 0, 0, 2986, 2985, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 3, 256, 128, 0, 2989, 2990, 5, 304, 0, 0, 2990, 2993, 3, 226, 113, 0, 2991, 2992, 5, 47, 0, 0, 2992, 2994, 5, 426, 0, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 3046, 1, 0, 0, 0, 2995, 2996, 5, 365, 0, 0, 2996, 2997, 5, 319, 0, 0, 2997, 2998, 5, 304, 0, 0, 2998, 3046, 3, 226, 113, 0, 2999, 3001, 5, 38, 0, 0, 3000, 3002, 5, 45, 0, 0, 3001, 3000, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 3, 256, 128, 0, 3004, 3005, 3, 260, 130, 0, 3005, 3007, 3, 344, 172, 0, 3006, 3008, 3, 326, 163, 0, 3007, 3006, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3010, 5, 47, 0, 0, 3010, 3012, 5, 426, 0, 0, 3011, 3009, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3016, 1, 0, 0, 0, 3013, 3017, 5, 130, 0, 0, 3014, 3015, 5, 6, 0, 0, 3015, 3017, 3, 642, 321, 0, 3016, 3013, 1, 0, 0, 0, 3016, 3014, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3019, 1, 0, 0, 0, 3018, 3020, 3, 34, 17, 0, 3019, 3018, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3046, 1, 0, 0, 0, 3021, 3024, 5, 4, 0, 0, 3022, 3024, 5, 278, 0, 0, 3023, 3021, 1, 0, 0, 0, 3023, 3022, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 5, 46, 0, 0, 3026, 3027, 5, 399, 0, 0, 3027, 3028, 3, 248, 124, 0, 3028, 3030, 5, 400, 0, 0, 3029, 3031, 3, 34, 17, 0, 3030, 3029, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3046, 1, 0, 0, 0, 3032, 3033, 5, 365, 0, 0, 3033, 3035, 5, 46, 0, 0, 3034, 3036, 3, 34, 17, 0, 3035, 3034, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3046, 1, 0, 0, 0, 3037, 3043, 3, 270, 135, 0, 3038, 3040, 5, 218, 0, 0, 3039, 3041, 5, 34, 0, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3044, 1, 0, 0, 0, 3042, 3044, 5, 222, 0, 0, 3043, 3038, 1, 0, 0, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3046, 1, 0, 0, 0, 3045, 2913, 1, 0, 0, 0, 3045, 2916, 1, 0, 0, 0, 3045, 2919, 1, 0, 0, 0, 3045, 2920, 1, 0, 0, 0, 3045, 2932, 1, 0, 0, 0, 3045, 2935, 1, 0, 0, 0, 3045, 2938, 1, 0, 0, 0, 3045, 2941, 1, 0, 0, 0, 3045, 2955, 1, 0, 0, 0, 3045, 2957, 1, 0, 0, 0, 3045, 2958, 1, 0, 0, 0, 3045, 2982, 1, 0, 0, 0, 3045, 2995, 1, 0, 0, 0, 3045, 2999, 1, 0, 0, 0, 3045, 3023, 1, 0, 0, 0, 3045, 3032, 1, 0, 0, 0, 3045, 3037, 1, 0, 0, 0, 3046, 419, 1, 0, 0, 0, 3047, 3048, 5, 304, 0, 0, 3048, 3049, 5, 332, 0, 0, 3049, 3074, 3, 226, 113, 0, 3050, 3051, 5, 363, 0, 0, 3051, 3053, 5, 332, 0, 0, 3052, 3054, 3, 30, 15, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3074, 3, 226, 113, 0, 3056, 3057, 5, 274, 0, 0, 3057, 3058, 5, 341, 0, 0, 3058, 3074, 3, 482, 241, 0, 3059, 3061, 5, 4, 0, 0, 3060, 3062, 3, 32, 16, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3067, 1, 0, 0, 0, 3063, 3065, 3, 630, 315, 0, 3064, 3066, 3, 426, 213, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 3063, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3074, 1, 0, 0, 0, 3071, 3074, 3, 428, 214, 0, 3072, 3074, 3, 382, 191, 0, 3073, 3047, 1, 0, 0, 0, 3073, 3050, 1, 0, 0, 0, 3073, 3056, 1, 0, 0, 0, 3073, 3059, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3072, 1, 0, 0, 0, 3074, 421, 1, 0, 0, 0, 3075, 3076, 3, 474, 237, 0, 3076, 3077, 5, 304, 0, 0, 3077, 3078, 5, 76, 0, 0, 3078, 3079, 3, 230, 115, 0, 3079, 3091, 1, 0, 0, 0, 3080, 3081, 3, 474, 237, 0, 3081, 3082, 5, 304, 0, 0, 3082, 3083, 5, 236, 0, 0, 3083, 3084, 3, 128, 64, 0, 3084, 3091, 1, 0, 0, 0, 3085, 3086, 3, 474, 237, 0, 3086, 3087, 5, 304, 0, 0, 3087, 3088, 7, 26, 0, 0, 3088, 3089, 5, 426, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3075, 1, 0, 0, 0, 3090, 3080, 1, 0, 0, 0, 3090, 3085, 1, 0, 0, 0, 3091, 423, 1, 0, 0, 0, 3092, 3093, 3, 474, 237, 0, 3093, 3094, 5, 304, 0, 0, 3094, 3095, 5, 77, 0, 0, 3095, 3096, 3, 230, 115, 0, 3096, 3108, 1, 0, 0, 0, 3097, 3098, 3, 474, 237, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 236, 0, 0, 3100, 3101, 3, 128, 64, 0, 3101, 3108, 1, 0, 0, 0, 3102, 3103, 3, 474, 237, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 367, 0, 0, 3105, 3106, 5, 426, 0, 0, 3106, 3108, 1, 0, 0, 0, 3107, 3092, 1, 0, 0, 0, 3107, 3097, 1, 0, 0, 0, 3107, 3102, 1, 0, 0, 0, 3108, 425, 1, 0, 0, 0, 3109, 3110, 5, 189, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 427, 1, 0, 0, 0, 3112, 3114, 5, 101, 0, 0, 3113, 3115, 3, 30, 15, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 5, 237, 0, 0, 3117, 3123, 3, 634, 317, 0, 3118, 3119, 5, 397, 0, 0, 3119, 3120, 5, 237, 0, 0, 3120, 3122, 3, 634, 317, 0, 3121, 3118, 1, 0, 0, 0, 3122, 3125, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3128, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3126, 3127, 5, 152, 0, 0, 3127, 3129, 5, 254, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3131, 1, 0, 0, 0, 3130, 3132, 5, 255, 0, 0, 3131, 3130, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3134, 1, 0, 0, 0, 3133, 3135, 3, 14, 7, 0, 3134, 3133, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 429, 1, 0, 0, 0, 3136, 3139, 3, 576, 288, 0, 3137, 3139, 3, 296, 148, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 5, 405, 0, 0, 3141, 3142, 5, 426, 0, 0, 3142, 431, 1, 0, 0, 0, 3143, 3153, 5, 115, 0, 0, 3144, 3145, 5, 289, 0, 0, 3145, 3146, 5, 399, 0, 0, 3146, 3154, 7, 27, 0, 0, 3147, 3148, 5, 118, 0, 0, 3148, 3149, 5, 399, 0, 0, 3149, 3154, 5, 426, 0, 0, 3150, 3151, 5, 306, 0, 0, 3151, 3152, 5, 399, 0, 0, 3152, 3154, 5, 431, 0, 0, 3153, 3144, 1, 0, 0, 0, 3153, 3147, 1, 0, 0, 0, 3153, 3150, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 5, 400, 0, 0, 3156, 433, 1, 0, 0, 0, 3157, 3158, 5, 160, 0, 0, 3158, 3159, 5, 426, 0, 0, 3159, 3160, 5, 233, 0, 0, 3160, 3161, 5, 426, 0, 0, 3161, 3162, 5, 301, 0, 0, 3162, 3167, 5, 426, 0, 0, 3163, 3164, 5, 159, 0, 0, 3164, 3165, 5, 426, 0, 0, 3165, 3166, 5, 232, 0, 0, 3166, 3168, 5, 426, 0, 0, 3167, 3163, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3171, 1, 0, 0, 0, 3169, 3171, 3, 642, 321, 0, 3170, 3157, 1, 0, 0, 0, 3170, 3169, 1, 0, 0, 0, 3171, 435, 1, 0, 0, 0, 3172, 3173, 5, 184, 0, 0, 3173, 3182, 5, 128, 0, 0, 3174, 3175, 5, 184, 0, 0, 3175, 3176, 5, 128, 0, 0, 3176, 3177, 3, 642, 321, 0, 3177, 3178, 5, 426, 0, 0, 3178, 3182, 1, 0, 0, 0, 3179, 3180, 5, 184, 0, 0, 3180, 3182, 3, 480, 240, 0, 3181, 3172, 1, 0, 0, 0, 3181, 3174, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3182, 437, 1, 0, 0, 0, 3183, 3185, 5, 58, 0, 0, 3184, 3186, 5, 333, 0, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3188, 1, 0, 0, 0, 3187, 3189, 5, 345, 0, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3191, 1, 0, 0, 0, 3190, 3192, 5, 123, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3195, 5, 329, 0, 0, 3194, 3196, 3, 32, 16, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3254, 3, 482, 241, 0, 3198, 3200, 3, 436, 218, 0, 3199, 3201, 3, 200, 100, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, 0, 0, 0, 3202, 3204, 3, 222, 111, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 246, 123, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3209, 1, 0, 0, 0, 3208, 3210, 3, 426, 213, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 224, 112, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3216, 3, 198, 99, 0, 3215, 3214, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3255, 1, 0, 0, 0, 3217, 3218, 5, 399, 0, 0, 3218, 3219, 3, 250, 125, 0, 3219, 3220, 5, 400, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3217, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 196, 98, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3228, 3, 200, 100, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3231, 3, 208, 104, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3234, 3, 210, 105, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 1, 0, 0, 0, 3235, 3237, 3, 222, 111, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 3, 246, 123, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3243, 3, 426, 213, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3245, 1, 0, 0, 0, 3244, 3246, 3, 224, 112, 0, 3245, 3244, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3248, 1, 0, 0, 0, 3247, 3249, 3, 198, 99, 0, 3248, 3247, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3252, 1, 0, 0, 0, 3250, 3251, 5, 17, 0, 0, 3251, 3253, 3, 382, 191, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3198, 1, 0, 0, 0, 3254, 3221, 1, 0, 0, 0, 3255, 3319, 1, 0, 0, 0, 3256, 3257, 5, 58, 0, 0, 3257, 3258, 5, 195, 0, 0, 3258, 3260, 5, 329, 0, 0, 3259, 3261, 3, 32, 16, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3316, 3, 482, 241, 0, 3263, 3265, 3, 436, 218, 0, 3264, 3266, 3, 222, 111, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 246, 123, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 426, 213, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3275, 3, 224, 112, 0, 3274, 3273, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3278, 3, 198, 99, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3317, 1, 0, 0, 0, 3279, 3280, 5, 399, 0, 0, 3280, 3281, 3, 250, 125, 0, 3281, 3282, 5, 400, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3287, 3, 196, 98, 0, 3286, 3285, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3289, 1, 0, 0, 0, 3288, 3290, 3, 200, 100, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 208, 104, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3295, 1, 0, 0, 0, 3294, 3296, 3, 210, 105, 0, 3295, 3294, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 222, 111, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3302, 3, 246, 123, 0, 3301, 3300, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3304, 1, 0, 0, 0, 3303, 3305, 3, 426, 213, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3307, 1, 0, 0, 0, 3306, 3308, 3, 224, 112, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3310, 1, 0, 0, 0, 3309, 3311, 3, 198, 99, 0, 3310, 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3313, 5, 17, 0, 0, 3313, 3315, 3, 382, 191, 0, 3314, 3312, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3263, 1, 0, 0, 0, 3316, 3283, 1, 0, 0, 0, 3317, 3319, 1, 0, 0, 0, 3318, 3183, 1, 0, 0, 0, 3318, 3256, 1, 0, 0, 0, 3319, 439, 1, 0, 0, 0, 3320, 3321, 5, 58, 0, 0, 3321, 3323, 5, 69, 0, 0, 3322, 3324, 3, 32, 16, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3328, 3, 642, 321, 0, 3326, 3327, 5, 352, 0, 0, 3327, 3329, 5, 426, 0, 0, 3328, 3326, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3332, 1, 0, 0, 0, 3330, 3331, 5, 367, 0, 0, 3331, 3333, 5, 426, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 47, 0, 0, 3335, 3337, 5, 426, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3341, 1, 0, 0, 0, 3338, 3339, 5, 387, 0, 0, 3339, 3340, 5, 77, 0, 0, 3340, 3342, 3, 230, 115, 0, 3341, 3338, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 441, 1, 0, 0, 0, 3343, 3344, 5, 101, 0, 0, 3344, 3346, 5, 69, 0, 0, 3345, 3347, 3, 30, 15, 0, 3346, 3345, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 3, 642, 321, 0, 3349, 443, 1, 0, 0, 0, 3350, 3351, 3, 642, 321, 0, 3351, 3352, 5, 395, 0, 0, 3352, 3354, 1, 0, 0, 0, 3353, 3350, 1, 0, 0, 0, 3354, 3357, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3358, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3359, 5, 415, 0, 0, 3359, 445, 1, 0, 0, 0, 3360, 3365, 3, 584, 292, 0, 3361, 3362, 5, 397, 0, 0, 3362, 3364, 3, 584, 292, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 447, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3373, 3, 642, 321, 0, 3369, 3370, 5, 397, 0, 0, 3370, 3372, 3, 642, 321, 0, 3371, 3369, 1, 0, 0, 0, 3372, 3375, 1, 0, 0, 0, 3373, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 449, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3376, 3377, 5, 139, 0, 0, 3377, 3378, 3, 452, 226, 0, 3378, 451, 1, 0, 0, 0, 3379, 3380, 5, 359, 0, 0, 3380, 3383, 3, 460, 230, 0, 3381, 3382, 5, 397, 0, 0, 3382, 3384, 3, 460, 230, 0, 3383, 3381, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3383, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3389, 3, 456, 228, 0, 3388, 3379, 1, 0, 0, 0, 3388, 3387, 1, 0, 0, 0, 3389, 453, 1, 0, 0, 0, 3390, 3394, 3, 470, 235, 0, 3391, 3393, 3, 464, 232, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3423, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3401, 3, 500, 250, 0, 3398, 3400, 3, 464, 232, 0, 3399, 3398, 1, 0, 0, 0, 3400, 3403, 1, 0, 0, 0, 3401, 3399, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3423, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3404, 3408, 3, 488, 244, 0, 3405, 3407, 3, 464, 232, 0, 3406, 3405, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3423, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3415, 3, 494, 247, 0, 3412, 3414, 3, 464, 232, 0, 3413, 3412, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3423, 1, 0, 0, 0, 3417, 3415, 1, 0, 0, 0, 3418, 3419, 5, 399, 0, 0, 3419, 3420, 3, 456, 228, 0, 3420, 3421, 5, 400, 0, 0, 3421, 3423, 1, 0, 0, 0, 3422, 3390, 1, 0, 0, 0, 3422, 3397, 1, 0, 0, 0, 3422, 3404, 1, 0, 0, 0, 3422, 3411, 1, 0, 0, 0, 3422, 3418, 1, 0, 0, 0, 3423, 455, 1, 0, 0, 0, 3424, 3435, 3, 454, 227, 0, 3425, 3426, 3, 462, 231, 0, 3426, 3431, 3, 458, 229, 0, 3427, 3428, 5, 224, 0, 0, 3428, 3432, 3, 584, 292, 0, 3429, 3430, 5, 370, 0, 0, 3430, 3432, 3, 266, 133, 0, 3431, 3427, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3434, 1, 0, 0, 0, 3433, 3425, 1, 0, 0, 0, 3434, 3437, 1, 0, 0, 0, 3435, 3433, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 457, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3438, 3443, 3, 470, 235, 0, 3439, 3443, 3, 500, 250, 0, 3440, 3443, 3, 488, 244, 0, 3441, 3443, 3, 494, 247, 0, 3442, 3438, 1, 0, 0, 0, 3442, 3439, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3441, 1, 0, 0, 0, 3443, 3447, 1, 0, 0, 0, 3444, 3446, 3, 464, 232, 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, 459, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3452, 5, 250, 0, 0, 3451, 3450, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3455, 3, 478, 239, 0, 3454, 3456, 3, 468, 234, 0, 3455, 3454, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3461, 1, 0, 0, 0, 3457, 3459, 5, 17, 0, 0, 3458, 3457, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3462, 3, 642, 321, 0, 3461, 3458, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 5, 399, 0, 0, 3464, 3465, 3, 446, 223, 0, 3465, 3466, 5, 400, 0, 0, 3466, 461, 1, 0, 0, 0, 3467, 3482, 5, 397, 0, 0, 3468, 3479, 5, 157, 0, 0, 3469, 3479, 5, 60, 0, 0, 3470, 3472, 7, 28, 0, 0, 3471, 3473, 5, 231, 0, 0, 3472, 3471, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3479, 1, 0, 0, 0, 3474, 3476, 5, 180, 0, 0, 3475, 3477, 7, 29, 0, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3479, 1, 0, 0, 0, 3478, 3468, 1, 0, 0, 0, 3478, 3469, 1, 0, 0, 0, 3478, 3470, 1, 0, 0, 0, 3478, 3474, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3482, 5, 171, 0, 0, 3481, 3467, 1, 0, 0, 0, 3481, 3478, 1, 0, 0, 0, 3482, 463, 1, 0, 0, 0, 3483, 3484, 5, 178, 0, 0, 3484, 3485, 5, 378, 0, 0, 3485, 3486, 5, 231, 0, 0, 3486, 3487, 3, 554, 277, 0, 3487, 3497, 3, 466, 233, 0, 3488, 3489, 5, 17, 0, 0, 3489, 3494, 3, 642, 321, 0, 3490, 3491, 5, 397, 0, 0, 3491, 3493, 3, 642, 321, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3498, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3488, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 3541, 1, 0, 0, 0, 3499, 3501, 5, 397, 0, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3538, 5, 178, 0, 0, 3503, 3504, 5, 378, 0, 0, 3504, 3505, 3, 554, 277, 0, 3505, 3515, 3, 466, 233, 0, 3506, 3507, 5, 17, 0, 0, 3507, 3512, 3, 642, 321, 0, 3508, 3509, 5, 397, 0, 0, 3509, 3511, 3, 642, 321, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3514, 1, 0, 0, 0, 3512, 3510, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3516, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3515, 3506, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3539, 1, 0, 0, 0, 3517, 3518, 5, 329, 0, 0, 3518, 3519, 5, 399, 0, 0, 3519, 3520, 3, 498, 249, 0, 3520, 3522, 5, 400, 0, 0, 3521, 3523, 5, 17, 0, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3536, 3, 466, 233, 0, 3525, 3526, 5, 399, 0, 0, 3526, 3531, 3, 642, 321, 0, 3527, 3528, 5, 397, 0, 0, 3528, 3530, 3, 642, 321, 0, 3529, 3527, 1, 0, 0, 0, 3530, 3533, 1, 0, 0, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3534, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3535, 5, 400, 0, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3525, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3539, 1, 0, 0, 0, 3538, 3503, 1, 0, 0, 0, 3538, 3517, 1, 0, 0, 0, 3539, 3541, 1, 0, 0, 0, 3540, 3483, 1, 0, 0, 0, 3540, 3500, 1, 0, 0, 0, 3541, 465, 1, 0, 0, 0, 3542, 3543, 3, 642, 321, 0, 3543, 467, 1, 0, 0, 0, 3544, 3545, 5, 331, 0, 0, 3545, 3546, 5, 399, 0, 0, 3546, 3547, 5, 30, 0, 0, 3547, 3548, 5, 431, 0, 0, 3548, 3549, 5, 230, 0, 0, 3549, 3550, 5, 221, 0, 0, 3550, 3560, 5, 431, 0, 0, 3551, 3552, 5, 224, 0, 0, 3552, 3557, 3, 584, 292, 0, 3553, 3554, 5, 397, 0, 0, 3554, 3556, 3, 584, 292, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3561, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3551, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3572, 5, 400, 0, 0, 3563, 3564, 5, 331, 0, 0, 3564, 3568, 5, 399, 0, 0, 3565, 3566, 5, 431, 0, 0, 3566, 3569, 7, 30, 0, 0, 3567, 3569, 5, 430, 0, 0, 3568, 3565, 1, 0, 0, 0, 3568, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3572, 5, 400, 0, 0, 3571, 3544, 1, 0, 0, 0, 3571, 3563, 1, 0, 0, 0, 3572, 469, 1, 0, 0, 0, 3573, 3575, 3, 478, 239, 0, 3574, 3576, 3, 226, 113, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3578, 1, 0, 0, 0, 3577, 3579, 3, 468, 234, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3581, 1, 0, 0, 0, 3580, 3582, 3, 472, 236, 0, 3581, 3580, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3587, 1, 0, 0, 0, 3583, 3585, 5, 17, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 3, 642, 321, 0, 3587, 3584, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 471, 1, 0, 0, 0, 3589, 3599, 5, 134, 0, 0, 3590, 3591, 5, 327, 0, 0, 3591, 3592, 5, 17, 0, 0, 3592, 3593, 5, 221, 0, 0, 3593, 3600, 3, 584, 292, 0, 3594, 3595, 5, 134, 0, 0, 3595, 3596, 5, 328, 0, 0, 3596, 3597, 5, 17, 0, 0, 3597, 3598, 5, 221, 0, 0, 3598, 3600, 5, 431, 0, 0, 3599, 3590, 1, 0, 0, 0, 3599, 3594, 1, 0, 0, 0, 3600, 473, 1, 0, 0, 0, 3601, 3602, 3, 642, 321, 0, 3602, 475, 1, 0, 0, 0, 3603, 3604, 3, 642, 321, 0, 3604, 477, 1, 0, 0, 0, 3605, 3608, 3, 480, 240, 0, 3606, 3608, 3, 484, 242, 0, 3607, 3605, 1, 0, 0, 0, 3607, 3606, 1, 0, 0, 0, 3608, 479, 1, 0, 0, 0, 3609, 3610, 3, 642, 321, 0, 3610, 3611, 5, 395, 0, 0, 3611, 3614, 3, 642, 321, 0, 3612, 3613, 5, 395, 0, 0, 3613, 3615, 3, 642, 321, 0, 3614, 3612, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3618, 1, 0, 0, 0, 3616, 3618, 3, 642, 321, 0, 3617, 3609, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 481, 1, 0, 0, 0, 3619, 3620, 3, 642, 321, 0, 3620, 3621, 5, 395, 0, 0, 3621, 3624, 3, 642, 321, 0, 3622, 3623, 5, 395, 0, 0, 3623, 3625, 3, 642, 321, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3628, 3, 642, 321, 0, 3627, 3619, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 483, 1, 0, 0, 0, 3629, 3630, 3, 642, 321, 0, 3630, 3631, 5, 395, 0, 0, 3631, 3633, 1, 0, 0, 0, 3632, 3629, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 3, 642, 321, 0, 3635, 485, 1, 0, 0, 0, 3636, 3637, 3, 642, 321, 0, 3637, 3638, 5, 395, 0, 0, 3638, 3640, 1, 0, 0, 0, 3639, 3636, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 3, 642, 321, 0, 3642, 487, 1, 0, 0, 0, 3643, 3644, 5, 399, 0, 0, 3644, 3645, 3, 362, 181, 0, 3645, 3647, 5, 400, 0, 0, 3646, 3648, 5, 17, 0, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 3, 642, 321, 0, 3650, 489, 1, 0, 0, 0, 3651, 3653, 3, 546, 273, 0, 3652, 3654, 3, 544, 272, 0, 3653, 3652, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3663, 1, 0, 0, 0, 3655, 3663, 3, 544, 272, 0, 3656, 3658, 3, 550, 275, 0, 3657, 3659, 3, 552, 276, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3663, 1, 0, 0, 0, 3660, 3663, 3, 552, 276, 0, 3661, 3663, 3, 548, 274, 0, 3662, 3651, 1, 0, 0, 0, 3662, 3655, 1, 0, 0, 0, 3662, 3656, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 491, 1, 0, 0, 0, 3664, 3668, 3, 488, 244, 0, 3665, 3668, 3, 470, 235, 0, 3666, 3668, 3, 494, 247, 0, 3667, 3664, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 493, 1, 0, 0, 0, 3669, 3670, 3, 642, 321, 0, 3670, 3671, 5, 399, 0, 0, 3671, 3672, 5, 224, 0, 0, 3672, 3674, 3, 492, 246, 0, 3673, 3675, 3, 490, 245, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3691, 1, 0, 0, 0, 3676, 3677, 5, 432, 0, 0, 3677, 3678, 5, 399, 0, 0, 3678, 3679, 3, 584, 292, 0, 3679, 3688, 5, 400, 0, 0, 3680, 3681, 5, 397, 0, 0, 3681, 3682, 5, 432, 0, 0, 3682, 3683, 5, 399, 0, 0, 3683, 3684, 3, 584, 292, 0, 3684, 3685, 5, 400, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3680, 1, 0, 0, 0, 3687, 3690, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3691, 3676, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 5, 400, 0, 0, 3694, 3696, 3, 642, 321, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 495, 1, 0, 0, 0, 3697, 3698, 5, 384, 0, 0, 3698, 3699, 3, 584, 292, 0, 3699, 497, 1, 0, 0, 0, 3700, 3719, 5, 374, 0, 0, 3701, 3706, 3, 540, 270, 0, 3702, 3703, 5, 397, 0, 0, 3703, 3705, 3, 540, 270, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3720, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3710, 5, 399, 0, 0, 3710, 3711, 3, 536, 268, 0, 3711, 3716, 5, 400, 0, 0, 3712, 3713, 5, 397, 0, 0, 3713, 3715, 3, 540, 270, 0, 3714, 3712, 1, 0, 0, 0, 3715, 3718, 1, 0, 0, 0, 3716, 3714, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3701, 1, 0, 0, 0, 3719, 3709, 1, 0, 0, 0, 3720, 499, 1, 0, 0, 0, 3721, 3722, 5, 329, 0, 0, 3722, 3723, 5, 399, 0, 0, 3723, 3724, 3, 498, 249, 0, 3724, 3726, 5, 400, 0, 0, 3725, 3727, 5, 17, 0, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3738, 3, 466, 233, 0, 3729, 3730, 5, 399, 0, 0, 3730, 3735, 3, 642, 321, 0, 3731, 3732, 5, 397, 0, 0, 3732, 3734, 3, 642, 321, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3737, 1, 0, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3739, 1, 0, 0, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3729, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3741, 5, 400, 0, 0, 3741, 501, 1, 0, 0, 0, 3742, 3744, 5, 299, 0, 0, 3743, 3745, 5, 436, 0, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3759, 1, 0, 0, 0, 3746, 3748, 7, 22, 0, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3754, 3, 506, 253, 0, 3750, 3751, 5, 397, 0, 0, 3751, 3753, 3, 506, 253, 0, 3752, 3750, 1, 0, 0, 0, 3753, 3756, 1, 0, 0, 0, 3754, 3752, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3760, 1, 0, 0, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3758, 5, 347, 0, 0, 3758, 3760, 3, 504, 252, 0, 3759, 3747, 1, 0, 0, 0, 3759, 3757, 1, 0, 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3763, 3, 508, 254, 0, 3762, 3742, 1, 0, 0, 0, 3762, 3761, 1, 0, 0, 0, 3763, 503, 1, 0, 0, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3766, 3, 512, 256, 0, 3766, 3767, 5, 400, 0, 0, 3767, 3768, 3, 212, 106, 0, 3768, 3769, 3, 216, 108, 0, 3769, 3770, 5, 370, 0, 0, 3770, 3783, 5, 426, 0, 0, 3771, 3781, 5, 17, 0, 0, 3772, 3775, 5, 399, 0, 0, 3773, 3776, 3, 448, 224, 0, 3774, 3776, 3, 248, 124, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3774, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 400, 0, 0, 3778, 3782, 1, 0, 0, 0, 3779, 3782, 3, 448, 224, 0, 3780, 3782, 3, 248, 124, 0, 3781, 3772, 1, 0, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3780, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3771, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3786, 3, 212, 106, 0, 3786, 3787, 3, 214, 107, 0, 3787, 505, 1, 0, 0, 0, 3788, 3812, 3, 444, 222, 0, 3789, 3792, 3, 256, 128, 0, 3790, 3792, 3, 584, 292, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3790, 1, 0, 0, 0, 3792, 3809, 1, 0, 0, 0, 3793, 3795, 5, 17, 0, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3810, 3, 642, 321, 0, 3797, 3798, 5, 17, 0, 0, 3798, 3799, 5, 399, 0, 0, 3799, 3804, 3, 642, 321, 0, 3800, 3801, 5, 397, 0, 0, 3801, 3803, 3, 642, 321, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3807, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3808, 5, 400, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3794, 1, 0, 0, 0, 3809, 3797, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3788, 1, 0, 0, 0, 3811, 3791, 1, 0, 0, 0, 3812, 507, 1, 0, 0, 0, 3813, 3814, 7, 31, 0, 0, 3814, 3815, 3, 512, 256, 0, 3815, 3816, 3, 212, 106, 0, 3816, 3817, 3, 216, 108, 0, 3817, 3818, 5, 370, 0, 0, 3818, 3831, 5, 426, 0, 0, 3819, 3829, 5, 17, 0, 0, 3820, 3823, 5, 399, 0, 0, 3821, 3824, 3, 448, 224, 0, 3822, 3824, 3, 248, 124, 0, 3823, 3821, 1, 0, 0, 0, 3823, 3822, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3826, 5, 400, 0, 0, 3826, 3830, 1, 0, 0, 0, 3827, 3830, 3, 448, 224, 0, 3828, 3830, 3, 248, 124, 0, 3829, 3820, 1, 0, 0, 0, 3829, 3827, 1, 0, 0, 0, 3829, 3828, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3819, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 3, 212, 106, 0, 3834, 3835, 3, 214, 107, 0, 3835, 509, 1, 0, 0, 0, 3836, 3839, 3, 444, 222, 0, 3837, 3839, 3, 584, 292, 0, 3838, 3836, 1, 0, 0, 0, 3838, 3837, 1, 0, 0, 0, 3839, 511, 1, 0, 0, 0, 3840, 3845, 3, 510, 255, 0, 3841, 3842, 5, 397, 0, 0, 3842, 3844, 3, 510, 255, 0, 3843, 3841, 1, 0, 0, 0, 3844, 3847, 1, 0, 0, 0, 3845, 3843, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 513, 1, 0, 0, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3849, 5, 386, 0, 0, 3849, 3850, 3, 642, 321, 0, 3850, 3851, 5, 17, 0, 0, 3851, 3859, 3, 516, 258, 0, 3852, 3853, 5, 397, 0, 0, 3853, 3854, 3, 642, 321, 0, 3854, 3855, 5, 17, 0, 0, 3855, 3856, 3, 516, 258, 0, 3856, 3858, 1, 0, 0, 0, 3857, 3852, 1, 0, 0, 0, 3858, 3861, 1, 0, 0, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 515, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3862, 3875, 3, 642, 321, 0, 3863, 3865, 5, 399, 0, 0, 3864, 3866, 3, 642, 321, 0, 3865, 3864, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3869, 3, 490, 245, 0, 3868, 3867, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 1, 0, 0, 0, 3870, 3872, 3, 518, 259, 0, 3871, 3870, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3875, 5, 400, 0, 0, 3874, 3862, 1, 0, 0, 0, 3874, 3863, 1, 0, 0, 0, 3875, 517, 1, 0, 0, 0, 3876, 3890, 7, 32, 0, 0, 3877, 3878, 5, 354, 0, 0, 3878, 3884, 5, 247, 0, 0, 3879, 3880, 5, 62, 0, 0, 3880, 3884, 5, 291, 0, 0, 3881, 3882, 5, 431, 0, 0, 3882, 3884, 5, 247, 0, 0, 3883, 3877, 1, 0, 0, 0, 3883, 3879, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3891, 1, 0, 0, 0, 3885, 3886, 5, 25, 0, 0, 3886, 3887, 3, 520, 260, 0, 3887, 3888, 5, 11, 0, 0, 3888, 3889, 3, 520, 260, 0, 3889, 3891, 1, 0, 0, 0, 3890, 3883, 1, 0, 0, 0, 3890, 3885, 1, 0, 0, 0, 3891, 519, 1, 0, 0, 0, 3892, 3893, 7, 33, 0, 0, 3893, 3897, 7, 34, 0, 0, 3894, 3895, 5, 62, 0, 0, 3895, 3897, 5, 291, 0, 0, 3896, 3892, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3897, 521, 1, 0, 0, 0, 3898, 3899, 5, 144, 0, 0, 3899, 3905, 5, 32, 0, 0, 3900, 3906, 3, 256, 128, 0, 3901, 3906, 3, 524, 262, 0, 3902, 3906, 3, 526, 263, 0, 3903, 3904, 5, 399, 0, 0, 3904, 3906, 5, 400, 0, 0, 3905, 3900, 1, 0, 0, 0, 3905, 3901, 1, 0, 0, 0, 3905, 3902, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3906, 523, 1, 0, 0, 0, 3907, 3910, 5, 290, 0, 0, 3908, 3910, 5, 61, 0, 0, 3909, 3907, 1, 0, 0, 0, 3909, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3912, 5, 399, 0, 0, 3912, 3917, 3, 584, 292, 0, 3913, 3914, 5, 397, 0, 0, 3914, 3916, 3, 584, 292, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3919, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3920, 1, 0, 0, 0, 3919, 3917, 1, 0, 0, 0, 3920, 3921, 5, 400, 0, 0, 3921, 525, 1, 0, 0, 0, 3922, 3927, 3, 542, 271, 0, 3923, 3924, 5, 387, 0, 0, 3924, 3928, 5, 290, 0, 0, 3925, 3926, 5, 387, 0, 0, 3926, 3928, 5, 61, 0, 0, 3927, 3923, 1, 0, 0, 0, 3927, 3925, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3942, 1, 0, 0, 0, 3929, 3930, 5, 145, 0, 0, 3930, 3931, 5, 305, 0, 0, 3931, 3932, 5, 399, 0, 0, 3932, 3937, 3, 528, 264, 0, 3933, 3934, 5, 397, 0, 0, 3934, 3936, 3, 528, 264, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3939, 1, 0, 0, 0, 3937, 3935, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 1, 0, 0, 0, 3939, 3937, 1, 0, 0, 0, 3940, 3941, 5, 400, 0, 0, 3941, 3943, 1, 0, 0, 0, 3942, 3929, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 527, 1, 0, 0, 0, 3944, 3946, 5, 399, 0, 0, 3945, 3947, 3, 584, 292, 0, 3946, 3945, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3952, 1, 0, 0, 0, 3948, 3949, 5, 397, 0, 0, 3949, 3951, 3, 584, 292, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 5, 400, 0, 0, 3956, 3958, 3, 584, 292, 0, 3957, 3944, 1, 0, 0, 0, 3957, 3956, 1, 0, 0, 0, 3958, 529, 1, 0, 0, 0, 3959, 3960, 5, 146, 0, 0, 3960, 3961, 3, 584, 292, 0, 3961, 531, 1, 0, 0, 0, 3962, 3963, 5, 256, 0, 0, 3963, 3964, 3, 584, 292, 0, 3964, 533, 1, 0, 0, 0, 3965, 3968, 5, 83, 0, 0, 3966, 3968, 3, 584, 292, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3966, 1, 0, 0, 0, 3968, 535, 1, 0, 0, 0, 3969, 3971, 3, 584, 292, 0, 3970, 3972, 5, 17, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3974, 1, 0, 0, 0, 3973, 3975, 3, 642, 321, 0, 3974, 3973, 1, 0, 0, 0, 3974, 3975, 1, 0, 0, 0, 3975, 3986, 1, 0, 0, 0, 3976, 3977, 5, 397, 0, 0, 3977, 3979, 3, 584, 292, 0, 3978, 3980, 5, 17, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3983, 3, 642, 321, 0, 3982, 3981, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3976, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 537, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3989, 3992, 3, 540, 270, 0, 3990, 3992, 3, 542, 271, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3990, 1, 0, 0, 0, 3992, 539, 1, 0, 0, 0, 3993, 3994, 5, 399, 0, 0, 3994, 3995, 3, 542, 271, 0, 3995, 3996, 5, 400, 0, 0, 3996, 541, 1, 0, 0, 0, 3997, 4004, 3, 534, 267, 0, 3998, 3999, 5, 397, 0, 0, 3999, 4001, 3, 534, 267, 0, 4000, 3998, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4005, 1, 0, 0, 0, 4004, 4000, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 543, 1, 0, 0, 0, 4006, 4007, 5, 229, 0, 0, 4007, 4008, 5, 32, 0, 0, 4008, 4013, 3, 310, 155, 0, 4009, 4010, 5, 397, 0, 0, 4010, 4012, 3, 310, 155, 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, 545, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4016, 4017, 5, 237, 0, 0, 4017, 4018, 5, 32, 0, 0, 4018, 4019, 3, 538, 269, 0, 4019, 547, 1, 0, 0, 0, 4020, 4021, 5, 41, 0, 0, 4021, 4022, 5, 32, 0, 0, 4022, 4023, 3, 538, 269, 0, 4023, 549, 1, 0, 0, 0, 4024, 4025, 5, 97, 0, 0, 4025, 4026, 5, 32, 0, 0, 4026, 4027, 3, 538, 269, 0, 4027, 551, 1, 0, 0, 0, 4028, 4029, 5, 314, 0, 0, 4029, 4049, 5, 32, 0, 0, 4030, 4031, 5, 399, 0, 0, 4031, 4036, 3, 310, 155, 0, 4032, 4033, 5, 397, 0, 0, 4033, 4035, 3, 310, 155, 0, 4034, 4032, 1, 0, 0, 0, 4035, 4038, 1, 0, 0, 0, 4036, 4034, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4039, 1, 0, 0, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4040, 5, 400, 0, 0, 4040, 4050, 1, 0, 0, 0, 4041, 4046, 3, 310, 155, 0, 4042, 4043, 5, 397, 0, 0, 4043, 4045, 3, 310, 155, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4048, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4050, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4049, 4030, 1, 0, 0, 0, 4049, 4041, 1, 0, 0, 0, 4050, 553, 1, 0, 0, 0, 4051, 4052, 5, 349, 0, 0, 4052, 4056, 5, 399, 0, 0, 4053, 4057, 5, 179, 0, 0, 4054, 4057, 5, 343, 0, 0, 4055, 4057, 5, 29, 0, 0, 4056, 4053, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 1, 0, 0, 0, 4058, 4060, 3, 510, 255, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4062, 5, 139, 0, 0, 4062, 4063, 3, 510, 255, 0, 4063, 4064, 5, 400, 0, 0, 4064, 4105, 1, 0, 0, 0, 4065, 4066, 3, 562, 281, 0, 4066, 4081, 5, 399, 0, 0, 4067, 4082, 5, 415, 0, 0, 4068, 4070, 7, 22, 0, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4079, 1, 0, 0, 0, 4071, 4076, 3, 510, 255, 0, 4072, 4073, 5, 397, 0, 0, 4073, 4075, 3, 510, 255, 0, 4074, 4072, 1, 0, 0, 0, 4075, 4078, 1, 0, 0, 0, 4076, 4074, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4071, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 1, 0, 0, 0, 4081, 4067, 1, 0, 0, 0, 4081, 4069, 1, 0, 0, 0, 4082, 4102, 1, 0, 0, 0, 4083, 4084, 5, 400, 0, 0, 4084, 4085, 5, 388, 0, 0, 4085, 4086, 5, 144, 0, 0, 4086, 4087, 5, 399, 0, 0, 4087, 4088, 3, 544, 272, 0, 4088, 4089, 5, 400, 0, 0, 4089, 4103, 1, 0, 0, 0, 4090, 4092, 5, 400, 0, 0, 4091, 4093, 3, 556, 278, 0, 4092, 4091, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4095, 5, 234, 0, 0, 4095, 4103, 3, 516, 258, 0, 4096, 4097, 3, 556, 278, 0, 4097, 4098, 5, 400, 0, 0, 4098, 4099, 5, 234, 0, 0, 4099, 4100, 3, 516, 258, 0, 4100, 4103, 1, 0, 0, 0, 4101, 4103, 5, 400, 0, 0, 4102, 4083, 1, 0, 0, 0, 4102, 4090, 1, 0, 0, 0, 4102, 4096, 1, 0, 0, 0, 4102, 4101, 1, 0, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4051, 1, 0, 0, 0, 4104, 4065, 1, 0, 0, 0, 4105, 555, 1, 0, 0, 0, 4106, 4107, 7, 35, 0, 0, 4107, 4108, 5, 220, 0, 0, 4108, 557, 1, 0, 0, 0, 4109, 4110, 3, 644, 322, 0, 4110, 559, 1, 0, 0, 0, 4111, 4114, 3, 644, 322, 0, 4112, 4114, 5, 426, 0, 0, 4113, 4111, 1, 0, 0, 0, 4113, 4112, 1, 0, 0, 0, 4114, 561, 1, 0, 0, 0, 4115, 4119, 3, 644, 322, 0, 4116, 4119, 3, 650, 325, 0, 4117, 4119, 3, 640, 320, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 563, 1, 0, 0, 0, 4120, 4121, 5, 36, 0, 0, 4121, 4122, 5, 399, 0, 0, 4122, 4123, 3, 584, 292, 0, 4123, 4124, 5, 17, 0, 0, 4124, 4127, 3, 350, 175, 0, 4125, 4126, 5, 137, 0, 0, 4126, 4128, 5, 426, 0, 0, 4127, 4125, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4129, 1, 0, 0, 0, 4129, 4130, 5, 400, 0, 0, 4130, 565, 1, 0, 0, 0, 4131, 4132, 5, 35, 0, 0, 4132, 4138, 3, 584, 292, 0, 4133, 4134, 5, 383, 0, 0, 4134, 4135, 3, 584, 292, 0, 4135, 4136, 5, 335, 0, 0, 4136, 4137, 3, 584, 292, 0, 4137, 4139, 1, 0, 0, 0, 4138, 4133, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 4138, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4143, 5, 105, 0, 0, 4143, 4145, 3, 584, 292, 0, 4144, 4142, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4147, 5, 108, 0, 0, 4147, 567, 1, 0, 0, 0, 4148, 4154, 5, 35, 0, 0, 4149, 4150, 5, 383, 0, 0, 4150, 4151, 3, 584, 292, 0, 4151, 4152, 5, 335, 0, 0, 4152, 4153, 3, 584, 292, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4149, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4160, 1, 0, 0, 0, 4158, 4159, 5, 105, 0, 0, 4159, 4161, 3, 584, 292, 0, 4160, 4158, 1, 0, 0, 0, 4160, 4161, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 5, 108, 0, 0, 4163, 569, 1, 0, 0, 0, 4164, 4165, 5, 132, 0, 0, 4165, 4166, 5, 399, 0, 0, 4166, 4169, 3, 584, 292, 0, 4167, 4168, 5, 341, 0, 0, 4168, 4170, 3, 574, 287, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 5, 400, 0, 0, 4172, 571, 1, 0, 0, 0, 4173, 4174, 5, 124, 0, 0, 4174, 4175, 5, 399, 0, 0, 4175, 4176, 3, 574, 287, 0, 4176, 4177, 5, 139, 0, 0, 4177, 4178, 3, 584, 292, 0, 4178, 4179, 5, 400, 0, 0, 4179, 573, 1, 0, 0, 0, 4180, 4189, 3, 670, 335, 0, 4181, 4189, 5, 257, 0, 0, 4182, 4189, 3, 672, 336, 0, 4183, 4189, 3, 674, 337, 0, 4184, 4189, 3, 676, 338, 0, 4185, 4189, 3, 678, 339, 0, 4186, 4189, 3, 680, 340, 0, 4187, 4189, 3, 682, 341, 0, 4188, 4180, 1, 0, 0, 0, 4188, 4181, 1, 0, 0, 0, 4188, 4182, 1, 0, 0, 0, 4188, 4183, 1, 0, 0, 0, 4188, 4184, 1, 0, 0, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4187, 1, 0, 0, 0, 4189, 575, 1, 0, 0, 0, 4190, 4191, 3, 578, 289, 0, 4191, 4192, 3, 582, 291, 0, 4192, 4219, 1, 0, 0, 0, 4193, 4219, 5, 431, 0, 0, 4194, 4195, 5, 71, 0, 0, 4195, 4219, 5, 426, 0, 0, 4196, 4219, 5, 63, 0, 0, 4197, 4198, 5, 337, 0, 0, 4198, 4219, 5, 426, 0, 0, 4199, 4219, 5, 64, 0, 0, 4200, 4201, 5, 338, 0, 0, 4201, 4219, 5, 426, 0, 0, 4202, 4206, 5, 426, 0, 0, 4203, 4205, 5, 426, 0, 0, 4204, 4203, 1, 0, 0, 0, 4205, 4208, 1, 0, 0, 0, 4206, 4204, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 4219, 1, 0, 0, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4219, 5, 428, 0, 0, 4210, 4219, 5, 429, 0, 0, 4211, 4212, 5, 433, 0, 0, 4212, 4219, 5, 427, 0, 0, 4213, 4219, 5, 350, 0, 0, 4214, 4219, 5, 125, 0, 0, 4215, 4219, 5, 219, 0, 0, 4216, 4219, 5, 424, 0, 0, 4217, 4219, 3, 258, 129, 0, 4218, 4190, 1, 0, 0, 0, 4218, 4193, 1, 0, 0, 0, 4218, 4194, 1, 0, 0, 0, 4218, 4196, 1, 0, 0, 0, 4218, 4197, 1, 0, 0, 0, 4218, 4199, 1, 0, 0, 0, 4218, 4200, 1, 0, 0, 0, 4218, 4202, 1, 0, 0, 0, 4218, 4209, 1, 0, 0, 0, 4218, 4210, 1, 0, 0, 0, 4218, 4211, 1, 0, 0, 0, 4218, 4213, 1, 0, 0, 0, 4218, 4214, 1, 0, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4216, 1, 0, 0, 0, 4218, 4217, 1, 0, 0, 0, 4219, 577, 1, 0, 0, 0, 4220, 4221, 7, 27, 0, 0, 4221, 579, 1, 0, 0, 0, 4222, 4223, 5, 399, 0, 0, 4223, 4224, 3, 578, 289, 0, 4224, 4225, 5, 400, 0, 0, 4225, 4226, 3, 582, 291, 0, 4226, 4238, 1, 0, 0, 0, 4227, 4233, 5, 165, 0, 0, 4228, 4234, 3, 578, 289, 0, 4229, 4230, 5, 399, 0, 0, 4230, 4231, 3, 584, 292, 0, 4231, 4232, 5, 400, 0, 0, 4232, 4234, 1, 0, 0, 0, 4233, 4228, 1, 0, 0, 0, 4233, 4229, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 3, 582, 291, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4222, 1, 0, 0, 0, 4237, 4227, 1, 0, 0, 0, 4238, 581, 1, 0, 0, 0, 4239, 4240, 3, 670, 335, 0, 4240, 4241, 5, 341, 0, 0, 4241, 4242, 3, 672, 336, 0, 4242, 4254, 1, 0, 0, 0, 4243, 4244, 3, 676, 338, 0, 4244, 4245, 5, 341, 0, 0, 4245, 4246, 3, 682, 341, 0, 4246, 4254, 1, 0, 0, 0, 4247, 4254, 3, 670, 335, 0, 4248, 4254, 3, 672, 336, 0, 4249, 4254, 3, 676, 338, 0, 4250, 4254, 3, 678, 339, 0, 4251, 4254, 3, 680, 340, 0, 4252, 4254, 3, 682, 341, 0, 4253, 4239, 1, 0, 0, 0, 4253, 4243, 1, 0, 0, 0, 4253, 4247, 1, 0, 0, 0, 4253, 4248, 1, 0, 0, 0, 4253, 4249, 1, 0, 0, 0, 4253, 4250, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4253, 4252, 1, 0, 0, 0, 4254, 583, 1, 0, 0, 0, 4255, 4260, 3, 626, 313, 0, 4256, 4257, 5, 228, 0, 0, 4257, 4259, 3, 626, 313, 0, 4258, 4256, 1, 0, 0, 0, 4259, 4262, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 585, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4263, 4275, 3, 576, 288, 0, 4264, 4275, 3, 580, 290, 0, 4265, 4275, 3, 564, 282, 0, 4266, 4275, 3, 572, 286, 0, 4267, 4275, 3, 570, 285, 0, 4268, 4275, 3, 566, 283, 0, 4269, 4275, 3, 568, 284, 0, 4270, 4275, 3, 604, 302, 0, 4271, 4275, 3, 554, 277, 0, 4272, 4275, 3, 540, 270, 0, 4273, 4275, 3, 642, 321, 0, 4274, 4263, 1, 0, 0, 0, 4274, 4264, 1, 0, 0, 0, 4274, 4265, 1, 0, 0, 0, 4274, 4266, 1, 0, 0, 0, 4274, 4267, 1, 0, 0, 0, 4274, 4268, 1, 0, 0, 0, 4274, 4269, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4272, 1, 0, 0, 0, 4274, 4273, 1, 0, 0, 0, 4275, 587, 1, 0, 0, 0, 4276, 4278, 7, 36, 0, 0, 4277, 4276, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4291, 3, 586, 293, 0, 4283, 4284, 5, 401, 0, 0, 4284, 4285, 3, 584, 292, 0, 4285, 4286, 5, 402, 0, 0, 4286, 4290, 1, 0, 0, 0, 4287, 4288, 5, 395, 0, 0, 4288, 4290, 3, 642, 321, 0, 4289, 4283, 1, 0, 0, 0, 4289, 4287, 1, 0, 0, 0, 4290, 4293, 1, 0, 0, 0, 4291, 4289, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 589, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4294, 4299, 3, 588, 294, 0, 4295, 4296, 5, 423, 0, 0, 4296, 4298, 3, 588, 294, 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, 591, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4302, 4307, 3, 590, 295, 0, 4303, 4304, 7, 37, 0, 0, 4304, 4306, 3, 590, 295, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 593, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4315, 3, 592, 296, 0, 4311, 4312, 7, 38, 0, 0, 4312, 4314, 3, 592, 296, 0, 4313, 4311, 1, 0, 0, 0, 4314, 4317, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 595, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4318, 4323, 3, 594, 297, 0, 4319, 4320, 5, 422, 0, 0, 4320, 4322, 3, 594, 297, 0, 4321, 4319, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 597, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4331, 3, 596, 298, 0, 4327, 4328, 5, 419, 0, 0, 4328, 4330, 3, 596, 298, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 599, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4339, 3, 598, 299, 0, 4335, 4336, 5, 421, 0, 0, 4336, 4338, 3, 598, 299, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4341, 1, 0, 0, 0, 4339, 4337, 1, 0, 0, 0, 4339, 4340, 1, 0, 0, 0, 4340, 601, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4343, 7, 39, 0, 0, 4343, 603, 1, 0, 0, 0, 4344, 4345, 5, 399, 0, 0, 4345, 4346, 3, 378, 189, 0, 4346, 4347, 5, 400, 0, 0, 4347, 605, 1, 0, 0, 0, 4348, 4350, 3, 600, 300, 0, 4349, 4351, 3, 608, 304, 0, 4350, 4349, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4355, 1, 0, 0, 0, 4352, 4353, 5, 117, 0, 0, 4353, 4355, 3, 604, 302, 0, 4354, 4348, 1, 0, 0, 0, 4354, 4352, 1, 0, 0, 0, 4355, 607, 1, 0, 0, 0, 4356, 4357, 3, 602, 301, 0, 4357, 4358, 3, 600, 300, 0, 4358, 4363, 1, 0, 0, 0, 4359, 4363, 3, 610, 305, 0, 4360, 4361, 5, 216, 0, 0, 4361, 4363, 3, 614, 307, 0, 4362, 4356, 1, 0, 0, 0, 4362, 4359, 1, 0, 0, 0, 4362, 4360, 1, 0, 0, 0, 4363, 609, 1, 0, 0, 0, 4364, 4365, 5, 154, 0, 0, 4365, 4379, 3, 612, 306, 0, 4366, 4367, 5, 25, 0, 0, 4367, 4368, 3, 600, 300, 0, 4368, 4369, 5, 11, 0, 0, 4369, 4370, 3, 600, 300, 0, 4370, 4379, 1, 0, 0, 0, 4371, 4372, 5, 184, 0, 0, 4372, 4373, 7, 40, 0, 0, 4373, 4379, 3, 540, 270, 0, 4374, 4375, 3, 638, 319, 0, 4375, 4376, 7, 41, 0, 0, 4376, 4377, 3, 604, 302, 0, 4377, 4379, 1, 0, 0, 0, 4378, 4364, 1, 0, 0, 0, 4378, 4366, 1, 0, 0, 0, 4378, 4371, 1, 0, 0, 0, 4378, 4374, 1, 0, 0, 0, 4379, 611, 1, 0, 0, 0, 4380, 4383, 3, 604, 302, 0, 4381, 4383, 3, 540, 270, 0, 4382, 4380, 1, 0, 0, 0, 4382, 4381, 1, 0, 0, 0, 4383, 613, 1, 0, 0, 0, 4384, 4385, 7, 42, 0, 0, 4385, 4388, 3, 600, 300, 0, 4386, 4388, 3, 610, 305, 0, 4387, 4384, 1, 0, 0, 0, 4387, 4386, 1, 0, 0, 0, 4388, 615, 1, 0, 0, 0, 4389, 4390, 5, 167, 0, 0, 4390, 4391, 5, 96, 0, 0, 4391, 4392, 5, 139, 0, 0, 4392, 617, 1, 0, 0, 0, 4393, 4401, 5, 405, 0, 0, 4394, 4401, 5, 406, 0, 0, 4395, 4401, 5, 407, 0, 0, 4396, 4397, 5, 167, 0, 0, 4397, 4398, 5, 216, 0, 0, 4398, 4399, 5, 96, 0, 0, 4399, 4401, 5, 139, 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, 4401, 619, 1, 0, 0, 0, 4402, 4411, 3, 606, 303, 0, 4403, 4404, 3, 618, 309, 0, 4404, 4405, 3, 606, 303, 0, 4405, 4410, 1, 0, 0, 0, 4406, 4407, 3, 616, 308, 0, 4407, 4408, 3, 606, 303, 0, 4408, 4410, 1, 0, 0, 0, 4409, 4403, 1, 0, 0, 0, 4409, 4406, 1, 0, 0, 0, 4410, 4413, 1, 0, 0, 0, 4411, 4409, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 621, 1, 0, 0, 0, 4413, 4411, 1, 0, 0, 0, 4414, 4421, 5, 219, 0, 0, 4415, 4421, 5, 350, 0, 0, 4416, 4421, 5, 125, 0, 0, 4417, 4421, 5, 360, 0, 0, 4418, 4419, 5, 216, 0, 0, 4419, 4421, 7, 43, 0, 0, 4420, 4414, 1, 0, 0, 0, 4420, 4415, 1, 0, 0, 0, 4420, 4416, 1, 0, 0, 0, 4420, 4417, 1, 0, 0, 0, 4420, 4418, 1, 0, 0, 0, 4421, 623, 1, 0, 0, 0, 4422, 4424, 5, 216, 0, 0, 4423, 4422, 1, 0, 0, 0, 4424, 4427, 1, 0, 0, 0, 4425, 4423, 1, 0, 0, 0, 4425, 4426, 1, 0, 0, 0, 4426, 4428, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4428, 4431, 3, 620, 310, 0, 4429, 4430, 5, 167, 0, 0, 4430, 4432, 3, 622, 311, 0, 4431, 4429, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 625, 1, 0, 0, 0, 4433, 4438, 3, 624, 312, 0, 4434, 4435, 5, 11, 0, 0, 4435, 4437, 3, 624, 312, 0, 4436, 4434, 1, 0, 0, 0, 4437, 4440, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 627, 1, 0, 0, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4443, 3, 480, 240, 0, 4442, 4444, 3, 630, 315, 0, 4443, 4442, 1, 0, 0, 0, 4443, 4444, 1, 0, 0, 0, 4444, 629, 1, 0, 0, 0, 4445, 4446, 5, 237, 0, 0, 4446, 4447, 5, 399, 0, 0, 4447, 4452, 3, 632, 316, 0, 4448, 4449, 5, 397, 0, 0, 4449, 4451, 3, 632, 316, 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, 4455, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4456, 5, 400, 0, 0, 4456, 631, 1, 0, 0, 0, 4457, 4460, 3, 642, 321, 0, 4458, 4459, 5, 405, 0, 0, 4459, 4461, 3, 576, 288, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 633, 1, 0, 0, 0, 4462, 4463, 5, 399, 0, 0, 4463, 4468, 3, 636, 318, 0, 4464, 4465, 5, 397, 0, 0, 4465, 4467, 3, 636, 318, 0, 4466, 4464, 1, 0, 0, 0, 4467, 4470, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4471, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4471, 4472, 5, 400, 0, 0, 4472, 635, 1, 0, 0, 0, 4473, 4476, 3, 642, 321, 0, 4474, 4477, 5, 184, 0, 0, 4475, 4477, 3, 638, 319, 0, 4476, 4474, 1, 0, 0, 0, 4476, 4475, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4479, 3, 576, 288, 0, 4479, 637, 1, 0, 0, 0, 4480, 4481, 7, 44, 0, 0, 4481, 639, 1, 0, 0, 0, 4482, 4483, 7, 45, 0, 0, 4483, 641, 1, 0, 0, 0, 4484, 4487, 5, 432, 0, 0, 4485, 4487, 3, 648, 324, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 643, 1, 0, 0, 0, 4488, 4491, 3, 642, 321, 0, 4489, 4490, 5, 395, 0, 0, 4490, 4492, 3, 642, 321, 0, 4491, 4489, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 645, 1, 0, 0, 0, 4493, 4494, 3, 642, 321, 0, 4494, 647, 1, 0, 0, 0, 4495, 4496, 7, 46, 0, 0, 4496, 649, 1, 0, 0, 0, 4497, 4498, 7, 47, 0, 0, 4498, 651, 1, 0, 0, 0, 4499, 4551, 3, 642, 321, 0, 4500, 4551, 5, 299, 0, 0, 4501, 4551, 5, 171, 0, 0, 4502, 4551, 5, 237, 0, 0, 4503, 4551, 5, 198, 0, 0, 4504, 4551, 5, 268, 0, 0, 4505, 4551, 5, 369, 0, 0, 4506, 4551, 5, 241, 0, 0, 4507, 4551, 5, 165, 0, 0, 4508, 4551, 5, 292, 0, 0, 4509, 4551, 5, 356, 0, 0, 4510, 4551, 5, 144, 0, 0, 4511, 4551, 5, 203, 0, 0, 4512, 4551, 5, 219, 0, 0, 4513, 4551, 5, 126, 0, 0, 4514, 4551, 5, 188, 0, 0, 4515, 4551, 5, 101, 0, 0, 4516, 4551, 5, 329, 0, 0, 4517, 4551, 5, 224, 0, 0, 4518, 4551, 5, 291, 0, 0, 4519, 4551, 5, 145, 0, 0, 4520, 4551, 5, 304, 0, 0, 4521, 4551, 5, 135, 0, 0, 4522, 4551, 5, 318, 0, 0, 4523, 4551, 5, 161, 0, 0, 4524, 4551, 5, 54, 0, 0, 4525, 4551, 5, 166, 0, 0, 4526, 4551, 5, 358, 0, 0, 4527, 4551, 5, 45, 0, 0, 4528, 4551, 5, 347, 0, 0, 4529, 4551, 5, 96, 0, 0, 4530, 4551, 5, 154, 0, 0, 4531, 4551, 5, 269, 0, 0, 4532, 4551, 5, 337, 0, 0, 4533, 4551, 5, 225, 0, 0, 4534, 4551, 5, 108, 0, 0, 4535, 4551, 5, 141, 0, 0, 4536, 4551, 5, 365, 0, 0, 4537, 4551, 5, 21, 0, 0, 4538, 4551, 5, 78, 0, 0, 4539, 4551, 5, 374, 0, 0, 4540, 4551, 5, 336, 0, 0, 4541, 4551, 5, 167, 0, 0, 4542, 4551, 5, 134, 0, 0, 4543, 4551, 5, 216, 0, 0, 4544, 4551, 5, 27, 0, 0, 4545, 4551, 5, 370, 0, 0, 4546, 4551, 5, 263, 0, 0, 4547, 4551, 5, 25, 0, 0, 4548, 4551, 5, 62, 0, 0, 4549, 4551, 5, 17, 0, 0, 4550, 4499, 1, 0, 0, 0, 4550, 4500, 1, 0, 0, 0, 4550, 4501, 1, 0, 0, 0, 4550, 4502, 1, 0, 0, 0, 4550, 4503, 1, 0, 0, 0, 4550, 4504, 1, 0, 0, 0, 4550, 4505, 1, 0, 0, 0, 4550, 4506, 1, 0, 0, 0, 4550, 4507, 1, 0, 0, 0, 4550, 4508, 1, 0, 0, 0, 4550, 4509, 1, 0, 0, 0, 4550, 4510, 1, 0, 0, 0, 4550, 4511, 1, 0, 0, 0, 4550, 4512, 1, 0, 0, 0, 4550, 4513, 1, 0, 0, 0, 4550, 4514, 1, 0, 0, 0, 4550, 4515, 1, 0, 0, 0, 4550, 4516, 1, 0, 0, 0, 4550, 4517, 1, 0, 0, 0, 4550, 4518, 1, 0, 0, 0, 4550, 4519, 1, 0, 0, 0, 4550, 4520, 1, 0, 0, 0, 4550, 4521, 1, 0, 0, 0, 4550, 4522, 1, 0, 0, 0, 4550, 4523, 1, 0, 0, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4525, 1, 0, 0, 0, 4550, 4526, 1, 0, 0, 0, 4550, 4527, 1, 0, 0, 0, 4550, 4528, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4533, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4535, 1, 0, 0, 0, 4550, 4536, 1, 0, 0, 0, 4550, 4537, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4540, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4542, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4544, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4546, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4550, 4549, 1, 0, 0, 0, 4551, 653, 1, 0, 0, 0, 4552, 4553, 5, 58, 0, 0, 4553, 4554, 5, 280, 0, 0, 4554, 4556, 5, 243, 0, 0, 4555, 4557, 3, 32, 16, 0, 4556, 4555, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4567, 1, 0, 0, 0, 4558, 4559, 3, 642, 321, 0, 4559, 4560, 5, 184, 0, 0, 4560, 4561, 3, 642, 321, 0, 4561, 4568, 1, 0, 0, 0, 4562, 4565, 3, 642, 321, 0, 4563, 4564, 5, 387, 0, 0, 4564, 4566, 3, 660, 330, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4568, 1, 0, 0, 0, 4567, 4558, 1, 0, 0, 0, 4567, 4562, 1, 0, 0, 0, 4568, 4718, 1, 0, 0, 0, 4569, 4570, 5, 9, 0, 0, 4570, 4571, 5, 280, 0, 0, 4571, 4572, 5, 243, 0, 0, 4572, 4597, 3, 642, 321, 0, 4573, 4598, 5, 373, 0, 0, 4574, 4598, 3, 668, 334, 0, 4575, 4576, 5, 304, 0, 0, 4576, 4598, 3, 660, 330, 0, 4577, 4578, 5, 363, 0, 0, 4578, 4583, 3, 662, 331, 0, 4579, 4580, 5, 397, 0, 0, 4580, 4582, 3, 662, 331, 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, 4598, 1, 0, 0, 0, 4585, 4583, 1, 0, 0, 0, 4586, 4587, 5, 274, 0, 0, 4587, 4588, 5, 341, 0, 0, 4588, 4598, 3, 642, 321, 0, 4589, 4591, 3, 664, 332, 0, 4590, 4592, 3, 666, 333, 0, 4591, 4590, 1, 0, 0, 0, 4591, 4592, 1, 0, 0, 0, 4592, 4598, 1, 0, 0, 0, 4593, 4595, 3, 666, 333, 0, 4594, 4596, 3, 664, 332, 0, 4595, 4594, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4598, 1, 0, 0, 0, 4597, 4573, 1, 0, 0, 0, 4597, 4574, 1, 0, 0, 0, 4597, 4575, 1, 0, 0, 0, 4597, 4577, 1, 0, 0, 0, 4597, 4586, 1, 0, 0, 0, 4597, 4589, 1, 0, 0, 0, 4597, 4593, 1, 0, 0, 0, 4598, 4718, 1, 0, 0, 0, 4599, 4600, 5, 101, 0, 0, 4600, 4601, 5, 280, 0, 0, 4601, 4603, 5, 243, 0, 0, 4602, 4604, 3, 30, 15, 0, 4603, 4602, 1, 0, 0, 0, 4603, 4604, 1, 0, 0, 0, 4604, 4605, 1, 0, 0, 0, 4605, 4718, 3, 642, 321, 0, 4606, 4609, 3, 666, 333, 0, 4607, 4609, 3, 668, 334, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4611, 5, 390, 0, 0, 4611, 4612, 5, 197, 0, 0, 4612, 4718, 1, 0, 0, 0, 4613, 4625, 5, 278, 0, 0, 4614, 4615, 5, 3, 0, 0, 4615, 4616, 5, 280, 0, 0, 4616, 4617, 5, 243, 0, 0, 4617, 4618, 5, 387, 0, 0, 4618, 4626, 3, 642, 321, 0, 4619, 4620, 5, 280, 0, 0, 4620, 4621, 5, 243, 0, 0, 4621, 4622, 3, 642, 321, 0, 4622, 4623, 5, 387, 0, 0, 4623, 4624, 3, 642, 321, 0, 4624, 4626, 1, 0, 0, 0, 4625, 4614, 1, 0, 0, 0, 4625, 4619, 1, 0, 0, 0, 4626, 4718, 1, 0, 0, 0, 4627, 4628, 5, 58, 0, 0, 4628, 4629, 5, 348, 0, 0, 4629, 4630, 3, 642, 321, 0, 4630, 4631, 5, 395, 0, 0, 4631, 4632, 3, 642, 321, 0, 4632, 4633, 5, 383, 0, 0, 4633, 4634, 3, 688, 344, 0, 4634, 4635, 5, 99, 0, 0, 4635, 4636, 3, 690, 345, 0, 4636, 4718, 1, 0, 0, 0, 4637, 4638, 5, 9, 0, 0, 4638, 4639, 5, 348, 0, 0, 4639, 4640, 3, 642, 321, 0, 4640, 4641, 5, 395, 0, 0, 4641, 4658, 3, 642, 321, 0, 4642, 4643, 5, 383, 0, 0, 4643, 4644, 3, 688, 344, 0, 4644, 4645, 5, 99, 0, 0, 4645, 4646, 3, 690, 345, 0, 4646, 4659, 1, 0, 0, 0, 4647, 4648, 5, 4, 0, 0, 4648, 4652, 5, 341, 0, 0, 4649, 4650, 5, 101, 0, 0, 4650, 4652, 5, 139, 0, 0, 4651, 4647, 1, 0, 0, 0, 4651, 4649, 1, 0, 0, 0, 4652, 4656, 1, 0, 0, 0, 4653, 4654, 5, 246, 0, 0, 4654, 4657, 3, 686, 343, 0, 4655, 4657, 5, 362, 0, 0, 4656, 4653, 1, 0, 0, 0, 4656, 4655, 1, 0, 0, 0, 4657, 4659, 1, 0, 0, 0, 4658, 4642, 1, 0, 0, 0, 4658, 4651, 1, 0, 0, 0, 4659, 4718, 1, 0, 0, 0, 4660, 4661, 5, 101, 0, 0, 4661, 4662, 5, 348, 0, 0, 4662, 4663, 3, 642, 321, 0, 4663, 4664, 5, 395, 0, 0, 4664, 4665, 3, 642, 321, 0, 4665, 4718, 1, 0, 0, 0, 4666, 4667, 5, 58, 0, 0, 4667, 4668, 5, 246, 0, 0, 4668, 4669, 3, 642, 321, 0, 4669, 4670, 5, 395, 0, 0, 4670, 4671, 3, 686, 343, 0, 4671, 4672, 5, 387, 0, 0, 4672, 4673, 3, 694, 347, 0, 4673, 4718, 1, 0, 0, 0, 4674, 4675, 5, 9, 0, 0, 4675, 4676, 5, 246, 0, 0, 4676, 4677, 3, 642, 321, 0, 4677, 4678, 5, 395, 0, 0, 4678, 4686, 3, 686, 343, 0, 4679, 4680, 5, 304, 0, 0, 4680, 4687, 3, 694, 347, 0, 4681, 4682, 5, 363, 0, 0, 4682, 4687, 5, 294, 0, 0, 4683, 4684, 7, 48, 0, 0, 4684, 4685, 5, 348, 0, 0, 4685, 4687, 3, 642, 321, 0, 4686, 4679, 1, 0, 0, 0, 4686, 4681, 1, 0, 0, 0, 4686, 4683, 1, 0, 0, 0, 4687, 4718, 1, 0, 0, 0, 4688, 4689, 5, 101, 0, 0, 4689, 4690, 5, 246, 0, 0, 4690, 4691, 3, 642, 321, 0, 4691, 4692, 5, 395, 0, 0, 4692, 4693, 3, 686, 343, 0, 4693, 4718, 1, 0, 0, 0, 4694, 4695, 7, 49, 0, 0, 4695, 4696, 3, 656, 328, 0, 4696, 4697, 5, 200, 0, 0, 4697, 4698, 5, 426, 0, 0, 4698, 4699, 5, 154, 0, 0, 4699, 4703, 3, 642, 321, 0, 4700, 4701, 5, 341, 0, 0, 4701, 4704, 3, 686, 343, 0, 4702, 4704, 5, 362, 0, 0, 4703, 4700, 1, 0, 0, 0, 4703, 4702, 1, 0, 0, 0, 4704, 4708, 1, 0, 0, 0, 4705, 4706, 5, 387, 0, 0, 4706, 4707, 5, 229, 0, 0, 4707, 4709, 5, 431, 0, 0, 4708, 4705, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4718, 1, 0, 0, 0, 4710, 4711, 5, 101, 0, 0, 4711, 4712, 3, 656, 328, 0, 4712, 4713, 5, 200, 0, 0, 4713, 4714, 5, 426, 0, 0, 4714, 4715, 5, 154, 0, 0, 4715, 4716, 3, 642, 321, 0, 4716, 4718, 1, 0, 0, 0, 4717, 4552, 1, 0, 0, 0, 4717, 4569, 1, 0, 0, 0, 4717, 4599, 1, 0, 0, 0, 4717, 4608, 1, 0, 0, 0, 4717, 4613, 1, 0, 0, 0, 4717, 4627, 1, 0, 0, 0, 4717, 4637, 1, 0, 0, 0, 4717, 4660, 1, 0, 0, 0, 4717, 4666, 1, 0, 0, 0, 4717, 4674, 1, 0, 0, 0, 4717, 4688, 1, 0, 0, 0, 4717, 4694, 1, 0, 0, 0, 4717, 4710, 1, 0, 0, 0, 4718, 655, 1, 0, 0, 0, 4719, 4720, 7, 50, 0, 0, 4720, 657, 1, 0, 0, 0, 4721, 4722, 5, 259, 0, 0, 4722, 4723, 5, 405, 0, 0, 4723, 4729, 5, 431, 0, 0, 4724, 4725, 5, 83, 0, 0, 4725, 4726, 5, 246, 0, 0, 4726, 4727, 5, 405, 0, 0, 4727, 4729, 3, 686, 343, 0, 4728, 4721, 1, 0, 0, 0, 4728, 4724, 1, 0, 0, 0, 4729, 659, 1, 0, 0, 0, 4730, 4735, 3, 658, 329, 0, 4731, 4732, 5, 397, 0, 0, 4732, 4734, 3, 658, 329, 0, 4733, 4731, 1, 0, 0, 0, 4734, 4737, 1, 0, 0, 0, 4735, 4733, 1, 0, 0, 0, 4735, 4736, 1, 0, 0, 0, 4736, 661, 1, 0, 0, 0, 4737, 4735, 1, 0, 0, 0, 4738, 4742, 5, 259, 0, 0, 4739, 4740, 5, 83, 0, 0, 4740, 4742, 5, 246, 0, 0, 4741, 4738, 1, 0, 0, 0, 4741, 4739, 1, 0, 0, 0, 4742, 663, 1, 0, 0, 0, 4743, 4746, 5, 2, 0, 0, 4744, 4745, 5, 387, 0, 0, 4745, 4747, 5, 278, 0, 0, 4746, 4744, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 665, 1, 0, 0, 0, 4748, 4749, 7, 51, 0, 0, 4749, 667, 1, 0, 0, 0, 4750, 4751, 7, 52, 0, 0, 4751, 669, 1, 0, 0, 0, 4752, 4753, 7, 53, 0, 0, 4753, 671, 1, 0, 0, 0, 4754, 4755, 7, 54, 0, 0, 4755, 673, 1, 0, 0, 0, 4756, 4757, 7, 55, 0, 0, 4757, 675, 1, 0, 0, 0, 4758, 4759, 7, 56, 0, 0, 4759, 677, 1, 0, 0, 0, 4760, 4761, 7, 57, 0, 0, 4761, 679, 1, 0, 0, 0, 4762, 4763, 7, 58, 0, 0, 4763, 681, 1, 0, 0, 0, 4764, 4765, 7, 59, 0, 0, 4765, 683, 1, 0, 0, 0, 4766, 4767, 7, 60, 0, 0, 4767, 685, 1, 0, 0, 0, 4768, 4773, 3, 642, 321, 0, 4769, 4770, 5, 395, 0, 0, 4770, 4772, 3, 642, 321, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4775, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, 4774, 687, 1, 0, 0, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4777, 3, 642, 321, 0, 4777, 4778, 5, 411, 0, 0, 4778, 4779, 7, 27, 0, 0, 4779, 689, 1, 0, 0, 0, 4780, 4785, 5, 176, 0, 0, 4781, 4782, 5, 211, 0, 0, 4782, 4783, 5, 341, 0, 0, 4783, 4785, 3, 686, 343, 0, 4784, 4780, 1, 0, 0, 0, 4784, 4781, 1, 0, 0, 0, 4785, 691, 1, 0, 0, 0, 4786, 4787, 5, 8, 0, 0, 4787, 4788, 5, 405, 0, 0, 4788, 4799, 5, 431, 0, 0, 4789, 4790, 5, 259, 0, 0, 4790, 4791, 5, 405, 0, 0, 4791, 4799, 5, 431, 0, 0, 4792, 4793, 5, 294, 0, 0, 4793, 4794, 5, 405, 0, 0, 4794, 4799, 5, 426, 0, 0, 4795, 4796, 5, 240, 0, 0, 4796, 4797, 5, 405, 0, 0, 4797, 4799, 3, 686, 343, 0, 4798, 4786, 1, 0, 0, 0, 4798, 4789, 1, 0, 0, 0, 4798, 4792, 1, 0, 0, 0, 4798, 4795, 1, 0, 0, 0, 4799, 693, 1, 0, 0, 0, 4800, 4805, 3, 692, 346, 0, 4801, 4802, 5, 397, 0, 0, 4802, 4804, 3, 692, 346, 0, 4803, 4801, 1, 0, 0, 0, 4804, 4807, 1, 0, 0, 0, 4805, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 695, 1, 0, 0, 0, 4807, 4805, 1, 0, 0, 0, 621, 699, 706, 709, 715, 721, 728, 738, 741, 745, 760, 767, 773, 778, 783, 786, 810, 817, 820, 825, 830, 836, 840, 853, 857, 861, 866, 873, 877, 882, 889, 893, 898, 946, 953, 958, 981, 985, 989, 992, 996, 1001, 1007, 1011, 1017, 1019, 1030, 1034, 1041, 1049, 1052, 1057, 1061, 1064, 1074, 1082, 1086, 1089, 1093, 1097, 1100, 1105, 1111, 1116, 1121, 1125, 1136, 1138, 1142, 1152, 1156, 1162, 1165, 1172, 1177, 1185, 1190, 1194, 1202, 1207, 1213, 1219, 1222, 1225, 1228, 1237, 1245, 1250, 1258, 1265, 1268, 1271, 1273, 1284, 1286, 1289, 1292, 1295, 1298, 1301, 1303, 1315, 1321, 1329, 1331, 1341, 1374, 1379, 1383, 1387, 1394, 1401, 1407, 1411, 1414, 1421, 1444, 1449, 1453, 1461, 1470, 1477, 1483, 1490, 1493, 1499, 1506, 1514, 1523, 1532, 1539, 1559, 1566, 1568, 1575, 1585, 1593, 1597, 1601, 1614, 1623, 1639, 1643, 1648, 1653, 1656, 1659, 1662, 1665, 1668, 1673, 1682, 1686, 1693, 1696, 1699, 1702, 1714, 1720, 1746, 1754, 1758, 1761, 1764, 1767, 1770, 1773, 1776, 1779, 1788, 1798, 1801, 1821, 1827, 1833, 1836, 1838, 1845, 1852, 1865, 1870, 1879, 1887, 1895, 1908, 1921, 1937, 1941, 1956, 1962, 1965, 1968, 1971, 1974, 1978, 1993, 1996, 2007, 2021, 2055, 2063, 2068, 2076, 2081, 2086, 2093, 2101, 2109, 2117, 2122, 2134, 2138, 2146, 2155, 2158, 2162, 2169, 2175, 2179, 2185, 2189, 2201, 2210, 2221, 2225, 2232, 2244, 2254, 2257, 2264, 2270, 2274, 2277, 2280, 2286, 2290, 2294, 2299, 2303, 2307, 2311, 2319, 2323, 2327, 2331, 2335, 2343, 2347, 2351, 2359, 2364, 2369, 2373, 2377, 2384, 2393, 2401, 2413, 2431, 2434, 2440, 2466, 2469, 2475, 2483, 2491, 2504, 2511, 2514, 2517, 2520, 2523, 2526, 2529, 2532, 2535, 2538, 2541, 2546, 2549, 2552, 2555, 2558, 2561, 2564, 2567, 2570, 2573, 2576, 2578, 2584, 2588, 2591, 2594, 2597, 2600, 2603, 2610, 2614, 2617, 2620, 2623, 2626, 2629, 2636, 2639, 2647, 2651, 2658, 2660, 2663, 2668, 2671, 2675, 2680, 2686, 2694, 2702, 2712, 2715, 2719, 2723, 2728, 2735, 2739, 2741, 2745, 2752, 2757, 2770, 2778, 2797, 2807, 2820, 2830, 2834, 2838, 2844, 2851, 2858, 2867, 2874, 2894, 2897, 2911, 2926, 2930, 2950, 2962, 2968, 2971, 2974, 2980, 2986, 2993, 3001, 3007, 3011, 3016, 3019, 3023, 3030, 3035, 3040, 3043, 3045, 3053, 3061, 3065, 3069, 3073, 3090, 3107, 3114, 3123, 3128, 3131, 3134, 3138, 3153, 3167, 3170, 3181, 3185, 3188, 3191, 3195, 3200, 3203, 3206, 3209, 3212, 3215, 3221, 3224, 3227, 3230, 3233, 3236, 3239, 3242, 3245, 3248, 3252, 3254, 3260, 3265, 3268, 3271, 3274, 3277, 3283, 3286, 3289, 3292, 3295, 3298, 3301, 3304, 3307, 3310, 3314, 3316, 3318, 3323, 3328, 3332, 3336, 3341, 3346, 3355, 3365, 3373, 3385, 3388, 3394, 3401, 3408, 3415, 3422, 3431, 3435, 3442, 3447, 3451, 3455, 3458, 3461, 3472, 3476, 3478, 3481, 3494, 3497, 3500, 3512, 3515, 3522, 3531, 3536, 3538, 3540, 3557, 3560, 3568, 3571, 3575, 3578, 3581, 3584, 3587, 3599, 3607, 3614, 3617, 3624, 3627, 3632, 3639, 3647, 3653, 3658, 3662, 3667, 3674, 3688, 3691, 3695, 3706, 3716, 3719, 3726, 3735, 3738, 3744, 3747, 3754, 3759, 3762, 3775, 3781, 3783, 3791, 3794, 3804, 3809, 3811, 3823, 3829, 3831, 3838, 3845, 3859, 3865, 3868, 3871, 3874, 3883, 3890, 3896, 3905, 3909, 3917, 3927, 3937, 3942, 3946, 3952, 3957, 3967, 3971, 3974, 3979, 3982, 3986, 3991, 4002, 4004, 4013, 4036, 4046, 4049, 4056, 4059, 4069, 4076, 4079, 4081, 4092, 4102, 4104, 4113, 4118, 4127, 4140, 4144, 4156, 4160, 4169, 4188, 4206, 4218, 4233, 4237, 4253, 4260, 4274, 4279, 4289, 4291, 4299, 4307, 4315, 4323, 4331, 4339, 4350, 4354, 4362, 4378, 4382, 4387, 4400, 4409, 4411, 4420, 4425, 4431, 4438, 4443, 4452, 4460, 4468, 4476, 4486, 4491, 4550, 4556, 4565, 4567, 4583, 4591, 4595, 4597, 4603, 4608, 4625, 4651, 4656, 4658, 4686, 4703, 4708, 4717, 4728, 4735, 4741, 4746, 4773, 4784, 4798, 4805] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 5157c5fef..5790ad3b8 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -584,223 +584,225 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_columnNameColonTypeList = 126; public static readonly RULE_columnNameList = 127; public static readonly RULE_columnName = 128; - public static readonly RULE_columnNameCreate = 129; - public static readonly RULE_extColumnName = 130; - public static readonly RULE_columnNameOrderList = 131; - public static readonly RULE_columnParenthesesList = 132; - public static readonly RULE_enableValidateSpecification = 133; - public static readonly RULE_enableSpecification = 134; - public static readonly RULE_validateSpecification = 135; - public static readonly RULE_enforcedSpecification = 136; - public static readonly RULE_relySpecification = 137; - public static readonly RULE_createConstraint = 138; - public static readonly RULE_alterConstraintWithName = 139; - public static readonly RULE_tableLevelConstraint = 140; - public static readonly RULE_pkUkConstraint = 141; - public static readonly RULE_checkConstraint = 142; - public static readonly RULE_createForeignKey = 143; - public static readonly RULE_alterForeignKeyWithName = 144; - public static readonly RULE_skewedValueElement = 145; - public static readonly RULE_skewedColumnValuePairList = 146; - public static readonly RULE_skewedColumnValuePair = 147; - public static readonly RULE_constantList = 148; - public static readonly RULE_orderSpecification = 149; - public static readonly RULE_nullOrdering = 150; - public static readonly RULE_columnNameOrder = 151; - public static readonly RULE_columnNameCommentList = 152; - public static readonly RULE_columnNameComment = 153; - public static readonly RULE_columnRefOrder = 154; - public static readonly RULE_columnNameType = 155; - public static readonly RULE_columnNameTypeOrConstraint = 156; - public static readonly RULE_tableConstraint = 157; - public static readonly RULE_columnNameTypeConstraint = 158; - public static readonly RULE_columnConstraint = 159; - public static readonly RULE_foreignKeyConstraint = 160; - public static readonly RULE_colConstraint = 161; - public static readonly RULE_alterColumnConstraint = 162; - public static readonly RULE_alterForeignKeyConstraint = 163; - public static readonly RULE_alterColConstraint = 164; - public static readonly RULE_columnConstraintType = 165; - public static readonly RULE_defaultVal = 166; - public static readonly RULE_tableConstraintType = 167; - public static readonly RULE_constraintOptsCreate = 168; - public static readonly RULE_constraintOptsAlter = 169; - public static readonly RULE_columnNameColonType = 170; - public static readonly RULE_columnType = 171; - public static readonly RULE_columnTypeList = 172; - public static readonly RULE_type = 173; - public static readonly RULE_primitiveType = 174; - public static readonly RULE_listType = 175; - public static readonly RULE_structType = 176; - public static readonly RULE_mapType = 177; - public static readonly RULE_unionType = 178; - public static readonly RULE_setOperator = 179; - public static readonly RULE_queryStatementExpression = 180; - public static readonly RULE_queryStatementExpressionBody = 181; - public static readonly RULE_withClause = 182; - public static readonly RULE_cteStatement = 183; - public static readonly RULE_fromStatement = 184; - public static readonly RULE_singleFromStatement = 185; - public static readonly RULE_regularBody = 186; - public static readonly RULE_atomSelectStatement = 187; - public static readonly RULE_selectStatement = 188; - public static readonly RULE_setOpSelectStatement = 189; - public static readonly RULE_selectStatementWithCTE = 190; - public static readonly RULE_insertClause = 191; - public static readonly RULE_destination = 192; - public static readonly RULE_limitClause = 193; - public static readonly RULE_columnAssignmentClause = 194; - public static readonly RULE_precedencePlusExpressionOrDefault = 195; - public static readonly RULE_setColumnsClause = 196; - public static readonly RULE_sqlTransactionStatement = 197; - public static readonly RULE_transactionMode = 198; - public static readonly RULE_whenClauses = 199; - public static readonly RULE_whenNotMatchedClause = 200; - public static readonly RULE_whenMatchedAndClause = 201; - public static readonly RULE_whenMatchedThenClause = 202; - public static readonly RULE_compactionPool = 203; - public static readonly RULE_compactionType = 204; - public static readonly RULE_compactionStatus = 205; - public static readonly RULE_alterStatement = 206; - public static readonly RULE_alterTableStatementSuffix = 207; - public static readonly RULE_alterTblPartitionStatementSuffix = 208; - public static readonly RULE_alterViewStatementSuffix = 209; - public static readonly RULE_alterDatabaseStatementSuffix = 210; - public static readonly RULE_alterDataConnectorStatementSuffix = 211; - public static readonly RULE_locationPath = 212; - public static readonly RULE_alterStatementSuffixDropPartitions = 213; - public static readonly RULE_skewedLocationMap = 214; - public static readonly RULE_alterStatementSuffixExecute = 215; - public static readonly RULE_fileFormat = 216; - public static readonly RULE_likeTableOrFile = 217; - public static readonly RULE_createTableStatement = 218; - public static readonly RULE_createDataConnectorStatement = 219; - public static readonly RULE_dropDataConnectorStatement = 220; - public static readonly RULE_tableAllColumns = 221; - public static readonly RULE_expressionList = 222; - public static readonly RULE_aliasList = 223; - public static readonly RULE_fromClause = 224; - public static readonly RULE_fromSource = 225; - public static readonly RULE_atomjoinSource = 226; - public static readonly RULE_joinSource = 227; - public static readonly RULE_joinSourcePart = 228; - public static readonly RULE_uniqueJoinSource = 229; - public static readonly RULE_joinToken = 230; - public static readonly RULE_lateralView = 231; - public static readonly RULE_tableAlias = 232; - public static readonly RULE_tableSample = 233; - public static readonly RULE_tableSource = 234; - public static readonly RULE_asOfClause = 235; - public static readonly RULE_dbSchemaName = 236; - public static readonly RULE_dbSchemaNameCreate = 237; - public static readonly RULE_tableOrView = 238; - public static readonly RULE_tableName = 239; - public static readonly RULE_tableNameCreate = 240; - public static readonly RULE_viewName = 241; - public static readonly RULE_viewNameCreate = 242; - public static readonly RULE_subQuerySource = 243; - public static readonly RULE_partitioningSpec = 244; - public static readonly RULE_partitionTableFunctionSource = 245; - public static readonly RULE_partitionedTableFunction = 246; - public static readonly RULE_whereClause = 247; - public static readonly RULE_valuesClause = 248; - public static readonly RULE_virtualTableSource = 249; - public static readonly RULE_selectClause = 250; - public static readonly RULE_selectTrfmClause = 251; - public static readonly RULE_selectItem = 252; - public static readonly RULE_trfmClause = 253; - public static readonly RULE_selectExpression = 254; - public static readonly RULE_selectExpressionList = 255; - public static readonly RULE_window_clause = 256; - public static readonly RULE_window_specification = 257; - public static readonly RULE_window_frame = 258; - public static readonly RULE_window_frame_boundary = 259; - public static readonly RULE_groupByClause = 260; - public static readonly RULE_rollupStandard = 261; - public static readonly RULE_rollupOldSyntax = 262; - public static readonly RULE_groupingSetExpression = 263; - public static readonly RULE_havingClause = 264; - public static readonly RULE_qualifyClause = 265; - public static readonly RULE_expressionOrDefault = 266; - public static readonly RULE_firstExpressionsWithAlias = 267; - public static readonly RULE_expressions = 268; - public static readonly RULE_expressionsInParenthesis = 269; - public static readonly RULE_expressionsNotInParenthesis = 270; - public static readonly RULE_orderByClause = 271; - public static readonly RULE_clusterByClause = 272; - public static readonly RULE_distributeByClause = 273; - public static readonly RULE_sortByClause = 274; - public static readonly RULE_function_ = 275; - public static readonly RULE_null_treatment = 276; - public static readonly RULE_functionNameCreate = 277; - public static readonly RULE_functionNameForDDL = 278; - public static readonly RULE_functionNameForInvoke = 279; - public static readonly RULE_castExpression = 280; - public static readonly RULE_caseExpression = 281; - public static readonly RULE_whenExpression = 282; - public static readonly RULE_floorExpression = 283; - public static readonly RULE_extractExpression = 284; - public static readonly RULE_timeQualifiers = 285; - public static readonly RULE_constant = 286; - public static readonly RULE_intervalValue = 287; - public static readonly RULE_intervalExpression = 288; - public static readonly RULE_intervalQualifiers = 289; - public static readonly RULE_expression = 290; - public static readonly RULE_atomExpression = 291; - public static readonly RULE_precedenceUnaryPrefixExpression = 292; - public static readonly RULE_precedenceBitwiseXorExpression = 293; - public static readonly RULE_precedenceStarExpression = 294; - public static readonly RULE_precedencePlusExpression = 295; - public static readonly RULE_precedenceConcatenateExpression = 296; - public static readonly RULE_precedenceAmpersandExpression = 297; - public static readonly RULE_precedenceBitwiseOrExpression = 298; - public static readonly RULE_precedenceSimilarOperator = 299; - public static readonly RULE_subQueryExpression = 300; - public static readonly RULE_precedenceSimilarExpression = 301; - public static readonly RULE_precedenceSimilarExpressionPart = 302; - public static readonly RULE_precedenceSimilarExpressionAtom = 303; - public static readonly RULE_precedenceSimilarExpressionIn = 304; - public static readonly RULE_precedenceSimilarExpressionPartNot = 305; - public static readonly RULE_precedenceDistinctOperator = 306; - public static readonly RULE_precedenceEqualOperator = 307; - public static readonly RULE_precedenceEqualExpression = 308; - public static readonly RULE_isCondition = 309; - public static readonly RULE_precedenceNotExpression = 310; - public static readonly RULE_precedenceAndExpression = 311; - public static readonly RULE_tableOrPartition = 312; - public static readonly RULE_partitionSpec = 313; - public static readonly RULE_partitionVal = 314; - public static readonly RULE_partitionSelectorSpec = 315; - public static readonly RULE_partitionSelectorVal = 316; - public static readonly RULE_subQuerySelectorOperator = 317; - public static readonly RULE_sysFuncNames = 318; - public static readonly RULE_id_ = 319; - public static readonly RULE_functionIdentifier = 320; - public static readonly RULE_principalIdentifier = 321; - public static readonly RULE_nonReserved = 322; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 323; - public static readonly RULE_configPropertiesItem = 324; - public static readonly RULE_resourcePlanDdlStatements = 325; - public static readonly RULE_mappingTypes = 326; - public static readonly RULE_rpAssign = 327; - public static readonly RULE_rpAssignList = 328; - public static readonly RULE_rpUnassign = 329; - public static readonly RULE_activate = 330; - public static readonly RULE_enable = 331; - public static readonly RULE_disable = 332; - public static readonly RULE_year = 333; - public static readonly RULE_month = 334; - public static readonly RULE_week = 335; - public static readonly RULE_day = 336; - public static readonly RULE_hour = 337; - public static readonly RULE_minute = 338; - public static readonly RULE_second = 339; - public static readonly RULE_decimal = 340; - public static readonly RULE_poolPath = 341; - public static readonly RULE_triggerAtomExpression = 342; - public static readonly RULE_triggerActionExpression = 343; - public static readonly RULE_poolAssign = 344; - public static readonly RULE_poolAssignList = 345; + public static readonly RULE_columnNamePath = 129; + public static readonly RULE_columnNameCreate = 130; + public static readonly RULE_extColumnName = 131; + public static readonly RULE_columnNameOrderList = 132; + public static readonly RULE_columnParenthesesList = 133; + public static readonly RULE_enableValidateSpecification = 134; + public static readonly RULE_enableSpecification = 135; + public static readonly RULE_validateSpecification = 136; + public static readonly RULE_enforcedSpecification = 137; + public static readonly RULE_relySpecification = 138; + public static readonly RULE_createConstraint = 139; + public static readonly RULE_alterConstraintWithName = 140; + public static readonly RULE_tableLevelConstraint = 141; + public static readonly RULE_pkUkConstraint = 142; + public static readonly RULE_checkConstraint = 143; + public static readonly RULE_createForeignKey = 144; + public static readonly RULE_alterForeignKeyWithName = 145; + public static readonly RULE_skewedValueElement = 146; + public static readonly RULE_skewedColumnValuePairList = 147; + public static readonly RULE_skewedColumnValuePair = 148; + public static readonly RULE_constantList = 149; + public static readonly RULE_orderSpecification = 150; + public static readonly RULE_nullOrdering = 151; + public static readonly RULE_columnNameOrder = 152; + public static readonly RULE_columnNameCommentList = 153; + public static readonly RULE_columnNameComment = 154; + public static readonly RULE_columnRefOrder = 155; + public static readonly RULE_columnNameType = 156; + public static readonly RULE_columnNameTypeOrConstraint = 157; + public static readonly RULE_tableConstraint = 158; + public static readonly RULE_columnNameTypeConstraint = 159; + public static readonly RULE_columnConstraint = 160; + public static readonly RULE_foreignKeyConstraint = 161; + public static readonly RULE_colConstraint = 162; + public static readonly RULE_alterColumnConstraint = 163; + public static readonly RULE_alterForeignKeyConstraint = 164; + public static readonly RULE_alterColConstraint = 165; + public static readonly RULE_columnConstraintType = 166; + public static readonly RULE_defaultVal = 167; + public static readonly RULE_tableConstraintType = 168; + public static readonly RULE_constraintOptsCreate = 169; + public static readonly RULE_constraintOptsAlter = 170; + public static readonly RULE_columnNameColonType = 171; + public static readonly RULE_columnType = 172; + public static readonly RULE_columnTypeList = 173; + public static readonly RULE_type = 174; + public static readonly RULE_primitiveType = 175; + public static readonly RULE_listType = 176; + public static readonly RULE_structType = 177; + public static readonly RULE_mapType = 178; + public static readonly RULE_unionType = 179; + public static readonly RULE_setOperator = 180; + public static readonly RULE_queryStatementExpression = 181; + public static readonly RULE_queryStatementExpressionBody = 182; + public static readonly RULE_withClause = 183; + public static readonly RULE_cteStatement = 184; + public static readonly RULE_fromStatement = 185; + public static readonly RULE_singleFromStatement = 186; + public static readonly RULE_regularBody = 187; + public static readonly RULE_atomSelectStatement = 188; + public static readonly RULE_selectStatement = 189; + public static readonly RULE_setOpSelectStatement = 190; + public static readonly RULE_selectStatementWithCTE = 191; + public static readonly RULE_insertClause = 192; + public static readonly RULE_destination = 193; + public static readonly RULE_limitClause = 194; + public static readonly RULE_columnAssignmentClause = 195; + public static readonly RULE_precedencePlusExpressionOrDefault = 196; + public static readonly RULE_setColumnsClause = 197; + public static readonly RULE_sqlTransactionStatement = 198; + public static readonly RULE_transactionMode = 199; + public static readonly RULE_whenClauses = 200; + public static readonly RULE_whenNotMatchedClause = 201; + public static readonly RULE_whenMatchedAndClause = 202; + public static readonly RULE_whenMatchedThenClause = 203; + public static readonly RULE_compactionPool = 204; + public static readonly RULE_compactionType = 205; + public static readonly RULE_compactionStatus = 206; + public static readonly RULE_alterStatement = 207; + public static readonly RULE_alterTableStatementSuffix = 208; + public static readonly RULE_alterTblPartitionStatementSuffix = 209; + public static readonly RULE_alterViewStatementSuffix = 210; + public static readonly RULE_alterDatabaseStatementSuffix = 211; + public static readonly RULE_alterDataConnectorStatementSuffix = 212; + public static readonly RULE_locationPath = 213; + public static readonly RULE_alterStatementSuffixDropPartitions = 214; + public static readonly RULE_skewedLocationMap = 215; + public static readonly RULE_alterStatementSuffixExecute = 216; + public static readonly RULE_fileFormat = 217; + public static readonly RULE_likeTableOrFile = 218; + public static readonly RULE_createTableStatement = 219; + public static readonly RULE_createDataConnectorStatement = 220; + public static readonly RULE_dropDataConnectorStatement = 221; + public static readonly RULE_tableAllColumns = 222; + public static readonly RULE_expressionList = 223; + public static readonly RULE_aliasList = 224; + public static readonly RULE_fromClause = 225; + public static readonly RULE_fromSource = 226; + public static readonly RULE_atomjoinSource = 227; + public static readonly RULE_joinSource = 228; + public static readonly RULE_joinSourcePart = 229; + public static readonly RULE_uniqueJoinSource = 230; + public static readonly RULE_joinToken = 231; + public static readonly RULE_lateralView = 232; + public static readonly RULE_tableAlias = 233; + public static readonly RULE_tableSample = 234; + public static readonly RULE_tableSource = 235; + public static readonly RULE_asOfClause = 236; + public static readonly RULE_dbSchemaName = 237; + public static readonly RULE_dbSchemaNameCreate = 238; + public static readonly RULE_tableOrView = 239; + public static readonly RULE_tableName = 240; + public static readonly RULE_tableNameCreate = 241; + public static readonly RULE_viewName = 242; + public static readonly RULE_viewNameCreate = 243; + public static readonly RULE_subQuerySource = 244; + public static readonly RULE_partitioningSpec = 245; + public static readonly RULE_partitionTableFunctionSource = 246; + public static readonly RULE_partitionedTableFunction = 247; + public static readonly RULE_whereClause = 248; + public static readonly RULE_valuesClause = 249; + public static readonly RULE_virtualTableSource = 250; + public static readonly RULE_selectClause = 251; + public static readonly RULE_selectTrfmClause = 252; + public static readonly RULE_selectItem = 253; + public static readonly RULE_trfmClause = 254; + public static readonly RULE_selectExpression = 255; + public static readonly RULE_selectExpressionList = 256; + public static readonly RULE_window_clause = 257; + public static readonly RULE_window_specification = 258; + public static readonly RULE_window_frame = 259; + public static readonly RULE_window_frame_boundary = 260; + public static readonly RULE_groupByClause = 261; + public static readonly RULE_rollupStandard = 262; + public static readonly RULE_rollupOldSyntax = 263; + public static readonly RULE_groupingSetExpression = 264; + public static readonly RULE_havingClause = 265; + public static readonly RULE_qualifyClause = 266; + public static readonly RULE_expressionOrDefault = 267; + public static readonly RULE_firstExpressionsWithAlias = 268; + public static readonly RULE_expressions = 269; + public static readonly RULE_expressionsInParenthesis = 270; + public static readonly RULE_expressionsNotInParenthesis = 271; + public static readonly RULE_orderByClause = 272; + public static readonly RULE_partitionByClause = 273; + public static readonly RULE_clusterByClause = 274; + public static readonly RULE_distributeByClause = 275; + public static readonly RULE_sortByClause = 276; + public static readonly RULE_function_ = 277; + public static readonly RULE_null_treatment = 278; + public static readonly RULE_functionNameCreate = 279; + public static readonly RULE_functionNameForDDL = 280; + public static readonly RULE_functionNameForInvoke = 281; + public static readonly RULE_castExpression = 282; + public static readonly RULE_caseExpression = 283; + public static readonly RULE_whenExpression = 284; + public static readonly RULE_floorExpression = 285; + public static readonly RULE_extractExpression = 286; + public static readonly RULE_timeQualifiers = 287; + public static readonly RULE_constant = 288; + public static readonly RULE_intervalValue = 289; + public static readonly RULE_intervalExpression = 290; + public static readonly RULE_intervalQualifiers = 291; + public static readonly RULE_expression = 292; + public static readonly RULE_atomExpression = 293; + public static readonly RULE_precedenceUnaryPrefixExpression = 294; + public static readonly RULE_precedenceBitwiseXorExpression = 295; + public static readonly RULE_precedenceStarExpression = 296; + public static readonly RULE_precedencePlusExpression = 297; + public static readonly RULE_precedenceConcatenateExpression = 298; + public static readonly RULE_precedenceAmpersandExpression = 299; + public static readonly RULE_precedenceBitwiseOrExpression = 300; + public static readonly RULE_precedenceSimilarOperator = 301; + public static readonly RULE_subQueryExpression = 302; + public static readonly RULE_precedenceSimilarExpression = 303; + public static readonly RULE_precedenceSimilarExpressionPart = 304; + public static readonly RULE_precedenceSimilarExpressionAtom = 305; + public static readonly RULE_precedenceSimilarExpressionIn = 306; + public static readonly RULE_precedenceSimilarExpressionPartNot = 307; + public static readonly RULE_precedenceDistinctOperator = 308; + public static readonly RULE_precedenceEqualOperator = 309; + public static readonly RULE_precedenceEqualExpression = 310; + public static readonly RULE_isCondition = 311; + public static readonly RULE_precedenceNotExpression = 312; + public static readonly RULE_precedenceAndExpression = 313; + public static readonly RULE_tableOrPartition = 314; + public static readonly RULE_partitionSpec = 315; + public static readonly RULE_partitionVal = 316; + public static readonly RULE_partitionSelectorSpec = 317; + public static readonly RULE_partitionSelectorVal = 318; + public static readonly RULE_subQuerySelectorOperator = 319; + public static readonly RULE_sysFuncNames = 320; + public static readonly RULE_id_ = 321; + public static readonly RULE_functionIdentifier = 322; + public static readonly RULE_principalIdentifier = 323; + public static readonly RULE_nonReserved = 324; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 325; + public static readonly RULE_configPropertiesItem = 326; + public static readonly RULE_resourcePlanDdlStatements = 327; + public static readonly RULE_mappingTypes = 328; + public static readonly RULE_rpAssign = 329; + public static readonly RULE_rpAssignList = 330; + public static readonly RULE_rpUnassign = 331; + public static readonly RULE_activate = 332; + public static readonly RULE_enable = 333; + public static readonly RULE_disable = 334; + public static readonly RULE_year = 335; + public static readonly RULE_month = 336; + public static readonly RULE_week = 337; + public static readonly RULE_day = 338; + public static readonly RULE_hour = 339; + public static readonly RULE_minute = 340; + public static readonly RULE_second = 341; + public static readonly RULE_decimal = 342; + public static readonly RULE_poolPath = 343; + public static readonly RULE_triggerAtomExpression = 344; + public static readonly RULE_triggerActionExpression = 345; + public static readonly RULE_poolAssign = 346; + public static readonly RULE_poolAssignList = 347; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1002,31 +1004,31 @@ export class HiveSqlParser extends SQLParserBase { "tableRowFormatCollItemsIdentifier", "tableRowFormatMapKeysIdentifier", "tableRowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", "columnNameTypeList", "columnNameTypeOrConstraintList", "columnNameColonTypeList", - "columnNameList", "columnName", "columnNameCreate", "extColumnName", - "columnNameOrderList", "columnParenthesesList", "enableValidateSpecification", - "enableSpecification", "validateSpecification", "enforcedSpecification", - "relySpecification", "createConstraint", "alterConstraintWithName", - "tableLevelConstraint", "pkUkConstraint", "checkConstraint", "createForeignKey", - "alterForeignKeyWithName", "skewedValueElement", "skewedColumnValuePairList", - "skewedColumnValuePair", "constantList", "orderSpecification", "nullOrdering", - "columnNameOrder", "columnNameCommentList", "columnNameComment", - "columnRefOrder", "columnNameType", "columnNameTypeOrConstraint", - "tableConstraint", "columnNameTypeConstraint", "columnConstraint", - "foreignKeyConstraint", "colConstraint", "alterColumnConstraint", - "alterForeignKeyConstraint", "alterColConstraint", "columnConstraintType", - "defaultVal", "tableConstraintType", "constraintOptsCreate", "constraintOptsAlter", - "columnNameColonType", "columnType", "columnTypeList", "type", "primitiveType", - "listType", "structType", "mapType", "unionType", "setOperator", - "queryStatementExpression", "queryStatementExpressionBody", "withClause", - "cteStatement", "fromStatement", "singleFromStatement", "regularBody", - "atomSelectStatement", "selectStatement", "setOpSelectStatement", - "selectStatementWithCTE", "insertClause", "destination", "limitClause", - "columnAssignmentClause", "precedencePlusExpressionOrDefault", "setColumnsClause", - "sqlTransactionStatement", "transactionMode", "whenClauses", "whenNotMatchedClause", - "whenMatchedAndClause", "whenMatchedThenClause", "compactionPool", - "compactionType", "compactionStatus", "alterStatement", "alterTableStatementSuffix", - "alterTblPartitionStatementSuffix", "alterViewStatementSuffix", - "alterDatabaseStatementSuffix", "alterDataConnectorStatementSuffix", + "columnNameList", "columnName", "columnNamePath", "columnNameCreate", + "extColumnName", "columnNameOrderList", "columnParenthesesList", + "enableValidateSpecification", "enableSpecification", "validateSpecification", + "enforcedSpecification", "relySpecification", "createConstraint", + "alterConstraintWithName", "tableLevelConstraint", "pkUkConstraint", + "checkConstraint", "createForeignKey", "alterForeignKeyWithName", + "skewedValueElement", "skewedColumnValuePairList", "skewedColumnValuePair", + "constantList", "orderSpecification", "nullOrdering", "columnNameOrder", + "columnNameCommentList", "columnNameComment", "columnRefOrder", + "columnNameType", "columnNameTypeOrConstraint", "tableConstraint", + "columnNameTypeConstraint", "columnConstraint", "foreignKeyConstraint", + "colConstraint", "alterColumnConstraint", "alterForeignKeyConstraint", + "alterColConstraint", "columnConstraintType", "defaultVal", "tableConstraintType", + "constraintOptsCreate", "constraintOptsAlter", "columnNameColonType", + "columnType", "columnTypeList", "type", "primitiveType", "listType", + "structType", "mapType", "unionType", "setOperator", "queryStatementExpression", + "queryStatementExpressionBody", "withClause", "cteStatement", "fromStatement", + "singleFromStatement", "regularBody", "atomSelectStatement", "selectStatement", + "setOpSelectStatement", "selectStatementWithCTE", "insertClause", + "destination", "limitClause", "columnAssignmentClause", "precedencePlusExpressionOrDefault", + "setColumnsClause", "sqlTransactionStatement", "transactionMode", + "whenClauses", "whenNotMatchedClause", "whenMatchedAndClause", "whenMatchedThenClause", + "compactionPool", "compactionType", "compactionStatus", "alterStatement", + "alterTableStatementSuffix", "alterTblPartitionStatementSuffix", + "alterViewStatementSuffix", "alterDatabaseStatementSuffix", "alterDataConnectorStatementSuffix", "locationPath", "alterStatementSuffixDropPartitions", "skewedLocationMap", "alterStatementSuffixExecute", "fileFormat", "likeTableOrFile", "createTableStatement", "createDataConnectorStatement", "dropDataConnectorStatement", @@ -1043,12 +1045,12 @@ export class HiveSqlParser extends SQLParserBase { "rollupOldSyntax", "groupingSetExpression", "havingClause", "qualifyClause", "expressionOrDefault", "firstExpressionsWithAlias", "expressions", "expressionsInParenthesis", "expressionsNotInParenthesis", "orderByClause", - "clusterByClause", "distributeByClause", "sortByClause", "function_", - "null_treatment", "functionNameCreate", "functionNameForDDL", "functionNameForInvoke", - "castExpression", "caseExpression", "whenExpression", "floorExpression", - "extractExpression", "timeQualifiers", "constant", "intervalValue", - "intervalExpression", "intervalQualifiers", "expression", "atomExpression", - "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", + "partitionByClause", "clusterByClause", "distributeByClause", "sortByClause", + "function_", "null_treatment", "functionNameCreate", "functionNameForDDL", + "functionNameForInvoke", "castExpression", "caseExpression", "whenExpression", + "floorExpression", "extractExpression", "timeQualifiers", "constant", + "intervalValue", "intervalExpression", "intervalQualifiers", "expression", + "atomExpression", "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", "precedenceStarExpression", "precedencePlusExpression", "precedenceConcatenateExpression", "precedenceAmpersandExpression", "precedenceBitwiseOrExpression", "precedenceSimilarOperator", "subQueryExpression", "precedenceSimilarExpression", @@ -1088,21 +1090,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 695; + this.state = 699; 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 - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 692; + this.state = 696; this.statement(); } } - this.state = 697; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 698; + this.state = 702; this.match(HiveSqlParser.EOF); } } @@ -1126,12 +1128,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 702; + this.state = 706; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 700; + this.state = 704; this.explainStatement(); } break; @@ -1179,19 +1181,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 701; + this.state = 705; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 705; + this.state = 709; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 704; + this.state = 708; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1219,9 +1221,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 707; + this.state = 711; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 717; + this.state = 721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1280,31 +1282,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 711; + this.state = 715; 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 = 708; + this.state = 712; this.explainOption(); } } } - this.state = 713; + this.state = 717; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 714; + this.state = 718; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 715; + this.state = 719; this.match(HiveSqlParser.KW_REWRITE); - this.state = 716; + this.state = 720; this.queryStatementExpression(); } break; @@ -1332,41 +1334,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 741; + this.state = 745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 719; + this.state = 723; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 720; + this.state = 724; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 721; + this.state = 725; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 722; + this.state = 726; this.match(HiveSqlParser.KW_CBO); - this.state = 724; + this.state = 728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 723; + this.state = 727; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1383,66 +1385,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 726; + this.state = 730; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 727; + this.state = 731; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 728; + this.state = 732; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 729; + this.state = 733; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 730; + this.state = 734; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 731; + this.state = 735; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 732; + this.state = 736; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 734; + this.state = 738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 733; + this.state = 737; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 737; + this.state = 741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 736; + this.state = 740; this.vectorizationDetail(); } } @@ -1452,14 +1454,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 739; + this.state = 743; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 740; + this.state = 744; this.match(HiveSqlParser.KW_DDL); } break; @@ -1488,7 +1490,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 747; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1519,68 +1521,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 816; + this.state = 820; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 745; + this.state = 749; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 746; + this.state = 750; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 747; + this.state = 751; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 748; + this.state = 752; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 749; + this.state = 753; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 750; + this.state = 754; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 751; + this.state = 755; this.match(HiveSqlParser.KW_REPL); - this.state = 752; + this.state = 756; this.match(HiveSqlParser.KW_STATUS); - this.state = 753; + this.state = 757; localContext._dbName = this.dbSchemaName(); - this.state = 756; + this.state = 760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 754; + this.state = 758; this.match(HiveSqlParser.KW_WITH); - this.state = 755; + this.state = 759; localContext._replConf = this.keyValueProperties(); } break; @@ -1590,25 +1592,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 758; + this.state = 762; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 759; + this.state = 763; this.match(HiveSqlParser.KW_DELETE); - this.state = 760; + this.state = 764; this.match(HiveSqlParser.KW_FROM); - this.state = 761; + this.state = 765; this.tableName(); - this.state = 763; + this.state = 767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 762; + this.state = 766; this.whereClause(); } } @@ -1618,18 +1620,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 765; + this.state = 769; this.match(HiveSqlParser.KW_UPDATE); - this.state = 766; + this.state = 770; this.tableName(); - this.state = 767; + this.state = 771; this.setColumnsClause(); - this.state = 769; + this.state = 773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 768; + this.state = 772; this.whereClause(); } } @@ -1639,101 +1641,101 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 771; + this.state = 775; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 772; + this.state = 776; this.match(HiveSqlParser.KW_MERGE); - this.state = 774; + this.state = 778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 773; + this.state = 777; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 776; + this.state = 780; this.match(HiveSqlParser.KW_INTO); - this.state = 777; + this.state = 781; this.tableName(); - this.state = 782; + this.state = 786; 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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 779; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 778; + this.state = 782; this.match(HiveSqlParser.KW_AS); } } - this.state = 781; + this.state = 785; this.id_(); } } - this.state = 784; + this.state = 788; this.match(HiveSqlParser.KW_USING); - this.state = 785; + this.state = 789; this.joinSourcePart(); - this.state = 786; + this.state = 790; this.match(HiveSqlParser.KW_ON); - this.state = 787; + this.state = 791; this.expression(); - this.state = 788; + this.state = 792; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 790; + this.state = 794; this.match(HiveSqlParser.KW_PREPARE); - this.state = 791; + this.state = 795; this.id_(); - this.state = 792; + this.state = 796; this.match(HiveSqlParser.KW_FROM); - this.state = 793; + this.state = 797; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 795; + this.state = 799; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 796; + this.state = 800; this.id_(); - this.state = 797; + this.state = 801; this.match(HiveSqlParser.KW_USING); - this.state = 798; + this.state = 802; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 800; + this.state = 804; this.match(HiveSqlParser.KW_SET); - this.state = 801; + this.state = 805; this.configPropertiesItem(); - this.state = 806; + this.state = 810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 802; + this.state = 806; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -1742,29 +1744,29 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 803; + this.state = 807; this.configPropertiesItem(); } } - this.state = 808; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 809; - this.match(HiveSqlParser.EQUAL); this.state = 813; + this.match(HiveSqlParser.EQUAL); + this.state = 817; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 810; + this.state = 814; this.matchWildcard(); } } } - this.state = 815; + this.state = 819; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); } @@ -1793,46 +1795,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 818; + this.state = 822; this.match(HiveSqlParser.KW_LOAD); - this.state = 819; + this.state = 823; this.match(HiveSqlParser.KW_DATA); - this.state = 821; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 820; + this.state = 824; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 823; + this.state = 827; this.match(HiveSqlParser.KW_INPATH); - this.state = 824; + this.state = 828; this.match(HiveSqlParser.StringLiteral); - this.state = 826; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 825; + this.state = 829; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 828; + this.state = 832; this.match(HiveSqlParser.KW_INTO); - this.state = 829; + this.state = 833; this.match(HiveSqlParser.KW_TABLE); - this.state = 830; + this.state = 834; this.tableOrPartition(); - this.state = 832; + this.state = 836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 831; + this.state = 835; this.inputFileFormat(); } } @@ -1860,25 +1862,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 834; + this.state = 838; this.match(HiveSqlParser.KW_FOR); - this.state = 836; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 835; + this.state = 839; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 838; + this.state = 842; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 839; + this.state = 843; this.match(HiveSqlParser.LPAREN); - this.state = 840; + this.state = 844; this.match(HiveSqlParser.StringLiteral); - this.state = 841; + this.state = 845; this.match(HiveSqlParser.RPAREN); } } @@ -1903,22 +1905,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 847; this.match(HiveSqlParser.KW_EXPORT); - this.state = 844; + this.state = 848; this.match(HiveSqlParser.KW_TABLE); - this.state = 845; + this.state = 849; this.tableOrPartition(); - this.state = 846; + this.state = 850; this.match(HiveSqlParser.KW_TO); - this.state = 847; + this.state = 851; this.match(HiveSqlParser.StringLiteral); - this.state = 849; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 848; + this.state = 852; this.replicationClause(); } } @@ -1946,40 +1948,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 855; this.match(HiveSqlParser.KW_IMPORT); - this.state = 857; + this.state = 861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 853; + this.state = 857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 852; + this.state = 856; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 855; + this.state = 859; this.match(HiveSqlParser.KW_TABLE); - this.state = 856; + this.state = 860; this.tableOrPartition(); } } - this.state = 859; + this.state = 863; this.match(HiveSqlParser.KW_FROM); - this.state = 860; + this.state = 864; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 862; + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 861; + this.state = 865; this.locationPath(); } } @@ -2006,32 +2008,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 868; this.match(HiveSqlParser.KW_REPL); - this.state = 865; + this.state = 869; this.match(HiveSqlParser.KW_DUMP); - this.state = 866; + this.state = 870; localContext._dbPolicy = this.replDbPolicy(); - this.state = 869; + this.state = 873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 867; + this.state = 871; this.match(HiveSqlParser.KW_REPLACE); - this.state = 868; + this.state = 872; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 873; + this.state = 877; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 871; + this.state = 875; this.match(HiveSqlParser.KW_WITH); - this.state = 872; + this.state = 876; localContext._replConf = this.keyValueProperties(); } break; @@ -2059,16 +2061,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 875; + this.state = 879; localContext._dbName = this.dbSchemaName(); - this.state = 878; + this.state = 882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 876; + this.state = 880; this.match(HiveSqlParser.DOT); - this.state = 877; + this.state = 881; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2096,32 +2098,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 880; + this.state = 884; this.match(HiveSqlParser.KW_REPL); - this.state = 881; + this.state = 885; this.match(HiveSqlParser.KW_LOAD); - this.state = 882; + this.state = 886; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 885; + this.state = 889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 883; + this.state = 887; this.match(HiveSqlParser.KW_INTO); - this.state = 884; + this.state = 888; localContext._dbName = this.dbSchemaName(); } } - this.state = 889; + this.state = 893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 887; + this.state = 891; this.match(HiveSqlParser.KW_WITH); - this.state = 888; + this.state = 892; localContext._replConf = this.keyValueProperties(); } break; @@ -2149,16 +2151,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 891; + this.state = 895; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 894; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 892; + this.state = 896; this.match(HiveSqlParser.DOT); - this.state = 893; + this.state = 897; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2184,302 +2186,302 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 954; + this.state = 958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 896; + this.state = 900; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 897; + this.state = 901; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 898; + this.state = 902; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 899; + this.state = 903; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 900; + this.state = 904; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 901; + this.state = 905; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 902; + this.state = 906; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 903; + this.state = 907; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 904; + this.state = 908; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 905; + this.state = 909; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 906; + this.state = 910; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 907; + this.state = 911; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 908; + this.state = 912; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 909; + this.state = 913; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 910; + this.state = 914; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 911; + this.state = 915; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 912; + this.state = 916; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 913; + this.state = 917; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 914; + this.state = 918; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 915; + this.state = 919; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 916; + this.state = 920; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 917; + this.state = 921; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 918; + this.state = 922; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 919; + this.state = 923; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 920; + this.state = 924; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 921; + this.state = 925; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 922; + this.state = 926; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 923; + this.state = 927; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 924; + this.state = 928; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 925; + this.state = 929; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 926; + this.state = 930; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 927; + this.state = 931; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 928; + this.state = 932; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 929; + this.state = 933; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 930; + this.state = 934; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 931; + this.state = 935; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 932; + this.state = 936; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 933; + this.state = 937; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 934; + this.state = 938; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 935; + this.state = 939; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 936; + this.state = 940; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 937; + this.state = 941; this.match(HiveSqlParser.KW_ABORT); - this.state = 938; + this.state = 942; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2488,17 +2490,17 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 940; + this.state = 944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 939; + this.state = 943; this.match(HiveSqlParser.Number); } } - this.state = 942; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); @@ -2507,21 +2509,21 @@ export class HiveSqlParser extends SQLParserBase { case 43: this.enterOuterAlt(localContext, 43); { - this.state = 944; + this.state = 948; this.match(HiveSqlParser.KW_KILL); - this.state = 945; + this.state = 949; this.match(HiveSqlParser.KW_QUERY); - this.state = 947; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 946; + this.state = 950; this.match(HiveSqlParser.StringLiteral); } } - this.state = 949; + this.state = 953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); @@ -2530,21 +2532,21 @@ export class HiveSqlParser extends SQLParserBase { case 44: this.enterOuterAlt(localContext, 44); { - this.state = 951; + this.state = 955; this.resourcePlanDdlStatements(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 952; + this.state = 956; this.createDataConnectorStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 953; + this.state = 957; this.dropDataConnectorStatement(); } break; @@ -2570,9 +2572,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 956; + this.state = 960; this.match(HiveSqlParser.KW_IF); - this.state = 957; + this.state = 961; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2596,11 +2598,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 959; + this.state = 963; this.match(HiveSqlParser.KW_IF); - this.state = 960; + this.state = 964; this.match(HiveSqlParser.KW_NOT); - this.state = 961; + this.state = 965; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2625,7 +2627,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 963; + this.state = 967; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2656,9 +2658,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 965; + this.state = 969; this.enable(); - this.state = 966; + this.state = 970; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2682,9 +2684,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 972; this.disable(); - this.state = 969; + this.state = 973; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2708,11 +2710,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 975; this.match(HiveSqlParser.KW_STORED); - this.state = 972; + this.state = 976; this.match(HiveSqlParser.KW_AS); - this.state = 973; + this.state = 977; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2735,80 +2737,80 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1015; + this.state = 1019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 979; this.match(HiveSqlParser.KW_CREATE); - this.state = 977; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 976; + this.state = 980; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 979; + this.state = 983; this.db_schema(); - this.state = 981; + this.state = 985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 980; + this.state = 984; this.ifNotExists(); } } - this.state = 983; + this.state = 987; localContext._name = this.dbSchemaNameCreate(); - this.state = 985; + this.state = 989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 984; + this.state = 988; this.databaseComment(); } } - this.state = 988; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 987; + this.state = 991; this.locationPath(); } } - this.state = 992; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 990; + this.state = 994; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 991; + this.state = 995; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 997; + this.state = 1001; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 994; + this.state = 998; this.match(HiveSqlParser.KW_WITH); - this.state = 995; + this.state = 999; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 996; + this.state = 1000; localContext._dbprops = this.keyValueProperties(); } break; @@ -2818,46 +2820,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 999; + this.state = 1003; this.match(HiveSqlParser.KW_CREATE); - this.state = 1000; + this.state = 1004; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1001; + this.state = 1005; this.db_schema(); - this.state = 1003; + this.state = 1007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1002; + this.state = 1006; this.ifNotExists(); } } - this.state = 1005; + this.state = 1009; localContext._name = this.dbSchemaNameCreate(); - this.state = 1007; + this.state = 1011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1006; + this.state = 1010; this.databaseComment(); } } - this.state = 1009; - this.dbConnectorName(); this.state = 1013; + this.dbConnectorName(); + this.state = 1017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 1010; + this.state = 1014; this.match(HiveSqlParser.KW_WITH); - this.state = 1011; + this.state = 1015; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1012; + this.state = 1016; localContext._dbprops = this.keyValueProperties(); } break; @@ -2886,9 +2888,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1017; + this.state = 1021; this.match(HiveSqlParser.KW_USING); - this.state = 1018; + this.state = 1022; localContext._dcName = this.dbSchemaName(); } } @@ -2912,9 +2914,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1024; this.match(HiveSqlParser.KW_USE); - this.state = 1021; + this.state = 1025; this.dbSchemaName(); } } @@ -2939,28 +2941,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1023; + this.state = 1027; this.match(HiveSqlParser.KW_DROP); - this.state = 1024; + this.state = 1028; this.db_schema(); - this.state = 1026; + this.state = 1030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1025; + this.state = 1029; this.ifExists(); } } - this.state = 1028; + this.state = 1032; this.dbSchemaName(); - this.state = 1030; + this.state = 1034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1029; + this.state = 1033; this.restrictOrCascade(); } } @@ -2987,9 +2989,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1032; + this.state = 1036; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1033; + this.state = 1037; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3014,42 +3016,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1035; + this.state = 1039; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1037; + this.state = 1041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1036; + this.state = 1040; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1039; + this.state = 1043; this.tableOrPartition(); - this.state = 1045; + this.state = 1049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1040; + this.state = 1044; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1041; + this.state = 1045; this.match(HiveSqlParser.LPAREN); - this.state = 1042; + this.state = 1046; this.columnNameList(); - this.state = 1043; + this.state = 1047; this.match(HiveSqlParser.RPAREN); } } - this.state = 1048; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1047; + this.state = 1051; this.match(HiveSqlParser.KW_FORCE); } } @@ -3077,38 +3079,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1054; this.match(HiveSqlParser.KW_DROP); - this.state = 1051; + this.state = 1055; this.match(HiveSqlParser.KW_TABLE); - this.state = 1053; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1052; + this.state = 1056; this.ifExists(); } } - this.state = 1055; + this.state = 1059; this.tableName(); - this.state = 1057; + this.state = 1061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1056; + this.state = 1060; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1060; + this.state = 1064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1059; + this.state = 1063; this.replicationClause(); } } @@ -3135,13 +3137,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1066; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1063; + this.state = 1067; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1064; + this.state = 1068; this.match(HiveSqlParser.KW_SERDE); - this.state = 1065; + this.state = 1069; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3166,66 +3168,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1071; this.id_(); - this.state = 1070; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1068; + this.state = 1072; this.match(HiveSqlParser.DOT); - this.state = 1069; + this.state = 1073; this.id_(); } } - this.state = 1085; + this.state = 1089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 1072; + this.state = 1076; this.id_(); - this.state = 1082; + this.state = 1086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1073; + this.state = 1077; this.match(HiveSqlParser.DOT); - this.state = 1078; + this.state = 1082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1074; + this.state = 1078; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1075; + this.state = 1079; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1076; + this.state = 1080; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1077; + this.state = 1081; this.id_(); } break; } } } - this.state = 1084; + this.state = 1088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3255,14 +3257,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1091; this.tabTypeExpr(); - this.state = 1089; + this.state = 1093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1088; + this.state = 1092; this.partitionSpec(); } } @@ -3289,24 +3291,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1095; this.tableOrView(); - this.state = 1093; + this.state = 1097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1092; + this.state = 1096; this.partitionSpec(); } break; } - this.state = 1096; + this.state = 1100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1095; + this.state = 1099; this.extColumnName(); } break; @@ -3334,7 +3336,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1098; + this.state = 1102; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3343,90 +3345,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1121; + this.state = 1125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1099; + this.state = 1103; this.db_schema(); - this.state = 1101; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1100; + this.state = 1104; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1103; + this.state = 1107; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1105; + this.state = 1109; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1107; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1106; + this.state = 1110; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1109; + this.state = 1113; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1110; + this.state = 1114; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1112; + this.state = 1116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1111; + this.state = 1115; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1114; + this.state = 1118; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1117; + this.state = 1121; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1115; + this.state = 1119; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1116; + this.state = 1120; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1119; + this.state = 1123; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1120; + this.state = 1124; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3453,42 +3455,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1127; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1124; + this.state = 1128; this.match(HiveSqlParser.KW_TABLE); - this.state = 1125; + this.state = 1129; localContext._parttype = this.tableOrPartition(); - this.state = 1138; + this.state = 1142; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1126; + this.state = 1130; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1127; + this.state = 1131; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1134; + this.state = 1138; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1128; + this.state = 1132; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1129; + this.state = 1133; this.match(HiveSqlParser.KW_FOR); - this.state = 1130; + this.state = 1134; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1132; + this.state = 1136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1131; + this.state = 1135; localContext._statsColumnName = this.columnNameList(); } break; @@ -3549,9 +3551,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1136; + this.state = 1140; this.match(HiveSqlParser.KW_CACHE); - this.state = 1137; + this.state = 1141; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3581,7 +3583,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1140; + this.state = 1144; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3613,7 +3615,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1142; + this.state = 1146; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3643,15 +3645,15 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1327; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1148; this.match(HiveSqlParser.KW_SHOW); - this.state = 1145; + this.state = 1149; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3660,14 +3662,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1148; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1146; + this.state = 1150; this.match(HiveSqlParser.KW_LIKE); - this.state = 1147; + this.state = 1151; this.showStmtIdentifier(); } } @@ -3677,38 +3679,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1150; + this.state = 1154; this.match(HiveSqlParser.KW_SHOW); - this.state = 1152; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1151; + this.state = 1155; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1154; - this.match(HiveSqlParser.KW_TABLES); this.state = 1158; + this.match(HiveSqlParser.KW_TABLES); + this.state = 1162; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1155; + this.state = 1159; this.from_in(); - this.state = 1156; + this.state = 1160; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1161; + this.state = 1165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1160; + this.state = 1164; localContext._filter = this.showTablesFilterExpr(); } break; @@ -3718,36 +3720,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1163; + this.state = 1167; this.match(HiveSqlParser.KW_SHOW); - this.state = 1164; - this.match(HiveSqlParser.KW_VIEWS); this.state = 1168; + this.match(HiveSqlParser.KW_VIEWS); + this.state = 1172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1165; + this.state = 1169; this.from_in(); - this.state = 1166; + this.state = 1170; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1173; + this.state = 1177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1170; + this.state = 1174; this.match(HiveSqlParser.KW_LIKE); - this.state = 1171; + this.state = 1175; this.showStmtIdentifier(); } break; case 2: { - this.state = 1172; + this.state = 1176; this.showStmtIdentifier(); } break; @@ -3757,38 +3759,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1175; + this.state = 1179; this.match(HiveSqlParser.KW_SHOW); - this.state = 1176; + this.state = 1180; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1177; - this.match(HiveSqlParser.KW_VIEWS); this.state = 1181; + this.match(HiveSqlParser.KW_VIEWS); + this.state = 1185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1178; + this.state = 1182; this.from_in(); - this.state = 1179; + this.state = 1183; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1186; + this.state = 1190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 1183; + this.state = 1187; this.match(HiveSqlParser.KW_LIKE); - this.state = 1184; + this.state = 1188; this.showStmtIdentifier(); } break; case 2: { - this.state = 1185; + this.state = 1189; this.showStmtIdentifier(); } break; @@ -3798,50 +3800,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1188; + this.state = 1192; this.match(HiveSqlParser.KW_SHOW); - this.state = 1190; + this.state = 1194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1189; + this.state = 1193; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1192; + this.state = 1196; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1193; + this.state = 1197; this.from_in(); - this.state = 1194; - this.tableOrView(); this.state = 1198; + this.tableOrView(); + this.state = 1202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1195; + this.state = 1199; this.from_in(); - this.state = 1196; + this.state = 1200; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1203; + this.state = 1207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 1200; + this.state = 1204; this.match(HiveSqlParser.KW_LIKE); - this.state = 1201; + this.state = 1205; this.showStmtIdentifier(); } break; case 2: { - this.state = 1202; + this.state = 1206; this.showStmtIdentifier(); } break; @@ -3851,18 +3853,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1205; + this.state = 1209; this.match(HiveSqlParser.KW_SHOW); - this.state = 1206; + this.state = 1210; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1209; + this.state = 1213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1207; + this.state = 1211; this.match(HiveSqlParser.KW_LIKE); - this.state = 1208; + this.state = 1212; this.functionNameForDDL(); } } @@ -3872,48 +3874,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1211; + this.state = 1215; this.match(HiveSqlParser.KW_SHOW); - this.state = 1212; + this.state = 1216; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1213; + this.state = 1217; localContext._tabOrViewName = this.tableOrView(); - this.state = 1215; + this.state = 1219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1214; + this.state = 1218; this.partitionSpec(); } } - this.state = 1218; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1217; + this.state = 1221; this.whereClause(); } } - this.state = 1221; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1220; + this.state = 1224; this.orderByClause(); } } - this.state = 1224; + this.state = 1228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1223; + this.state = 1227; this.limitClause(); } } @@ -3923,27 +3925,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1226; + this.state = 1230; this.match(HiveSqlParser.KW_SHOW); - this.state = 1227; + this.state = 1231; this.match(HiveSqlParser.KW_CREATE); - this.state = 1233; + this.state = 1237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1228; + this.state = 1232; this.db_schema(); - this.state = 1229; + this.state = 1233; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1231; + this.state = 1235; this.match(HiveSqlParser.KW_TABLE); - this.state = 1232; + this.state = 1236; localContext._tabName = this.tableName(); } break; @@ -3955,34 +3957,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1235; + this.state = 1239; this.match(HiveSqlParser.KW_SHOW); - this.state = 1236; + this.state = 1240; this.match(HiveSqlParser.KW_TABLE); - this.state = 1237; - this.match(HiveSqlParser.KW_EXTENDED); this.state = 1241; + this.match(HiveSqlParser.KW_EXTENDED); + this.state = 1245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1238; + this.state = 1242; this.from_in(); - this.state = 1239; + this.state = 1243; localContext._db_name = this.dbSchemaName(); } } - this.state = 1243; + this.state = 1247; this.match(HiveSqlParser.KW_LIKE); - this.state = 1244; + this.state = 1248; this.showStmtIdentifier(); - this.state = 1246; + this.state = 1250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1245; + this.state = 1249; this.partitionSpec(); } } @@ -3992,22 +3994,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1248; + this.state = 1252; this.match(HiveSqlParser.KW_SHOW); - this.state = 1249; + this.state = 1253; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1250; - this.tableName(); this.state = 1254; + this.tableName(); + this.state = 1258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 1251; + this.state = 1255; this.match(HiveSqlParser.LPAREN); - this.state = 1252; + this.state = 1256; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1253; + this.state = 1257; this.match(HiveSqlParser.RPAREN); } break; @@ -4017,25 +4019,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1256; + this.state = 1260; this.match(HiveSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1261; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1269; + this.state = 1273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1258; + this.state = 1262; this.db_schema(); - this.state = 1259; + this.state = 1263; localContext._dbName = this.dbSchemaName(); - this.state = 1261; + this.state = 1265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1260; + this.state = 1264; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4044,22 +4046,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1264; + this.state = 1268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1263; + this.state = 1267; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1267; + this.state = 1271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1266; + this.state = 1270; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4072,20 +4074,20 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1271; + this.state = 1275; this.match(HiveSqlParser.KW_SHOW); - this.state = 1272; + this.state = 1276; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1299; + this.state = 1303; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1273; + this.state = 1277; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1274; + this.state = 1278; this.match(HiveSqlParser.EQUAL); - this.state = 1275; + this.state = 1279; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4358,27 +4360,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1282; + this.state = 1286; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { { - this.state = 1276; + this.state = 1280; this.db_schema(); - this.state = 1277; + this.state = 1281; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1280; + this.state = 1284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1279; + this.state = 1283; localContext._parttype = this.partTypeExpr(); } break; @@ -4386,52 +4388,52 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1285; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1284; + this.state = 1288; this.compactionPool(); } } - this.state = 1288; + this.state = 1292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1287; + this.state = 1291; this.compactionType(); } } - this.state = 1291; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1290; + this.state = 1294; this.compactionStatus(); } } - this.state = 1294; + this.state = 1298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1293; + this.state = 1297; this.orderByClause(); } } - this.state = 1297; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1296; + this.state = 1300; this.limitClause(); } } @@ -4446,44 +4448,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1301; + this.state = 1305; this.match(HiveSqlParser.KW_SHOW); - this.state = 1302; + this.state = 1306; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1303; + this.state = 1307; this.match(HiveSqlParser.KW_SHOW); - this.state = 1304; + this.state = 1308; this.match(HiveSqlParser.KW_CONF); - this.state = 1305; + this.state = 1309; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1306; + this.state = 1310; this.match(HiveSqlParser.KW_SHOW); - this.state = 1307; - this.match(HiveSqlParser.KW_RESOURCE); this.state = 1311; + this.match(HiveSqlParser.KW_RESOURCE); + this.state = 1315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1308; + this.state = 1312; this.match(HiveSqlParser.KW_PLAN); - this.state = 1309; + this.state = 1313; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1310; + this.state = 1314; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4495,28 +4497,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1313; + this.state = 1317; this.match(HiveSqlParser.KW_SHOW); - this.state = 1314; + this.state = 1318; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1315; + this.state = 1319; this.match(HiveSqlParser.KW_SHOW); - this.state = 1317; + this.state = 1321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1316; + this.state = 1320; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1319; + this.state = 1323; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4525,18 +4527,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1320; + this.state = 1324; this.match(HiveSqlParser.KW_ON); - this.state = 1321; - this.tableName(); this.state = 1325; + this.tableName(); + this.state = 1329; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1322; + this.state = 1326; this.from_in(); - this.state = 1323; + this.state = 1327; this.dbSchemaName(); } break; @@ -4563,28 +4565,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1337; + this.state = 1341; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1329; + this.state = 1333; this.match(HiveSqlParser.KW_WHERE); - this.state = 1330; + this.state = 1334; this.id_(); - this.state = 1331; + this.state = 1335; this.match(HiveSqlParser.EQUAL); - this.state = 1332; + this.state = 1336; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1334; + this.state = 1338; this.match(HiveSqlParser.KW_LIKE); - this.state = 1335; + this.state = 1339; this.showStmtIdentifier(); } break; @@ -4831,7 +4833,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1336; + this.state = 1340; this.showStmtIdentifier(); } break; @@ -4859,13 +4861,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1339; + this.state = 1343; this.match(HiveSqlParser.KW_LOCK); - this.state = 1340; + this.state = 1344; this.match(HiveSqlParser.KW_TABLE); - this.state = 1341; + this.state = 1345; this.tableOrPartition(); - this.state = 1342; + this.state = 1346; this.lockMode(); } } @@ -4889,13 +4891,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1344; + this.state = 1348; this.match(HiveSqlParser.KW_LOCK); - this.state = 1345; + this.state = 1349; this.db_schema(); - this.state = 1346; + this.state = 1350; localContext._dbName = this.dbSchemaName(); - this.state = 1347; + this.state = 1351; this.lockMode(); } } @@ -4920,7 +4922,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1353; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -4951,11 +4953,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1351; + this.state = 1355; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1352; + this.state = 1356; this.match(HiveSqlParser.KW_TABLE); - this.state = 1353; + this.state = 1357; this.tableOrPartition(); } } @@ -4979,11 +4981,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1355; + this.state = 1359; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1356; + this.state = 1360; this.db_schema(); - this.state = 1357; + this.state = 1361; localContext._dbName = this.dbSchemaName(); } } @@ -5007,11 +5009,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1363; this.match(HiveSqlParser.KW_CREATE); - this.state = 1360; + this.state = 1364; this.match(HiveSqlParser.KW_ROLE); - this.state = 1361; + this.state = 1365; localContext._roleName = this.id_(); } } @@ -5035,11 +5037,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1367; this.match(HiveSqlParser.KW_DROP); - this.state = 1364; + this.state = 1368; this.match(HiveSqlParser.KW_ROLE); - this.state = 1365; + this.state = 1369; localContext._roleName = this.id_(); } } @@ -5064,30 +5066,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1371; this.match(HiveSqlParser.KW_GRANT); - this.state = 1368; + this.state = 1372; localContext._privList = this.privilegeList(); - this.state = 1370; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1369; + this.state = 1373; this.privilegeObject(); } } - this.state = 1372; + this.state = 1376; this.match(HiveSqlParser.KW_TO); - this.state = 1373; + this.state = 1377; this.principalSpecification(); - this.state = 1375; + this.state = 1379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1374; + this.state = 1378; this.withGrantOption(); } break; @@ -5115,33 +5117,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1377; + this.state = 1381; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1379; + this.state = 1383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1378; + this.state = 1382; this.grantOptionFor(); } } - this.state = 1381; + this.state = 1385; this.privilegeList(); - this.state = 1383; + this.state = 1387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1382; + this.state = 1386; this.privilegeObject(); } } - this.state = 1385; + this.state = 1389; this.match(HiveSqlParser.KW_FROM); - this.state = 1386; + this.state = 1390; this.principalSpecification(); } } @@ -5166,46 +5168,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1392; this.match(HiveSqlParser.KW_GRANT); - this.state = 1390; + this.state = 1394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1389; + this.state = 1393; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1392; + this.state = 1396; this.id_(); - this.state = 1397; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1393; + this.state = 1397; this.match(HiveSqlParser.COMMA); - this.state = 1394; + this.state = 1398; this.id_(); } } - this.state = 1399; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1400; + this.state = 1404; this.match(HiveSqlParser.KW_TO); - this.state = 1401; + this.state = 1405; this.principalSpecification(); - this.state = 1403; + this.state = 1407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1402; + this.state = 1406; this.withAdminOption(); } break; @@ -5233,49 +5235,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1409; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1407; + this.state = 1411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1406; + this.state = 1410; this.adminOptionFor(); } break; } - this.state = 1410; + this.state = 1414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1409; + this.state = 1413; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1412; + this.state = 1416; this.id_(); - this.state = 1417; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1413; + this.state = 1417; this.match(HiveSqlParser.COMMA); - this.state = 1414; + this.state = 1418; this.id_(); } } - this.state = 1419; + this.state = 1423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1424; this.match(HiveSqlParser.KW_FROM); - this.state = 1421; + this.state = 1425; this.principalSpecification(); } } @@ -5299,13 +5301,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1423; + this.state = 1427; this.match(HiveSqlParser.KW_SHOW); - this.state = 1424; + this.state = 1428; this.match(HiveSqlParser.KW_ROLE); - this.state = 1425; + this.state = 1429; this.match(HiveSqlParser.KW_GRANT); - this.state = 1426; + this.state = 1430; this.principalName(); } } @@ -5329,9 +5331,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1432; this.match(HiveSqlParser.KW_SHOW); - this.state = 1429; + this.state = 1433; this.match(HiveSqlParser.KW_ROLES); } } @@ -5355,11 +5357,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1431; + this.state = 1435; this.match(HiveSqlParser.KW_SHOW); - this.state = 1432; + this.state = 1436; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1433; + this.state = 1437; this.match(HiveSqlParser.KW_ROLES); } } @@ -5383,22 +5385,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1435; + this.state = 1439; this.match(HiveSqlParser.KW_SET); - this.state = 1436; - this.match(HiveSqlParser.KW_ROLE); this.state = 1440; + this.match(HiveSqlParser.KW_ROLE); + this.state = 1444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1437; + this.state = 1441; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1438; + this.state = 1442; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5643,7 +5645,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1439; + this.state = 1443; this.id_(); } break; @@ -5673,28 +5675,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; + this.state = 1446; this.match(HiveSqlParser.KW_SHOW); - this.state = 1443; + this.state = 1447; this.match(HiveSqlParser.KW_GRANT); - this.state = 1445; + this.state = 1449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1444; + this.state = 1448; this.principalName(); } } - this.state = 1449; + this.state = 1453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1447; + this.state = 1451; this.match(HiveSqlParser.KW_ON); - this.state = 1448; + this.state = 1452; this.privilegeIncludeColObject(); } } @@ -5721,11 +5723,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1455; this.match(HiveSqlParser.KW_SHOW); - this.state = 1452; + this.state = 1456; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1453; + this.state = 1457; localContext._roleName = this.id_(); } } @@ -5747,13 +5749,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1457; + this.state = 1461; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1459; this.match(HiveSqlParser.KW_ALL); } break; @@ -6001,7 +6003,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1456; + this.state = 1460; this.privObjectCols(); } break; @@ -6029,9 +6031,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1463; this.match(HiveSqlParser.KW_ON); - this.state = 1460; + this.state = 1464; this.privObject(); } } @@ -6054,50 +6056,50 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1473; + this.state = 1477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1466; this.db_schema(); - this.state = 1463; + this.state = 1467; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1466; + this.state = 1470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1465; + this.state = 1469; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1468; + this.state = 1472; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1469; + this.state = 1473; this.match(HiveSqlParser.KW_URI); - this.state = 1470; + this.state = 1474; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1471; + this.state = 1475; this.match(HiveSqlParser.KW_SERVER); - this.state = 1472; + this.state = 1476; this.id_(); } break; @@ -6122,53 +6124,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1495; + this.state = 1499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1479; this.db_schema(); - this.state = 1476; + this.state = 1480; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1479; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1478; + this.state = 1482; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1481; + this.state = 1485; this.tableName(); - this.state = 1486; + this.state = 1490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1482; + this.state = 1486; this.match(HiveSqlParser.LPAREN); - this.state = 1483; + this.state = 1487; localContext._cols = this.columnNameList(); - this.state = 1484; + this.state = 1488; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1489; + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1488; + this.state = 1492; this.partitionSpec(); } } @@ -6178,18 +6180,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1491; + this.state = 1495; this.match(HiveSqlParser.KW_URI); - this.state = 1492; + this.state = 1496; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1493; + this.state = 1497; this.match(HiveSqlParser.KW_SERVER); - this.state = 1494; + this.state = 1498; this.id_(); } break; @@ -6216,21 +6218,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1501; this.privilegeDef(); - this.state = 1502; + this.state = 1506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1498; + this.state = 1502; this.match(HiveSqlParser.COMMA); - this.state = 1499; + this.state = 1503; this.privilegeDef(); } } - this.state = 1504; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6257,18 +6259,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1509; this.privilegeType(); - this.state = 1510; + this.state = 1514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1506; + this.state = 1510; this.match(HiveSqlParser.LPAREN); - this.state = 1507; + this.state = 1511; localContext._cols = this.columnNameList(); - this.state = 1508; + this.state = 1512; this.match(HiveSqlParser.RPAREN); } } @@ -6296,7 +6298,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1512; + this.state = 1516; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6328,21 +6330,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1518; this.principalName(); - this.state = 1519; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1515; + this.state = 1519; this.match(HiveSqlParser.COMMA); - this.state = 1516; + this.state = 1520; this.principalName(); } } - this.state = 1521; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6366,33 +6368,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); try { - this.state = 1528; + this.state = 1532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1522; + this.state = 1526; this.match(HiveSqlParser.KW_USER); - this.state = 1523; + this.state = 1527; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1524; + this.state = 1528; this.match(HiveSqlParser.KW_GROUP); - this.state = 1525; + this.state = 1529; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1526; + this.state = 1530; this.match(HiveSqlParser.KW_ROLE); - this.state = 1527; + this.state = 1531; this.id_(); } break; @@ -6418,31 +6420,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1535; + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1534; this.match(HiveSqlParser.KW_USER); - this.state = 1531; + this.state = 1535; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1532; + this.state = 1536; this.match(HiveSqlParser.KW_ROLE); - this.state = 1533; + this.state = 1537; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1534; + this.state = 1538; this.id_(); } break; @@ -6468,11 +6470,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1541; this.match(HiveSqlParser.KW_WITH); - this.state = 1538; + this.state = 1542; this.match(HiveSqlParser.KW_GRANT); - this.state = 1539; + this.state = 1543; this.match(HiveSqlParser.KW_OPTION); } } @@ -6496,11 +6498,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1541; + this.state = 1545; this.match(HiveSqlParser.KW_GRANT); - this.state = 1542; + this.state = 1546; this.match(HiveSqlParser.KW_OPTION); - this.state = 1543; + this.state = 1547; this.match(HiveSqlParser.KW_FOR); } } @@ -6524,11 +6526,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1545; + this.state = 1549; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1546; + this.state = 1550; this.match(HiveSqlParser.KW_OPTION); - this.state = 1547; + this.state = 1551; this.match(HiveSqlParser.KW_FOR); } } @@ -6552,11 +6554,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1549; + this.state = 1553; this.match(HiveSqlParser.KW_WITH); - this.state = 1550; + this.state = 1554; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1551; + this.state = 1555; this.match(HiveSqlParser.KW_OPTION); } } @@ -6581,29 +6583,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1553; + this.state = 1557; this.match(HiveSqlParser.KW_MSCK); - this.state = 1555; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1554; + this.state = 1558; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1557; + this.state = 1561; this.match(HiveSqlParser.KW_TABLE); - this.state = 1558; + this.state = 1562; this.tableName(); - this.state = 1564; + this.state = 1568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1559; + this.state = 1563; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6613,14 +6615,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1560; + this.state = 1564; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1562; + this.state = 1566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1561; + this.state = 1565; this.partitionSelectorSpec(); } break; @@ -6652,21 +6654,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1570; this.resource(); - this.state = 1571; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1567; + this.state = 1571; this.match(HiveSqlParser.COMMA); - this.state = 1568; + this.state = 1572; this.resource(); } } - this.state = 1573; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6692,9 +6694,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1574; + this.state = 1578; localContext._resType = this.resourceType(); - this.state = 1575; + this.state = 1579; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6719,7 +6721,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1577; + this.state = 1581; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6751,34 +6753,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1579; + this.state = 1583; this.match(HiveSqlParser.KW_CREATE); - this.state = 1581; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1580; + this.state = 1584; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1583; + this.state = 1587; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1584; + this.state = 1588; this.functionNameCreate(); - this.state = 1585; + this.state = 1589; this.match(HiveSqlParser.KW_AS); - this.state = 1586; + this.state = 1590; this.match(HiveSqlParser.StringLiteral); - this.state = 1589; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1587; + this.state = 1591; this.match(HiveSqlParser.KW_USING); - this.state = 1588; + this.state = 1592; localContext._rList = this.resourceList(); } } @@ -6806,31 +6808,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1591; + this.state = 1595; this.match(HiveSqlParser.KW_DROP); - this.state = 1593; + this.state = 1597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1592; + this.state = 1596; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1595; + this.state = 1599; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1597; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1596; + this.state = 1600; this.ifExists(); } } - this.state = 1599; + this.state = 1603; this.functionNameForDDL(); } } @@ -6855,9 +6857,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1601; + this.state = 1605; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1602; + this.state = 1606; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6889,29 +6891,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1604; + this.state = 1608; this.match(HiveSqlParser.KW_CREATE); - this.state = 1605; + this.state = 1609; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1606; + this.state = 1610; this.match(HiveSqlParser.KW_MACRO); - this.state = 1607; + this.state = 1611; this.match(HiveSqlParser.Identifier); - this.state = 1608; + this.state = 1612; this.match(HiveSqlParser.LPAREN); - this.state = 1610; + this.state = 1614; 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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1609; + this.state = 1613; this.columnNameTypeList(); } } - this.state = 1612; + this.state = 1616; this.match(HiveSqlParser.RPAREN); - this.state = 1613; + this.state = 1617; this.expression(); } } @@ -6936,23 +6938,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1615; + this.state = 1619; this.match(HiveSqlParser.KW_DROP); - this.state = 1616; + this.state = 1620; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1617; + this.state = 1621; this.match(HiveSqlParser.KW_MACRO); - this.state = 1619; + this.state = 1623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1618; + this.state = 1622; this.ifExists(); } } - this.state = 1621; + this.state = 1625; this.match(HiveSqlParser.Identifier); } } @@ -6977,124 +6979,124 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1627; this.match(HiveSqlParser.KW_CREATE); - this.state = 1624; + this.state = 1628; this.match(HiveSqlParser.KW_INDEX); - this.state = 1625; + this.state = 1629; this.id_(); - this.state = 1626; + this.state = 1630; this.match(HiveSqlParser.KW_ON); - this.state = 1627; + this.state = 1631; this.match(HiveSqlParser.KW_TABLE); - this.state = 1628; + this.state = 1632; this.tableName(); - this.state = 1629; + this.state = 1633; this.columnParenthesesList(); - this.state = 1630; + this.state = 1634; this.match(HiveSqlParser.KW_AS); - this.state = 1631; - localContext._indextype = this.match(HiveSqlParser.StringLiteral); this.state = 1635; + localContext._indextype = this.match(HiveSqlParser.StringLiteral); + this.state = 1639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1632; + this.state = 1636; this.match(HiveSqlParser.KW_WITH); - this.state = 1633; + this.state = 1637; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1634; + this.state = 1638; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1639; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1637; + this.state = 1641; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1638; + this.state = 1642; this.tableProperties(); } } - this.state = 1644; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1641; + this.state = 1645; this.match(HiveSqlParser.KW_IN); - this.state = 1642; + this.state = 1646; this.match(HiveSqlParser.KW_TABLE); - this.state = 1643; + this.state = 1647; this.tableName(); } } - this.state = 1649; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1646; + this.state = 1650; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1647; + this.state = 1651; this.match(HiveSqlParser.KW_BY); - this.state = 1648; + this.state = 1652; this.columnParenthesesList(); } } - this.state = 1655; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1652; + this.state = 1656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1651; + this.state = 1655; this.tableRowFormat(); } } - this.state = 1654; + this.state = 1658; this.tableFileFormat(); } } - this.state = 1658; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1657; + this.state = 1661; this.locationPath(); } } - this.state = 1661; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1660; + this.state = 1664; this.tablePropertiesPrefixed(); } } - this.state = 1664; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1663; + this.state = 1667; this.tableComment(); } } @@ -7122,25 +7124,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1666; + this.state = 1670; this.match(HiveSqlParser.KW_DROP); - this.state = 1667; + this.state = 1671; this.match(HiveSqlParser.KW_INDEX); - this.state = 1669; + this.state = 1673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1668; + this.state = 1672; this.ifExists(); } } - this.state = 1671; + this.state = 1675; this.id_(); - this.state = 1672; + this.state = 1676; this.match(HiveSqlParser.KW_ON); - this.state = 1673; + this.state = 1677; this.tableName(); } } @@ -7165,81 +7167,81 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1679; this.match(HiveSqlParser.KW_CREATE); - this.state = 1678; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1676; + this.state = 1680; this.match(HiveSqlParser.KW_OR); - this.state = 1677; + this.state = 1681; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1680; + this.state = 1684; this.match(HiveSqlParser.KW_VIEW); - this.state = 1682; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1681; + this.state = 1685; this.ifNotExists(); } } - this.state = 1684; + this.state = 1688; localContext._name = this.viewNameCreate(); - this.state = 1689; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1685; + this.state = 1689; this.match(HiveSqlParser.LPAREN); - this.state = 1686; + this.state = 1690; this.columnNameCommentList(); - this.state = 1687; + this.state = 1691; this.match(HiveSqlParser.RPAREN); } } - this.state = 1692; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1691; + this.state = 1695; this.tableComment(); } } - this.state = 1695; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1694; + this.state = 1698; this.viewPartition(); } } - this.state = 1698; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1697; + this.state = 1701; this.tablePropertiesPrefixed(); } } - this.state = 1700; + this.state = 1704; this.match(HiveSqlParser.KW_AS); - this.state = 1701; + this.state = 1705; this.selectStatementWithCTE(); } } @@ -7263,35 +7265,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1703; + this.state = 1707; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1704; + this.state = 1708; this.match(HiveSqlParser.KW_ON); - this.state = 1710; + this.state = 1714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1705; + this.state = 1709; this.match(HiveSqlParser.LPAREN); - this.state = 1706; + this.state = 1710; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1707; + this.state = 1711; this.match(HiveSqlParser.KW_SPEC); - this.state = 1708; + this.state = 1712; this.match(HiveSqlParser.LPAREN); - this.state = 1709; + this.state = 1713; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1712; + this.state = 1716; this.match(HiveSqlParser.RPAREN); } } @@ -7313,20 +7315,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1716; + this.state = 1720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1714; + this.state = 1718; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1715; + this.state = 1719; this.viewComplexSpec(); } break; @@ -7354,15 +7356,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1718; + this.state = 1722; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1719; + this.state = 1723; this.match(HiveSqlParser.KW_ON); - this.state = 1720; + this.state = 1724; this.match(HiveSqlParser.LPAREN); - this.state = 1721; + this.state = 1725; this.columnNameList(); - this.state = 1722; + this.state = 1726; this.match(HiveSqlParser.RPAREN); } } @@ -7386,9 +7388,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1724; + this.state = 1728; this.viewDistSpec(); - this.state = 1725; + this.state = 1729; this.viewSortSpec(); } } @@ -7412,15 +7414,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1727; + this.state = 1731; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1728; + this.state = 1732; this.match(HiveSqlParser.KW_ON); - this.state = 1729; + this.state = 1733; this.match(HiveSqlParser.LPAREN); - this.state = 1730; + this.state = 1734; localContext._colList = this.columnNameList(); - this.state = 1731; + this.state = 1735; this.match(HiveSqlParser.RPAREN); } } @@ -7444,15 +7446,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1733; + this.state = 1737; this.match(HiveSqlParser.KW_SORTED); - this.state = 1734; + this.state = 1738; this.match(HiveSqlParser.KW_ON); - this.state = 1735; + this.state = 1739; this.match(HiveSqlParser.LPAREN); - this.state = 1736; + this.state = 1740; localContext._colList = this.columnNameList(); - this.state = 1737; + this.state = 1741; this.match(HiveSqlParser.RPAREN); } } @@ -7477,21 +7479,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1743; this.match(HiveSqlParser.KW_DROP); - this.state = 1740; + this.state = 1744; this.match(HiveSqlParser.KW_VIEW); - this.state = 1742; + this.state = 1746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1741; + this.state = 1745; this.ifExists(); } } - this.state = 1744; + this.state = 1748; this.viewName(); } } @@ -7516,107 +7518,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1746; + this.state = 1750; this.match(HiveSqlParser.KW_CREATE); - this.state = 1747; + this.state = 1751; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1748; + this.state = 1752; this.match(HiveSqlParser.KW_VIEW); - this.state = 1750; + this.state = 1754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1749; + this.state = 1753; this.ifNotExists(); } } - this.state = 1752; + this.state = 1756; localContext._name = this.viewNameCreate(); - this.state = 1754; + this.state = 1758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1753; + this.state = 1757; this.rewriteDisabled(); } } - this.state = 1757; + this.state = 1761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1756; + this.state = 1760; this.tableComment(); } } - this.state = 1760; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1759; + this.state = 1763; this.viewPartition(); } } - this.state = 1763; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1762; + this.state = 1766; this.viewOrganization(); } } - this.state = 1766; + this.state = 1770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1765; + this.state = 1769; this.tableRowFormat(); } } - this.state = 1769; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1768; + this.state = 1772; this.tableFileFormat(); } } - this.state = 1772; + this.state = 1776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1771; + this.state = 1775; this.locationPath(); } } - this.state = 1775; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1774; + this.state = 1778; this.tablePropertiesPrefixed(); } } - this.state = 1777; + this.state = 1781; this.match(HiveSqlParser.KW_AS); - this.state = 1778; + this.state = 1782; this.selectStatementWithCTE(); } } @@ -7641,23 +7643,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1780; + this.state = 1784; this.match(HiveSqlParser.KW_DROP); - this.state = 1781; + this.state = 1785; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1782; + this.state = 1786; this.match(HiveSqlParser.KW_VIEW); - this.state = 1784; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1783; + this.state = 1787; this.ifExists(); } } - this.state = 1786; + this.state = 1790; this.viewName(); } } @@ -7682,37 +7684,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1788; + this.state = 1792; this.match(HiveSqlParser.KW_CREATE); - this.state = 1789; + this.state = 1793; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1790; + this.state = 1794; this.match(HiveSqlParser.KW_QUERY); - this.state = 1791; + this.state = 1795; localContext._name = this.id_(); - this.state = 1792; + this.state = 1796; this.scheduleSpec(); - this.state = 1794; + this.state = 1798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1793; + this.state = 1797; this.executedAsSpec(); } } - this.state = 1797; + this.state = 1801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1796; + this.state = 1800; this.enableSpecification(); } } - this.state = 1799; + this.state = 1803; this.definedAsSpec(); } } @@ -7736,13 +7738,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1801; + this.state = 1805; this.match(HiveSqlParser.KW_DROP); - this.state = 1802; + this.state = 1806; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1803; + this.state = 1807; this.match(HiveSqlParser.KW_QUERY); - this.state = 1804; + this.state = 1808; localContext._name = this.id_(); } } @@ -7766,15 +7768,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1810; this.match(HiveSqlParser.KW_ALTER); - this.state = 1807; + this.state = 1811; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1808; + this.state = 1812; this.match(HiveSqlParser.KW_QUERY); - this.state = 1809; + this.state = 1813; localContext._name = this.id_(); - this.state = 1810; + this.state = 1814; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7796,21 +7798,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1817; + this.state = 1821; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1816; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1813; + this.state = 1817; this.executedAsSpec(); } break; @@ -7820,7 +7822,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1814; + this.state = 1818; this.enableSpecification(); } break; @@ -7828,14 +7830,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1815; + this.state = 1819; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1816; + this.state = 1820; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7862,61 +7864,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1834; + this.state = 1838; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1823; this.match(HiveSqlParser.KW_CRON); - this.state = 1820; + this.state = 1824; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1821; + this.state = 1825; this.match(HiveSqlParser.KW_EVERY); - this.state = 1823; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1822; + this.state = 1826; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1825; + this.state = 1829; localContext._qualifier = this.intervalQualifiers(); - this.state = 1832; + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1829; + this.state = 1833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1826; + this.state = 1830; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1827; + this.state = 1831; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1828; + this.state = 1832; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1831; + this.state = 1835; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7947,11 +7949,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1836; + this.state = 1840; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1837; + this.state = 1841; this.match(HiveSqlParser.KW_AS); - this.state = 1838; + this.state = 1842; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7976,19 +7978,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1840; + this.state = 1844; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1843; + this.state = 1847; this.match(HiveSqlParser.KW_AS); - this.state = 1844; + this.state = 1848; this.statement(); } } @@ -8010,7 +8012,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1848; + this.state = 1852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8255,14 +8257,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1846; + this.state = 1850; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1851; this.match(HiveSqlParser.StringLiteral); } break; @@ -8290,9 +8292,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1854; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1851; + this.state = 1855; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8316,9 +8318,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1857; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1854; + this.state = 1858; this.match(HiveSqlParser.Number); } } @@ -8342,29 +8344,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1860; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1857; + this.state = 1861; this.match(HiveSqlParser.KW_BY); - this.state = 1866; + this.state = 1870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1858; + this.state = 1862; this.match(HiveSqlParser.LPAREN); - this.state = 1861; + this.state = 1865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1859; + this.state = 1863; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1860; + this.state = 1864; localContext._opt2 = this.columnNameList(); } break; @@ -8373,18 +8375,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1863; + this.state = 1867; this.match(HiveSqlParser.KW_SPEC); - this.state = 1864; + this.state = 1868; this.match(HiveSqlParser.LPAREN); - this.state = 1865; + this.state = 1869; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1868; + this.state = 1872; this.match(HiveSqlParser.RPAREN); } } @@ -8409,21 +8411,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1874; this.columnNameTypeConstraint(); - this.state = 1875; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1871; + this.state = 1875; this.match(HiveSqlParser.COMMA); - this.state = 1872; + this.state = 1876; this.columnNameTypeConstraint(); } } - this.state = 1877; + this.state = 1881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8450,21 +8452,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1878; + this.state = 1882; this.partitionTransformType(); - this.state = 1883; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1879; + this.state = 1883; this.match(HiveSqlParser.COMMA); - this.state = 1880; + this.state = 1884; this.partitionTransformType(); } } - this.state = 1885; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8489,65 +8491,65 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1904; + this.state = 1908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1886; + this.state = 1890; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1891; + this.state = 1895; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 1887; + this.state = 1891; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 1888; + this.state = 1892; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 1889; + this.state = 1893; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 1890; + this.state = 1894; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1893; + this.state = 1897; this.match(HiveSqlParser.LPAREN); - this.state = 1894; + this.state = 1898; this.columnName(); - this.state = 1895; + this.state = 1899; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1897; + this.state = 1901; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8556,15 +8558,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1902; this.match(HiveSqlParser.LPAREN); - this.state = 1899; + this.state = 1903; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1900; + this.state = 1904; this.match(HiveSqlParser.COMMA); - this.state = 1901; + this.state = 1905; this.columnName(); - this.state = 1902; + this.state = 1906; this.match(HiveSqlParser.RPAREN); } break; @@ -8591,39 +8593,39 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1910; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1907; + this.state = 1911; this.match(HiveSqlParser.KW_BY); - this.state = 1908; + this.state = 1912; this.match(HiveSqlParser.LPAREN); - this.state = 1909; + this.state = 1913; localContext._bucketCols = this.columnNameList(); - this.state = 1910; + this.state = 1914; this.match(HiveSqlParser.RPAREN); - this.state = 1917; + this.state = 1921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1911; + this.state = 1915; this.match(HiveSqlParser.KW_SORTED); - this.state = 1912; + this.state = 1916; this.match(HiveSqlParser.KW_BY); - this.state = 1913; + this.state = 1917; this.match(HiveSqlParser.LPAREN); - this.state = 1914; + this.state = 1918; localContext._sortCols = this.columnNameOrderList(); - this.state = 1915; + this.state = 1919; this.match(HiveSqlParser.RPAREN); } } - this.state = 1919; + this.state = 1923; this.match(HiveSqlParser.KW_INTO); - this.state = 1920; + this.state = 1924; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1921; + this.state = 1925; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8647,30 +8649,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1927; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1924; + this.state = 1928; this.match(HiveSqlParser.KW_BY); - this.state = 1925; + this.state = 1929; this.match(HiveSqlParser.LPAREN); - this.state = 1926; + this.state = 1930; localContext._skewedCols = this.columnNameList(); - this.state = 1927; + this.state = 1931; this.match(HiveSqlParser.RPAREN); - this.state = 1928; + this.state = 1932; this.match(HiveSqlParser.KW_ON); - this.state = 1929; + this.state = 1933; this.match(HiveSqlParser.LPAREN); - this.state = 1930; + this.state = 1934; localContext._skewedValues = this.skewedValueElement(); - this.state = 1931; + this.state = 1935; this.match(HiveSqlParser.RPAREN); - this.state = 1933; + this.state = 1937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1932; + this.state = 1936; this.storedAsDirs(); } break; @@ -8695,20 +8697,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); try { - this.state = 1937; + this.state = 1941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1935; + this.state = 1939; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1936; + this.state = 1940; this.rowFormatDelimited(); } break; @@ -8734,9 +8736,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1943; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1940; + this.state = 1944; this.match(HiveSqlParser.StringLiteral); } } @@ -8760,9 +8762,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1942; + this.state = 1946; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1943; + this.state = 1947; this.match(HiveSqlParser.StringLiteral); } } @@ -8786,24 +8788,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1945; + this.state = 1949; this.match(HiveSqlParser.KW_ROW); - this.state = 1946; + this.state = 1950; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1947; + this.state = 1951; this.match(HiveSqlParser.KW_SERDE); - this.state = 1948; - localContext._name = this.match(HiveSqlParser.StringLiteral); this.state = 1952; + localContext._name = this.match(HiveSqlParser.StringLiteral); + this.state = 1956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1949; + this.state = 1953; this.match(HiveSqlParser.KW_WITH); - this.state = 1950; + this.state = 1954; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1951; + this.state = 1955; localContext._serderops = this.tableProperties(); } break; @@ -8831,58 +8833,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1954; + this.state = 1958; this.match(HiveSqlParser.KW_ROW); - this.state = 1955; + this.state = 1959; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1956; + this.state = 1960; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1958; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1957; + this.state = 1961; this.tableRowFormatFieldIdentifier(); } } - this.state = 1961; + this.state = 1965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1960; + this.state = 1964; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 1964; + this.state = 1968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1963; + this.state = 1967; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 1967; + this.state = 1971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1966; + this.state = 1970; this.tableRowFormatLinesIdentifier(); } } - this.state = 1970; + this.state = 1974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1969; + this.state = 1973; this.tableRowNullFormat(); } } @@ -8907,20 +8909,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 1974; + this.state = 1978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1972; + this.state = 1976; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1973; + this.state = 1977; this.rowFormatSerde(); } break; @@ -8946,9 +8948,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1976; + this.state = 1980; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1977; + this.state = 1981; this.tableProperties(); } } @@ -8972,11 +8974,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1979; + this.state = 1983; this.match(HiveSqlParser.LPAREN); - this.state = 1980; + this.state = 1984; this.tablePropertiesList(); - this.state = 1981; + this.state = 1985; this.match(HiveSqlParser.RPAREN); } } @@ -8999,34 +9001,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 1992; + this.state = 1996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1987; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1984; + this.state = 1988; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 1989; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1985; + this.state = 1989; this.match(HiveSqlParser.COMMA); - this.state = 1986; + this.state = 1990; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1991; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9054,11 +9056,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 1998; this.match(HiveSqlParser.LPAREN); - this.state = 1995; + this.state = 1999; this.keyValuePropertyList(); - this.state = 1996; + this.state = 2000; this.match(HiveSqlParser.RPAREN); } } @@ -9083,21 +9085,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2002; this.keyValueProperty(); - this.state = 2003; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1999; + this.state = 2003; this.match(HiveSqlParser.COMMA); - this.state = 2000; + this.state = 2004; this.keyValueProperty(); } } - this.state = 2005; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9123,11 +9125,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2010; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2007; + this.state = 2011; this.match(HiveSqlParser.EQUAL); - this.state = 2008; + this.state = 2012; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9152,24 +9154,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2010; + this.state = 2014; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2011; + this.state = 2015; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2012; + this.state = 2016; this.match(HiveSqlParser.KW_BY); - this.state = 2013; - localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); this.state = 2017; + localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); + this.state = 2021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2014; + this.state = 2018; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2015; + this.state = 2019; this.match(HiveSqlParser.KW_BY); - this.state = 2016; + this.state = 2020; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9196,15 +9198,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2019; + this.state = 2023; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2020; + this.state = 2024; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2021; + this.state = 2025; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2022; + this.state = 2026; this.match(HiveSqlParser.KW_BY); - this.state = 2023; + this.state = 2027; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9228,15 +9230,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2025; + this.state = 2029; this.match(HiveSqlParser.KW_MAP); - this.state = 2026; + this.state = 2030; this.match(HiveSqlParser.KW_KEYS); - this.state = 2027; + this.state = 2031; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2028; + this.state = 2032; this.match(HiveSqlParser.KW_BY); - this.state = 2029; + this.state = 2033; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9260,13 +9262,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2035; this.match(HiveSqlParser.KW_LINES); - this.state = 2032; + this.state = 2036; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2033; + this.state = 2037; this.match(HiveSqlParser.KW_BY); - this.state = 2034; + this.state = 2038; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9290,13 +9292,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2036; + this.state = 2040; this.match(HiveSqlParser.KW_NULL); - this.state = 2037; + this.state = 2041; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2038; + this.state = 2042; this.match(HiveSqlParser.KW_AS); - this.state = 2039; + this.state = 2043; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9319,36 +9321,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2082; + this.state = 2086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2045; this.match(HiveSqlParser.KW_STORED); - this.state = 2042; + this.state = 2046; this.match(HiveSqlParser.KW_AS); - this.state = 2043; + this.state = 2047; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2044; + this.state = 2048; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2045; + this.state = 2049; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2046; + this.state = 2050; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2051; + this.state = 2055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2047; + this.state = 2051; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2048; + this.state = 2052; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2049; + this.state = 2053; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2050; + this.state = 2054; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9358,36 +9360,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2053; + this.state = 2057; this.match(HiveSqlParser.KW_STORED); - this.state = 2054; + this.state = 2058; this.match(HiveSqlParser.KW_BY); - this.state = 2055; - localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); this.state = 2059; + localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); + this.state = 2063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2056; + this.state = 2060; this.match(HiveSqlParser.KW_WITH); - this.state = 2057; + this.state = 2061; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2058; + this.state = 2062; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2064; + this.state = 2068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2061; + this.state = 2065; this.match(HiveSqlParser.KW_STORED); - this.state = 2062; + this.state = 2066; this.match(HiveSqlParser.KW_AS); - this.state = 2063; + this.state = 2067; localContext._fileformat = this.id_(); } } @@ -9397,36 +9399,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2066; + this.state = 2070; this.match(HiveSqlParser.KW_STORED); - this.state = 2067; + this.state = 2071; this.match(HiveSqlParser.KW_BY); - this.state = 2068; - localContext._genericSpec = this.id_(); this.state = 2072; + localContext._genericSpec = this.id_(); + this.state = 2076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2069; + this.state = 2073; this.match(HiveSqlParser.KW_WITH); - this.state = 2070; + this.state = 2074; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2071; + this.state = 2075; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2077; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2074; + this.state = 2078; this.match(HiveSqlParser.KW_STORED); - this.state = 2075; + this.state = 2079; this.match(HiveSqlParser.KW_AS); - this.state = 2076; + this.state = 2080; localContext._fileformat = this.id_(); } } @@ -9436,11 +9438,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2079; + this.state = 2083; this.match(HiveSqlParser.KW_STORED); - this.state = 2080; + this.state = 2084; this.match(HiveSqlParser.KW_AS); - this.state = 2081; + this.state = 2085; localContext._genericSpec = this.id_(); } break; @@ -9467,21 +9469,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2088; this.columnNameType(); - this.state = 2089; + this.state = 2093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2085; + this.state = 2089; this.match(HiveSqlParser.COMMA); - this.state = 2086; + this.state = 2090; this.columnNameType(); } } - this.state = 2091; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9508,21 +9510,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2096; this.columnNameTypeOrConstraint(); - this.state = 2097; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2093; + this.state = 2097; this.match(HiveSqlParser.COMMA); - this.state = 2094; + this.state = 2098; this.columnNameTypeOrConstraint(); } } - this.state = 2099; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9549,21 +9551,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2100; + this.state = 2104; this.columnNameColonType(); - this.state = 2105; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2101; + this.state = 2105; this.match(HiveSqlParser.COMMA); - this.state = 2102; + this.state = 2106; this.columnNameColonType(); } } - this.state = 2107; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9590,21 +9592,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2112; this.columnName(); - this.state = 2113; + this.state = 2117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2109; + this.state = 2113; this.match(HiveSqlParser.COMMA); - this.state = 2110; + this.state = 2114; this.columnName(); } } - this.state = 2115; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9628,20 +9630,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); try { - this.state = 2118; + this.state = 2122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2120; this.poolPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2117; + this.state = 2121; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -9663,13 +9665,37 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 258, HiveSqlParser.RULE_columnNamePath); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2124; + this.poolPath(); + } + } + 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 columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 258, HiveSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2120; + this.state = 2126; this.id_(); } } @@ -9689,52 +9715,52 @@ export class HiveSqlParser extends SQLParserBase { } public extColumnName(): ExtColumnNameContext { let localContext = new ExtColumnNameContext(this.context, this.state); - this.enterRule(localContext, 260, HiveSqlParser.RULE_extColumnName); + this.enterRule(localContext, 262, HiveSqlParser.RULE_extColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2122; + this.state = 2128; this.columnName(); - this.state = 2132; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2123; + this.state = 2129; this.match(HiveSqlParser.DOT); - this.state = 2128; + this.state = 2134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2124; + this.state = 2130; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2125; + this.state = 2131; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2126; + this.state = 2132; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2127; + this.state = 2133; this.id_(); } break; } } } - this.state = 2134; + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9756,26 +9782,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrderList(): ColumnNameOrderListContext { let localContext = new ColumnNameOrderListContext(this.context, this.state); - this.enterRule(localContext, 262, HiveSqlParser.RULE_columnNameOrderList); + this.enterRule(localContext, 264, HiveSqlParser.RULE_columnNameOrderList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2135; + this.state = 2141; this.columnNameOrder(); - this.state = 2140; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2136; + this.state = 2142; this.match(HiveSqlParser.COMMA); - this.state = 2137; + this.state = 2143; this.columnNameOrder(); } } - this.state = 2142; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9797,15 +9823,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnParenthesesList(): ColumnParenthesesListContext { let localContext = new ColumnParenthesesListContext(this.context, this.state); - this.enterRule(localContext, 264, HiveSqlParser.RULE_columnParenthesesList); + this.enterRule(localContext, 266, HiveSqlParser.RULE_columnParenthesesList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2149; this.match(HiveSqlParser.LPAREN); - this.state = 2144; + this.state = 2150; this.columnNameList(); - this.state = 2145; + this.state = 2151; this.match(HiveSqlParser.RPAREN); } } @@ -9825,10 +9851,10 @@ export class HiveSqlParser extends SQLParserBase { } public enableValidateSpecification(): EnableValidateSpecificationContext { let localContext = new EnableValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 266, HiveSqlParser.RULE_enableValidateSpecification); + this.enterRule(localContext, 268, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2152; + this.state = 2158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9837,14 +9863,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2147; + this.state = 2153; this.enableSpecification(); - this.state = 2149; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2148; + this.state = 2154; this.validateSpecification(); } } @@ -9855,7 +9881,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2151; + this.state = 2157; this.enforcedSpecification(); } break; @@ -9879,16 +9905,16 @@ export class HiveSqlParser extends SQLParserBase { } public enableSpecification(): EnableSpecificationContext { let localContext = new EnableSpecificationContext(this.context, this.state); - this.enterRule(localContext, 268, HiveSqlParser.RULE_enableSpecification); + this.enterRule(localContext, 270, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2156; + this.state = 2162; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2154; + this.state = 2160; this.enable(); } break; @@ -9896,7 +9922,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2155; + this.state = 2161; this.disable(); } break; @@ -9920,12 +9946,12 @@ export class HiveSqlParser extends SQLParserBase { } public validateSpecification(): ValidateSpecificationContext { let localContext = new ValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, HiveSqlParser.RULE_validateSpecification); + this.enterRule(localContext, 272, HiveSqlParser.RULE_validateSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2164; _la = this.tokenStream.LA(1); if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -9952,24 +9978,24 @@ export class HiveSqlParser extends SQLParserBase { } public enforcedSpecification(): EnforcedSpecificationContext { let localContext = new EnforcedSpecificationContext(this.context, this.state); - this.enterRule(localContext, 272, HiveSqlParser.RULE_enforcedSpecification); + this.enterRule(localContext, 274, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2163; + this.state = 2169; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2166; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2167; this.match(HiveSqlParser.KW_NOT); - this.state = 2162; + this.state = 2168; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -9993,12 +10019,12 @@ export class HiveSqlParser extends SQLParserBase { } public relySpecification(): RelySpecificationContext { let localContext = new RelySpecificationContext(this.context, this.state); - this.enterRule(localContext, 274, HiveSqlParser.RULE_relySpecification); + this.enterRule(localContext, 276, HiveSqlParser.RULE_relySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2171; _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); @@ -10025,31 +10051,31 @@ export class HiveSqlParser extends SQLParserBase { } public createConstraint(): CreateConstraintContext { let localContext = new CreateConstraintContext(this.context, this.state); - this.enterRule(localContext, 276, HiveSqlParser.RULE_createConstraint); + this.enterRule(localContext, 278, HiveSqlParser.RULE_createConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2169; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2167; + this.state = 2173; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2168; + this.state = 2174; localContext._constraintName = this.id_(); } } - this.state = 2171; + this.state = 2177; this.tableLevelConstraint(); - this.state = 2173; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2172; + this.state = 2178; this.constraintOptsCreate(); } } @@ -10072,22 +10098,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterConstraintWithName(): AlterConstraintWithNameContext { let localContext = new AlterConstraintWithNameContext(this.context, this.state); - this.enterRule(localContext, 278, HiveSqlParser.RULE_alterConstraintWithName); + this.enterRule(localContext, 280, HiveSqlParser.RULE_alterConstraintWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2181; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2176; + this.state = 2182; localContext._constraintName = this.id_(); - this.state = 2177; + this.state = 2183; this.tableLevelConstraint(); - this.state = 2179; + this.state = 2185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2178; + this.state = 2184; this.constraintOptsAlter(); } break; @@ -10110,23 +10136,23 @@ export class HiveSqlParser extends SQLParserBase { } public tableLevelConstraint(): TableLevelConstraintContext { let localContext = new TableLevelConstraintContext(this.context, this.state); - this.enterRule(localContext, 280, HiveSqlParser.RULE_tableLevelConstraint); + this.enterRule(localContext, 282, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2183; + this.state = 2189; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2187; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2182; + this.state = 2188; this.checkConstraint(); } break; @@ -10150,13 +10176,13 @@ export class HiveSqlParser extends SQLParserBase { } public pkUkConstraint(): PkUkConstraintContext { let localContext = new PkUkConstraintContext(this.context, this.state); - this.enterRule(localContext, 282, HiveSqlParser.RULE_pkUkConstraint); + this.enterRule(localContext, 284, HiveSqlParser.RULE_pkUkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2191; this.tableConstraintType(); - this.state = 2186; + this.state = 2192; localContext._pkCols = this.columnParenthesesList(); } } @@ -10176,17 +10202,17 @@ export class HiveSqlParser extends SQLParserBase { } public checkConstraint(): CheckConstraintContext { let localContext = new CheckConstraintContext(this.context, this.state); - this.enterRule(localContext, 284, HiveSqlParser.RULE_checkConstraint); + this.enterRule(localContext, 286, HiveSqlParser.RULE_checkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2194; this.match(HiveSqlParser.KW_CHECK); - this.state = 2189; + this.state = 2195; this.match(HiveSqlParser.LPAREN); - this.state = 2190; + this.state = 2196; this.expression(); - this.state = 2191; + this.state = 2197; this.match(HiveSqlParser.RPAREN); } } @@ -10206,41 +10232,41 @@ export class HiveSqlParser extends SQLParserBase { } public createForeignKey(): CreateForeignKeyContext { let localContext = new CreateForeignKeyContext(this.context, this.state); - this.enterRule(localContext, 286, HiveSqlParser.RULE_createForeignKey); + this.enterRule(localContext, 288, HiveSqlParser.RULE_createForeignKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2195; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2193; + this.state = 2199; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2194; + this.state = 2200; localContext._constraintName = this.id_(); } } - this.state = 2197; + this.state = 2203; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2198; + this.state = 2204; this.match(HiveSqlParser.KW_KEY); - this.state = 2199; + this.state = 2205; localContext._fkCols = this.columnParenthesesList(); - this.state = 2200; + this.state = 2206; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2201; + this.state = 2207; localContext._tabName = this.tableName(); - this.state = 2202; + this.state = 2208; localContext._parCols = this.columnParenthesesList(); - this.state = 2204; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2203; + this.state = 2209; this.constraintOptsCreate(); } } @@ -10263,32 +10289,32 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyWithName(): AlterForeignKeyWithNameContext { let localContext = new AlterForeignKeyWithNameContext(this.context, this.state); - this.enterRule(localContext, 288, HiveSqlParser.RULE_alterForeignKeyWithName); + this.enterRule(localContext, 290, HiveSqlParser.RULE_alterForeignKeyWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2212; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2207; + this.state = 2213; localContext._constraintName = this.id_(); - this.state = 2208; + this.state = 2214; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2209; + this.state = 2215; this.match(HiveSqlParser.KW_KEY); - this.state = 2210; + this.state = 2216; localContext._fkCols = this.columnParenthesesList(); - this.state = 2211; + this.state = 2217; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2212; + this.state = 2218; localContext._tabName = this.tableName(); - this.state = 2213; + this.state = 2219; localContext._parCols = this.columnParenthesesList(); - this.state = 2215; + this.state = 2221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 2214; + this.state = 2220; this.constraintOptsAlter(); } break; @@ -10311,19 +10337,258 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueElement(): SkewedValueElementContext { let localContext = new SkewedValueElementContext(this.context, this.state); - this.enterRule(localContext, 290, HiveSqlParser.RULE_skewedValueElement); + this.enterRule(localContext, 292, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2219; + this.state = 2225; 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_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_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_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_FALSE: + 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_LIFECYCLE: + 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_NULL: + 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_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_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.QUESTION: case HiveSqlParser.StringLiteral: case HiveSqlParser.IntegralLiteral: @@ -10333,14 +10598,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2217; + this.state = 2223; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2218; + this.state = 2224; this.skewedColumnValuePairList(); } break; @@ -10364,26 +10629,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePairList(): SkewedColumnValuePairListContext { let localContext = new SkewedColumnValuePairListContext(this.context, this.state); - this.enterRule(localContext, 292, HiveSqlParser.RULE_skewedColumnValuePairList); + this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedColumnValuePairList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2227; this.skewedColumnValuePair(); - this.state = 2226; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2222; + this.state = 2228; this.match(HiveSqlParser.COMMA); - this.state = 2223; + this.state = 2229; this.skewedColumnValuePair(); } } - this.state = 2228; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10405,15 +10670,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePair(): SkewedColumnValuePairContext { let localContext = new SkewedColumnValuePairContext(this.context, this.state); - this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedColumnValuePair); + this.enterRule(localContext, 296, HiveSqlParser.RULE_skewedColumnValuePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2235; this.match(HiveSqlParser.LPAREN); - this.state = 2230; + this.state = 2236; localContext._colValues = this.constantList(); - this.state = 2231; + this.state = 2237; this.match(HiveSqlParser.RPAREN); } } @@ -10433,26 +10698,26 @@ export class HiveSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 296, HiveSqlParser.RULE_constantList); + this.enterRule(localContext, 298, HiveSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2233; + this.state = 2239; this.constant(); - this.state = 2238; + this.state = 2244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2234; + this.state = 2240; this.match(HiveSqlParser.COMMA); - this.state = 2235; + this.state = 2241; this.constant(); } } - this.state = 2240; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10474,12 +10739,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecification(): OrderSpecificationContext { let localContext = new OrderSpecificationContext(this.context, this.state); - this.enterRule(localContext, 298, HiveSqlParser.RULE_orderSpecification); + this.enterRule(localContext, 300, HiveSqlParser.RULE_orderSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2241; + this.state = 2247; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10506,14 +10771,14 @@ export class HiveSqlParser extends SQLParserBase { } public nullOrdering(): NullOrderingContext { let localContext = new NullOrderingContext(this.context, this.state); - this.enterRule(localContext, 300, HiveSqlParser.RULE_nullOrdering); + this.enterRule(localContext, 302, HiveSqlParser.RULE_nullOrdering); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2243; + this.state = 2249; this.match(HiveSqlParser.KW_NULLS); - this.state = 2244; + this.state = 2250; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10540,29 +10805,29 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrder(): ColumnNameOrderContext { let localContext = new ColumnNameOrderContext(this.context, this.state); - this.enterRule(localContext, 302, HiveSqlParser.RULE_columnNameOrder); + this.enterRule(localContext, 304, HiveSqlParser.RULE_columnNameOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2252; this.columnName(); - this.state = 2248; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2247; + this.state = 2253; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2251; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2250; + this.state = 2256; localContext._nullSpec = this.nullOrdering(); } } @@ -10585,26 +10850,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCommentList(): ColumnNameCommentListContext { let localContext = new ColumnNameCommentListContext(this.context, this.state); - this.enterRule(localContext, 304, HiveSqlParser.RULE_columnNameCommentList); + this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2253; + this.state = 2259; this.columnNameComment(); - this.state = 2258; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2254; + this.state = 2260; this.match(HiveSqlParser.COMMA); - this.state = 2255; + this.state = 2261; this.columnNameComment(); } } - this.state = 2260; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10626,21 +10891,21 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameComment(): ColumnNameCommentContext { let localContext = new ColumnNameCommentContext(this.context, this.state); - this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameComment); + this.enterRule(localContext, 308, HiveSqlParser.RULE_columnNameComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2267; localContext._colName = this.columnNameCreate(); - this.state = 2264; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2262; + this.state = 2268; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2263; + this.state = 2269; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10663,43 +10928,43 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrder(): ColumnRefOrderContext { let localContext = new ColumnRefOrderContext(this.context, this.state); - this.enterRule(localContext, 308, HiveSqlParser.RULE_columnRefOrder); + this.enterRule(localContext, 310, HiveSqlParser.RULE_columnRefOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2268; + this.state = 2274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2266; + this.state = 2272; this.columnName(); } break; case 2: { - this.state = 2267; + this.state = 2273; this.expression(); } break; } - this.state = 2271; + this.state = 2277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2270; + this.state = 2276; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2274; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2273; + this.state = 2279; localContext._nullSpec = this.nullOrdering(); } } @@ -10722,23 +10987,23 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameType(): ColumnNameTypeContext { let localContext = new ColumnNameTypeContext(this.context, this.state); - this.enterRule(localContext, 310, HiveSqlParser.RULE_columnNameType); + this.enterRule(localContext, 312, HiveSqlParser.RULE_columnNameType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2276; + this.state = 2282; localContext._colName = this.columnNameCreate(); - this.state = 2277; + this.state = 2283; this.columnType(); - this.state = 2280; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2278; + this.state = 2284; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2279; + this.state = 2285; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10761,22 +11026,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); - this.enterRule(localContext, 312, HiveSqlParser.RULE_columnNameTypeOrConstraint); + this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2284; + this.state = 2290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2282; + this.state = 2288; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2283; + this.state = 2289; this.columnNameTypeConstraint(); } break; @@ -10798,22 +11063,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 314, HiveSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 316, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2288; + this.state = 2294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2286; + this.state = 2292; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2287; + this.state = 2293; this.createConstraint(); } break; @@ -10835,33 +11100,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); - this.enterRule(localContext, 316, HiveSqlParser.RULE_columnNameTypeConstraint); + this.enterRule(localContext, 318, HiveSqlParser.RULE_columnNameTypeConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2296; localContext._colName = this.columnNameCreate(); - this.state = 2291; + this.state = 2297; localContext._colType = this.columnType(); - this.state = 2293; + this.state = 2299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2292; + this.state = 2298; this.columnConstraint(); } } - this.state = 2297; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2295; + this.state = 2301; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2296; + this.state = 2302; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10884,22 +11149,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 318, HiveSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 320, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2301; + this.state = 2307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2305; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2300; + this.state = 2306; this.colConstraint(); } break; @@ -10921,39 +11186,39 @@ export class HiveSqlParser extends SQLParserBase { } public foreignKeyConstraint(): ForeignKeyConstraintContext { let localContext = new ForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 320, HiveSqlParser.RULE_foreignKeyConstraint); + this.enterRule(localContext, 322, HiveSqlParser.RULE_foreignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2305; + this.state = 2311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2303; + this.state = 2309; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2304; + this.state = 2310; localContext._constraintName = this.id_(); } } - this.state = 2307; + this.state = 2313; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2308; + this.state = 2314; localContext._tabName = this.tableName(); - this.state = 2309; + this.state = 2315; this.match(HiveSqlParser.LPAREN); - this.state = 2310; + this.state = 2316; localContext._colName = this.columnName(); - this.state = 2311; + this.state = 2317; this.match(HiveSqlParser.RPAREN); - this.state = 2313; + this.state = 2319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2312; + this.state = 2318; this.constraintOptsCreate(); } } @@ -10976,31 +11241,31 @@ export class HiveSqlParser extends SQLParserBase { } public colConstraint(): ColConstraintContext { let localContext = new ColConstraintContext(this.context, this.state); - this.enterRule(localContext, 322, HiveSqlParser.RULE_colConstraint); + this.enterRule(localContext, 324, HiveSqlParser.RULE_colConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2317; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2315; + this.state = 2321; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2316; + this.state = 2322; localContext._constraintName = this.id_(); } } - this.state = 2319; + this.state = 2325; this.columnConstraintType(); - this.state = 2321; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2320; + this.state = 2326; this.constraintOptsCreate(); } } @@ -11023,22 +11288,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterColumnConstraint(): AlterColumnConstraintContext { let localContext = new AlterColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 324, HiveSqlParser.RULE_alterColumnConstraint); + this.enterRule(localContext, 326, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2325; + this.state = 2331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2323; + this.state = 2329; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2324; + this.state = 2330; this.alterColConstraint(); } break; @@ -11060,39 +11325,39 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext { let localContext = new AlterForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 326, HiveSqlParser.RULE_alterForeignKeyConstraint); + this.enterRule(localContext, 328, HiveSqlParser.RULE_alterForeignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2329; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2327; + this.state = 2333; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2328; + this.state = 2334; localContext._constraintName = this.id_(); } } - this.state = 2331; + this.state = 2337; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2332; + this.state = 2338; localContext._tabName = this.tableName(); - this.state = 2333; + this.state = 2339; this.match(HiveSqlParser.LPAREN); - this.state = 2334; + this.state = 2340; localContext._colName = this.columnName(); - this.state = 2335; + this.state = 2341; this.match(HiveSqlParser.RPAREN); - this.state = 2337; + this.state = 2343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2336; + this.state = 2342; this.constraintOptsAlter(); } break; @@ -11115,31 +11380,31 @@ export class HiveSqlParser extends SQLParserBase { } public alterColConstraint(): AlterColConstraintContext { let localContext = new AlterColConstraintContext(this.context, this.state); - this.enterRule(localContext, 328, HiveSqlParser.RULE_alterColConstraint); + this.enterRule(localContext, 330, HiveSqlParser.RULE_alterColConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2341; + this.state = 2347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2339; + this.state = 2345; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2340; + this.state = 2346; localContext._constraintName = this.id_(); } } - this.state = 2343; + this.state = 2349; this.columnConstraintType(); - this.state = 2345; + this.state = 2351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2344; + this.state = 2350; this.constraintOptsAlter(); } break; @@ -11162,33 +11427,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraintType(): ColumnConstraintTypeContext { let localContext = new ColumnConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 330, HiveSqlParser.RULE_columnConstraintType); + this.enterRule(localContext, 332, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2353; + this.state = 2359; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2347; + this.state = 2353; this.match(HiveSqlParser.KW_NOT); - this.state = 2348; + this.state = 2354; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2349; + this.state = 2355; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2350; + this.state = 2356; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2351; + this.state = 2357; this.checkConstraint(); } break; @@ -11196,7 +11461,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2352; + this.state = 2358; this.tableConstraintType(); } break; @@ -11220,29 +11485,29 @@ export class HiveSqlParser extends SQLParserBase { } public defaultVal(): DefaultValContext { let localContext = new DefaultValContext(this.context, this.state); - this.enterRule(localContext, 332, HiveSqlParser.RULE_defaultVal); + this.enterRule(localContext, 334, HiveSqlParser.RULE_defaultVal); try { - this.state = 2358; + this.state = 2364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2355; + this.state = 2361; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2356; + this.state = 2362; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2357; + this.state = 2363; this.castExpression(); } break; @@ -11264,24 +11529,24 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraintType(): TableConstraintTypeContext { let localContext = new TableConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 334, HiveSqlParser.RULE_tableConstraintType); + this.enterRule(localContext, 336, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2363; + this.state = 2369; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2360; + this.state = 2366; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2361; + this.state = 2367; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2362; + this.state = 2368; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11305,19 +11570,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsCreate(): ConstraintOptsCreateContext { let localContext = new ConstraintOptsCreateContext(this.context, this.state); - this.enterRule(localContext, 336, HiveSqlParser.RULE_constraintOptsCreate); + this.enterRule(localContext, 338, HiveSqlParser.RULE_constraintOptsCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2365; + this.state = 2371; this.enableValidateSpecification(); - this.state = 2367; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2366; + this.state = 2372; this.relySpecification(); } } @@ -11340,19 +11605,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsAlter(): ConstraintOptsAlterContext { let localContext = new ConstraintOptsAlterContext(this.context, this.state); - this.enterRule(localContext, 338, HiveSqlParser.RULE_constraintOptsAlter); + this.enterRule(localContext, 340, HiveSqlParser.RULE_constraintOptsAlter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2375; this.enableValidateSpecification(); - this.state = 2371; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2370; + this.state = 2376; this.relySpecification(); } } @@ -11375,25 +11640,25 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonType(): ColumnNameColonTypeContext { let localContext = new ColumnNameColonTypeContext(this.context, this.state); - this.enterRule(localContext, 340, HiveSqlParser.RULE_columnNameColonType); + this.enterRule(localContext, 342, HiveSqlParser.RULE_columnNameColonType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2373; + this.state = 2379; localContext._colName = this.columnNameCreate(); - this.state = 2374; + this.state = 2380; this.match(HiveSqlParser.COLON); - this.state = 2375; + this.state = 2381; this.columnType(); - this.state = 2378; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2376; + this.state = 2382; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2377; + this.state = 2383; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11416,11 +11681,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 342, HiveSqlParser.RULE_columnType); + this.enterRule(localContext, 344, HiveSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2380; + this.state = 2386; this.type_(); } } @@ -11440,26 +11705,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnTypeList(): ColumnTypeListContext { let localContext = new ColumnTypeListContext(this.context, this.state); - this.enterRule(localContext, 344, HiveSqlParser.RULE_columnTypeList); + this.enterRule(localContext, 346, HiveSqlParser.RULE_columnTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2382; + this.state = 2388; this.columnType(); - this.state = 2387; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2383; + this.state = 2389; this.match(HiveSqlParser.COMMA); - this.state = 2384; + this.state = 2390; this.columnType(); } } - this.state = 2389; + this.state = 2395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11481,9 +11746,9 @@ export class HiveSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 346, HiveSqlParser.RULE_type); + this.enterRule(localContext, 348, HiveSqlParser.RULE_type); try { - this.state = 2395; + this.state = 2401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11508,35 +11773,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2390; + this.state = 2396; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2391; + this.state = 2397; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2392; + this.state = 2398; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2393; + this.state = 2399; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2394; + this.state = 2400; this.unionType(); } break; @@ -11560,79 +11825,79 @@ export class HiveSqlParser extends SQLParserBase { } public primitiveType(): PrimitiveTypeContext { let localContext = new PrimitiveTypeContext(this.context, this.state); - this.enterRule(localContext, 348, HiveSqlParser.RULE_primitiveType); + this.enterRule(localContext, 350, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2434; + this.state = 2440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2403; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2398; + this.state = 2404; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2399; + this.state = 2405; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2400; + this.state = 2406; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2401; + this.state = 2407; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2402; + this.state = 2408; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2403; + this.state = 2409; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2404; + this.state = 2410; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2405; + this.state = 2411; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2407; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2406; + this.state = 2412; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11642,87 +11907,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2409; + this.state = 2415; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2410; + this.state = 2416; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2411; + this.state = 2417; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2412; + this.state = 2418; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2413; + this.state = 2419; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2414; + this.state = 2420; this.match(HiveSqlParser.KW_WITH); - this.state = 2415; + this.state = 2421; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2416; + this.state = 2422; this.match(HiveSqlParser.KW_TIME); - this.state = 2417; + this.state = 2423; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2418; + this.state = 2424; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2419; + this.state = 2425; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2420; + this.state = 2426; this.decimal(); - this.state = 2428; + this.state = 2434; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2421; + this.state = 2427; this.match(HiveSqlParser.LPAREN); - this.state = 2422; + this.state = 2428; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2425; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2423; + this.state = 2429; this.match(HiveSqlParser.COMMA); - this.state = 2424; + this.state = 2430; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2427; + this.state = 2433; this.match(HiveSqlParser.RPAREN); } break; @@ -11732,7 +11997,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2430; + this.state = 2436; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -11741,11 +12006,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2431; + this.state = 2437; this.match(HiveSqlParser.LPAREN); - this.state = 2432; + this.state = 2438; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2433; + this.state = 2439; this.match(HiveSqlParser.RPAREN); } break; @@ -11767,17 +12032,17 @@ export class HiveSqlParser extends SQLParserBase { } public listType(): ListTypeContext { let localContext = new ListTypeContext(this.context, this.state); - this.enterRule(localContext, 350, HiveSqlParser.RULE_listType); + this.enterRule(localContext, 352, HiveSqlParser.RULE_listType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2436; + this.state = 2442; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2437; + this.state = 2443; this.match(HiveSqlParser.LESSTHAN); - this.state = 2438; + this.state = 2444; this.type_(); - this.state = 2439; + this.state = 2445; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11797,17 +12062,17 @@ export class HiveSqlParser extends SQLParserBase { } public structType(): StructTypeContext { let localContext = new StructTypeContext(this.context, this.state); - this.enterRule(localContext, 352, HiveSqlParser.RULE_structType); + this.enterRule(localContext, 354, HiveSqlParser.RULE_structType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2441; + this.state = 2447; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2442; + this.state = 2448; this.match(HiveSqlParser.LESSTHAN); - this.state = 2443; + this.state = 2449; this.columnNameColonTypeList(); - this.state = 2444; + this.state = 2450; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11827,21 +12092,21 @@ export class HiveSqlParser extends SQLParserBase { } public mapType(): MapTypeContext { let localContext = new MapTypeContext(this.context, this.state); - this.enterRule(localContext, 354, HiveSqlParser.RULE_mapType); + this.enterRule(localContext, 356, HiveSqlParser.RULE_mapType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2446; + this.state = 2452; this.match(HiveSqlParser.KW_MAP); - this.state = 2447; + this.state = 2453; this.match(HiveSqlParser.LESSTHAN); - this.state = 2448; + this.state = 2454; localContext._left = this.primitiveType(); - this.state = 2449; + this.state = 2455; this.match(HiveSqlParser.COMMA); - this.state = 2450; + this.state = 2456; localContext._right = this.type_(); - this.state = 2451; + this.state = 2457; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11861,17 +12126,17 @@ export class HiveSqlParser extends SQLParserBase { } public unionType(): UnionTypeContext { let localContext = new UnionTypeContext(this.context, this.state); - this.enterRule(localContext, 356, HiveSqlParser.RULE_unionType); + this.enterRule(localContext, 358, HiveSqlParser.RULE_unionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2453; + this.state = 2459; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2454; + this.state = 2460; this.match(HiveSqlParser.LESSTHAN); - this.state = 2455; + this.state = 2461; this.columnTypeList(); - this.state = 2456; + this.state = 2462; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11891,12 +12156,12 @@ export class HiveSqlParser extends SQLParserBase { } public setOperator(): SetOperatorContext { let localContext = new SetOperatorContext(this.context, this.state); - this.enterRule(localContext, 358, HiveSqlParser.RULE_setOperator); + this.enterRule(localContext, 360, HiveSqlParser.RULE_setOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2464; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -11905,12 +12170,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2460; + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2459; + this.state = 2465; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -11940,22 +12205,22 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpression(): QueryStatementExpressionContext { let localContext = new QueryStatementExpressionContext(this.context, this.state); - this.enterRule(localContext, 360, HiveSqlParser.RULE_queryStatementExpression); + this.enterRule(localContext, 362, HiveSqlParser.RULE_queryStatementExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2463; + this.state = 2469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2462; + this.state = 2468; localContext._w = this.withClause(); } } - this.state = 2465; + this.state = 2471; this.queryStatementExpressionBody(); } } @@ -11975,15 +12240,15 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpressionBody(): QueryStatementExpressionBodyContext { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); - this.enterRule(localContext, 362, HiveSqlParser.RULE_queryStatementExpressionBody); + this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2469; + this.state = 2475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2467; + this.state = 2473; this.fromStatement(); } break; @@ -11995,7 +12260,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2468; + this.state = 2474; this.regularBody(); } break; @@ -12019,28 +12284,28 @@ export class HiveSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 364, HiveSqlParser.RULE_withClause); + this.enterRule(localContext, 366, HiveSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2477; this.match(HiveSqlParser.KW_WITH); - this.state = 2472; + this.state = 2478; this.cteStatement(); - this.state = 2477; + this.state = 2483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2473; + this.state = 2479; this.match(HiveSqlParser.COMMA); - this.state = 2474; + this.state = 2480; this.cteStatement(); } } - this.state = 2479; + this.state = 2485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12062,34 +12327,34 @@ export class HiveSqlParser extends SQLParserBase { } public cteStatement(): CteStatementContext { let localContext = new CteStatementContext(this.context, this.state); - this.enterRule(localContext, 366, HiveSqlParser.RULE_cteStatement); + this.enterRule(localContext, 368, HiveSqlParser.RULE_cteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2480; + this.state = 2486; this.id_(); - this.state = 2485; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2481; + this.state = 2487; this.match(HiveSqlParser.LPAREN); - this.state = 2482; + this.state = 2488; localContext._colAliases = this.columnNameList(); - this.state = 2483; + this.state = 2489; this.match(HiveSqlParser.RPAREN); } } - this.state = 2487; + this.state = 2493; this.match(HiveSqlParser.KW_AS); - this.state = 2488; + this.state = 2494; this.match(HiveSqlParser.LPAREN); - this.state = 2489; + this.state = 2495; this.queryStatementExpression(); - this.state = 2490; + this.state = 2496; this.match(HiveSqlParser.RPAREN); } } @@ -12109,26 +12374,26 @@ export class HiveSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 368, HiveSqlParser.RULE_fromStatement); + this.enterRule(localContext, 370, HiveSqlParser.RULE_fromStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2492; - this.singleFromStatement(); this.state = 2498; + this.singleFromStatement(); + this.state = 2504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2493; + this.state = 2499; localContext._u = this.setOperator(); - this.state = 2494; + this.state = 2500; localContext._r = this.singleFromStatement(); } } - this.state = 2500; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12150,128 +12415,128 @@ export class HiveSqlParser extends SQLParserBase { } public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); - this.enterRule(localContext, 370, HiveSqlParser.RULE_singleFromStatement); + this.enterRule(localContext, 372, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2572; + this.state = 2578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2501; + this.state = 2507; this.fromClause(); - this.state = 2502; + this.state = 2508; this.insertClause(); - this.state = 2503; + this.state = 2509; this.selectClause(); - this.state = 2505; + this.state = 2511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2504; + this.state = 2510; this.lateralView(); } } - this.state = 2508; + this.state = 2514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2507; + this.state = 2513; this.whereClause(); } } - this.state = 2511; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2510; + this.state = 2516; this.groupByClause(); } } - this.state = 2514; + this.state = 2520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2513; + this.state = 2519; this.havingClause(); } } - this.state = 2517; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2516; + this.state = 2522; this.window_clause(); } } - this.state = 2520; + this.state = 2526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2519; + this.state = 2525; this.qualifyClause(); } } - this.state = 2523; + this.state = 2529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2522; + this.state = 2528; this.orderByClause(); } } - this.state = 2526; + this.state = 2532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2525; + this.state = 2531; this.clusterByClause(); } } - this.state = 2529; + this.state = 2535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2528; + this.state = 2534; this.distributeByClause(); } } - this.state = 2532; + this.state = 2538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2531; + this.state = 2537; this.sortByClause(); } } - this.state = 2535; + this.state = 2541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2534; + this.state = 2540; this.limitClause(); } } @@ -12282,116 +12547,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2537; + this.state = 2543; this.fromClause(); - this.state = 2538; + this.state = 2544; this.selectClause(); - this.state = 2540; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2539; + this.state = 2545; this.lateralView(); } } - this.state = 2543; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2542; + this.state = 2548; this.whereClause(); } } - this.state = 2546; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2545; + this.state = 2551; this.groupByClause(); } } - this.state = 2549; + this.state = 2555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2548; + this.state = 2554; this.havingClause(); } } - this.state = 2552; + this.state = 2558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2551; + this.state = 2557; this.window_clause(); } } - this.state = 2555; + this.state = 2561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2554; + this.state = 2560; this.qualifyClause(); } } - this.state = 2558; + this.state = 2564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2557; + this.state = 2563; this.orderByClause(); } } - this.state = 2561; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2560; + this.state = 2566; this.clusterByClause(); } } - this.state = 2564; + this.state = 2570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2563; + this.state = 2569; this.distributeByClause(); } } - this.state = 2567; + this.state = 2573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2566; + this.state = 2572; this.sortByClause(); } } - this.state = 2570; + this.state = 2576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2569; + this.state = 2575; this.limitClause(); } } @@ -12416,18 +12681,18 @@ export class HiveSqlParser extends SQLParserBase { } public regularBody(): RegularBodyContext { let localContext = new RegularBodyContext(this.context, this.state); - this.enterRule(localContext, 372, HiveSqlParser.RULE_regularBody); + this.enterRule(localContext, 374, HiveSqlParser.RULE_regularBody); try { - this.state = 2578; + this.state = 2584; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2574; + this.state = 2580; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2575; + this.state = 2581; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12439,7 +12704,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2577; + this.state = 2583; this.selectStatement(); } break; @@ -12463,10 +12728,10 @@ export class HiveSqlParser extends SQLParserBase { } public atomSelectStatement(): AtomSelectStatementContext { let localContext = new AtomSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 374, HiveSqlParser.RULE_atomSelectStatement); + this.enterRule(localContext, 376, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2604; + this.state = 2610; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12474,64 +12739,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2586; localContext._s = this.selectClause(); - this.state = 2582; + this.state = 2588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2581; + this.state = 2587; localContext._f = this.fromClause(); } break; } - this.state = 2585; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2584; + this.state = 2590; localContext._w = this.whereClause(); } } - this.state = 2588; + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2587; + this.state = 2593; localContext._g = this.groupByClause(); } } - this.state = 2591; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2590; + this.state = 2596; localContext._h = this.havingClause(); } } - this.state = 2594; + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2593; + this.state = 2599; localContext._win = this.window_clause(); } } - this.state = 2597; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2596; + this.state = 2602; localContext._q = this.qualifyClause(); } } @@ -12541,18 +12806,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2599; + this.state = 2605; this.match(HiveSqlParser.LPAREN); - this.state = 2600; + this.state = 2606; this.selectStatement(); - this.state = 2601; + this.state = 2607; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2603; + this.state = 2609; this.valuesClause(); } break; @@ -12576,69 +12841,69 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 376, HiveSqlParser.RULE_selectStatement); + this.enterRule(localContext, 378, HiveSqlParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2612; localContext._a = this.atomSelectStatement(); - this.state = 2608; + this.state = 2614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2607; + this.state = 2613; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2611; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2610; + this.state = 2616; localContext._o = this.orderByClause(); } } - this.state = 2614; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2613; + this.state = 2619; localContext._c = this.clusterByClause(); } } - this.state = 2617; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2616; + this.state = 2622; localContext._d = this.distributeByClause(); } } - this.state = 2620; + this.state = 2626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2619; + this.state = 2625; localContext._sort = this.sortByClause(); } } - this.state = 2623; + this.state = 2629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2622; + this.state = 2628; localContext._l = this.limitClause(); } } @@ -12661,24 +12926,24 @@ export class HiveSqlParser extends SQLParserBase { } public setOpSelectStatement(): SetOpSelectStatementContext { let localContext = new SetOpSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 378, HiveSqlParser.RULE_setOpSelectStatement); + this.enterRule(localContext, 380, HiveSqlParser.RULE_setOpSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2628; + this.state = 2634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2625; + this.state = 2631; localContext._u = this.setOperator(); - this.state = 2626; + this.state = 2632; localContext._b = this.atomSelectStatement(); } } - this.state = 2630; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -12700,22 +12965,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatementWithCTE(): SelectStatementWithCTEContext { let localContext = new SelectStatementWithCTEContext(this.context, this.state); - this.enterRule(localContext, 380, HiveSqlParser.RULE_selectStatementWithCTE); + this.enterRule(localContext, 382, HiveSqlParser.RULE_selectStatementWithCTE); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2633; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2632; + this.state = 2638; localContext._w = this.withClause(); } } - this.state = 2635; + this.state = 2641; this.selectStatement(); } } @@ -12735,28 +13000,28 @@ export class HiveSqlParser extends SQLParserBase { } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 382, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 384, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2637; + this.state = 2643; this.match(HiveSqlParser.KW_INSERT); - this.state = 2654; + this.state = 2660; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2638; + this.state = 2644; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2639; + this.state = 2645; this.destination(); - this.state = 2641; + this.state = 2647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2640; + this.state = 2646; this.ifNotExists(); } } @@ -12765,30 +13030,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2643; + this.state = 2649; this.match(HiveSqlParser.KW_INTO); - this.state = 2645; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2644; + this.state = 2650; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2647; + this.state = 2653; this.tableOrPartition(); - this.state = 2652; + this.state = 2658; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2648; + this.state = 2654; this.match(HiveSqlParser.LPAREN); - this.state = 2649; + this.state = 2655; localContext._targetCols = this.columnNameList(); - this.state = 2650; + this.state = 2656; this.match(HiveSqlParser.RPAREN); } break; @@ -12816,46 +13081,46 @@ export class HiveSqlParser extends SQLParserBase { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 384, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 386, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2669; + this.state = 2675; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2657; + this.state = 2663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2656; + this.state = 2662; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2659; + this.state = 2665; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2660; + this.state = 2666; this.match(HiveSqlParser.StringLiteral); - this.state = 2662; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2661; + this.state = 2667; this.tableRowFormat(); } } - this.state = 2665; + this.state = 2671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2664; + this.state = 2670; this.tableFileFormat(); } } @@ -12865,9 +13130,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2667; + this.state = 2673; this.match(HiveSqlParser.KW_TABLE); - this.state = 2668; + this.state = 2674; this.tableOrPartition(); } break; @@ -12891,40 +13156,40 @@ export class HiveSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 386, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 388, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2671; + this.state = 2677; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2680; + this.state = 2686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2674; + this.state = 2680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2672; + this.state = 2678; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2673; + this.state = 2679; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2676; + this.state = 2682; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2677; + this.state = 2683; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2678; + this.state = 2684; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2679; + this.state = 2685; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -12947,15 +13212,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 388, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 390, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2682; + this.state = 2688; this.columnName(); - this.state = 2683; + this.state = 2689; this.match(HiveSqlParser.EQUAL); - this.state = 2684; + this.state = 2690; this.precedencePlusExpressionOrDefault(); } } @@ -12975,22 +13240,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 390, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 392, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2688; + this.state = 2694; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2692; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2687; + this.state = 2693; this.precedencePlusExpression(); } break; @@ -13012,28 +13277,28 @@ export class HiveSqlParser extends SQLParserBase { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 392, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 394, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2690; + this.state = 2696; this.match(HiveSqlParser.KW_SET); - this.state = 2691; + this.state = 2697; this.columnAssignmentClause(); - this.state = 2696; + this.state = 2702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2692; + this.state = 2698; this.match(HiveSqlParser.COMMA); - this.state = 2693; + this.state = 2699; this.columnAssignmentClause(); } } - this.state = 2698; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13055,39 +13320,39 @@ export class HiveSqlParser extends SQLParserBase { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 394, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 396, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2722; + this.state = 2728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2705; this.match(HiveSqlParser.KW_START); - this.state = 2700; + this.state = 2706; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2709; + this.state = 2715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2701; + this.state = 2707; this.transactionMode(); - this.state = 2706; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2702; + this.state = 2708; this.match(HiveSqlParser.COMMA); - this.state = 2703; + this.state = 2709; this.transactionMode(); } } - this.state = 2708; + this.state = 2714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13099,14 +13364,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2711; + this.state = 2717; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2713; + this.state = 2719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2712; + this.state = 2718; this.match(HiveSqlParser.KW_WORK); } } @@ -13116,14 +13381,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2721; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2717; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2716; + this.state = 2722; this.match(HiveSqlParser.KW_WORK); } } @@ -13133,11 +13398,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2719; + this.state = 2725; this.match(HiveSqlParser.KW_SET); - this.state = 2720; + this.state = 2726; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2721; + this.state = 2727; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13168,29 +13433,29 @@ export class HiveSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 396, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 398, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2729; + this.state = 2735; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2730; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2725; + this.state = 2731; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2726; + this.state = 2732; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2733; this.match(HiveSqlParser.KW_READ); - this.state = 2728; + this.state = 2734; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13221,46 +13486,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 398, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 400, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2735; + this.state = 2741; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2733; + this.state = 2739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2731; + this.state = 2737; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2732; + this.state = 2738; this.whenMatchedThenClause(); } break; } } } - this.state = 2737; + this.state = 2743; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } - this.state = 2739; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2738; + this.state = 2744; this.whenNotMatchedClause(); } } @@ -13283,46 +13548,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 400, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 402, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2747; this.match(HiveSqlParser.KW_WHEN); - this.state = 2742; + this.state = 2748; this.match(HiveSqlParser.KW_NOT); - this.state = 2743; + this.state = 2749; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2746; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2744; + this.state = 2750; this.match(HiveSqlParser.KW_AND); - this.state = 2745; + this.state = 2751; this.expression(); } } - this.state = 2748; + this.state = 2754; this.match(HiveSqlParser.KW_THEN); - this.state = 2749; + this.state = 2755; this.match(HiveSqlParser.KW_INSERT); - this.state = 2751; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2750; + this.state = 2756; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2753; + this.state = 2759; this.match(HiveSqlParser.KW_VALUES); - this.state = 2754; + this.state = 2760; this.expressionsInParenthesis(); } } @@ -13342,34 +13607,34 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 402, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 404, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2756; + this.state = 2762; this.match(HiveSqlParser.KW_WHEN); - this.state = 2757; + this.state = 2763; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2758; + this.state = 2764; this.match(HiveSqlParser.KW_AND); - this.state = 2759; + this.state = 2765; this.expression(); - this.state = 2760; + this.state = 2766; this.match(HiveSqlParser.KW_THEN); - this.state = 2764; + this.state = 2770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2761; + this.state = 2767; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2762; + this.state = 2768; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2763; + this.state = 2769; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13394,30 +13659,30 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedThenClause(): WhenMatchedThenClauseContext { let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 404, HiveSqlParser.RULE_whenMatchedThenClause); + this.enterRule(localContext, 406, HiveSqlParser.RULE_whenMatchedThenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2766; + this.state = 2772; this.match(HiveSqlParser.KW_WHEN); - this.state = 2767; + this.state = 2773; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2768; + this.state = 2774; this.match(HiveSqlParser.KW_THEN); - this.state = 2772; + this.state = 2778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2769; + this.state = 2775; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2770; + this.state = 2776; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2771; + this.state = 2777; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13442,13 +13707,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionPool(): CompactionPoolContext { let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 406, HiveSqlParser.RULE_compactionPool); + this.enterRule(localContext, 408, HiveSqlParser.RULE_compactionPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 2774; + this.state = 2780; this.match(HiveSqlParser.KW_POOL); - this.state = 2775; + this.state = 2781; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -13468,13 +13733,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionType(): CompactionTypeContext { let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 408, HiveSqlParser.RULE_compactionType); + this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2777; + this.state = 2783; this.match(HiveSqlParser.KW_TYPE); - this.state = 2778; + this.state = 2784; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -13494,13 +13759,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionStatus(): CompactionStatusContext { let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionStatus); + this.enterRule(localContext, 412, HiveSqlParser.RULE_compactionStatus); try { this.enterOuterAlt(localContext, 1); { - this.state = 2780; + this.state = 2786; this.match(HiveSqlParser.KW_STATUS); - this.state = 2781; + this.state = 2787; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -13520,74 +13785,74 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 412, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 414, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2783; + this.state = 2789; this.match(HiveSqlParser.KW_ALTER); - this.state = 2814; + this.state = 2820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2784; + this.state = 2790; this.match(HiveSqlParser.KW_TABLE); - this.state = 2785; + this.state = 2791; this.tableName(); - this.state = 2786; + this.state = 2792; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2788; + this.state = 2794; this.match(HiveSqlParser.KW_VIEW); - this.state = 2789; + this.state = 2795; this.viewName(); - this.state = 2791; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2790; + this.state = 2796; this.match(HiveSqlParser.KW_AS); } } - this.state = 2793; + this.state = 2799; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2795; + this.state = 2801; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2796; + this.state = 2802; this.match(HiveSqlParser.KW_VIEW); - this.state = 2797; + this.state = 2803; localContext._tableNameTree = this.viewName(); - this.state = 2801; + this.state = 2807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2798; + this.state = 2804; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2799; + this.state = 2805; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2800; + this.state = 2806; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13599,31 +13864,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2803; + this.state = 2809; this.db_schema(); - this.state = 2804; + this.state = 2810; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2806; + this.state = 2812; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2807; + this.state = 2813; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2808; + this.state = 2814; this.match(HiveSqlParser.KW_INDEX); - this.state = 2809; + this.state = 2815; this.id_(); - this.state = 2810; + this.state = 2816; this.match(HiveSqlParser.KW_ON); - this.state = 2811; + this.state = 2817; this.tableOrPartition(); - this.state = 2812; + this.state = 2818; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13648,75 +13913,75 @@ export class HiveSqlParser extends SQLParserBase { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 416, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2905; + this.state = 2911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2816; + this.state = 2822; this.match(HiveSqlParser.KW_RENAME); - this.state = 2817; + this.state = 2823; this.match(HiveSqlParser.KW_TO); - this.state = 2818; + this.state = 2824; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2819; + this.state = 2825; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2820; + this.state = 2826; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2821; + this.state = 2827; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2822; + this.state = 2828; this.match(HiveSqlParser.KW_ADD); - this.state = 2824; + this.state = 2830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2823; + this.state = 2829; this.ifNotExists(); } } - this.state = 2830; + this.state = 2836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2826; + this.state = 2832; this.partitionSpec(); - this.state = 2828; + this.state = 2834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2827; + this.state = 2833; this.locationPath(); } } } } - this.state = 2832; + this.state = 2838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -13725,19 +13990,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2834; + this.state = 2840; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2838; + this.state = 2844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2835; + this.state = 2841; this.partitionSpec(); } } - this.state = 2840; + this.state = 2846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13746,19 +14011,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2841; + this.state = 2847; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2845; + this.state = 2851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2842; + this.state = 2848; this.partitionSpec(); } } - this.state = 2847; + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13767,19 +14032,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2848; + this.state = 2854; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2852; + this.state = 2858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2849; + this.state = 2855; this.partitionSpec(); } } - this.state = 2854; + this.state = 2860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13788,59 +14053,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2855; + this.state = 2861; this.match(HiveSqlParser.KW_SET); - this.state = 2856; + this.state = 2862; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2857; + this.state = 2863; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2858; + this.state = 2864; this.match(HiveSqlParser.KW_UNSET); - this.state = 2859; + this.state = 2865; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2861; + this.state = 2867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2860; + this.state = 2866; this.ifExists(); } } - this.state = 2863; + this.state = 2869; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2864; + this.state = 2870; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2865; + this.state = 2871; this.match(HiveSqlParser.KW_NOT); - this.state = 2868; + this.state = 2874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2866; + this.state = 2872; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2867; + this.state = 2873; this.storedAsDirs(); } break; @@ -13852,61 +14117,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2870; + this.state = 2876; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2871; + this.state = 2877; this.partitionSpec(); - this.state = 2872; + this.state = 2878; this.match(HiveSqlParser.KW_WITH); - this.state = 2873; + this.state = 2879; this.match(HiveSqlParser.KW_TABLE); - this.state = 2874; + this.state = 2880; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2876; + this.state = 2882; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2877; + this.state = 2883; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2878; + this.state = 2884; this.match(HiveSqlParser.LPAREN); - this.state = 2879; + this.state = 2885; this.columnNameType(); - this.state = 2880; + this.state = 2886; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2882; + this.state = 2888; this.match(HiveSqlParser.KW_DROP); - this.state = 2883; + this.state = 2889; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2884; + this.state = 2890; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2885; + this.state = 2891; this.match(HiveSqlParser.KW_ADD); - this.state = 2888; + this.state = 2894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 2886; + this.state = 2892; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2887; + this.state = 2893; this.alterConstraintWithName(); } break; @@ -13916,52 +14181,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2891; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2890; + this.state = 2896; this.partitionSpec(); } } - this.state = 2893; + this.state = 2899; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2894; + this.state = 2900; this.match(HiveSqlParser.KW_SET); - this.state = 2895; + this.state = 2901; this.match(HiveSqlParser.KW_OWNER); - this.state = 2896; + this.state = 2902; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2897; + this.state = 2903; this.match(HiveSqlParser.KW_SET); - this.state = 2898; + this.state = 2904; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2899; + this.state = 2905; this.match(HiveSqlParser.KW_SPEC); - this.state = 2900; + this.state = 2906; this.match(HiveSqlParser.LPAREN); - this.state = 2901; + this.state = 2907; localContext._spec = this.partitionTransformSpec(); - this.state = 2902; + this.state = 2908; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2904; + this.state = 2910; this.alterStatementSuffixExecute(); } break; @@ -13983,65 +14248,65 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3039; + this.state = 3045; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2907; + this.state = 2913; this.match(HiveSqlParser.KW_SET); - this.state = 2908; + this.state = 2914; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2909; + this.state = 2915; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2910; + this.state = 2916; this.match(HiveSqlParser.KW_SET); - this.state = 2911; + this.state = 2917; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2912; + this.state = 2918; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2913; + this.state = 2919; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2914; + this.state = 2920; this.match(HiveSqlParser.KW_SET); - this.state = 2924; + this.state = 2930; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2915; + this.state = 2921; this.match(HiveSqlParser.KW_SERDE); - this.state = 2916; + this.state = 2922; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2920; + this.state = 2926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2917; + this.state = 2923; this.match(HiveSqlParser.KW_WITH); - this.state = 2918; + this.state = 2924; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2919; + this.state = 2925; this.tableProperties(); } break; @@ -14050,9 +14315,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2922; + this.state = 2928; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2923; + this.state = 2929; this.tableProperties(); } break; @@ -14064,75 +14329,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2926; + this.state = 2932; this.match(HiveSqlParser.KW_UNSET); - this.state = 2927; + this.state = 2933; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2928; + this.state = 2934; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2929; + this.state = 2935; this.match(HiveSqlParser.KW_RENAME); - this.state = 2930; + this.state = 2936; this.match(HiveSqlParser.KW_TO); - this.state = 2931; + this.state = 2937; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2932; + this.state = 2938; this.match(HiveSqlParser.KW_INTO); - this.state = 2933; + this.state = 2939; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2934; + this.state = 2940; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2935; + this.state = 2941; this.match(HiveSqlParser.KW_SET); - this.state = 2936; + this.state = 2942; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2937; + this.state = 2943; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2938; + this.state = 2944; this.match(HiveSqlParser.LPAREN); - this.state = 2939; + this.state = 2945; this.skewedLocationMap(); - this.state = 2944; + this.state = 2950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2940; + this.state = 2946; this.match(HiveSqlParser.COMMA); - this.state = 2941; + this.state = 2947; this.skewedLocationMap(); } } - this.state = 2946; + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2947; + this.state = 2953; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2949; + this.state = 2955; this.match(HiveSqlParser.KW_NOT); - this.state = 2950; + this.state = 2956; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14146,77 +14411,77 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2951; + this.state = 2957; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2952; + this.state = 2958; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2953; + this.state = 2959; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2956; + this.state = 2962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2954; + this.state = 2960; this.match(HiveSqlParser.KW_AND); - this.state = 2955; + this.state = 2961; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2962; + this.state = 2968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2958; + this.state = 2964; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2959; + this.state = 2965; this.match(HiveSqlParser.KW_INTO); - this.state = 2960; + this.state = 2966; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2961; + this.state = 2967; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2965; + this.state = 2971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2964; + this.state = 2970; this.orderByClause(); } } - this.state = 2968; + this.state = 2974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2967; + this.state = 2973; this.compactionPool(); } } - this.state = 2974; + this.state = 2980; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2970; + this.state = 2976; this.match(HiveSqlParser.KW_WITH); - this.state = 2971; + this.state = 2977; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2972; + this.state = 2978; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2973; + this.state = 2979; this.tableProperties(); } break; @@ -14226,36 +14491,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2976; + this.state = 2982; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2977; + this.state = 2983; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2978; + this.state = 2984; this.match(HiveSqlParser.KW_FOR); - this.state = 2980; + this.state = 2986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2979; + this.state = 2985; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2982; + this.state = 2988; localContext._colName = this.columnName(); - this.state = 2983; + this.state = 2989; this.match(HiveSqlParser.KW_SET); - this.state = 2984; + this.state = 2990; this.tableProperties(); - this.state = 2987; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2985; + this.state = 2991; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2986; + this.state = 2992; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14265,73 +14530,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2989; + this.state = 2995; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2990; + this.state = 2996; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2991; + this.state = 2997; this.match(HiveSqlParser.KW_SET); - this.state = 2992; + this.state = 2998; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2993; + this.state = 2999; this.match(HiveSqlParser.KW_CHANGE); - this.state = 2995; + this.state = 3001; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2994; + this.state = 3000; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2997; + this.state = 3003; localContext._oldName = this.columnName(); - this.state = 2998; + this.state = 3004; localContext._newName = this.columnNameCreate(); - this.state = 2999; + this.state = 3005; this.columnType(); - this.state = 3001; + this.state = 3007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3000; + this.state = 3006; this.alterColumnConstraint(); } } - this.state = 3005; + this.state = 3011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3003; + this.state = 3009; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3004; + this.state = 3010; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3010; + this.state = 3016; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3007; + this.state = 3013; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3008; + this.state = 3014; this.match(HiveSqlParser.KW_AFTER); - this.state = 3009; + this.state = 3015; localContext._afterCol = this.id_(); } break; @@ -14387,12 +14652,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3013; + this.state = 3019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3012; + this.state = 3018; this.restrictOrCascade(); } } @@ -14402,38 +14667,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3017; + this.state = 3023; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3015; + this.state = 3021; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3016; + this.state = 3022; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3019; + this.state = 3025; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3020; + this.state = 3026; this.match(HiveSqlParser.LPAREN); - this.state = 3021; + this.state = 3027; this.columnNameTypeList(); - this.state = 3022; + this.state = 3028; this.match(HiveSqlParser.RPAREN); - this.state = 3024; + this.state = 3030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3023; + this.state = 3029; this.restrictOrCascade(); } } @@ -14443,16 +14708,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3026; + this.state = 3032; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3027; + this.state = 3033; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3029; + this.state = 3035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3028; + this.state = 3034; this.restrictOrCascade(); } } @@ -14462,22 +14727,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3031; - this.enableSpecification(); this.state = 3037; + this.enableSpecification(); + this.state = 3043; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3032; + this.state = 3038; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3034; + this.state = 3040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3033; + this.state = 3039; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14487,7 +14752,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3036; + this.state = 3042; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14514,91 +14779,91 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 420, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3067; + this.state = 3073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3041; + this.state = 3047; this.match(HiveSqlParser.KW_SET); - this.state = 3042; + this.state = 3048; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3043; + this.state = 3049; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3044; + this.state = 3050; this.match(HiveSqlParser.KW_UNSET); - this.state = 3045; + this.state = 3051; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3047; + this.state = 3053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3046; + this.state = 3052; this.ifExists(); } } - this.state = 3049; + this.state = 3055; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3050; + this.state = 3056; this.match(HiveSqlParser.KW_RENAME); - this.state = 3051; + this.state = 3057; this.match(HiveSqlParser.KW_TO); - this.state = 3052; + this.state = 3058; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3053; + this.state = 3059; this.match(HiveSqlParser.KW_ADD); - this.state = 3055; + this.state = 3061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3054; + this.state = 3060; this.ifNotExists(); } } - this.state = 3061; + this.state = 3067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3057; + this.state = 3063; this.partitionSpec(); - this.state = 3059; + this.state = 3065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3058; + this.state = 3064; this.locationPath(); } } } } - this.state = 3063; + this.state = 3069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14607,7 +14872,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3065; + this.state = 3071; this.alterStatementSuffixDropPartitions(); } break; @@ -14619,7 +14884,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3066; + this.state = 3072; this.selectStatementWithCTE(); } break; @@ -14643,46 +14908,46 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 422, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3084; + this.state = 3090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3069; + this.state = 3075; localContext._name = this.dbSchemaName(); - this.state = 3070; + this.state = 3076; this.match(HiveSqlParser.KW_SET); - this.state = 3071; + this.state = 3077; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3072; + this.state = 3078; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3074; + this.state = 3080; localContext._dbName = this.dbSchemaName(); - this.state = 3075; + this.state = 3081; this.match(HiveSqlParser.KW_SET); - this.state = 3076; + this.state = 3082; this.match(HiveSqlParser.KW_OWNER); - this.state = 3077; + this.state = 3083; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3079; + this.state = 3085; localContext._dbName = this.dbSchemaName(); - this.state = 3080; + this.state = 3086; this.match(HiveSqlParser.KW_SET); - this.state = 3081; + this.state = 3087; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -14691,7 +14956,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3082; + this.state = 3088; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -14713,47 +14978,47 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3101; + this.state = 3107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3086; + this.state = 3092; localContext._name = this.dbSchemaName(); - this.state = 3087; + this.state = 3093; this.match(HiveSqlParser.KW_SET); - this.state = 3088; + this.state = 3094; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3089; + this.state = 3095; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3091; + this.state = 3097; localContext._dcName = this.dbSchemaName(); - this.state = 3092; + this.state = 3098; this.match(HiveSqlParser.KW_SET); - this.state = 3093; + this.state = 3099; this.match(HiveSqlParser.KW_OWNER); - this.state = 3094; + this.state = 3100; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3096; + this.state = 3102; localContext._dcName = this.dbSchemaName(); - this.state = 3097; + this.state = 3103; this.match(HiveSqlParser.KW_SET); - this.state = 3098; + this.state = 3104; this.match(HiveSqlParser.KW_URL); - this.state = 3099; + this.state = 3105; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -14775,13 +15040,13 @@ export class HiveSqlParser extends SQLParserBase { } public locationPath(): LocationPathContext { let localContext = new LocationPathContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_locationPath); + this.enterRule(localContext, 426, HiveSqlParser.RULE_locationPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 3103; + this.state = 3109; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3104; + this.state = 3110; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -14801,73 +15066,73 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 428, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3106; + this.state = 3112; this.match(HiveSqlParser.KW_DROP); - this.state = 3108; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3107; + this.state = 3113; this.ifExists(); } } - this.state = 3110; + this.state = 3116; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3111; - this.partitionSelectorSpec(); this.state = 3117; + this.partitionSelectorSpec(); + this.state = 3123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3112; + this.state = 3118; this.match(HiveSqlParser.COMMA); - this.state = 3113; + this.state = 3119; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3114; + this.state = 3120; this.partitionSelectorSpec(); } } - this.state = 3119; + this.state = 3125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3122; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3120; + this.state = 3126; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3121; + this.state = 3127; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3125; + this.state = 3131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3124; + this.state = 3130; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3128; + this.state = 3134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3127; + this.state = 3133; this.replicationClause(); } } @@ -14890,21 +15155,260 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 430, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3132; + this.state = 3138; 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_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_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_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_FALSE: + 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_LIFECYCLE: + 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_NULL: + 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_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_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.QUESTION: case HiveSqlParser.StringLiteral: case HiveSqlParser.IntegralLiteral: @@ -14913,22 +15417,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3130; + this.state = 3136; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3131; + this.state = 3137; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3134; + this.state = 3140; this.match(HiveSqlParser.EQUAL); - this.state = 3135; + this.state = 3141; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -14948,23 +15452,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 432, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3137; + this.state = 3143; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3147; + this.state = 3153; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3138; + this.state = 3144; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3139; + this.state = 3145; this.match(HiveSqlParser.LPAREN); - this.state = 3140; + this.state = 3146; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -14978,28 +15482,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3141; + this.state = 3147; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3142; + this.state = 3148; this.match(HiveSqlParser.LPAREN); - this.state = 3143; + this.state = 3149; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3144; + this.state = 3150; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3145; + this.state = 3151; this.match(HiveSqlParser.LPAREN); - this.state = 3146; + this.state = 3152; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3149; + this.state = 3155; this.match(HiveSqlParser.RPAREN); } } @@ -15019,39 +15523,39 @@ export class HiveSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 434, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3164; + this.state = 3170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3151; + this.state = 3157; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3152; + this.state = 3158; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3153; + this.state = 3159; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3154; + this.state = 3160; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3155; + this.state = 3161; this.match(HiveSqlParser.KW_SERDE); - this.state = 3156; + this.state = 3162; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3161; + this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3157; + this.state = 3163; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3158; + this.state = 3164; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3159; + this.state = 3165; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3160; + this.state = 3166; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15061,7 +15565,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3163; + this.state = 3169; localContext._genericSpec = this.id_(); } break; @@ -15083,39 +15587,39 @@ export class HiveSqlParser extends SQLParserBase { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 436, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3175; + this.state = 3181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3166; + this.state = 3172; this.match(HiveSqlParser.KW_LIKE); - this.state = 3167; + this.state = 3173; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3168; + this.state = 3174; this.match(HiveSqlParser.KW_LIKE); - this.state = 3169; + this.state = 3175; this.match(HiveSqlParser.KW_FILE); - this.state = 3170; + this.state = 3176; localContext._format = this.id_(); - this.state = 3171; + this.state = 3177; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3173; + this.state = 3179; this.match(HiveSqlParser.KW_LIKE); - this.state = 3174; + this.state = 3180; localContext._likeName = this.tableName(); } break; @@ -15137,124 +15641,124 @@ export class HiveSqlParser extends SQLParserBase { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 438, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3312; + this.state = 3318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3177; + this.state = 3183; this.match(HiveSqlParser.KW_CREATE); - this.state = 3179; + this.state = 3185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3178; + this.state = 3184; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3182; + this.state = 3188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3181; + this.state = 3187; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3185; + this.state = 3191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3184; + this.state = 3190; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3187; + this.state = 3193; this.match(HiveSqlParser.KW_TABLE); - this.state = 3189; + this.state = 3195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3188; + this.state = 3194; this.ifNotExists(); } } - this.state = 3191; + this.state = 3197; localContext._name = this.tableNameCreate(); - this.state = 3248; + this.state = 3254; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3192; + this.state = 3198; this.likeTableOrFile(); - this.state = 3194; + this.state = 3200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3193; + this.state = 3199; this.createTablePartitionSpec(); } } - this.state = 3197; + this.state = 3203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3196; + this.state = 3202; this.tableRowFormat(); } } - this.state = 3200; + this.state = 3206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3199; + this.state = 3205; this.tableFileFormat(); } } - this.state = 3203; + this.state = 3209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3202; + this.state = 3208; this.locationPath(); } } - this.state = 3206; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3205; + this.state = 3211; this.tablePropertiesPrefixed(); } } - this.state = 3209; + this.state = 3215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3208; + this.state = 3214; this.tableLifecycle(); } } @@ -15318,118 +15822,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3215; + this.state = 3221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3211; + this.state = 3217; this.match(HiveSqlParser.LPAREN); - this.state = 3212; + this.state = 3218; this.columnNameTypeOrConstraintList(); - this.state = 3213; + this.state = 3219; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3218; + this.state = 3224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3217; + this.state = 3223; this.tableComment(); } } - this.state = 3221; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3220; + this.state = 3226; this.createTablePartitionSpec(); } } - this.state = 3224; + this.state = 3230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3223; + this.state = 3229; this.tableBuckets(); } } - this.state = 3227; + this.state = 3233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3226; + this.state = 3232; this.tableSkewed(); } } - this.state = 3230; + this.state = 3236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3229; + this.state = 3235; this.tableRowFormat(); } } - this.state = 3233; + this.state = 3239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3232; + this.state = 3238; this.tableFileFormat(); } } - this.state = 3236; + this.state = 3242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3235; + this.state = 3241; this.locationPath(); } } - this.state = 3239; + this.state = 3245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3238; + this.state = 3244; this.tablePropertiesPrefixed(); } } - this.state = 3242; + this.state = 3248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3241; + this.state = 3247; this.tableLifecycle(); } } - this.state = 3246; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3244; + this.state = 3250; this.match(HiveSqlParser.KW_AS); - this.state = 3245; + this.state = 3251; this.selectStatementWithCTE(); } } @@ -15444,77 +15948,77 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3250; + this.state = 3256; this.match(HiveSqlParser.KW_CREATE); - this.state = 3251; + this.state = 3257; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3252; + this.state = 3258; this.match(HiveSqlParser.KW_TABLE); - this.state = 3254; + this.state = 3260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3253; + this.state = 3259; this.ifNotExists(); } } - this.state = 3256; + this.state = 3262; localContext._name = this.tableNameCreate(); - this.state = 3310; + this.state = 3316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3257; + this.state = 3263; this.likeTableOrFile(); - this.state = 3259; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3258; + this.state = 3264; this.tableRowFormat(); } } - this.state = 3262; + this.state = 3268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3261; + this.state = 3267; this.tableFileFormat(); } } - this.state = 3265; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3264; + this.state = 3270; this.locationPath(); } } - this.state = 3268; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3267; + this.state = 3273; this.tablePropertiesPrefixed(); } } - this.state = 3271; + this.state = 3277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3270; + this.state = 3276; this.tableLifecycle(); } } @@ -15578,118 +16082,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3277; + this.state = 3283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3273; + this.state = 3279; this.match(HiveSqlParser.LPAREN); - this.state = 3274; + this.state = 3280; this.columnNameTypeOrConstraintList(); - this.state = 3275; + this.state = 3281; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3280; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3279; + this.state = 3285; this.tableComment(); } } - this.state = 3283; + this.state = 3289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3282; + this.state = 3288; this.createTablePartitionSpec(); } } - this.state = 3286; + this.state = 3292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3285; + this.state = 3291; this.tableBuckets(); } } - this.state = 3289; + this.state = 3295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3288; + this.state = 3294; this.tableSkewed(); } } - this.state = 3292; + this.state = 3298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3291; + this.state = 3297; this.tableRowFormat(); } } - this.state = 3295; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3294; + this.state = 3300; this.tableFileFormat(); } } - this.state = 3298; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3297; + this.state = 3303; this.locationPath(); } } - this.state = 3301; + this.state = 3307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3300; + this.state = 3306; this.tablePropertiesPrefixed(); } } - this.state = 3304; + this.state = 3310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3303; + this.state = 3309; this.tableLifecycle(); } } - this.state = 3308; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3306; + this.state = 3312; this.match(HiveSqlParser.KW_AS); - this.state = 3307; + this.state = 3313; this.selectStatementWithCTE(); } } @@ -15719,73 +16223,73 @@ export class HiveSqlParser extends SQLParserBase { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 440, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3314; + this.state = 3320; this.match(HiveSqlParser.KW_CREATE); - this.state = 3315; + this.state = 3321; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3317; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3316; + this.state = 3322; this.ifNotExists(); } } - this.state = 3319; + this.state = 3325; localContext._name = this.id_(); - this.state = 3322; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3320; + this.state = 3326; this.match(HiveSqlParser.KW_TYPE); - this.state = 3321; + this.state = 3327; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3326; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3324; + this.state = 3330; this.match(HiveSqlParser.KW_URL); - this.state = 3325; + this.state = 3331; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3330; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3328; + this.state = 3334; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3329; + this.state = 3335; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3335; + this.state = 3341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3332; + this.state = 3338; this.match(HiveSqlParser.KW_WITH); - this.state = 3333; + this.state = 3339; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3334; + this.state = 3340; localContext._dcprops = this.keyValueProperties(); } break; @@ -15808,26 +16312,26 @@ export class HiveSqlParser extends SQLParserBase { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 442, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3337; + this.state = 3343; this.match(HiveSqlParser.KW_DROP); - this.state = 3338; + this.state = 3344; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3340; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3339; + this.state = 3345; this.ifExists(); } } - this.state = 3342; + this.state = 3348; this.id_(); } } @@ -15847,28 +16351,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 444, HiveSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3349; + this.state = 3355; this.errorHandler.sync(this); _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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3344; + this.state = 3350; this.id_(); - this.state = 3345; + this.state = 3351; this.match(HiveSqlParser.DOT); } } - this.state = 3351; + this.state = 3357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3352; + this.state = 3358; this.match(HiveSqlParser.STAR); } } @@ -15888,26 +16392,26 @@ export class HiveSqlParser extends SQLParserBase { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 446, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3354; + this.state = 3360; this.expression(); - this.state = 3359; + this.state = 3365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3355; + this.state = 3361; this.match(HiveSqlParser.COMMA); - this.state = 3356; + this.state = 3362; this.expression(); } } - this.state = 3361; + this.state = 3367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15929,26 +16433,26 @@ export class HiveSqlParser extends SQLParserBase { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 448, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3362; + this.state = 3368; this.id_(); - this.state = 3367; + this.state = 3373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3363; + this.state = 3369; this.match(HiveSqlParser.COMMA); - this.state = 3364; + this.state = 3370; this.id_(); } } - this.state = 3369; + this.state = 3375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15970,13 +16474,13 @@ export class HiveSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 450, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3370; + this.state = 3376; this.match(HiveSqlParser.KW_FROM); - this.state = 3371; + this.state = 3377; this.fromSource(); } } @@ -15996,32 +16500,32 @@ export class HiveSqlParser extends SQLParserBase { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 452, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3382; + this.state = 3388; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3373; + this.state = 3379; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3374; + this.state = 3380; this.uniqueJoinSource(); - this.state = 3377; + this.state = 3383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3375; + this.state = 3381; this.match(HiveSqlParser.COMMA); - this.state = 3376; + this.state = 3382; this.uniqueJoinSource(); } } - this.state = 3379; + this.state = 3385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16271,7 +16775,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3381; + this.state = 3387; this.joinSource(); } break; @@ -16295,30 +16799,30 @@ export class HiveSqlParser extends SQLParserBase { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 454, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3416; + this.state = 3422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3384; + this.state = 3390; this.tableSource(); - this.state = 3388; + this.state = 3394; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3385; + this.state = 3391; this.lateralView(); } } } - this.state = 3390; + this.state = 3396; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); } @@ -16327,21 +16831,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3391; + this.state = 3397; this.virtualTableSource(); - this.state = 3395; + this.state = 3401; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3392; + this.state = 3398; this.lateralView(); } } } - this.state = 3397; + this.state = 3403; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } @@ -16350,21 +16854,21 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3398; + this.state = 3404; this.subQuerySource(); - this.state = 3402; + this.state = 3408; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3399; + this.state = 3405; this.lateralView(); } } } - this.state = 3404; + this.state = 3410; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); } @@ -16373,21 +16877,21 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3405; + this.state = 3411; this.partitionedTableFunction(); - this.state = 3409; + this.state = 3415; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3406; + this.state = 3412; this.lateralView(); } } } - this.state = 3411; + this.state = 3417; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); } @@ -16396,11 +16900,11 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3412; + this.state = 3418; this.match(HiveSqlParser.LPAREN); - this.state = 3413; + this.state = 3419; this.joinSource(); - this.state = 3414; + this.state = 3420; this.match(HiveSqlParser.RPAREN); } break; @@ -16422,39 +16926,39 @@ export class HiveSqlParser extends SQLParserBase { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 456, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3418; + this.state = 3424; this.atomjoinSource(); - this.state = 3429; + this.state = 3435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3419; + this.state = 3425; this.joinToken(); - this.state = 3420; + this.state = 3426; this.joinSourcePart(); - this.state = 3425; + this.state = 3431; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3421; + this.state = 3427; this.match(HiveSqlParser.KW_ON); - this.state = 3422; + this.state = 3428; this.expression(); } break; case HiveSqlParser.KW_USING: { - this.state = 3423; + this.state = 3429; this.match(HiveSqlParser.KW_USING); - this.state = 3424; + this.state = 3430; this.columnParenthesesList(); } break; @@ -16532,7 +17036,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3431; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16554,52 +17058,52 @@ export class HiveSqlParser extends SQLParserBase { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 458, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3436; + this.state = 3442; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3432; + this.state = 3438; this.tableSource(); } break; case 2: { - this.state = 3433; + this.state = 3439; this.virtualTableSource(); } break; case 3: { - this.state = 3434; + this.state = 3440; this.subQuerySource(); } break; case 4: { - this.state = 3435; + this.state = 3441; this.partitionedTableFunction(); } break; } - this.state = 3441; + this.state = 3447; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3438; + this.state = 3444; this.lateralView(); } } } - this.state = 3443; + this.state = 3449; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); } @@ -16621,58 +17125,58 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 460, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3445; + this.state = 3451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3444; + this.state = 3450; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3447; + this.state = 3453; localContext._tabname = this.tableOrView(); - this.state = 3449; + this.state = 3455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3448; + this.state = 3454; localContext._ts = this.tableSample(); } } - this.state = 3455; + this.state = 3461; 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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3452; + this.state = 3458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3451; + this.state = 3457; this.match(HiveSqlParser.KW_AS); } } - this.state = 3454; + this.state = 3460; localContext._alias = this.id_(); } } - this.state = 3457; + this.state = 3463; this.match(HiveSqlParser.LPAREN); - this.state = 3458; + this.state = 3464; this.expressionList(); - this.state = 3459; + this.state = 3465; this.match(HiveSqlParser.RPAREN); } } @@ -16692,16 +17196,16 @@ export class HiveSqlParser extends SQLParserBase { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 462, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3475; + this.state = 3481; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3467; this.match(HiveSqlParser.COMMA); } break; @@ -16713,25 +17217,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3472; + this.state = 3478; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3462; + this.state = 3468; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3463; + this.state = 3469; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3464; + this.state = 3470; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -16740,12 +17244,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3466; + this.state = 3472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3465; + this.state = 3471; this.match(HiveSqlParser.KW_OUTER); } } @@ -16754,14 +17258,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3468; + this.state = 3474; this.match(HiveSqlParser.KW_LEFT); - this.state = 3470; + this.state = 3476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3469; + this.state = 3475; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -16780,7 +17284,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3474; + this.state = 3480; this.match(HiveSqlParser.KW_JOIN); } break; @@ -16804,50 +17308,50 @@ export class HiveSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 464, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; - this.state = 3534; + this.state = 3540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3477; + this.state = 3483; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3478; + this.state = 3484; this.match(HiveSqlParser.KW_VIEW); - this.state = 3479; + this.state = 3485; this.match(HiveSqlParser.KW_OUTER); - this.state = 3480; + this.state = 3486; this.function_(); - this.state = 3481; + this.state = 3487; localContext._alias = this.tableAlias(); - this.state = 3491; + this.state = 3497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3482; + this.state = 3488; this.match(HiveSqlParser.KW_AS); - this.state = 3483; + this.state = 3489; this.id_(); - this.state = 3488; + this.state = 3494; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3484; + this.state = 3490; this.match(HiveSqlParser.COMMA); - this.state = 3485; + this.state = 3491; this.id_(); } } } - this.state = 3490; + this.state = 3496; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } @@ -16859,53 +17363,53 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3494; + this.state = 3500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3493; + this.state = 3499; this.match(HiveSqlParser.COMMA); } } - this.state = 3496; + this.state = 3502; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3532; + this.state = 3538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3497; + this.state = 3503; this.match(HiveSqlParser.KW_VIEW); - this.state = 3498; + this.state = 3504; this.function_(); - this.state = 3499; + this.state = 3505; localContext._alias = this.tableAlias(); - this.state = 3509; + this.state = 3515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3500; + this.state = 3506; this.match(HiveSqlParser.KW_AS); - this.state = 3501; + this.state = 3507; this.id_(); - this.state = 3506; + this.state = 3512; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3502; + this.state = 3508; this.match(HiveSqlParser.COMMA); - this.state = 3503; + this.state = 3509; this.id_(); } } } - this.state = 3508; + this.state = 3514; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } @@ -16916,52 +17420,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3511; + this.state = 3517; this.match(HiveSqlParser.KW_TABLE); - this.state = 3512; + this.state = 3518; this.match(HiveSqlParser.LPAREN); - this.state = 3513; + this.state = 3519; this.valuesClause(); - this.state = 3514; + this.state = 3520; this.match(HiveSqlParser.RPAREN); - this.state = 3516; + this.state = 3522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3515; + this.state = 3521; this.match(HiveSqlParser.KW_AS); } } - this.state = 3518; + this.state = 3524; localContext._alias = this.tableAlias(); - this.state = 3530; + this.state = 3536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3519; + this.state = 3525; this.match(HiveSqlParser.LPAREN); - this.state = 3520; + this.state = 3526; this.id_(); - this.state = 3525; + this.state = 3531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3521; + this.state = 3527; this.match(HiveSqlParser.COMMA); - this.state = 3522; + this.state = 3528; this.id_(); } } - this.state = 3527; + this.state = 3533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3528; + this.state = 3534; this.match(HiveSqlParser.RPAREN); } break; @@ -16991,11 +17495,11 @@ export class HiveSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 466, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 3536; + this.state = 3542; this.id_(); } } @@ -17015,78 +17519,78 @@ export class HiveSqlParser extends SQLParserBase { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 468, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3565; + this.state = 3571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3538; + this.state = 3544; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3539; + this.state = 3545; this.match(HiveSqlParser.LPAREN); - this.state = 3540; + this.state = 3546; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3541; + this.state = 3547; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3542; + this.state = 3548; this.match(HiveSqlParser.KW_OUT); - this.state = 3543; + this.state = 3549; this.match(HiveSqlParser.KW_OF); - this.state = 3544; + this.state = 3550; localContext._denominator = this.match(HiveSqlParser.Number); - this.state = 3554; + this.state = 3560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3545; + this.state = 3551; this.match(HiveSqlParser.KW_ON); - this.state = 3546; + this.state = 3552; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3551; + this.state = 3557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3547; + this.state = 3553; this.match(HiveSqlParser.COMMA); - this.state = 3548; + this.state = 3554; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3553; + this.state = 3559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3556; + this.state = 3562; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3557; + this.state = 3563; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3558; + this.state = 3564; this.match(HiveSqlParser.LPAREN); - this.state = 3562; + this.state = 3568; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3559; + this.state = 3565; this.match(HiveSqlParser.Number); - this.state = 3560; + this.state = 3566; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17099,14 +17603,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3561; + this.state = 3567; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3564; + this.state = 3570; this.match(HiveSqlParser.RPAREN); } break; @@ -17128,59 +17632,59 @@ export class HiveSqlParser extends SQLParserBase { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3567; + this.state = 3573; localContext._tabname = this.tableOrView(); - this.state = 3569; + this.state = 3575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3568; + this.state = 3574; localContext._props = this.tableProperties(); } break; } - this.state = 3572; + this.state = 3578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3571; + this.state = 3577; localContext._ts = this.tableSample(); } } - this.state = 3575; + this.state = 3581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3574; + this.state = 3580; localContext._asOf = this.asOfClause(); } } - this.state = 3581; + this.state = 3587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3578; + this.state = 3584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3577; + this.state = 3583; this.match(HiveSqlParser.KW_AS); } } - this.state = 3580; + this.state = 3586; localContext._alias = this.id_(); } break; @@ -17203,38 +17707,38 @@ export class HiveSqlParser extends SQLParserBase { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 472, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; + this.state = 3589; this.match(HiveSqlParser.KW_FOR); - this.state = 3593; + this.state = 3599; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3584; + this.state = 3590; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3585; + this.state = 3591; this.match(HiveSqlParser.KW_AS); - this.state = 3586; + this.state = 3592; this.match(HiveSqlParser.KW_OF); - this.state = 3587; + this.state = 3593; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3588; + this.state = 3594; this.match(HiveSqlParser.KW_FOR); - this.state = 3589; + this.state = 3595; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3590; + this.state = 3596; this.match(HiveSqlParser.KW_AS); - this.state = 3591; + this.state = 3597; this.match(HiveSqlParser.KW_OF); - this.state = 3592; + this.state = 3598; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17259,11 +17763,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 474, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3601; this.id_(); } } @@ -17283,11 +17787,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 476, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3597; + this.state = 3603; this.id_(); } } @@ -17307,22 +17811,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 478, HiveSqlParser.RULE_tableOrView); try { - this.state = 3601; + this.state = 3607; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3599; + this.state = 3605; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3600; + this.state = 3606; this.viewName(); } break; @@ -17344,28 +17848,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 480, HiveSqlParser.RULE_tableName); try { - this.state = 3611; + this.state = 3617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3603; + this.state = 3609; localContext._db = this.id_(); - this.state = 3604; + this.state = 3610; this.match(HiveSqlParser.DOT); - this.state = 3605; + this.state = 3611; localContext._tab = this.id_(); - this.state = 3608; + this.state = 3614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3606; + this.state = 3612; this.match(HiveSqlParser.DOT); - this.state = 3607; + this.state = 3613; localContext._meta = this.id_(); } break; @@ -17375,7 +17879,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3610; + this.state = 3616; localContext._tab = this.id_(); } break; @@ -17397,29 +17901,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 482, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3621; + this.state = 3627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3619; localContext._db = this.id_(); - this.state = 3614; + this.state = 3620; this.match(HiveSqlParser.DOT); - this.state = 3615; + this.state = 3621; localContext._tab = this.id_(); - this.state = 3618; + this.state = 3624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3616; + this.state = 3622; this.match(HiveSqlParser.DOT); - this.state = 3617; + this.state = 3623; localContext._meta = this.id_(); } } @@ -17429,7 +17933,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3620; + this.state = 3626; localContext._tab = this.id_(); } break; @@ -17451,23 +17955,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 484, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3626; + this.state = 3632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3623; + this.state = 3629; localContext._db = this.id_(); - this.state = 3624; + this.state = 3630; this.match(HiveSqlParser.DOT); } break; } - this.state = 3628; + this.state = 3634; localContext._view = this.id_(); } } @@ -17487,23 +17991,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 486, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3633; + this.state = 3639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3630; + this.state = 3636; localContext._db = this.id_(); - this.state = 3631; + this.state = 3637; this.match(HiveSqlParser.DOT); } break; } - this.state = 3635; + this.state = 3641; localContext._view = this.id_(); } } @@ -17523,28 +18027,28 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 488, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3637; + this.state = 3643; this.match(HiveSqlParser.LPAREN); - this.state = 3638; + this.state = 3644; this.queryStatementExpression(); - this.state = 3639; + this.state = 3645; this.match(HiveSqlParser.RPAREN); - this.state = 3641; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3640; + this.state = 3646; this.match(HiveSqlParser.KW_AS); } } - this.state = 3643; + this.state = 3649; this.id_(); } } @@ -17564,27 +18068,23 @@ export class HiveSqlParser extends SQLParserBase { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 490, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3658; + this.state = 3662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3645; - this.match(HiveSqlParser.KW_PARTITION); - this.state = 3646; - this.match(HiveSqlParser.KW_BY); - this.state = 3647; - this.expressions(); - this.state = 3649; + this.state = 3651; + this.partitionByClause(); + this.state = 3653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3648; + this.state = 3652; this.orderByClause(); } } @@ -17594,21 +18094,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3651; + this.state = 3655; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3652; + this.state = 3656; this.distributeByClause(); - this.state = 3654; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3653; + this.state = 3657; this.sortByClause(); } } @@ -17618,14 +18118,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3656; + this.state = 3660; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3657; + this.state = 3661; this.clusterByClause(); } break; @@ -17649,29 +18149,29 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 492, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3663; + this.state = 3667; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3660; + this.state = 3664; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3661; + this.state = 3665; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3662; + this.state = 3666; this.partitionedTableFunction(); } break; @@ -17693,75 +18193,75 @@ export class HiveSqlParser extends SQLParserBase { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3665; + this.state = 3669; localContext._n = this.id_(); - this.state = 3666; + this.state = 3670; this.match(HiveSqlParser.LPAREN); - this.state = 3667; + this.state = 3671; this.match(HiveSqlParser.KW_ON); - this.state = 3668; + this.state = 3672; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3670; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3669; + this.state = 3673; localContext._spec = this.partitioningSpec(); } } - this.state = 3687; + this.state = 3691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3672; + this.state = 3676; this.match(HiveSqlParser.Identifier); - this.state = 3673; + this.state = 3677; this.match(HiveSqlParser.LPAREN); - this.state = 3674; + this.state = 3678; this.expression(); - this.state = 3675; + this.state = 3679; this.match(HiveSqlParser.RPAREN); - this.state = 3684; + this.state = 3688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3676; + this.state = 3680; this.match(HiveSqlParser.COMMA); - this.state = 3677; + this.state = 3681; this.match(HiveSqlParser.Identifier); - this.state = 3678; + this.state = 3682; this.match(HiveSqlParser.LPAREN); - this.state = 3679; + this.state = 3683; this.expression(); - this.state = 3680; + this.state = 3684; this.match(HiveSqlParser.RPAREN); } } - this.state = 3686; + this.state = 3690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3689; + this.state = 3693; this.match(HiveSqlParser.RPAREN); - this.state = 3691; + this.state = 3695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: { - this.state = 3690; + this.state = 3694; localContext._alias = this.id_(); } break; @@ -17784,13 +18284,13 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 496, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3693; + this.state = 3697; this.match(HiveSqlParser.KW_WHERE); - this.state = 3694; + this.state = 3698; this.expression(); } } @@ -17810,33 +18310,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 498, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3696; + this.state = 3700; this.match(HiveSqlParser.KW_VALUES); - this.state = 3715; + this.state = 3719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3697; + this.state = 3701; this.expressionsInParenthesis(); - this.state = 3702; + this.state = 3706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3698; + this.state = 3702; this.match(HiveSqlParser.COMMA); - this.state = 3699; + this.state = 3703; this.expressionsInParenthesis(); } } - this.state = 3704; + this.state = 3708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17844,25 +18344,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3705; + this.state = 3709; this.match(HiveSqlParser.LPAREN); - this.state = 3706; + this.state = 3710; this.firstExpressionsWithAlias(); - this.state = 3707; + this.state = 3711; this.match(HiveSqlParser.RPAREN); - this.state = 3712; + this.state = 3716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3708; + this.state = 3712; this.match(HiveSqlParser.COMMA); - this.state = 3709; + this.state = 3713; this.expressionsInParenthesis(); } } - this.state = 3714; + this.state = 3718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17887,60 +18387,60 @@ export class HiveSqlParser extends SQLParserBase { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 500, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3717; + this.state = 3721; this.match(HiveSqlParser.KW_TABLE); - this.state = 3718; + this.state = 3722; this.match(HiveSqlParser.LPAREN); - this.state = 3719; + this.state = 3723; this.valuesClause(); - this.state = 3720; + this.state = 3724; this.match(HiveSqlParser.RPAREN); - this.state = 3722; + this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3721; + this.state = 3725; this.match(HiveSqlParser.KW_AS); } } - this.state = 3724; + this.state = 3728; this.tableAlias(); - this.state = 3734; + this.state = 3738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3725; + this.state = 3729; this.match(HiveSqlParser.LPAREN); - this.state = 3726; + this.state = 3730; this.id_(); - this.state = 3731; + this.state = 3735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3727; + this.state = 3731; this.match(HiveSqlParser.COMMA); - this.state = 3728; + this.state = 3732; this.id_(); } } - this.state = 3733; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3736; + this.state = 3740; this.match(HiveSqlParser.RPAREN); } } @@ -17960,39 +18460,39 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 502, HiveSqlParser.RULE_selectClause); let _la: number; try { let alternative: number; - this.state = 3758; + this.state = 3762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3738; + this.state = 3742; this.match(HiveSqlParser.KW_SELECT); - this.state = 3740; + this.state = 3744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: { - this.state = 3739; + this.state = 3743; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3755; + this.state = 3759; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: { - this.state = 3743; + this.state = 3747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: { - this.state = 3742; + this.state = 3746; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18004,23 +18504,23 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3745; + this.state = 3749; this.selectItem(); - this.state = 3750; + this.state = 3754; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3746; + this.state = 3750; this.match(HiveSqlParser.COMMA); - this.state = 3747; + this.state = 3751; this.selectItem(); } } } - this.state = 3752; + this.state = 3756; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); } @@ -18028,9 +18528,9 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3753; + this.state = 3757; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3754; + this.state = 3758; this.selectTrfmClause(); } break; @@ -18041,7 +18541,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3757; + this.state = 3761; this.trfmClause(); } break; @@ -18065,68 +18565,68 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 504, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3760; + this.state = 3764; this.match(HiveSqlParser.LPAREN); - this.state = 3761; + this.state = 3765; this.selectExpressionList(); - this.state = 3762; + this.state = 3766; this.match(HiveSqlParser.RPAREN); - this.state = 3763; + this.state = 3767; this.rowFormat(); - this.state = 3764; + this.state = 3768; this.recordWriter(); - this.state = 3765; + this.state = 3769; this.match(HiveSqlParser.KW_USING); - this.state = 3766; + this.state = 3770; this.match(HiveSqlParser.StringLiteral); - this.state = 3779; + this.state = 3783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3767; + this.state = 3771; this.match(HiveSqlParser.KW_AS); - this.state = 3777; + this.state = 3781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 3768; + this.state = 3772; this.match(HiveSqlParser.LPAREN); - this.state = 3771; + this.state = 3775; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 3769; + this.state = 3773; this.aliasList(); } break; case 2: { - this.state = 3770; + this.state = 3774; this.columnNameTypeList(); } break; } - this.state = 3773; + this.state = 3777; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3775; + this.state = 3779; this.aliasList(); } break; case 3: { - this.state = 3776; + this.state = 3780; this.columnNameTypeList(); } break; @@ -18134,9 +18634,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3781; + this.state = 3785; this.rowFormat(); - this.state = 3782; + this.state = 3786; this.recordReader(); } } @@ -18156,16 +18656,16 @@ export class HiveSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 506, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3807; + this.state = 3811; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3784; + this.state = 3788; this.tableAllColumns(); } break; @@ -18173,66 +18673,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3787; + this.state = 3791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3785; + this.state = 3789; this.columnName(); } break; case 2: { - this.state = 3786; + this.state = 3790; this.expression(); } break; } - this.state = 3805; + this.state = 3809; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: { - this.state = 3790; + this.state = 3794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3789; + this.state = 3793; this.match(HiveSqlParser.KW_AS); } } - this.state = 3792; + this.state = 3796; this.id_(); } break; case 2: { - this.state = 3793; + this.state = 3797; this.match(HiveSqlParser.KW_AS); - this.state = 3794; + this.state = 3798; this.match(HiveSqlParser.LPAREN); - this.state = 3795; + this.state = 3799; this.id_(); - this.state = 3800; + this.state = 3804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3796; + this.state = 3800; this.match(HiveSqlParser.COMMA); - this.state = 3797; + this.state = 3801; this.id_(); } } - this.state = 3802; + this.state = 3806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3803; + this.state = 3807; this.match(HiveSqlParser.RPAREN); } break; @@ -18258,12 +18758,12 @@ export class HiveSqlParser extends SQLParserBase { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 508, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3809; + this.state = 3813; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18272,59 +18772,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3810; + this.state = 3814; this.selectExpressionList(); - this.state = 3811; + this.state = 3815; this.rowFormat(); - this.state = 3812; + this.state = 3816; this.recordWriter(); - this.state = 3813; + this.state = 3817; this.match(HiveSqlParser.KW_USING); - this.state = 3814; + this.state = 3818; this.match(HiveSqlParser.StringLiteral); - this.state = 3827; + this.state = 3831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3815; + this.state = 3819; this.match(HiveSqlParser.KW_AS); - this.state = 3825; + this.state = 3829; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3816; + this.state = 3820; this.match(HiveSqlParser.LPAREN); - this.state = 3819; + this.state = 3823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: { - this.state = 3817; + this.state = 3821; this.aliasList(); } break; case 2: { - this.state = 3818; + this.state = 3822; this.columnNameTypeList(); } break; } - this.state = 3821; + this.state = 3825; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3823; + this.state = 3827; this.aliasList(); } break; case 3: { - this.state = 3824; + this.state = 3828; this.columnNameTypeList(); } break; @@ -18332,9 +18832,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3829; + this.state = 3833; this.rowFormat(); - this.state = 3830; + this.state = 3834; this.recordReader(); } } @@ -18354,22 +18854,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 510, HiveSqlParser.RULE_selectExpression); try { - this.state = 3834; + this.state = 3838; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3832; + this.state = 3836; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3833; + this.state = 3837; this.expression(); } break; @@ -18391,26 +18891,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 512, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3836; + this.state = 3840; this.selectExpression(); - this.state = 3841; + this.state = 3845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3837; + this.state = 3841; this.match(HiveSqlParser.COMMA); - this.state = 3838; + this.state = 3842; this.selectExpression(); } } - this.state = 3843; + this.state = 3847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18432,36 +18932,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 514, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3848; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3845; + this.state = 3849; this.id_(); - this.state = 3846; + this.state = 3850; this.match(HiveSqlParser.KW_AS); - this.state = 3847; + this.state = 3851; this.window_specification(); - this.state = 3855; + this.state = 3859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3848; + this.state = 3852; this.match(HiveSqlParser.COMMA); - this.state = 3849; + this.state = 3853; this.id_(); - this.state = 3850; + this.state = 3854; this.match(HiveSqlParser.KW_AS); - this.state = 3851; + this.state = 3855; this.window_specification(); } } - this.state = 3857; + this.state = 3861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18483,10 +18983,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 516, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3870; + this.state = 3874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -18731,46 +19231,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3862; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3859; + this.state = 3863; this.match(HiveSqlParser.LPAREN); - this.state = 3861; + this.state = 3865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 3860; + this.state = 3864; this.id_(); } break; } - this.state = 3864; + this.state = 3868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3863; + this.state = 3867; this.partitioningSpec(); } } - this.state = 3867; + this.state = 3871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3866; + this.state = 3870; this.window_frame(); } } - this.state = 3869; + this.state = 3873; this.match(HiveSqlParser.RPAREN); } break; @@ -18794,12 +19294,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 518, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3872; + this.state = 3876; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -18808,22 +19308,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3886; + this.state = 3890; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3879; + this.state = 3883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3873; + this.state = 3877; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3874; + this.state = 3878; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -18831,9 +19331,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3875; + this.state = 3879; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3876; + this.state = 3880; this.match(HiveSqlParser.KW_ROW); } } @@ -18841,9 +19341,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3877; + this.state = 3881; this.match(HiveSqlParser.Number); - this.state = 3878; + this.state = 3882; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -18855,13 +19355,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3881; + this.state = 3885; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3882; + this.state = 3886; this.window_frame_boundary(); - this.state = 3883; + this.state = 3887; this.match(HiveSqlParser.KW_AND); - this.state = 3884; + this.state = 3888; this.window_frame_boundary(); } break; @@ -18886,17 +19386,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 520, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3892; + this.state = 3896; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3892; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -18905,7 +19405,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3889; + this.state = 3893; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -18919,9 +19419,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3890; + this.state = 3894; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3891; + this.state = 3895; this.match(HiveSqlParser.KW_ROW); } break; @@ -18945,41 +19445,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 522, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3894; + this.state = 3898; this.match(HiveSqlParser.KW_GROUP); - this.state = 3895; + this.state = 3899; this.match(HiveSqlParser.KW_BY); - this.state = 3901; + this.state = 3905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { case 1: { - this.state = 3896; + this.state = 3900; this.columnName(); } break; case 2: { - this.state = 3897; + this.state = 3901; this.rollupStandard(); } break; case 3: { - this.state = 3898; + this.state = 3902; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3899; + this.state = 3903; this.match(HiveSqlParser.LPAREN); - this.state = 3900; + this.state = 3904; this.match(HiveSqlParser.RPAREN); } } @@ -19003,50 +19503,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 524, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3905; + this.state = 3909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3903; + this.state = 3907; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3904; + this.state = 3908; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3907; + this.state = 3911; this.match(HiveSqlParser.LPAREN); - this.state = 3908; + this.state = 3912; this.expression(); - this.state = 3913; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3909; + this.state = 3913; this.match(HiveSqlParser.COMMA); - this.state = 3910; + this.state = 3914; this.expression(); } } - this.state = 3915; + this.state = 3919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3916; + this.state = 3920; this.match(HiveSqlParser.RPAREN); } } @@ -19066,63 +19566,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 526, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3918; + this.state = 3922; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3923; + this.state = 3927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 3919; + this.state = 3923; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3920; + this.state = 3924; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3921; + this.state = 3925; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3922; + this.state = 3926; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3938; + this.state = 3942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3925; + this.state = 3929; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3926; + this.state = 3930; this.match(HiveSqlParser.KW_SETS); - this.state = 3927; + this.state = 3931; this.match(HiveSqlParser.LPAREN); - this.state = 3928; + this.state = 3932; this.groupingSetExpression(); - this.state = 3933; + this.state = 3937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3929; + this.state = 3933; this.match(HiveSqlParser.COMMA); - this.state = 3930; + this.state = 3934; this.groupingSetExpression(); } } - this.state = 3935; + this.state = 3939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3936; + this.state = 3940; this.match(HiveSqlParser.RPAREN); } } @@ -19145,51 +19645,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 528, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3953; + this.state = 3957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3940; + this.state = 3944; this.match(HiveSqlParser.LPAREN); - this.state = 3942; + this.state = 3946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3941; + this.state = 3945; this.expression(); } } - this.state = 3948; + this.state = 3952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3944; + this.state = 3948; this.match(HiveSqlParser.COMMA); - this.state = 3945; + this.state = 3949; this.expression(); } } - this.state = 3950; + this.state = 3954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3951; + this.state = 3955; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3952; + this.state = 3956; this.expression(); } break; @@ -19211,13 +19711,13 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 530, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3955; + this.state = 3959; this.match(HiveSqlParser.KW_HAVING); - this.state = 3956; + this.state = 3960; this.expression(); } } @@ -19237,13 +19737,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 532, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3958; + this.state = 3962; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 3959; + this.state = 3963; this.expression(); } } @@ -19263,22 +19763,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 534, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 3963; + this.state = 3967; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3961; + this.state = 3965; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3962; + this.state = 3966; this.expression(); } break; @@ -19300,66 +19800,66 @@ export class HiveSqlParser extends SQLParserBase { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 536, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3969; localContext._first = this.expression(); - this.state = 3967; + this.state = 3971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3966; + this.state = 3970; this.match(HiveSqlParser.KW_AS); } } - this.state = 3970; + this.state = 3974; 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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3969; + this.state = 3973; localContext._colAlias = this.id_(); } } - this.state = 3982; + this.state = 3986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3972; + this.state = 3976; this.match(HiveSqlParser.COMMA); - this.state = 3973; + this.state = 3977; this.expression(); - this.state = 3975; + this.state = 3979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3974; + this.state = 3978; this.match(HiveSqlParser.KW_AS); } } - this.state = 3978; + this.state = 3982; 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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3977; + this.state = 3981; localContext._alias = this.id_(); } } } } - this.state = 3984; + this.state = 3988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19381,22 +19881,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 538, HiveSqlParser.RULE_expressions); try { - this.state = 3987; + this.state = 3991; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3985; + this.state = 3989; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3986; + this.state = 3990; this.expressionsNotInParenthesis(); } break; @@ -19418,15 +19918,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 540, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 3989; + this.state = 3993; this.match(HiveSqlParser.LPAREN); - this.state = 3990; + this.state = 3994; this.expressionsNotInParenthesis(); - this.state = 3991; + this.state = 3995; this.match(HiveSqlParser.RPAREN); } } @@ -19446,31 +19946,31 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 542, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3993; + this.state = 3997; localContext._first = this.expressionOrDefault(); - this.state = 4000; + this.state = 4004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3996; + this.state = 4000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3994; + this.state = 3998; this.match(HiveSqlParser.COMMA); - this.state = 3995; + this.state = 3999; this.expressionOrDefault(); } } - this.state = 3998; + this.state = 4002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -19495,30 +19995,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 544, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4002; + this.state = 4006; this.match(HiveSqlParser.KW_ORDER); - this.state = 4003; + this.state = 4007; this.match(HiveSqlParser.KW_BY); - this.state = 4004; + this.state = 4008; this.columnRefOrder(); - this.state = 4009; + this.state = 4013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4005; + this.state = 4009; this.match(HiveSqlParser.COMMA); - this.state = 4006; + this.state = 4010; this.columnRefOrder(); } } - this.state = 4011; + this.state = 4015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19538,17 +20038,45 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public partitionByClause(): PartitionByClauseContext { + let localContext = new PartitionByClauseContext(this.context, this.state); + this.enterRule(localContext, 546, HiveSqlParser.RULE_partitionByClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4016; + this.match(HiveSqlParser.KW_PARTITION); + this.state = 4017; + this.match(HiveSqlParser.KW_BY); + this.state = 4018; + this.expressions(); + } + } + 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 clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 548, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4020; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4013; + this.state = 4021; this.match(HiveSqlParser.KW_BY); - this.state = 4014; + this.state = 4022; this.expressions(); } } @@ -19568,15 +20096,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 550, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4024; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4017; + this.state = 4025; this.match(HiveSqlParser.KW_BY); - this.state = 4018; + this.state = 4026; this.expressions(); } } @@ -19596,42 +20124,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 552, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4020; + this.state = 4028; this.match(HiveSqlParser.KW_SORT); - this.state = 4021; + this.state = 4029; this.match(HiveSqlParser.KW_BY); - this.state = 4041; + this.state = 4049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { { - this.state = 4022; + this.state = 4030; this.match(HiveSqlParser.LPAREN); - this.state = 4023; + this.state = 4031; this.columnRefOrder(); - this.state = 4028; + this.state = 4036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4024; + this.state = 4032; this.match(HiveSqlParser.COMMA); - this.state = 4025; + this.state = 4033; this.columnRefOrder(); } } - this.state = 4030; + this.state = 4038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4031; + this.state = 4039; this.match(HiveSqlParser.RPAREN); } } @@ -19639,21 +20167,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4033; + this.state = 4041; this.columnRefOrder(); - this.state = 4038; + this.state = 4046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4034; + this.state = 4042; this.match(HiveSqlParser.COMMA); - this.state = 4035; + this.state = 4043; this.columnRefOrder(); } } - this.state = 4040; + this.state = 4048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19679,37 +20207,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 554, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4096; + this.state = 4104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4043; + this.state = 4051; this.match(HiveSqlParser.KW_TRIM); - this.state = 4044; + this.state = 4052; this.match(HiveSqlParser.LPAREN); - this.state = 4048; + this.state = 4056; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4045; + this.state = 4053; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4046; + this.state = 4054; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4047; + this.state = 4055; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20019,48 +20547,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4051; + this.state = 4059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4050; + this.state = 4058; localContext._trim_characters = this.selectExpression(); } } - this.state = 4053; + this.state = 4061; this.match(HiveSqlParser.KW_FROM); - this.state = 4054; + this.state = 4062; localContext._str = this.selectExpression(); - this.state = 4055; + this.state = 4063; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4057; + this.state = 4065; this.functionNameForInvoke(); - this.state = 4058; + this.state = 4066; this.match(HiveSqlParser.LPAREN); - this.state = 4073; + this.state = 4081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4059; + this.state = 4067; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4061; + this.state = 4069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4060; + this.state = 4068; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20073,26 +20601,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4071; + this.state = 4079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 4063; + this.state = 4071; this.selectExpression(); - this.state = 4068; + this.state = 4076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4064; + this.state = 4072; this.match(HiveSqlParser.COMMA); - this.state = 4065; + this.state = 4073; this.selectExpression(); } } - this.state = 4070; + this.state = 4078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20102,60 +20630,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4094; + this.state = 4102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: { - this.state = 4075; + this.state = 4083; this.match(HiveSqlParser.RPAREN); - this.state = 4076; + this.state = 4084; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4077; + this.state = 4085; this.match(HiveSqlParser.KW_GROUP); - this.state = 4078; + this.state = 4086; this.match(HiveSqlParser.LPAREN); - this.state = 4079; + this.state = 4087; localContext._ordBy = this.orderByClause(); - this.state = 4080; + this.state = 4088; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4082; + this.state = 4090; this.match(HiveSqlParser.RPAREN); - this.state = 4084; + this.state = 4092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4083; + this.state = 4091; localContext._nt = this.null_treatment(); } } - this.state = 4086; + this.state = 4094; this.match(HiveSqlParser.KW_OVER); - this.state = 4087; + this.state = 4095; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4088; + this.state = 4096; localContext._nt = this.null_treatment(); - this.state = 4089; + this.state = 4097; this.match(HiveSqlParser.RPAREN); - this.state = 4090; + this.state = 4098; this.match(HiveSqlParser.KW_OVER); - this.state = 4091; + this.state = 4099; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4093; + this.state = 4101; this.match(HiveSqlParser.RPAREN); } break; @@ -20180,12 +20708,12 @@ export class HiveSqlParser extends SQLParserBase { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 556, HiveSqlParser.RULE_null_treatment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4098; + this.state = 4106; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20194,7 +20722,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4099; + this.state = 4107; this.match(HiveSqlParser.KW_NULLS); } } @@ -20214,11 +20742,11 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 558, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4101; + this.state = 4109; this.functionIdentifier(); } } @@ -20238,9 +20766,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 560, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4105; + this.state = 4113; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -20485,14 +21013,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4103; + this.state = 4111; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4104; + this.state = 4112; this.match(HiveSqlParser.StringLiteral); } break; @@ -20516,29 +21044,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 562, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4110; + this.state = 4118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4107; + this.state = 4115; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4108; + this.state = 4116; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4109; + this.state = 4117; this.sysFuncNames(); } break; @@ -20560,34 +21088,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 564, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4112; + this.state = 4120; this.match(HiveSqlParser.KW_CAST); - this.state = 4113; + this.state = 4121; this.match(HiveSqlParser.LPAREN); - this.state = 4114; + this.state = 4122; this.expression(); - this.state = 4115; + this.state = 4123; this.match(HiveSqlParser.KW_AS); - this.state = 4116; + this.state = 4124; localContext._toType = this.primitiveType(); - this.state = 4119; + this.state = 4127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4117; + this.state = 4125; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4118; + this.state = 4126; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4121; + this.state = 4129; this.match(HiveSqlParser.RPAREN); } } @@ -20607,48 +21135,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 566, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4123; + this.state = 4131; this.match(HiveSqlParser.KW_CASE); - this.state = 4124; + this.state = 4132; this.expression(); - this.state = 4130; + this.state = 4138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4125; + this.state = 4133; this.match(HiveSqlParser.KW_WHEN); - this.state = 4126; + this.state = 4134; this.expression(); - this.state = 4127; + this.state = 4135; this.match(HiveSqlParser.KW_THEN); - this.state = 4128; + this.state = 4136; this.expression(); } } - this.state = 4132; + this.state = 4140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4136; + this.state = 4144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4134; + this.state = 4142; this.match(HiveSqlParser.KW_ELSE); - this.state = 4135; + this.state = 4143; this.expression(); } } - this.state = 4138; + this.state = 4146; this.match(HiveSqlParser.KW_END); } } @@ -20668,46 +21196,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 568, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4140; + this.state = 4148; this.match(HiveSqlParser.KW_CASE); - this.state = 4146; + this.state = 4154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4141; + this.state = 4149; this.match(HiveSqlParser.KW_WHEN); - this.state = 4142; + this.state = 4150; this.expression(); - this.state = 4143; + this.state = 4151; this.match(HiveSqlParser.KW_THEN); - this.state = 4144; + this.state = 4152; this.expression(); } } - this.state = 4148; + this.state = 4156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4152; + this.state = 4160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4150; + this.state = 4158; this.match(HiveSqlParser.KW_ELSE); - this.state = 4151; + this.state = 4159; this.expression(); } } - this.state = 4154; + this.state = 4162; this.match(HiveSqlParser.KW_END); } } @@ -20727,30 +21255,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 570, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4156; + this.state = 4164; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4157; + this.state = 4165; this.match(HiveSqlParser.LPAREN); - this.state = 4158; + this.state = 4166; this.expression(); - this.state = 4161; + this.state = 4169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4159; + this.state = 4167; this.match(HiveSqlParser.KW_TO); - this.state = 4160; + this.state = 4168; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4163; + this.state = 4171; this.match(HiveSqlParser.RPAREN); } } @@ -20770,21 +21298,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 572, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4165; + this.state = 4173; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4166; + this.state = 4174; this.match(HiveSqlParser.LPAREN); - this.state = 4167; + this.state = 4175; localContext._timeUnit = this.timeQualifiers(); - this.state = 4168; + this.state = 4176; this.match(HiveSqlParser.KW_FROM); - this.state = 4169; + this.state = 4177; this.expression(); - this.state = 4170; + this.state = 4178; this.match(HiveSqlParser.RPAREN); } } @@ -20804,23 +21332,23 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 574, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4180; + this.state = 4188; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4172; + this.state = 4180; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4173; + this.state = 4181; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -20828,7 +21356,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4174; + this.state = 4182; this.month(); } break; @@ -20836,7 +21364,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4175; + this.state = 4183; this.week(); } break; @@ -20844,7 +21372,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4176; + this.state = 4184; this.day(); } break; @@ -20852,7 +21380,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4177; + this.state = 4185; this.hour(); } break; @@ -20860,7 +21388,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4178; + this.state = 4186; this.minute(); } break; @@ -20868,7 +21396,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4179; + this.state = 4187; this.second(); } break; @@ -20892,85 +21420,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 576, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4210; + this.state = 4218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4182; + this.state = 4190; localContext._value = this.intervalValue(); - this.state = 4183; + this.state = 4191; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4185; + this.state = 4193; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4186; + this.state = 4194; this.match(HiveSqlParser.KW_DATE); - this.state = 4187; + this.state = 4195; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4188; + this.state = 4196; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4189; + this.state = 4197; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4190; + this.state = 4198; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4191; + this.state = 4199; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4192; + this.state = 4200; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4193; + this.state = 4201; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4194; + this.state = 4202; this.match(HiveSqlParser.StringLiteral); - this.state = 4198; + this.state = 4206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4195; + this.state = 4203; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4200; + this.state = 4208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20979,59 +21507,59 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4201; + this.state = 4209; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4202; + this.state = 4210; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4203; + this.state = 4211; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4204; + this.state = 4212; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4205; + this.state = 4213; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4206; + this.state = 4214; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4207; + this.state = 4215; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4208; + this.state = 4216; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4209; - this.match(HiveSqlParser.Identifier); + this.state = 4217; + this.columnNamePath(); } break; } @@ -21052,12 +21580,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 578, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4212; + this.state = 4220; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21084,53 +21612,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 580, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4229; + this.state = 4237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4214; + this.state = 4222; this.match(HiveSqlParser.LPAREN); - this.state = 4215; + this.state = 4223; localContext._value = this.intervalValue(); - this.state = 4216; + this.state = 4224; this.match(HiveSqlParser.RPAREN); - this.state = 4217; + this.state = 4225; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4219; + this.state = 4227; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4225; + this.state = 4233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4220; + this.state = 4228; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4221; + this.state = 4229; this.match(HiveSqlParser.LPAREN); - this.state = 4222; + this.state = 4230; localContext._expr = this.expression(); - this.state = 4223; + this.state = 4231; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4227; + this.state = 4235; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21154,72 +21682,72 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 582, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4245; + this.state = 4253; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4231; + this.state = 4239; this.year(); - this.state = 4232; + this.state = 4240; this.match(HiveSqlParser.KW_TO); - this.state = 4233; + this.state = 4241; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4235; + this.state = 4243; this.day(); - this.state = 4236; + this.state = 4244; this.match(HiveSqlParser.KW_TO); - this.state = 4237; + this.state = 4245; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4239; + this.state = 4247; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4240; + this.state = 4248; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4241; + this.state = 4249; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4242; + this.state = 4250; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4243; + this.state = 4251; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4244; + this.state = 4252; this.second(); } break; @@ -21241,26 +21769,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 584, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4247; + this.state = 4255; this.precedenceAndExpression(); - this.state = 4252; + this.state = 4260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4248; + this.state = 4256; this.match(HiveSqlParser.KW_OR); - this.state = 4249; + this.state = 4257; this.precedenceAndExpression(); } } - this.state = 4254; + this.state = 4262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21282,85 +21810,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 586, HiveSqlParser.RULE_atomExpression); try { - this.state = 4266; + this.state = 4274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4255; + this.state = 4263; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4256; + this.state = 4264; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4257; + this.state = 4265; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4258; + this.state = 4266; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4259; + this.state = 4267; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4260; + this.state = 4268; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4261; + this.state = 4269; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4262; + this.state = 4270; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4263; + this.state = 4271; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4264; + this.state = 4272; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4265; + this.state = 4273; this.id_(); } break; @@ -21382,20 +21910,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 588, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4271; + this.state = 4279; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4268; + this.state = 4276; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -21407,35 +21935,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4273; + this.state = 4281; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); } - this.state = 4274; + this.state = 4282; this.atomExpression(); - this.state = 4283; + this.state = 4291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4281; + this.state = 4289; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4275; + this.state = 4283; this.match(HiveSqlParser.LSQUARE); - this.state = 4276; + this.state = 4284; this.expression(); - this.state = 4277; + this.state = 4285; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4279; + this.state = 4287; this.match(HiveSqlParser.DOT); - this.state = 4280; + this.state = 4288; this.id_(); } break; @@ -21443,7 +21971,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4285; + this.state = 4293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21465,26 +21993,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 590, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4286; + this.state = 4294; this.precedenceUnaryPrefixExpression(); - this.state = 4291; + this.state = 4299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4287; + this.state = 4295; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4288; + this.state = 4296; this.precedenceUnaryPrefixExpression(); } } - this.state = 4293; + this.state = 4301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21506,20 +22034,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 592, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4294; + this.state = 4302; this.precedenceBitwiseXorExpression(); - this.state = 4299; + this.state = 4307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4295; + this.state = 4303; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -21528,11 +22056,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4296; + this.state = 4304; this.precedenceBitwiseXorExpression(); } } - this.state = 4301; + this.state = 4309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21554,20 +22082,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 594, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4310; this.precedenceStarExpression(); - this.state = 4307; + this.state = 4315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4303; + this.state = 4311; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -21576,11 +22104,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4304; + this.state = 4312; this.precedenceStarExpression(); } } - this.state = 4309; + this.state = 4317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21602,26 +22130,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 596, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4310; + this.state = 4318; this.precedencePlusExpression(); - this.state = 4315; + this.state = 4323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4311; + this.state = 4319; this.match(HiveSqlParser.CONCATENATE); - this.state = 4312; + this.state = 4320; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4317; + this.state = 4325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21643,26 +22171,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4318; + this.state = 4326; this.precedenceConcatenateExpression(); - this.state = 4323; + this.state = 4331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4319; + this.state = 4327; this.match(HiveSqlParser.AMPERSAND); - this.state = 4320; + this.state = 4328; this.precedenceConcatenateExpression(); } } - this.state = 4325; + this.state = 4333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21684,26 +22212,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4326; + this.state = 4334; this.precedenceAmpersandExpression(); - this.state = 4331; + this.state = 4339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4327; + this.state = 4335; this.match(HiveSqlParser.BITWISEOR); - this.state = 4328; + this.state = 4336; this.precedenceAmpersandExpression(); } } - this.state = 4333; + this.state = 4341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21725,12 +22253,12 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceSimilarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4334; + this.state = 4342; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -21757,15 +22285,15 @@ export class HiveSqlParser extends SQLParserBase { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 604, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4336; + this.state = 4344; this.match(HiveSqlParser.LPAREN); - this.state = 4337; + this.state = 4345; this.selectStatement(); - this.state = 4338; + this.state = 4346; this.match(HiveSqlParser.RPAREN); } } @@ -21785,9 +22313,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4346; + this.state = 4354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22092,14 +22620,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4340; + this.state = 4348; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4342; + this.state = 4350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4341; + this.state = 4349; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22109,9 +22637,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4344; + this.state = 4352; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4345; + this.state = 4353; this.subQueryExpression(); } break; @@ -22135,33 +22663,33 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4354; + this.state = 4362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4348; + this.state = 4356; this.precedenceSimilarOperator(); - this.state = 4349; + this.state = 4357; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4351; + this.state = 4359; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4352; + this.state = 4360; this.match(HiveSqlParser.KW_NOT); - this.state = 4353; + this.state = 4361; this.precedenceSimilarExpressionPartNot(); } break; @@ -22183,40 +22711,40 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4370; + this.state = 4378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4356; + this.state = 4364; this.match(HiveSqlParser.KW_IN); - this.state = 4357; + this.state = 4365; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4358; + this.state = 4366; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4359; + this.state = 4367; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4360; + this.state = 4368; this.match(HiveSqlParser.KW_AND); - this.state = 4361; + this.state = 4369; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4363; + this.state = 4371; this.match(HiveSqlParser.KW_LIKE); - this.state = 4364; + this.state = 4372; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22225,7 +22753,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4365; + this.state = 4373; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22237,9 +22765,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4366; + this.state = 4374; this.subQuerySelectorOperator(); - this.state = 4367; + this.state = 4375; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -22248,7 +22776,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4368; + this.state = 4376; this.subQueryExpression(); } break; @@ -22272,22 +22800,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4374; + this.state = 4382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4372; + this.state = 4380; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4373; + this.state = 4381; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22309,16 +22837,16 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4379; + this.state = 4387; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4376; + this.state = 4384; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -22327,14 +22855,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4377; + this.state = 4385; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4378; + this.state = 4386; this.precedenceSimilarExpressionAtom(); } break; @@ -22356,15 +22884,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4381; + this.state = 4389; this.match(HiveSqlParser.KW_IS); - this.state = 4382; + this.state = 4390; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4383; + this.state = 4391; this.match(HiveSqlParser.KW_FROM); } } @@ -22384,42 +22912,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4392; + this.state = 4400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4385; + this.state = 4393; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4386; + this.state = 4394; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4387; + this.state = 4395; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4388; + this.state = 4396; this.match(HiveSqlParser.KW_IS); - this.state = 4389; + this.state = 4397; this.match(HiveSqlParser.KW_NOT); - this.state = 4390; + this.state = 4398; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4391; + this.state = 4399; this.match(HiveSqlParser.KW_FROM); } break; @@ -22443,38 +22971,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4394; + this.state = 4402; this.precedenceSimilarExpression(); - this.state = 4403; + this.state = 4411; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4401; + this.state = 4409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4395; + this.state = 4403; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4396; + this.state = 4404; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4398; + this.state = 4406; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4399; + this.state = 4407; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -22482,7 +23010,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4405; + this.state = 4413; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); } @@ -22504,46 +23032,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 622, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4412; + this.state = 4420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4406; + this.state = 4414; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4407; + this.state = 4415; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4408; + this.state = 4416; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4409; + this.state = 4417; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4410; + this.state = 4418; this.match(HiveSqlParser.KW_NOT); - this.state = 4411; + this.state = 4419; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -22574,38 +23102,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4417; + this.state = 4425; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4414; + this.state = 4422; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4419; + this.state = 4427; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); } - this.state = 4420; + this.state = 4428; this.precedenceEqualExpression(); - this.state = 4423; + this.state = 4431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4421; + this.state = 4429; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4422; + this.state = 4430; this.isCondition(); } } @@ -22628,26 +23156,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4433; this.precedenceNotExpression(); - this.state = 4430; + this.state = 4438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4426; + this.state = 4434; this.match(HiveSqlParser.KW_AND); - this.state = 4427; + this.state = 4435; this.precedenceNotExpression(); } } - this.state = 4432; + this.state = 4440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22669,19 +23197,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 628, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4441; this.tableName(); - this.state = 4435; + this.state = 4443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4434; + this.state = 4442; this.partitionSpec(); } } @@ -22704,34 +23232,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 630, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4437; + this.state = 4445; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4438; + this.state = 4446; this.match(HiveSqlParser.LPAREN); - this.state = 4439; + this.state = 4447; this.partitionVal(); - this.state = 4444; + this.state = 4452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4440; + this.state = 4448; this.match(HiveSqlParser.COMMA); - this.state = 4441; + this.state = 4449; this.partitionVal(); } } - this.state = 4446; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4447; + this.state = 4455; this.match(HiveSqlParser.RPAREN); } } @@ -22751,21 +23279,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 632, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4449; + this.state = 4457; this.id_(); - this.state = 4452; + this.state = 4460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4450; + this.state = 4458; this.match(HiveSqlParser.EQUAL); - this.state = 4451; + this.state = 4459; this.constant(); } } @@ -22788,32 +23316,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 634, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4454; + this.state = 4462; this.match(HiveSqlParser.LPAREN); - this.state = 4455; + this.state = 4463; this.partitionSelectorVal(); - this.state = 4460; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4456; + this.state = 4464; this.match(HiveSqlParser.COMMA); - this.state = 4457; + this.state = 4465; this.partitionSelectorVal(); } } - this.state = 4462; + this.state = 4470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4463; + this.state = 4471; this.match(HiveSqlParser.RPAREN); } } @@ -22833,18 +23361,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 636, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4465; + this.state = 4473; this.id_(); - this.state = 4468; + this.state = 4476; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4466; + this.state = 4474; this.match(HiveSqlParser.KW_LIKE); } break; @@ -22855,14 +23383,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4467; + this.state = 4475; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4470; + this.state = 4478; this.constant(); } } @@ -22882,12 +23410,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 638, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4472; + this.state = 4480; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -22914,12 +23442,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 640, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4474; + this.state = 4482; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -22946,15 +23474,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 642, HiveSqlParser.RULE_id_); try { - this.state = 4478; + this.state = 4486; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4484; this.match(HiveSqlParser.Identifier); } break; @@ -23199,7 +23727,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4477; + this.state = 4485; this.nonReserved(); } break; @@ -23223,21 +23751,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 644, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4488; this.id_(); - this.state = 4483; + this.state = 4491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4481; + this.state = 4489; this.match(HiveSqlParser.DOT); - this.state = 4482; + this.state = 4490; localContext._fn = this.id_(); } } @@ -23260,11 +23788,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 646, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4485; + this.state = 4493; this.id_(); } } @@ -23284,12 +23812,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 648, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4487; + this.state = 4495; _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)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -23316,12 +23844,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 650, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4497; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -23348,9 +23876,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 652, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4542; + this.state = 4550; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -23595,357 +24123,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4491; + this.state = 4499; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4492; + this.state = 4500; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4493; + this.state = 4501; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4494; + this.state = 4502; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4495; + this.state = 4503; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4496; + this.state = 4504; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4497; + this.state = 4505; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4498; + this.state = 4506; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4499; + this.state = 4507; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4500; + this.state = 4508; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4501; + this.state = 4509; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4502; + this.state = 4510; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4503; + this.state = 4511; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4504; + this.state = 4512; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4505; + this.state = 4513; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4506; + this.state = 4514; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4507; + this.state = 4515; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4508; + this.state = 4516; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4509; + this.state = 4517; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4510; + this.state = 4518; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4511; + this.state = 4519; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4512; + this.state = 4520; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4513; + this.state = 4521; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4514; + this.state = 4522; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4515; + this.state = 4523; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4516; + this.state = 4524; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4517; + this.state = 4525; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4518; + this.state = 4526; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4519; + this.state = 4527; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4520; + this.state = 4528; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4521; + this.state = 4529; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4522; + this.state = 4530; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4523; + this.state = 4531; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4524; + this.state = 4532; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4525; + this.state = 4533; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4526; + this.state = 4534; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4527; + this.state = 4535; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4528; + this.state = 4536; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4529; + this.state = 4537; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4530; + this.state = 4538; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4531; + this.state = 4539; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4532; + this.state = 4540; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4533; + this.state = 4541; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4534; + this.state = 4542; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4535; + this.state = 4543; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4536; + this.state = 4544; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4537; + this.state = 4545; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4538; + this.state = 4546; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4539; + this.state = 4547; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4540; + this.state = 4548; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4541; + this.state = 4549; this.match(HiveSqlParser.KW_AS); } break; @@ -23969,56 +24497,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 654, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4709; + this.state = 4717; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4544; + this.state = 4552; this.match(HiveSqlParser.KW_CREATE); - this.state = 4545; + this.state = 4553; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4546; + this.state = 4554; this.match(HiveSqlParser.KW_PLAN); - this.state = 4548; + this.state = 4556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4547; + this.state = 4555; this.ifNotExists(); } } - this.state = 4559; + this.state = 4567; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4550; + this.state = 4558; localContext._name = this.id_(); - this.state = 4551; + this.state = 4559; this.match(HiveSqlParser.KW_LIKE); - this.state = 4552; + this.state = 4560; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4554; + this.state = 4562; localContext._name = this.id_(); - this.state = 4557; + this.state = 4565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { case 1: { - this.state = 4555; + this.state = 4563; this.match(HiveSqlParser.KW_WITH); - this.state = 4556; + this.state = 4564; this.rpAssignList(); } break; @@ -24031,57 +24559,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4561; + this.state = 4569; this.match(HiveSqlParser.KW_ALTER); - this.state = 4562; + this.state = 4570; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4563; + this.state = 4571; this.match(HiveSqlParser.KW_PLAN); - this.state = 4564; + this.state = 4572; localContext._name = this.id_(); - this.state = 4589; + this.state = 4597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4565; + this.state = 4573; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4566; + this.state = 4574; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4567; + this.state = 4575; this.match(HiveSqlParser.KW_SET); - this.state = 4568; + this.state = 4576; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4569; + this.state = 4577; this.match(HiveSqlParser.KW_UNSET); - this.state = 4570; + this.state = 4578; this.rpUnassign(); - this.state = 4575; + this.state = 4583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4571; + this.state = 4579; this.match(HiveSqlParser.COMMA); - this.state = 4572; + this.state = 4580; this.rpUnassign(); } } - this.state = 4577; + this.state = 4585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24089,24 +24617,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4578; + this.state = 4586; this.match(HiveSqlParser.KW_RENAME); - this.state = 4579; + this.state = 4587; this.match(HiveSqlParser.KW_TO); - this.state = 4580; + this.state = 4588; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4581; + this.state = 4589; this.activate(); - this.state = 4583; + this.state = 4591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: { - this.state = 4582; + this.state = 4590; this.enable(); } break; @@ -24116,14 +24644,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4585; + this.state = 4593; this.enable(); - this.state = 4587; + this.state = 4595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4586; + this.state = 4594; this.activate(); } } @@ -24138,88 +24666,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4591; + this.state = 4599; this.match(HiveSqlParser.KW_DROP); - this.state = 4592; + this.state = 4600; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4593; + this.state = 4601; this.match(HiveSqlParser.KW_PLAN); - this.state = 4595; + this.state = 4603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4594; + this.state = 4602; this.ifExists(); } } - this.state = 4597; + this.state = 4605; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4600; + this.state = 4608; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4598; + this.state = 4606; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4599; + this.state = 4607; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4602; + this.state = 4610; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4603; + this.state = 4611; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4605; + this.state = 4613; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4617; + this.state = 4625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4606; + this.state = 4614; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4607; + this.state = 4615; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4608; + this.state = 4616; this.match(HiveSqlParser.KW_PLAN); - this.state = 4609; + this.state = 4617; this.match(HiveSqlParser.KW_WITH); - this.state = 4610; + this.state = 4618; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4611; + this.state = 4619; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4612; + this.state = 4620; this.match(HiveSqlParser.KW_PLAN); - this.state = 4613; + this.state = 4621; localContext._dest = this.id_(); - this.state = 4614; + this.state = 4622; this.match(HiveSqlParser.KW_WITH); - this.state = 4615; + this.state = 4623; localContext._src = this.id_(); } break; @@ -24231,93 +24759,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4619; + this.state = 4627; this.match(HiveSqlParser.KW_CREATE); - this.state = 4620; + this.state = 4628; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4621; + this.state = 4629; localContext._rpName = this.id_(); - this.state = 4622; + this.state = 4630; this.match(HiveSqlParser.DOT); - this.state = 4623; + this.state = 4631; localContext._triggerName = this.id_(); - this.state = 4624; + this.state = 4632; this.match(HiveSqlParser.KW_WHEN); - this.state = 4625; + this.state = 4633; this.triggerAtomExpression(); - this.state = 4626; + this.state = 4634; this.match(HiveSqlParser.KW_DO); - this.state = 4627; + this.state = 4635; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4629; + this.state = 4637; this.match(HiveSqlParser.KW_ALTER); - this.state = 4630; + this.state = 4638; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4631; + this.state = 4639; localContext._rpName = this.id_(); - this.state = 4632; + this.state = 4640; this.match(HiveSqlParser.DOT); - this.state = 4633; + this.state = 4641; localContext._triggerName = this.id_(); - this.state = 4650; + this.state = 4658; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4634; + this.state = 4642; this.match(HiveSqlParser.KW_WHEN); - this.state = 4635; + this.state = 4643; this.triggerAtomExpression(); - this.state = 4636; + this.state = 4644; this.match(HiveSqlParser.KW_DO); - this.state = 4637; + this.state = 4645; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4643; + this.state = 4651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4639; + this.state = 4647; this.match(HiveSqlParser.KW_ADD); - this.state = 4640; + this.state = 4648; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4641; + this.state = 4649; this.match(HiveSqlParser.KW_DROP); - this.state = 4642; + this.state = 4650; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4648; + this.state = 4656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4645; + this.state = 4653; this.match(HiveSqlParser.KW_POOL); - this.state = 4646; + this.state = 4654; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4647; + this.state = 4655; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -24334,73 +24862,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4652; + this.state = 4660; this.match(HiveSqlParser.KW_DROP); - this.state = 4653; + this.state = 4661; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4654; + this.state = 4662; localContext._rpName = this.id_(); - this.state = 4655; + this.state = 4663; this.match(HiveSqlParser.DOT); - this.state = 4656; + this.state = 4664; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4658; + this.state = 4666; this.match(HiveSqlParser.KW_CREATE); - this.state = 4659; + this.state = 4667; this.match(HiveSqlParser.KW_POOL); - this.state = 4660; + this.state = 4668; localContext._rpName = this.id_(); - this.state = 4661; + this.state = 4669; this.match(HiveSqlParser.DOT); - this.state = 4662; + this.state = 4670; this.poolPath(); - this.state = 4663; + this.state = 4671; this.match(HiveSqlParser.KW_WITH); - this.state = 4664; + this.state = 4672; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4666; + this.state = 4674; this.match(HiveSqlParser.KW_ALTER); - this.state = 4667; + this.state = 4675; this.match(HiveSqlParser.KW_POOL); - this.state = 4668; + this.state = 4676; localContext._rpName = this.id_(); - this.state = 4669; + this.state = 4677; this.match(HiveSqlParser.DOT); - this.state = 4670; - this.poolPath(); this.state = 4678; + this.poolPath(); + this.state = 4686; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4671; + this.state = 4679; this.match(HiveSqlParser.KW_SET); - this.state = 4672; + this.state = 4680; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4673; + this.state = 4681; this.match(HiveSqlParser.KW_UNSET); - this.state = 4674; + this.state = 4682; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4675; + this.state = 4683; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -24409,9 +24937,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4676; + this.state = 4684; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4677; + this.state = 4685; localContext._triggerName = this.id_(); } break; @@ -24423,22 +24951,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4680; + this.state = 4688; this.match(HiveSqlParser.KW_DROP); - this.state = 4681; + this.state = 4689; this.match(HiveSqlParser.KW_POOL); - this.state = 4682; + this.state = 4690; localContext._rpName = this.id_(); - this.state = 4683; + this.state = 4691; this.match(HiveSqlParser.DOT); - this.state = 4684; + this.state = 4692; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4686; + this.state = 4694; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -24447,46 +24975,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4687; + this.state = 4695; localContext._mappingType = this.mappingTypes(); - this.state = 4688; + this.state = 4696; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4689; + this.state = 4697; this.match(HiveSqlParser.StringLiteral); - this.state = 4690; + this.state = 4698; this.match(HiveSqlParser.KW_IN); - this.state = 4691; + this.state = 4699; localContext._rpName = this.id_(); - this.state = 4695; + this.state = 4703; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4692; + this.state = 4700; this.match(HiveSqlParser.KW_TO); - this.state = 4693; + this.state = 4701; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4694; + this.state = 4702; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4700; + this.state = 4708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4697; + this.state = 4705; this.match(HiveSqlParser.KW_WITH); - this.state = 4698; + this.state = 4706; this.match(HiveSqlParser.KW_ORDER); - this.state = 4699; + this.state = 4707; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -24496,17 +25024,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4702; + this.state = 4710; this.match(HiveSqlParser.KW_DROP); - this.state = 4703; + this.state = 4711; localContext._mappingType = this.mappingTypes(); - this.state = 4704; + this.state = 4712; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4705; + this.state = 4713; this.match(HiveSqlParser.StringLiteral); - this.state = 4706; + this.state = 4714; this.match(HiveSqlParser.KW_IN); - this.state = 4707; + this.state = 4715; localContext._rpName = this.id_(); } break; @@ -24528,12 +25056,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 656, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4711; + this.state = 4719; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -24560,32 +25088,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 658, HiveSqlParser.RULE_rpAssign); try { - this.state = 4720; + this.state = 4728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4713; + this.state = 4721; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4714; + this.state = 4722; this.match(HiveSqlParser.EQUAL); - this.state = 4715; + this.state = 4723; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4716; + this.state = 4724; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4717; + this.state = 4725; this.match(HiveSqlParser.KW_POOL); - this.state = 4718; + this.state = 4726; this.match(HiveSqlParser.EQUAL); - this.state = 4719; + this.state = 4727; this.poolPath(); } break; @@ -24609,26 +25137,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 660, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4722; + this.state = 4730; this.rpAssign(); - this.state = 4727; + this.state = 4735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4723; + this.state = 4731; this.match(HiveSqlParser.COMMA); - this.state = 4724; + this.state = 4732; this.rpAssign(); } } - this.state = 4729; + this.state = 4737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24650,24 +25178,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 662, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4733; + this.state = 4741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4730; + this.state = 4738; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4731; + this.state = 4739; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4732; + this.state = 4740; this.match(HiveSqlParser.KW_POOL); } break; @@ -24691,20 +25219,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 664, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4735; + this.state = 4743; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4738; + this.state = 4746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4736; + this.state = 4744; this.match(HiveSqlParser.KW_WITH); - this.state = 4737; + this.state = 4745; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -24727,12 +25255,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 666, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4740; + this.state = 4748; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -24759,12 +25287,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 668, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4742; + this.state = 4750; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -24791,12 +25319,12 @@ export class HiveSqlParser extends SQLParserBase { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_year); + this.enterRule(localContext, 670, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4744; + this.state = 4752; _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); @@ -24823,12 +25351,12 @@ export class HiveSqlParser extends SQLParserBase { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_month); + this.enterRule(localContext, 672, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4746; + this.state = 4754; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -24855,12 +25383,12 @@ export class HiveSqlParser extends SQLParserBase { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_week); + this.enterRule(localContext, 674, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4748; + this.state = 4756; _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -24887,12 +25415,12 @@ export class HiveSqlParser extends SQLParserBase { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_day); + this.enterRule(localContext, 676, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4750; + this.state = 4758; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -24919,12 +25447,12 @@ export class HiveSqlParser extends SQLParserBase { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 678, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4752; + this.state = 4760; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -24951,12 +25479,12 @@ export class HiveSqlParser extends SQLParserBase { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 680, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4754; + this.state = 4762; _la = this.tokenStream.LA(1); if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -24983,12 +25511,12 @@ export class HiveSqlParser extends SQLParserBase { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_second); + this.enterRule(localContext, 682, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4756; + this.state = 4764; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -25015,12 +25543,12 @@ export class HiveSqlParser extends SQLParserBase { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 684, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4758; + this.state = 4766; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -25047,28 +25575,28 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 686, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4760; + this.state = 4768; this.id_(); - this.state = 4765; + this.state = 4773; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4761; + this.state = 4769; this.match(HiveSqlParser.DOT); - this.state = 4762; + this.state = 4770; this.id_(); } } } - this.state = 4767; + this.state = 4775; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); } @@ -25090,16 +25618,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 688, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4768; + this.state = 4776; this.id_(); - this.state = 4769; + this.state = 4777; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4770; + this.state = 4778; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25126,26 +25654,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 690, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4776; + this.state = 4784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4772; + this.state = 4780; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4773; + this.state = 4781; this.match(HiveSqlParser.KW_MOVE); - this.state = 4774; + this.state = 4782; this.match(HiveSqlParser.KW_TO); - this.state = 4775; + this.state = 4783; this.poolPath(); } break; @@ -25169,50 +25697,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 692, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4790; + this.state = 4798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4778; + this.state = 4786; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4779; + this.state = 4787; this.match(HiveSqlParser.EQUAL); - this.state = 4780; + this.state = 4788; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4781; + this.state = 4789; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4782; + this.state = 4790; this.match(HiveSqlParser.EQUAL); - this.state = 4783; + this.state = 4791; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4784; + this.state = 4792; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4785; + this.state = 4793; this.match(HiveSqlParser.EQUAL); - this.state = 4786; + this.state = 4794; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4787; + this.state = 4795; this.match(HiveSqlParser.KW_PATH); - this.state = 4788; + this.state = 4796; this.match(HiveSqlParser.EQUAL); - this.state = 4789; + this.state = 4797; localContext._path = this.poolPath(); } break; @@ -25237,26 +25765,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 694, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4792; + this.state = 4800; this.poolAssign(); - this.state = 4797; + this.state = 4805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4793; + this.state = 4801; this.match(HiveSqlParser.COMMA); - this.state = 4794; + this.state = 4802; this.poolAssign(); } } - this.state = 4799; + this.state = 4807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25293,7 +25821,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,438,4801,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,438,4809,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, @@ -25353,2076 +25881,2078 @@ export class HiveSqlParser extends SQLParserBase { 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, - 1,0,5,0,694,8,0,10,0,12,0,697,9,0,1,0,1,0,1,1,1,1,3,1,703,8,1,1, - 1,3,1,706,8,1,1,2,1,2,5,2,710,8,2,10,2,12,2,713,9,2,1,2,1,2,1,2, - 3,2,718,8,2,1,3,1,3,1,3,1,3,1,3,3,3,725,8,3,1,3,1,3,1,3,1,3,1,3, - 1,3,1,3,1,3,3,3,735,8,3,1,3,3,3,738,8,3,1,3,1,3,3,3,742,8,3,1,4, - 1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,757,8,5,1,5, - 1,5,1,5,1,5,1,5,3,5,764,8,5,1,5,1,5,1,5,1,5,3,5,770,8,5,1,5,1,5, - 1,5,3,5,775,8,5,1,5,1,5,1,5,3,5,780,8,5,1,5,3,5,783,8,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,1,5,1,5, - 1,5,1,5,5,5,805,8,5,10,5,12,5,808,9,5,1,5,1,5,5,5,812,8,5,10,5,12, - 5,815,9,5,3,5,817,8,5,1,6,1,6,1,6,3,6,822,8,6,1,6,1,6,1,6,3,6,827, - 8,6,1,6,1,6,1,6,1,6,3,6,833,8,6,1,7,1,7,3,7,837,8,7,1,7,1,7,1,7, - 1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,850,8,8,1,9,1,9,3,9,854,8,9, - 1,9,1,9,3,9,858,8,9,1,9,1,9,1,9,3,9,863,8,9,1,10,1,10,1,10,1,10, - 1,10,3,10,870,8,10,1,10,1,10,3,10,874,8,10,1,11,1,11,1,11,3,11,879, - 8,11,1,12,1,12,1,12,1,12,1,12,3,12,886,8,12,1,12,1,12,3,12,890,8, - 12,1,13,1,13,1,13,3,13,895,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1, + 2,346,7,346,2,347,7,347,1,0,5,0,698,8,0,10,0,12,0,701,9,0,1,0,1, + 0,1,1,1,1,3,1,707,8,1,1,1,3,1,710,8,1,1,2,1,2,5,2,714,8,2,10,2,12, + 2,717,9,2,1,2,1,2,1,2,3,2,722,8,2,1,3,1,3,1,3,1,3,1,3,3,3,729,8, + 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,739,8,3,1,3,3,3,742,8,3,1, + 3,1,3,3,3,746,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,3,5,761,8,5,1,5,1,5,1,5,1,5,1,5,3,5,768,8,5,1,5,1,5,1,5,1, + 5,3,5,774,8,5,1,5,1,5,1,5,3,5,779,8,5,1,5,1,5,1,5,3,5,784,8,5,1, + 5,3,5,787,8,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,1,5,1,5,1,5,1,5,5,5,809,8,5,10,5,12,5,812,9,5,1,5, + 1,5,5,5,816,8,5,10,5,12,5,819,9,5,3,5,821,8,5,1,6,1,6,1,6,3,6,826, + 8,6,1,6,1,6,1,6,3,6,831,8,6,1,6,1,6,1,6,1,6,3,6,837,8,6,1,7,1,7, + 3,7,841,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,854, + 8,8,1,9,1,9,3,9,858,8,9,1,9,1,9,3,9,862,8,9,1,9,1,9,1,9,3,9,867, + 8,9,1,10,1,10,1,10,1,10,1,10,3,10,874,8,10,1,10,1,10,3,10,878,8, + 10,1,11,1,11,1,11,3,11,883,8,11,1,12,1,12,1,12,1,12,1,12,3,12,890, + 8,12,1,12,1,12,3,12,894,8,12,1,13,1,13,1,13,3,13,899,8,13,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,941, - 8,14,11,14,12,14,942,1,14,1,14,1,14,4,14,948,8,14,11,14,12,14,949, - 1,14,1,14,1,14,3,14,955,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16, - 1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21, - 1,21,3,21,978,8,21,1,21,1,21,3,21,982,8,21,1,21,1,21,3,21,986,8, - 21,1,21,3,21,989,8,21,1,21,1,21,3,21,993,8,21,1,21,1,21,1,21,3,21, - 998,8,21,1,21,1,21,1,21,1,21,3,21,1004,8,21,1,21,1,21,3,21,1008, - 8,21,1,21,1,21,1,21,1,21,3,21,1014,8,21,3,21,1016,8,21,1,22,1,22, - 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1027,8,24,1,24,1,24,3,24, - 1031,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1038,8,26,1,26,1,26,1,26, - 1,26,1,26,1,26,3,26,1046,8,26,1,26,3,26,1049,8,26,1,27,1,27,1,27, - 3,27,1054,8,27,1,27,1,27,3,27,1058,8,27,1,27,3,27,1061,8,27,1,28, - 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1071,8,29,1,29,1,29,1,29, - 1,29,1,29,1,29,3,29,1079,8,29,5,29,1081,8,29,10,29,12,29,1084,9, - 29,3,29,1086,8,29,1,30,1,30,3,30,1090,8,30,1,31,1,31,3,31,1094,8, - 31,1,31,3,31,1097,8,31,1,32,1,32,1,32,3,32,1102,8,32,1,32,1,32,1, - 32,1,32,3,32,1108,8,32,1,32,1,32,1,32,3,32,1113,8,32,1,32,1,32,1, - 32,3,32,1118,8,32,1,32,1,32,3,32,1122,8,32,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,3,33,1133,8,33,3,33,1135,8,33,1,33,1,33,3, - 33,1139,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1149,8, - 36,1,36,1,36,3,36,1153,8,36,1,36,1,36,1,36,1,36,3,36,1159,8,36,1, - 36,3,36,1162,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1169,8,36,1,36,1, - 36,1,36,3,36,1174,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1182,8, - 36,1,36,1,36,1,36,3,36,1187,8,36,1,36,1,36,3,36,1191,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,3,36,1199,8,36,1,36,1,36,1,36,3,36,1204,8, - 36,1,36,1,36,1,36,1,36,3,36,1210,8,36,1,36,1,36,1,36,1,36,3,36,1216, - 8,36,1,36,3,36,1219,8,36,1,36,3,36,1222,8,36,1,36,3,36,1225,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1234,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,3,36,1242,8,36,1,36,1,36,1,36,3,36,1247,8,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1255,8,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1262,8,36,1,36,3,36,1265,8,36,1,36,3,36,1268,8,36,3,36,1270, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1281,8,36, - 3,36,1283,8,36,1,36,3,36,1286,8,36,1,36,3,36,1289,8,36,1,36,3,36, - 1292,8,36,1,36,3,36,1295,8,36,1,36,3,36,1298,8,36,3,36,1300,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1312,8,36, - 1,36,1,36,1,36,1,36,3,36,1318,8,36,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1326,8,36,3,36,1328,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,3,37,1338,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, - 1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43, - 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1371,8,45,1,45, - 1,45,1,45,3,45,1376,8,45,1,46,1,46,3,46,1380,8,46,1,46,1,46,3,46, - 1384,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1391,8,47,1,47,1,47,1,47, - 5,47,1396,8,47,10,47,12,47,1399,9,47,1,47,1,47,1,47,3,47,1404,8, - 47,1,48,1,48,3,48,1408,8,48,1,48,3,48,1411,8,48,1,48,1,48,1,48,5, - 48,1416,8,48,10,48,12,48,1419,9,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,3,52,1441,8,52,1,53,1,53,1,53,3,53,1446,8,53,1,53,1,53,3,53, - 1450,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1458,8,55,1,56,1,56, - 1,56,1,57,1,57,1,57,1,57,3,57,1467,8,57,1,57,1,57,1,57,1,57,1,57, - 3,57,1474,8,57,1,58,1,58,1,58,1,58,3,58,1480,8,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1487,8,58,1,58,3,58,1490,8,58,1,58,1,58,1,58,1,58, - 3,58,1496,8,58,1,59,1,59,1,59,5,59,1501,8,59,10,59,12,59,1504,9, - 59,1,60,1,60,1,60,1,60,1,60,3,60,1511,8,60,1,61,1,61,1,62,1,62,1, - 62,5,62,1518,8,62,10,62,12,62,1521,9,62,1,63,1,63,1,63,1,63,1,63, - 1,63,3,63,1529,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1536,8,64,1,65, - 1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,1,69,1,69,3,69,1556,8,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1563,8,69,3,69,1565,8,69,1,70,1,70,1,70,5,70,1570,8,70,10,70,12, - 70,1573,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1582,8,73,1, - 73,1,73,1,73,1,73,1,73,1,73,3,73,1590,8,73,1,74,1,74,3,74,1594,8, - 74,1,74,1,74,3,74,1598,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, - 76,1,76,1,76,1,76,3,76,1611,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, - 77,3,77,1620,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,3,78,1636,8,78,1,78,1,78,3,78,1640,8,78,1, - 78,1,78,1,78,3,78,1645,8,78,1,78,1,78,1,78,3,78,1650,8,78,1,78,3, - 78,1653,8,78,1,78,3,78,1656,8,78,1,78,3,78,1659,8,78,1,78,3,78,1662, - 8,78,1,78,3,78,1665,8,78,1,79,1,79,1,79,3,79,1670,8,79,1,79,1,79, - 1,79,1,79,1,80,1,80,1,80,3,80,1679,8,80,1,80,1,80,3,80,1683,8,80, - 1,80,1,80,1,80,1,80,1,80,3,80,1690,8,80,1,80,3,80,1693,8,80,1,80, - 3,80,1696,8,80,1,80,3,80,1699,8,80,1,80,1,80,1,80,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,3,81,1711,8,81,1,81,1,81,1,82,1,82,3,82,1717, - 8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85, - 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87, - 1743,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1751,8,88,1,88,1,88, - 3,88,1755,8,88,1,88,3,88,1758,8,88,1,88,3,88,1761,8,88,1,88,3,88, - 1764,8,88,1,88,3,88,1767,8,88,1,88,3,88,1770,8,88,1,88,3,88,1773, - 8,88,1,88,3,88,1776,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, - 1785,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1795,8,90, - 1,90,3,90,1798,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,3,93,1818,8,93,1,94, - 1,94,1,94,1,94,3,94,1824,8,94,1,94,1,94,1,94,1,94,3,94,1830,8,94, - 1,94,3,94,1833,8,94,3,94,1835,8,94,1,95,1,95,1,95,1,95,1,96,3,96, - 1842,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1849,8,97,1,98,1,98,1,98, - 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1862,8,100,1, - 100,1,100,1,100,3,100,1867,8,100,1,100,1,100,1,101,1,101,1,101,5, - 101,1874,8,101,10,101,12,101,1877,9,101,1,102,1,102,1,102,5,102, - 1882,8,102,10,102,12,102,1885,9,102,1,103,1,103,1,103,1,103,1,103, - 3,103,1892,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,3,103,1905,8,103,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1918,8,104,1,104,1,104, - 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,3,105,1934,8,105,1,106,1,106,3,106,1938,8,106,1,107,1,107, - 1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 3,109,1953,8,109,1,110,1,110,1,110,1,110,3,110,1959,8,110,1,110, - 3,110,1962,8,110,1,110,3,110,1965,8,110,1,110,3,110,1968,8,110,1, - 110,3,110,1971,8,110,1,111,1,111,3,111,1975,8,111,1,112,1,112,1, - 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,1988,8, - 114,10,114,12,114,1991,9,114,3,114,1993,8,114,1,115,1,115,1,115, - 1,115,1,116,1,116,1,116,5,116,2002,8,116,10,116,12,116,2005,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,2018,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2052,8,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,2060,8,123,1,123,1,123,1,123,3,123,2065,8,123,1,123,1,123, - 1,123,1,123,1,123,1,123,3,123,2073,8,123,1,123,1,123,1,123,3,123, - 2078,8,123,1,123,1,123,1,123,3,123,2083,8,123,1,124,1,124,1,124, - 5,124,2088,8,124,10,124,12,124,2091,9,124,1,125,1,125,1,125,5,125, - 2096,8,125,10,125,12,125,2099,9,125,1,126,1,126,1,126,5,126,2104, - 8,126,10,126,12,126,2107,9,126,1,127,1,127,1,127,5,127,2112,8,127, - 10,127,12,127,2115,9,127,1,128,1,128,3,128,2119,8,128,1,129,1,129, - 1,130,1,130,1,130,1,130,1,130,1,130,3,130,2129,8,130,5,130,2131, - 8,130,10,130,12,130,2134,9,130,1,131,1,131,1,131,5,131,2139,8,131, - 10,131,12,131,2142,9,131,1,132,1,132,1,132,1,132,1,133,1,133,3,133, - 2150,8,133,1,133,3,133,2153,8,133,1,134,1,134,3,134,2157,8,134,1, - 135,1,135,1,136,1,136,1,136,3,136,2164,8,136,1,137,1,137,1,138,1, - 138,3,138,2170,8,138,1,138,1,138,3,138,2174,8,138,1,139,1,139,1, - 139,1,139,3,139,2180,8,139,1,140,1,140,3,140,2184,8,140,1,141,1, - 141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,3,143,2196,8, - 143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,2205,8,143,1, - 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,2216,8, - 144,1,145,1,145,3,145,2220,8,145,1,146,1,146,1,146,5,146,2225,8, - 146,10,146,12,146,2228,9,146,1,147,1,147,1,147,1,147,1,148,1,148, - 1,148,5,148,2237,8,148,10,148,12,148,2240,9,148,1,149,1,149,1,150, - 1,150,1,150,1,151,1,151,3,151,2249,8,151,1,151,3,151,2252,8,151, - 1,152,1,152,1,152,5,152,2257,8,152,10,152,12,152,2260,9,152,1,153, - 1,153,1,153,3,153,2265,8,153,1,154,1,154,3,154,2269,8,154,1,154, - 3,154,2272,8,154,1,154,3,154,2275,8,154,1,155,1,155,1,155,1,155, - 3,155,2281,8,155,1,156,1,156,3,156,2285,8,156,1,157,1,157,3,157, - 2289,8,157,1,158,1,158,1,158,3,158,2294,8,158,1,158,1,158,3,158, - 2298,8,158,1,159,1,159,3,159,2302,8,159,1,160,1,160,3,160,2306,8, - 160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,2314,8,160,1,161,1, - 161,3,161,2318,8,161,1,161,1,161,3,161,2322,8,161,1,162,1,162,3, - 162,2326,8,162,1,163,1,163,3,163,2330,8,163,1,163,1,163,1,163,1, - 163,1,163,1,163,3,163,2338,8,163,1,164,1,164,3,164,2342,8,164,1, - 164,1,164,3,164,2346,8,164,1,165,1,165,1,165,1,165,1,165,1,165,3, - 165,2354,8,165,1,166,1,166,1,166,3,166,2359,8,166,1,167,1,167,1, - 167,3,167,2364,8,167,1,168,1,168,3,168,2368,8,168,1,169,1,169,3, - 169,2372,8,169,1,170,1,170,1,170,1,170,1,170,3,170,2379,8,170,1, - 171,1,171,1,172,1,172,1,172,5,172,2386,8,172,10,172,12,172,2389, - 9,172,1,173,1,173,1,173,1,173,1,173,3,173,2396,8,173,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2408,8,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,3,174,2426,8,174,1,174,3,174,2429, - 8,174,1,174,1,174,1,174,1,174,3,174,2435,8,174,1,175,1,175,1,175, - 1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,179,1,179,3,179, - 2461,8,179,1,180,3,180,2464,8,180,1,180,1,180,1,181,1,181,3,181, - 2470,8,181,1,182,1,182,1,182,1,182,5,182,2476,8,182,10,182,12,182, - 2479,9,182,1,183,1,183,1,183,1,183,1,183,3,183,2486,8,183,1,183, - 1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,5,184,2497,8,184, - 10,184,12,184,2500,9,184,1,185,1,185,1,185,1,185,3,185,2506,8,185, - 1,185,3,185,2509,8,185,1,185,3,185,2512,8,185,1,185,3,185,2515,8, - 185,1,185,3,185,2518,8,185,1,185,3,185,2521,8,185,1,185,3,185,2524, - 8,185,1,185,3,185,2527,8,185,1,185,3,185,2530,8,185,1,185,3,185, - 2533,8,185,1,185,3,185,2536,8,185,1,185,1,185,1,185,3,185,2541,8, - 185,1,185,3,185,2544,8,185,1,185,3,185,2547,8,185,1,185,3,185,2550, - 8,185,1,185,3,185,2553,8,185,1,185,3,185,2556,8,185,1,185,3,185, - 2559,8,185,1,185,3,185,2562,8,185,1,185,3,185,2565,8,185,1,185,3, - 185,2568,8,185,1,185,3,185,2571,8,185,3,185,2573,8,185,1,186,1,186, - 1,186,1,186,3,186,2579,8,186,1,187,1,187,3,187,2583,8,187,1,187, - 3,187,2586,8,187,1,187,3,187,2589,8,187,1,187,3,187,2592,8,187,1, - 187,3,187,2595,8,187,1,187,3,187,2598,8,187,1,187,1,187,1,187,1, - 187,1,187,3,187,2605,8,187,1,188,1,188,3,188,2609,8,188,1,188,3, - 188,2612,8,188,1,188,3,188,2615,8,188,1,188,3,188,2618,8,188,1,188, - 3,188,2621,8,188,1,188,3,188,2624,8,188,1,189,1,189,1,189,4,189, - 2629,8,189,11,189,12,189,2630,1,190,3,190,2634,8,190,1,190,1,190, - 1,191,1,191,1,191,1,191,3,191,2642,8,191,1,191,1,191,3,191,2646, - 8,191,1,191,1,191,1,191,1,191,1,191,3,191,2653,8,191,3,191,2655, - 8,191,1,192,3,192,2658,8,192,1,192,1,192,1,192,3,192,2663,8,192, - 1,192,3,192,2666,8,192,1,192,1,192,3,192,2670,8,192,1,193,1,193, - 1,193,3,193,2675,8,193,1,193,1,193,1,193,1,193,3,193,2681,8,193, - 1,194,1,194,1,194,1,194,1,195,1,195,3,195,2689,8,195,1,196,1,196, - 1,196,1,196,5,196,2695,8,196,10,196,12,196,2698,9,196,1,197,1,197, - 1,197,1,197,1,197,5,197,2705,8,197,10,197,12,197,2708,9,197,3,197, - 2710,8,197,1,197,1,197,3,197,2714,8,197,1,197,1,197,3,197,2718,8, - 197,1,197,1,197,1,197,3,197,2723,8,197,1,198,1,198,1,198,1,198,1, - 198,3,198,2730,8,198,1,199,1,199,5,199,2734,8,199,10,199,12,199, - 2737,9,199,1,199,3,199,2740,8,199,1,200,1,200,1,200,1,200,1,200, - 3,200,2747,8,200,1,200,1,200,1,200,3,200,2752,8,200,1,200,1,200, - 1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,3,201,2765, - 8,201,1,202,1,202,1,202,1,202,1,202,1,202,3,202,2773,8,202,1,203, - 1,203,1,203,1,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,3,206,2792,8,206,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,3,206,2802,8,206,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,3,206,2815,8,206, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2825,8,207, - 1,207,1,207,3,207,2829,8,207,4,207,2831,8,207,11,207,12,207,2832, - 1,207,1,207,5,207,2837,8,207,10,207,12,207,2840,9,207,1,207,1,207, - 5,207,2844,8,207,10,207,12,207,2847,9,207,1,207,1,207,5,207,2851, - 8,207,10,207,12,207,2854,9,207,1,207,1,207,1,207,1,207,1,207,1,207, - 3,207,2862,8,207,1,207,1,207,1,207,1,207,1,207,3,207,2869,8,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2889,8,207,1,207, - 3,207,2892,8,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,3,207,2906,8,207,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2921, - 8,208,1,208,1,208,3,208,2925,8,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 5,208,2943,8,208,10,208,12,208,2946,9,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,3,208,2957,8,208,1,208,1,208,1,208, - 1,208,3,208,2963,8,208,1,208,3,208,2966,8,208,1,208,3,208,2969,8, - 208,1,208,1,208,1,208,1,208,3,208,2975,8,208,1,208,1,208,1,208,1, - 208,3,208,2981,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2988,8, - 208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2996,8,208,1,208,1, - 208,1,208,1,208,3,208,3002,8,208,1,208,1,208,3,208,3006,8,208,1, - 208,1,208,1,208,3,208,3011,8,208,1,208,3,208,3014,8,208,1,208,1, - 208,3,208,3018,8,208,1,208,1,208,1,208,1,208,1,208,3,208,3025,8, - 208,1,208,1,208,1,208,3,208,3030,8,208,1,208,1,208,1,208,3,208,3035, - 8,208,1,208,3,208,3038,8,208,3,208,3040,8,208,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,3048,8,209,1,209,1,209,1,209,1,209,1,209, - 1,209,3,209,3056,8,209,1,209,1,209,3,209,3060,8,209,4,209,3062,8, - 209,11,209,12,209,3063,1,209,1,209,3,209,3068,8,209,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,3,210,3085,8,210,1,211,1,211,1,211,1,211,1,211,1,211, - 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3102, - 8,211,1,212,1,212,1,212,1,213,1,213,3,213,3109,8,213,1,213,1,213, - 1,213,1,213,1,213,5,213,3116,8,213,10,213,12,213,3119,9,213,1,213, - 1,213,3,213,3123,8,213,1,213,3,213,3126,8,213,1,213,3,213,3129,8, - 213,1,214,1,214,3,214,3133,8,214,1,214,1,214,1,214,1,215,1,215,1, - 215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215,3148,8,215,1, - 215,1,215,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 1,216,3,216,3162,8,216,1,216,3,216,3165,8,216,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,217,3,217,3176,8,217,1,218,1,218, - 3,218,3180,8,218,1,218,3,218,3183,8,218,1,218,3,218,3186,8,218,1, - 218,1,218,3,218,3190,8,218,1,218,1,218,1,218,3,218,3195,8,218,1, - 218,3,218,3198,8,218,1,218,3,218,3201,8,218,1,218,3,218,3204,8,218, - 1,218,3,218,3207,8,218,1,218,3,218,3210,8,218,1,218,1,218,1,218, - 1,218,3,218,3216,8,218,1,218,3,218,3219,8,218,1,218,3,218,3222,8, - 218,1,218,3,218,3225,8,218,1,218,3,218,3228,8,218,1,218,3,218,3231, - 8,218,1,218,3,218,3234,8,218,1,218,3,218,3237,8,218,1,218,3,218, - 3240,8,218,1,218,3,218,3243,8,218,1,218,1,218,3,218,3247,8,218,3, - 218,3249,8,218,1,218,1,218,1,218,1,218,3,218,3255,8,218,1,218,1, - 218,1,218,3,218,3260,8,218,1,218,3,218,3263,8,218,1,218,3,218,3266, - 8,218,1,218,3,218,3269,8,218,1,218,3,218,3272,8,218,1,218,1,218, - 1,218,1,218,3,218,3278,8,218,1,218,3,218,3281,8,218,1,218,3,218, - 3284,8,218,1,218,3,218,3287,8,218,1,218,3,218,3290,8,218,1,218,3, - 218,3293,8,218,1,218,3,218,3296,8,218,1,218,3,218,3299,8,218,1,218, - 3,218,3302,8,218,1,218,3,218,3305,8,218,1,218,1,218,3,218,3309,8, - 218,3,218,3311,8,218,3,218,3313,8,218,1,219,1,219,1,219,3,219,3318, - 8,219,1,219,1,219,1,219,3,219,3323,8,219,1,219,1,219,3,219,3327, - 8,219,1,219,1,219,3,219,3331,8,219,1,219,1,219,1,219,3,219,3336, - 8,219,1,220,1,220,1,220,3,220,3341,8,220,1,220,1,220,1,221,1,221, - 1,221,5,221,3348,8,221,10,221,12,221,3351,9,221,1,221,1,221,1,222, - 1,222,1,222,5,222,3358,8,222,10,222,12,222,3361,9,222,1,223,1,223, - 1,223,5,223,3366,8,223,10,223,12,223,3369,9,223,1,224,1,224,1,224, - 1,225,1,225,1,225,1,225,4,225,3378,8,225,11,225,12,225,3379,1,225, - 3,225,3383,8,225,1,226,1,226,5,226,3387,8,226,10,226,12,226,3390, - 9,226,1,226,1,226,5,226,3394,8,226,10,226,12,226,3397,9,226,1,226, - 1,226,5,226,3401,8,226,10,226,12,226,3404,9,226,1,226,1,226,5,226, - 3408,8,226,10,226,12,226,3411,9,226,1,226,1,226,1,226,1,226,3,226, - 3417,8,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,3,227,3426, - 8,227,5,227,3428,8,227,10,227,12,227,3431,9,227,1,228,1,228,1,228, - 1,228,3,228,3437,8,228,1,228,5,228,3440,8,228,10,228,12,228,3443, - 9,228,1,229,3,229,3446,8,229,1,229,1,229,3,229,3450,8,229,1,229, - 3,229,3453,8,229,1,229,3,229,3456,8,229,1,229,1,229,1,229,1,229, - 1,230,1,230,1,230,1,230,1,230,3,230,3467,8,230,1,230,1,230,3,230, - 3471,8,230,3,230,3473,8,230,1,230,3,230,3476,8,230,1,231,1,231,1, - 231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3487,8,231,10,231, - 12,231,3490,9,231,3,231,3492,8,231,1,231,3,231,3495,8,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3505,8,231,10,231, - 12,231,3508,9,231,3,231,3510,8,231,1,231,1,231,1,231,1,231,1,231, - 3,231,3517,8,231,1,231,1,231,1,231,1,231,1,231,5,231,3524,8,231, - 10,231,12,231,3527,9,231,1,231,1,231,3,231,3531,8,231,3,231,3533, - 8,231,3,231,3535,8,231,1,232,1,232,1,233,1,233,1,233,1,233,1,233, - 1,233,1,233,1,233,1,233,1,233,1,233,5,233,3550,8,233,10,233,12,233, - 3553,9,233,3,233,3555,8,233,1,233,1,233,1,233,1,233,1,233,1,233, - 3,233,3563,8,233,1,233,3,233,3566,8,233,1,234,1,234,3,234,3570,8, - 234,1,234,3,234,3573,8,234,1,234,3,234,3576,8,234,1,234,3,234,3579, - 8,234,1,234,3,234,3582,8,234,1,235,1,235,1,235,1,235,1,235,1,235, - 1,235,1,235,1,235,1,235,3,235,3594,8,235,1,236,1,236,1,237,1,237, - 1,238,1,238,3,238,3602,8,238,1,239,1,239,1,239,1,239,1,239,3,239, - 3609,8,239,1,239,3,239,3612,8,239,1,240,1,240,1,240,1,240,1,240, - 3,240,3619,8,240,1,240,3,240,3622,8,240,1,241,1,241,1,241,3,241, - 3627,8,241,1,241,1,241,1,242,1,242,1,242,3,242,3634,8,242,1,242, - 1,242,1,243,1,243,1,243,1,243,3,243,3642,8,243,1,243,1,243,1,244, - 1,244,1,244,1,244,3,244,3650,8,244,1,244,1,244,1,244,3,244,3655, - 8,244,1,244,1,244,3,244,3659,8,244,1,245,1,245,1,245,3,245,3664, - 8,245,1,246,1,246,1,246,1,246,1,246,3,246,3671,8,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,5,246,3683,8,246, - 10,246,12,246,3686,9,246,3,246,3688,8,246,1,246,1,246,3,246,3692, - 8,246,1,247,1,247,1,247,1,248,1,248,1,248,1,248,5,248,3701,8,248, - 10,248,12,248,3704,9,248,1,248,1,248,1,248,1,248,1,248,5,248,3711, - 8,248,10,248,12,248,3714,9,248,3,248,3716,8,248,1,249,1,249,1,249, - 1,249,1,249,3,249,3723,8,249,1,249,1,249,1,249,1,249,1,249,5,249, - 3730,8,249,10,249,12,249,3733,9,249,3,249,3735,8,249,1,249,1,249, - 1,250,1,250,3,250,3741,8,250,1,250,3,250,3744,8,250,1,250,1,250, - 1,250,5,250,3749,8,250,10,250,12,250,3752,9,250,1,250,1,250,3,250, - 3756,8,250,1,250,3,250,3759,8,250,1,251,1,251,1,251,1,251,1,251, - 1,251,1,251,1,251,1,251,1,251,1,251,3,251,3772,8,251,1,251,1,251, - 1,251,1,251,3,251,3778,8,251,3,251,3780,8,251,1,251,1,251,1,251, - 1,252,1,252,1,252,3,252,3788,8,252,1,252,3,252,3791,8,252,1,252, - 1,252,1,252,1,252,1,252,1,252,5,252,3799,8,252,10,252,12,252,3802, - 9,252,1,252,1,252,3,252,3806,8,252,3,252,3808,8,252,1,253,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,3820,8,253, - 1,253,1,253,1,253,1,253,3,253,3826,8,253,3,253,3828,8,253,1,253, - 1,253,1,253,1,254,1,254,3,254,3835,8,254,1,255,1,255,1,255,5,255, - 3840,8,255,10,255,12,255,3843,9,255,1,256,1,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,5,256,3854,8,256,10,256,12,256,3857,9,256, - 1,257,1,257,1,257,3,257,3862,8,257,1,257,3,257,3865,8,257,1,257, - 3,257,3868,8,257,1,257,3,257,3871,8,257,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,3,258,3880,8,258,1,258,1,258,1,258,1,258,1,258, - 3,258,3887,8,258,1,259,1,259,1,259,1,259,3,259,3893,8,259,1,260, - 1,260,1,260,1,260,1,260,1,260,1,260,3,260,3902,8,260,1,261,1,261, - 3,261,3906,8,261,1,261,1,261,1,261,1,261,5,261,3912,8,261,10,261, - 12,261,3915,9,261,1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262, - 3924,8,262,1,262,1,262,1,262,1,262,1,262,1,262,5,262,3932,8,262, - 10,262,12,262,3935,9,262,1,262,1,262,3,262,3939,8,262,1,263,1,263, - 3,263,3943,8,263,1,263,1,263,5,263,3947,8,263,10,263,12,263,3950, - 9,263,1,263,1,263,3,263,3954,8,263,1,264,1,264,1,264,1,265,1,265, - 1,265,1,266,1,266,3,266,3964,8,266,1,267,1,267,3,267,3968,8,267, - 1,267,3,267,3971,8,267,1,267,1,267,1,267,3,267,3976,8,267,1,267, - 3,267,3979,8,267,5,267,3981,8,267,10,267,12,267,3984,9,267,1,268, - 1,268,3,268,3988,8,268,1,269,1,269,1,269,1,269,1,270,1,270,1,270, - 4,270,3997,8,270,11,270,12,270,3998,3,270,4001,8,270,1,271,1,271, - 1,271,1,271,1,271,5,271,4008,8,271,10,271,12,271,4011,9,271,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,1,274,5,274,4027,8,274,10,274,12,274,4030,9,274,1,274,1,274, - 1,274,1,274,1,274,5,274,4037,8,274,10,274,12,274,4040,9,274,3,274, - 4042,8,274,1,275,1,275,1,275,1,275,1,275,3,275,4049,8,275,1,275, - 3,275,4052,8,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 3,275,4062,8,275,1,275,1,275,1,275,5,275,4067,8,275,10,275,12,275, - 4070,9,275,3,275,4072,8,275,3,275,4074,8,275,1,275,1,275,1,275,1, - 275,1,275,1,275,1,275,1,275,1,275,3,275,4085,8,275,1,275,1,275,1, - 275,1,275,1,275,1,275,1,275,1,275,3,275,4095,8,275,3,275,4097,8, - 275,1,276,1,276,1,276,1,277,1,277,1,278,1,278,3,278,4106,8,278,1, - 279,1,279,1,279,3,279,4111,8,279,1,280,1,280,1,280,1,280,1,280,1, - 280,1,280,3,280,4120,8,280,1,280,1,280,1,281,1,281,1,281,1,281,1, - 281,1,281,1,281,4,281,4131,8,281,11,281,12,281,4132,1,281,1,281, - 3,281,4137,8,281,1,281,1,281,1,282,1,282,1,282,1,282,1,282,1,282, - 4,282,4147,8,282,11,282,12,282,4148,1,282,1,282,3,282,4153,8,282, - 1,282,1,282,1,283,1,283,1,283,1,283,1,283,3,283,4162,8,283,1,283, - 1,283,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,1,285,3,285,4181,8,285,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 5,286,4197,8,286,10,286,12,286,4200,9,286,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,3,286,4211,8,286,1,287,1,287,1,288, - 1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,3,288, - 4226,8,288,1,288,1,288,3,288,4230,8,288,1,289,1,289,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,3,289, - 4246,8,289,1,290,1,290,1,290,5,290,4251,8,290,10,290,12,290,4254, - 9,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,3,291,4267,8,291,1,292,5,292,4270,8,292,10,292,12,292,4273, - 9,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,5,292,4282,8,292, - 10,292,12,292,4285,9,292,1,293,1,293,1,293,5,293,4290,8,293,10,293, - 12,293,4293,9,293,1,294,1,294,1,294,5,294,4298,8,294,10,294,12,294, - 4301,9,294,1,295,1,295,1,295,5,295,4306,8,295,10,295,12,295,4309, - 9,295,1,296,1,296,1,296,5,296,4314,8,296,10,296,12,296,4317,9,296, - 1,297,1,297,1,297,5,297,4322,8,297,10,297,12,297,4325,9,297,1,298, - 1,298,1,298,5,298,4330,8,298,10,298,12,298,4333,9,298,1,299,1,299, - 1,300,1,300,1,300,1,300,1,301,1,301,3,301,4343,8,301,1,301,1,301, - 3,301,4347,8,301,1,302,1,302,1,302,1,302,1,302,1,302,3,302,4355, - 8,302,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, - 1,303,1,303,1,303,1,303,3,303,4371,8,303,1,304,1,304,3,304,4375, - 8,304,1,305,1,305,1,305,3,305,4380,8,305,1,306,1,306,1,306,1,306, - 1,307,1,307,1,307,1,307,1,307,1,307,1,307,3,307,4393,8,307,1,308, - 1,308,1,308,1,308,1,308,1,308,1,308,5,308,4402,8,308,10,308,12,308, - 4405,9,308,1,309,1,309,1,309,1,309,1,309,1,309,3,309,4413,8,309, - 1,310,5,310,4416,8,310,10,310,12,310,4419,9,310,1,310,1,310,1,310, - 3,310,4424,8,310,1,311,1,311,1,311,5,311,4429,8,311,10,311,12,311, - 4432,9,311,1,312,1,312,3,312,4436,8,312,1,313,1,313,1,313,1,313, - 1,313,5,313,4443,8,313,10,313,12,313,4446,9,313,1,313,1,313,1,314, - 1,314,1,314,3,314,4453,8,314,1,315,1,315,1,315,1,315,5,315,4459, - 8,315,10,315,12,315,4462,9,315,1,315,1,315,1,316,1,316,1,316,3,316, - 4469,8,316,1,316,1,316,1,317,1,317,1,318,1,318,1,319,1,319,3,319, - 4479,8,319,1,320,1,320,1,320,3,320,4484,8,320,1,321,1,321,1,322, - 1,322,1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,3,324, - 4543,8,324,1,325,1,325,1,325,1,325,3,325,4549,8,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,3,325,4558,8,325,3,325,4560,8,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,5,325,4574,8,325,10,325,12,325,4577,9,325,1,325,1,325,1,325, - 1,325,1,325,3,325,4584,8,325,1,325,1,325,3,325,4588,8,325,3,325, - 4590,8,325,1,325,1,325,1,325,1,325,3,325,4596,8,325,1,325,1,325, - 1,325,3,325,4601,8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,4618,8,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,3,325,4644,8,325,1,325,1,325,1,325,3,325,4649,8,325, - 3,325,4651,8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,4679,8,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,3,325,4696,8,325,1,325,1,325,1,325,3,325,4701, - 8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,4710,8,325, - 1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4721, - 8,327,1,328,1,328,1,328,5,328,4726,8,328,10,328,12,328,4729,9,328, - 1,329,1,329,1,329,3,329,4734,8,329,1,330,1,330,1,330,3,330,4739, - 8,330,1,331,1,331,1,332,1,332,1,333,1,333,1,334,1,334,1,335,1,335, - 1,336,1,336,1,337,1,337,1,338,1,338,1,339,1,339,1,340,1,340,1,341, - 1,341,1,341,5,341,4764,8,341,10,341,12,341,4767,9,341,1,342,1,342, - 1,342,1,342,1,343,1,343,1,343,1,343,3,343,4777,8,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, - 4791,8,344,1,345,1,345,1,345,5,345,4796,8,345,10,345,12,345,4799, - 9,345,1,345,1,813,0,346,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,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325,1,0, - 395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139,139, - 154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114, - 114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190, - 190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128, - 128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373,2, - 0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39, - 376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125, - 125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196, - 196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300, - 300,2,0,241,241,292,292,2,0,198,198,268,268,2,0,260,260,292,292, - 2,0,354,354,431,431,2,0,133,133,247,247,2,0,152,152,281,281,3,0, - 413,414,418,418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184, - 184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7,7,13,13,313,313, - 3,0,184,184,270,270,286,286,4,0,125,125,219,219,350,350,360,360, - 2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132, - 151,151,154,154,162,163,184,184,198,198,216,216,228,228,264,264, - 270,270,286,286,311,311,323,324,340,340,357,357,383,383,405,417, - 419,421,423,423,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,183,185,187,189,193,195,197,199,202,204,204,206,209, - 211,212,214,215,217,218,220,220,222,223,226,227,232,233,235,236, - 238,240,243,246,252,252,254,255,257,259,261,262,265,267,271,282, - 284,284,287,288,293,298,300,303,305,310,312,312,314,317,319,325, - 327,328,330,330,332,334,339,340,342,342,344,346,349,349,352,353, - 355,355,357,357,360,364,366,368,371,373,375,375,377,382,385,385, - 388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, - 151,162,163,198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0, - 9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392, - 393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1, - 0,297,298,1,0,80,82,5392,0,695,1,0,0,0,2,702,1,0,0,0,4,707,1,0,0, - 0,6,741,1,0,0,0,8,743,1,0,0,0,10,816,1,0,0,0,12,818,1,0,0,0,14,834, - 1,0,0,0,16,843,1,0,0,0,18,851,1,0,0,0,20,864,1,0,0,0,22,875,1,0, - 0,0,24,880,1,0,0,0,26,891,1,0,0,0,28,954,1,0,0,0,30,956,1,0,0,0, - 32,959,1,0,0,0,34,963,1,0,0,0,36,965,1,0,0,0,38,968,1,0,0,0,40,971, - 1,0,0,0,42,1015,1,0,0,0,44,1017,1,0,0,0,46,1020,1,0,0,0,48,1023, - 1,0,0,0,50,1032,1,0,0,0,52,1035,1,0,0,0,54,1050,1,0,0,0,56,1062, - 1,0,0,0,58,1067,1,0,0,0,60,1087,1,0,0,0,62,1091,1,0,0,0,64,1098, - 1,0,0,0,66,1123,1,0,0,0,68,1140,1,0,0,0,70,1142,1,0,0,0,72,1327, - 1,0,0,0,74,1337,1,0,0,0,76,1339,1,0,0,0,78,1344,1,0,0,0,80,1349, - 1,0,0,0,82,1351,1,0,0,0,84,1355,1,0,0,0,86,1359,1,0,0,0,88,1363, - 1,0,0,0,90,1367,1,0,0,0,92,1377,1,0,0,0,94,1388,1,0,0,0,96,1405, - 1,0,0,0,98,1423,1,0,0,0,100,1428,1,0,0,0,102,1431,1,0,0,0,104,1435, - 1,0,0,0,106,1442,1,0,0,0,108,1451,1,0,0,0,110,1457,1,0,0,0,112,1459, - 1,0,0,0,114,1473,1,0,0,0,116,1495,1,0,0,0,118,1497,1,0,0,0,120,1505, - 1,0,0,0,122,1512,1,0,0,0,124,1514,1,0,0,0,126,1528,1,0,0,0,128,1535, - 1,0,0,0,130,1537,1,0,0,0,132,1541,1,0,0,0,134,1545,1,0,0,0,136,1549, - 1,0,0,0,138,1553,1,0,0,0,140,1566,1,0,0,0,142,1574,1,0,0,0,144,1577, - 1,0,0,0,146,1579,1,0,0,0,148,1591,1,0,0,0,150,1601,1,0,0,0,152,1604, - 1,0,0,0,154,1615,1,0,0,0,156,1623,1,0,0,0,158,1666,1,0,0,0,160,1675, - 1,0,0,0,162,1703,1,0,0,0,164,1716,1,0,0,0,166,1718,1,0,0,0,168,1724, - 1,0,0,0,170,1727,1,0,0,0,172,1733,1,0,0,0,174,1739,1,0,0,0,176,1746, - 1,0,0,0,178,1780,1,0,0,0,180,1788,1,0,0,0,182,1801,1,0,0,0,184,1806, - 1,0,0,0,186,1817,1,0,0,0,188,1834,1,0,0,0,190,1836,1,0,0,0,192,1841, - 1,0,0,0,194,1848,1,0,0,0,196,1850,1,0,0,0,198,1853,1,0,0,0,200,1856, - 1,0,0,0,202,1870,1,0,0,0,204,1878,1,0,0,0,206,1904,1,0,0,0,208,1906, - 1,0,0,0,210,1923,1,0,0,0,212,1937,1,0,0,0,214,1939,1,0,0,0,216,1942, - 1,0,0,0,218,1945,1,0,0,0,220,1954,1,0,0,0,222,1974,1,0,0,0,224,1976, - 1,0,0,0,226,1979,1,0,0,0,228,1992,1,0,0,0,230,1994,1,0,0,0,232,1998, - 1,0,0,0,234,2006,1,0,0,0,236,2010,1,0,0,0,238,2019,1,0,0,0,240,2025, - 1,0,0,0,242,2031,1,0,0,0,244,2036,1,0,0,0,246,2082,1,0,0,0,248,2084, - 1,0,0,0,250,2092,1,0,0,0,252,2100,1,0,0,0,254,2108,1,0,0,0,256,2118, - 1,0,0,0,258,2120,1,0,0,0,260,2122,1,0,0,0,262,2135,1,0,0,0,264,2143, - 1,0,0,0,266,2152,1,0,0,0,268,2156,1,0,0,0,270,2158,1,0,0,0,272,2163, - 1,0,0,0,274,2165,1,0,0,0,276,2169,1,0,0,0,278,2175,1,0,0,0,280,2183, - 1,0,0,0,282,2185,1,0,0,0,284,2188,1,0,0,0,286,2195,1,0,0,0,288,2206, - 1,0,0,0,290,2219,1,0,0,0,292,2221,1,0,0,0,294,2229,1,0,0,0,296,2233, - 1,0,0,0,298,2241,1,0,0,0,300,2243,1,0,0,0,302,2246,1,0,0,0,304,2253, - 1,0,0,0,306,2261,1,0,0,0,308,2268,1,0,0,0,310,2276,1,0,0,0,312,2284, - 1,0,0,0,314,2288,1,0,0,0,316,2290,1,0,0,0,318,2301,1,0,0,0,320,2305, - 1,0,0,0,322,2317,1,0,0,0,324,2325,1,0,0,0,326,2329,1,0,0,0,328,2341, - 1,0,0,0,330,2353,1,0,0,0,332,2358,1,0,0,0,334,2363,1,0,0,0,336,2365, - 1,0,0,0,338,2369,1,0,0,0,340,2373,1,0,0,0,342,2380,1,0,0,0,344,2382, - 1,0,0,0,346,2395,1,0,0,0,348,2434,1,0,0,0,350,2436,1,0,0,0,352,2441, - 1,0,0,0,354,2446,1,0,0,0,356,2453,1,0,0,0,358,2458,1,0,0,0,360,2463, - 1,0,0,0,362,2469,1,0,0,0,364,2471,1,0,0,0,366,2480,1,0,0,0,368,2492, - 1,0,0,0,370,2572,1,0,0,0,372,2578,1,0,0,0,374,2604,1,0,0,0,376,2606, - 1,0,0,0,378,2628,1,0,0,0,380,2633,1,0,0,0,382,2637,1,0,0,0,384,2669, - 1,0,0,0,386,2671,1,0,0,0,388,2682,1,0,0,0,390,2688,1,0,0,0,392,2690, - 1,0,0,0,394,2722,1,0,0,0,396,2729,1,0,0,0,398,2735,1,0,0,0,400,2741, - 1,0,0,0,402,2756,1,0,0,0,404,2766,1,0,0,0,406,2774,1,0,0,0,408,2777, - 1,0,0,0,410,2780,1,0,0,0,412,2783,1,0,0,0,414,2905,1,0,0,0,416,3039, - 1,0,0,0,418,3067,1,0,0,0,420,3084,1,0,0,0,422,3101,1,0,0,0,424,3103, - 1,0,0,0,426,3106,1,0,0,0,428,3132,1,0,0,0,430,3137,1,0,0,0,432,3164, - 1,0,0,0,434,3175,1,0,0,0,436,3312,1,0,0,0,438,3314,1,0,0,0,440,3337, - 1,0,0,0,442,3349,1,0,0,0,444,3354,1,0,0,0,446,3362,1,0,0,0,448,3370, - 1,0,0,0,450,3382,1,0,0,0,452,3416,1,0,0,0,454,3418,1,0,0,0,456,3436, - 1,0,0,0,458,3445,1,0,0,0,460,3475,1,0,0,0,462,3534,1,0,0,0,464,3536, - 1,0,0,0,466,3565,1,0,0,0,468,3567,1,0,0,0,470,3583,1,0,0,0,472,3595, - 1,0,0,0,474,3597,1,0,0,0,476,3601,1,0,0,0,478,3611,1,0,0,0,480,3621, - 1,0,0,0,482,3626,1,0,0,0,484,3633,1,0,0,0,486,3637,1,0,0,0,488,3658, - 1,0,0,0,490,3663,1,0,0,0,492,3665,1,0,0,0,494,3693,1,0,0,0,496,3696, - 1,0,0,0,498,3717,1,0,0,0,500,3758,1,0,0,0,502,3760,1,0,0,0,504,3807, - 1,0,0,0,506,3809,1,0,0,0,508,3834,1,0,0,0,510,3836,1,0,0,0,512,3844, - 1,0,0,0,514,3870,1,0,0,0,516,3872,1,0,0,0,518,3892,1,0,0,0,520,3894, - 1,0,0,0,522,3905,1,0,0,0,524,3918,1,0,0,0,526,3953,1,0,0,0,528,3955, - 1,0,0,0,530,3958,1,0,0,0,532,3963,1,0,0,0,534,3965,1,0,0,0,536,3987, - 1,0,0,0,538,3989,1,0,0,0,540,3993,1,0,0,0,542,4002,1,0,0,0,544,4012, - 1,0,0,0,546,4016,1,0,0,0,548,4020,1,0,0,0,550,4096,1,0,0,0,552,4098, - 1,0,0,0,554,4101,1,0,0,0,556,4105,1,0,0,0,558,4110,1,0,0,0,560,4112, - 1,0,0,0,562,4123,1,0,0,0,564,4140,1,0,0,0,566,4156,1,0,0,0,568,4165, - 1,0,0,0,570,4180,1,0,0,0,572,4210,1,0,0,0,574,4212,1,0,0,0,576,4229, - 1,0,0,0,578,4245,1,0,0,0,580,4247,1,0,0,0,582,4266,1,0,0,0,584,4271, - 1,0,0,0,586,4286,1,0,0,0,588,4294,1,0,0,0,590,4302,1,0,0,0,592,4310, - 1,0,0,0,594,4318,1,0,0,0,596,4326,1,0,0,0,598,4334,1,0,0,0,600,4336, - 1,0,0,0,602,4346,1,0,0,0,604,4354,1,0,0,0,606,4370,1,0,0,0,608,4374, - 1,0,0,0,610,4379,1,0,0,0,612,4381,1,0,0,0,614,4392,1,0,0,0,616,4394, - 1,0,0,0,618,4412,1,0,0,0,620,4417,1,0,0,0,622,4425,1,0,0,0,624,4433, - 1,0,0,0,626,4437,1,0,0,0,628,4449,1,0,0,0,630,4454,1,0,0,0,632,4465, - 1,0,0,0,634,4472,1,0,0,0,636,4474,1,0,0,0,638,4478,1,0,0,0,640,4480, - 1,0,0,0,642,4485,1,0,0,0,644,4487,1,0,0,0,646,4489,1,0,0,0,648,4542, - 1,0,0,0,650,4709,1,0,0,0,652,4711,1,0,0,0,654,4720,1,0,0,0,656,4722, - 1,0,0,0,658,4733,1,0,0,0,660,4735,1,0,0,0,662,4740,1,0,0,0,664,4742, - 1,0,0,0,666,4744,1,0,0,0,668,4746,1,0,0,0,670,4748,1,0,0,0,672,4750, - 1,0,0,0,674,4752,1,0,0,0,676,4754,1,0,0,0,678,4756,1,0,0,0,680,4758, - 1,0,0,0,682,4760,1,0,0,0,684,4768,1,0,0,0,686,4776,1,0,0,0,688,4790, - 1,0,0,0,690,4792,1,0,0,0,692,694,3,2,1,0,693,692,1,0,0,0,694,697, - 1,0,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,698,1,0,0,0,697,695, - 1,0,0,0,698,699,5,0,0,1,699,1,1,0,0,0,700,703,3,4,2,0,701,703,3, - 10,5,0,702,700,1,0,0,0,702,701,1,0,0,0,703,705,1,0,0,0,704,706,5, - 398,0,0,705,704,1,0,0,0,705,706,1,0,0,0,706,3,1,0,0,0,707,717,5, - 119,0,0,708,710,3,6,3,0,709,708,1,0,0,0,710,713,1,0,0,0,711,709, - 1,0,0,0,711,712,1,0,0,0,712,714,1,0,0,0,713,711,1,0,0,0,714,718, - 3,10,5,0,715,716,5,284,0,0,716,718,3,360,180,0,717,711,1,0,0,0,717, - 715,1,0,0,0,718,5,1,0,0,0,719,742,5,122,0,0,720,742,5,138,0,0,721, - 742,5,88,0,0,722,724,5,37,0,0,723,725,7,0,0,0,724,723,1,0,0,0,724, - 725,1,0,0,0,725,742,1,0,0,0,726,742,5,192,0,0,727,742,5,21,0,0,728, - 742,5,10,0,0,729,742,5,275,0,0,730,742,5,191,0,0,731,742,5,19,0, - 0,732,734,5,377,0,0,733,735,5,225,0,0,734,733,1,0,0,0,734,735,1, - 0,0,0,735,737,1,0,0,0,736,738,3,8,4,0,737,736,1,0,0,0,737,738,1, - 0,0,0,738,742,1,0,0,0,739,742,5,79,0,0,740,742,5,78,0,0,741,719, - 1,0,0,0,741,720,1,0,0,0,741,721,1,0,0,0,741,722,1,0,0,0,741,726, - 1,0,0,0,741,727,1,0,0,0,741,728,1,0,0,0,741,729,1,0,0,0,741,730, - 1,0,0,0,741,731,1,0,0,0,741,732,1,0,0,0,741,739,1,0,0,0,741,740, - 1,0,0,0,742,7,1,0,0,0,743,744,7,1,0,0,744,9,1,0,0,0,745,817,3,360, - 180,0,746,817,3,12,6,0,747,817,3,16,8,0,748,817,3,18,9,0,749,817, - 3,20,10,0,750,817,3,24,12,0,751,752,5,277,0,0,752,753,5,320,0,0, - 753,756,3,472,236,0,754,755,5,387,0,0,755,757,3,230,115,0,756,754, - 1,0,0,0,756,757,1,0,0,0,757,817,1,0,0,0,758,817,3,28,14,0,759,760, - 5,86,0,0,760,761,5,139,0,0,761,763,3,478,239,0,762,764,3,494,247, - 0,763,762,1,0,0,0,763,764,1,0,0,0,764,817,1,0,0,0,765,766,5,365, - 0,0,766,767,3,478,239,0,767,769,3,392,196,0,768,770,3,494,247,0, - 769,768,1,0,0,0,769,770,1,0,0,0,770,817,1,0,0,0,771,817,3,394,197, - 0,772,774,5,203,0,0,773,775,5,436,0,0,774,773,1,0,0,0,774,775,1, - 0,0,0,775,776,1,0,0,0,776,777,5,166,0,0,777,782,3,478,239,0,778, - 780,5,17,0,0,779,778,1,0,0,0,779,780,1,0,0,0,780,781,1,0,0,0,781, - 783,3,638,319,0,782,779,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0, - 784,785,5,370,0,0,785,786,3,456,228,0,786,787,5,224,0,0,787,788, - 3,580,290,0,788,789,3,398,199,0,789,817,1,0,0,0,790,791,5,249,0, - 0,791,792,3,638,319,0,792,793,5,139,0,0,793,794,3,360,180,0,794, - 817,1,0,0,0,795,796,5,115,0,0,796,797,3,638,319,0,797,798,5,370, - 0,0,798,799,3,296,148,0,799,817,1,0,0,0,800,801,5,304,0,0,801,806, - 3,648,324,0,802,803,7,2,0,0,803,805,3,648,324,0,804,802,1,0,0,0, - 805,808,1,0,0,0,806,804,1,0,0,0,806,807,1,0,0,0,807,809,1,0,0,0, - 808,806,1,0,0,0,809,813,5,405,0,0,810,812,9,0,0,0,811,810,1,0,0, - 0,812,815,1,0,0,0,813,814,1,0,0,0,813,811,1,0,0,0,814,817,1,0,0, - 0,815,813,1,0,0,0,816,745,1,0,0,0,816,746,1,0,0,0,816,747,1,0,0, - 0,816,748,1,0,0,0,816,749,1,0,0,0,816,750,1,0,0,0,816,751,1,0,0, - 0,816,758,1,0,0,0,816,759,1,0,0,0,816,765,1,0,0,0,816,771,1,0,0, - 0,816,772,1,0,0,0,816,790,1,0,0,0,816,795,1,0,0,0,816,800,1,0,0, - 0,817,11,1,0,0,0,818,819,5,187,0,0,819,821,5,66,0,0,820,822,5,188, - 0,0,821,820,1,0,0,0,821,822,1,0,0,0,822,823,1,0,0,0,823,824,5,158, - 0,0,824,826,5,426,0,0,825,827,5,235,0,0,826,825,1,0,0,0,826,827, - 1,0,0,0,827,828,1,0,0,0,828,829,5,166,0,0,829,830,5,329,0,0,830, - 832,3,624,312,0,831,833,3,56,28,0,832,831,1,0,0,0,832,833,1,0,0, - 0,833,13,1,0,0,0,834,836,5,134,0,0,835,837,5,204,0,0,836,835,1,0, - 0,0,836,837,1,0,0,0,837,838,1,0,0,0,838,839,5,279,0,0,839,840,5, - 399,0,0,840,841,5,426,0,0,841,842,5,400,0,0,842,15,1,0,0,0,843,844, - 5,120,0,0,844,845,5,329,0,0,845,846,3,624,312,0,846,847,5,341,0, - 0,847,849,5,426,0,0,848,850,3,14,7,0,849,848,1,0,0,0,849,850,1,0, - 0,0,850,17,1,0,0,0,851,857,5,153,0,0,852,854,5,123,0,0,853,852,1, - 0,0,0,853,854,1,0,0,0,854,855,1,0,0,0,855,856,5,329,0,0,856,858, - 3,624,312,0,857,853,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859, - 860,5,139,0,0,860,862,5,426,0,0,861,863,3,424,212,0,862,861,1,0, - 0,0,862,863,1,0,0,0,863,19,1,0,0,0,864,865,5,277,0,0,865,866,5,103, - 0,0,866,869,3,22,11,0,867,868,5,278,0,0,868,870,3,22,11,0,869,867, - 1,0,0,0,869,870,1,0,0,0,870,873,1,0,0,0,871,872,5,387,0,0,872,874, - 3,230,115,0,873,871,1,0,0,0,873,874,1,0,0,0,874,21,1,0,0,0,875,878, - 3,472,236,0,876,877,5,395,0,0,877,879,3,26,13,0,878,876,1,0,0,0, - 878,879,1,0,0,0,879,23,1,0,0,0,880,881,5,277,0,0,881,882,5,187,0, - 0,882,885,3,22,11,0,883,884,5,166,0,0,884,886,3,472,236,0,885,883, - 1,0,0,0,885,886,1,0,0,0,886,889,1,0,0,0,887,888,5,387,0,0,888,890, - 3,230,115,0,889,887,1,0,0,0,889,890,1,0,0,0,890,25,1,0,0,0,891,894, - 5,426,0,0,892,893,5,395,0,0,893,895,5,426,0,0,894,892,1,0,0,0,894, - 895,1,0,0,0,895,27,1,0,0,0,896,955,3,42,21,0,897,955,3,46,23,0,898, - 955,3,48,24,0,899,955,3,436,218,0,900,955,3,54,27,0,901,955,3,52, - 26,0,902,955,3,412,206,0,903,955,3,64,32,0,904,955,3,72,36,0,905, - 955,3,138,69,0,906,955,3,160,80,0,907,955,3,176,88,0,908,955,3,180, - 90,0,909,955,3,184,92,0,910,955,3,182,91,0,911,955,3,174,87,0,912, - 955,3,178,89,0,913,955,3,146,73,0,914,955,3,152,76,0,915,955,3,148, - 74,0,916,955,3,150,75,0,917,955,3,154,77,0,918,955,3,156,78,0,919, - 955,3,158,79,0,920,955,3,66,33,0,921,955,3,76,38,0,922,955,3,82, - 41,0,923,955,3,78,39,0,924,955,3,84,42,0,925,955,3,86,43,0,926,955, - 3,88,44,0,927,955,3,90,45,0,928,955,3,92,46,0,929,955,3,106,53,0, - 930,955,3,98,49,0,931,955,3,108,54,0,932,955,3,100,50,0,933,955, - 3,94,47,0,934,955,3,96,48,0,935,955,3,104,52,0,936,955,3,102,51, - 0,937,938,5,1,0,0,938,940,7,3,0,0,939,941,5,431,0,0,940,939,1,0, - 0,0,941,942,1,0,0,0,942,940,1,0,0,0,942,943,1,0,0,0,943,955,1,0, - 0,0,944,945,5,176,0,0,945,947,5,258,0,0,946,948,5,426,0,0,947,946, - 1,0,0,0,948,949,1,0,0,0,949,947,1,0,0,0,949,950,1,0,0,0,950,955, - 1,0,0,0,951,955,3,650,325,0,952,955,3,438,219,0,953,955,3,440,220, - 0,954,896,1,0,0,0,954,897,1,0,0,0,954,898,1,0,0,0,954,899,1,0,0, - 0,954,900,1,0,0,0,954,901,1,0,0,0,954,902,1,0,0,0,954,903,1,0,0, - 0,954,904,1,0,0,0,954,905,1,0,0,0,954,906,1,0,0,0,954,907,1,0,0, - 0,954,908,1,0,0,0,954,909,1,0,0,0,954,910,1,0,0,0,954,911,1,0,0, - 0,954,912,1,0,0,0,954,913,1,0,0,0,954,914,1,0,0,0,954,915,1,0,0, - 0,954,916,1,0,0,0,954,917,1,0,0,0,954,918,1,0,0,0,954,919,1,0,0, - 0,954,920,1,0,0,0,954,921,1,0,0,0,954,922,1,0,0,0,954,923,1,0,0, - 0,954,924,1,0,0,0,954,925,1,0,0,0,954,926,1,0,0,0,954,927,1,0,0, - 0,954,928,1,0,0,0,954,929,1,0,0,0,954,930,1,0,0,0,954,931,1,0,0, - 0,954,932,1,0,0,0,954,933,1,0,0,0,954,934,1,0,0,0,954,935,1,0,0, - 0,954,936,1,0,0,0,954,937,1,0,0,0,954,944,1,0,0,0,954,951,1,0,0, - 0,954,952,1,0,0,0,954,953,1,0,0,0,955,29,1,0,0,0,956,957,5,151,0, - 0,957,958,5,117,0,0,958,31,1,0,0,0,959,960,5,151,0,0,960,961,5,216, - 0,0,961,962,5,117,0,0,962,33,1,0,0,0,963,964,7,4,0,0,964,35,1,0, - 0,0,965,966,3,662,331,0,966,967,5,284,0,0,967,37,1,0,0,0,968,969, - 3,664,332,0,969,970,5,284,0,0,970,39,1,0,0,0,971,972,5,321,0,0,972, - 973,5,17,0,0,973,974,5,92,0,0,974,41,1,0,0,0,975,977,5,58,0,0,976, - 978,5,273,0,0,977,976,1,0,0,0,977,978,1,0,0,0,978,979,1,0,0,0,979, - 981,3,70,35,0,980,982,3,32,16,0,981,980,1,0,0,0,981,982,1,0,0,0, - 982,983,1,0,0,0,983,985,3,474,237,0,984,986,3,50,25,0,985,984,1, - 0,0,0,985,986,1,0,0,0,986,988,1,0,0,0,987,989,3,424,212,0,988,987, - 1,0,0,0,988,989,1,0,0,0,989,992,1,0,0,0,990,991,5,196,0,0,991,993, - 5,426,0,0,992,990,1,0,0,0,992,993,1,0,0,0,993,997,1,0,0,0,994,995, - 5,387,0,0,995,996,5,76,0,0,996,998,3,230,115,0,997,994,1,0,0,0,997, - 998,1,0,0,0,998,1016,1,0,0,0,999,1000,5,58,0,0,1000,1001,5,273,0, - 0,1001,1003,3,70,35,0,1002,1004,3,32,16,0,1003,1002,1,0,0,0,1003, - 1004,1,0,0,0,1004,1005,1,0,0,0,1005,1007,3,474,237,0,1006,1008,3, - 50,25,0,1007,1006,1,0,0,0,1007,1008,1,0,0,0,1008,1009,1,0,0,0,1009, - 1013,3,44,22,0,1010,1011,5,387,0,0,1011,1012,5,76,0,0,1012,1014, - 3,230,115,0,1013,1010,1,0,0,0,1013,1014,1,0,0,0,1014,1016,1,0,0, - 0,1015,975,1,0,0,0,1015,999,1,0,0,0,1016,43,1,0,0,0,1017,1018,5, - 370,0,0,1018,1019,3,472,236,0,1019,45,1,0,0,0,1020,1021,5,368,0, - 0,1021,1022,3,472,236,0,1022,47,1,0,0,0,1023,1024,5,101,0,0,1024, - 1026,3,70,35,0,1025,1027,3,30,15,0,1026,1025,1,0,0,0,1026,1027,1, - 0,0,0,1027,1028,1,0,0,0,1028,1030,3,472,236,0,1029,1031,3,34,17, - 0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,49,1,0,0,0,1032,1033, - 5,47,0,0,1033,1034,5,426,0,0,1034,51,1,0,0,0,1035,1037,5,351,0,0, - 1036,1038,5,329,0,0,1037,1036,1,0,0,0,1037,1038,1,0,0,0,1038,1039, - 1,0,0,0,1039,1045,3,624,312,0,1040,1041,5,46,0,0,1041,1042,5,399, - 0,0,1042,1043,3,254,127,0,1043,1044,5,400,0,0,1044,1046,1,0,0,0, - 1045,1040,1,0,0,0,1045,1046,1,0,0,0,1046,1048,1,0,0,0,1047,1049, - 5,135,0,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,53,1,0,0,0,1050, - 1051,5,101,0,0,1051,1053,5,329,0,0,1052,1054,3,30,15,0,1053,1052, - 1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0,0,1055,1057,3,478,239, - 0,1056,1058,5,255,0,0,1057,1056,1,0,0,0,1057,1058,1,0,0,0,1058,1060, - 1,0,0,0,1059,1061,3,14,7,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061, - 55,1,0,0,0,1062,1063,5,160,0,0,1063,1064,5,426,0,0,1064,1065,5,301, - 0,0,1065,1066,5,426,0,0,1066,57,1,0,0,0,1067,1070,3,638,319,0,1068, - 1069,5,395,0,0,1069,1071,3,638,319,0,1070,1068,1,0,0,0,1070,1071, - 1,0,0,0,1071,1085,1,0,0,0,1072,1082,3,638,319,0,1073,1078,5,395, - 0,0,1074,1079,5,104,0,0,1075,1079,5,175,0,0,1076,1079,5,375,0,0, - 1077,1079,3,638,319,0,1078,1074,1,0,0,0,1078,1075,1,0,0,0,1078,1076, - 1,0,0,0,1078,1077,1,0,0,0,1079,1081,1,0,0,0,1080,1073,1,0,0,0,1081, - 1084,1,0,0,0,1082,1080,1,0,0,0,1082,1083,1,0,0,0,1083,1086,1,0,0, - 0,1084,1082,1,0,0,0,1085,1072,1,0,0,0,1085,1086,1,0,0,0,1086,59, - 1,0,0,0,1087,1089,3,58,29,0,1088,1090,3,626,313,0,1089,1088,1,0, - 0,0,1089,1090,1,0,0,0,1090,61,1,0,0,0,1091,1093,3,476,238,0,1092, - 1094,3,626,313,0,1093,1092,1,0,0,0,1093,1094,1,0,0,0,1094,1096,1, - 0,0,0,1095,1097,3,260,130,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0, - 1097,63,1,0,0,0,1098,1121,7,5,0,0,1099,1101,3,70,35,0,1100,1102, - 5,122,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0,0,0, - 1103,1104,3,472,236,0,1104,1122,1,0,0,0,1105,1107,5,69,0,0,1106, - 1108,5,122,0,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0, - 0,0,1109,1122,3,472,236,0,1110,1112,5,141,0,0,1111,1113,5,122,0, - 0,1112,1111,1,0,0,0,1112,1113,1,0,0,0,1113,1114,1,0,0,0,1114,1122, - 3,556,278,0,1115,1118,5,138,0,0,1116,1118,5,122,0,0,1117,1115,1, - 0,0,0,1117,1116,1,0,0,0,1118,1119,1,0,0,0,1119,1122,3,62,31,0,1120, - 1122,3,62,31,0,1121,1099,1,0,0,0,1121,1105,1,0,0,0,1121,1110,1,0, - 0,0,1121,1117,1,0,0,0,1121,1120,1,0,0,0,1122,65,1,0,0,0,1123,1124, - 5,10,0,0,1124,1125,5,329,0,0,1125,1138,3,624,312,0,1126,1127,5,52, - 0,0,1127,1134,5,319,0,0,1128,1135,5,215,0,0,1129,1130,5,134,0,0, - 1130,1132,5,46,0,0,1131,1133,3,254,127,0,1132,1131,1,0,0,0,1132, - 1133,1,0,0,0,1133,1135,1,0,0,0,1134,1128,1,0,0,0,1134,1129,1,0,0, - 0,1134,1135,1,0,0,0,1135,1139,1,0,0,0,1136,1137,5,33,0,0,1137,1139, - 5,204,0,0,1138,1126,1,0,0,0,1138,1136,1,0,0,0,1139,67,1,0,0,0,1140, - 1141,7,6,0,0,1141,69,1,0,0,0,1142,1143,7,7,0,0,1143,71,1,0,0,0,1144, - 1145,5,308,0,0,1145,1148,7,8,0,0,1146,1147,5,184,0,0,1147,1149,3, - 194,97,0,1148,1146,1,0,0,0,1148,1149,1,0,0,0,1149,1328,1,0,0,0,1150, - 1152,5,308,0,0,1151,1153,5,122,0,0,1152,1151,1,0,0,0,1152,1153,1, - 0,0,0,1153,1154,1,0,0,0,1154,1158,5,330,0,0,1155,1156,3,68,34,0, - 1156,1157,3,472,236,0,1157,1159,1,0,0,0,1158,1155,1,0,0,0,1158,1159, - 1,0,0,0,1159,1161,1,0,0,0,1160,1162,3,74,37,0,1161,1160,1,0,0,0, - 1161,1162,1,0,0,0,1162,1328,1,0,0,0,1163,1164,5,308,0,0,1164,1168, - 5,379,0,0,1165,1166,3,68,34,0,1166,1167,3,472,236,0,1167,1169,1, - 0,0,0,1168,1165,1,0,0,0,1168,1169,1,0,0,0,1169,1173,1,0,0,0,1170, - 1171,5,184,0,0,1171,1174,3,194,97,0,1172,1174,3,194,97,0,1173,1170, - 1,0,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174,1328,1,0,0,0,1175, - 1176,5,308,0,0,1176,1177,5,202,0,0,1177,1181,5,379,0,0,1178,1179, - 3,68,34,0,1179,1180,3,472,236,0,1180,1182,1,0,0,0,1181,1178,1,0, - 0,0,1181,1182,1,0,0,0,1182,1186,1,0,0,0,1183,1184,5,184,0,0,1184, - 1187,3,194,97,0,1185,1187,3,194,97,0,1186,1183,1,0,0,0,1186,1185, - 1,0,0,0,1186,1187,1,0,0,0,1187,1328,1,0,0,0,1188,1190,5,308,0,0, - 1189,1191,5,315,0,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1192, - 1,0,0,0,1192,1193,5,46,0,0,1193,1194,3,68,34,0,1194,1198,3,476,238, - 0,1195,1196,3,68,34,0,1196,1197,3,472,236,0,1197,1199,1,0,0,0,1198, - 1195,1,0,0,0,1198,1199,1,0,0,0,1199,1203,1,0,0,0,1200,1201,5,184, - 0,0,1201,1204,3,194,97,0,1202,1204,3,194,97,0,1203,1200,1,0,0,0, - 1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1328,1,0,0,0,1205,1206, - 5,308,0,0,1206,1209,5,142,0,0,1207,1208,5,184,0,0,1208,1210,3,556, - 278,0,1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1328,1,0,0,0,1211, - 1212,5,308,0,0,1212,1213,5,239,0,0,1213,1215,3,476,238,0,1214,1216, - 3,626,313,0,1215,1214,1,0,0,0,1215,1216,1,0,0,0,1216,1218,1,0,0, - 0,1217,1219,3,494,247,0,1218,1217,1,0,0,0,1218,1219,1,0,0,0,1219, - 1221,1,0,0,0,1220,1222,3,542,271,0,1221,1220,1,0,0,0,1221,1222,1, - 0,0,0,1222,1224,1,0,0,0,1223,1225,3,386,193,0,1224,1223,1,0,0,0, - 1224,1225,1,0,0,0,1225,1328,1,0,0,0,1226,1227,5,308,0,0,1227,1233, - 5,58,0,0,1228,1229,3,70,35,0,1229,1230,3,472,236,0,1230,1234,1,0, - 0,0,1231,1232,5,329,0,0,1232,1234,3,478,239,0,1233,1228,1,0,0,0, - 1233,1231,1,0,0,0,1234,1328,1,0,0,0,1235,1236,5,308,0,0,1236,1237, - 5,329,0,0,1237,1241,5,122,0,0,1238,1239,3,68,34,0,1239,1240,3,472, - 236,0,1240,1242,1,0,0,0,1241,1238,1,0,0,0,1241,1242,1,0,0,0,1242, - 1243,1,0,0,0,1243,1244,5,184,0,0,1244,1246,3,194,97,0,1245,1247, - 3,626,313,0,1246,1245,1,0,0,0,1246,1247,1,0,0,0,1247,1328,1,0,0, - 0,1248,1249,5,308,0,0,1249,1250,5,332,0,0,1250,1254,3,478,239,0, - 1251,1252,5,399,0,0,1252,1253,5,426,0,0,1253,1255,5,400,0,0,1254, - 1251,1,0,0,0,1254,1255,1,0,0,0,1255,1328,1,0,0,0,1256,1257,5,308, - 0,0,1257,1269,5,191,0,0,1258,1259,3,70,35,0,1259,1261,3,472,236, - 0,1260,1262,5,122,0,0,1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1270, - 1,0,0,0,1263,1265,3,60,30,0,1264,1263,1,0,0,0,1264,1265,1,0,0,0, - 1265,1267,1,0,0,0,1266,1268,5,122,0,0,1267,1266,1,0,0,0,1267,1268, - 1,0,0,0,1268,1270,1,0,0,0,1269,1258,1,0,0,0,1269,1264,1,0,0,0,1270, - 1328,1,0,0,0,1271,1272,5,308,0,0,1272,1299,5,50,0,0,1273,1274,5, - 51,0,0,1274,1275,5,405,0,0,1275,1300,5,431,0,0,1276,1277,3,70,35, - 0,1277,1278,3,472,236,0,1278,1283,1,0,0,0,1279,1281,3,60,30,0,1280, - 1279,1,0,0,0,1280,1281,1,0,0,0,1281,1283,1,0,0,0,1282,1276,1,0,0, - 0,1282,1280,1,0,0,0,1283,1285,1,0,0,0,1284,1286,3,406,203,0,1285, - 1284,1,0,0,0,1285,1286,1,0,0,0,1286,1288,1,0,0,0,1287,1289,3,408, - 204,0,1288,1287,1,0,0,0,1288,1289,1,0,0,0,1289,1291,1,0,0,0,1290, - 1292,3,410,205,0,1291,1290,1,0,0,0,1291,1292,1,0,0,0,1292,1294,1, - 0,0,0,1293,1295,3,542,271,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0, - 1295,1297,1,0,0,0,1296,1298,3,386,193,0,1297,1296,1,0,0,0,1297,1298, - 1,0,0,0,1298,1300,1,0,0,0,1299,1273,1,0,0,0,1299,1282,1,0,0,0,1300, - 1328,1,0,0,0,1301,1302,5,308,0,0,1302,1328,5,346,0,0,1303,1304,5, - 308,0,0,1304,1305,5,54,0,0,1305,1328,5,426,0,0,1306,1307,5,308,0, - 0,1307,1311,5,280,0,0,1308,1309,5,243,0,0,1309,1312,3,638,319,0, - 1310,1312,5,244,0,0,1311,1308,1,0,0,0,1311,1310,1,0,0,0,1312,1328, - 1,0,0,0,1313,1314,5,308,0,0,1314,1328,5,70,0,0,1315,1317,5,308,0, - 0,1316,1318,5,138,0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1319, - 1,0,0,0,1319,1320,7,9,0,0,1320,1321,5,224,0,0,1321,1325,3,478,239, - 0,1322,1323,3,68,34,0,1323,1324,3,472,236,0,1324,1326,1,0,0,0,1325, - 1322,1,0,0,0,1325,1326,1,0,0,0,1326,1328,1,0,0,0,1327,1144,1,0,0, - 0,1327,1150,1,0,0,0,1327,1163,1,0,0,0,1327,1175,1,0,0,0,1327,1188, - 1,0,0,0,1327,1205,1,0,0,0,1327,1211,1,0,0,0,1327,1226,1,0,0,0,1327, - 1235,1,0,0,0,1327,1248,1,0,0,0,1327,1256,1,0,0,0,1327,1271,1,0,0, - 0,1327,1301,1,0,0,0,1327,1303,1,0,0,0,1327,1306,1,0,0,0,1327,1313, - 1,0,0,0,1327,1315,1,0,0,0,1328,73,1,0,0,0,1329,1330,5,384,0,0,1330, - 1331,3,638,319,0,1331,1332,5,405,0,0,1332,1333,5,426,0,0,1333,1338, - 1,0,0,0,1334,1335,5,184,0,0,1335,1338,3,194,97,0,1336,1338,3,194, - 97,0,1337,1329,1,0,0,0,1337,1334,1,0,0,0,1337,1336,1,0,0,0,1338, - 75,1,0,0,0,1339,1340,5,190,0,0,1340,1341,5,329,0,0,1341,1342,3,624, - 312,0,1342,1343,3,80,40,0,1343,77,1,0,0,0,1344,1345,5,190,0,0,1345, - 1346,3,70,35,0,1346,1347,3,472,236,0,1347,1348,3,80,40,0,1348,79, - 1,0,0,0,1349,1350,7,10,0,0,1350,81,1,0,0,0,1351,1352,5,361,0,0,1352, - 1353,5,329,0,0,1353,1354,3,624,312,0,1354,83,1,0,0,0,1355,1356,5, - 361,0,0,1356,1357,3,70,35,0,1357,1358,3,472,236,0,1358,85,1,0,0, - 0,1359,1360,5,58,0,0,1360,1361,5,287,0,0,1361,1362,3,638,319,0,1362, - 87,1,0,0,0,1363,1364,5,101,0,0,1364,1365,5,287,0,0,1365,1366,3,638, - 319,0,1366,89,1,0,0,0,1367,1368,5,143,0,0,1368,1370,3,118,59,0,1369, - 1371,3,112,56,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1, - 0,0,0,1372,1373,5,341,0,0,1373,1375,3,124,62,0,1374,1376,3,130,65, - 0,1375,1374,1,0,0,0,1375,1376,1,0,0,0,1376,91,1,0,0,0,1377,1379, - 5,283,0,0,1378,1380,3,132,66,0,1379,1378,1,0,0,0,1379,1380,1,0,0, - 0,1380,1381,1,0,0,0,1381,1383,3,118,59,0,1382,1384,3,112,56,0,1383, - 1382,1,0,0,0,1383,1384,1,0,0,0,1384,1385,1,0,0,0,1385,1386,5,139, - 0,0,1386,1387,3,124,62,0,1387,93,1,0,0,0,1388,1390,5,143,0,0,1389, - 1391,5,287,0,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0, - 0,0,1392,1397,3,638,319,0,1393,1394,5,397,0,0,1394,1396,3,638,319, - 0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397,1395,1,0,0,0,1397,1398, - 1,0,0,0,1398,1400,1,0,0,0,1399,1397,1,0,0,0,1400,1401,5,341,0,0, - 1401,1403,3,124,62,0,1402,1404,3,136,68,0,1403,1402,1,0,0,0,1403, - 1404,1,0,0,0,1404,95,1,0,0,0,1405,1407,5,283,0,0,1406,1408,3,134, - 67,0,1407,1406,1,0,0,0,1407,1408,1,0,0,0,1408,1410,1,0,0,0,1409, - 1411,5,287,0,0,1410,1409,1,0,0,0,1410,1411,1,0,0,0,1411,1412,1,0, - 0,0,1412,1417,3,638,319,0,1413,1414,5,397,0,0,1414,1416,3,638,319, - 0,1415,1413,1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418, - 1,0,0,0,1418,1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,139,0,0, - 1421,1422,3,124,62,0,1422,97,1,0,0,0,1423,1424,5,308,0,0,1424,1425, - 5,287,0,0,1425,1426,5,143,0,0,1426,1427,3,126,63,0,1427,99,1,0,0, - 0,1428,1429,5,308,0,0,1429,1430,5,288,0,0,1430,101,1,0,0,0,1431, - 1432,5,308,0,0,1432,1433,5,62,0,0,1433,1434,5,288,0,0,1434,103,1, - 0,0,0,1435,1436,5,304,0,0,1436,1440,5,287,0,0,1437,1441,5,7,0,0, - 1438,1441,5,213,0,0,1439,1441,3,638,319,0,1440,1437,1,0,0,0,1440, - 1438,1,0,0,0,1440,1439,1,0,0,0,1441,105,1,0,0,0,1442,1443,5,308, - 0,0,1443,1445,5,143,0,0,1444,1446,3,126,63,0,1445,1444,1,0,0,0,1445, - 1446,1,0,0,0,1446,1449,1,0,0,0,1447,1448,5,224,0,0,1448,1450,3,110, - 55,0,1449,1447,1,0,0,0,1449,1450,1,0,0,0,1450,107,1,0,0,0,1451,1452, - 5,308,0,0,1452,1453,5,252,0,0,1453,1454,3,638,319,0,1454,109,1,0, - 0,0,1455,1458,5,7,0,0,1456,1458,3,116,58,0,1457,1455,1,0,0,0,1457, - 1456,1,0,0,0,1458,111,1,0,0,0,1459,1460,5,224,0,0,1460,1461,3,114, - 57,0,1461,113,1,0,0,0,1462,1463,3,70,35,0,1463,1464,3,472,236,0, - 1464,1474,1,0,0,0,1465,1467,5,329,0,0,1466,1465,1,0,0,0,1466,1467, - 1,0,0,0,1467,1468,1,0,0,0,1468,1474,3,624,312,0,1469,1470,5,366, - 0,0,1470,1474,5,426,0,0,1471,1472,5,303,0,0,1472,1474,3,638,319, - 0,1473,1462,1,0,0,0,1473,1466,1,0,0,0,1473,1469,1,0,0,0,1473,1471, - 1,0,0,0,1474,115,1,0,0,0,1475,1476,3,70,35,0,1476,1477,3,472,236, - 0,1477,1496,1,0,0,0,1478,1480,5,329,0,0,1479,1478,1,0,0,0,1479,1480, - 1,0,0,0,1480,1481,1,0,0,0,1481,1486,3,478,239,0,1482,1483,5,399, - 0,0,1483,1484,3,254,127,0,1484,1485,5,400,0,0,1485,1487,1,0,0,0, - 1486,1482,1,0,0,0,1486,1487,1,0,0,0,1487,1489,1,0,0,0,1488,1490, - 3,626,313,0,1489,1488,1,0,0,0,1489,1490,1,0,0,0,1490,1496,1,0,0, - 0,1491,1492,5,366,0,0,1492,1496,5,426,0,0,1493,1494,5,303,0,0,1494, - 1496,3,638,319,0,1495,1475,1,0,0,0,1495,1479,1,0,0,0,1495,1491,1, - 0,0,0,1495,1493,1,0,0,0,1496,117,1,0,0,0,1497,1502,3,120,60,0,1498, - 1499,5,397,0,0,1499,1501,3,120,60,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,119,1,0,0,0,1504, - 1502,1,0,0,0,1505,1510,3,122,61,0,1506,1507,5,399,0,0,1507,1508, - 3,254,127,0,1508,1509,5,400,0,0,1509,1511,1,0,0,0,1510,1506,1,0, - 0,0,1510,1511,1,0,0,0,1511,121,1,0,0,0,1512,1513,7,11,0,0,1513,123, - 1,0,0,0,1514,1519,3,126,63,0,1515,1516,5,397,0,0,1516,1518,3,126, - 63,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,125,1,0,0,0,1521,1519,1,0,0,0,1522,1523,5,369, - 0,0,1523,1529,3,642,321,0,1524,1525,5,144,0,0,1525,1529,3,642,321, - 0,1526,1527,5,287,0,0,1527,1529,3,638,319,0,1528,1522,1,0,0,0,1528, - 1524,1,0,0,0,1528,1526,1,0,0,0,1529,127,1,0,0,0,1530,1531,5,369, - 0,0,1531,1536,3,642,321,0,1532,1533,5,287,0,0,1533,1536,3,638,319, - 0,1534,1536,3,638,319,0,1535,1530,1,0,0,0,1535,1532,1,0,0,0,1535, - 1534,1,0,0,0,1536,129,1,0,0,0,1537,1538,5,387,0,0,1538,1539,5,143, - 0,0,1539,1540,5,227,0,0,1540,131,1,0,0,0,1541,1542,5,143,0,0,1542, - 1543,5,227,0,0,1543,1544,5,134,0,0,1544,133,1,0,0,0,1545,1546,5, - 5,0,0,1546,1547,5,227,0,0,1547,1548,5,134,0,0,1548,135,1,0,0,0,1549, - 1550,5,387,0,0,1550,1551,5,5,0,0,1551,1552,5,227,0,0,1552,137,1, - 0,0,0,1553,1555,5,212,0,0,1554,1556,5,276,0,0,1555,1554,1,0,0,0, - 1555,1556,1,0,0,0,1556,1557,1,0,0,0,1557,1558,5,329,0,0,1558,1564, - 3,478,239,0,1559,1560,7,12,0,0,1560,1562,5,239,0,0,1561,1563,3,630, - 315,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1,0,0,0,1564, - 1559,1,0,0,0,1564,1565,1,0,0,0,1565,139,1,0,0,0,1566,1571,3,142, - 71,0,1567,1568,5,397,0,0,1568,1570,3,142,71,0,1569,1567,1,0,0,0, - 1570,1573,1,0,0,0,1571,1569,1,0,0,0,1571,1572,1,0,0,0,1572,141,1, - 0,0,0,1573,1571,1,0,0,0,1574,1575,3,144,72,0,1575,1576,5,426,0,0, - 1576,143,1,0,0,0,1577,1578,7,13,0,0,1578,145,1,0,0,0,1579,1581,5, - 58,0,0,1580,1582,5,333,0,0,1581,1580,1,0,0,0,1581,1582,1,0,0,0,1582, - 1583,1,0,0,0,1583,1584,5,141,0,0,1584,1585,3,554,277,0,1585,1586, - 5,17,0,0,1586,1589,5,426,0,0,1587,1588,5,370,0,0,1588,1590,3,140, - 70,0,1589,1587,1,0,0,0,1589,1590,1,0,0,0,1590,147,1,0,0,0,1591,1593, - 5,101,0,0,1592,1594,5,333,0,0,1593,1592,1,0,0,0,1593,1594,1,0,0, - 0,1594,1595,1,0,0,0,1595,1597,5,141,0,0,1596,1598,3,30,15,0,1597, - 1596,1,0,0,0,1597,1598,1,0,0,0,1598,1599,1,0,0,0,1599,1600,3,556, - 278,0,1600,149,1,0,0,0,1601,1602,5,271,0,0,1602,1603,7,14,0,0,1603, - 151,1,0,0,0,1604,1605,5,58,0,0,1605,1606,5,333,0,0,1606,1607,5,194, - 0,0,1607,1608,5,432,0,0,1608,1610,5,399,0,0,1609,1611,3,248,124, - 0,1610,1609,1,0,0,0,1610,1611,1,0,0,0,1611,1612,1,0,0,0,1612,1613, - 5,400,0,0,1613,1614,3,580,290,0,1614,153,1,0,0,0,1615,1616,5,101, - 0,0,1616,1617,5,333,0,0,1617,1619,5,194,0,0,1618,1620,3,30,15,0, - 1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621,1622, - 5,432,0,0,1622,155,1,0,0,0,1623,1624,5,58,0,0,1624,1625,5,155,0, - 0,1625,1626,3,638,319,0,1626,1627,5,224,0,0,1627,1628,5,329,0,0, - 1628,1629,3,478,239,0,1629,1630,3,264,132,0,1630,1631,5,17,0,0,1631, - 1635,5,426,0,0,1632,1633,5,387,0,0,1633,1634,5,84,0,0,1634,1636, - 5,265,0,0,1635,1632,1,0,0,0,1635,1636,1,0,0,0,1636,1639,1,0,0,0, - 1637,1638,5,150,0,0,1638,1640,3,226,113,0,1639,1637,1,0,0,0,1639, - 1640,1,0,0,0,1640,1644,1,0,0,0,1641,1642,5,154,0,0,1642,1643,5,329, - 0,0,1643,1645,3,478,239,0,1644,1641,1,0,0,0,1644,1645,1,0,0,0,1645, - 1649,1,0,0,0,1646,1647,5,238,0,0,1647,1648,5,32,0,0,1648,1650,3, - 264,132,0,1649,1646,1,0,0,0,1649,1650,1,0,0,0,1650,1655,1,0,0,0, - 1651,1653,3,222,111,0,1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,1654, - 1,0,0,0,1654,1656,3,246,123,0,1655,1652,1,0,0,0,1655,1656,1,0,0, - 0,1656,1658,1,0,0,0,1657,1659,3,424,212,0,1658,1657,1,0,0,0,1658, - 1659,1,0,0,0,1659,1661,1,0,0,0,1660,1662,3,224,112,0,1661,1660,1, - 0,0,0,1661,1662,1,0,0,0,1662,1664,1,0,0,0,1663,1665,3,196,98,0,1664, - 1663,1,0,0,0,1664,1665,1,0,0,0,1665,157,1,0,0,0,1666,1667,5,101, - 0,0,1667,1669,5,155,0,0,1668,1670,3,30,15,0,1669,1668,1,0,0,0,1669, - 1670,1,0,0,0,1670,1671,1,0,0,0,1671,1672,3,638,319,0,1672,1673,5, - 224,0,0,1673,1674,3,478,239,0,1674,159,1,0,0,0,1675,1678,5,58,0, - 0,1676,1677,5,228,0,0,1677,1679,5,278,0,0,1678,1676,1,0,0,0,1678, - 1679,1,0,0,0,1679,1680,1,0,0,0,1680,1682,5,378,0,0,1681,1683,3,32, - 16,0,1682,1681,1,0,0,0,1682,1683,1,0,0,0,1683,1684,1,0,0,0,1684, - 1689,3,484,242,0,1685,1686,5,399,0,0,1686,1687,3,304,152,0,1687, - 1688,5,400,0,0,1688,1690,1,0,0,0,1689,1685,1,0,0,0,1689,1690,1,0, - 0,0,1690,1692,1,0,0,0,1691,1693,3,196,98,0,1692,1691,1,0,0,0,1692, - 1693,1,0,0,0,1693,1695,1,0,0,0,1694,1696,3,162,81,0,1695,1694,1, - 0,0,0,1695,1696,1,0,0,0,1696,1698,1,0,0,0,1697,1699,3,224,112,0, - 1698,1697,1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0,1700,1701, - 5,17,0,0,1701,1702,3,380,190,0,1702,161,1,0,0,0,1703,1704,5,238, - 0,0,1704,1710,5,224,0,0,1705,1706,5,399,0,0,1706,1711,3,254,127, - 0,1707,1708,5,316,0,0,1708,1709,5,399,0,0,1709,1711,3,204,102,0, - 1710,1705,1,0,0,0,1710,1707,1,0,0,0,1711,1712,1,0,0,0,1712,1713, - 5,400,0,0,1713,163,1,0,0,0,1714,1717,3,166,83,0,1715,1717,3,168, - 84,0,1716,1714,1,0,0,0,1716,1715,1,0,0,0,1717,165,1,0,0,0,1718,1719, - 5,42,0,0,1719,1720,5,224,0,0,1720,1721,5,399,0,0,1721,1722,3,254, - 127,0,1722,1723,5,400,0,0,1723,167,1,0,0,0,1724,1725,3,170,85,0, - 1725,1726,3,172,86,0,1726,169,1,0,0,0,1727,1728,5,98,0,0,1728,1729, - 5,224,0,0,1729,1730,5,399,0,0,1730,1731,3,254,127,0,1731,1732,5, - 400,0,0,1732,171,1,0,0,0,1733,1734,5,315,0,0,1734,1735,5,224,0,0, - 1735,1736,5,399,0,0,1736,1737,3,254,127,0,1737,1738,5,400,0,0,1738, - 173,1,0,0,0,1739,1740,5,101,0,0,1740,1742,5,378,0,0,1741,1743,3, - 30,15,0,1742,1741,1,0,0,0,1742,1743,1,0,0,0,1743,1744,1,0,0,0,1744, - 1745,3,482,241,0,1745,175,1,0,0,0,1746,1747,5,58,0,0,1747,1748,5, - 202,0,0,1748,1750,5,378,0,0,1749,1751,3,32,16,0,1750,1749,1,0,0, - 0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754,3,484,242,0,1753, - 1755,3,38,19,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0, - 0,0,1756,1758,3,196,98,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758, - 1760,1,0,0,0,1759,1761,3,162,81,0,1760,1759,1,0,0,0,1760,1761,1, - 0,0,0,1761,1763,1,0,0,0,1762,1764,3,164,82,0,1763,1762,1,0,0,0,1763, - 1764,1,0,0,0,1764,1766,1,0,0,0,1765,1767,3,222,111,0,1766,1765,1, - 0,0,0,1766,1767,1,0,0,0,1767,1769,1,0,0,0,1768,1770,3,246,123,0, - 1769,1768,1,0,0,0,1769,1770,1,0,0,0,1770,1772,1,0,0,0,1771,1773, - 3,424,212,0,1772,1771,1,0,0,0,1772,1773,1,0,0,0,1773,1775,1,0,0, - 0,1774,1776,3,224,112,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776, - 1777,1,0,0,0,1777,1778,5,17,0,0,1778,1779,3,380,190,0,1779,177,1, - 0,0,0,1780,1781,5,101,0,0,1781,1782,5,202,0,0,1782,1784,5,378,0, - 0,1783,1785,3,30,15,0,1784,1783,1,0,0,0,1784,1785,1,0,0,0,1785,1786, - 1,0,0,0,1786,1787,3,482,241,0,1787,179,1,0,0,0,1788,1789,5,58,0, - 0,1789,1790,5,293,0,0,1790,1791,5,258,0,0,1791,1792,3,638,319,0, - 1792,1794,3,188,94,0,1793,1795,3,190,95,0,1794,1793,1,0,0,0,1794, - 1795,1,0,0,0,1795,1797,1,0,0,0,1796,1798,3,268,134,0,1797,1796,1, - 0,0,0,1797,1798,1,0,0,0,1798,1799,1,0,0,0,1799,1800,3,192,96,0,1800, - 181,1,0,0,0,1801,1802,5,101,0,0,1802,1803,5,293,0,0,1803,1804,5, - 258,0,0,1804,1805,3,638,319,0,1805,183,1,0,0,0,1806,1807,5,9,0,0, - 1807,1808,5,293,0,0,1808,1809,5,258,0,0,1809,1810,3,638,319,0,1810, - 1811,3,186,93,0,1811,185,1,0,0,0,1812,1818,3,188,94,0,1813,1818, - 3,190,95,0,1814,1818,3,268,134,0,1815,1818,3,192,96,0,1816,1818, - 5,115,0,0,1817,1812,1,0,0,0,1817,1813,1,0,0,0,1817,1814,1,0,0,0, - 1817,1815,1,0,0,0,1817,1816,1,0,0,0,1818,187,1,0,0,0,1819,1820,5, - 59,0,0,1820,1835,5,426,0,0,1821,1823,5,111,0,0,1822,1824,5,431,0, - 0,1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1825,1,0,0,0,1825,1832, - 3,578,289,0,1826,1830,5,20,0,0,1827,1828,5,223,0,0,1828,1830,5,32, - 0,0,1829,1826,1,0,0,0,1829,1827,1,0,0,0,1830,1831,1,0,0,0,1831,1833, - 5,426,0,0,1832,1829,1,0,0,0,1832,1833,1,0,0,0,1833,1835,1,0,0,0, - 1834,1819,1,0,0,0,1834,1821,1,0,0,0,1835,189,1,0,0,0,1836,1837,5, - 116,0,0,1837,1838,5,17,0,0,1838,1839,5,426,0,0,1839,191,1,0,0,0, - 1840,1842,5,85,0,0,1841,1840,1,0,0,0,1841,1842,1,0,0,0,1842,1843, - 1,0,0,0,1843,1844,5,17,0,0,1844,1845,3,2,1,0,1845,193,1,0,0,0,1846, - 1849,3,638,319,0,1847,1849,5,426,0,0,1848,1846,1,0,0,0,1848,1847, - 1,0,0,0,1849,195,1,0,0,0,1850,1851,5,47,0,0,1851,1852,5,426,0,0, - 1852,197,1,0,0,0,1853,1854,5,183,0,0,1854,1855,5,431,0,0,1855,199, - 1,0,0,0,1856,1857,5,238,0,0,1857,1866,5,32,0,0,1858,1861,5,399,0, - 0,1859,1862,3,202,101,0,1860,1862,3,254,127,0,1861,1859,1,0,0,0, - 1861,1860,1,0,0,0,1862,1867,1,0,0,0,1863,1864,5,316,0,0,1864,1865, - 5,399,0,0,1865,1867,3,204,102,0,1866,1858,1,0,0,0,1866,1863,1,0, - 0,0,1867,1868,1,0,0,0,1868,1869,5,400,0,0,1869,201,1,0,0,0,1870, - 1875,3,316,158,0,1871,1872,5,397,0,0,1872,1874,3,316,158,0,1873, - 1871,1,0,0,0,1874,1877,1,0,0,0,1875,1873,1,0,0,0,1875,1876,1,0,0, - 0,1876,203,1,0,0,0,1877,1875,1,0,0,0,1878,1883,3,206,103,0,1879, - 1880,5,397,0,0,1880,1882,3,206,103,0,1881,1879,1,0,0,0,1882,1885, - 1,0,0,0,1883,1881,1,0,0,0,1883,1884,1,0,0,0,1884,205,1,0,0,0,1885, - 1883,1,0,0,0,1886,1905,3,256,128,0,1887,1892,3,666,333,0,1888,1892, - 3,668,334,0,1889,1892,3,672,336,0,1890,1892,3,674,337,0,1891,1887, - 1,0,0,0,1891,1888,1,0,0,0,1891,1889,1,0,0,0,1891,1890,1,0,0,0,1892, - 1893,1,0,0,0,1893,1894,5,399,0,0,1894,1895,3,256,128,0,1895,1896, - 5,400,0,0,1896,1905,1,0,0,0,1897,1898,7,15,0,0,1898,1899,5,399,0, - 0,1899,1900,5,431,0,0,1900,1901,5,397,0,0,1901,1902,3,256,128,0, - 1902,1903,5,400,0,0,1903,1905,1,0,0,0,1904,1886,1,0,0,0,1904,1891, - 1,0,0,0,1904,1897,1,0,0,0,1905,207,1,0,0,0,1906,1907,5,42,0,0,1907, - 1908,5,32,0,0,1908,1909,5,399,0,0,1909,1910,3,254,127,0,1910,1917, - 5,400,0,0,1911,1912,5,315,0,0,1912,1913,5,32,0,0,1913,1914,5,399, - 0,0,1914,1915,3,262,131,0,1915,1916,5,400,0,0,1916,1918,1,0,0,0, - 1917,1911,1,0,0,0,1917,1918,1,0,0,0,1918,1919,1,0,0,0,1919,1920, - 5,166,0,0,1920,1921,5,431,0,0,1921,1922,5,31,0,0,1922,209,1,0,0, - 0,1923,1924,5,310,0,0,1924,1925,5,32,0,0,1925,1926,5,399,0,0,1926, - 1927,3,254,127,0,1927,1928,5,400,0,0,1928,1929,5,224,0,0,1929,1930, - 5,399,0,0,1930,1931,3,290,145,0,1931,1933,5,400,0,0,1932,1934,3, - 40,20,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934,211,1,0,0,0,1935, - 1938,3,218,109,0,1936,1938,3,220,110,0,1937,1935,1,0,0,0,1937,1936, - 1,0,0,0,1938,213,1,0,0,0,1939,1940,5,266,0,0,1940,1941,5,426,0,0, - 1941,215,1,0,0,0,1942,1943,5,267,0,0,1943,1944,5,426,0,0,1944,217, - 1,0,0,0,1945,1946,5,291,0,0,1946,1947,5,137,0,0,1947,1948,5,301, - 0,0,1948,1952,5,426,0,0,1949,1950,5,387,0,0,1950,1951,5,302,0,0, - 1951,1953,3,226,113,0,1952,1949,1,0,0,0,1952,1953,1,0,0,0,1953,219, - 1,0,0,0,1954,1955,5,291,0,0,1955,1956,5,137,0,0,1956,1958,5,87,0, - 0,1957,1959,3,236,118,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959, - 1961,1,0,0,0,1960,1962,3,238,119,0,1961,1960,1,0,0,0,1961,1962,1, - 0,0,0,1962,1964,1,0,0,0,1963,1965,3,240,120,0,1964,1963,1,0,0,0, - 1964,1965,1,0,0,0,1965,1967,1,0,0,0,1966,1968,3,242,121,0,1967,1966, - 1,0,0,0,1967,1968,1,0,0,0,1968,1970,1,0,0,0,1969,1971,3,244,122, - 0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,221,1,0,0,0,1972,1975, - 3,220,110,0,1973,1975,3,218,109,0,1974,1972,1,0,0,0,1974,1973,1, - 0,0,0,1975,223,1,0,0,0,1976,1977,5,332,0,0,1977,1978,3,226,113,0, - 1978,225,1,0,0,0,1979,1980,5,399,0,0,1980,1981,3,228,114,0,1981, - 1982,5,400,0,0,1982,227,1,0,0,0,1983,1993,3,232,116,0,1984,1989, - 5,426,0,0,1985,1986,5,397,0,0,1986,1988,5,426,0,0,1987,1985,1,0, - 0,0,1988,1991,1,0,0,0,1989,1987,1,0,0,0,1989,1990,1,0,0,0,1990,1993, - 1,0,0,0,1991,1989,1,0,0,0,1992,1983,1,0,0,0,1992,1984,1,0,0,0,1993, - 229,1,0,0,0,1994,1995,5,399,0,0,1995,1996,3,232,116,0,1996,1997, - 5,400,0,0,1997,231,1,0,0,0,1998,2003,3,234,117,0,1999,2000,5,397, - 0,0,2000,2002,3,234,117,0,2001,1999,1,0,0,0,2002,2005,1,0,0,0,2003, - 2001,1,0,0,0,2003,2004,1,0,0,0,2004,233,1,0,0,0,2005,2003,1,0,0, - 0,2006,2007,5,426,0,0,2007,2008,5,405,0,0,2008,2009,5,426,0,0,2009, - 235,1,0,0,0,2010,2011,5,127,0,0,2011,2012,5,334,0,0,2012,2013,5, - 32,0,0,2013,2017,5,426,0,0,2014,2015,5,110,0,0,2015,2016,5,32,0, - 0,2016,2018,5,426,0,0,2017,2014,1,0,0,0,2017,2018,1,0,0,0,2018,237, - 1,0,0,0,2019,2020,5,44,0,0,2020,2021,5,169,0,0,2021,2022,5,334,0, - 0,2022,2023,5,32,0,0,2023,2024,5,426,0,0,2024,239,1,0,0,0,2025,2026, - 5,198,0,0,2026,2027,5,174,0,0,2027,2028,5,334,0,0,2028,2029,5,32, - 0,0,2029,2030,5,426,0,0,2030,241,1,0,0,0,2031,2032,5,186,0,0,2032, - 2033,5,334,0,0,2033,2034,5,32,0,0,2034,2035,5,426,0,0,2035,243,1, - 0,0,0,2036,2037,5,219,0,0,2037,2038,5,85,0,0,2038,2039,5,17,0,0, - 2039,2040,5,426,0,0,2040,245,1,0,0,0,2041,2042,5,321,0,0,2042,2043, - 5,17,0,0,2043,2044,5,160,0,0,2044,2045,5,426,0,0,2045,2046,5,233, - 0,0,2046,2051,5,426,0,0,2047,2048,5,159,0,0,2048,2049,5,426,0,0, - 2049,2050,5,232,0,0,2050,2052,5,426,0,0,2051,2047,1,0,0,0,2051,2052, - 1,0,0,0,2052,2083,1,0,0,0,2053,2054,5,321,0,0,2054,2055,5,32,0,0, - 2055,2059,5,426,0,0,2056,2057,5,387,0,0,2057,2058,5,302,0,0,2058, - 2060,3,226,113,0,2059,2056,1,0,0,0,2059,2060,1,0,0,0,2060,2064,1, - 0,0,0,2061,2062,5,321,0,0,2062,2063,5,17,0,0,2063,2065,3,638,319, - 0,2064,2061,1,0,0,0,2064,2065,1,0,0,0,2065,2083,1,0,0,0,2066,2067, - 5,321,0,0,2067,2068,5,32,0,0,2068,2072,3,638,319,0,2069,2070,5,387, - 0,0,2070,2071,5,302,0,0,2071,2073,3,226,113,0,2072,2069,1,0,0,0, - 2072,2073,1,0,0,0,2073,2077,1,0,0,0,2074,2075,5,321,0,0,2075,2076, - 5,17,0,0,2076,2078,3,638,319,0,2077,2074,1,0,0,0,2077,2078,1,0,0, - 0,2078,2083,1,0,0,0,2079,2080,5,321,0,0,2080,2081,5,17,0,0,2081, - 2083,3,638,319,0,2082,2041,1,0,0,0,2082,2053,1,0,0,0,2082,2066,1, - 0,0,0,2082,2079,1,0,0,0,2083,247,1,0,0,0,2084,2089,3,310,155,0,2085, - 2086,5,397,0,0,2086,2088,3,310,155,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,249,1,0,0,0,2091, - 2089,1,0,0,0,2092,2097,3,312,156,0,2093,2094,5,397,0,0,2094,2096, - 3,312,156,0,2095,2093,1,0,0,0,2096,2099,1,0,0,0,2097,2095,1,0,0, - 0,2097,2098,1,0,0,0,2098,251,1,0,0,0,2099,2097,1,0,0,0,2100,2105, - 3,340,170,0,2101,2102,5,397,0,0,2102,2104,3,340,170,0,2103,2101, - 1,0,0,0,2104,2107,1,0,0,0,2105,2103,1,0,0,0,2105,2106,1,0,0,0,2106, - 253,1,0,0,0,2107,2105,1,0,0,0,2108,2113,3,256,128,0,2109,2110,5, - 397,0,0,2110,2112,3,256,128,0,2111,2109,1,0,0,0,2112,2115,1,0,0, - 0,2113,2111,1,0,0,0,2113,2114,1,0,0,0,2114,255,1,0,0,0,2115,2113, - 1,0,0,0,2116,2119,3,682,341,0,2117,2119,4,128,0,0,2118,2116,1,0, - 0,0,2118,2117,1,0,0,0,2119,257,1,0,0,0,2120,2121,3,638,319,0,2121, - 259,1,0,0,0,2122,2132,3,256,128,0,2123,2128,5,395,0,0,2124,2129, - 5,104,0,0,2125,2129,5,175,0,0,2126,2129,5,375,0,0,2127,2129,3,638, - 319,0,2128,2124,1,0,0,0,2128,2125,1,0,0,0,2128,2126,1,0,0,0,2128, - 2127,1,0,0,0,2129,2131,1,0,0,0,2130,2123,1,0,0,0,2131,2134,1,0,0, - 0,2132,2130,1,0,0,0,2132,2133,1,0,0,0,2133,261,1,0,0,0,2134,2132, - 1,0,0,0,2135,2140,3,302,151,0,2136,2137,5,397,0,0,2137,2139,3,302, - 151,0,2138,2136,1,0,0,0,2139,2142,1,0,0,0,2140,2138,1,0,0,0,2140, - 2141,1,0,0,0,2141,263,1,0,0,0,2142,2140,1,0,0,0,2143,2144,5,399, - 0,0,2144,2145,3,254,127,0,2145,2146,5,400,0,0,2146,265,1,0,0,0,2147, - 2149,3,268,134,0,2148,2150,3,270,135,0,2149,2148,1,0,0,0,2149,2150, - 1,0,0,0,2150,2153,1,0,0,0,2151,2153,3,272,136,0,2152,2147,1,0,0, - 0,2152,2151,1,0,0,0,2153,267,1,0,0,0,2154,2157,3,662,331,0,2155, - 2157,3,664,332,0,2156,2154,1,0,0,0,2156,2155,1,0,0,0,2157,269,1, - 0,0,0,2158,2159,7,16,0,0,2159,271,1,0,0,0,2160,2164,5,109,0,0,2161, - 2162,5,216,0,0,2162,2164,5,109,0,0,2163,2160,1,0,0,0,2163,2161,1, - 0,0,0,2164,273,1,0,0,0,2165,2166,7,17,0,0,2166,275,1,0,0,0,2167, - 2168,5,55,0,0,2168,2170,3,638,319,0,2169,2167,1,0,0,0,2169,2170, - 1,0,0,0,2170,2171,1,0,0,0,2171,2173,3,280,140,0,2172,2174,3,336, - 168,0,2173,2172,1,0,0,0,2173,2174,1,0,0,0,2174,277,1,0,0,0,2175, - 2176,5,55,0,0,2176,2177,3,638,319,0,2177,2179,3,280,140,0,2178,2180, - 3,338,169,0,2179,2178,1,0,0,0,2179,2180,1,0,0,0,2180,279,1,0,0,0, - 2181,2184,3,282,141,0,2182,2184,3,284,142,0,2183,2181,1,0,0,0,2183, - 2182,1,0,0,0,2184,281,1,0,0,0,2185,2186,3,334,167,0,2186,2187,3, - 264,132,0,2187,283,1,0,0,0,2188,2189,5,40,0,0,2189,2190,5,399,0, - 0,2190,2191,3,580,290,0,2191,2192,5,400,0,0,2192,285,1,0,0,0,2193, - 2194,5,55,0,0,2194,2196,3,638,319,0,2195,2193,1,0,0,0,2195,2196, - 1,0,0,0,2196,2197,1,0,0,0,2197,2198,5,136,0,0,2198,2199,5,173,0, - 0,2199,2200,3,264,132,0,2200,2201,5,269,0,0,2201,2202,3,478,239, - 0,2202,2204,3,264,132,0,2203,2205,3,336,168,0,2204,2203,1,0,0,0, - 2204,2205,1,0,0,0,2205,287,1,0,0,0,2206,2207,5,55,0,0,2207,2208, - 3,638,319,0,2208,2209,5,136,0,0,2209,2210,5,173,0,0,2210,2211,3, - 264,132,0,2211,2212,5,269,0,0,2212,2213,3,478,239,0,2213,2215,3, - 264,132,0,2214,2216,3,338,169,0,2215,2214,1,0,0,0,2215,2216,1,0, - 0,0,2216,289,1,0,0,0,2217,2220,3,296,148,0,2218,2220,3,292,146,0, - 2219,2217,1,0,0,0,2219,2218,1,0,0,0,2220,291,1,0,0,0,2221,2226,3, - 294,147,0,2222,2223,5,397,0,0,2223,2225,3,294,147,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, - 293,1,0,0,0,2228,2226,1,0,0,0,2229,2230,5,399,0,0,2230,2231,3,296, - 148,0,2231,2232,5,400,0,0,2232,295,1,0,0,0,2233,2238,3,572,286,0, - 2234,2235,5,397,0,0,2235,2237,3,572,286,0,2236,2234,1,0,0,0,2237, - 2240,1,0,0,0,2238,2236,1,0,0,0,2238,2239,1,0,0,0,2239,297,1,0,0, - 0,2240,2238,1,0,0,0,2241,2242,7,18,0,0,2242,299,1,0,0,0,2243,2244, - 5,220,0,0,2244,2245,7,19,0,0,2245,301,1,0,0,0,2246,2248,3,256,128, - 0,2247,2249,3,298,149,0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249, - 2251,1,0,0,0,2250,2252,3,300,150,0,2251,2250,1,0,0,0,2251,2252,1, - 0,0,0,2252,303,1,0,0,0,2253,2258,3,306,153,0,2254,2255,5,397,0,0, - 2255,2257,3,306,153,0,2256,2254,1,0,0,0,2257,2260,1,0,0,0,2258,2256, - 1,0,0,0,2258,2259,1,0,0,0,2259,305,1,0,0,0,2260,2258,1,0,0,0,2261, - 2264,3,258,129,0,2262,2263,5,47,0,0,2263,2265,5,426,0,0,2264,2262, - 1,0,0,0,2264,2265,1,0,0,0,2265,307,1,0,0,0,2266,2269,3,256,128,0, - 2267,2269,3,580,290,0,2268,2266,1,0,0,0,2268,2267,1,0,0,0,2269,2271, - 1,0,0,0,2270,2272,3,298,149,0,2271,2270,1,0,0,0,2271,2272,1,0,0, - 0,2272,2274,1,0,0,0,2273,2275,3,300,150,0,2274,2273,1,0,0,0,2274, - 2275,1,0,0,0,2275,309,1,0,0,0,2276,2277,3,258,129,0,2277,2280,3, - 342,171,0,2278,2279,5,47,0,0,2279,2281,5,426,0,0,2280,2278,1,0,0, - 0,2280,2281,1,0,0,0,2281,311,1,0,0,0,2282,2285,3,314,157,0,2283, - 2285,3,316,158,0,2284,2282,1,0,0,0,2284,2283,1,0,0,0,2285,313,1, - 0,0,0,2286,2289,3,286,143,0,2287,2289,3,276,138,0,2288,2286,1,0, - 0,0,2288,2287,1,0,0,0,2289,315,1,0,0,0,2290,2291,3,258,129,0,2291, - 2293,3,342,171,0,2292,2294,3,318,159,0,2293,2292,1,0,0,0,2293,2294, - 1,0,0,0,2294,2297,1,0,0,0,2295,2296,5,47,0,0,2296,2298,5,426,0,0, - 2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298,317,1,0,0,0,2299,2302,3, - 320,160,0,2300,2302,3,322,161,0,2301,2299,1,0,0,0,2301,2300,1,0, - 0,0,2302,319,1,0,0,0,2303,2304,5,55,0,0,2304,2306,3,638,319,0,2305, - 2303,1,0,0,0,2305,2306,1,0,0,0,2306,2307,1,0,0,0,2307,2308,5,269, - 0,0,2308,2309,3,478,239,0,2309,2310,5,399,0,0,2310,2311,3,256,128, - 0,2311,2313,5,400,0,0,2312,2314,3,336,168,0,2313,2312,1,0,0,0,2313, - 2314,1,0,0,0,2314,321,1,0,0,0,2315,2316,5,55,0,0,2316,2318,3,638, - 319,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318,2319,1,0,0,0,2319, - 2321,3,330,165,0,2320,2322,3,336,168,0,2321,2320,1,0,0,0,2321,2322, - 1,0,0,0,2322,323,1,0,0,0,2323,2326,3,326,163,0,2324,2326,3,328,164, - 0,2325,2323,1,0,0,0,2325,2324,1,0,0,0,2326,325,1,0,0,0,2327,2328, - 5,55,0,0,2328,2330,3,638,319,0,2329,2327,1,0,0,0,2329,2330,1,0,0, - 0,2330,2331,1,0,0,0,2331,2332,5,269,0,0,2332,2333,3,478,239,0,2333, - 2334,5,399,0,0,2334,2335,3,256,128,0,2335,2337,5,400,0,0,2336,2338, - 3,338,169,0,2337,2336,1,0,0,0,2337,2338,1,0,0,0,2338,327,1,0,0,0, - 2339,2340,5,55,0,0,2340,2342,3,638,319,0,2341,2339,1,0,0,0,2341, - 2342,1,0,0,0,2342,2343,1,0,0,0,2343,2345,3,330,165,0,2344,2346,3, - 338,169,0,2345,2344,1,0,0,0,2345,2346,1,0,0,0,2346,329,1,0,0,0,2347, - 2348,5,216,0,0,2348,2354,5,219,0,0,2349,2350,5,83,0,0,2350,2354, - 3,332,166,0,2351,2354,3,284,142,0,2352,2354,3,334,167,0,2353,2347, - 1,0,0,0,2353,2349,1,0,0,0,2353,2351,1,0,0,0,2353,2352,1,0,0,0,2354, - 331,1,0,0,0,2355,2359,3,572,286,0,2356,2359,3,550,275,0,2357,2359, - 3,560,280,0,2358,2355,1,0,0,0,2358,2356,1,0,0,0,2358,2357,1,0,0, - 0,2359,333,1,0,0,0,2360,2361,5,251,0,0,2361,2364,5,173,0,0,2362, - 2364,5,358,0,0,2363,2360,1,0,0,0,2363,2362,1,0,0,0,2364,335,1,0, - 0,0,2365,2367,3,266,133,0,2366,2368,3,274,137,0,2367,2366,1,0,0, - 0,2367,2368,1,0,0,0,2368,337,1,0,0,0,2369,2371,3,266,133,0,2370, - 2372,3,274,137,0,2371,2370,1,0,0,0,2371,2372,1,0,0,0,2372,339,1, - 0,0,0,2373,2374,3,258,129,0,2374,2375,5,396,0,0,2375,2378,3,342, - 171,0,2376,2377,5,47,0,0,2377,2379,5,426,0,0,2378,2376,1,0,0,0,2378, - 2379,1,0,0,0,2379,341,1,0,0,0,2380,2381,3,346,173,0,2381,343,1,0, - 0,0,2382,2387,3,342,171,0,2383,2384,5,397,0,0,2384,2386,3,342,171, - 0,2385,2383,1,0,0,0,2386,2389,1,0,0,0,2387,2385,1,0,0,0,2387,2388, - 1,0,0,0,2388,345,1,0,0,0,2389,2387,1,0,0,0,2390,2396,3,348,174,0, - 2391,2396,3,350,175,0,2392,2396,3,352,176,0,2393,2396,3,354,177, - 0,2394,2396,3,356,178,0,2395,2390,1,0,0,0,2395,2391,1,0,0,0,2395, - 2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1,0,0,0,2396,347,1,0,0, - 0,2397,2435,5,340,0,0,2398,2435,5,311,0,0,2399,2435,5,162,0,0,2400, - 2435,5,163,0,0,2401,2435,5,26,0,0,2402,2435,5,28,0,0,2403,2435,5, - 131,0,0,2404,2435,5,264,0,0,2405,2407,5,100,0,0,2406,2408,5,248, - 0,0,2407,2406,1,0,0,0,2407,2408,1,0,0,0,2408,2435,1,0,0,0,2409,2435, - 5,71,0,0,2410,2435,5,72,0,0,2411,2435,5,337,0,0,2412,2435,5,338, - 0,0,2413,2414,5,337,0,0,2414,2415,5,387,0,0,2415,2416,5,188,0,0, - 2416,2417,5,336,0,0,2417,2435,5,394,0,0,2418,2435,5,323,0,0,2419, - 2435,5,27,0,0,2420,2428,3,680,340,0,2421,2422,5,399,0,0,2422,2425, - 5,431,0,0,2423,2424,5,397,0,0,2424,2426,5,431,0,0,2425,2423,1,0, - 0,0,2425,2426,1,0,0,0,2426,2427,1,0,0,0,2427,2429,5,400,0,0,2428, - 2421,1,0,0,0,2428,2429,1,0,0,0,2429,2435,1,0,0,0,2430,2431,7,20, - 0,0,2431,2432,5,399,0,0,2432,2433,5,431,0,0,2433,2435,5,400,0,0, - 2434,2397,1,0,0,0,2434,2398,1,0,0,0,2434,2399,1,0,0,0,2434,2400, - 1,0,0,0,2434,2401,1,0,0,0,2434,2402,1,0,0,0,2434,2403,1,0,0,0,2434, - 2404,1,0,0,0,2434,2405,1,0,0,0,2434,2409,1,0,0,0,2434,2410,1,0,0, - 0,2434,2411,1,0,0,0,2434,2412,1,0,0,0,2434,2413,1,0,0,0,2434,2418, - 1,0,0,0,2434,2419,1,0,0,0,2434,2420,1,0,0,0,2434,2430,1,0,0,0,2435, - 349,1,0,0,0,2436,2437,5,16,0,0,2437,2438,5,409,0,0,2438,2439,3,346, - 173,0,2439,2440,5,411,0,0,2440,351,1,0,0,0,2441,2442,5,324,0,0,2442, - 2443,5,409,0,0,2443,2444,3,252,126,0,2444,2445,5,411,0,0,2445,353, - 1,0,0,0,2446,2447,5,198,0,0,2447,2448,5,409,0,0,2448,2449,3,348, - 174,0,2449,2450,5,397,0,0,2450,2451,3,346,173,0,2451,2452,5,411, - 0,0,2452,355,1,0,0,0,2453,2454,5,357,0,0,2454,2455,5,409,0,0,2455, - 2456,3,344,172,0,2456,2457,5,411,0,0,2457,357,1,0,0,0,2458,2460, - 7,21,0,0,2459,2461,7,22,0,0,2460,2459,1,0,0,0,2460,2461,1,0,0,0, - 2461,359,1,0,0,0,2462,2464,3,364,182,0,2463,2462,1,0,0,0,2463,2464, - 1,0,0,0,2464,2465,1,0,0,0,2465,2466,3,362,181,0,2466,361,1,0,0,0, - 2467,2470,3,368,184,0,2468,2470,3,372,186,0,2469,2467,1,0,0,0,2469, - 2468,1,0,0,0,2470,363,1,0,0,0,2471,2472,5,387,0,0,2472,2477,3,366, - 183,0,2473,2474,5,397,0,0,2474,2476,3,366,183,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,365, - 1,0,0,0,2479,2477,1,0,0,0,2480,2485,3,638,319,0,2481,2482,5,399, - 0,0,2482,2483,3,254,127,0,2483,2484,5,400,0,0,2484,2486,1,0,0,0, - 2485,2481,1,0,0,0,2485,2486,1,0,0,0,2486,2487,1,0,0,0,2487,2488, - 5,17,0,0,2488,2489,5,399,0,0,2489,2490,3,360,180,0,2490,2491,5,400, - 0,0,2491,367,1,0,0,0,2492,2498,3,370,185,0,2493,2494,3,358,179,0, - 2494,2495,3,370,185,0,2495,2497,1,0,0,0,2496,2493,1,0,0,0,2497,2500, - 1,0,0,0,2498,2496,1,0,0,0,2498,2499,1,0,0,0,2499,369,1,0,0,0,2500, - 2498,1,0,0,0,2501,2502,3,448,224,0,2502,2503,3,382,191,0,2503,2505, - 3,500,250,0,2504,2506,3,462,231,0,2505,2504,1,0,0,0,2505,2506,1, - 0,0,0,2506,2508,1,0,0,0,2507,2509,3,494,247,0,2508,2507,1,0,0,0, - 2508,2509,1,0,0,0,2509,2511,1,0,0,0,2510,2512,3,520,260,0,2511,2510, - 1,0,0,0,2511,2512,1,0,0,0,2512,2514,1,0,0,0,2513,2515,3,528,264, - 0,2514,2513,1,0,0,0,2514,2515,1,0,0,0,2515,2517,1,0,0,0,2516,2518, - 3,512,256,0,2517,2516,1,0,0,0,2517,2518,1,0,0,0,2518,2520,1,0,0, - 0,2519,2521,3,530,265,0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521, - 2523,1,0,0,0,2522,2524,3,542,271,0,2523,2522,1,0,0,0,2523,2524,1, - 0,0,0,2524,2526,1,0,0,0,2525,2527,3,544,272,0,2526,2525,1,0,0,0, - 2526,2527,1,0,0,0,2527,2529,1,0,0,0,2528,2530,3,546,273,0,2529,2528, - 1,0,0,0,2529,2530,1,0,0,0,2530,2532,1,0,0,0,2531,2533,3,548,274, - 0,2532,2531,1,0,0,0,2532,2533,1,0,0,0,2533,2535,1,0,0,0,2534,2536, - 3,386,193,0,2535,2534,1,0,0,0,2535,2536,1,0,0,0,2536,2573,1,0,0, - 0,2537,2538,3,448,224,0,2538,2540,3,500,250,0,2539,2541,3,462,231, - 0,2540,2539,1,0,0,0,2540,2541,1,0,0,0,2541,2543,1,0,0,0,2542,2544, - 3,494,247,0,2543,2542,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2547,3,520,260,0,2546,2545,1,0,0,0,2546,2547,1,0,0,0,2547, - 2549,1,0,0,0,2548,2550,3,528,264,0,2549,2548,1,0,0,0,2549,2550,1, - 0,0,0,2550,2552,1,0,0,0,2551,2553,3,512,256,0,2552,2551,1,0,0,0, - 2552,2553,1,0,0,0,2553,2555,1,0,0,0,2554,2556,3,530,265,0,2555,2554, - 1,0,0,0,2555,2556,1,0,0,0,2556,2558,1,0,0,0,2557,2559,3,542,271, - 0,2558,2557,1,0,0,0,2558,2559,1,0,0,0,2559,2561,1,0,0,0,2560,2562, - 3,544,272,0,2561,2560,1,0,0,0,2561,2562,1,0,0,0,2562,2564,1,0,0, - 0,2563,2565,3,546,273,0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565, - 2567,1,0,0,0,2566,2568,3,548,274,0,2567,2566,1,0,0,0,2567,2568,1, - 0,0,0,2568,2570,1,0,0,0,2569,2571,3,386,193,0,2570,2569,1,0,0,0, - 2570,2571,1,0,0,0,2571,2573,1,0,0,0,2572,2501,1,0,0,0,2572,2537, - 1,0,0,0,2573,371,1,0,0,0,2574,2575,3,382,191,0,2575,2576,3,376,188, - 0,2576,2579,1,0,0,0,2577,2579,3,376,188,0,2578,2574,1,0,0,0,2578, - 2577,1,0,0,0,2579,373,1,0,0,0,2580,2582,3,500,250,0,2581,2583,3, - 448,224,0,2582,2581,1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0, - 2584,2586,3,494,247,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0,2586,2588, - 1,0,0,0,2587,2589,3,520,260,0,2588,2587,1,0,0,0,2588,2589,1,0,0, - 0,2589,2591,1,0,0,0,2590,2592,3,528,264,0,2591,2590,1,0,0,0,2591, - 2592,1,0,0,0,2592,2594,1,0,0,0,2593,2595,3,512,256,0,2594,2593,1, - 0,0,0,2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2598,3,530,265,0, - 2597,2596,1,0,0,0,2597,2598,1,0,0,0,2598,2605,1,0,0,0,2599,2600, - 5,399,0,0,2600,2601,3,376,188,0,2601,2602,5,400,0,0,2602,2605,1, - 0,0,0,2603,2605,3,496,248,0,2604,2580,1,0,0,0,2604,2599,1,0,0,0, - 2604,2603,1,0,0,0,2605,375,1,0,0,0,2606,2608,3,374,187,0,2607,2609, - 3,378,189,0,2608,2607,1,0,0,0,2608,2609,1,0,0,0,2609,2611,1,0,0, - 0,2610,2612,3,542,271,0,2611,2610,1,0,0,0,2611,2612,1,0,0,0,2612, - 2614,1,0,0,0,2613,2615,3,544,272,0,2614,2613,1,0,0,0,2614,2615,1, - 0,0,0,2615,2617,1,0,0,0,2616,2618,3,546,273,0,2617,2616,1,0,0,0, - 2617,2618,1,0,0,0,2618,2620,1,0,0,0,2619,2621,3,548,274,0,2620,2619, - 1,0,0,0,2620,2621,1,0,0,0,2621,2623,1,0,0,0,2622,2624,3,386,193, - 0,2623,2622,1,0,0,0,2623,2624,1,0,0,0,2624,377,1,0,0,0,2625,2626, - 3,358,179,0,2626,2627,3,374,187,0,2627,2629,1,0,0,0,2628,2625,1, - 0,0,0,2629,2630,1,0,0,0,2630,2628,1,0,0,0,2630,2631,1,0,0,0,2631, - 379,1,0,0,0,2632,2634,3,364,182,0,2633,2632,1,0,0,0,2633,2634,1, - 0,0,0,2634,2635,1,0,0,0,2635,2636,3,376,188,0,2636,381,1,0,0,0,2637, - 2654,5,161,0,0,2638,2639,5,235,0,0,2639,2641,3,384,192,0,2640,2642, - 3,32,16,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,2655,1,0,0,0, - 2643,2645,5,166,0,0,2644,2646,5,329,0,0,2645,2644,1,0,0,0,2645,2646, - 1,0,0,0,2646,2647,1,0,0,0,2647,2652,3,624,312,0,2648,2649,5,399, - 0,0,2649,2650,3,254,127,0,2650,2651,5,400,0,0,2651,2653,1,0,0,0, - 2652,2648,1,0,0,0,2652,2653,1,0,0,0,2653,2655,1,0,0,0,2654,2638, - 1,0,0,0,2654,2643,1,0,0,0,2655,383,1,0,0,0,2656,2658,5,188,0,0,2657, - 2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,5,93, - 0,0,2660,2662,5,426,0,0,2661,2663,3,222,111,0,2662,2661,1,0,0,0, - 2662,2663,1,0,0,0,2663,2665,1,0,0,0,2664,2666,3,246,123,0,2665,2664, - 1,0,0,0,2665,2666,1,0,0,0,2666,2670,1,0,0,0,2667,2668,5,329,0,0, - 2668,2670,3,624,312,0,2669,2657,1,0,0,0,2669,2667,1,0,0,0,2670,385, - 1,0,0,0,2671,2680,5,185,0,0,2672,2673,5,431,0,0,2673,2675,5,397, - 0,0,2674,2672,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676,2681, - 5,431,0,0,2677,2678,5,431,0,0,2678,2679,5,223,0,0,2679,2681,5,431, - 0,0,2680,2674,1,0,0,0,2680,2677,1,0,0,0,2681,387,1,0,0,0,2682,2683, - 3,256,128,0,2683,2684,5,405,0,0,2684,2685,3,390,195,0,2685,389,1, - 0,0,0,2686,2689,5,83,0,0,2687,2689,3,590,295,0,2688,2686,1,0,0,0, - 2688,2687,1,0,0,0,2689,391,1,0,0,0,2690,2691,5,304,0,0,2691,2696, - 3,388,194,0,2692,2693,5,397,0,0,2693,2695,3,388,194,0,2694,2692, - 1,0,0,0,2695,2698,1,0,0,0,2696,2694,1,0,0,0,2696,2697,1,0,0,0,2697, - 393,1,0,0,0,2698,2696,1,0,0,0,2699,2700,5,318,0,0,2700,2709,5,344, - 0,0,2701,2706,3,396,198,0,2702,2703,5,397,0,0,2703,2705,3,396,198, - 0,2704,2702,1,0,0,0,2705,2708,1,0,0,0,2706,2704,1,0,0,0,2706,2707, - 1,0,0,0,2707,2710,1,0,0,0,2708,2706,1,0,0,0,2709,2701,1,0,0,0,2709, - 2710,1,0,0,0,2710,2723,1,0,0,0,2711,2713,5,48,0,0,2712,2714,5,389, - 0,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2723,1,0,0,0,2715,2717, - 5,289,0,0,2716,2718,5,389,0,0,2717,2716,1,0,0,0,2717,2718,1,0,0, - 0,2718,2723,1,0,0,0,2719,2720,5,304,0,0,2720,2721,5,22,0,0,2721, - 2723,7,23,0,0,2722,2699,1,0,0,0,2722,2711,1,0,0,0,2722,2715,1,0, - 0,0,2722,2719,1,0,0,0,2723,395,1,0,0,0,2724,2725,5,168,0,0,2725, - 2726,5,182,0,0,2726,2730,5,312,0,0,2727,2728,5,261,0,0,2728,2730, - 7,24,0,0,2729,2724,1,0,0,0,2729,2727,1,0,0,0,2730,397,1,0,0,0,2731, - 2734,3,402,201,0,2732,2734,3,404,202,0,2733,2731,1,0,0,0,2733,2732, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 2739,1,0,0,0,2737,2735,1,0,0,0,2738,2740,3,400,200,0,2739,2738,1, - 0,0,0,2739,2740,1,0,0,0,2740,399,1,0,0,0,2741,2742,5,383,0,0,2742, - 2743,5,216,0,0,2743,2746,5,201,0,0,2744,2745,5,11,0,0,2745,2747, - 3,580,290,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747,2748,1,0,0, - 0,2748,2749,5,335,0,0,2749,2751,5,161,0,0,2750,2752,3,264,132,0, - 2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2753,1,0,0,0,2753,2754, - 5,374,0,0,2754,2755,3,538,269,0,2755,401,1,0,0,0,2756,2757,5,383, - 0,0,2757,2758,5,201,0,0,2758,2759,5,11,0,0,2759,2760,3,580,290,0, - 2760,2764,5,335,0,0,2761,2762,5,365,0,0,2762,2765,3,392,196,0,2763, - 2765,5,86,0,0,2764,2761,1,0,0,0,2764,2763,1,0,0,0,2765,403,1,0,0, - 0,2766,2767,5,383,0,0,2767,2768,5,201,0,0,2768,2772,5,335,0,0,2769, - 2770,5,365,0,0,2770,2773,3,392,196,0,2771,2773,5,86,0,0,2772,2769, - 1,0,0,0,2772,2771,1,0,0,0,2773,405,1,0,0,0,2774,2775,5,246,0,0,2775, - 2776,5,426,0,0,2776,407,1,0,0,0,2777,2778,5,352,0,0,2778,2779,5, - 426,0,0,2779,409,1,0,0,0,2780,2781,5,320,0,0,2781,2782,5,426,0,0, - 2782,411,1,0,0,0,2783,2814,5,9,0,0,2784,2785,5,329,0,0,2785,2786, - 3,478,239,0,2786,2787,3,414,207,0,2787,2815,1,0,0,0,2788,2789,5, - 378,0,0,2789,2791,3,482,241,0,2790,2792,5,17,0,0,2791,2790,1,0,0, - 0,2791,2792,1,0,0,0,2792,2793,1,0,0,0,2793,2794,3,418,209,0,2794, - 2815,1,0,0,0,2795,2796,5,202,0,0,2796,2797,5,378,0,0,2797,2801,3, - 482,241,0,2798,2802,3,36,18,0,2799,2802,3,38,19,0,2800,2802,5,265, - 0,0,2801,2798,1,0,0,0,2801,2799,1,0,0,0,2801,2800,1,0,0,0,2802,2815, - 1,0,0,0,2803,2804,3,70,35,0,2804,2805,3,420,210,0,2805,2815,1,0, - 0,0,2806,2807,5,69,0,0,2807,2815,3,422,211,0,2808,2809,5,155,0,0, - 2809,2810,3,638,319,0,2810,2811,5,224,0,0,2811,2812,3,624,312,0, - 2812,2813,5,265,0,0,2813,2815,1,0,0,0,2814,2784,1,0,0,0,2814,2788, - 1,0,0,0,2814,2795,1,0,0,0,2814,2803,1,0,0,0,2814,2806,1,0,0,0,2814, - 2808,1,0,0,0,2815,413,1,0,0,0,2816,2817,5,274,0,0,2817,2818,5,341, - 0,0,2818,2906,3,480,240,0,2819,2820,5,102,0,0,2820,2906,5,239,0, - 0,2821,2906,3,426,213,0,2822,2824,5,4,0,0,2823,2825,3,32,16,0,2824, - 2823,1,0,0,0,2824,2825,1,0,0,0,2825,2830,1,0,0,0,2826,2828,3,626, - 313,0,2827,2829,3,424,212,0,2828,2827,1,0,0,0,2828,2829,1,0,0,0, - 2829,2831,1,0,0,0,2830,2826,1,0,0,0,2831,2832,1,0,0,0,2832,2830, - 1,0,0,0,2832,2833,1,0,0,0,2833,2906,1,0,0,0,2834,2838,5,342,0,0, - 2835,2837,3,626,313,0,2836,2835,1,0,0,0,2837,2840,1,0,0,0,2838,2836, - 1,0,0,0,2838,2839,1,0,0,0,2839,2906,1,0,0,0,2840,2838,1,0,0,0,2841, - 2845,5,15,0,0,2842,2844,3,626,313,0,2843,2842,1,0,0,0,2844,2847, - 1,0,0,0,2845,2843,1,0,0,0,2845,2846,1,0,0,0,2846,2906,1,0,0,0,2847, - 2845,1,0,0,0,2848,2852,5,353,0,0,2849,2851,3,626,313,0,2850,2849, - 1,0,0,0,2851,2854,1,0,0,0,2852,2850,1,0,0,0,2852,2853,1,0,0,0,2853, - 2906,1,0,0,0,2854,2852,1,0,0,0,2855,2856,5,304,0,0,2856,2857,5,332, - 0,0,2857,2906,3,226,113,0,2858,2859,5,363,0,0,2859,2861,5,332,0, - 0,2860,2862,3,30,15,0,2861,2860,1,0,0,0,2861,2862,1,0,0,0,2862,2863, - 1,0,0,0,2863,2906,3,226,113,0,2864,2906,3,210,105,0,2865,2868,5, - 216,0,0,2866,2869,5,310,0,0,2867,2869,3,40,20,0,2868,2866,1,0,0, - 0,2868,2867,1,0,0,0,2869,2906,1,0,0,0,2870,2871,5,113,0,0,2871,2872, - 3,626,313,0,2872,2873,5,387,0,0,2873,2874,5,329,0,0,2874,2875,3, - 478,239,0,2875,2906,1,0,0,0,2876,2877,5,237,0,0,2877,2878,5,45,0, - 0,2878,2879,5,399,0,0,2879,2880,3,310,155,0,2880,2881,5,400,0,0, - 2881,2906,1,0,0,0,2882,2883,5,101,0,0,2883,2884,5,55,0,0,2884,2906, - 3,638,319,0,2885,2888,5,4,0,0,2886,2889,3,288,144,0,2887,2889,3, - 278,139,0,2888,2886,1,0,0,0,2888,2887,1,0,0,0,2889,2906,1,0,0,0, - 2890,2892,3,626,313,0,2891,2890,1,0,0,0,2891,2892,1,0,0,0,2892,2893, - 1,0,0,0,2893,2906,3,416,208,0,2894,2895,5,304,0,0,2895,2896,5,236, - 0,0,2896,2906,3,126,63,0,2897,2898,5,304,0,0,2898,2899,5,237,0,0, - 2899,2900,5,316,0,0,2900,2901,5,399,0,0,2901,2902,3,204,102,0,2902, - 2903,5,400,0,0,2903,2906,1,0,0,0,2904,2906,3,430,215,0,2905,2816, - 1,0,0,0,2905,2819,1,0,0,0,2905,2821,1,0,0,0,2905,2822,1,0,0,0,2905, - 2834,1,0,0,0,2905,2841,1,0,0,0,2905,2848,1,0,0,0,2905,2855,1,0,0, - 0,2905,2858,1,0,0,0,2905,2864,1,0,0,0,2905,2865,1,0,0,0,2905,2870, - 1,0,0,0,2905,2876,1,0,0,0,2905,2882,1,0,0,0,2905,2885,1,0,0,0,2905, - 2891,1,0,0,0,2905,2894,1,0,0,0,2905,2897,1,0,0,0,2905,2904,1,0,0, - 0,2906,415,1,0,0,0,2907,2908,5,304,0,0,2908,2909,5,129,0,0,2909, - 3040,3,432,216,0,2910,2911,5,304,0,0,2911,2912,5,189,0,0,2912,3040, - 5,426,0,0,2913,3040,5,53,0,0,2914,2924,5,304,0,0,2915,2916,5,301, - 0,0,2916,2920,5,426,0,0,2917,2918,5,387,0,0,2918,2919,5,302,0,0, - 2919,2921,3,226,113,0,2920,2917,1,0,0,0,2920,2921,1,0,0,0,2921,2925, - 1,0,0,0,2922,2923,5,302,0,0,2923,2925,3,226,113,0,2924,2915,1,0, - 0,0,2924,2922,1,0,0,0,2925,3040,1,0,0,0,2926,2927,5,363,0,0,2927, - 2928,5,302,0,0,2928,3040,3,226,113,0,2929,2930,5,274,0,0,2930,2931, - 5,341,0,0,2931,3040,3,626,313,0,2932,2933,5,166,0,0,2933,2934,5, - 431,0,0,2934,3040,5,31,0,0,2935,2936,5,304,0,0,2936,2937,5,310,0, - 0,2937,2938,5,189,0,0,2938,2939,5,399,0,0,2939,2944,3,428,214,0, - 2940,2941,5,397,0,0,2941,2943,3,428,214,0,2942,2940,1,0,0,0,2943, - 2946,1,0,0,0,2944,2942,1,0,0,0,2944,2945,1,0,0,0,2945,2947,1,0,0, - 0,2946,2944,1,0,0,0,2947,2948,5,400,0,0,2948,3040,1,0,0,0,2949,2950, - 5,216,0,0,2950,3040,7,25,0,0,2951,3040,3,208,104,0,2952,2953,5,49, - 0,0,2953,2956,5,426,0,0,2954,2955,5,11,0,0,2955,2957,5,380,0,0,2956, - 2954,1,0,0,0,2956,2957,1,0,0,0,2957,2962,1,0,0,0,2958,2959,5,42, - 0,0,2959,2960,5,166,0,0,2960,2961,5,431,0,0,2961,2963,5,31,0,0,2962, - 2958,1,0,0,0,2962,2963,1,0,0,0,2963,2965,1,0,0,0,2964,2966,3,542, - 271,0,2965,2964,1,0,0,0,2965,2966,1,0,0,0,2966,2968,1,0,0,0,2967, - 2969,3,406,203,0,2968,2967,1,0,0,0,2968,2969,1,0,0,0,2969,2974,1, - 0,0,0,2970,2971,5,387,0,0,2971,2972,5,235,0,0,2972,2973,5,332,0, - 0,2973,2975,3,226,113,0,2974,2970,1,0,0,0,2974,2975,1,0,0,0,2975, - 3040,1,0,0,0,2976,2977,5,365,0,0,2977,2978,5,319,0,0,2978,2980,5, - 134,0,0,2979,2981,5,45,0,0,2980,2979,1,0,0,0,2980,2981,1,0,0,0,2981, - 2982,1,0,0,0,2982,2983,3,256,128,0,2983,2984,5,304,0,0,2984,2987, - 3,226,113,0,2985,2986,5,47,0,0,2986,2988,5,426,0,0,2987,2985,1,0, - 0,0,2987,2988,1,0,0,0,2988,3040,1,0,0,0,2989,2990,5,365,0,0,2990, - 2991,5,319,0,0,2991,2992,5,304,0,0,2992,3040,3,226,113,0,2993,2995, - 5,38,0,0,2994,2996,5,45,0,0,2995,2994,1,0,0,0,2995,2996,1,0,0,0, - 2996,2997,1,0,0,0,2997,2998,3,256,128,0,2998,2999,3,258,129,0,2999, - 3001,3,342,171,0,3000,3002,3,324,162,0,3001,3000,1,0,0,0,3001,3002, - 1,0,0,0,3002,3005,1,0,0,0,3003,3004,5,47,0,0,3004,3006,5,426,0,0, - 3005,3003,1,0,0,0,3005,3006,1,0,0,0,3006,3010,1,0,0,0,3007,3011, - 5,130,0,0,3008,3009,5,6,0,0,3009,3011,3,638,319,0,3010,3007,1,0, - 0,0,3010,3008,1,0,0,0,3010,3011,1,0,0,0,3011,3013,1,0,0,0,3012,3014, - 3,34,17,0,3013,3012,1,0,0,0,3013,3014,1,0,0,0,3014,3040,1,0,0,0, - 3015,3018,5,4,0,0,3016,3018,5,278,0,0,3017,3015,1,0,0,0,3017,3016, - 1,0,0,0,3018,3019,1,0,0,0,3019,3020,5,46,0,0,3020,3021,5,399,0,0, - 3021,3022,3,248,124,0,3022,3024,5,400,0,0,3023,3025,3,34,17,0,3024, - 3023,1,0,0,0,3024,3025,1,0,0,0,3025,3040,1,0,0,0,3026,3027,5,365, - 0,0,3027,3029,5,46,0,0,3028,3030,3,34,17,0,3029,3028,1,0,0,0,3029, - 3030,1,0,0,0,3030,3040,1,0,0,0,3031,3037,3,268,134,0,3032,3034,5, - 218,0,0,3033,3035,5,34,0,0,3034,3033,1,0,0,0,3034,3035,1,0,0,0,3035, - 3038,1,0,0,0,3036,3038,5,222,0,0,3037,3032,1,0,0,0,3037,3036,1,0, - 0,0,3038,3040,1,0,0,0,3039,2907,1,0,0,0,3039,2910,1,0,0,0,3039,2913, - 1,0,0,0,3039,2914,1,0,0,0,3039,2926,1,0,0,0,3039,2929,1,0,0,0,3039, - 2932,1,0,0,0,3039,2935,1,0,0,0,3039,2949,1,0,0,0,3039,2951,1,0,0, - 0,3039,2952,1,0,0,0,3039,2976,1,0,0,0,3039,2989,1,0,0,0,3039,2993, - 1,0,0,0,3039,3017,1,0,0,0,3039,3026,1,0,0,0,3039,3031,1,0,0,0,3040, - 417,1,0,0,0,3041,3042,5,304,0,0,3042,3043,5,332,0,0,3043,3068,3, - 226,113,0,3044,3045,5,363,0,0,3045,3047,5,332,0,0,3046,3048,3,30, - 15,0,3047,3046,1,0,0,0,3047,3048,1,0,0,0,3048,3049,1,0,0,0,3049, - 3068,3,226,113,0,3050,3051,5,274,0,0,3051,3052,5,341,0,0,3052,3068, - 3,480,240,0,3053,3055,5,4,0,0,3054,3056,3,32,16,0,3055,3054,1,0, - 0,0,3055,3056,1,0,0,0,3056,3061,1,0,0,0,3057,3059,3,626,313,0,3058, - 3060,3,424,212,0,3059,3058,1,0,0,0,3059,3060,1,0,0,0,3060,3062,1, - 0,0,0,3061,3057,1,0,0,0,3062,3063,1,0,0,0,3063,3061,1,0,0,0,3063, - 3064,1,0,0,0,3064,3068,1,0,0,0,3065,3068,3,426,213,0,3066,3068,3, - 380,190,0,3067,3041,1,0,0,0,3067,3044,1,0,0,0,3067,3050,1,0,0,0, - 3067,3053,1,0,0,0,3067,3065,1,0,0,0,3067,3066,1,0,0,0,3068,419,1, - 0,0,0,3069,3070,3,472,236,0,3070,3071,5,304,0,0,3071,3072,5,76,0, - 0,3072,3073,3,230,115,0,3073,3085,1,0,0,0,3074,3075,3,472,236,0, - 3075,3076,5,304,0,0,3076,3077,5,236,0,0,3077,3078,3,128,64,0,3078, - 3085,1,0,0,0,3079,3080,3,472,236,0,3080,3081,5,304,0,0,3081,3082, - 7,26,0,0,3082,3083,5,426,0,0,3083,3085,1,0,0,0,3084,3069,1,0,0,0, - 3084,3074,1,0,0,0,3084,3079,1,0,0,0,3085,421,1,0,0,0,3086,3087,3, - 472,236,0,3087,3088,5,304,0,0,3088,3089,5,77,0,0,3089,3090,3,230, - 115,0,3090,3102,1,0,0,0,3091,3092,3,472,236,0,3092,3093,5,304,0, - 0,3093,3094,5,236,0,0,3094,3095,3,128,64,0,3095,3102,1,0,0,0,3096, - 3097,3,472,236,0,3097,3098,5,304,0,0,3098,3099,5,367,0,0,3099,3100, - 5,426,0,0,3100,3102,1,0,0,0,3101,3086,1,0,0,0,3101,3091,1,0,0,0, - 3101,3096,1,0,0,0,3102,423,1,0,0,0,3103,3104,5,189,0,0,3104,3105, - 5,426,0,0,3105,425,1,0,0,0,3106,3108,5,101,0,0,3107,3109,3,30,15, - 0,3108,3107,1,0,0,0,3108,3109,1,0,0,0,3109,3110,1,0,0,0,3110,3111, - 5,237,0,0,3111,3117,3,630,315,0,3112,3113,5,397,0,0,3113,3114,5, - 237,0,0,3114,3116,3,630,315,0,3115,3112,1,0,0,0,3116,3119,1,0,0, - 0,3117,3115,1,0,0,0,3117,3118,1,0,0,0,3118,3122,1,0,0,0,3119,3117, - 1,0,0,0,3120,3121,5,152,0,0,3121,3123,5,254,0,0,3122,3120,1,0,0, - 0,3122,3123,1,0,0,0,3123,3125,1,0,0,0,3124,3126,5,255,0,0,3125,3124, - 1,0,0,0,3125,3126,1,0,0,0,3126,3128,1,0,0,0,3127,3129,3,14,7,0,3128, - 3127,1,0,0,0,3128,3129,1,0,0,0,3129,427,1,0,0,0,3130,3133,3,572, - 286,0,3131,3133,3,294,147,0,3132,3130,1,0,0,0,3132,3131,1,0,0,0, - 3133,3134,1,0,0,0,3134,3135,5,405,0,0,3135,3136,5,426,0,0,3136,429, - 1,0,0,0,3137,3147,5,115,0,0,3138,3139,5,289,0,0,3139,3140,5,399, - 0,0,3140,3148,7,27,0,0,3141,3142,5,118,0,0,3142,3143,5,399,0,0,3143, - 3148,5,426,0,0,3144,3145,5,306,0,0,3145,3146,5,399,0,0,3146,3148, - 5,431,0,0,3147,3138,1,0,0,0,3147,3141,1,0,0,0,3147,3144,1,0,0,0, - 3148,3149,1,0,0,0,3149,3150,5,400,0,0,3150,431,1,0,0,0,3151,3152, - 5,160,0,0,3152,3153,5,426,0,0,3153,3154,5,233,0,0,3154,3155,5,426, - 0,0,3155,3156,5,301,0,0,3156,3161,5,426,0,0,3157,3158,5,159,0,0, - 3158,3159,5,426,0,0,3159,3160,5,232,0,0,3160,3162,5,426,0,0,3161, - 3157,1,0,0,0,3161,3162,1,0,0,0,3162,3165,1,0,0,0,3163,3165,3,638, - 319,0,3164,3151,1,0,0,0,3164,3163,1,0,0,0,3165,433,1,0,0,0,3166, - 3167,5,184,0,0,3167,3176,5,128,0,0,3168,3169,5,184,0,0,3169,3170, - 5,128,0,0,3170,3171,3,638,319,0,3171,3172,5,426,0,0,3172,3176,1, - 0,0,0,3173,3174,5,184,0,0,3174,3176,3,478,239,0,3175,3166,1,0,0, - 0,3175,3168,1,0,0,0,3175,3173,1,0,0,0,3176,435,1,0,0,0,3177,3179, - 5,58,0,0,3178,3180,5,333,0,0,3179,3178,1,0,0,0,3179,3180,1,0,0,0, - 3180,3182,1,0,0,0,3181,3183,5,345,0,0,3182,3181,1,0,0,0,3182,3183, - 1,0,0,0,3183,3185,1,0,0,0,3184,3186,5,123,0,0,3185,3184,1,0,0,0, - 3185,3186,1,0,0,0,3186,3187,1,0,0,0,3187,3189,5,329,0,0,3188,3190, - 3,32,16,0,3189,3188,1,0,0,0,3189,3190,1,0,0,0,3190,3191,1,0,0,0, - 3191,3248,3,480,240,0,3192,3194,3,434,217,0,3193,3195,3,200,100, - 0,3194,3193,1,0,0,0,3194,3195,1,0,0,0,3195,3197,1,0,0,0,3196,3198, - 3,222,111,0,3197,3196,1,0,0,0,3197,3198,1,0,0,0,3198,3200,1,0,0, - 0,3199,3201,3,246,123,0,3200,3199,1,0,0,0,3200,3201,1,0,0,0,3201, - 3203,1,0,0,0,3202,3204,3,424,212,0,3203,3202,1,0,0,0,3203,3204,1, - 0,0,0,3204,3206,1,0,0,0,3205,3207,3,224,112,0,3206,3205,1,0,0,0, - 3206,3207,1,0,0,0,3207,3209,1,0,0,0,3208,3210,3,198,99,0,3209,3208, - 1,0,0,0,3209,3210,1,0,0,0,3210,3249,1,0,0,0,3211,3212,5,399,0,0, - 3212,3213,3,250,125,0,3213,3214,5,400,0,0,3214,3216,1,0,0,0,3215, - 3211,1,0,0,0,3215,3216,1,0,0,0,3216,3218,1,0,0,0,3217,3219,3,196, - 98,0,3218,3217,1,0,0,0,3218,3219,1,0,0,0,3219,3221,1,0,0,0,3220, - 3222,3,200,100,0,3221,3220,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1, - 0,0,0,3223,3225,3,208,104,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0, - 3225,3227,1,0,0,0,3226,3228,3,210,105,0,3227,3226,1,0,0,0,3227,3228, - 1,0,0,0,3228,3230,1,0,0,0,3229,3231,3,222,111,0,3230,3229,1,0,0, - 0,3230,3231,1,0,0,0,3231,3233,1,0,0,0,3232,3234,3,246,123,0,3233, - 3232,1,0,0,0,3233,3234,1,0,0,0,3234,3236,1,0,0,0,3235,3237,3,424, - 212,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0,3237,3239,1,0,0,0,3238, - 3240,3,224,112,0,3239,3238,1,0,0,0,3239,3240,1,0,0,0,3240,3242,1, - 0,0,0,3241,3243,3,198,99,0,3242,3241,1,0,0,0,3242,3243,1,0,0,0,3243, - 3246,1,0,0,0,3244,3245,5,17,0,0,3245,3247,3,380,190,0,3246,3244, - 1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248,3192,1,0,0,0,3248, - 3215,1,0,0,0,3249,3313,1,0,0,0,3250,3251,5,58,0,0,3251,3252,5,195, - 0,0,3252,3254,5,329,0,0,3253,3255,3,32,16,0,3254,3253,1,0,0,0,3254, - 3255,1,0,0,0,3255,3256,1,0,0,0,3256,3310,3,480,240,0,3257,3259,3, - 434,217,0,3258,3260,3,222,111,0,3259,3258,1,0,0,0,3259,3260,1,0, - 0,0,3260,3262,1,0,0,0,3261,3263,3,246,123,0,3262,3261,1,0,0,0,3262, - 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3266,3,424,212,0,3265,3264,1, - 0,0,0,3265,3266,1,0,0,0,3266,3268,1,0,0,0,3267,3269,3,224,112,0, - 3268,3267,1,0,0,0,3268,3269,1,0,0,0,3269,3271,1,0,0,0,3270,3272, - 3,198,99,0,3271,3270,1,0,0,0,3271,3272,1,0,0,0,3272,3311,1,0,0,0, - 3273,3274,5,399,0,0,3274,3275,3,250,125,0,3275,3276,5,400,0,0,3276, - 3278,1,0,0,0,3277,3273,1,0,0,0,3277,3278,1,0,0,0,3278,3280,1,0,0, - 0,3279,3281,3,196,98,0,3280,3279,1,0,0,0,3280,3281,1,0,0,0,3281, - 3283,1,0,0,0,3282,3284,3,200,100,0,3283,3282,1,0,0,0,3283,3284,1, - 0,0,0,3284,3286,1,0,0,0,3285,3287,3,208,104,0,3286,3285,1,0,0,0, - 3286,3287,1,0,0,0,3287,3289,1,0,0,0,3288,3290,3,210,105,0,3289,3288, - 1,0,0,0,3289,3290,1,0,0,0,3290,3292,1,0,0,0,3291,3293,3,222,111, - 0,3292,3291,1,0,0,0,3292,3293,1,0,0,0,3293,3295,1,0,0,0,3294,3296, - 3,246,123,0,3295,3294,1,0,0,0,3295,3296,1,0,0,0,3296,3298,1,0,0, - 0,3297,3299,3,424,212,0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299, - 3301,1,0,0,0,3300,3302,3,224,112,0,3301,3300,1,0,0,0,3301,3302,1, - 0,0,0,3302,3304,1,0,0,0,3303,3305,3,198,99,0,3304,3303,1,0,0,0,3304, - 3305,1,0,0,0,3305,3308,1,0,0,0,3306,3307,5,17,0,0,3307,3309,3,380, - 190,0,3308,3306,1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310, - 3257,1,0,0,0,3310,3277,1,0,0,0,3311,3313,1,0,0,0,3312,3177,1,0,0, - 0,3312,3250,1,0,0,0,3313,437,1,0,0,0,3314,3315,5,58,0,0,3315,3317, - 5,69,0,0,3316,3318,3,32,16,0,3317,3316,1,0,0,0,3317,3318,1,0,0,0, - 3318,3319,1,0,0,0,3319,3322,3,638,319,0,3320,3321,5,352,0,0,3321, - 3323,5,426,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0,0,3323,3326,1,0, - 0,0,3324,3325,5,367,0,0,3325,3327,5,426,0,0,3326,3324,1,0,0,0,3326, - 3327,1,0,0,0,3327,3330,1,0,0,0,3328,3329,5,47,0,0,3329,3331,5,426, - 0,0,3330,3328,1,0,0,0,3330,3331,1,0,0,0,3331,3335,1,0,0,0,3332,3333, - 5,387,0,0,3333,3334,5,77,0,0,3334,3336,3,230,115,0,3335,3332,1,0, - 0,0,3335,3336,1,0,0,0,3336,439,1,0,0,0,3337,3338,5,101,0,0,3338, - 3340,5,69,0,0,3339,3341,3,30,15,0,3340,3339,1,0,0,0,3340,3341,1, - 0,0,0,3341,3342,1,0,0,0,3342,3343,3,638,319,0,3343,441,1,0,0,0,3344, - 3345,3,638,319,0,3345,3346,5,395,0,0,3346,3348,1,0,0,0,3347,3344, - 1,0,0,0,3348,3351,1,0,0,0,3349,3347,1,0,0,0,3349,3350,1,0,0,0,3350, - 3352,1,0,0,0,3351,3349,1,0,0,0,3352,3353,5,415,0,0,3353,443,1,0, - 0,0,3354,3359,3,580,290,0,3355,3356,5,397,0,0,3356,3358,3,580,290, - 0,3357,3355,1,0,0,0,3358,3361,1,0,0,0,3359,3357,1,0,0,0,3359,3360, - 1,0,0,0,3360,445,1,0,0,0,3361,3359,1,0,0,0,3362,3367,3,638,319,0, - 3363,3364,5,397,0,0,3364,3366,3,638,319,0,3365,3363,1,0,0,0,3366, - 3369,1,0,0,0,3367,3365,1,0,0,0,3367,3368,1,0,0,0,3368,447,1,0,0, - 0,3369,3367,1,0,0,0,3370,3371,5,139,0,0,3371,3372,3,450,225,0,3372, - 449,1,0,0,0,3373,3374,5,359,0,0,3374,3377,3,458,229,0,3375,3376, - 5,397,0,0,3376,3378,3,458,229,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,3383,1,0,0,0,3381,3383, - 3,454,227,0,3382,3373,1,0,0,0,3382,3381,1,0,0,0,3383,451,1,0,0,0, - 3384,3388,3,468,234,0,3385,3387,3,462,231,0,3386,3385,1,0,0,0,3387, - 3390,1,0,0,0,3388,3386,1,0,0,0,3388,3389,1,0,0,0,3389,3417,1,0,0, - 0,3390,3388,1,0,0,0,3391,3395,3,498,249,0,3392,3394,3,462,231,0, - 3393,3392,1,0,0,0,3394,3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396, - 1,0,0,0,3396,3417,1,0,0,0,3397,3395,1,0,0,0,3398,3402,3,486,243, - 0,3399,3401,3,462,231,0,3400,3399,1,0,0,0,3401,3404,1,0,0,0,3402, - 3400,1,0,0,0,3402,3403,1,0,0,0,3403,3417,1,0,0,0,3404,3402,1,0,0, - 0,3405,3409,3,492,246,0,3406,3408,3,462,231,0,3407,3406,1,0,0,0, - 3408,3411,1,0,0,0,3409,3407,1,0,0,0,3409,3410,1,0,0,0,3410,3417, - 1,0,0,0,3411,3409,1,0,0,0,3412,3413,5,399,0,0,3413,3414,3,454,227, - 0,3414,3415,5,400,0,0,3415,3417,1,0,0,0,3416,3384,1,0,0,0,3416,3391, - 1,0,0,0,3416,3398,1,0,0,0,3416,3405,1,0,0,0,3416,3412,1,0,0,0,3417, - 453,1,0,0,0,3418,3429,3,452,226,0,3419,3420,3,460,230,0,3420,3425, - 3,456,228,0,3421,3422,5,224,0,0,3422,3426,3,580,290,0,3423,3424, - 5,370,0,0,3424,3426,3,264,132,0,3425,3421,1,0,0,0,3425,3423,1,0, - 0,0,3425,3426,1,0,0,0,3426,3428,1,0,0,0,3427,3419,1,0,0,0,3428,3431, - 1,0,0,0,3429,3427,1,0,0,0,3429,3430,1,0,0,0,3430,455,1,0,0,0,3431, - 3429,1,0,0,0,3432,3437,3,468,234,0,3433,3437,3,498,249,0,3434,3437, - 3,486,243,0,3435,3437,3,492,246,0,3436,3432,1,0,0,0,3436,3433,1, - 0,0,0,3436,3434,1,0,0,0,3436,3435,1,0,0,0,3437,3441,1,0,0,0,3438, - 3440,3,462,231,0,3439,3438,1,0,0,0,3440,3443,1,0,0,0,3441,3439,1, - 0,0,0,3441,3442,1,0,0,0,3442,457,1,0,0,0,3443,3441,1,0,0,0,3444, - 3446,5,250,0,0,3445,3444,1,0,0,0,3445,3446,1,0,0,0,3446,3447,1,0, - 0,0,3447,3449,3,476,238,0,3448,3450,3,466,233,0,3449,3448,1,0,0, - 0,3449,3450,1,0,0,0,3450,3455,1,0,0,0,3451,3453,5,17,0,0,3452,3451, - 1,0,0,0,3452,3453,1,0,0,0,3453,3454,1,0,0,0,3454,3456,3,638,319, - 0,3455,3452,1,0,0,0,3455,3456,1,0,0,0,3456,3457,1,0,0,0,3457,3458, - 5,399,0,0,3458,3459,3,444,222,0,3459,3460,5,400,0,0,3460,459,1,0, - 0,0,3461,3476,5,397,0,0,3462,3473,5,157,0,0,3463,3473,5,60,0,0,3464, - 3466,7,28,0,0,3465,3467,5,231,0,0,3466,3465,1,0,0,0,3466,3467,1, - 0,0,0,3467,3473,1,0,0,0,3468,3470,5,180,0,0,3469,3471,7,29,0,0,3470, - 3469,1,0,0,0,3470,3471,1,0,0,0,3471,3473,1,0,0,0,3472,3462,1,0,0, - 0,3472,3463,1,0,0,0,3472,3464,1,0,0,0,3472,3468,1,0,0,0,3472,3473, - 1,0,0,0,3473,3474,1,0,0,0,3474,3476,5,171,0,0,3475,3461,1,0,0,0, - 3475,3472,1,0,0,0,3476,461,1,0,0,0,3477,3478,5,178,0,0,3478,3479, - 5,378,0,0,3479,3480,5,231,0,0,3480,3481,3,550,275,0,3481,3491,3, - 464,232,0,3482,3483,5,17,0,0,3483,3488,3,638,319,0,3484,3485,5,397, - 0,0,3485,3487,3,638,319,0,3486,3484,1,0,0,0,3487,3490,1,0,0,0,3488, - 3486,1,0,0,0,3488,3489,1,0,0,0,3489,3492,1,0,0,0,3490,3488,1,0,0, - 0,3491,3482,1,0,0,0,3491,3492,1,0,0,0,3492,3535,1,0,0,0,3493,3495, - 5,397,0,0,3494,3493,1,0,0,0,3494,3495,1,0,0,0,3495,3496,1,0,0,0, - 3496,3532,5,178,0,0,3497,3498,5,378,0,0,3498,3499,3,550,275,0,3499, - 3509,3,464,232,0,3500,3501,5,17,0,0,3501,3506,3,638,319,0,3502,3503, - 5,397,0,0,3503,3505,3,638,319,0,3504,3502,1,0,0,0,3505,3508,1,0, - 0,0,3506,3504,1,0,0,0,3506,3507,1,0,0,0,3507,3510,1,0,0,0,3508,3506, - 1,0,0,0,3509,3500,1,0,0,0,3509,3510,1,0,0,0,3510,3533,1,0,0,0,3511, - 3512,5,329,0,0,3512,3513,5,399,0,0,3513,3514,3,496,248,0,3514,3516, - 5,400,0,0,3515,3517,5,17,0,0,3516,3515,1,0,0,0,3516,3517,1,0,0,0, - 3517,3518,1,0,0,0,3518,3530,3,464,232,0,3519,3520,5,399,0,0,3520, - 3525,3,638,319,0,3521,3522,5,397,0,0,3522,3524,3,638,319,0,3523, - 3521,1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0,0,3525,3526,1,0,0, - 0,3526,3528,1,0,0,0,3527,3525,1,0,0,0,3528,3529,5,400,0,0,3529,3531, - 1,0,0,0,3530,3519,1,0,0,0,3530,3531,1,0,0,0,3531,3533,1,0,0,0,3532, - 3497,1,0,0,0,3532,3511,1,0,0,0,3533,3535,1,0,0,0,3534,3477,1,0,0, - 0,3534,3494,1,0,0,0,3535,463,1,0,0,0,3536,3537,3,638,319,0,3537, - 465,1,0,0,0,3538,3539,5,331,0,0,3539,3540,5,399,0,0,3540,3541,5, - 30,0,0,3541,3542,5,431,0,0,3542,3543,5,230,0,0,3543,3544,5,221,0, - 0,3544,3554,5,431,0,0,3545,3546,5,224,0,0,3546,3551,3,580,290,0, - 3547,3548,5,397,0,0,3548,3550,3,580,290,0,3549,3547,1,0,0,0,3550, - 3553,1,0,0,0,3551,3549,1,0,0,0,3551,3552,1,0,0,0,3552,3555,1,0,0, - 0,3553,3551,1,0,0,0,3554,3545,1,0,0,0,3554,3555,1,0,0,0,3555,3556, - 1,0,0,0,3556,3566,5,400,0,0,3557,3558,5,331,0,0,3558,3562,5,399, - 0,0,3559,3560,5,431,0,0,3560,3563,7,30,0,0,3561,3563,5,430,0,0,3562, - 3559,1,0,0,0,3562,3561,1,0,0,0,3563,3564,1,0,0,0,3564,3566,5,400, - 0,0,3565,3538,1,0,0,0,3565,3557,1,0,0,0,3566,467,1,0,0,0,3567,3569, - 3,476,238,0,3568,3570,3,226,113,0,3569,3568,1,0,0,0,3569,3570,1, - 0,0,0,3570,3572,1,0,0,0,3571,3573,3,466,233,0,3572,3571,1,0,0,0, - 3572,3573,1,0,0,0,3573,3575,1,0,0,0,3574,3576,3,470,235,0,3575,3574, - 1,0,0,0,3575,3576,1,0,0,0,3576,3581,1,0,0,0,3577,3579,5,17,0,0,3578, - 3577,1,0,0,0,3578,3579,1,0,0,0,3579,3580,1,0,0,0,3580,3582,3,638, - 319,0,3581,3578,1,0,0,0,3581,3582,1,0,0,0,3582,469,1,0,0,0,3583, - 3593,5,134,0,0,3584,3585,5,327,0,0,3585,3586,5,17,0,0,3586,3587, - 5,221,0,0,3587,3594,3,580,290,0,3588,3589,5,134,0,0,3589,3590,5, - 328,0,0,3590,3591,5,17,0,0,3591,3592,5,221,0,0,3592,3594,5,431,0, - 0,3593,3584,1,0,0,0,3593,3588,1,0,0,0,3594,471,1,0,0,0,3595,3596, - 3,638,319,0,3596,473,1,0,0,0,3597,3598,3,638,319,0,3598,475,1,0, - 0,0,3599,3602,3,478,239,0,3600,3602,3,482,241,0,3601,3599,1,0,0, - 0,3601,3600,1,0,0,0,3602,477,1,0,0,0,3603,3604,3,638,319,0,3604, - 3605,5,395,0,0,3605,3608,3,638,319,0,3606,3607,5,395,0,0,3607,3609, - 3,638,319,0,3608,3606,1,0,0,0,3608,3609,1,0,0,0,3609,3612,1,0,0, - 0,3610,3612,3,638,319,0,3611,3603,1,0,0,0,3611,3610,1,0,0,0,3612, - 479,1,0,0,0,3613,3614,3,638,319,0,3614,3615,5,395,0,0,3615,3618, - 3,638,319,0,3616,3617,5,395,0,0,3617,3619,3,638,319,0,3618,3616, - 1,0,0,0,3618,3619,1,0,0,0,3619,3622,1,0,0,0,3620,3622,3,638,319, - 0,3621,3613,1,0,0,0,3621,3620,1,0,0,0,3622,481,1,0,0,0,3623,3624, - 3,638,319,0,3624,3625,5,395,0,0,3625,3627,1,0,0,0,3626,3623,1,0, - 0,0,3626,3627,1,0,0,0,3627,3628,1,0,0,0,3628,3629,3,638,319,0,3629, - 483,1,0,0,0,3630,3631,3,638,319,0,3631,3632,5,395,0,0,3632,3634, - 1,0,0,0,3633,3630,1,0,0,0,3633,3634,1,0,0,0,3634,3635,1,0,0,0,3635, - 3636,3,638,319,0,3636,485,1,0,0,0,3637,3638,5,399,0,0,3638,3639, - 3,360,180,0,3639,3641,5,400,0,0,3640,3642,5,17,0,0,3641,3640,1,0, - 0,0,3641,3642,1,0,0,0,3642,3643,1,0,0,0,3643,3644,3,638,319,0,3644, - 487,1,0,0,0,3645,3646,5,237,0,0,3646,3647,5,32,0,0,3647,3649,3,536, - 268,0,3648,3650,3,542,271,0,3649,3648,1,0,0,0,3649,3650,1,0,0,0, - 3650,3659,1,0,0,0,3651,3659,3,542,271,0,3652,3654,3,546,273,0,3653, - 3655,3,548,274,0,3654,3653,1,0,0,0,3654,3655,1,0,0,0,3655,3659,1, - 0,0,0,3656,3659,3,548,274,0,3657,3659,3,544,272,0,3658,3645,1,0, - 0,0,3658,3651,1,0,0,0,3658,3652,1,0,0,0,3658,3656,1,0,0,0,3658,3657, - 1,0,0,0,3659,489,1,0,0,0,3660,3664,3,486,243,0,3661,3664,3,468,234, - 0,3662,3664,3,492,246,0,3663,3660,1,0,0,0,3663,3661,1,0,0,0,3663, - 3662,1,0,0,0,3664,491,1,0,0,0,3665,3666,3,638,319,0,3666,3667,5, - 399,0,0,3667,3668,5,224,0,0,3668,3670,3,490,245,0,3669,3671,3,488, - 244,0,3670,3669,1,0,0,0,3670,3671,1,0,0,0,3671,3687,1,0,0,0,3672, - 3673,5,432,0,0,3673,3674,5,399,0,0,3674,3675,3,580,290,0,3675,3684, - 5,400,0,0,3676,3677,5,397,0,0,3677,3678,5,432,0,0,3678,3679,5,399, - 0,0,3679,3680,3,580,290,0,3680,3681,5,400,0,0,3681,3683,1,0,0,0, - 3682,3676,1,0,0,0,3683,3686,1,0,0,0,3684,3682,1,0,0,0,3684,3685, - 1,0,0,0,3685,3688,1,0,0,0,3686,3684,1,0,0,0,3687,3672,1,0,0,0,3687, - 3688,1,0,0,0,3688,3689,1,0,0,0,3689,3691,5,400,0,0,3690,3692,3,638, - 319,0,3691,3690,1,0,0,0,3691,3692,1,0,0,0,3692,493,1,0,0,0,3693, - 3694,5,384,0,0,3694,3695,3,580,290,0,3695,495,1,0,0,0,3696,3715, - 5,374,0,0,3697,3702,3,538,269,0,3698,3699,5,397,0,0,3699,3701,3, - 538,269,0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0, - 3702,3703,1,0,0,0,3703,3716,1,0,0,0,3704,3702,1,0,0,0,3705,3706, - 5,399,0,0,3706,3707,3,534,267,0,3707,3712,5,400,0,0,3708,3709,5, - 397,0,0,3709,3711,3,538,269,0,3710,3708,1,0,0,0,3711,3714,1,0,0, - 0,3712,3710,1,0,0,0,3712,3713,1,0,0,0,3713,3716,1,0,0,0,3714,3712, - 1,0,0,0,3715,3697,1,0,0,0,3715,3705,1,0,0,0,3716,497,1,0,0,0,3717, - 3718,5,329,0,0,3718,3719,5,399,0,0,3719,3720,3,496,248,0,3720,3722, - 5,400,0,0,3721,3723,5,17,0,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0, - 3723,3724,1,0,0,0,3724,3734,3,464,232,0,3725,3726,5,399,0,0,3726, - 3731,3,638,319,0,3727,3728,5,397,0,0,3728,3730,3,638,319,0,3729, - 3727,1,0,0,0,3730,3733,1,0,0,0,3731,3729,1,0,0,0,3731,3732,1,0,0, - 0,3732,3735,1,0,0,0,3733,3731,1,0,0,0,3734,3725,1,0,0,0,3734,3735, - 1,0,0,0,3735,3736,1,0,0,0,3736,3737,5,400,0,0,3737,499,1,0,0,0,3738, - 3740,5,299,0,0,3739,3741,5,436,0,0,3740,3739,1,0,0,0,3740,3741,1, - 0,0,0,3741,3755,1,0,0,0,3742,3744,7,22,0,0,3743,3742,1,0,0,0,3743, - 3744,1,0,0,0,3744,3745,1,0,0,0,3745,3750,3,504,252,0,3746,3747,5, - 397,0,0,3747,3749,3,504,252,0,3748,3746,1,0,0,0,3749,3752,1,0,0, - 0,3750,3748,1,0,0,0,3750,3751,1,0,0,0,3751,3756,1,0,0,0,3752,3750, - 1,0,0,0,3753,3754,5,347,0,0,3754,3756,3,502,251,0,3755,3743,1,0, - 0,0,3755,3753,1,0,0,0,3756,3759,1,0,0,0,3757,3759,3,506,253,0,3758, - 3738,1,0,0,0,3758,3757,1,0,0,0,3759,501,1,0,0,0,3760,3761,5,399, - 0,0,3761,3762,3,510,255,0,3762,3763,5,400,0,0,3763,3764,3,212,106, - 0,3764,3765,3,216,108,0,3765,3766,5,370,0,0,3766,3779,5,426,0,0, - 3767,3777,5,17,0,0,3768,3771,5,399,0,0,3769,3772,3,446,223,0,3770, - 3772,3,248,124,0,3771,3769,1,0,0,0,3771,3770,1,0,0,0,3772,3773,1, - 0,0,0,3773,3774,5,400,0,0,3774,3778,1,0,0,0,3775,3778,3,446,223, - 0,3776,3778,3,248,124,0,3777,3768,1,0,0,0,3777,3775,1,0,0,0,3777, - 3776,1,0,0,0,3778,3780,1,0,0,0,3779,3767,1,0,0,0,3779,3780,1,0,0, - 0,3780,3781,1,0,0,0,3781,3782,3,212,106,0,3782,3783,3,214,107,0, - 3783,503,1,0,0,0,3784,3808,3,442,221,0,3785,3788,3,256,128,0,3786, - 3788,3,580,290,0,3787,3785,1,0,0,0,3787,3786,1,0,0,0,3788,3805,1, - 0,0,0,3789,3791,5,17,0,0,3790,3789,1,0,0,0,3790,3791,1,0,0,0,3791, - 3792,1,0,0,0,3792,3806,3,638,319,0,3793,3794,5,17,0,0,3794,3795, - 5,399,0,0,3795,3800,3,638,319,0,3796,3797,5,397,0,0,3797,3799,3, - 638,319,0,3798,3796,1,0,0,0,3799,3802,1,0,0,0,3800,3798,1,0,0,0, - 3800,3801,1,0,0,0,3801,3803,1,0,0,0,3802,3800,1,0,0,0,3803,3804, - 5,400,0,0,3804,3806,1,0,0,0,3805,3790,1,0,0,0,3805,3793,1,0,0,0, - 3805,3806,1,0,0,0,3806,3808,1,0,0,0,3807,3784,1,0,0,0,3807,3787, - 1,0,0,0,3808,505,1,0,0,0,3809,3810,7,31,0,0,3810,3811,3,510,255, - 0,3811,3812,3,212,106,0,3812,3813,3,216,108,0,3813,3814,5,370,0, - 0,3814,3827,5,426,0,0,3815,3825,5,17,0,0,3816,3819,5,399,0,0,3817, - 3820,3,446,223,0,3818,3820,3,248,124,0,3819,3817,1,0,0,0,3819,3818, - 1,0,0,0,3820,3821,1,0,0,0,3821,3822,5,400,0,0,3822,3826,1,0,0,0, - 3823,3826,3,446,223,0,3824,3826,3,248,124,0,3825,3816,1,0,0,0,3825, - 3823,1,0,0,0,3825,3824,1,0,0,0,3826,3828,1,0,0,0,3827,3815,1,0,0, - 0,3827,3828,1,0,0,0,3828,3829,1,0,0,0,3829,3830,3,212,106,0,3830, - 3831,3,214,107,0,3831,507,1,0,0,0,3832,3835,3,442,221,0,3833,3835, - 3,580,290,0,3834,3832,1,0,0,0,3834,3833,1,0,0,0,3835,509,1,0,0,0, - 3836,3841,3,508,254,0,3837,3838,5,397,0,0,3838,3840,3,508,254,0, - 3839,3837,1,0,0,0,3840,3843,1,0,0,0,3841,3839,1,0,0,0,3841,3842, - 1,0,0,0,3842,511,1,0,0,0,3843,3841,1,0,0,0,3844,3845,5,386,0,0,3845, - 3846,3,638,319,0,3846,3847,5,17,0,0,3847,3855,3,514,257,0,3848,3849, - 5,397,0,0,3849,3850,3,638,319,0,3850,3851,5,17,0,0,3851,3852,3,514, - 257,0,3852,3854,1,0,0,0,3853,3848,1,0,0,0,3854,3857,1,0,0,0,3855, - 3853,1,0,0,0,3855,3856,1,0,0,0,3856,513,1,0,0,0,3857,3855,1,0,0, - 0,3858,3871,3,638,319,0,3859,3861,5,399,0,0,3860,3862,3,638,319, - 0,3861,3860,1,0,0,0,3861,3862,1,0,0,0,3862,3864,1,0,0,0,3863,3865, - 3,488,244,0,3864,3863,1,0,0,0,3864,3865,1,0,0,0,3865,3867,1,0,0, - 0,3866,3868,3,516,258,0,3867,3866,1,0,0,0,3867,3868,1,0,0,0,3868, - 3869,1,0,0,0,3869,3871,5,400,0,0,3870,3858,1,0,0,0,3870,3859,1,0, - 0,0,3871,515,1,0,0,0,3872,3886,7,32,0,0,3873,3874,5,354,0,0,3874, - 3880,5,247,0,0,3875,3876,5,62,0,0,3876,3880,5,291,0,0,3877,3878, - 5,431,0,0,3878,3880,5,247,0,0,3879,3873,1,0,0,0,3879,3875,1,0,0, - 0,3879,3877,1,0,0,0,3880,3887,1,0,0,0,3881,3882,5,25,0,0,3882,3883, - 3,518,259,0,3883,3884,5,11,0,0,3884,3885,3,518,259,0,3885,3887,1, - 0,0,0,3886,3879,1,0,0,0,3886,3881,1,0,0,0,3887,517,1,0,0,0,3888, - 3889,7,33,0,0,3889,3893,7,34,0,0,3890,3891,5,62,0,0,3891,3893,5, - 291,0,0,3892,3888,1,0,0,0,3892,3890,1,0,0,0,3893,519,1,0,0,0,3894, - 3895,5,144,0,0,3895,3901,5,32,0,0,3896,3902,3,256,128,0,3897,3902, - 3,522,261,0,3898,3902,3,524,262,0,3899,3900,5,399,0,0,3900,3902, - 5,400,0,0,3901,3896,1,0,0,0,3901,3897,1,0,0,0,3901,3898,1,0,0,0, - 3901,3899,1,0,0,0,3902,521,1,0,0,0,3903,3906,5,290,0,0,3904,3906, - 5,61,0,0,3905,3903,1,0,0,0,3905,3904,1,0,0,0,3906,3907,1,0,0,0,3907, - 3908,5,399,0,0,3908,3913,3,580,290,0,3909,3910,5,397,0,0,3910,3912, - 3,580,290,0,3911,3909,1,0,0,0,3912,3915,1,0,0,0,3913,3911,1,0,0, - 0,3913,3914,1,0,0,0,3914,3916,1,0,0,0,3915,3913,1,0,0,0,3916,3917, - 5,400,0,0,3917,523,1,0,0,0,3918,3923,3,540,270,0,3919,3920,5,387, - 0,0,3920,3924,5,290,0,0,3921,3922,5,387,0,0,3922,3924,5,61,0,0,3923, - 3919,1,0,0,0,3923,3921,1,0,0,0,3923,3924,1,0,0,0,3924,3938,1,0,0, - 0,3925,3926,5,145,0,0,3926,3927,5,305,0,0,3927,3928,5,399,0,0,3928, - 3933,3,526,263,0,3929,3930,5,397,0,0,3930,3932,3,526,263,0,3931, - 3929,1,0,0,0,3932,3935,1,0,0,0,3933,3931,1,0,0,0,3933,3934,1,0,0, - 0,3934,3936,1,0,0,0,3935,3933,1,0,0,0,3936,3937,5,400,0,0,3937,3939, - 1,0,0,0,3938,3925,1,0,0,0,3938,3939,1,0,0,0,3939,525,1,0,0,0,3940, - 3942,5,399,0,0,3941,3943,3,580,290,0,3942,3941,1,0,0,0,3942,3943, - 1,0,0,0,3943,3948,1,0,0,0,3944,3945,5,397,0,0,3945,3947,3,580,290, - 0,3946,3944,1,0,0,0,3947,3950,1,0,0,0,3948,3946,1,0,0,0,3948,3949, - 1,0,0,0,3949,3951,1,0,0,0,3950,3948,1,0,0,0,3951,3954,5,400,0,0, - 3952,3954,3,580,290,0,3953,3940,1,0,0,0,3953,3952,1,0,0,0,3954,527, - 1,0,0,0,3955,3956,5,146,0,0,3956,3957,3,580,290,0,3957,529,1,0,0, - 0,3958,3959,5,256,0,0,3959,3960,3,580,290,0,3960,531,1,0,0,0,3961, - 3964,5,83,0,0,3962,3964,3,580,290,0,3963,3961,1,0,0,0,3963,3962, - 1,0,0,0,3964,533,1,0,0,0,3965,3967,3,580,290,0,3966,3968,5,17,0, - 0,3967,3966,1,0,0,0,3967,3968,1,0,0,0,3968,3970,1,0,0,0,3969,3971, - 3,638,319,0,3970,3969,1,0,0,0,3970,3971,1,0,0,0,3971,3982,1,0,0, - 0,3972,3973,5,397,0,0,3973,3975,3,580,290,0,3974,3976,5,17,0,0,3975, - 3974,1,0,0,0,3975,3976,1,0,0,0,3976,3978,1,0,0,0,3977,3979,3,638, - 319,0,3978,3977,1,0,0,0,3978,3979,1,0,0,0,3979,3981,1,0,0,0,3980, - 3972,1,0,0,0,3981,3984,1,0,0,0,3982,3980,1,0,0,0,3982,3983,1,0,0, - 0,3983,535,1,0,0,0,3984,3982,1,0,0,0,3985,3988,3,538,269,0,3986, - 3988,3,540,270,0,3987,3985,1,0,0,0,3987,3986,1,0,0,0,3988,537,1, - 0,0,0,3989,3990,5,399,0,0,3990,3991,3,540,270,0,3991,3992,5,400, - 0,0,3992,539,1,0,0,0,3993,4000,3,532,266,0,3994,3995,5,397,0,0,3995, - 3997,3,532,266,0,3996,3994,1,0,0,0,3997,3998,1,0,0,0,3998,3996,1, - 0,0,0,3998,3999,1,0,0,0,3999,4001,1,0,0,0,4000,3996,1,0,0,0,4000, - 4001,1,0,0,0,4001,541,1,0,0,0,4002,4003,5,229,0,0,4003,4004,5,32, - 0,0,4004,4009,3,308,154,0,4005,4006,5,397,0,0,4006,4008,3,308,154, - 0,4007,4005,1,0,0,0,4008,4011,1,0,0,0,4009,4007,1,0,0,0,4009,4010, - 1,0,0,0,4010,543,1,0,0,0,4011,4009,1,0,0,0,4012,4013,5,41,0,0,4013, - 4014,5,32,0,0,4014,4015,3,536,268,0,4015,545,1,0,0,0,4016,4017,5, - 97,0,0,4017,4018,5,32,0,0,4018,4019,3,536,268,0,4019,547,1,0,0,0, - 4020,4021,5,314,0,0,4021,4041,5,32,0,0,4022,4023,5,399,0,0,4023, - 4028,3,308,154,0,4024,4025,5,397,0,0,4025,4027,3,308,154,0,4026, - 4024,1,0,0,0,4027,4030,1,0,0,0,4028,4026,1,0,0,0,4028,4029,1,0,0, - 0,4029,4031,1,0,0,0,4030,4028,1,0,0,0,4031,4032,5,400,0,0,4032,4042, - 1,0,0,0,4033,4038,3,308,154,0,4034,4035,5,397,0,0,4035,4037,3,308, - 154,0,4036,4034,1,0,0,0,4037,4040,1,0,0,0,4038,4036,1,0,0,0,4038, - 4039,1,0,0,0,4039,4042,1,0,0,0,4040,4038,1,0,0,0,4041,4022,1,0,0, - 0,4041,4033,1,0,0,0,4042,549,1,0,0,0,4043,4044,5,349,0,0,4044,4048, - 5,399,0,0,4045,4049,5,179,0,0,4046,4049,5,343,0,0,4047,4049,5,29, - 0,0,4048,4045,1,0,0,0,4048,4046,1,0,0,0,4048,4047,1,0,0,0,4048,4049, - 1,0,0,0,4049,4051,1,0,0,0,4050,4052,3,508,254,0,4051,4050,1,0,0, - 0,4051,4052,1,0,0,0,4052,4053,1,0,0,0,4053,4054,5,139,0,0,4054,4055, - 3,508,254,0,4055,4056,5,400,0,0,4056,4097,1,0,0,0,4057,4058,3,558, - 279,0,4058,4073,5,399,0,0,4059,4074,5,415,0,0,4060,4062,7,22,0,0, - 4061,4060,1,0,0,0,4061,4062,1,0,0,0,4062,4071,1,0,0,0,4063,4068, - 3,508,254,0,4064,4065,5,397,0,0,4065,4067,3,508,254,0,4066,4064, - 1,0,0,0,4067,4070,1,0,0,0,4068,4066,1,0,0,0,4068,4069,1,0,0,0,4069, - 4072,1,0,0,0,4070,4068,1,0,0,0,4071,4063,1,0,0,0,4071,4072,1,0,0, - 0,4072,4074,1,0,0,0,4073,4059,1,0,0,0,4073,4061,1,0,0,0,4074,4094, - 1,0,0,0,4075,4076,5,400,0,0,4076,4077,5,388,0,0,4077,4078,5,144, - 0,0,4078,4079,5,399,0,0,4079,4080,3,542,271,0,4080,4081,5,400,0, - 0,4081,4095,1,0,0,0,4082,4084,5,400,0,0,4083,4085,3,552,276,0,4084, - 4083,1,0,0,0,4084,4085,1,0,0,0,4085,4086,1,0,0,0,4086,4087,5,234, - 0,0,4087,4095,3,514,257,0,4088,4089,3,552,276,0,4089,4090,5,400, - 0,0,4090,4091,5,234,0,0,4091,4092,3,514,257,0,4092,4095,1,0,0,0, - 4093,4095,5,400,0,0,4094,4075,1,0,0,0,4094,4082,1,0,0,0,4094,4088, - 1,0,0,0,4094,4093,1,0,0,0,4095,4097,1,0,0,0,4096,4043,1,0,0,0,4096, - 4057,1,0,0,0,4097,551,1,0,0,0,4098,4099,7,35,0,0,4099,4100,5,220, - 0,0,4100,553,1,0,0,0,4101,4102,3,640,320,0,4102,555,1,0,0,0,4103, - 4106,3,640,320,0,4104,4106,5,426,0,0,4105,4103,1,0,0,0,4105,4104, - 1,0,0,0,4106,557,1,0,0,0,4107,4111,3,640,320,0,4108,4111,3,646,323, - 0,4109,4111,3,636,318,0,4110,4107,1,0,0,0,4110,4108,1,0,0,0,4110, - 4109,1,0,0,0,4111,559,1,0,0,0,4112,4113,5,36,0,0,4113,4114,5,399, - 0,0,4114,4115,3,580,290,0,4115,4116,5,17,0,0,4116,4119,3,348,174, - 0,4117,4118,5,137,0,0,4118,4120,5,426,0,0,4119,4117,1,0,0,0,4119, - 4120,1,0,0,0,4120,4121,1,0,0,0,4121,4122,5,400,0,0,4122,561,1,0, - 0,0,4123,4124,5,35,0,0,4124,4130,3,580,290,0,4125,4126,5,383,0,0, - 4126,4127,3,580,290,0,4127,4128,5,335,0,0,4128,4129,3,580,290,0, - 4129,4131,1,0,0,0,4130,4125,1,0,0,0,4131,4132,1,0,0,0,4132,4130, - 1,0,0,0,4132,4133,1,0,0,0,4133,4136,1,0,0,0,4134,4135,5,105,0,0, - 4135,4137,3,580,290,0,4136,4134,1,0,0,0,4136,4137,1,0,0,0,4137,4138, - 1,0,0,0,4138,4139,5,108,0,0,4139,563,1,0,0,0,4140,4146,5,35,0,0, - 4141,4142,5,383,0,0,4142,4143,3,580,290,0,4143,4144,5,335,0,0,4144, - 4145,3,580,290,0,4145,4147,1,0,0,0,4146,4141,1,0,0,0,4147,4148,1, - 0,0,0,4148,4146,1,0,0,0,4148,4149,1,0,0,0,4149,4152,1,0,0,0,4150, - 4151,5,105,0,0,4151,4153,3,580,290,0,4152,4150,1,0,0,0,4152,4153, - 1,0,0,0,4153,4154,1,0,0,0,4154,4155,5,108,0,0,4155,565,1,0,0,0,4156, - 4157,5,132,0,0,4157,4158,5,399,0,0,4158,4161,3,580,290,0,4159,4160, - 5,341,0,0,4160,4162,3,570,285,0,4161,4159,1,0,0,0,4161,4162,1,0, - 0,0,4162,4163,1,0,0,0,4163,4164,5,400,0,0,4164,567,1,0,0,0,4165, - 4166,5,124,0,0,4166,4167,5,399,0,0,4167,4168,3,570,285,0,4168,4169, - 5,139,0,0,4169,4170,3,580,290,0,4170,4171,5,400,0,0,4171,569,1,0, - 0,0,4172,4181,3,666,333,0,4173,4181,5,257,0,0,4174,4181,3,668,334, - 0,4175,4181,3,670,335,0,4176,4181,3,672,336,0,4177,4181,3,674,337, - 0,4178,4181,3,676,338,0,4179,4181,3,678,339,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, - 571,1,0,0,0,4182,4183,3,574,287,0,4183,4184,3,578,289,0,4184,4211, - 1,0,0,0,4185,4211,5,431,0,0,4186,4187,5,71,0,0,4187,4211,5,426,0, - 0,4188,4211,5,63,0,0,4189,4190,5,337,0,0,4190,4211,5,426,0,0,4191, - 4211,5,64,0,0,4192,4193,5,338,0,0,4193,4211,5,426,0,0,4194,4198, - 5,426,0,0,4195,4197,5,426,0,0,4196,4195,1,0,0,0,4197,4200,1,0,0, - 0,4198,4196,1,0,0,0,4198,4199,1,0,0,0,4199,4211,1,0,0,0,4200,4198, - 1,0,0,0,4201,4211,5,428,0,0,4202,4211,5,429,0,0,4203,4204,5,433, - 0,0,4204,4211,5,427,0,0,4205,4211,5,350,0,0,4206,4211,5,125,0,0, - 4207,4211,5,219,0,0,4208,4211,5,424,0,0,4209,4211,5,432,0,0,4210, - 4182,1,0,0,0,4210,4185,1,0,0,0,4210,4186,1,0,0,0,4210,4188,1,0,0, - 0,4210,4189,1,0,0,0,4210,4191,1,0,0,0,4210,4192,1,0,0,0,4210,4194, - 1,0,0,0,4210,4201,1,0,0,0,4210,4202,1,0,0,0,4210,4203,1,0,0,0,4210, - 4205,1,0,0,0,4210,4206,1,0,0,0,4210,4207,1,0,0,0,4210,4208,1,0,0, - 0,4210,4209,1,0,0,0,4211,573,1,0,0,0,4212,4213,7,27,0,0,4213,575, - 1,0,0,0,4214,4215,5,399,0,0,4215,4216,3,574,287,0,4216,4217,5,400, - 0,0,4217,4218,3,578,289,0,4218,4230,1,0,0,0,4219,4225,5,165,0,0, - 4220,4226,3,574,287,0,4221,4222,5,399,0,0,4222,4223,3,580,290,0, - 4223,4224,5,400,0,0,4224,4226,1,0,0,0,4225,4220,1,0,0,0,4225,4221, - 1,0,0,0,4226,4227,1,0,0,0,4227,4228,3,578,289,0,4228,4230,1,0,0, - 0,4229,4214,1,0,0,0,4229,4219,1,0,0,0,4230,577,1,0,0,0,4231,4232, - 3,666,333,0,4232,4233,5,341,0,0,4233,4234,3,668,334,0,4234,4246, - 1,0,0,0,4235,4236,3,672,336,0,4236,4237,5,341,0,0,4237,4238,3,678, - 339,0,4238,4246,1,0,0,0,4239,4246,3,666,333,0,4240,4246,3,668,334, - 0,4241,4246,3,672,336,0,4242,4246,3,674,337,0,4243,4246,3,676,338, - 0,4244,4246,3,678,339,0,4245,4231,1,0,0,0,4245,4235,1,0,0,0,4245, - 4239,1,0,0,0,4245,4240,1,0,0,0,4245,4241,1,0,0,0,4245,4242,1,0,0, - 0,4245,4243,1,0,0,0,4245,4244,1,0,0,0,4246,579,1,0,0,0,4247,4252, - 3,622,311,0,4248,4249,5,228,0,0,4249,4251,3,622,311,0,4250,4248, - 1,0,0,0,4251,4254,1,0,0,0,4252,4250,1,0,0,0,4252,4253,1,0,0,0,4253, - 581,1,0,0,0,4254,4252,1,0,0,0,4255,4267,3,572,286,0,4256,4267,3, - 576,288,0,4257,4267,3,560,280,0,4258,4267,3,568,284,0,4259,4267, - 3,566,283,0,4260,4267,3,562,281,0,4261,4267,3,564,282,0,4262,4267, - 3,600,300,0,4263,4267,3,550,275,0,4264,4267,3,538,269,0,4265,4267, - 3,638,319,0,4266,4255,1,0,0,0,4266,4256,1,0,0,0,4266,4257,1,0,0, - 0,4266,4258,1,0,0,0,4266,4259,1,0,0,0,4266,4260,1,0,0,0,4266,4261, - 1,0,0,0,4266,4262,1,0,0,0,4266,4263,1,0,0,0,4266,4264,1,0,0,0,4266, - 4265,1,0,0,0,4267,583,1,0,0,0,4268,4270,7,36,0,0,4269,4268,1,0,0, - 0,4270,4273,1,0,0,0,4271,4269,1,0,0,0,4271,4272,1,0,0,0,4272,4274, - 1,0,0,0,4273,4271,1,0,0,0,4274,4283,3,582,291,0,4275,4276,5,401, - 0,0,4276,4277,3,580,290,0,4277,4278,5,402,0,0,4278,4282,1,0,0,0, - 4279,4280,5,395,0,0,4280,4282,3,638,319,0,4281,4275,1,0,0,0,4281, - 4279,1,0,0,0,4282,4285,1,0,0,0,4283,4281,1,0,0,0,4283,4284,1,0,0, - 0,4284,585,1,0,0,0,4285,4283,1,0,0,0,4286,4291,3,584,292,0,4287, - 4288,5,423,0,0,4288,4290,3,584,292,0,4289,4287,1,0,0,0,4290,4293, - 1,0,0,0,4291,4289,1,0,0,0,4291,4292,1,0,0,0,4292,587,1,0,0,0,4293, - 4291,1,0,0,0,4294,4299,3,586,293,0,4295,4296,7,37,0,0,4296,4298, - 3,586,293,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,589,1,0,0,0,4301,4299,1,0,0,0,4302,4307, - 3,588,294,0,4303,4304,7,38,0,0,4304,4306,3,588,294,0,4305,4303,1, - 0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0,0,4307,4308,1,0,0,0,4308, - 591,1,0,0,0,4309,4307,1,0,0,0,4310,4315,3,590,295,0,4311,4312,5, - 422,0,0,4312,4314,3,590,295,0,4313,4311,1,0,0,0,4314,4317,1,0,0, - 0,4315,4313,1,0,0,0,4315,4316,1,0,0,0,4316,593,1,0,0,0,4317,4315, - 1,0,0,0,4318,4323,3,592,296,0,4319,4320,5,419,0,0,4320,4322,3,592, - 296,0,4321,4319,1,0,0,0,4322,4325,1,0,0,0,4323,4321,1,0,0,0,4323, - 4324,1,0,0,0,4324,595,1,0,0,0,4325,4323,1,0,0,0,4326,4331,3,594, - 297,0,4327,4328,5,421,0,0,4328,4330,3,594,297,0,4329,4327,1,0,0, - 0,4330,4333,1,0,0,0,4331,4329,1,0,0,0,4331,4332,1,0,0,0,4332,597, - 1,0,0,0,4333,4331,1,0,0,0,4334,4335,7,39,0,0,4335,599,1,0,0,0,4336, - 4337,5,399,0,0,4337,4338,3,376,188,0,4338,4339,5,400,0,0,4339,601, - 1,0,0,0,4340,4342,3,596,298,0,4341,4343,3,604,302,0,4342,4341,1, - 0,0,0,4342,4343,1,0,0,0,4343,4347,1,0,0,0,4344,4345,5,117,0,0,4345, - 4347,3,600,300,0,4346,4340,1,0,0,0,4346,4344,1,0,0,0,4347,603,1, - 0,0,0,4348,4349,3,598,299,0,4349,4350,3,596,298,0,4350,4355,1,0, - 0,0,4351,4355,3,606,303,0,4352,4353,5,216,0,0,4353,4355,3,610,305, - 0,4354,4348,1,0,0,0,4354,4351,1,0,0,0,4354,4352,1,0,0,0,4355,605, - 1,0,0,0,4356,4357,5,154,0,0,4357,4371,3,608,304,0,4358,4359,5,25, - 0,0,4359,4360,3,596,298,0,4360,4361,5,11,0,0,4361,4362,3,596,298, - 0,4362,4371,1,0,0,0,4363,4364,5,184,0,0,4364,4365,7,40,0,0,4365, - 4371,3,538,269,0,4366,4367,3,634,317,0,4367,4368,7,41,0,0,4368,4369, - 3,600,300,0,4369,4371,1,0,0,0,4370,4356,1,0,0,0,4370,4358,1,0,0, - 0,4370,4363,1,0,0,0,4370,4366,1,0,0,0,4371,607,1,0,0,0,4372,4375, - 3,600,300,0,4373,4375,3,538,269,0,4374,4372,1,0,0,0,4374,4373,1, - 0,0,0,4375,609,1,0,0,0,4376,4377,7,42,0,0,4377,4380,3,596,298,0, - 4378,4380,3,606,303,0,4379,4376,1,0,0,0,4379,4378,1,0,0,0,4380,611, - 1,0,0,0,4381,4382,5,167,0,0,4382,4383,5,96,0,0,4383,4384,5,139,0, - 0,4384,613,1,0,0,0,4385,4393,5,405,0,0,4386,4393,5,406,0,0,4387, - 4393,5,407,0,0,4388,4389,5,167,0,0,4389,4390,5,216,0,0,4390,4391, - 5,96,0,0,4391,4393,5,139,0,0,4392,4385,1,0,0,0,4392,4386,1,0,0,0, - 4392,4387,1,0,0,0,4392,4388,1,0,0,0,4393,615,1,0,0,0,4394,4403,3, - 602,301,0,4395,4396,3,614,307,0,4396,4397,3,602,301,0,4397,4402, - 1,0,0,0,4398,4399,3,612,306,0,4399,4400,3,602,301,0,4400,4402,1, - 0,0,0,4401,4395,1,0,0,0,4401,4398,1,0,0,0,4402,4405,1,0,0,0,4403, - 4401,1,0,0,0,4403,4404,1,0,0,0,4404,617,1,0,0,0,4405,4403,1,0,0, - 0,4406,4413,5,219,0,0,4407,4413,5,350,0,0,4408,4413,5,125,0,0,4409, - 4413,5,360,0,0,4410,4411,5,216,0,0,4411,4413,7,43,0,0,4412,4406, - 1,0,0,0,4412,4407,1,0,0,0,4412,4408,1,0,0,0,4412,4409,1,0,0,0,4412, - 4410,1,0,0,0,4413,619,1,0,0,0,4414,4416,5,216,0,0,4415,4414,1,0, - 0,0,4416,4419,1,0,0,0,4417,4415,1,0,0,0,4417,4418,1,0,0,0,4418,4420, - 1,0,0,0,4419,4417,1,0,0,0,4420,4423,3,616,308,0,4421,4422,5,167, - 0,0,4422,4424,3,618,309,0,4423,4421,1,0,0,0,4423,4424,1,0,0,0,4424, - 621,1,0,0,0,4425,4430,3,620,310,0,4426,4427,5,11,0,0,4427,4429,3, - 620,310,0,4428,4426,1,0,0,0,4429,4432,1,0,0,0,4430,4428,1,0,0,0, - 4430,4431,1,0,0,0,4431,623,1,0,0,0,4432,4430,1,0,0,0,4433,4435,3, - 478,239,0,4434,4436,3,626,313,0,4435,4434,1,0,0,0,4435,4436,1,0, - 0,0,4436,625,1,0,0,0,4437,4438,5,237,0,0,4438,4439,5,399,0,0,4439, - 4444,3,628,314,0,4440,4441,5,397,0,0,4441,4443,3,628,314,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,4447,1,0,0,0,4446,4444,1,0,0,0,4447,4448,5,400,0,0,4448,627, - 1,0,0,0,4449,4452,3,638,319,0,4450,4451,5,405,0,0,4451,4453,3,572, - 286,0,4452,4450,1,0,0,0,4452,4453,1,0,0,0,4453,629,1,0,0,0,4454, - 4455,5,399,0,0,4455,4460,3,632,316,0,4456,4457,5,397,0,0,4457,4459, - 3,632,316,0,4458,4456,1,0,0,0,4459,4462,1,0,0,0,4460,4458,1,0,0, - 0,4460,4461,1,0,0,0,4461,4463,1,0,0,0,4462,4460,1,0,0,0,4463,4464, - 5,400,0,0,4464,631,1,0,0,0,4465,4468,3,638,319,0,4466,4469,5,184, - 0,0,4467,4469,3,634,317,0,4468,4466,1,0,0,0,4468,4467,1,0,0,0,4469, - 4470,1,0,0,0,4470,4471,3,572,286,0,4471,633,1,0,0,0,4472,4473,7, - 44,0,0,4473,635,1,0,0,0,4474,4475,7,45,0,0,4475,637,1,0,0,0,4476, - 4479,5,432,0,0,4477,4479,3,644,322,0,4478,4476,1,0,0,0,4478,4477, - 1,0,0,0,4479,639,1,0,0,0,4480,4483,3,638,319,0,4481,4482,5,395,0, - 0,4482,4484,3,638,319,0,4483,4481,1,0,0,0,4483,4484,1,0,0,0,4484, - 641,1,0,0,0,4485,4486,3,638,319,0,4486,643,1,0,0,0,4487,4488,7,46, - 0,0,4488,645,1,0,0,0,4489,4490,7,47,0,0,4490,647,1,0,0,0,4491,4543, - 3,638,319,0,4492,4543,5,299,0,0,4493,4543,5,171,0,0,4494,4543,5, - 237,0,0,4495,4543,5,198,0,0,4496,4543,5,268,0,0,4497,4543,5,369, - 0,0,4498,4543,5,241,0,0,4499,4543,5,165,0,0,4500,4543,5,292,0,0, - 4501,4543,5,356,0,0,4502,4543,5,144,0,0,4503,4543,5,203,0,0,4504, - 4543,5,219,0,0,4505,4543,5,126,0,0,4506,4543,5,188,0,0,4507,4543, - 5,101,0,0,4508,4543,5,329,0,0,4509,4543,5,224,0,0,4510,4543,5,291, - 0,0,4511,4543,5,145,0,0,4512,4543,5,304,0,0,4513,4543,5,135,0,0, - 4514,4543,5,318,0,0,4515,4543,5,161,0,0,4516,4543,5,54,0,0,4517, - 4543,5,166,0,0,4518,4543,5,358,0,0,4519,4543,5,45,0,0,4520,4543, - 5,347,0,0,4521,4543,5,96,0,0,4522,4543,5,154,0,0,4523,4543,5,269, - 0,0,4524,4543,5,337,0,0,4525,4543,5,225,0,0,4526,4543,5,108,0,0, - 4527,4543,5,141,0,0,4528,4543,5,365,0,0,4529,4543,5,21,0,0,4530, - 4543,5,78,0,0,4531,4543,5,374,0,0,4532,4543,5,336,0,0,4533,4543, - 5,167,0,0,4534,4543,5,134,0,0,4535,4543,5,216,0,0,4536,4543,5,27, - 0,0,4537,4543,5,370,0,0,4538,4543,5,263,0,0,4539,4543,5,25,0,0,4540, - 4543,5,62,0,0,4541,4543,5,17,0,0,4542,4491,1,0,0,0,4542,4492,1,0, - 0,0,4542,4493,1,0,0,0,4542,4494,1,0,0,0,4542,4495,1,0,0,0,4542,4496, - 1,0,0,0,4542,4497,1,0,0,0,4542,4498,1,0,0,0,4542,4499,1,0,0,0,4542, - 4500,1,0,0,0,4542,4501,1,0,0,0,4542,4502,1,0,0,0,4542,4503,1,0,0, - 0,4542,4504,1,0,0,0,4542,4505,1,0,0,0,4542,4506,1,0,0,0,4542,4507, - 1,0,0,0,4542,4508,1,0,0,0,4542,4509,1,0,0,0,4542,4510,1,0,0,0,4542, - 4511,1,0,0,0,4542,4512,1,0,0,0,4542,4513,1,0,0,0,4542,4514,1,0,0, - 0,4542,4515,1,0,0,0,4542,4516,1,0,0,0,4542,4517,1,0,0,0,4542,4518, - 1,0,0,0,4542,4519,1,0,0,0,4542,4520,1,0,0,0,4542,4521,1,0,0,0,4542, - 4522,1,0,0,0,4542,4523,1,0,0,0,4542,4524,1,0,0,0,4542,4525,1,0,0, - 0,4542,4526,1,0,0,0,4542,4527,1,0,0,0,4542,4528,1,0,0,0,4542,4529, - 1,0,0,0,4542,4530,1,0,0,0,4542,4531,1,0,0,0,4542,4532,1,0,0,0,4542, - 4533,1,0,0,0,4542,4534,1,0,0,0,4542,4535,1,0,0,0,4542,4536,1,0,0, - 0,4542,4537,1,0,0,0,4542,4538,1,0,0,0,4542,4539,1,0,0,0,4542,4540, - 1,0,0,0,4542,4541,1,0,0,0,4543,649,1,0,0,0,4544,4545,5,58,0,0,4545, - 4546,5,280,0,0,4546,4548,5,243,0,0,4547,4549,3,32,16,0,4548,4547, - 1,0,0,0,4548,4549,1,0,0,0,4549,4559,1,0,0,0,4550,4551,3,638,319, - 0,4551,4552,5,184,0,0,4552,4553,3,638,319,0,4553,4560,1,0,0,0,4554, - 4557,3,638,319,0,4555,4556,5,387,0,0,4556,4558,3,656,328,0,4557, - 4555,1,0,0,0,4557,4558,1,0,0,0,4558,4560,1,0,0,0,4559,4550,1,0,0, - 0,4559,4554,1,0,0,0,4560,4710,1,0,0,0,4561,4562,5,9,0,0,4562,4563, - 5,280,0,0,4563,4564,5,243,0,0,4564,4589,3,638,319,0,4565,4590,5, - 373,0,0,4566,4590,3,664,332,0,4567,4568,5,304,0,0,4568,4590,3,656, - 328,0,4569,4570,5,363,0,0,4570,4575,3,658,329,0,4571,4572,5,397, - 0,0,4572,4574,3,658,329,0,4573,4571,1,0,0,0,4574,4577,1,0,0,0,4575, - 4573,1,0,0,0,4575,4576,1,0,0,0,4576,4590,1,0,0,0,4577,4575,1,0,0, - 0,4578,4579,5,274,0,0,4579,4580,5,341,0,0,4580,4590,3,638,319,0, - 4581,4583,3,660,330,0,4582,4584,3,662,331,0,4583,4582,1,0,0,0,4583, - 4584,1,0,0,0,4584,4590,1,0,0,0,4585,4587,3,662,331,0,4586,4588,3, - 660,330,0,4587,4586,1,0,0,0,4587,4588,1,0,0,0,4588,4590,1,0,0,0, - 4589,4565,1,0,0,0,4589,4566,1,0,0,0,4589,4567,1,0,0,0,4589,4569, - 1,0,0,0,4589,4578,1,0,0,0,4589,4581,1,0,0,0,4589,4585,1,0,0,0,4590, - 4710,1,0,0,0,4591,4592,5,101,0,0,4592,4593,5,280,0,0,4593,4595,5, - 243,0,0,4594,4596,3,30,15,0,4595,4594,1,0,0,0,4595,4596,1,0,0,0, - 4596,4597,1,0,0,0,4597,4710,3,638,319,0,4598,4601,3,662,331,0,4599, - 4601,3,664,332,0,4600,4598,1,0,0,0,4600,4599,1,0,0,0,4601,4602,1, - 0,0,0,4602,4603,5,390,0,0,4603,4604,5,197,0,0,4604,4710,1,0,0,0, - 4605,4617,5,278,0,0,4606,4607,5,3,0,0,4607,4608,5,280,0,0,4608,4609, - 5,243,0,0,4609,4610,5,387,0,0,4610,4618,3,638,319,0,4611,4612,5, - 280,0,0,4612,4613,5,243,0,0,4613,4614,3,638,319,0,4614,4615,5,387, - 0,0,4615,4616,3,638,319,0,4616,4618,1,0,0,0,4617,4606,1,0,0,0,4617, - 4611,1,0,0,0,4618,4710,1,0,0,0,4619,4620,5,58,0,0,4620,4621,5,348, - 0,0,4621,4622,3,638,319,0,4622,4623,5,395,0,0,4623,4624,3,638,319, - 0,4624,4625,5,383,0,0,4625,4626,3,684,342,0,4626,4627,5,99,0,0,4627, - 4628,3,686,343,0,4628,4710,1,0,0,0,4629,4630,5,9,0,0,4630,4631,5, - 348,0,0,4631,4632,3,638,319,0,4632,4633,5,395,0,0,4633,4650,3,638, - 319,0,4634,4635,5,383,0,0,4635,4636,3,684,342,0,4636,4637,5,99,0, - 0,4637,4638,3,686,343,0,4638,4651,1,0,0,0,4639,4640,5,4,0,0,4640, - 4644,5,341,0,0,4641,4642,5,101,0,0,4642,4644,5,139,0,0,4643,4639, - 1,0,0,0,4643,4641,1,0,0,0,4644,4648,1,0,0,0,4645,4646,5,246,0,0, - 4646,4649,3,682,341,0,4647,4649,5,362,0,0,4648,4645,1,0,0,0,4648, - 4647,1,0,0,0,4649,4651,1,0,0,0,4650,4634,1,0,0,0,4650,4643,1,0,0, - 0,4651,4710,1,0,0,0,4652,4653,5,101,0,0,4653,4654,5,348,0,0,4654, - 4655,3,638,319,0,4655,4656,5,395,0,0,4656,4657,3,638,319,0,4657, - 4710,1,0,0,0,4658,4659,5,58,0,0,4659,4660,5,246,0,0,4660,4661,3, - 638,319,0,4661,4662,5,395,0,0,4662,4663,3,682,341,0,4663,4664,5, - 387,0,0,4664,4665,3,690,345,0,4665,4710,1,0,0,0,4666,4667,5,9,0, - 0,4667,4668,5,246,0,0,4668,4669,3,638,319,0,4669,4670,5,395,0,0, - 4670,4678,3,682,341,0,4671,4672,5,304,0,0,4672,4679,3,690,345,0, - 4673,4674,5,363,0,0,4674,4679,5,294,0,0,4675,4676,7,48,0,0,4676, - 4677,5,348,0,0,4677,4679,3,638,319,0,4678,4671,1,0,0,0,4678,4673, - 1,0,0,0,4678,4675,1,0,0,0,4679,4710,1,0,0,0,4680,4681,5,101,0,0, - 4681,4682,5,246,0,0,4682,4683,3,638,319,0,4683,4684,5,395,0,0,4684, - 4685,3,682,341,0,4685,4710,1,0,0,0,4686,4687,7,49,0,0,4687,4688, - 3,652,326,0,4688,4689,5,200,0,0,4689,4690,5,426,0,0,4690,4691,5, - 154,0,0,4691,4695,3,638,319,0,4692,4693,5,341,0,0,4693,4696,3,682, - 341,0,4694,4696,5,362,0,0,4695,4692,1,0,0,0,4695,4694,1,0,0,0,4696, - 4700,1,0,0,0,4697,4698,5,387,0,0,4698,4699,5,229,0,0,4699,4701,5, - 431,0,0,4700,4697,1,0,0,0,4700,4701,1,0,0,0,4701,4710,1,0,0,0,4702, - 4703,5,101,0,0,4703,4704,3,652,326,0,4704,4705,5,200,0,0,4705,4706, - 5,426,0,0,4706,4707,5,154,0,0,4707,4708,3,638,319,0,4708,4710,1, - 0,0,0,4709,4544,1,0,0,0,4709,4561,1,0,0,0,4709,4591,1,0,0,0,4709, - 4600,1,0,0,0,4709,4605,1,0,0,0,4709,4619,1,0,0,0,4709,4629,1,0,0, - 0,4709,4652,1,0,0,0,4709,4658,1,0,0,0,4709,4666,1,0,0,0,4709,4680, - 1,0,0,0,4709,4686,1,0,0,0,4709,4702,1,0,0,0,4710,651,1,0,0,0,4711, - 4712,7,50,0,0,4712,653,1,0,0,0,4713,4714,5,259,0,0,4714,4715,5,405, - 0,0,4715,4721,5,431,0,0,4716,4717,5,83,0,0,4717,4718,5,246,0,0,4718, - 4719,5,405,0,0,4719,4721,3,682,341,0,4720,4713,1,0,0,0,4720,4716, - 1,0,0,0,4721,655,1,0,0,0,4722,4727,3,654,327,0,4723,4724,5,397,0, - 0,4724,4726,3,654,327,0,4725,4723,1,0,0,0,4726,4729,1,0,0,0,4727, - 4725,1,0,0,0,4727,4728,1,0,0,0,4728,657,1,0,0,0,4729,4727,1,0,0, - 0,4730,4734,5,259,0,0,4731,4732,5,83,0,0,4732,4734,5,246,0,0,4733, - 4730,1,0,0,0,4733,4731,1,0,0,0,4734,659,1,0,0,0,4735,4738,5,2,0, - 0,4736,4737,5,387,0,0,4737,4739,5,278,0,0,4738,4736,1,0,0,0,4738, - 4739,1,0,0,0,4739,661,1,0,0,0,4740,4741,7,51,0,0,4741,663,1,0,0, - 0,4742,4743,7,52,0,0,4743,665,1,0,0,0,4744,4745,7,53,0,0,4745,667, - 1,0,0,0,4746,4747,7,54,0,0,4747,669,1,0,0,0,4748,4749,7,55,0,0,4749, - 671,1,0,0,0,4750,4751,7,56,0,0,4751,673,1,0,0,0,4752,4753,7,57,0, - 0,4753,675,1,0,0,0,4754,4755,7,58,0,0,4755,677,1,0,0,0,4756,4757, - 7,59,0,0,4757,679,1,0,0,0,4758,4759,7,60,0,0,4759,681,1,0,0,0,4760, - 4765,3,638,319,0,4761,4762,5,395,0,0,4762,4764,3,638,319,0,4763, - 4761,1,0,0,0,4764,4767,1,0,0,0,4765,4763,1,0,0,0,4765,4766,1,0,0, - 0,4766,683,1,0,0,0,4767,4765,1,0,0,0,4768,4769,3,638,319,0,4769, - 4770,5,411,0,0,4770,4771,7,27,0,0,4771,685,1,0,0,0,4772,4777,5,176, - 0,0,4773,4774,5,211,0,0,4774,4775,5,341,0,0,4775,4777,3,682,341, - 0,4776,4772,1,0,0,0,4776,4773,1,0,0,0,4777,687,1,0,0,0,4778,4779, - 5,8,0,0,4779,4780,5,405,0,0,4780,4791,5,431,0,0,4781,4782,5,259, - 0,0,4782,4783,5,405,0,0,4783,4791,5,431,0,0,4784,4785,5,294,0,0, - 4785,4786,5,405,0,0,4786,4791,5,426,0,0,4787,4788,5,240,0,0,4788, - 4789,5,405,0,0,4789,4791,3,682,341,0,4790,4778,1,0,0,0,4790,4781, - 1,0,0,0,4790,4784,1,0,0,0,4790,4787,1,0,0,0,4791,689,1,0,0,0,4792, - 4797,3,688,344,0,4793,4794,5,397,0,0,4794,4796,3,688,344,0,4795, - 4793,1,0,0,0,4796,4799,1,0,0,0,4797,4795,1,0,0,0,4797,4798,1,0,0, - 0,4798,691,1,0,0,0,4799,4797,1,0,0,0,621,695,702,705,711,717,724, - 734,737,741,756,763,769,774,779,782,806,813,816,821,826,832,836, - 849,853,857,862,869,873,878,885,889,894,942,949,954,977,981,985, - 988,992,997,1003,1007,1013,1015,1026,1030,1037,1045,1048,1053,1057, - 1060,1070,1078,1082,1085,1089,1093,1096,1101,1107,1112,1117,1121, - 1132,1134,1138,1148,1152,1158,1161,1168,1173,1181,1186,1190,1198, - 1203,1209,1215,1218,1221,1224,1233,1241,1246,1254,1261,1264,1267, - 1269,1280,1282,1285,1288,1291,1294,1297,1299,1311,1317,1325,1327, - 1337,1370,1375,1379,1383,1390,1397,1403,1407,1410,1417,1440,1445, - 1449,1457,1466,1473,1479,1486,1489,1495,1502,1510,1519,1528,1535, - 1555,1562,1564,1571,1581,1589,1593,1597,1610,1619,1635,1639,1644, - 1649,1652,1655,1658,1661,1664,1669,1678,1682,1689,1692,1695,1698, - 1710,1716,1742,1750,1754,1757,1760,1763,1766,1769,1772,1775,1784, - 1794,1797,1817,1823,1829,1832,1834,1841,1848,1861,1866,1875,1883, - 1891,1904,1917,1933,1937,1952,1958,1961,1964,1967,1970,1974,1989, - 1992,2003,2017,2051,2059,2064,2072,2077,2082,2089,2097,2105,2113, - 2118,2128,2132,2140,2149,2152,2156,2163,2169,2173,2179,2183,2195, - 2204,2215,2219,2226,2238,2248,2251,2258,2264,2268,2271,2274,2280, - 2284,2288,2293,2297,2301,2305,2313,2317,2321,2325,2329,2337,2341, - 2345,2353,2358,2363,2367,2371,2378,2387,2395,2407,2425,2428,2434, - 2460,2463,2469,2477,2485,2498,2505,2508,2511,2514,2517,2520,2523, - 2526,2529,2532,2535,2540,2543,2546,2549,2552,2555,2558,2561,2564, - 2567,2570,2572,2578,2582,2585,2588,2591,2594,2597,2604,2608,2611, - 2614,2617,2620,2623,2630,2633,2641,2645,2652,2654,2657,2662,2665, - 2669,2674,2680,2688,2696,2706,2709,2713,2717,2722,2729,2733,2735, - 2739,2746,2751,2764,2772,2791,2801,2814,2824,2828,2832,2838,2845, - 2852,2861,2868,2888,2891,2905,2920,2924,2944,2956,2962,2965,2968, - 2974,2980,2987,2995,3001,3005,3010,3013,3017,3024,3029,3034,3037, - 3039,3047,3055,3059,3063,3067,3084,3101,3108,3117,3122,3125,3128, - 3132,3147,3161,3164,3175,3179,3182,3185,3189,3194,3197,3200,3203, - 3206,3209,3215,3218,3221,3224,3227,3230,3233,3236,3239,3242,3246, - 3248,3254,3259,3262,3265,3268,3271,3277,3280,3283,3286,3289,3292, - 3295,3298,3301,3304,3308,3310,3312,3317,3322,3326,3330,3335,3340, - 3349,3359,3367,3379,3382,3388,3395,3402,3409,3416,3425,3429,3436, - 3441,3445,3449,3452,3455,3466,3470,3472,3475,3488,3491,3494,3506, - 3509,3516,3525,3530,3532,3534,3551,3554,3562,3565,3569,3572,3575, - 3578,3581,3593,3601,3608,3611,3618,3621,3626,3633,3641,3649,3654, - 3658,3663,3670,3684,3687,3691,3702,3712,3715,3722,3731,3734,3740, - 3743,3750,3755,3758,3771,3777,3779,3787,3790,3800,3805,3807,3819, - 3825,3827,3834,3841,3855,3861,3864,3867,3870,3879,3886,3892,3901, - 3905,3913,3923,3933,3938,3942,3948,3953,3963,3967,3970,3975,3978, - 3982,3987,3998,4000,4009,4028,4038,4041,4048,4051,4061,4068,4071, - 4073,4084,4094,4096,4105,4110,4119,4132,4136,4148,4152,4161,4180, - 4198,4210,4225,4229,4245,4252,4266,4271,4281,4283,4291,4299,4307, - 4315,4323,4331,4342,4346,4354,4370,4374,4379,4392,4401,4403,4412, - 4417,4423,4430,4435,4444,4452,4460,4468,4478,4483,4542,4548,4557, - 4559,4575,4583,4587,4589,4595,4600,4617,4643,4648,4650,4678,4695, - 4700,4709,4720,4727,4733,4738,4765,4776,4790,4797 + 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, + 14,1,14,1,14,1,14,4,14,945,8,14,11,14,12,14,946,1,14,1,14,1,14,4, + 14,952,8,14,11,14,12,14,953,1,14,1,14,1,14,3,14,959,8,14,1,15,1, + 15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1, + 19,1,20,1,20,1,20,1,20,1,21,1,21,3,21,982,8,21,1,21,1,21,3,21,986, + 8,21,1,21,1,21,3,21,990,8,21,1,21,3,21,993,8,21,1,21,1,21,3,21,997, + 8,21,1,21,1,21,1,21,3,21,1002,8,21,1,21,1,21,1,21,1,21,3,21,1008, + 8,21,1,21,1,21,3,21,1012,8,21,1,21,1,21,1,21,1,21,3,21,1018,8,21, + 3,21,1020,8,21,1,22,1,22,1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24, + 1031,8,24,1,24,1,24,3,24,1035,8,24,1,25,1,25,1,25,1,26,1,26,3,26, + 1042,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1050,8,26,1,26,3,26, + 1053,8,26,1,27,1,27,1,27,3,27,1058,8,27,1,27,1,27,3,27,1062,8,27, + 1,27,3,27,1065,8,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29, + 1075,8,29,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1083,8,29,5,29,1085, + 8,29,10,29,12,29,1088,9,29,3,29,1090,8,29,1,30,1,30,3,30,1094,8, + 30,1,31,1,31,3,31,1098,8,31,1,31,3,31,1101,8,31,1,32,1,32,1,32,3, + 32,1106,8,32,1,32,1,32,1,32,1,32,3,32,1112,8,32,1,32,1,32,1,32,3, + 32,1117,8,32,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,3,32,1126,8, + 32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1137,8,33,3, + 33,1139,8,33,1,33,1,33,3,33,1143,8,33,1,34,1,34,1,35,1,35,1,36,1, + 36,1,36,1,36,3,36,1153,8,36,1,36,1,36,3,36,1157,8,36,1,36,1,36,1, + 36,1,36,3,36,1163,8,36,1,36,3,36,1166,8,36,1,36,1,36,1,36,1,36,1, + 36,3,36,1173,8,36,1,36,1,36,1,36,3,36,1178,8,36,1,36,1,36,1,36,1, + 36,1,36,1,36,3,36,1186,8,36,1,36,1,36,1,36,3,36,1191,8,36,1,36,1, + 36,3,36,1195,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1203,8,36,1, + 36,1,36,1,36,3,36,1208,8,36,1,36,1,36,1,36,1,36,3,36,1214,8,36,1, + 36,1,36,1,36,1,36,3,36,1220,8,36,1,36,3,36,1223,8,36,1,36,3,36,1226, + 8,36,1,36,3,36,1229,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36, + 1238,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1246,8,36,1,36,1,36, + 1,36,3,36,1251,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1259,8,36, + 1,36,1,36,1,36,1,36,1,36,3,36,1266,8,36,1,36,3,36,1269,8,36,1,36, + 3,36,1272,8,36,3,36,1274,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,1,36,3,36,1285,8,36,3,36,1287,8,36,1,36,3,36,1290,8,36,1,36, + 3,36,1293,8,36,1,36,3,36,1296,8,36,1,36,3,36,1299,8,36,1,36,3,36, + 1302,8,36,3,36,1304,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,1,36,3,36,1316,8,36,1,36,1,36,1,36,1,36,3,36,1322,8,36,1,36, + 1,36,1,36,1,36,1,36,1,36,3,36,1330,8,36,3,36,1332,8,36,1,37,1,37, + 1,37,1,37,1,37,1,37,1,37,1,37,3,37,1342,8,37,1,38,1,38,1,38,1,38, + 1,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42, + 1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45, + 1,45,3,45,1375,8,45,1,45,1,45,1,45,3,45,1380,8,45,1,46,1,46,3,46, + 1384,8,46,1,46,1,46,3,46,1388,8,46,1,46,1,46,1,46,1,47,1,47,3,47, + 1395,8,47,1,47,1,47,1,47,5,47,1400,8,47,10,47,12,47,1403,9,47,1, + 47,1,47,1,47,3,47,1408,8,47,1,48,1,48,3,48,1412,8,48,1,48,3,48,1415, + 8,48,1,48,1,48,1,48,5,48,1420,8,48,10,48,12,48,1423,9,48,1,48,1, + 48,1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1, + 51,1,52,1,52,1,52,1,52,1,52,3,52,1445,8,52,1,53,1,53,1,53,3,53,1450, + 8,53,1,53,1,53,3,53,1454,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55, + 1462,8,55,1,56,1,56,1,56,1,57,1,57,1,57,1,57,3,57,1471,8,57,1,57, + 1,57,1,57,1,57,1,57,3,57,1478,8,57,1,58,1,58,1,58,1,58,3,58,1484, + 8,58,1,58,1,58,1,58,1,58,1,58,3,58,1491,8,58,1,58,3,58,1494,8,58, + 1,58,1,58,1,58,1,58,3,58,1500,8,58,1,59,1,59,1,59,5,59,1505,8,59, + 10,59,12,59,1508,9,59,1,60,1,60,1,60,1,60,1,60,3,60,1515,8,60,1, + 61,1,61,1,62,1,62,1,62,5,62,1522,8,62,10,62,12,62,1525,9,62,1,63, + 1,63,1,63,1,63,1,63,1,63,3,63,1533,8,63,1,64,1,64,1,64,1,64,1,64, + 3,64,1540,8,64,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67, + 1,67,1,67,1,68,1,68,1,68,1,68,1,69,1,69,3,69,1560,8,69,1,69,1,69, + 1,69,1,69,1,69,3,69,1567,8,69,3,69,1569,8,69,1,70,1,70,1,70,5,70, + 1574,8,70,10,70,12,70,1577,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1, + 73,3,73,1586,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1594,8,73,1, + 74,1,74,3,74,1598,8,74,1,74,1,74,3,74,1602,8,74,1,74,1,74,1,75,1, + 75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,3,76,1615,8,76,1,76,1,76,1, + 76,1,77,1,77,1,77,1,77,3,77,1624,8,77,1,77,1,77,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1640,8,78,1,78,1, + 78,3,78,1644,8,78,1,78,1,78,1,78,3,78,1649,8,78,1,78,1,78,1,78,3, + 78,1654,8,78,1,78,3,78,1657,8,78,1,78,3,78,1660,8,78,1,78,3,78,1663, + 8,78,1,78,3,78,1666,8,78,1,78,3,78,1669,8,78,1,79,1,79,1,79,3,79, + 1674,8,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,3,80,1683,8,80,1,80, + 1,80,3,80,1687,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1694,8,80,1,80, + 3,80,1697,8,80,1,80,3,80,1700,8,80,1,80,3,80,1703,8,80,1,80,1,80, + 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1715,8,81,1,81,1,81, + 1,82,1,82,3,82,1721,8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, + 1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86, + 1,87,1,87,1,87,3,87,1747,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88, + 1755,8,88,1,88,1,88,3,88,1759,8,88,1,88,3,88,1762,8,88,1,88,3,88, + 1765,8,88,1,88,3,88,1768,8,88,1,88,3,88,1771,8,88,1,88,3,88,1774, + 8,88,1,88,3,88,1777,8,88,1,88,3,88,1780,8,88,1,88,1,88,1,88,1,89, + 1,89,1,89,1,89,3,89,1789,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90, + 1,90,3,90,1799,8,90,1,90,3,90,1802,8,90,1,90,1,90,1,91,1,91,1,91, + 1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93, + 3,93,1822,8,93,1,94,1,94,1,94,1,94,3,94,1828,8,94,1,94,1,94,1,94, + 1,94,3,94,1834,8,94,1,94,3,94,1837,8,94,3,94,1839,8,94,1,95,1,95, + 1,95,1,95,1,96,3,96,1846,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1853, + 8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100, + 3,100,1866,8,100,1,100,1,100,1,100,3,100,1871,8,100,1,100,1,100, + 1,101,1,101,1,101,5,101,1878,8,101,10,101,12,101,1881,9,101,1,102, + 1,102,1,102,5,102,1886,8,102,10,102,12,102,1889,9,102,1,103,1,103, + 1,103,1,103,1,103,3,103,1896,8,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,3,103,1909,8,103,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,1922, + 8,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,1,105,1,105,3,105,1938,8,105,1,106,1,106,3,106,1942, + 8,106,1,107,1,107,1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,3,109,1957,8,109,1,110,1,110,1,110,1,110,3,110, + 1963,8,110,1,110,3,110,1966,8,110,1,110,3,110,1969,8,110,1,110,3, + 110,1972,8,110,1,110,3,110,1975,8,110,1,111,1,111,3,111,1979,8,111, + 1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114, + 5,114,1992,8,114,10,114,12,114,1995,9,114,3,114,1997,8,114,1,115, + 1,115,1,115,1,115,1,116,1,116,1,116,5,116,2006,8,116,10,116,12,116, + 2009,9,116,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,2022,8,118,1,119,1,119,1,119,1,119,1,119,1,119, + 1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, + 1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,3,123,2056,8,123,1,123,1,123,1,123,1,123, + 1,123,1,123,3,123,2064,8,123,1,123,1,123,1,123,3,123,2069,8,123, + 1,123,1,123,1,123,1,123,1,123,1,123,3,123,2077,8,123,1,123,1,123, + 1,123,3,123,2082,8,123,1,123,1,123,1,123,3,123,2087,8,123,1,124, + 1,124,1,124,5,124,2092,8,124,10,124,12,124,2095,9,124,1,125,1,125, + 1,125,5,125,2100,8,125,10,125,12,125,2103,9,125,1,126,1,126,1,126, + 5,126,2108,8,126,10,126,12,126,2111,9,126,1,127,1,127,1,127,5,127, + 2116,8,127,10,127,12,127,2119,9,127,1,128,1,128,3,128,2123,8,128, + 1,129,1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,3,131, + 2135,8,131,5,131,2137,8,131,10,131,12,131,2140,9,131,1,132,1,132, + 1,132,5,132,2145,8,132,10,132,12,132,2148,9,132,1,133,1,133,1,133, + 1,133,1,134,1,134,3,134,2156,8,134,1,134,3,134,2159,8,134,1,135, + 1,135,3,135,2163,8,135,1,136,1,136,1,137,1,137,1,137,3,137,2170, + 8,137,1,138,1,138,1,139,1,139,3,139,2176,8,139,1,139,1,139,3,139, + 2180,8,139,1,140,1,140,1,140,1,140,3,140,2186,8,140,1,141,1,141, + 3,141,2190,8,141,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, + 1,144,1,144,3,144,2202,8,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,3,144,2211,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,3,145,2222,8,145,1,146,1,146,3,146,2226,8,146,1,147, + 1,147,1,147,5,147,2231,8,147,10,147,12,147,2234,9,147,1,148,1,148, + 1,148,1,148,1,149,1,149,1,149,5,149,2243,8,149,10,149,12,149,2246, + 9,149,1,150,1,150,1,151,1,151,1,151,1,152,1,152,3,152,2255,8,152, + 1,152,3,152,2258,8,152,1,153,1,153,1,153,5,153,2263,8,153,10,153, + 12,153,2266,9,153,1,154,1,154,1,154,3,154,2271,8,154,1,155,1,155, + 3,155,2275,8,155,1,155,3,155,2278,8,155,1,155,3,155,2281,8,155,1, + 156,1,156,1,156,1,156,3,156,2287,8,156,1,157,1,157,3,157,2291,8, + 157,1,158,1,158,3,158,2295,8,158,1,159,1,159,1,159,3,159,2300,8, + 159,1,159,1,159,3,159,2304,8,159,1,160,1,160,3,160,2308,8,160,1, + 161,1,161,3,161,2312,8,161,1,161,1,161,1,161,1,161,1,161,1,161,3, + 161,2320,8,161,1,162,1,162,3,162,2324,8,162,1,162,1,162,3,162,2328, + 8,162,1,163,1,163,3,163,2332,8,163,1,164,1,164,3,164,2336,8,164, + 1,164,1,164,1,164,1,164,1,164,1,164,3,164,2344,8,164,1,165,1,165, + 3,165,2348,8,165,1,165,1,165,3,165,2352,8,165,1,166,1,166,1,166, + 1,166,1,166,1,166,3,166,2360,8,166,1,167,1,167,1,167,3,167,2365, + 8,167,1,168,1,168,1,168,3,168,2370,8,168,1,169,1,169,3,169,2374, + 8,169,1,170,1,170,3,170,2378,8,170,1,171,1,171,1,171,1,171,1,171, + 3,171,2385,8,171,1,172,1,172,1,173,1,173,1,173,5,173,2392,8,173, + 10,173,12,173,2395,9,173,1,174,1,174,1,174,1,174,1,174,3,174,2402, + 8,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 3,175,2414,8,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2432,8,175, + 1,175,3,175,2435,8,175,1,175,1,175,1,175,1,175,3,175,2441,8,175, + 1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179, + 1,180,1,180,3,180,2467,8,180,1,181,3,181,2470,8,181,1,181,1,181, + 1,182,1,182,3,182,2476,8,182,1,183,1,183,1,183,1,183,5,183,2482, + 8,183,10,183,12,183,2485,9,183,1,184,1,184,1,184,1,184,1,184,3,184, + 2492,8,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1,185, + 5,185,2503,8,185,10,185,12,185,2506,9,185,1,186,1,186,1,186,1,186, + 3,186,2512,8,186,1,186,3,186,2515,8,186,1,186,3,186,2518,8,186,1, + 186,3,186,2521,8,186,1,186,3,186,2524,8,186,1,186,3,186,2527,8,186, + 1,186,3,186,2530,8,186,1,186,3,186,2533,8,186,1,186,3,186,2536,8, + 186,1,186,3,186,2539,8,186,1,186,3,186,2542,8,186,1,186,1,186,1, + 186,3,186,2547,8,186,1,186,3,186,2550,8,186,1,186,3,186,2553,8,186, + 1,186,3,186,2556,8,186,1,186,3,186,2559,8,186,1,186,3,186,2562,8, + 186,1,186,3,186,2565,8,186,1,186,3,186,2568,8,186,1,186,3,186,2571, + 8,186,1,186,3,186,2574,8,186,1,186,3,186,2577,8,186,3,186,2579,8, + 186,1,187,1,187,1,187,1,187,3,187,2585,8,187,1,188,1,188,3,188,2589, + 8,188,1,188,3,188,2592,8,188,1,188,3,188,2595,8,188,1,188,3,188, + 2598,8,188,1,188,3,188,2601,8,188,1,188,3,188,2604,8,188,1,188,1, + 188,1,188,1,188,1,188,3,188,2611,8,188,1,189,1,189,3,189,2615,8, + 189,1,189,3,189,2618,8,189,1,189,3,189,2621,8,189,1,189,3,189,2624, + 8,189,1,189,3,189,2627,8,189,1,189,3,189,2630,8,189,1,190,1,190, + 1,190,4,190,2635,8,190,11,190,12,190,2636,1,191,3,191,2640,8,191, + 1,191,1,191,1,192,1,192,1,192,1,192,3,192,2648,8,192,1,192,1,192, + 3,192,2652,8,192,1,192,1,192,1,192,1,192,1,192,3,192,2659,8,192, + 3,192,2661,8,192,1,193,3,193,2664,8,193,1,193,1,193,1,193,3,193, + 2669,8,193,1,193,3,193,2672,8,193,1,193,1,193,3,193,2676,8,193,1, + 194,1,194,1,194,3,194,2681,8,194,1,194,1,194,1,194,1,194,3,194,2687, + 8,194,1,195,1,195,1,195,1,195,1,196,1,196,3,196,2695,8,196,1,197, + 1,197,1,197,1,197,5,197,2701,8,197,10,197,12,197,2704,9,197,1,198, + 1,198,1,198,1,198,1,198,5,198,2711,8,198,10,198,12,198,2714,9,198, + 3,198,2716,8,198,1,198,1,198,3,198,2720,8,198,1,198,1,198,3,198, + 2724,8,198,1,198,1,198,1,198,3,198,2729,8,198,1,199,1,199,1,199, + 1,199,1,199,3,199,2736,8,199,1,200,1,200,5,200,2740,8,200,10,200, + 12,200,2743,9,200,1,200,3,200,2746,8,200,1,201,1,201,1,201,1,201, + 1,201,3,201,2753,8,201,1,201,1,201,1,201,3,201,2758,8,201,1,201, + 1,201,1,201,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,202,3,202, + 2771,8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,2779,8,203, + 1,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2798,8,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2808,8,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2821, + 8,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2831, + 8,208,1,208,1,208,3,208,2835,8,208,4,208,2837,8,208,11,208,12,208, + 2838,1,208,1,208,5,208,2843,8,208,10,208,12,208,2846,9,208,1,208, + 1,208,5,208,2850,8,208,10,208,12,208,2853,9,208,1,208,1,208,5,208, + 2857,8,208,10,208,12,208,2860,9,208,1,208,1,208,1,208,1,208,1,208, + 1,208,3,208,2868,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2875, + 8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2895,8,208, + 1,208,3,208,2898,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,3,208,2912,8,208,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209, + 2927,8,209,1,209,1,209,3,209,2931,8,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,5,209,2949,8,209,10,209,12,209,2952,9,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,3,209,2963,8,209,1,209,1,209, + 1,209,1,209,3,209,2969,8,209,1,209,3,209,2972,8,209,1,209,3,209, + 2975,8,209,1,209,1,209,1,209,1,209,3,209,2981,8,209,1,209,1,209, + 1,209,1,209,3,209,2987,8,209,1,209,1,209,1,209,1,209,1,209,3,209, + 2994,8,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,3002,8,209, + 1,209,1,209,1,209,1,209,3,209,3008,8,209,1,209,1,209,3,209,3012, + 8,209,1,209,1,209,1,209,3,209,3017,8,209,1,209,3,209,3020,8,209, + 1,209,1,209,3,209,3024,8,209,1,209,1,209,1,209,1,209,1,209,3,209, + 3031,8,209,1,209,1,209,1,209,3,209,3036,8,209,1,209,1,209,1,209, + 3,209,3041,8,209,1,209,3,209,3044,8,209,3,209,3046,8,209,1,210,1, + 210,1,210,1,210,1,210,1,210,3,210,3054,8,210,1,210,1,210,1,210,1, + 210,1,210,1,210,3,210,3062,8,210,1,210,1,210,3,210,3066,8,210,4, + 210,3068,8,210,11,210,12,210,3069,1,210,1,210,3,210,3074,8,210,1, + 211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,3,211,3091,8,211,1,212,1,212,1,212,1,212, + 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, + 3,212,3108,8,212,1,213,1,213,1,213,1,214,1,214,3,214,3115,8,214, + 1,214,1,214,1,214,1,214,1,214,5,214,3122,8,214,10,214,12,214,3125, + 9,214,1,214,1,214,3,214,3129,8,214,1,214,3,214,3132,8,214,1,214, + 3,214,3135,8,214,1,215,1,215,3,215,3139,8,215,1,215,1,215,1,215, + 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216, + 3154,8,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,1,217,3,217,3168,8,217,1,217,3,217,3171,8,217,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3182,8,218, + 1,219,1,219,3,219,3186,8,219,1,219,3,219,3189,8,219,1,219,3,219, + 3192,8,219,1,219,1,219,3,219,3196,8,219,1,219,1,219,1,219,3,219, + 3201,8,219,1,219,3,219,3204,8,219,1,219,3,219,3207,8,219,1,219,3, + 219,3210,8,219,1,219,3,219,3213,8,219,1,219,3,219,3216,8,219,1,219, + 1,219,1,219,1,219,3,219,3222,8,219,1,219,3,219,3225,8,219,1,219, + 3,219,3228,8,219,1,219,3,219,3231,8,219,1,219,3,219,3234,8,219,1, + 219,3,219,3237,8,219,1,219,3,219,3240,8,219,1,219,3,219,3243,8,219, + 1,219,3,219,3246,8,219,1,219,3,219,3249,8,219,1,219,1,219,3,219, + 3253,8,219,3,219,3255,8,219,1,219,1,219,1,219,1,219,3,219,3261,8, + 219,1,219,1,219,1,219,3,219,3266,8,219,1,219,3,219,3269,8,219,1, + 219,3,219,3272,8,219,1,219,3,219,3275,8,219,1,219,3,219,3278,8,219, + 1,219,1,219,1,219,1,219,3,219,3284,8,219,1,219,3,219,3287,8,219, + 1,219,3,219,3290,8,219,1,219,3,219,3293,8,219,1,219,3,219,3296,8, + 219,1,219,3,219,3299,8,219,1,219,3,219,3302,8,219,1,219,3,219,3305, + 8,219,1,219,3,219,3308,8,219,1,219,3,219,3311,8,219,1,219,1,219, + 3,219,3315,8,219,3,219,3317,8,219,3,219,3319,8,219,1,220,1,220,1, + 220,3,220,3324,8,220,1,220,1,220,1,220,3,220,3329,8,220,1,220,1, + 220,3,220,3333,8,220,1,220,1,220,3,220,3337,8,220,1,220,1,220,1, + 220,3,220,3342,8,220,1,221,1,221,1,221,3,221,3347,8,221,1,221,1, + 221,1,222,1,222,1,222,5,222,3354,8,222,10,222,12,222,3357,9,222, + 1,222,1,222,1,223,1,223,1,223,5,223,3364,8,223,10,223,12,223,3367, + 9,223,1,224,1,224,1,224,5,224,3372,8,224,10,224,12,224,3375,9,224, + 1,225,1,225,1,225,1,226,1,226,1,226,1,226,4,226,3384,8,226,11,226, + 12,226,3385,1,226,3,226,3389,8,226,1,227,1,227,5,227,3393,8,227, + 10,227,12,227,3396,9,227,1,227,1,227,5,227,3400,8,227,10,227,12, + 227,3403,9,227,1,227,1,227,5,227,3407,8,227,10,227,12,227,3410,9, + 227,1,227,1,227,5,227,3414,8,227,10,227,12,227,3417,9,227,1,227, + 1,227,1,227,1,227,3,227,3423,8,227,1,228,1,228,1,228,1,228,1,228, + 1,228,1,228,3,228,3432,8,228,5,228,3434,8,228,10,228,12,228,3437, + 9,228,1,229,1,229,1,229,1,229,3,229,3443,8,229,1,229,5,229,3446, + 8,229,10,229,12,229,3449,9,229,1,230,3,230,3452,8,230,1,230,1,230, + 3,230,3456,8,230,1,230,3,230,3459,8,230,1,230,3,230,3462,8,230,1, + 230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,3,231,3473,8, + 231,1,231,1,231,3,231,3477,8,231,3,231,3479,8,231,1,231,3,231,3482, + 8,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, + 3493,8,232,10,232,12,232,3496,9,232,3,232,3498,8,232,1,232,3,232, + 3501,8,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, + 3511,8,232,10,232,12,232,3514,9,232,3,232,3516,8,232,1,232,1,232, + 1,232,1,232,1,232,3,232,3523,8,232,1,232,1,232,1,232,1,232,1,232, + 5,232,3530,8,232,10,232,12,232,3533,9,232,1,232,1,232,3,232,3537, + 8,232,3,232,3539,8,232,3,232,3541,8,232,1,233,1,233,1,234,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,5,234,3556, + 8,234,10,234,12,234,3559,9,234,3,234,3561,8,234,1,234,1,234,1,234, + 1,234,1,234,1,234,3,234,3569,8,234,1,234,3,234,3572,8,234,1,235, + 1,235,3,235,3576,8,235,1,235,3,235,3579,8,235,1,235,3,235,3582,8, + 235,1,235,3,235,3585,8,235,1,235,3,235,3588,8,235,1,236,1,236,1, + 236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,3,236,3600,8,236,1, + 237,1,237,1,238,1,238,1,239,1,239,3,239,3608,8,239,1,240,1,240,1, + 240,1,240,1,240,3,240,3615,8,240,1,240,3,240,3618,8,240,1,241,1, + 241,1,241,1,241,1,241,3,241,3625,8,241,1,241,3,241,3628,8,241,1, + 242,1,242,1,242,3,242,3633,8,242,1,242,1,242,1,243,1,243,1,243,3, + 243,3640,8,243,1,243,1,243,1,244,1,244,1,244,1,244,3,244,3648,8, + 244,1,244,1,244,1,245,1,245,3,245,3654,8,245,1,245,1,245,1,245,3, + 245,3659,8,245,1,245,1,245,3,245,3663,8,245,1,246,1,246,1,246,3, + 246,3668,8,246,1,247,1,247,1,247,1,247,1,247,3,247,3675,8,247,1, + 247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,5,247, + 3687,8,247,10,247,12,247,3690,9,247,3,247,3692,8,247,1,247,1,247, + 3,247,3696,8,247,1,248,1,248,1,248,1,249,1,249,1,249,1,249,5,249, + 3705,8,249,10,249,12,249,3708,9,249,1,249,1,249,1,249,1,249,1,249, + 5,249,3715,8,249,10,249,12,249,3718,9,249,3,249,3720,8,249,1,250, + 1,250,1,250,1,250,1,250,3,250,3727,8,250,1,250,1,250,1,250,1,250, + 1,250,5,250,3734,8,250,10,250,12,250,3737,9,250,3,250,3739,8,250, + 1,250,1,250,1,251,1,251,3,251,3745,8,251,1,251,3,251,3748,8,251, + 1,251,1,251,1,251,5,251,3753,8,251,10,251,12,251,3756,9,251,1,251, + 1,251,3,251,3760,8,251,1,251,3,251,3763,8,251,1,252,1,252,1,252, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,3776,8,252, + 1,252,1,252,1,252,1,252,3,252,3782,8,252,3,252,3784,8,252,1,252, + 1,252,1,252,1,253,1,253,1,253,3,253,3792,8,253,1,253,3,253,3795, + 8,253,1,253,1,253,1,253,1,253,1,253,1,253,5,253,3803,8,253,10,253, + 12,253,3806,9,253,1,253,1,253,3,253,3810,8,253,3,253,3812,8,253, + 1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254, + 3824,8,254,1,254,1,254,1,254,1,254,3,254,3830,8,254,3,254,3832,8, + 254,1,254,1,254,1,254,1,255,1,255,3,255,3839,8,255,1,256,1,256,1, + 256,5,256,3844,8,256,10,256,12,256,3847,9,256,1,257,1,257,1,257, + 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3858,8,257,10,257,12,257, + 3861,9,257,1,258,1,258,1,258,3,258,3866,8,258,1,258,3,258,3869,8, + 258,1,258,3,258,3872,8,258,1,258,3,258,3875,8,258,1,259,1,259,1, + 259,1,259,1,259,1,259,1,259,3,259,3884,8,259,1,259,1,259,1,259,1, + 259,1,259,3,259,3891,8,259,1,260,1,260,1,260,1,260,3,260,3897,8, + 260,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,3906,8,261,1, + 262,1,262,3,262,3910,8,262,1,262,1,262,1,262,1,262,5,262,3916,8, + 262,10,262,12,262,3919,9,262,1,262,1,262,1,263,1,263,1,263,1,263, + 1,263,3,263,3928,8,263,1,263,1,263,1,263,1,263,1,263,1,263,5,263, + 3936,8,263,10,263,12,263,3939,9,263,1,263,1,263,3,263,3943,8,263, + 1,264,1,264,3,264,3947,8,264,1,264,1,264,5,264,3951,8,264,10,264, + 12,264,3954,9,264,1,264,1,264,3,264,3958,8,264,1,265,1,265,1,265, + 1,266,1,266,1,266,1,267,1,267,3,267,3968,8,267,1,268,1,268,3,268, + 3972,8,268,1,268,3,268,3975,8,268,1,268,1,268,1,268,3,268,3980,8, + 268,1,268,3,268,3983,8,268,5,268,3985,8,268,10,268,12,268,3988,9, + 268,1,269,1,269,3,269,3992,8,269,1,270,1,270,1,270,1,270,1,271,1, + 271,1,271,4,271,4001,8,271,11,271,12,271,4002,3,271,4005,8,271,1, + 272,1,272,1,272,1,272,1,272,5,272,4012,8,272,10,272,12,272,4015, + 9,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274,1,275,1,275, + 1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276,5,276,4035,8,276, + 10,276,12,276,4038,9,276,1,276,1,276,1,276,1,276,1,276,5,276,4045, + 8,276,10,276,12,276,4048,9,276,3,276,4050,8,276,1,277,1,277,1,277, + 1,277,1,277,3,277,4057,8,277,1,277,3,277,4060,8,277,1,277,1,277, + 1,277,1,277,1,277,1,277,1,277,1,277,3,277,4070,8,277,1,277,1,277, + 1,277,5,277,4075,8,277,10,277,12,277,4078,9,277,3,277,4080,8,277, + 3,277,4082,8,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, + 1,277,3,277,4093,8,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, + 1,277,3,277,4103,8,277,3,277,4105,8,277,1,278,1,278,1,278,1,279, + 1,279,1,280,1,280,3,280,4114,8,280,1,281,1,281,1,281,3,281,4119, + 8,281,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282,4128,8,282, + 1,282,1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,4,283,4139, + 8,283,11,283,12,283,4140,1,283,1,283,3,283,4145,8,283,1,283,1,283, + 1,284,1,284,1,284,1,284,1,284,1,284,4,284,4155,8,284,11,284,12,284, + 4156,1,284,1,284,3,284,4161,8,284,1,284,1,284,1,285,1,285,1,285, + 1,285,1,285,3,285,4170,8,285,1,285,1,285,1,286,1,286,1,286,1,286, + 1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,287, + 3,287,4189,8,287,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, + 1,288,1,288,1,288,1,288,1,288,1,288,5,288,4205,8,288,10,288,12,288, + 4208,9,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, + 3,288,4219,8,288,1,289,1,289,1,290,1,290,1,290,1,290,1,290,1,290, + 1,290,1,290,1,290,1,290,1,290,3,290,4234,8,290,1,290,1,290,3,290, + 4238,8,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, + 1,291,1,291,1,291,1,291,1,291,3,291,4254,8,291,1,292,1,292,1,292, + 5,292,4259,8,292,10,292,12,292,4262,9,292,1,293,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4275,8,293,1,294, + 5,294,4278,8,294,10,294,12,294,4281,9,294,1,294,1,294,1,294,1,294, + 1,294,1,294,1,294,5,294,4290,8,294,10,294,12,294,4293,9,294,1,295, + 1,295,1,295,5,295,4298,8,295,10,295,12,295,4301,9,295,1,296,1,296, + 1,296,5,296,4306,8,296,10,296,12,296,4309,9,296,1,297,1,297,1,297, + 5,297,4314,8,297,10,297,12,297,4317,9,297,1,298,1,298,1,298,5,298, + 4322,8,298,10,298,12,298,4325,9,298,1,299,1,299,1,299,5,299,4330, + 8,299,10,299,12,299,4333,9,299,1,300,1,300,1,300,5,300,4338,8,300, + 10,300,12,300,4341,9,300,1,301,1,301,1,302,1,302,1,302,1,302,1,303, + 1,303,3,303,4351,8,303,1,303,1,303,3,303,4355,8,303,1,304,1,304, + 1,304,1,304,1,304,1,304,3,304,4363,8,304,1,305,1,305,1,305,1,305, + 1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,3,305, + 4379,8,305,1,306,1,306,3,306,4383,8,306,1,307,1,307,1,307,3,307, + 4388,8,307,1,308,1,308,1,308,1,308,1,309,1,309,1,309,1,309,1,309, + 1,309,1,309,3,309,4401,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 1,310,5,310,4410,8,310,10,310,12,310,4413,9,310,1,311,1,311,1,311, + 1,311,1,311,1,311,3,311,4421,8,311,1,312,5,312,4424,8,312,10,312, + 12,312,4427,9,312,1,312,1,312,1,312,3,312,4432,8,312,1,313,1,313, + 1,313,5,313,4437,8,313,10,313,12,313,4440,9,313,1,314,1,314,3,314, + 4444,8,314,1,315,1,315,1,315,1,315,1,315,5,315,4451,8,315,10,315, + 12,315,4454,9,315,1,315,1,315,1,316,1,316,1,316,3,316,4461,8,316, + 1,317,1,317,1,317,1,317,5,317,4467,8,317,10,317,12,317,4470,9,317, + 1,317,1,317,1,318,1,318,1,318,3,318,4477,8,318,1,318,1,318,1,319, + 1,319,1,320,1,320,1,321,1,321,3,321,4487,8,321,1,322,1,322,1,322, + 3,322,4492,8,322,1,323,1,323,1,324,1,324,1,325,1,325,1,326,1,326, + 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,326,1,326,1,326,3,326,4551,8,326,1,327,1,327,1,327, + 1,327,3,327,4557,8,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 3,327,4566,8,327,3,327,4568,8,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,5,327,4582,8,327,10,327, + 12,327,4585,9,327,1,327,1,327,1,327,1,327,1,327,3,327,4592,8,327, + 1,327,1,327,3,327,4596,8,327,3,327,4598,8,327,1,327,1,327,1,327, + 1,327,3,327,4604,8,327,1,327,1,327,1,327,3,327,4609,8,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,3,327,4626,8,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4652,8,327, + 1,327,1,327,1,327,3,327,4657,8,327,3,327,4659,8,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,3,327,4687,8,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4704, + 8,327,1,327,1,327,1,327,3,327,4709,8,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,3,327,4718,8,327,1,328,1,328,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,3,329,4729,8,329,1,330,1,330,1,330,5,330, + 4734,8,330,10,330,12,330,4737,9,330,1,331,1,331,1,331,3,331,4742, + 8,331,1,332,1,332,1,332,3,332,4747,8,332,1,333,1,333,1,334,1,334, + 1,335,1,335,1,336,1,336,1,337,1,337,1,338,1,338,1,339,1,339,1,340, + 1,340,1,341,1,341,1,342,1,342,1,343,1,343,1,343,5,343,4772,8,343, + 10,343,12,343,4775,9,343,1,344,1,344,1,344,1,344,1,345,1,345,1,345, + 1,345,3,345,4785,8,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,3,346,4799,8,346,1,347,1,347,1,347, + 5,347,4804,8,347,10,347,12,347,4807,9,347,1,347,1,817,0,348,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,0,61,2,0,57,57,172, + 172,4,0,91,91,121,121,226,226,325,325,1,0,395,396,2,0,50,50,346, + 346,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154,2,0,67,67,295, + 295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307,307,11,0,7,7,9, + 9,58,58,86,86,101,101,155,155,161,161,190,190,299,299,309,309,365, + 365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170,170,1,0,141,142, + 2,0,30,30,351,351,2,0,217,217,373,373,2,0,214,214,272,272,2,0,18, + 18,89,89,2,0,130,130,177,177,2,0,39,39,376,376,4,0,112,112,164,164, + 205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350,2,0,225,225,391, + 391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426,426,431,431,2, + 0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241,241,292,292, + 2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354,431,431,2,0, + 133,133,247,247,2,0,152,152,281,281,3,0,413,414,418,418,420,420, + 2,0,412,412,415,417,1,0,413,414,4,0,184,184,270,270,286,286,408, + 411,2,0,7,7,13,13,3,0,7,7,13,13,313,313,3,0,184,184,270,270,286, + 286,4,0,125,125,219,219,350,350,360,360,2,0,405,405,407,411,24,0, + 11,11,16,16,25,28,35,35,100,100,131,132,151,151,154,154,162,163, + 184,184,198,198,216,216,228,228,264,264,270,270,286,286,311,311, + 323,324,340,340,357,357,383,383,405,417,419,421,423,423,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,183,185,187, + 189,193,195,197,199,202,204,204,206,209,211,212,214,215,217,218, + 220,220,222,223,226,227,232,233,235,236,238,240,243,246,252,252, + 254,255,257,259,261,262,265,267,271,282,284,284,287,288,293,298, + 300,303,305,310,312,312,314,317,319,325,327,328,330,330,332,334, + 339,340,342,342,344,346,349,349,352,353,355,355,357,357,360,364, + 366,368,371,373,375,375,377,382,385,385,388,394,13,0,16,16,26,28, + 63,64,71,71,100,100,131,131,145,145,151,151,162,163,198,198,264, + 264,311,311,337,337,2,0,4,4,101,101,2,0,9,9,58,58,3,0,14,14,144, + 144,369,369,1,0,106,107,1,0,94,95,1,0,392,393,1,0,208,209,1,0,381, + 382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298,1,0,80,82,5398, + 0,699,1,0,0,0,2,706,1,0,0,0,4,711,1,0,0,0,6,745,1,0,0,0,8,747,1, + 0,0,0,10,820,1,0,0,0,12,822,1,0,0,0,14,838,1,0,0,0,16,847,1,0,0, + 0,18,855,1,0,0,0,20,868,1,0,0,0,22,879,1,0,0,0,24,884,1,0,0,0,26, + 895,1,0,0,0,28,958,1,0,0,0,30,960,1,0,0,0,32,963,1,0,0,0,34,967, + 1,0,0,0,36,969,1,0,0,0,38,972,1,0,0,0,40,975,1,0,0,0,42,1019,1,0, + 0,0,44,1021,1,0,0,0,46,1024,1,0,0,0,48,1027,1,0,0,0,50,1036,1,0, + 0,0,52,1039,1,0,0,0,54,1054,1,0,0,0,56,1066,1,0,0,0,58,1071,1,0, + 0,0,60,1091,1,0,0,0,62,1095,1,0,0,0,64,1102,1,0,0,0,66,1127,1,0, + 0,0,68,1144,1,0,0,0,70,1146,1,0,0,0,72,1331,1,0,0,0,74,1341,1,0, + 0,0,76,1343,1,0,0,0,78,1348,1,0,0,0,80,1353,1,0,0,0,82,1355,1,0, + 0,0,84,1359,1,0,0,0,86,1363,1,0,0,0,88,1367,1,0,0,0,90,1371,1,0, + 0,0,92,1381,1,0,0,0,94,1392,1,0,0,0,96,1409,1,0,0,0,98,1427,1,0, + 0,0,100,1432,1,0,0,0,102,1435,1,0,0,0,104,1439,1,0,0,0,106,1446, + 1,0,0,0,108,1455,1,0,0,0,110,1461,1,0,0,0,112,1463,1,0,0,0,114,1477, + 1,0,0,0,116,1499,1,0,0,0,118,1501,1,0,0,0,120,1509,1,0,0,0,122,1516, + 1,0,0,0,124,1518,1,0,0,0,126,1532,1,0,0,0,128,1539,1,0,0,0,130,1541, + 1,0,0,0,132,1545,1,0,0,0,134,1549,1,0,0,0,136,1553,1,0,0,0,138,1557, + 1,0,0,0,140,1570,1,0,0,0,142,1578,1,0,0,0,144,1581,1,0,0,0,146,1583, + 1,0,0,0,148,1595,1,0,0,0,150,1605,1,0,0,0,152,1608,1,0,0,0,154,1619, + 1,0,0,0,156,1627,1,0,0,0,158,1670,1,0,0,0,160,1679,1,0,0,0,162,1707, + 1,0,0,0,164,1720,1,0,0,0,166,1722,1,0,0,0,168,1728,1,0,0,0,170,1731, + 1,0,0,0,172,1737,1,0,0,0,174,1743,1,0,0,0,176,1750,1,0,0,0,178,1784, + 1,0,0,0,180,1792,1,0,0,0,182,1805,1,0,0,0,184,1810,1,0,0,0,186,1821, + 1,0,0,0,188,1838,1,0,0,0,190,1840,1,0,0,0,192,1845,1,0,0,0,194,1852, + 1,0,0,0,196,1854,1,0,0,0,198,1857,1,0,0,0,200,1860,1,0,0,0,202,1874, + 1,0,0,0,204,1882,1,0,0,0,206,1908,1,0,0,0,208,1910,1,0,0,0,210,1927, + 1,0,0,0,212,1941,1,0,0,0,214,1943,1,0,0,0,216,1946,1,0,0,0,218,1949, + 1,0,0,0,220,1958,1,0,0,0,222,1978,1,0,0,0,224,1980,1,0,0,0,226,1983, + 1,0,0,0,228,1996,1,0,0,0,230,1998,1,0,0,0,232,2002,1,0,0,0,234,2010, + 1,0,0,0,236,2014,1,0,0,0,238,2023,1,0,0,0,240,2029,1,0,0,0,242,2035, + 1,0,0,0,244,2040,1,0,0,0,246,2086,1,0,0,0,248,2088,1,0,0,0,250,2096, + 1,0,0,0,252,2104,1,0,0,0,254,2112,1,0,0,0,256,2122,1,0,0,0,258,2124, + 1,0,0,0,260,2126,1,0,0,0,262,2128,1,0,0,0,264,2141,1,0,0,0,266,2149, + 1,0,0,0,268,2158,1,0,0,0,270,2162,1,0,0,0,272,2164,1,0,0,0,274,2169, + 1,0,0,0,276,2171,1,0,0,0,278,2175,1,0,0,0,280,2181,1,0,0,0,282,2189, + 1,0,0,0,284,2191,1,0,0,0,286,2194,1,0,0,0,288,2201,1,0,0,0,290,2212, + 1,0,0,0,292,2225,1,0,0,0,294,2227,1,0,0,0,296,2235,1,0,0,0,298,2239, + 1,0,0,0,300,2247,1,0,0,0,302,2249,1,0,0,0,304,2252,1,0,0,0,306,2259, + 1,0,0,0,308,2267,1,0,0,0,310,2274,1,0,0,0,312,2282,1,0,0,0,314,2290, + 1,0,0,0,316,2294,1,0,0,0,318,2296,1,0,0,0,320,2307,1,0,0,0,322,2311, + 1,0,0,0,324,2323,1,0,0,0,326,2331,1,0,0,0,328,2335,1,0,0,0,330,2347, + 1,0,0,0,332,2359,1,0,0,0,334,2364,1,0,0,0,336,2369,1,0,0,0,338,2371, + 1,0,0,0,340,2375,1,0,0,0,342,2379,1,0,0,0,344,2386,1,0,0,0,346,2388, + 1,0,0,0,348,2401,1,0,0,0,350,2440,1,0,0,0,352,2442,1,0,0,0,354,2447, + 1,0,0,0,356,2452,1,0,0,0,358,2459,1,0,0,0,360,2464,1,0,0,0,362,2469, + 1,0,0,0,364,2475,1,0,0,0,366,2477,1,0,0,0,368,2486,1,0,0,0,370,2498, + 1,0,0,0,372,2578,1,0,0,0,374,2584,1,0,0,0,376,2610,1,0,0,0,378,2612, + 1,0,0,0,380,2634,1,0,0,0,382,2639,1,0,0,0,384,2643,1,0,0,0,386,2675, + 1,0,0,0,388,2677,1,0,0,0,390,2688,1,0,0,0,392,2694,1,0,0,0,394,2696, + 1,0,0,0,396,2728,1,0,0,0,398,2735,1,0,0,0,400,2741,1,0,0,0,402,2747, + 1,0,0,0,404,2762,1,0,0,0,406,2772,1,0,0,0,408,2780,1,0,0,0,410,2783, + 1,0,0,0,412,2786,1,0,0,0,414,2789,1,0,0,0,416,2911,1,0,0,0,418,3045, + 1,0,0,0,420,3073,1,0,0,0,422,3090,1,0,0,0,424,3107,1,0,0,0,426,3109, + 1,0,0,0,428,3112,1,0,0,0,430,3138,1,0,0,0,432,3143,1,0,0,0,434,3170, + 1,0,0,0,436,3181,1,0,0,0,438,3318,1,0,0,0,440,3320,1,0,0,0,442,3343, + 1,0,0,0,444,3355,1,0,0,0,446,3360,1,0,0,0,448,3368,1,0,0,0,450,3376, + 1,0,0,0,452,3388,1,0,0,0,454,3422,1,0,0,0,456,3424,1,0,0,0,458,3442, + 1,0,0,0,460,3451,1,0,0,0,462,3481,1,0,0,0,464,3540,1,0,0,0,466,3542, + 1,0,0,0,468,3571,1,0,0,0,470,3573,1,0,0,0,472,3589,1,0,0,0,474,3601, + 1,0,0,0,476,3603,1,0,0,0,478,3607,1,0,0,0,480,3617,1,0,0,0,482,3627, + 1,0,0,0,484,3632,1,0,0,0,486,3639,1,0,0,0,488,3643,1,0,0,0,490,3662, + 1,0,0,0,492,3667,1,0,0,0,494,3669,1,0,0,0,496,3697,1,0,0,0,498,3700, + 1,0,0,0,500,3721,1,0,0,0,502,3762,1,0,0,0,504,3764,1,0,0,0,506,3811, + 1,0,0,0,508,3813,1,0,0,0,510,3838,1,0,0,0,512,3840,1,0,0,0,514,3848, + 1,0,0,0,516,3874,1,0,0,0,518,3876,1,0,0,0,520,3896,1,0,0,0,522,3898, + 1,0,0,0,524,3909,1,0,0,0,526,3922,1,0,0,0,528,3957,1,0,0,0,530,3959, + 1,0,0,0,532,3962,1,0,0,0,534,3967,1,0,0,0,536,3969,1,0,0,0,538,3991, + 1,0,0,0,540,3993,1,0,0,0,542,3997,1,0,0,0,544,4006,1,0,0,0,546,4016, + 1,0,0,0,548,4020,1,0,0,0,550,4024,1,0,0,0,552,4028,1,0,0,0,554,4104, + 1,0,0,0,556,4106,1,0,0,0,558,4109,1,0,0,0,560,4113,1,0,0,0,562,4118, + 1,0,0,0,564,4120,1,0,0,0,566,4131,1,0,0,0,568,4148,1,0,0,0,570,4164, + 1,0,0,0,572,4173,1,0,0,0,574,4188,1,0,0,0,576,4218,1,0,0,0,578,4220, + 1,0,0,0,580,4237,1,0,0,0,582,4253,1,0,0,0,584,4255,1,0,0,0,586,4274, + 1,0,0,0,588,4279,1,0,0,0,590,4294,1,0,0,0,592,4302,1,0,0,0,594,4310, + 1,0,0,0,596,4318,1,0,0,0,598,4326,1,0,0,0,600,4334,1,0,0,0,602,4342, + 1,0,0,0,604,4344,1,0,0,0,606,4354,1,0,0,0,608,4362,1,0,0,0,610,4378, + 1,0,0,0,612,4382,1,0,0,0,614,4387,1,0,0,0,616,4389,1,0,0,0,618,4400, + 1,0,0,0,620,4402,1,0,0,0,622,4420,1,0,0,0,624,4425,1,0,0,0,626,4433, + 1,0,0,0,628,4441,1,0,0,0,630,4445,1,0,0,0,632,4457,1,0,0,0,634,4462, + 1,0,0,0,636,4473,1,0,0,0,638,4480,1,0,0,0,640,4482,1,0,0,0,642,4486, + 1,0,0,0,644,4488,1,0,0,0,646,4493,1,0,0,0,648,4495,1,0,0,0,650,4497, + 1,0,0,0,652,4550,1,0,0,0,654,4717,1,0,0,0,656,4719,1,0,0,0,658,4728, + 1,0,0,0,660,4730,1,0,0,0,662,4741,1,0,0,0,664,4743,1,0,0,0,666,4748, + 1,0,0,0,668,4750,1,0,0,0,670,4752,1,0,0,0,672,4754,1,0,0,0,674,4756, + 1,0,0,0,676,4758,1,0,0,0,678,4760,1,0,0,0,680,4762,1,0,0,0,682,4764, + 1,0,0,0,684,4766,1,0,0,0,686,4768,1,0,0,0,688,4776,1,0,0,0,690,4784, + 1,0,0,0,692,4798,1,0,0,0,694,4800,1,0,0,0,696,698,3,2,1,0,697,696, + 1,0,0,0,698,701,1,0,0,0,699,697,1,0,0,0,699,700,1,0,0,0,700,702, + 1,0,0,0,701,699,1,0,0,0,702,703,5,0,0,1,703,1,1,0,0,0,704,707,3, + 4,2,0,705,707,3,10,5,0,706,704,1,0,0,0,706,705,1,0,0,0,707,709,1, + 0,0,0,708,710,5,398,0,0,709,708,1,0,0,0,709,710,1,0,0,0,710,3,1, + 0,0,0,711,721,5,119,0,0,712,714,3,6,3,0,713,712,1,0,0,0,714,717, + 1,0,0,0,715,713,1,0,0,0,715,716,1,0,0,0,716,718,1,0,0,0,717,715, + 1,0,0,0,718,722,3,10,5,0,719,720,5,284,0,0,720,722,3,362,181,0,721, + 715,1,0,0,0,721,719,1,0,0,0,722,5,1,0,0,0,723,746,5,122,0,0,724, + 746,5,138,0,0,725,746,5,88,0,0,726,728,5,37,0,0,727,729,7,0,0,0, + 728,727,1,0,0,0,728,729,1,0,0,0,729,746,1,0,0,0,730,746,5,192,0, + 0,731,746,5,21,0,0,732,746,5,10,0,0,733,746,5,275,0,0,734,746,5, + 191,0,0,735,746,5,19,0,0,736,738,5,377,0,0,737,739,5,225,0,0,738, + 737,1,0,0,0,738,739,1,0,0,0,739,741,1,0,0,0,740,742,3,8,4,0,741, + 740,1,0,0,0,741,742,1,0,0,0,742,746,1,0,0,0,743,746,5,79,0,0,744, + 746,5,78,0,0,745,723,1,0,0,0,745,724,1,0,0,0,745,725,1,0,0,0,745, + 726,1,0,0,0,745,730,1,0,0,0,745,731,1,0,0,0,745,732,1,0,0,0,745, + 733,1,0,0,0,745,734,1,0,0,0,745,735,1,0,0,0,745,736,1,0,0,0,745, + 743,1,0,0,0,745,744,1,0,0,0,746,7,1,0,0,0,747,748,7,1,0,0,748,9, + 1,0,0,0,749,821,3,362,181,0,750,821,3,12,6,0,751,821,3,16,8,0,752, + 821,3,18,9,0,753,821,3,20,10,0,754,821,3,24,12,0,755,756,5,277,0, + 0,756,757,5,320,0,0,757,760,3,474,237,0,758,759,5,387,0,0,759,761, + 3,230,115,0,760,758,1,0,0,0,760,761,1,0,0,0,761,821,1,0,0,0,762, + 821,3,28,14,0,763,764,5,86,0,0,764,765,5,139,0,0,765,767,3,480,240, + 0,766,768,3,496,248,0,767,766,1,0,0,0,767,768,1,0,0,0,768,821,1, + 0,0,0,769,770,5,365,0,0,770,771,3,480,240,0,771,773,3,394,197,0, + 772,774,3,496,248,0,773,772,1,0,0,0,773,774,1,0,0,0,774,821,1,0, + 0,0,775,821,3,396,198,0,776,778,5,203,0,0,777,779,5,436,0,0,778, + 777,1,0,0,0,778,779,1,0,0,0,779,780,1,0,0,0,780,781,5,166,0,0,781, + 786,3,480,240,0,782,784,5,17,0,0,783,782,1,0,0,0,783,784,1,0,0,0, + 784,785,1,0,0,0,785,787,3,642,321,0,786,783,1,0,0,0,786,787,1,0, + 0,0,787,788,1,0,0,0,788,789,5,370,0,0,789,790,3,458,229,0,790,791, + 5,224,0,0,791,792,3,584,292,0,792,793,3,400,200,0,793,821,1,0,0, + 0,794,795,5,249,0,0,795,796,3,642,321,0,796,797,5,139,0,0,797,798, + 3,362,181,0,798,821,1,0,0,0,799,800,5,115,0,0,800,801,3,642,321, + 0,801,802,5,370,0,0,802,803,3,298,149,0,803,821,1,0,0,0,804,805, + 5,304,0,0,805,810,3,652,326,0,806,807,7,2,0,0,807,809,3,652,326, + 0,808,806,1,0,0,0,809,812,1,0,0,0,810,808,1,0,0,0,810,811,1,0,0, + 0,811,813,1,0,0,0,812,810,1,0,0,0,813,817,5,405,0,0,814,816,9,0, + 0,0,815,814,1,0,0,0,816,819,1,0,0,0,817,818,1,0,0,0,817,815,1,0, + 0,0,818,821,1,0,0,0,819,817,1,0,0,0,820,749,1,0,0,0,820,750,1,0, + 0,0,820,751,1,0,0,0,820,752,1,0,0,0,820,753,1,0,0,0,820,754,1,0, + 0,0,820,755,1,0,0,0,820,762,1,0,0,0,820,763,1,0,0,0,820,769,1,0, + 0,0,820,775,1,0,0,0,820,776,1,0,0,0,820,794,1,0,0,0,820,799,1,0, + 0,0,820,804,1,0,0,0,821,11,1,0,0,0,822,823,5,187,0,0,823,825,5,66, + 0,0,824,826,5,188,0,0,825,824,1,0,0,0,825,826,1,0,0,0,826,827,1, + 0,0,0,827,828,5,158,0,0,828,830,5,426,0,0,829,831,5,235,0,0,830, + 829,1,0,0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,833,5,166,0,0,833, + 834,5,329,0,0,834,836,3,628,314,0,835,837,3,56,28,0,836,835,1,0, + 0,0,836,837,1,0,0,0,837,13,1,0,0,0,838,840,5,134,0,0,839,841,5,204, + 0,0,840,839,1,0,0,0,840,841,1,0,0,0,841,842,1,0,0,0,842,843,5,279, + 0,0,843,844,5,399,0,0,844,845,5,426,0,0,845,846,5,400,0,0,846,15, + 1,0,0,0,847,848,5,120,0,0,848,849,5,329,0,0,849,850,3,628,314,0, + 850,851,5,341,0,0,851,853,5,426,0,0,852,854,3,14,7,0,853,852,1,0, + 0,0,853,854,1,0,0,0,854,17,1,0,0,0,855,861,5,153,0,0,856,858,5,123, + 0,0,857,856,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859,860,5,329, + 0,0,860,862,3,628,314,0,861,857,1,0,0,0,861,862,1,0,0,0,862,863, + 1,0,0,0,863,864,5,139,0,0,864,866,5,426,0,0,865,867,3,426,213,0, + 866,865,1,0,0,0,866,867,1,0,0,0,867,19,1,0,0,0,868,869,5,277,0,0, + 869,870,5,103,0,0,870,873,3,22,11,0,871,872,5,278,0,0,872,874,3, + 22,11,0,873,871,1,0,0,0,873,874,1,0,0,0,874,877,1,0,0,0,875,876, + 5,387,0,0,876,878,3,230,115,0,877,875,1,0,0,0,877,878,1,0,0,0,878, + 21,1,0,0,0,879,882,3,474,237,0,880,881,5,395,0,0,881,883,3,26,13, + 0,882,880,1,0,0,0,882,883,1,0,0,0,883,23,1,0,0,0,884,885,5,277,0, + 0,885,886,5,187,0,0,886,889,3,22,11,0,887,888,5,166,0,0,888,890, + 3,474,237,0,889,887,1,0,0,0,889,890,1,0,0,0,890,893,1,0,0,0,891, + 892,5,387,0,0,892,894,3,230,115,0,893,891,1,0,0,0,893,894,1,0,0, + 0,894,25,1,0,0,0,895,898,5,426,0,0,896,897,5,395,0,0,897,899,5,426, + 0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,27,1,0,0,0,900,959,3,42, + 21,0,901,959,3,46,23,0,902,959,3,48,24,0,903,959,3,438,219,0,904, + 959,3,54,27,0,905,959,3,52,26,0,906,959,3,414,207,0,907,959,3,64, + 32,0,908,959,3,72,36,0,909,959,3,138,69,0,910,959,3,160,80,0,911, + 959,3,176,88,0,912,959,3,180,90,0,913,959,3,184,92,0,914,959,3,182, + 91,0,915,959,3,174,87,0,916,959,3,178,89,0,917,959,3,146,73,0,918, + 959,3,152,76,0,919,959,3,148,74,0,920,959,3,150,75,0,921,959,3,154, + 77,0,922,959,3,156,78,0,923,959,3,158,79,0,924,959,3,66,33,0,925, + 959,3,76,38,0,926,959,3,82,41,0,927,959,3,78,39,0,928,959,3,84,42, + 0,929,959,3,86,43,0,930,959,3,88,44,0,931,959,3,90,45,0,932,959, + 3,92,46,0,933,959,3,106,53,0,934,959,3,98,49,0,935,959,3,108,54, + 0,936,959,3,100,50,0,937,959,3,94,47,0,938,959,3,96,48,0,939,959, + 3,104,52,0,940,959,3,102,51,0,941,942,5,1,0,0,942,944,7,3,0,0,943, + 945,5,431,0,0,944,943,1,0,0,0,945,946,1,0,0,0,946,944,1,0,0,0,946, + 947,1,0,0,0,947,959,1,0,0,0,948,949,5,176,0,0,949,951,5,258,0,0, + 950,952,5,426,0,0,951,950,1,0,0,0,952,953,1,0,0,0,953,951,1,0,0, + 0,953,954,1,0,0,0,954,959,1,0,0,0,955,959,3,654,327,0,956,959,3, + 440,220,0,957,959,3,442,221,0,958,900,1,0,0,0,958,901,1,0,0,0,958, + 902,1,0,0,0,958,903,1,0,0,0,958,904,1,0,0,0,958,905,1,0,0,0,958, + 906,1,0,0,0,958,907,1,0,0,0,958,908,1,0,0,0,958,909,1,0,0,0,958, + 910,1,0,0,0,958,911,1,0,0,0,958,912,1,0,0,0,958,913,1,0,0,0,958, + 914,1,0,0,0,958,915,1,0,0,0,958,916,1,0,0,0,958,917,1,0,0,0,958, + 918,1,0,0,0,958,919,1,0,0,0,958,920,1,0,0,0,958,921,1,0,0,0,958, + 922,1,0,0,0,958,923,1,0,0,0,958,924,1,0,0,0,958,925,1,0,0,0,958, + 926,1,0,0,0,958,927,1,0,0,0,958,928,1,0,0,0,958,929,1,0,0,0,958, + 930,1,0,0,0,958,931,1,0,0,0,958,932,1,0,0,0,958,933,1,0,0,0,958, + 934,1,0,0,0,958,935,1,0,0,0,958,936,1,0,0,0,958,937,1,0,0,0,958, + 938,1,0,0,0,958,939,1,0,0,0,958,940,1,0,0,0,958,941,1,0,0,0,958, + 948,1,0,0,0,958,955,1,0,0,0,958,956,1,0,0,0,958,957,1,0,0,0,959, + 29,1,0,0,0,960,961,5,151,0,0,961,962,5,117,0,0,962,31,1,0,0,0,963, + 964,5,151,0,0,964,965,5,216,0,0,965,966,5,117,0,0,966,33,1,0,0,0, + 967,968,7,4,0,0,968,35,1,0,0,0,969,970,3,666,333,0,970,971,5,284, + 0,0,971,37,1,0,0,0,972,973,3,668,334,0,973,974,5,284,0,0,974,39, + 1,0,0,0,975,976,5,321,0,0,976,977,5,17,0,0,977,978,5,92,0,0,978, + 41,1,0,0,0,979,981,5,58,0,0,980,982,5,273,0,0,981,980,1,0,0,0,981, + 982,1,0,0,0,982,983,1,0,0,0,983,985,3,70,35,0,984,986,3,32,16,0, + 985,984,1,0,0,0,985,986,1,0,0,0,986,987,1,0,0,0,987,989,3,476,238, + 0,988,990,3,50,25,0,989,988,1,0,0,0,989,990,1,0,0,0,990,992,1,0, + 0,0,991,993,3,426,213,0,992,991,1,0,0,0,992,993,1,0,0,0,993,996, + 1,0,0,0,994,995,5,196,0,0,995,997,5,426,0,0,996,994,1,0,0,0,996, + 997,1,0,0,0,997,1001,1,0,0,0,998,999,5,387,0,0,999,1000,5,76,0,0, + 1000,1002,3,230,115,0,1001,998,1,0,0,0,1001,1002,1,0,0,0,1002,1020, + 1,0,0,0,1003,1004,5,58,0,0,1004,1005,5,273,0,0,1005,1007,3,70,35, + 0,1006,1008,3,32,16,0,1007,1006,1,0,0,0,1007,1008,1,0,0,0,1008,1009, + 1,0,0,0,1009,1011,3,476,238,0,1010,1012,3,50,25,0,1011,1010,1,0, + 0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1017,3,44,22,0,1014, + 1015,5,387,0,0,1015,1016,5,76,0,0,1016,1018,3,230,115,0,1017,1014, + 1,0,0,0,1017,1018,1,0,0,0,1018,1020,1,0,0,0,1019,979,1,0,0,0,1019, + 1003,1,0,0,0,1020,43,1,0,0,0,1021,1022,5,370,0,0,1022,1023,3,474, + 237,0,1023,45,1,0,0,0,1024,1025,5,368,0,0,1025,1026,3,474,237,0, + 1026,47,1,0,0,0,1027,1028,5,101,0,0,1028,1030,3,70,35,0,1029,1031, + 3,30,15,0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,1032,1,0,0,0, + 1032,1034,3,474,237,0,1033,1035,3,34,17,0,1034,1033,1,0,0,0,1034, + 1035,1,0,0,0,1035,49,1,0,0,0,1036,1037,5,47,0,0,1037,1038,5,426, + 0,0,1038,51,1,0,0,0,1039,1041,5,351,0,0,1040,1042,5,329,0,0,1041, + 1040,1,0,0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1049,3,628, + 314,0,1044,1045,5,46,0,0,1045,1046,5,399,0,0,1046,1047,3,254,127, + 0,1047,1048,5,400,0,0,1048,1050,1,0,0,0,1049,1044,1,0,0,0,1049,1050, + 1,0,0,0,1050,1052,1,0,0,0,1051,1053,5,135,0,0,1052,1051,1,0,0,0, + 1052,1053,1,0,0,0,1053,53,1,0,0,0,1054,1055,5,101,0,0,1055,1057, + 5,329,0,0,1056,1058,3,30,15,0,1057,1056,1,0,0,0,1057,1058,1,0,0, + 0,1058,1059,1,0,0,0,1059,1061,3,480,240,0,1060,1062,5,255,0,0,1061, + 1060,1,0,0,0,1061,1062,1,0,0,0,1062,1064,1,0,0,0,1063,1065,3,14, + 7,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,55,1,0,0,0,1066,1067, + 5,160,0,0,1067,1068,5,426,0,0,1068,1069,5,301,0,0,1069,1070,5,426, + 0,0,1070,57,1,0,0,0,1071,1074,3,642,321,0,1072,1073,5,395,0,0,1073, + 1075,3,642,321,0,1074,1072,1,0,0,0,1074,1075,1,0,0,0,1075,1089,1, + 0,0,0,1076,1086,3,642,321,0,1077,1082,5,395,0,0,1078,1083,5,104, + 0,0,1079,1083,5,175,0,0,1080,1083,5,375,0,0,1081,1083,3,642,321, + 0,1082,1078,1,0,0,0,1082,1079,1,0,0,0,1082,1080,1,0,0,0,1082,1081, + 1,0,0,0,1083,1085,1,0,0,0,1084,1077,1,0,0,0,1085,1088,1,0,0,0,1086, + 1084,1,0,0,0,1086,1087,1,0,0,0,1087,1090,1,0,0,0,1088,1086,1,0,0, + 0,1089,1076,1,0,0,0,1089,1090,1,0,0,0,1090,59,1,0,0,0,1091,1093, + 3,58,29,0,1092,1094,3,630,315,0,1093,1092,1,0,0,0,1093,1094,1,0, + 0,0,1094,61,1,0,0,0,1095,1097,3,478,239,0,1096,1098,3,630,315,0, + 1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1101, + 3,262,131,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,63,1,0,0,0, + 1102,1125,7,5,0,0,1103,1105,3,70,35,0,1104,1106,5,122,0,0,1105,1104, + 1,0,0,0,1105,1106,1,0,0,0,1106,1107,1,0,0,0,1107,1108,3,474,237, + 0,1108,1126,1,0,0,0,1109,1111,5,69,0,0,1110,1112,5,122,0,0,1111, + 1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0,1113,1126,3,474, + 237,0,1114,1116,5,141,0,0,1115,1117,5,122,0,0,1116,1115,1,0,0,0, + 1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1126,3,560,280,0,1119,1122, + 5,138,0,0,1120,1122,5,122,0,0,1121,1119,1,0,0,0,1121,1120,1,0,0, + 0,1122,1123,1,0,0,0,1123,1126,3,62,31,0,1124,1126,3,62,31,0,1125, + 1103,1,0,0,0,1125,1109,1,0,0,0,1125,1114,1,0,0,0,1125,1121,1,0,0, + 0,1125,1124,1,0,0,0,1126,65,1,0,0,0,1127,1128,5,10,0,0,1128,1129, + 5,329,0,0,1129,1142,3,628,314,0,1130,1131,5,52,0,0,1131,1138,5,319, + 0,0,1132,1139,5,215,0,0,1133,1134,5,134,0,0,1134,1136,5,46,0,0,1135, + 1137,3,254,127,0,1136,1135,1,0,0,0,1136,1137,1,0,0,0,1137,1139,1, + 0,0,0,1138,1132,1,0,0,0,1138,1133,1,0,0,0,1138,1139,1,0,0,0,1139, + 1143,1,0,0,0,1140,1141,5,33,0,0,1141,1143,5,204,0,0,1142,1130,1, + 0,0,0,1142,1140,1,0,0,0,1143,67,1,0,0,0,1144,1145,7,6,0,0,1145,69, + 1,0,0,0,1146,1147,7,7,0,0,1147,71,1,0,0,0,1148,1149,5,308,0,0,1149, + 1152,7,8,0,0,1150,1151,5,184,0,0,1151,1153,3,194,97,0,1152,1150, + 1,0,0,0,1152,1153,1,0,0,0,1153,1332,1,0,0,0,1154,1156,5,308,0,0, + 1155,1157,5,122,0,0,1156,1155,1,0,0,0,1156,1157,1,0,0,0,1157,1158, + 1,0,0,0,1158,1162,5,330,0,0,1159,1160,3,68,34,0,1160,1161,3,474, + 237,0,1161,1163,1,0,0,0,1162,1159,1,0,0,0,1162,1163,1,0,0,0,1163, + 1165,1,0,0,0,1164,1166,3,74,37,0,1165,1164,1,0,0,0,1165,1166,1,0, + 0,0,1166,1332,1,0,0,0,1167,1168,5,308,0,0,1168,1172,5,379,0,0,1169, + 1170,3,68,34,0,1170,1171,3,474,237,0,1171,1173,1,0,0,0,1172,1169, + 1,0,0,0,1172,1173,1,0,0,0,1173,1177,1,0,0,0,1174,1175,5,184,0,0, + 1175,1178,3,194,97,0,1176,1178,3,194,97,0,1177,1174,1,0,0,0,1177, + 1176,1,0,0,0,1177,1178,1,0,0,0,1178,1332,1,0,0,0,1179,1180,5,308, + 0,0,1180,1181,5,202,0,0,1181,1185,5,379,0,0,1182,1183,3,68,34,0, + 1183,1184,3,474,237,0,1184,1186,1,0,0,0,1185,1182,1,0,0,0,1185,1186, + 1,0,0,0,1186,1190,1,0,0,0,1187,1188,5,184,0,0,1188,1191,3,194,97, + 0,1189,1191,3,194,97,0,1190,1187,1,0,0,0,1190,1189,1,0,0,0,1190, + 1191,1,0,0,0,1191,1332,1,0,0,0,1192,1194,5,308,0,0,1193,1195,5,315, + 0,0,1194,1193,1,0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197, + 5,46,0,0,1197,1198,3,68,34,0,1198,1202,3,478,239,0,1199,1200,3,68, + 34,0,1200,1201,3,474,237,0,1201,1203,1,0,0,0,1202,1199,1,0,0,0,1202, + 1203,1,0,0,0,1203,1207,1,0,0,0,1204,1205,5,184,0,0,1205,1208,3,194, + 97,0,1206,1208,3,194,97,0,1207,1204,1,0,0,0,1207,1206,1,0,0,0,1207, + 1208,1,0,0,0,1208,1332,1,0,0,0,1209,1210,5,308,0,0,1210,1213,5,142, + 0,0,1211,1212,5,184,0,0,1212,1214,3,560,280,0,1213,1211,1,0,0,0, + 1213,1214,1,0,0,0,1214,1332,1,0,0,0,1215,1216,5,308,0,0,1216,1217, + 5,239,0,0,1217,1219,3,478,239,0,1218,1220,3,630,315,0,1219,1218, + 1,0,0,0,1219,1220,1,0,0,0,1220,1222,1,0,0,0,1221,1223,3,496,248, + 0,1222,1221,1,0,0,0,1222,1223,1,0,0,0,1223,1225,1,0,0,0,1224,1226, + 3,544,272,0,1225,1224,1,0,0,0,1225,1226,1,0,0,0,1226,1228,1,0,0, + 0,1227,1229,3,388,194,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229, + 1332,1,0,0,0,1230,1231,5,308,0,0,1231,1237,5,58,0,0,1232,1233,3, + 70,35,0,1233,1234,3,474,237,0,1234,1238,1,0,0,0,1235,1236,5,329, + 0,0,1236,1238,3,480,240,0,1237,1232,1,0,0,0,1237,1235,1,0,0,0,1238, + 1332,1,0,0,0,1239,1240,5,308,0,0,1240,1241,5,329,0,0,1241,1245,5, + 122,0,0,1242,1243,3,68,34,0,1243,1244,3,474,237,0,1244,1246,1,0, + 0,0,1245,1242,1,0,0,0,1245,1246,1,0,0,0,1246,1247,1,0,0,0,1247,1248, + 5,184,0,0,1248,1250,3,194,97,0,1249,1251,3,630,315,0,1250,1249,1, + 0,0,0,1250,1251,1,0,0,0,1251,1332,1,0,0,0,1252,1253,5,308,0,0,1253, + 1254,5,332,0,0,1254,1258,3,480,240,0,1255,1256,5,399,0,0,1256,1257, + 5,426,0,0,1257,1259,5,400,0,0,1258,1255,1,0,0,0,1258,1259,1,0,0, + 0,1259,1332,1,0,0,0,1260,1261,5,308,0,0,1261,1273,5,191,0,0,1262, + 1263,3,70,35,0,1263,1265,3,474,237,0,1264,1266,5,122,0,0,1265,1264, + 1,0,0,0,1265,1266,1,0,0,0,1266,1274,1,0,0,0,1267,1269,3,60,30,0, + 1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269,1271,1,0,0,0,1270,1272, + 5,122,0,0,1271,1270,1,0,0,0,1271,1272,1,0,0,0,1272,1274,1,0,0,0, + 1273,1262,1,0,0,0,1273,1268,1,0,0,0,1274,1332,1,0,0,0,1275,1276, + 5,308,0,0,1276,1303,5,50,0,0,1277,1278,5,51,0,0,1278,1279,5,405, + 0,0,1279,1304,5,431,0,0,1280,1281,3,70,35,0,1281,1282,3,474,237, + 0,1282,1287,1,0,0,0,1283,1285,3,60,30,0,1284,1283,1,0,0,0,1284,1285, + 1,0,0,0,1285,1287,1,0,0,0,1286,1280,1,0,0,0,1286,1284,1,0,0,0,1287, + 1289,1,0,0,0,1288,1290,3,408,204,0,1289,1288,1,0,0,0,1289,1290,1, + 0,0,0,1290,1292,1,0,0,0,1291,1293,3,410,205,0,1292,1291,1,0,0,0, + 1292,1293,1,0,0,0,1293,1295,1,0,0,0,1294,1296,3,412,206,0,1295,1294, + 1,0,0,0,1295,1296,1,0,0,0,1296,1298,1,0,0,0,1297,1299,3,544,272, + 0,1298,1297,1,0,0,0,1298,1299,1,0,0,0,1299,1301,1,0,0,0,1300,1302, + 3,388,194,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302,1304,1,0,0, + 0,1303,1277,1,0,0,0,1303,1286,1,0,0,0,1304,1332,1,0,0,0,1305,1306, + 5,308,0,0,1306,1332,5,346,0,0,1307,1308,5,308,0,0,1308,1309,5,54, + 0,0,1309,1332,5,426,0,0,1310,1311,5,308,0,0,1311,1315,5,280,0,0, + 1312,1313,5,243,0,0,1313,1316,3,642,321,0,1314,1316,5,244,0,0,1315, + 1312,1,0,0,0,1315,1314,1,0,0,0,1316,1332,1,0,0,0,1317,1318,5,308, + 0,0,1318,1332,5,70,0,0,1319,1321,5,308,0,0,1320,1322,5,138,0,0,1321, + 1320,1,0,0,0,1321,1322,1,0,0,0,1322,1323,1,0,0,0,1323,1324,7,9,0, + 0,1324,1325,5,224,0,0,1325,1329,3,480,240,0,1326,1327,3,68,34,0, + 1327,1328,3,474,237,0,1328,1330,1,0,0,0,1329,1326,1,0,0,0,1329,1330, + 1,0,0,0,1330,1332,1,0,0,0,1331,1148,1,0,0,0,1331,1154,1,0,0,0,1331, + 1167,1,0,0,0,1331,1179,1,0,0,0,1331,1192,1,0,0,0,1331,1209,1,0,0, + 0,1331,1215,1,0,0,0,1331,1230,1,0,0,0,1331,1239,1,0,0,0,1331,1252, + 1,0,0,0,1331,1260,1,0,0,0,1331,1275,1,0,0,0,1331,1305,1,0,0,0,1331, + 1307,1,0,0,0,1331,1310,1,0,0,0,1331,1317,1,0,0,0,1331,1319,1,0,0, + 0,1332,73,1,0,0,0,1333,1334,5,384,0,0,1334,1335,3,642,321,0,1335, + 1336,5,405,0,0,1336,1337,5,426,0,0,1337,1342,1,0,0,0,1338,1339,5, + 184,0,0,1339,1342,3,194,97,0,1340,1342,3,194,97,0,1341,1333,1,0, + 0,0,1341,1338,1,0,0,0,1341,1340,1,0,0,0,1342,75,1,0,0,0,1343,1344, + 5,190,0,0,1344,1345,5,329,0,0,1345,1346,3,628,314,0,1346,1347,3, + 80,40,0,1347,77,1,0,0,0,1348,1349,5,190,0,0,1349,1350,3,70,35,0, + 1350,1351,3,474,237,0,1351,1352,3,80,40,0,1352,79,1,0,0,0,1353,1354, + 7,10,0,0,1354,81,1,0,0,0,1355,1356,5,361,0,0,1356,1357,5,329,0,0, + 1357,1358,3,628,314,0,1358,83,1,0,0,0,1359,1360,5,361,0,0,1360,1361, + 3,70,35,0,1361,1362,3,474,237,0,1362,85,1,0,0,0,1363,1364,5,58,0, + 0,1364,1365,5,287,0,0,1365,1366,3,642,321,0,1366,87,1,0,0,0,1367, + 1368,5,101,0,0,1368,1369,5,287,0,0,1369,1370,3,642,321,0,1370,89, + 1,0,0,0,1371,1372,5,143,0,0,1372,1374,3,118,59,0,1373,1375,3,112, + 56,0,1374,1373,1,0,0,0,1374,1375,1,0,0,0,1375,1376,1,0,0,0,1376, + 1377,5,341,0,0,1377,1379,3,124,62,0,1378,1380,3,130,65,0,1379,1378, + 1,0,0,0,1379,1380,1,0,0,0,1380,91,1,0,0,0,1381,1383,5,283,0,0,1382, + 1384,3,132,66,0,1383,1382,1,0,0,0,1383,1384,1,0,0,0,1384,1385,1, + 0,0,0,1385,1387,3,118,59,0,1386,1388,3,112,56,0,1387,1386,1,0,0, + 0,1387,1388,1,0,0,0,1388,1389,1,0,0,0,1389,1390,5,139,0,0,1390,1391, + 3,124,62,0,1391,93,1,0,0,0,1392,1394,5,143,0,0,1393,1395,5,287,0, + 0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1396,1,0,0,0,1396,1401, + 3,642,321,0,1397,1398,5,397,0,0,1398,1400,3,642,321,0,1399,1397, + 1,0,0,0,1400,1403,1,0,0,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, + 1404,1,0,0,0,1403,1401,1,0,0,0,1404,1405,5,341,0,0,1405,1407,3,124, + 62,0,1406,1408,3,136,68,0,1407,1406,1,0,0,0,1407,1408,1,0,0,0,1408, + 95,1,0,0,0,1409,1411,5,283,0,0,1410,1412,3,134,67,0,1411,1410,1, + 0,0,0,1411,1412,1,0,0,0,1412,1414,1,0,0,0,1413,1415,5,287,0,0,1414, + 1413,1,0,0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1421,3,642, + 321,0,1417,1418,5,397,0,0,1418,1420,3,642,321,0,1419,1417,1,0,0, + 0,1420,1423,1,0,0,0,1421,1419,1,0,0,0,1421,1422,1,0,0,0,1422,1424, + 1,0,0,0,1423,1421,1,0,0,0,1424,1425,5,139,0,0,1425,1426,3,124,62, + 0,1426,97,1,0,0,0,1427,1428,5,308,0,0,1428,1429,5,287,0,0,1429,1430, + 5,143,0,0,1430,1431,3,126,63,0,1431,99,1,0,0,0,1432,1433,5,308,0, + 0,1433,1434,5,288,0,0,1434,101,1,0,0,0,1435,1436,5,308,0,0,1436, + 1437,5,62,0,0,1437,1438,5,288,0,0,1438,103,1,0,0,0,1439,1440,5,304, + 0,0,1440,1444,5,287,0,0,1441,1445,5,7,0,0,1442,1445,5,213,0,0,1443, + 1445,3,642,321,0,1444,1441,1,0,0,0,1444,1442,1,0,0,0,1444,1443,1, + 0,0,0,1445,105,1,0,0,0,1446,1447,5,308,0,0,1447,1449,5,143,0,0,1448, + 1450,3,126,63,0,1449,1448,1,0,0,0,1449,1450,1,0,0,0,1450,1453,1, + 0,0,0,1451,1452,5,224,0,0,1452,1454,3,110,55,0,1453,1451,1,0,0,0, + 1453,1454,1,0,0,0,1454,107,1,0,0,0,1455,1456,5,308,0,0,1456,1457, + 5,252,0,0,1457,1458,3,642,321,0,1458,109,1,0,0,0,1459,1462,5,7,0, + 0,1460,1462,3,116,58,0,1461,1459,1,0,0,0,1461,1460,1,0,0,0,1462, + 111,1,0,0,0,1463,1464,5,224,0,0,1464,1465,3,114,57,0,1465,113,1, + 0,0,0,1466,1467,3,70,35,0,1467,1468,3,474,237,0,1468,1478,1,0,0, + 0,1469,1471,5,329,0,0,1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472, + 1,0,0,0,1472,1478,3,628,314,0,1473,1474,5,366,0,0,1474,1478,5,426, + 0,0,1475,1476,5,303,0,0,1476,1478,3,642,321,0,1477,1466,1,0,0,0, + 1477,1470,1,0,0,0,1477,1473,1,0,0,0,1477,1475,1,0,0,0,1478,115,1, + 0,0,0,1479,1480,3,70,35,0,1480,1481,3,474,237,0,1481,1500,1,0,0, + 0,1482,1484,5,329,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484,1485, + 1,0,0,0,1485,1490,3,480,240,0,1486,1487,5,399,0,0,1487,1488,3,254, + 127,0,1488,1489,5,400,0,0,1489,1491,1,0,0,0,1490,1486,1,0,0,0,1490, + 1491,1,0,0,0,1491,1493,1,0,0,0,1492,1494,3,630,315,0,1493,1492,1, + 0,0,0,1493,1494,1,0,0,0,1494,1500,1,0,0,0,1495,1496,5,366,0,0,1496, + 1500,5,426,0,0,1497,1498,5,303,0,0,1498,1500,3,642,321,0,1499,1479, + 1,0,0,0,1499,1483,1,0,0,0,1499,1495,1,0,0,0,1499,1497,1,0,0,0,1500, + 117,1,0,0,0,1501,1506,3,120,60,0,1502,1503,5,397,0,0,1503,1505,3, + 120,60,0,1504,1502,1,0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506, + 1507,1,0,0,0,1507,119,1,0,0,0,1508,1506,1,0,0,0,1509,1514,3,122, + 61,0,1510,1511,5,399,0,0,1511,1512,3,254,127,0,1512,1513,5,400,0, + 0,1513,1515,1,0,0,0,1514,1510,1,0,0,0,1514,1515,1,0,0,0,1515,121, + 1,0,0,0,1516,1517,7,11,0,0,1517,123,1,0,0,0,1518,1523,3,126,63,0, + 1519,1520,5,397,0,0,1520,1522,3,126,63,0,1521,1519,1,0,0,0,1522, + 1525,1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,125,1,0,0, + 0,1525,1523,1,0,0,0,1526,1527,5,369,0,0,1527,1533,3,646,323,0,1528, + 1529,5,144,0,0,1529,1533,3,646,323,0,1530,1531,5,287,0,0,1531,1533, + 3,642,321,0,1532,1526,1,0,0,0,1532,1528,1,0,0,0,1532,1530,1,0,0, + 0,1533,127,1,0,0,0,1534,1535,5,369,0,0,1535,1540,3,646,323,0,1536, + 1537,5,287,0,0,1537,1540,3,642,321,0,1538,1540,3,642,321,0,1539, + 1534,1,0,0,0,1539,1536,1,0,0,0,1539,1538,1,0,0,0,1540,129,1,0,0, + 0,1541,1542,5,387,0,0,1542,1543,5,143,0,0,1543,1544,5,227,0,0,1544, + 131,1,0,0,0,1545,1546,5,143,0,0,1546,1547,5,227,0,0,1547,1548,5, + 134,0,0,1548,133,1,0,0,0,1549,1550,5,5,0,0,1550,1551,5,227,0,0,1551, + 1552,5,134,0,0,1552,135,1,0,0,0,1553,1554,5,387,0,0,1554,1555,5, + 5,0,0,1555,1556,5,227,0,0,1556,137,1,0,0,0,1557,1559,5,212,0,0,1558, + 1560,5,276,0,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0, + 0,0,1561,1562,5,329,0,0,1562,1568,3,480,240,0,1563,1564,7,12,0,0, + 1564,1566,5,239,0,0,1565,1567,3,634,317,0,1566,1565,1,0,0,0,1566, + 1567,1,0,0,0,1567,1569,1,0,0,0,1568,1563,1,0,0,0,1568,1569,1,0,0, + 0,1569,139,1,0,0,0,1570,1575,3,142,71,0,1571,1572,5,397,0,0,1572, + 1574,3,142,71,0,1573,1571,1,0,0,0,1574,1577,1,0,0,0,1575,1573,1, + 0,0,0,1575,1576,1,0,0,0,1576,141,1,0,0,0,1577,1575,1,0,0,0,1578, + 1579,3,144,72,0,1579,1580,5,426,0,0,1580,143,1,0,0,0,1581,1582,7, + 13,0,0,1582,145,1,0,0,0,1583,1585,5,58,0,0,1584,1586,5,333,0,0,1585, + 1584,1,0,0,0,1585,1586,1,0,0,0,1586,1587,1,0,0,0,1587,1588,5,141, + 0,0,1588,1589,3,558,279,0,1589,1590,5,17,0,0,1590,1593,5,426,0,0, + 1591,1592,5,370,0,0,1592,1594,3,140,70,0,1593,1591,1,0,0,0,1593, + 1594,1,0,0,0,1594,147,1,0,0,0,1595,1597,5,101,0,0,1596,1598,5,333, + 0,0,1597,1596,1,0,0,0,1597,1598,1,0,0,0,1598,1599,1,0,0,0,1599,1601, + 5,141,0,0,1600,1602,3,30,15,0,1601,1600,1,0,0,0,1601,1602,1,0,0, + 0,1602,1603,1,0,0,0,1603,1604,3,560,280,0,1604,149,1,0,0,0,1605, + 1606,5,271,0,0,1606,1607,7,14,0,0,1607,151,1,0,0,0,1608,1609,5,58, + 0,0,1609,1610,5,333,0,0,1610,1611,5,194,0,0,1611,1612,5,432,0,0, + 1612,1614,5,399,0,0,1613,1615,3,248,124,0,1614,1613,1,0,0,0,1614, + 1615,1,0,0,0,1615,1616,1,0,0,0,1616,1617,5,400,0,0,1617,1618,3,584, + 292,0,1618,153,1,0,0,0,1619,1620,5,101,0,0,1620,1621,5,333,0,0,1621, + 1623,5,194,0,0,1622,1624,3,30,15,0,1623,1622,1,0,0,0,1623,1624,1, + 0,0,0,1624,1625,1,0,0,0,1625,1626,5,432,0,0,1626,155,1,0,0,0,1627, + 1628,5,58,0,0,1628,1629,5,155,0,0,1629,1630,3,642,321,0,1630,1631, + 5,224,0,0,1631,1632,5,329,0,0,1632,1633,3,480,240,0,1633,1634,3, + 266,133,0,1634,1635,5,17,0,0,1635,1639,5,426,0,0,1636,1637,5,387, + 0,0,1637,1638,5,84,0,0,1638,1640,5,265,0,0,1639,1636,1,0,0,0,1639, + 1640,1,0,0,0,1640,1643,1,0,0,0,1641,1642,5,150,0,0,1642,1644,3,226, + 113,0,1643,1641,1,0,0,0,1643,1644,1,0,0,0,1644,1648,1,0,0,0,1645, + 1646,5,154,0,0,1646,1647,5,329,0,0,1647,1649,3,480,240,0,1648,1645, + 1,0,0,0,1648,1649,1,0,0,0,1649,1653,1,0,0,0,1650,1651,5,238,0,0, + 1651,1652,5,32,0,0,1652,1654,3,266,133,0,1653,1650,1,0,0,0,1653, + 1654,1,0,0,0,1654,1659,1,0,0,0,1655,1657,3,222,111,0,1656,1655,1, + 0,0,0,1656,1657,1,0,0,0,1657,1658,1,0,0,0,1658,1660,3,246,123,0, + 1659,1656,1,0,0,0,1659,1660,1,0,0,0,1660,1662,1,0,0,0,1661,1663, + 3,426,213,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,1665,1,0,0, + 0,1664,1666,3,224,112,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666, + 1668,1,0,0,0,1667,1669,3,196,98,0,1668,1667,1,0,0,0,1668,1669,1, + 0,0,0,1669,157,1,0,0,0,1670,1671,5,101,0,0,1671,1673,5,155,0,0,1672, + 1674,3,30,15,0,1673,1672,1,0,0,0,1673,1674,1,0,0,0,1674,1675,1,0, + 0,0,1675,1676,3,642,321,0,1676,1677,5,224,0,0,1677,1678,3,480,240, + 0,1678,159,1,0,0,0,1679,1682,5,58,0,0,1680,1681,5,228,0,0,1681,1683, + 5,278,0,0,1682,1680,1,0,0,0,1682,1683,1,0,0,0,1683,1684,1,0,0,0, + 1684,1686,5,378,0,0,1685,1687,3,32,16,0,1686,1685,1,0,0,0,1686,1687, + 1,0,0,0,1687,1688,1,0,0,0,1688,1693,3,486,243,0,1689,1690,5,399, + 0,0,1690,1691,3,306,153,0,1691,1692,5,400,0,0,1692,1694,1,0,0,0, + 1693,1689,1,0,0,0,1693,1694,1,0,0,0,1694,1696,1,0,0,0,1695,1697, + 3,196,98,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1699,1,0,0,0, + 1698,1700,3,162,81,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700,1702, + 1,0,0,0,1701,1703,3,224,112,0,1702,1701,1,0,0,0,1702,1703,1,0,0, + 0,1703,1704,1,0,0,0,1704,1705,5,17,0,0,1705,1706,3,382,191,0,1706, + 161,1,0,0,0,1707,1708,5,238,0,0,1708,1714,5,224,0,0,1709,1710,5, + 399,0,0,1710,1715,3,254,127,0,1711,1712,5,316,0,0,1712,1713,5,399, + 0,0,1713,1715,3,204,102,0,1714,1709,1,0,0,0,1714,1711,1,0,0,0,1715, + 1716,1,0,0,0,1716,1717,5,400,0,0,1717,163,1,0,0,0,1718,1721,3,166, + 83,0,1719,1721,3,168,84,0,1720,1718,1,0,0,0,1720,1719,1,0,0,0,1721, + 165,1,0,0,0,1722,1723,5,42,0,0,1723,1724,5,224,0,0,1724,1725,5,399, + 0,0,1725,1726,3,254,127,0,1726,1727,5,400,0,0,1727,167,1,0,0,0,1728, + 1729,3,170,85,0,1729,1730,3,172,86,0,1730,169,1,0,0,0,1731,1732, + 5,98,0,0,1732,1733,5,224,0,0,1733,1734,5,399,0,0,1734,1735,3,254, + 127,0,1735,1736,5,400,0,0,1736,171,1,0,0,0,1737,1738,5,315,0,0,1738, + 1739,5,224,0,0,1739,1740,5,399,0,0,1740,1741,3,254,127,0,1741,1742, + 5,400,0,0,1742,173,1,0,0,0,1743,1744,5,101,0,0,1744,1746,5,378,0, + 0,1745,1747,3,30,15,0,1746,1745,1,0,0,0,1746,1747,1,0,0,0,1747,1748, + 1,0,0,0,1748,1749,3,484,242,0,1749,175,1,0,0,0,1750,1751,5,58,0, + 0,1751,1752,5,202,0,0,1752,1754,5,378,0,0,1753,1755,3,32,16,0,1754, + 1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1758,3,486, + 243,0,1757,1759,3,38,19,0,1758,1757,1,0,0,0,1758,1759,1,0,0,0,1759, + 1761,1,0,0,0,1760,1762,3,196,98,0,1761,1760,1,0,0,0,1761,1762,1, + 0,0,0,1762,1764,1,0,0,0,1763,1765,3,162,81,0,1764,1763,1,0,0,0,1764, + 1765,1,0,0,0,1765,1767,1,0,0,0,1766,1768,3,164,82,0,1767,1766,1, + 0,0,0,1767,1768,1,0,0,0,1768,1770,1,0,0,0,1769,1771,3,222,111,0, + 1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1773,1,0,0,0,1772,1774, + 3,246,123,0,1773,1772,1,0,0,0,1773,1774,1,0,0,0,1774,1776,1,0,0, + 0,1775,1777,3,426,213,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777, + 1779,1,0,0,0,1778,1780,3,224,112,0,1779,1778,1,0,0,0,1779,1780,1, + 0,0,0,1780,1781,1,0,0,0,1781,1782,5,17,0,0,1782,1783,3,382,191,0, + 1783,177,1,0,0,0,1784,1785,5,101,0,0,1785,1786,5,202,0,0,1786,1788, + 5,378,0,0,1787,1789,3,30,15,0,1788,1787,1,0,0,0,1788,1789,1,0,0, + 0,1789,1790,1,0,0,0,1790,1791,3,484,242,0,1791,179,1,0,0,0,1792, + 1793,5,58,0,0,1793,1794,5,293,0,0,1794,1795,5,258,0,0,1795,1796, + 3,642,321,0,1796,1798,3,188,94,0,1797,1799,3,190,95,0,1798,1797, + 1,0,0,0,1798,1799,1,0,0,0,1799,1801,1,0,0,0,1800,1802,3,270,135, + 0,1801,1800,1,0,0,0,1801,1802,1,0,0,0,1802,1803,1,0,0,0,1803,1804, + 3,192,96,0,1804,181,1,0,0,0,1805,1806,5,101,0,0,1806,1807,5,293, + 0,0,1807,1808,5,258,0,0,1808,1809,3,642,321,0,1809,183,1,0,0,0,1810, + 1811,5,9,0,0,1811,1812,5,293,0,0,1812,1813,5,258,0,0,1813,1814,3, + 642,321,0,1814,1815,3,186,93,0,1815,185,1,0,0,0,1816,1822,3,188, + 94,0,1817,1822,3,190,95,0,1818,1822,3,270,135,0,1819,1822,3,192, + 96,0,1820,1822,5,115,0,0,1821,1816,1,0,0,0,1821,1817,1,0,0,0,1821, + 1818,1,0,0,0,1821,1819,1,0,0,0,1821,1820,1,0,0,0,1822,187,1,0,0, + 0,1823,1824,5,59,0,0,1824,1839,5,426,0,0,1825,1827,5,111,0,0,1826, + 1828,5,431,0,0,1827,1826,1,0,0,0,1827,1828,1,0,0,0,1828,1829,1,0, + 0,0,1829,1836,3,582,291,0,1830,1834,5,20,0,0,1831,1832,5,223,0,0, + 1832,1834,5,32,0,0,1833,1830,1,0,0,0,1833,1831,1,0,0,0,1834,1835, + 1,0,0,0,1835,1837,5,426,0,0,1836,1833,1,0,0,0,1836,1837,1,0,0,0, + 1837,1839,1,0,0,0,1838,1823,1,0,0,0,1838,1825,1,0,0,0,1839,189,1, + 0,0,0,1840,1841,5,116,0,0,1841,1842,5,17,0,0,1842,1843,5,426,0,0, + 1843,191,1,0,0,0,1844,1846,5,85,0,0,1845,1844,1,0,0,0,1845,1846, + 1,0,0,0,1846,1847,1,0,0,0,1847,1848,5,17,0,0,1848,1849,3,2,1,0,1849, + 193,1,0,0,0,1850,1853,3,642,321,0,1851,1853,5,426,0,0,1852,1850, + 1,0,0,0,1852,1851,1,0,0,0,1853,195,1,0,0,0,1854,1855,5,47,0,0,1855, + 1856,5,426,0,0,1856,197,1,0,0,0,1857,1858,5,183,0,0,1858,1859,5, + 431,0,0,1859,199,1,0,0,0,1860,1861,5,238,0,0,1861,1870,5,32,0,0, + 1862,1865,5,399,0,0,1863,1866,3,202,101,0,1864,1866,3,254,127,0, + 1865,1863,1,0,0,0,1865,1864,1,0,0,0,1866,1871,1,0,0,0,1867,1868, + 5,316,0,0,1868,1869,5,399,0,0,1869,1871,3,204,102,0,1870,1862,1, + 0,0,0,1870,1867,1,0,0,0,1871,1872,1,0,0,0,1872,1873,5,400,0,0,1873, + 201,1,0,0,0,1874,1879,3,318,159,0,1875,1876,5,397,0,0,1876,1878, + 3,318,159,0,1877,1875,1,0,0,0,1878,1881,1,0,0,0,1879,1877,1,0,0, + 0,1879,1880,1,0,0,0,1880,203,1,0,0,0,1881,1879,1,0,0,0,1882,1887, + 3,206,103,0,1883,1884,5,397,0,0,1884,1886,3,206,103,0,1885,1883, + 1,0,0,0,1886,1889,1,0,0,0,1887,1885,1,0,0,0,1887,1888,1,0,0,0,1888, + 205,1,0,0,0,1889,1887,1,0,0,0,1890,1909,3,256,128,0,1891,1896,3, + 670,335,0,1892,1896,3,672,336,0,1893,1896,3,676,338,0,1894,1896, + 3,678,339,0,1895,1891,1,0,0,0,1895,1892,1,0,0,0,1895,1893,1,0,0, + 0,1895,1894,1,0,0,0,1896,1897,1,0,0,0,1897,1898,5,399,0,0,1898,1899, + 3,256,128,0,1899,1900,5,400,0,0,1900,1909,1,0,0,0,1901,1902,7,15, + 0,0,1902,1903,5,399,0,0,1903,1904,5,431,0,0,1904,1905,5,397,0,0, + 1905,1906,3,256,128,0,1906,1907,5,400,0,0,1907,1909,1,0,0,0,1908, + 1890,1,0,0,0,1908,1895,1,0,0,0,1908,1901,1,0,0,0,1909,207,1,0,0, + 0,1910,1911,5,42,0,0,1911,1912,5,32,0,0,1912,1913,5,399,0,0,1913, + 1914,3,254,127,0,1914,1921,5,400,0,0,1915,1916,5,315,0,0,1916,1917, + 5,32,0,0,1917,1918,5,399,0,0,1918,1919,3,264,132,0,1919,1920,5,400, + 0,0,1920,1922,1,0,0,0,1921,1915,1,0,0,0,1921,1922,1,0,0,0,1922,1923, + 1,0,0,0,1923,1924,5,166,0,0,1924,1925,5,431,0,0,1925,1926,5,31,0, + 0,1926,209,1,0,0,0,1927,1928,5,310,0,0,1928,1929,5,32,0,0,1929,1930, + 5,399,0,0,1930,1931,3,254,127,0,1931,1932,5,400,0,0,1932,1933,5, + 224,0,0,1933,1934,5,399,0,0,1934,1935,3,292,146,0,1935,1937,5,400, + 0,0,1936,1938,3,40,20,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938, + 211,1,0,0,0,1939,1942,3,218,109,0,1940,1942,3,220,110,0,1941,1939, + 1,0,0,0,1941,1940,1,0,0,0,1942,213,1,0,0,0,1943,1944,5,266,0,0,1944, + 1945,5,426,0,0,1945,215,1,0,0,0,1946,1947,5,267,0,0,1947,1948,5, + 426,0,0,1948,217,1,0,0,0,1949,1950,5,291,0,0,1950,1951,5,137,0,0, + 1951,1952,5,301,0,0,1952,1956,5,426,0,0,1953,1954,5,387,0,0,1954, + 1955,5,302,0,0,1955,1957,3,226,113,0,1956,1953,1,0,0,0,1956,1957, + 1,0,0,0,1957,219,1,0,0,0,1958,1959,5,291,0,0,1959,1960,5,137,0,0, + 1960,1962,5,87,0,0,1961,1963,3,236,118,0,1962,1961,1,0,0,0,1962, + 1963,1,0,0,0,1963,1965,1,0,0,0,1964,1966,3,238,119,0,1965,1964,1, + 0,0,0,1965,1966,1,0,0,0,1966,1968,1,0,0,0,1967,1969,3,240,120,0, + 1968,1967,1,0,0,0,1968,1969,1,0,0,0,1969,1971,1,0,0,0,1970,1972, + 3,242,121,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1974,1,0,0, + 0,1973,1975,3,244,122,0,1974,1973,1,0,0,0,1974,1975,1,0,0,0,1975, + 221,1,0,0,0,1976,1979,3,220,110,0,1977,1979,3,218,109,0,1978,1976, + 1,0,0,0,1978,1977,1,0,0,0,1979,223,1,0,0,0,1980,1981,5,332,0,0,1981, + 1982,3,226,113,0,1982,225,1,0,0,0,1983,1984,5,399,0,0,1984,1985, + 3,228,114,0,1985,1986,5,400,0,0,1986,227,1,0,0,0,1987,1997,3,232, + 116,0,1988,1993,5,426,0,0,1989,1990,5,397,0,0,1990,1992,5,426,0, + 0,1991,1989,1,0,0,0,1992,1995,1,0,0,0,1993,1991,1,0,0,0,1993,1994, + 1,0,0,0,1994,1997,1,0,0,0,1995,1993,1,0,0,0,1996,1987,1,0,0,0,1996, + 1988,1,0,0,0,1997,229,1,0,0,0,1998,1999,5,399,0,0,1999,2000,3,232, + 116,0,2000,2001,5,400,0,0,2001,231,1,0,0,0,2002,2007,3,234,117,0, + 2003,2004,5,397,0,0,2004,2006,3,234,117,0,2005,2003,1,0,0,0,2006, + 2009,1,0,0,0,2007,2005,1,0,0,0,2007,2008,1,0,0,0,2008,233,1,0,0, + 0,2009,2007,1,0,0,0,2010,2011,5,426,0,0,2011,2012,5,405,0,0,2012, + 2013,5,426,0,0,2013,235,1,0,0,0,2014,2015,5,127,0,0,2015,2016,5, + 334,0,0,2016,2017,5,32,0,0,2017,2021,5,426,0,0,2018,2019,5,110,0, + 0,2019,2020,5,32,0,0,2020,2022,5,426,0,0,2021,2018,1,0,0,0,2021, + 2022,1,0,0,0,2022,237,1,0,0,0,2023,2024,5,44,0,0,2024,2025,5,169, + 0,0,2025,2026,5,334,0,0,2026,2027,5,32,0,0,2027,2028,5,426,0,0,2028, + 239,1,0,0,0,2029,2030,5,198,0,0,2030,2031,5,174,0,0,2031,2032,5, + 334,0,0,2032,2033,5,32,0,0,2033,2034,5,426,0,0,2034,241,1,0,0,0, + 2035,2036,5,186,0,0,2036,2037,5,334,0,0,2037,2038,5,32,0,0,2038, + 2039,5,426,0,0,2039,243,1,0,0,0,2040,2041,5,219,0,0,2041,2042,5, + 85,0,0,2042,2043,5,17,0,0,2043,2044,5,426,0,0,2044,245,1,0,0,0,2045, + 2046,5,321,0,0,2046,2047,5,17,0,0,2047,2048,5,160,0,0,2048,2049, + 5,426,0,0,2049,2050,5,233,0,0,2050,2055,5,426,0,0,2051,2052,5,159, + 0,0,2052,2053,5,426,0,0,2053,2054,5,232,0,0,2054,2056,5,426,0,0, + 2055,2051,1,0,0,0,2055,2056,1,0,0,0,2056,2087,1,0,0,0,2057,2058, + 5,321,0,0,2058,2059,5,32,0,0,2059,2063,5,426,0,0,2060,2061,5,387, + 0,0,2061,2062,5,302,0,0,2062,2064,3,226,113,0,2063,2060,1,0,0,0, + 2063,2064,1,0,0,0,2064,2068,1,0,0,0,2065,2066,5,321,0,0,2066,2067, + 5,17,0,0,2067,2069,3,642,321,0,2068,2065,1,0,0,0,2068,2069,1,0,0, + 0,2069,2087,1,0,0,0,2070,2071,5,321,0,0,2071,2072,5,32,0,0,2072, + 2076,3,642,321,0,2073,2074,5,387,0,0,2074,2075,5,302,0,0,2075,2077, + 3,226,113,0,2076,2073,1,0,0,0,2076,2077,1,0,0,0,2077,2081,1,0,0, + 0,2078,2079,5,321,0,0,2079,2080,5,17,0,0,2080,2082,3,642,321,0,2081, + 2078,1,0,0,0,2081,2082,1,0,0,0,2082,2087,1,0,0,0,2083,2084,5,321, + 0,0,2084,2085,5,17,0,0,2085,2087,3,642,321,0,2086,2045,1,0,0,0,2086, + 2057,1,0,0,0,2086,2070,1,0,0,0,2086,2083,1,0,0,0,2087,247,1,0,0, + 0,2088,2093,3,312,156,0,2089,2090,5,397,0,0,2090,2092,3,312,156, + 0,2091,2089,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2093,2094, + 1,0,0,0,2094,249,1,0,0,0,2095,2093,1,0,0,0,2096,2101,3,314,157,0, + 2097,2098,5,397,0,0,2098,2100,3,314,157,0,2099,2097,1,0,0,0,2100, + 2103,1,0,0,0,2101,2099,1,0,0,0,2101,2102,1,0,0,0,2102,251,1,0,0, + 0,2103,2101,1,0,0,0,2104,2109,3,342,171,0,2105,2106,5,397,0,0,2106, + 2108,3,342,171,0,2107,2105,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1, + 0,0,0,2109,2110,1,0,0,0,2110,253,1,0,0,0,2111,2109,1,0,0,0,2112, + 2117,3,256,128,0,2113,2114,5,397,0,0,2114,2116,3,256,128,0,2115, + 2113,1,0,0,0,2116,2119,1,0,0,0,2117,2115,1,0,0,0,2117,2118,1,0,0, + 0,2118,255,1,0,0,0,2119,2117,1,0,0,0,2120,2123,3,686,343,0,2121, + 2123,4,128,0,0,2122,2120,1,0,0,0,2122,2121,1,0,0,0,2123,257,1,0, + 0,0,2124,2125,3,686,343,0,2125,259,1,0,0,0,2126,2127,3,642,321,0, + 2127,261,1,0,0,0,2128,2138,3,256,128,0,2129,2134,5,395,0,0,2130, + 2135,5,104,0,0,2131,2135,5,175,0,0,2132,2135,5,375,0,0,2133,2135, + 3,642,321,0,2134,2130,1,0,0,0,2134,2131,1,0,0,0,2134,2132,1,0,0, + 0,2134,2133,1,0,0,0,2135,2137,1,0,0,0,2136,2129,1,0,0,0,2137,2140, + 1,0,0,0,2138,2136,1,0,0,0,2138,2139,1,0,0,0,2139,263,1,0,0,0,2140, + 2138,1,0,0,0,2141,2146,3,304,152,0,2142,2143,5,397,0,0,2143,2145, + 3,304,152,0,2144,2142,1,0,0,0,2145,2148,1,0,0,0,2146,2144,1,0,0, + 0,2146,2147,1,0,0,0,2147,265,1,0,0,0,2148,2146,1,0,0,0,2149,2150, + 5,399,0,0,2150,2151,3,254,127,0,2151,2152,5,400,0,0,2152,267,1,0, + 0,0,2153,2155,3,270,135,0,2154,2156,3,272,136,0,2155,2154,1,0,0, + 0,2155,2156,1,0,0,0,2156,2159,1,0,0,0,2157,2159,3,274,137,0,2158, + 2153,1,0,0,0,2158,2157,1,0,0,0,2159,269,1,0,0,0,2160,2163,3,666, + 333,0,2161,2163,3,668,334,0,2162,2160,1,0,0,0,2162,2161,1,0,0,0, + 2163,271,1,0,0,0,2164,2165,7,16,0,0,2165,273,1,0,0,0,2166,2170,5, + 109,0,0,2167,2168,5,216,0,0,2168,2170,5,109,0,0,2169,2166,1,0,0, + 0,2169,2167,1,0,0,0,2170,275,1,0,0,0,2171,2172,7,17,0,0,2172,277, + 1,0,0,0,2173,2174,5,55,0,0,2174,2176,3,642,321,0,2175,2173,1,0,0, + 0,2175,2176,1,0,0,0,2176,2177,1,0,0,0,2177,2179,3,282,141,0,2178, + 2180,3,338,169,0,2179,2178,1,0,0,0,2179,2180,1,0,0,0,2180,279,1, + 0,0,0,2181,2182,5,55,0,0,2182,2183,3,642,321,0,2183,2185,3,282,141, + 0,2184,2186,3,340,170,0,2185,2184,1,0,0,0,2185,2186,1,0,0,0,2186, + 281,1,0,0,0,2187,2190,3,284,142,0,2188,2190,3,286,143,0,2189,2187, + 1,0,0,0,2189,2188,1,0,0,0,2190,283,1,0,0,0,2191,2192,3,336,168,0, + 2192,2193,3,266,133,0,2193,285,1,0,0,0,2194,2195,5,40,0,0,2195,2196, + 5,399,0,0,2196,2197,3,584,292,0,2197,2198,5,400,0,0,2198,287,1,0, + 0,0,2199,2200,5,55,0,0,2200,2202,3,642,321,0,2201,2199,1,0,0,0,2201, + 2202,1,0,0,0,2202,2203,1,0,0,0,2203,2204,5,136,0,0,2204,2205,5,173, + 0,0,2205,2206,3,266,133,0,2206,2207,5,269,0,0,2207,2208,3,480,240, + 0,2208,2210,3,266,133,0,2209,2211,3,338,169,0,2210,2209,1,0,0,0, + 2210,2211,1,0,0,0,2211,289,1,0,0,0,2212,2213,5,55,0,0,2213,2214, + 3,642,321,0,2214,2215,5,136,0,0,2215,2216,5,173,0,0,2216,2217,3, + 266,133,0,2217,2218,5,269,0,0,2218,2219,3,480,240,0,2219,2221,3, + 266,133,0,2220,2222,3,340,170,0,2221,2220,1,0,0,0,2221,2222,1,0, + 0,0,2222,291,1,0,0,0,2223,2226,3,298,149,0,2224,2226,3,294,147,0, + 2225,2223,1,0,0,0,2225,2224,1,0,0,0,2226,293,1,0,0,0,2227,2232,3, + 296,148,0,2228,2229,5,397,0,0,2229,2231,3,296,148,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, + 295,1,0,0,0,2234,2232,1,0,0,0,2235,2236,5,399,0,0,2236,2237,3,298, + 149,0,2237,2238,5,400,0,0,2238,297,1,0,0,0,2239,2244,3,576,288,0, + 2240,2241,5,397,0,0,2241,2243,3,576,288,0,2242,2240,1,0,0,0,2243, + 2246,1,0,0,0,2244,2242,1,0,0,0,2244,2245,1,0,0,0,2245,299,1,0,0, + 0,2246,2244,1,0,0,0,2247,2248,7,18,0,0,2248,301,1,0,0,0,2249,2250, + 5,220,0,0,2250,2251,7,19,0,0,2251,303,1,0,0,0,2252,2254,3,256,128, + 0,2253,2255,3,300,150,0,2254,2253,1,0,0,0,2254,2255,1,0,0,0,2255, + 2257,1,0,0,0,2256,2258,3,302,151,0,2257,2256,1,0,0,0,2257,2258,1, + 0,0,0,2258,305,1,0,0,0,2259,2264,3,308,154,0,2260,2261,5,397,0,0, + 2261,2263,3,308,154,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,307,1,0,0,0,2266,2264,1,0,0,0,2267, + 2270,3,260,130,0,2268,2269,5,47,0,0,2269,2271,5,426,0,0,2270,2268, + 1,0,0,0,2270,2271,1,0,0,0,2271,309,1,0,0,0,2272,2275,3,256,128,0, + 2273,2275,3,584,292,0,2274,2272,1,0,0,0,2274,2273,1,0,0,0,2275,2277, + 1,0,0,0,2276,2278,3,300,150,0,2277,2276,1,0,0,0,2277,2278,1,0,0, + 0,2278,2280,1,0,0,0,2279,2281,3,302,151,0,2280,2279,1,0,0,0,2280, + 2281,1,0,0,0,2281,311,1,0,0,0,2282,2283,3,260,130,0,2283,2286,3, + 344,172,0,2284,2285,5,47,0,0,2285,2287,5,426,0,0,2286,2284,1,0,0, + 0,2286,2287,1,0,0,0,2287,313,1,0,0,0,2288,2291,3,316,158,0,2289, + 2291,3,318,159,0,2290,2288,1,0,0,0,2290,2289,1,0,0,0,2291,315,1, + 0,0,0,2292,2295,3,288,144,0,2293,2295,3,278,139,0,2294,2292,1,0, + 0,0,2294,2293,1,0,0,0,2295,317,1,0,0,0,2296,2297,3,260,130,0,2297, + 2299,3,344,172,0,2298,2300,3,320,160,0,2299,2298,1,0,0,0,2299,2300, + 1,0,0,0,2300,2303,1,0,0,0,2301,2302,5,47,0,0,2302,2304,5,426,0,0, + 2303,2301,1,0,0,0,2303,2304,1,0,0,0,2304,319,1,0,0,0,2305,2308,3, + 322,161,0,2306,2308,3,324,162,0,2307,2305,1,0,0,0,2307,2306,1,0, + 0,0,2308,321,1,0,0,0,2309,2310,5,55,0,0,2310,2312,3,642,321,0,2311, + 2309,1,0,0,0,2311,2312,1,0,0,0,2312,2313,1,0,0,0,2313,2314,5,269, + 0,0,2314,2315,3,480,240,0,2315,2316,5,399,0,0,2316,2317,3,256,128, + 0,2317,2319,5,400,0,0,2318,2320,3,338,169,0,2319,2318,1,0,0,0,2319, + 2320,1,0,0,0,2320,323,1,0,0,0,2321,2322,5,55,0,0,2322,2324,3,642, + 321,0,2323,2321,1,0,0,0,2323,2324,1,0,0,0,2324,2325,1,0,0,0,2325, + 2327,3,332,166,0,2326,2328,3,338,169,0,2327,2326,1,0,0,0,2327,2328, + 1,0,0,0,2328,325,1,0,0,0,2329,2332,3,328,164,0,2330,2332,3,330,165, + 0,2331,2329,1,0,0,0,2331,2330,1,0,0,0,2332,327,1,0,0,0,2333,2334, + 5,55,0,0,2334,2336,3,642,321,0,2335,2333,1,0,0,0,2335,2336,1,0,0, + 0,2336,2337,1,0,0,0,2337,2338,5,269,0,0,2338,2339,3,480,240,0,2339, + 2340,5,399,0,0,2340,2341,3,256,128,0,2341,2343,5,400,0,0,2342,2344, + 3,340,170,0,2343,2342,1,0,0,0,2343,2344,1,0,0,0,2344,329,1,0,0,0, + 2345,2346,5,55,0,0,2346,2348,3,642,321,0,2347,2345,1,0,0,0,2347, + 2348,1,0,0,0,2348,2349,1,0,0,0,2349,2351,3,332,166,0,2350,2352,3, + 340,170,0,2351,2350,1,0,0,0,2351,2352,1,0,0,0,2352,331,1,0,0,0,2353, + 2354,5,216,0,0,2354,2360,5,219,0,0,2355,2356,5,83,0,0,2356,2360, + 3,334,167,0,2357,2360,3,286,143,0,2358,2360,3,336,168,0,2359,2353, + 1,0,0,0,2359,2355,1,0,0,0,2359,2357,1,0,0,0,2359,2358,1,0,0,0,2360, + 333,1,0,0,0,2361,2365,3,576,288,0,2362,2365,3,554,277,0,2363,2365, + 3,564,282,0,2364,2361,1,0,0,0,2364,2362,1,0,0,0,2364,2363,1,0,0, + 0,2365,335,1,0,0,0,2366,2367,5,251,0,0,2367,2370,5,173,0,0,2368, + 2370,5,358,0,0,2369,2366,1,0,0,0,2369,2368,1,0,0,0,2370,337,1,0, + 0,0,2371,2373,3,268,134,0,2372,2374,3,276,138,0,2373,2372,1,0,0, + 0,2373,2374,1,0,0,0,2374,339,1,0,0,0,2375,2377,3,268,134,0,2376, + 2378,3,276,138,0,2377,2376,1,0,0,0,2377,2378,1,0,0,0,2378,341,1, + 0,0,0,2379,2380,3,260,130,0,2380,2381,5,396,0,0,2381,2384,3,344, + 172,0,2382,2383,5,47,0,0,2383,2385,5,426,0,0,2384,2382,1,0,0,0,2384, + 2385,1,0,0,0,2385,343,1,0,0,0,2386,2387,3,348,174,0,2387,345,1,0, + 0,0,2388,2393,3,344,172,0,2389,2390,5,397,0,0,2390,2392,3,344,172, + 0,2391,2389,1,0,0,0,2392,2395,1,0,0,0,2393,2391,1,0,0,0,2393,2394, + 1,0,0,0,2394,347,1,0,0,0,2395,2393,1,0,0,0,2396,2402,3,350,175,0, + 2397,2402,3,352,176,0,2398,2402,3,354,177,0,2399,2402,3,356,178, + 0,2400,2402,3,358,179,0,2401,2396,1,0,0,0,2401,2397,1,0,0,0,2401, + 2398,1,0,0,0,2401,2399,1,0,0,0,2401,2400,1,0,0,0,2402,349,1,0,0, + 0,2403,2441,5,340,0,0,2404,2441,5,311,0,0,2405,2441,5,162,0,0,2406, + 2441,5,163,0,0,2407,2441,5,26,0,0,2408,2441,5,28,0,0,2409,2441,5, + 131,0,0,2410,2441,5,264,0,0,2411,2413,5,100,0,0,2412,2414,5,248, + 0,0,2413,2412,1,0,0,0,2413,2414,1,0,0,0,2414,2441,1,0,0,0,2415,2441, + 5,71,0,0,2416,2441,5,72,0,0,2417,2441,5,337,0,0,2418,2441,5,338, + 0,0,2419,2420,5,337,0,0,2420,2421,5,387,0,0,2421,2422,5,188,0,0, + 2422,2423,5,336,0,0,2423,2441,5,394,0,0,2424,2441,5,323,0,0,2425, + 2441,5,27,0,0,2426,2434,3,684,342,0,2427,2428,5,399,0,0,2428,2431, + 5,431,0,0,2429,2430,5,397,0,0,2430,2432,5,431,0,0,2431,2429,1,0, + 0,0,2431,2432,1,0,0,0,2432,2433,1,0,0,0,2433,2435,5,400,0,0,2434, + 2427,1,0,0,0,2434,2435,1,0,0,0,2435,2441,1,0,0,0,2436,2437,7,20, + 0,0,2437,2438,5,399,0,0,2438,2439,5,431,0,0,2439,2441,5,400,0,0, + 2440,2403,1,0,0,0,2440,2404,1,0,0,0,2440,2405,1,0,0,0,2440,2406, + 1,0,0,0,2440,2407,1,0,0,0,2440,2408,1,0,0,0,2440,2409,1,0,0,0,2440, + 2410,1,0,0,0,2440,2411,1,0,0,0,2440,2415,1,0,0,0,2440,2416,1,0,0, + 0,2440,2417,1,0,0,0,2440,2418,1,0,0,0,2440,2419,1,0,0,0,2440,2424, + 1,0,0,0,2440,2425,1,0,0,0,2440,2426,1,0,0,0,2440,2436,1,0,0,0,2441, + 351,1,0,0,0,2442,2443,5,16,0,0,2443,2444,5,409,0,0,2444,2445,3,348, + 174,0,2445,2446,5,411,0,0,2446,353,1,0,0,0,2447,2448,5,324,0,0,2448, + 2449,5,409,0,0,2449,2450,3,252,126,0,2450,2451,5,411,0,0,2451,355, + 1,0,0,0,2452,2453,5,198,0,0,2453,2454,5,409,0,0,2454,2455,3,350, + 175,0,2455,2456,5,397,0,0,2456,2457,3,348,174,0,2457,2458,5,411, + 0,0,2458,357,1,0,0,0,2459,2460,5,357,0,0,2460,2461,5,409,0,0,2461, + 2462,3,346,173,0,2462,2463,5,411,0,0,2463,359,1,0,0,0,2464,2466, + 7,21,0,0,2465,2467,7,22,0,0,2466,2465,1,0,0,0,2466,2467,1,0,0,0, + 2467,361,1,0,0,0,2468,2470,3,366,183,0,2469,2468,1,0,0,0,2469,2470, + 1,0,0,0,2470,2471,1,0,0,0,2471,2472,3,364,182,0,2472,363,1,0,0,0, + 2473,2476,3,370,185,0,2474,2476,3,374,187,0,2475,2473,1,0,0,0,2475, + 2474,1,0,0,0,2476,365,1,0,0,0,2477,2478,5,387,0,0,2478,2483,3,368, + 184,0,2479,2480,5,397,0,0,2480,2482,3,368,184,0,2481,2479,1,0,0, + 0,2482,2485,1,0,0,0,2483,2481,1,0,0,0,2483,2484,1,0,0,0,2484,367, + 1,0,0,0,2485,2483,1,0,0,0,2486,2491,3,642,321,0,2487,2488,5,399, + 0,0,2488,2489,3,254,127,0,2489,2490,5,400,0,0,2490,2492,1,0,0,0, + 2491,2487,1,0,0,0,2491,2492,1,0,0,0,2492,2493,1,0,0,0,2493,2494, + 5,17,0,0,2494,2495,5,399,0,0,2495,2496,3,362,181,0,2496,2497,5,400, + 0,0,2497,369,1,0,0,0,2498,2504,3,372,186,0,2499,2500,3,360,180,0, + 2500,2501,3,372,186,0,2501,2503,1,0,0,0,2502,2499,1,0,0,0,2503,2506, + 1,0,0,0,2504,2502,1,0,0,0,2504,2505,1,0,0,0,2505,371,1,0,0,0,2506, + 2504,1,0,0,0,2507,2508,3,450,225,0,2508,2509,3,384,192,0,2509,2511, + 3,502,251,0,2510,2512,3,464,232,0,2511,2510,1,0,0,0,2511,2512,1, + 0,0,0,2512,2514,1,0,0,0,2513,2515,3,496,248,0,2514,2513,1,0,0,0, + 2514,2515,1,0,0,0,2515,2517,1,0,0,0,2516,2518,3,522,261,0,2517,2516, + 1,0,0,0,2517,2518,1,0,0,0,2518,2520,1,0,0,0,2519,2521,3,530,265, + 0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521,2523,1,0,0,0,2522,2524, + 3,514,257,0,2523,2522,1,0,0,0,2523,2524,1,0,0,0,2524,2526,1,0,0, + 0,2525,2527,3,532,266,0,2526,2525,1,0,0,0,2526,2527,1,0,0,0,2527, + 2529,1,0,0,0,2528,2530,3,544,272,0,2529,2528,1,0,0,0,2529,2530,1, + 0,0,0,2530,2532,1,0,0,0,2531,2533,3,548,274,0,2532,2531,1,0,0,0, + 2532,2533,1,0,0,0,2533,2535,1,0,0,0,2534,2536,3,550,275,0,2535,2534, + 1,0,0,0,2535,2536,1,0,0,0,2536,2538,1,0,0,0,2537,2539,3,552,276, + 0,2538,2537,1,0,0,0,2538,2539,1,0,0,0,2539,2541,1,0,0,0,2540,2542, + 3,388,194,0,2541,2540,1,0,0,0,2541,2542,1,0,0,0,2542,2579,1,0,0, + 0,2543,2544,3,450,225,0,2544,2546,3,502,251,0,2545,2547,3,464,232, + 0,2546,2545,1,0,0,0,2546,2547,1,0,0,0,2547,2549,1,0,0,0,2548,2550, + 3,496,248,0,2549,2548,1,0,0,0,2549,2550,1,0,0,0,2550,2552,1,0,0, + 0,2551,2553,3,522,261,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553, + 2555,1,0,0,0,2554,2556,3,530,265,0,2555,2554,1,0,0,0,2555,2556,1, + 0,0,0,2556,2558,1,0,0,0,2557,2559,3,514,257,0,2558,2557,1,0,0,0, + 2558,2559,1,0,0,0,2559,2561,1,0,0,0,2560,2562,3,532,266,0,2561,2560, + 1,0,0,0,2561,2562,1,0,0,0,2562,2564,1,0,0,0,2563,2565,3,544,272, + 0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565,2567,1,0,0,0,2566,2568, + 3,548,274,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2570,1,0,0, + 0,2569,2571,3,550,275,0,2570,2569,1,0,0,0,2570,2571,1,0,0,0,2571, + 2573,1,0,0,0,2572,2574,3,552,276,0,2573,2572,1,0,0,0,2573,2574,1, + 0,0,0,2574,2576,1,0,0,0,2575,2577,3,388,194,0,2576,2575,1,0,0,0, + 2576,2577,1,0,0,0,2577,2579,1,0,0,0,2578,2507,1,0,0,0,2578,2543, + 1,0,0,0,2579,373,1,0,0,0,2580,2581,3,384,192,0,2581,2582,3,378,189, + 0,2582,2585,1,0,0,0,2583,2585,3,378,189,0,2584,2580,1,0,0,0,2584, + 2583,1,0,0,0,2585,375,1,0,0,0,2586,2588,3,502,251,0,2587,2589,3, + 450,225,0,2588,2587,1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0,0, + 2590,2592,3,496,248,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0,2592,2594, + 1,0,0,0,2593,2595,3,522,261,0,2594,2593,1,0,0,0,2594,2595,1,0,0, + 0,2595,2597,1,0,0,0,2596,2598,3,530,265,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,2603,1,0,0,0,2602,2604,3,532,266,0, + 2603,2602,1,0,0,0,2603,2604,1,0,0,0,2604,2611,1,0,0,0,2605,2606, + 5,399,0,0,2606,2607,3,378,189,0,2607,2608,5,400,0,0,2608,2611,1, + 0,0,0,2609,2611,3,498,249,0,2610,2586,1,0,0,0,2610,2605,1,0,0,0, + 2610,2609,1,0,0,0,2611,377,1,0,0,0,2612,2614,3,376,188,0,2613,2615, + 3,380,190,0,2614,2613,1,0,0,0,2614,2615,1,0,0,0,2615,2617,1,0,0, + 0,2616,2618,3,544,272,0,2617,2616,1,0,0,0,2617,2618,1,0,0,0,2618, + 2620,1,0,0,0,2619,2621,3,548,274,0,2620,2619,1,0,0,0,2620,2621,1, + 0,0,0,2621,2623,1,0,0,0,2622,2624,3,550,275,0,2623,2622,1,0,0,0, + 2623,2624,1,0,0,0,2624,2626,1,0,0,0,2625,2627,3,552,276,0,2626,2625, + 1,0,0,0,2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2630,3,388,194, + 0,2629,2628,1,0,0,0,2629,2630,1,0,0,0,2630,379,1,0,0,0,2631,2632, + 3,360,180,0,2632,2633,3,376,188,0,2633,2635,1,0,0,0,2634,2631,1, + 0,0,0,2635,2636,1,0,0,0,2636,2634,1,0,0,0,2636,2637,1,0,0,0,2637, + 381,1,0,0,0,2638,2640,3,366,183,0,2639,2638,1,0,0,0,2639,2640,1, + 0,0,0,2640,2641,1,0,0,0,2641,2642,3,378,189,0,2642,383,1,0,0,0,2643, + 2660,5,161,0,0,2644,2645,5,235,0,0,2645,2647,3,386,193,0,2646,2648, + 3,32,16,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2661,1,0,0,0, + 2649,2651,5,166,0,0,2650,2652,5,329,0,0,2651,2650,1,0,0,0,2651,2652, + 1,0,0,0,2652,2653,1,0,0,0,2653,2658,3,628,314,0,2654,2655,5,399, + 0,0,2655,2656,3,254,127,0,2656,2657,5,400,0,0,2657,2659,1,0,0,0, + 2658,2654,1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0,0,2660,2644, + 1,0,0,0,2660,2649,1,0,0,0,2661,385,1,0,0,0,2662,2664,5,188,0,0,2663, + 2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665,1,0,0,0,2665,2666,5,93, + 0,0,2666,2668,5,426,0,0,2667,2669,3,222,111,0,2668,2667,1,0,0,0, + 2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2672,3,246,123,0,2671,2670, + 1,0,0,0,2671,2672,1,0,0,0,2672,2676,1,0,0,0,2673,2674,5,329,0,0, + 2674,2676,3,628,314,0,2675,2663,1,0,0,0,2675,2673,1,0,0,0,2676,387, + 1,0,0,0,2677,2686,5,185,0,0,2678,2679,5,431,0,0,2679,2681,5,397, + 0,0,2680,2678,1,0,0,0,2680,2681,1,0,0,0,2681,2682,1,0,0,0,2682,2687, + 5,431,0,0,2683,2684,5,431,0,0,2684,2685,5,223,0,0,2685,2687,5,431, + 0,0,2686,2680,1,0,0,0,2686,2683,1,0,0,0,2687,389,1,0,0,0,2688,2689, + 3,256,128,0,2689,2690,5,405,0,0,2690,2691,3,392,196,0,2691,391,1, + 0,0,0,2692,2695,5,83,0,0,2693,2695,3,594,297,0,2694,2692,1,0,0,0, + 2694,2693,1,0,0,0,2695,393,1,0,0,0,2696,2697,5,304,0,0,2697,2702, + 3,390,195,0,2698,2699,5,397,0,0,2699,2701,3,390,195,0,2700,2698, + 1,0,0,0,2701,2704,1,0,0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703, + 395,1,0,0,0,2704,2702,1,0,0,0,2705,2706,5,318,0,0,2706,2715,5,344, + 0,0,2707,2712,3,398,199,0,2708,2709,5,397,0,0,2709,2711,3,398,199, + 0,2710,2708,1,0,0,0,2711,2714,1,0,0,0,2712,2710,1,0,0,0,2712,2713, + 1,0,0,0,2713,2716,1,0,0,0,2714,2712,1,0,0,0,2715,2707,1,0,0,0,2715, + 2716,1,0,0,0,2716,2729,1,0,0,0,2717,2719,5,48,0,0,2718,2720,5,389, + 0,0,2719,2718,1,0,0,0,2719,2720,1,0,0,0,2720,2729,1,0,0,0,2721,2723, + 5,289,0,0,2722,2724,5,389,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0, + 0,2724,2729,1,0,0,0,2725,2726,5,304,0,0,2726,2727,5,22,0,0,2727, + 2729,7,23,0,0,2728,2705,1,0,0,0,2728,2717,1,0,0,0,2728,2721,1,0, + 0,0,2728,2725,1,0,0,0,2729,397,1,0,0,0,2730,2731,5,168,0,0,2731, + 2732,5,182,0,0,2732,2736,5,312,0,0,2733,2734,5,261,0,0,2734,2736, + 7,24,0,0,2735,2730,1,0,0,0,2735,2733,1,0,0,0,2736,399,1,0,0,0,2737, + 2740,3,404,202,0,2738,2740,3,406,203,0,2739,2737,1,0,0,0,2739,2738, + 1,0,0,0,2740,2743,1,0,0,0,2741,2739,1,0,0,0,2741,2742,1,0,0,0,2742, + 2745,1,0,0,0,2743,2741,1,0,0,0,2744,2746,3,402,201,0,2745,2744,1, + 0,0,0,2745,2746,1,0,0,0,2746,401,1,0,0,0,2747,2748,5,383,0,0,2748, + 2749,5,216,0,0,2749,2752,5,201,0,0,2750,2751,5,11,0,0,2751,2753, + 3,584,292,0,2752,2750,1,0,0,0,2752,2753,1,0,0,0,2753,2754,1,0,0, + 0,2754,2755,5,335,0,0,2755,2757,5,161,0,0,2756,2758,3,266,133,0, + 2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758,2759,1,0,0,0,2759,2760, + 5,374,0,0,2760,2761,3,540,270,0,2761,403,1,0,0,0,2762,2763,5,383, + 0,0,2763,2764,5,201,0,0,2764,2765,5,11,0,0,2765,2766,3,584,292,0, + 2766,2770,5,335,0,0,2767,2768,5,365,0,0,2768,2771,3,394,197,0,2769, + 2771,5,86,0,0,2770,2767,1,0,0,0,2770,2769,1,0,0,0,2771,405,1,0,0, + 0,2772,2773,5,383,0,0,2773,2774,5,201,0,0,2774,2778,5,335,0,0,2775, + 2776,5,365,0,0,2776,2779,3,394,197,0,2777,2779,5,86,0,0,2778,2775, + 1,0,0,0,2778,2777,1,0,0,0,2779,407,1,0,0,0,2780,2781,5,246,0,0,2781, + 2782,5,426,0,0,2782,409,1,0,0,0,2783,2784,5,352,0,0,2784,2785,5, + 426,0,0,2785,411,1,0,0,0,2786,2787,5,320,0,0,2787,2788,5,426,0,0, + 2788,413,1,0,0,0,2789,2820,5,9,0,0,2790,2791,5,329,0,0,2791,2792, + 3,480,240,0,2792,2793,3,416,208,0,2793,2821,1,0,0,0,2794,2795,5, + 378,0,0,2795,2797,3,484,242,0,2796,2798,5,17,0,0,2797,2796,1,0,0, + 0,2797,2798,1,0,0,0,2798,2799,1,0,0,0,2799,2800,3,420,210,0,2800, + 2821,1,0,0,0,2801,2802,5,202,0,0,2802,2803,5,378,0,0,2803,2807,3, + 484,242,0,2804,2808,3,36,18,0,2805,2808,3,38,19,0,2806,2808,5,265, + 0,0,2807,2804,1,0,0,0,2807,2805,1,0,0,0,2807,2806,1,0,0,0,2808,2821, + 1,0,0,0,2809,2810,3,70,35,0,2810,2811,3,422,211,0,2811,2821,1,0, + 0,0,2812,2813,5,69,0,0,2813,2821,3,424,212,0,2814,2815,5,155,0,0, + 2815,2816,3,642,321,0,2816,2817,5,224,0,0,2817,2818,3,628,314,0, + 2818,2819,5,265,0,0,2819,2821,1,0,0,0,2820,2790,1,0,0,0,2820,2794, + 1,0,0,0,2820,2801,1,0,0,0,2820,2809,1,0,0,0,2820,2812,1,0,0,0,2820, + 2814,1,0,0,0,2821,415,1,0,0,0,2822,2823,5,274,0,0,2823,2824,5,341, + 0,0,2824,2912,3,482,241,0,2825,2826,5,102,0,0,2826,2912,5,239,0, + 0,2827,2912,3,428,214,0,2828,2830,5,4,0,0,2829,2831,3,32,16,0,2830, + 2829,1,0,0,0,2830,2831,1,0,0,0,2831,2836,1,0,0,0,2832,2834,3,630, + 315,0,2833,2835,3,426,213,0,2834,2833,1,0,0,0,2834,2835,1,0,0,0, + 2835,2837,1,0,0,0,2836,2832,1,0,0,0,2837,2838,1,0,0,0,2838,2836, + 1,0,0,0,2838,2839,1,0,0,0,2839,2912,1,0,0,0,2840,2844,5,342,0,0, + 2841,2843,3,630,315,0,2842,2841,1,0,0,0,2843,2846,1,0,0,0,2844,2842, + 1,0,0,0,2844,2845,1,0,0,0,2845,2912,1,0,0,0,2846,2844,1,0,0,0,2847, + 2851,5,15,0,0,2848,2850,3,630,315,0,2849,2848,1,0,0,0,2850,2853, + 1,0,0,0,2851,2849,1,0,0,0,2851,2852,1,0,0,0,2852,2912,1,0,0,0,2853, + 2851,1,0,0,0,2854,2858,5,353,0,0,2855,2857,3,630,315,0,2856,2855, + 1,0,0,0,2857,2860,1,0,0,0,2858,2856,1,0,0,0,2858,2859,1,0,0,0,2859, + 2912,1,0,0,0,2860,2858,1,0,0,0,2861,2862,5,304,0,0,2862,2863,5,332, + 0,0,2863,2912,3,226,113,0,2864,2865,5,363,0,0,2865,2867,5,332,0, + 0,2866,2868,3,30,15,0,2867,2866,1,0,0,0,2867,2868,1,0,0,0,2868,2869, + 1,0,0,0,2869,2912,3,226,113,0,2870,2912,3,210,105,0,2871,2874,5, + 216,0,0,2872,2875,5,310,0,0,2873,2875,3,40,20,0,2874,2872,1,0,0, + 0,2874,2873,1,0,0,0,2875,2912,1,0,0,0,2876,2877,5,113,0,0,2877,2878, + 3,630,315,0,2878,2879,5,387,0,0,2879,2880,5,329,0,0,2880,2881,3, + 480,240,0,2881,2912,1,0,0,0,2882,2883,5,237,0,0,2883,2884,5,45,0, + 0,2884,2885,5,399,0,0,2885,2886,3,312,156,0,2886,2887,5,400,0,0, + 2887,2912,1,0,0,0,2888,2889,5,101,0,0,2889,2890,5,55,0,0,2890,2912, + 3,642,321,0,2891,2894,5,4,0,0,2892,2895,3,290,145,0,2893,2895,3, + 280,140,0,2894,2892,1,0,0,0,2894,2893,1,0,0,0,2895,2912,1,0,0,0, + 2896,2898,3,630,315,0,2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898,2899, + 1,0,0,0,2899,2912,3,418,209,0,2900,2901,5,304,0,0,2901,2902,5,236, + 0,0,2902,2912,3,126,63,0,2903,2904,5,304,0,0,2904,2905,5,237,0,0, + 2905,2906,5,316,0,0,2906,2907,5,399,0,0,2907,2908,3,204,102,0,2908, + 2909,5,400,0,0,2909,2912,1,0,0,0,2910,2912,3,432,216,0,2911,2822, + 1,0,0,0,2911,2825,1,0,0,0,2911,2827,1,0,0,0,2911,2828,1,0,0,0,2911, + 2840,1,0,0,0,2911,2847,1,0,0,0,2911,2854,1,0,0,0,2911,2861,1,0,0, + 0,2911,2864,1,0,0,0,2911,2870,1,0,0,0,2911,2871,1,0,0,0,2911,2876, + 1,0,0,0,2911,2882,1,0,0,0,2911,2888,1,0,0,0,2911,2891,1,0,0,0,2911, + 2897,1,0,0,0,2911,2900,1,0,0,0,2911,2903,1,0,0,0,2911,2910,1,0,0, + 0,2912,417,1,0,0,0,2913,2914,5,304,0,0,2914,2915,5,129,0,0,2915, + 3046,3,434,217,0,2916,2917,5,304,0,0,2917,2918,5,189,0,0,2918,3046, + 5,426,0,0,2919,3046,5,53,0,0,2920,2930,5,304,0,0,2921,2922,5,301, + 0,0,2922,2926,5,426,0,0,2923,2924,5,387,0,0,2924,2925,5,302,0,0, + 2925,2927,3,226,113,0,2926,2923,1,0,0,0,2926,2927,1,0,0,0,2927,2931, + 1,0,0,0,2928,2929,5,302,0,0,2929,2931,3,226,113,0,2930,2921,1,0, + 0,0,2930,2928,1,0,0,0,2931,3046,1,0,0,0,2932,2933,5,363,0,0,2933, + 2934,5,302,0,0,2934,3046,3,226,113,0,2935,2936,5,274,0,0,2936,2937, + 5,341,0,0,2937,3046,3,630,315,0,2938,2939,5,166,0,0,2939,2940,5, + 431,0,0,2940,3046,5,31,0,0,2941,2942,5,304,0,0,2942,2943,5,310,0, + 0,2943,2944,5,189,0,0,2944,2945,5,399,0,0,2945,2950,3,430,215,0, + 2946,2947,5,397,0,0,2947,2949,3,430,215,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,2953,1,0,0, + 0,2952,2950,1,0,0,0,2953,2954,5,400,0,0,2954,3046,1,0,0,0,2955,2956, + 5,216,0,0,2956,3046,7,25,0,0,2957,3046,3,208,104,0,2958,2959,5,49, + 0,0,2959,2962,5,426,0,0,2960,2961,5,11,0,0,2961,2963,5,380,0,0,2962, + 2960,1,0,0,0,2962,2963,1,0,0,0,2963,2968,1,0,0,0,2964,2965,5,42, + 0,0,2965,2966,5,166,0,0,2966,2967,5,431,0,0,2967,2969,5,31,0,0,2968, + 2964,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2972,3,544, + 272,0,2971,2970,1,0,0,0,2971,2972,1,0,0,0,2972,2974,1,0,0,0,2973, + 2975,3,408,204,0,2974,2973,1,0,0,0,2974,2975,1,0,0,0,2975,2980,1, + 0,0,0,2976,2977,5,387,0,0,2977,2978,5,235,0,0,2978,2979,5,332,0, + 0,2979,2981,3,226,113,0,2980,2976,1,0,0,0,2980,2981,1,0,0,0,2981, + 3046,1,0,0,0,2982,2983,5,365,0,0,2983,2984,5,319,0,0,2984,2986,5, + 134,0,0,2985,2987,5,45,0,0,2986,2985,1,0,0,0,2986,2987,1,0,0,0,2987, + 2988,1,0,0,0,2988,2989,3,256,128,0,2989,2990,5,304,0,0,2990,2993, + 3,226,113,0,2991,2992,5,47,0,0,2992,2994,5,426,0,0,2993,2991,1,0, + 0,0,2993,2994,1,0,0,0,2994,3046,1,0,0,0,2995,2996,5,365,0,0,2996, + 2997,5,319,0,0,2997,2998,5,304,0,0,2998,3046,3,226,113,0,2999,3001, + 5,38,0,0,3000,3002,5,45,0,0,3001,3000,1,0,0,0,3001,3002,1,0,0,0, + 3002,3003,1,0,0,0,3003,3004,3,256,128,0,3004,3005,3,260,130,0,3005, + 3007,3,344,172,0,3006,3008,3,326,163,0,3007,3006,1,0,0,0,3007,3008, + 1,0,0,0,3008,3011,1,0,0,0,3009,3010,5,47,0,0,3010,3012,5,426,0,0, + 3011,3009,1,0,0,0,3011,3012,1,0,0,0,3012,3016,1,0,0,0,3013,3017, + 5,130,0,0,3014,3015,5,6,0,0,3015,3017,3,642,321,0,3016,3013,1,0, + 0,0,3016,3014,1,0,0,0,3016,3017,1,0,0,0,3017,3019,1,0,0,0,3018,3020, + 3,34,17,0,3019,3018,1,0,0,0,3019,3020,1,0,0,0,3020,3046,1,0,0,0, + 3021,3024,5,4,0,0,3022,3024,5,278,0,0,3023,3021,1,0,0,0,3023,3022, + 1,0,0,0,3024,3025,1,0,0,0,3025,3026,5,46,0,0,3026,3027,5,399,0,0, + 3027,3028,3,248,124,0,3028,3030,5,400,0,0,3029,3031,3,34,17,0,3030, + 3029,1,0,0,0,3030,3031,1,0,0,0,3031,3046,1,0,0,0,3032,3033,5,365, + 0,0,3033,3035,5,46,0,0,3034,3036,3,34,17,0,3035,3034,1,0,0,0,3035, + 3036,1,0,0,0,3036,3046,1,0,0,0,3037,3043,3,270,135,0,3038,3040,5, + 218,0,0,3039,3041,5,34,0,0,3040,3039,1,0,0,0,3040,3041,1,0,0,0,3041, + 3044,1,0,0,0,3042,3044,5,222,0,0,3043,3038,1,0,0,0,3043,3042,1,0, + 0,0,3044,3046,1,0,0,0,3045,2913,1,0,0,0,3045,2916,1,0,0,0,3045,2919, + 1,0,0,0,3045,2920,1,0,0,0,3045,2932,1,0,0,0,3045,2935,1,0,0,0,3045, + 2938,1,0,0,0,3045,2941,1,0,0,0,3045,2955,1,0,0,0,3045,2957,1,0,0, + 0,3045,2958,1,0,0,0,3045,2982,1,0,0,0,3045,2995,1,0,0,0,3045,2999, + 1,0,0,0,3045,3023,1,0,0,0,3045,3032,1,0,0,0,3045,3037,1,0,0,0,3046, + 419,1,0,0,0,3047,3048,5,304,0,0,3048,3049,5,332,0,0,3049,3074,3, + 226,113,0,3050,3051,5,363,0,0,3051,3053,5,332,0,0,3052,3054,3,30, + 15,0,3053,3052,1,0,0,0,3053,3054,1,0,0,0,3054,3055,1,0,0,0,3055, + 3074,3,226,113,0,3056,3057,5,274,0,0,3057,3058,5,341,0,0,3058,3074, + 3,482,241,0,3059,3061,5,4,0,0,3060,3062,3,32,16,0,3061,3060,1,0, + 0,0,3061,3062,1,0,0,0,3062,3067,1,0,0,0,3063,3065,3,630,315,0,3064, + 3066,3,426,213,0,3065,3064,1,0,0,0,3065,3066,1,0,0,0,3066,3068,1, + 0,0,0,3067,3063,1,0,0,0,3068,3069,1,0,0,0,3069,3067,1,0,0,0,3069, + 3070,1,0,0,0,3070,3074,1,0,0,0,3071,3074,3,428,214,0,3072,3074,3, + 382,191,0,3073,3047,1,0,0,0,3073,3050,1,0,0,0,3073,3056,1,0,0,0, + 3073,3059,1,0,0,0,3073,3071,1,0,0,0,3073,3072,1,0,0,0,3074,421,1, + 0,0,0,3075,3076,3,474,237,0,3076,3077,5,304,0,0,3077,3078,5,76,0, + 0,3078,3079,3,230,115,0,3079,3091,1,0,0,0,3080,3081,3,474,237,0, + 3081,3082,5,304,0,0,3082,3083,5,236,0,0,3083,3084,3,128,64,0,3084, + 3091,1,0,0,0,3085,3086,3,474,237,0,3086,3087,5,304,0,0,3087,3088, + 7,26,0,0,3088,3089,5,426,0,0,3089,3091,1,0,0,0,3090,3075,1,0,0,0, + 3090,3080,1,0,0,0,3090,3085,1,0,0,0,3091,423,1,0,0,0,3092,3093,3, + 474,237,0,3093,3094,5,304,0,0,3094,3095,5,77,0,0,3095,3096,3,230, + 115,0,3096,3108,1,0,0,0,3097,3098,3,474,237,0,3098,3099,5,304,0, + 0,3099,3100,5,236,0,0,3100,3101,3,128,64,0,3101,3108,1,0,0,0,3102, + 3103,3,474,237,0,3103,3104,5,304,0,0,3104,3105,5,367,0,0,3105,3106, + 5,426,0,0,3106,3108,1,0,0,0,3107,3092,1,0,0,0,3107,3097,1,0,0,0, + 3107,3102,1,0,0,0,3108,425,1,0,0,0,3109,3110,5,189,0,0,3110,3111, + 5,426,0,0,3111,427,1,0,0,0,3112,3114,5,101,0,0,3113,3115,3,30,15, + 0,3114,3113,1,0,0,0,3114,3115,1,0,0,0,3115,3116,1,0,0,0,3116,3117, + 5,237,0,0,3117,3123,3,634,317,0,3118,3119,5,397,0,0,3119,3120,5, + 237,0,0,3120,3122,3,634,317,0,3121,3118,1,0,0,0,3122,3125,1,0,0, + 0,3123,3121,1,0,0,0,3123,3124,1,0,0,0,3124,3128,1,0,0,0,3125,3123, + 1,0,0,0,3126,3127,5,152,0,0,3127,3129,5,254,0,0,3128,3126,1,0,0, + 0,3128,3129,1,0,0,0,3129,3131,1,0,0,0,3130,3132,5,255,0,0,3131,3130, + 1,0,0,0,3131,3132,1,0,0,0,3132,3134,1,0,0,0,3133,3135,3,14,7,0,3134, + 3133,1,0,0,0,3134,3135,1,0,0,0,3135,429,1,0,0,0,3136,3139,3,576, + 288,0,3137,3139,3,296,148,0,3138,3136,1,0,0,0,3138,3137,1,0,0,0, + 3139,3140,1,0,0,0,3140,3141,5,405,0,0,3141,3142,5,426,0,0,3142,431, + 1,0,0,0,3143,3153,5,115,0,0,3144,3145,5,289,0,0,3145,3146,5,399, + 0,0,3146,3154,7,27,0,0,3147,3148,5,118,0,0,3148,3149,5,399,0,0,3149, + 3154,5,426,0,0,3150,3151,5,306,0,0,3151,3152,5,399,0,0,3152,3154, + 5,431,0,0,3153,3144,1,0,0,0,3153,3147,1,0,0,0,3153,3150,1,0,0,0, + 3154,3155,1,0,0,0,3155,3156,5,400,0,0,3156,433,1,0,0,0,3157,3158, + 5,160,0,0,3158,3159,5,426,0,0,3159,3160,5,233,0,0,3160,3161,5,426, + 0,0,3161,3162,5,301,0,0,3162,3167,5,426,0,0,3163,3164,5,159,0,0, + 3164,3165,5,426,0,0,3165,3166,5,232,0,0,3166,3168,5,426,0,0,3167, + 3163,1,0,0,0,3167,3168,1,0,0,0,3168,3171,1,0,0,0,3169,3171,3,642, + 321,0,3170,3157,1,0,0,0,3170,3169,1,0,0,0,3171,435,1,0,0,0,3172, + 3173,5,184,0,0,3173,3182,5,128,0,0,3174,3175,5,184,0,0,3175,3176, + 5,128,0,0,3176,3177,3,642,321,0,3177,3178,5,426,0,0,3178,3182,1, + 0,0,0,3179,3180,5,184,0,0,3180,3182,3,480,240,0,3181,3172,1,0,0, + 0,3181,3174,1,0,0,0,3181,3179,1,0,0,0,3182,437,1,0,0,0,3183,3185, + 5,58,0,0,3184,3186,5,333,0,0,3185,3184,1,0,0,0,3185,3186,1,0,0,0, + 3186,3188,1,0,0,0,3187,3189,5,345,0,0,3188,3187,1,0,0,0,3188,3189, + 1,0,0,0,3189,3191,1,0,0,0,3190,3192,5,123,0,0,3191,3190,1,0,0,0, + 3191,3192,1,0,0,0,3192,3193,1,0,0,0,3193,3195,5,329,0,0,3194,3196, + 3,32,16,0,3195,3194,1,0,0,0,3195,3196,1,0,0,0,3196,3197,1,0,0,0, + 3197,3254,3,482,241,0,3198,3200,3,436,218,0,3199,3201,3,200,100, + 0,3200,3199,1,0,0,0,3200,3201,1,0,0,0,3201,3203,1,0,0,0,3202,3204, + 3,222,111,0,3203,3202,1,0,0,0,3203,3204,1,0,0,0,3204,3206,1,0,0, + 0,3205,3207,3,246,123,0,3206,3205,1,0,0,0,3206,3207,1,0,0,0,3207, + 3209,1,0,0,0,3208,3210,3,426,213,0,3209,3208,1,0,0,0,3209,3210,1, + 0,0,0,3210,3212,1,0,0,0,3211,3213,3,224,112,0,3212,3211,1,0,0,0, + 3212,3213,1,0,0,0,3213,3215,1,0,0,0,3214,3216,3,198,99,0,3215,3214, + 1,0,0,0,3215,3216,1,0,0,0,3216,3255,1,0,0,0,3217,3218,5,399,0,0, + 3218,3219,3,250,125,0,3219,3220,5,400,0,0,3220,3222,1,0,0,0,3221, + 3217,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225,3,196, + 98,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3227,1,0,0,0,3226, + 3228,3,200,100,0,3227,3226,1,0,0,0,3227,3228,1,0,0,0,3228,3230,1, + 0,0,0,3229,3231,3,208,104,0,3230,3229,1,0,0,0,3230,3231,1,0,0,0, + 3231,3233,1,0,0,0,3232,3234,3,210,105,0,3233,3232,1,0,0,0,3233,3234, + 1,0,0,0,3234,3236,1,0,0,0,3235,3237,3,222,111,0,3236,3235,1,0,0, + 0,3236,3237,1,0,0,0,3237,3239,1,0,0,0,3238,3240,3,246,123,0,3239, + 3238,1,0,0,0,3239,3240,1,0,0,0,3240,3242,1,0,0,0,3241,3243,3,426, + 213,0,3242,3241,1,0,0,0,3242,3243,1,0,0,0,3243,3245,1,0,0,0,3244, + 3246,3,224,112,0,3245,3244,1,0,0,0,3245,3246,1,0,0,0,3246,3248,1, + 0,0,0,3247,3249,3,198,99,0,3248,3247,1,0,0,0,3248,3249,1,0,0,0,3249, + 3252,1,0,0,0,3250,3251,5,17,0,0,3251,3253,3,382,191,0,3252,3250, + 1,0,0,0,3252,3253,1,0,0,0,3253,3255,1,0,0,0,3254,3198,1,0,0,0,3254, + 3221,1,0,0,0,3255,3319,1,0,0,0,3256,3257,5,58,0,0,3257,3258,5,195, + 0,0,3258,3260,5,329,0,0,3259,3261,3,32,16,0,3260,3259,1,0,0,0,3260, + 3261,1,0,0,0,3261,3262,1,0,0,0,3262,3316,3,482,241,0,3263,3265,3, + 436,218,0,3264,3266,3,222,111,0,3265,3264,1,0,0,0,3265,3266,1,0, + 0,0,3266,3268,1,0,0,0,3267,3269,3,246,123,0,3268,3267,1,0,0,0,3268, + 3269,1,0,0,0,3269,3271,1,0,0,0,3270,3272,3,426,213,0,3271,3270,1, + 0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3275,3,224,112,0, + 3274,3273,1,0,0,0,3274,3275,1,0,0,0,3275,3277,1,0,0,0,3276,3278, + 3,198,99,0,3277,3276,1,0,0,0,3277,3278,1,0,0,0,3278,3317,1,0,0,0, + 3279,3280,5,399,0,0,3280,3281,3,250,125,0,3281,3282,5,400,0,0,3282, + 3284,1,0,0,0,3283,3279,1,0,0,0,3283,3284,1,0,0,0,3284,3286,1,0,0, + 0,3285,3287,3,196,98,0,3286,3285,1,0,0,0,3286,3287,1,0,0,0,3287, + 3289,1,0,0,0,3288,3290,3,200,100,0,3289,3288,1,0,0,0,3289,3290,1, + 0,0,0,3290,3292,1,0,0,0,3291,3293,3,208,104,0,3292,3291,1,0,0,0, + 3292,3293,1,0,0,0,3293,3295,1,0,0,0,3294,3296,3,210,105,0,3295,3294, + 1,0,0,0,3295,3296,1,0,0,0,3296,3298,1,0,0,0,3297,3299,3,222,111, + 0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299,3301,1,0,0,0,3300,3302, + 3,246,123,0,3301,3300,1,0,0,0,3301,3302,1,0,0,0,3302,3304,1,0,0, + 0,3303,3305,3,426,213,0,3304,3303,1,0,0,0,3304,3305,1,0,0,0,3305, + 3307,1,0,0,0,3306,3308,3,224,112,0,3307,3306,1,0,0,0,3307,3308,1, + 0,0,0,3308,3310,1,0,0,0,3309,3311,3,198,99,0,3310,3309,1,0,0,0,3310, + 3311,1,0,0,0,3311,3314,1,0,0,0,3312,3313,5,17,0,0,3313,3315,3,382, + 191,0,3314,3312,1,0,0,0,3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316, + 3263,1,0,0,0,3316,3283,1,0,0,0,3317,3319,1,0,0,0,3318,3183,1,0,0, + 0,3318,3256,1,0,0,0,3319,439,1,0,0,0,3320,3321,5,58,0,0,3321,3323, + 5,69,0,0,3322,3324,3,32,16,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0, + 3324,3325,1,0,0,0,3325,3328,3,642,321,0,3326,3327,5,352,0,0,3327, + 3329,5,426,0,0,3328,3326,1,0,0,0,3328,3329,1,0,0,0,3329,3332,1,0, + 0,0,3330,3331,5,367,0,0,3331,3333,5,426,0,0,3332,3330,1,0,0,0,3332, + 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3335,5,47,0,0,3335,3337,5,426, + 0,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3341,1,0,0,0,3338,3339, + 5,387,0,0,3339,3340,5,77,0,0,3340,3342,3,230,115,0,3341,3338,1,0, + 0,0,3341,3342,1,0,0,0,3342,441,1,0,0,0,3343,3344,5,101,0,0,3344, + 3346,5,69,0,0,3345,3347,3,30,15,0,3346,3345,1,0,0,0,3346,3347,1, + 0,0,0,3347,3348,1,0,0,0,3348,3349,3,642,321,0,3349,443,1,0,0,0,3350, + 3351,3,642,321,0,3351,3352,5,395,0,0,3352,3354,1,0,0,0,3353,3350, + 1,0,0,0,3354,3357,1,0,0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356, + 3358,1,0,0,0,3357,3355,1,0,0,0,3358,3359,5,415,0,0,3359,445,1,0, + 0,0,3360,3365,3,584,292,0,3361,3362,5,397,0,0,3362,3364,3,584,292, + 0,3363,3361,1,0,0,0,3364,3367,1,0,0,0,3365,3363,1,0,0,0,3365,3366, + 1,0,0,0,3366,447,1,0,0,0,3367,3365,1,0,0,0,3368,3373,3,642,321,0, + 3369,3370,5,397,0,0,3370,3372,3,642,321,0,3371,3369,1,0,0,0,3372, + 3375,1,0,0,0,3373,3371,1,0,0,0,3373,3374,1,0,0,0,3374,449,1,0,0, + 0,3375,3373,1,0,0,0,3376,3377,5,139,0,0,3377,3378,3,452,226,0,3378, + 451,1,0,0,0,3379,3380,5,359,0,0,3380,3383,3,460,230,0,3381,3382, + 5,397,0,0,3382,3384,3,460,230,0,3383,3381,1,0,0,0,3384,3385,1,0, + 0,0,3385,3383,1,0,0,0,3385,3386,1,0,0,0,3386,3389,1,0,0,0,3387,3389, + 3,456,228,0,3388,3379,1,0,0,0,3388,3387,1,0,0,0,3389,453,1,0,0,0, + 3390,3394,3,470,235,0,3391,3393,3,464,232,0,3392,3391,1,0,0,0,3393, + 3396,1,0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,3423,1,0,0, + 0,3396,3394,1,0,0,0,3397,3401,3,500,250,0,3398,3400,3,464,232,0, + 3399,3398,1,0,0,0,3400,3403,1,0,0,0,3401,3399,1,0,0,0,3401,3402, + 1,0,0,0,3402,3423,1,0,0,0,3403,3401,1,0,0,0,3404,3408,3,488,244, + 0,3405,3407,3,464,232,0,3406,3405,1,0,0,0,3407,3410,1,0,0,0,3408, + 3406,1,0,0,0,3408,3409,1,0,0,0,3409,3423,1,0,0,0,3410,3408,1,0,0, + 0,3411,3415,3,494,247,0,3412,3414,3,464,232,0,3413,3412,1,0,0,0, + 3414,3417,1,0,0,0,3415,3413,1,0,0,0,3415,3416,1,0,0,0,3416,3423, + 1,0,0,0,3417,3415,1,0,0,0,3418,3419,5,399,0,0,3419,3420,3,456,228, + 0,3420,3421,5,400,0,0,3421,3423,1,0,0,0,3422,3390,1,0,0,0,3422,3397, + 1,0,0,0,3422,3404,1,0,0,0,3422,3411,1,0,0,0,3422,3418,1,0,0,0,3423, + 455,1,0,0,0,3424,3435,3,454,227,0,3425,3426,3,462,231,0,3426,3431, + 3,458,229,0,3427,3428,5,224,0,0,3428,3432,3,584,292,0,3429,3430, + 5,370,0,0,3430,3432,3,266,133,0,3431,3427,1,0,0,0,3431,3429,1,0, + 0,0,3431,3432,1,0,0,0,3432,3434,1,0,0,0,3433,3425,1,0,0,0,3434,3437, + 1,0,0,0,3435,3433,1,0,0,0,3435,3436,1,0,0,0,3436,457,1,0,0,0,3437, + 3435,1,0,0,0,3438,3443,3,470,235,0,3439,3443,3,500,250,0,3440,3443, + 3,488,244,0,3441,3443,3,494,247,0,3442,3438,1,0,0,0,3442,3439,1, + 0,0,0,3442,3440,1,0,0,0,3442,3441,1,0,0,0,3443,3447,1,0,0,0,3444, + 3446,3,464,232,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,459,1,0,0,0,3449,3447,1,0,0,0,3450, + 3452,5,250,0,0,3451,3450,1,0,0,0,3451,3452,1,0,0,0,3452,3453,1,0, + 0,0,3453,3455,3,478,239,0,3454,3456,3,468,234,0,3455,3454,1,0,0, + 0,3455,3456,1,0,0,0,3456,3461,1,0,0,0,3457,3459,5,17,0,0,3458,3457, + 1,0,0,0,3458,3459,1,0,0,0,3459,3460,1,0,0,0,3460,3462,3,642,321, + 0,3461,3458,1,0,0,0,3461,3462,1,0,0,0,3462,3463,1,0,0,0,3463,3464, + 5,399,0,0,3464,3465,3,446,223,0,3465,3466,5,400,0,0,3466,461,1,0, + 0,0,3467,3482,5,397,0,0,3468,3479,5,157,0,0,3469,3479,5,60,0,0,3470, + 3472,7,28,0,0,3471,3473,5,231,0,0,3472,3471,1,0,0,0,3472,3473,1, + 0,0,0,3473,3479,1,0,0,0,3474,3476,5,180,0,0,3475,3477,7,29,0,0,3476, + 3475,1,0,0,0,3476,3477,1,0,0,0,3477,3479,1,0,0,0,3478,3468,1,0,0, + 0,3478,3469,1,0,0,0,3478,3470,1,0,0,0,3478,3474,1,0,0,0,3478,3479, + 1,0,0,0,3479,3480,1,0,0,0,3480,3482,5,171,0,0,3481,3467,1,0,0,0, + 3481,3478,1,0,0,0,3482,463,1,0,0,0,3483,3484,5,178,0,0,3484,3485, + 5,378,0,0,3485,3486,5,231,0,0,3486,3487,3,554,277,0,3487,3497,3, + 466,233,0,3488,3489,5,17,0,0,3489,3494,3,642,321,0,3490,3491,5,397, + 0,0,3491,3493,3,642,321,0,3492,3490,1,0,0,0,3493,3496,1,0,0,0,3494, + 3492,1,0,0,0,3494,3495,1,0,0,0,3495,3498,1,0,0,0,3496,3494,1,0,0, + 0,3497,3488,1,0,0,0,3497,3498,1,0,0,0,3498,3541,1,0,0,0,3499,3501, + 5,397,0,0,3500,3499,1,0,0,0,3500,3501,1,0,0,0,3501,3502,1,0,0,0, + 3502,3538,5,178,0,0,3503,3504,5,378,0,0,3504,3505,3,554,277,0,3505, + 3515,3,466,233,0,3506,3507,5,17,0,0,3507,3512,3,642,321,0,3508,3509, + 5,397,0,0,3509,3511,3,642,321,0,3510,3508,1,0,0,0,3511,3514,1,0, + 0,0,3512,3510,1,0,0,0,3512,3513,1,0,0,0,3513,3516,1,0,0,0,3514,3512, + 1,0,0,0,3515,3506,1,0,0,0,3515,3516,1,0,0,0,3516,3539,1,0,0,0,3517, + 3518,5,329,0,0,3518,3519,5,399,0,0,3519,3520,3,498,249,0,3520,3522, + 5,400,0,0,3521,3523,5,17,0,0,3522,3521,1,0,0,0,3522,3523,1,0,0,0, + 3523,3524,1,0,0,0,3524,3536,3,466,233,0,3525,3526,5,399,0,0,3526, + 3531,3,642,321,0,3527,3528,5,397,0,0,3528,3530,3,642,321,0,3529, + 3527,1,0,0,0,3530,3533,1,0,0,0,3531,3529,1,0,0,0,3531,3532,1,0,0, + 0,3532,3534,1,0,0,0,3533,3531,1,0,0,0,3534,3535,5,400,0,0,3535,3537, + 1,0,0,0,3536,3525,1,0,0,0,3536,3537,1,0,0,0,3537,3539,1,0,0,0,3538, + 3503,1,0,0,0,3538,3517,1,0,0,0,3539,3541,1,0,0,0,3540,3483,1,0,0, + 0,3540,3500,1,0,0,0,3541,465,1,0,0,0,3542,3543,3,642,321,0,3543, + 467,1,0,0,0,3544,3545,5,331,0,0,3545,3546,5,399,0,0,3546,3547,5, + 30,0,0,3547,3548,5,431,0,0,3548,3549,5,230,0,0,3549,3550,5,221,0, + 0,3550,3560,5,431,0,0,3551,3552,5,224,0,0,3552,3557,3,584,292,0, + 3553,3554,5,397,0,0,3554,3556,3,584,292,0,3555,3553,1,0,0,0,3556, + 3559,1,0,0,0,3557,3555,1,0,0,0,3557,3558,1,0,0,0,3558,3561,1,0,0, + 0,3559,3557,1,0,0,0,3560,3551,1,0,0,0,3560,3561,1,0,0,0,3561,3562, + 1,0,0,0,3562,3572,5,400,0,0,3563,3564,5,331,0,0,3564,3568,5,399, + 0,0,3565,3566,5,431,0,0,3566,3569,7,30,0,0,3567,3569,5,430,0,0,3568, + 3565,1,0,0,0,3568,3567,1,0,0,0,3569,3570,1,0,0,0,3570,3572,5,400, + 0,0,3571,3544,1,0,0,0,3571,3563,1,0,0,0,3572,469,1,0,0,0,3573,3575, + 3,478,239,0,3574,3576,3,226,113,0,3575,3574,1,0,0,0,3575,3576,1, + 0,0,0,3576,3578,1,0,0,0,3577,3579,3,468,234,0,3578,3577,1,0,0,0, + 3578,3579,1,0,0,0,3579,3581,1,0,0,0,3580,3582,3,472,236,0,3581,3580, + 1,0,0,0,3581,3582,1,0,0,0,3582,3587,1,0,0,0,3583,3585,5,17,0,0,3584, + 3583,1,0,0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0,3586,3588,3,642, + 321,0,3587,3584,1,0,0,0,3587,3588,1,0,0,0,3588,471,1,0,0,0,3589, + 3599,5,134,0,0,3590,3591,5,327,0,0,3591,3592,5,17,0,0,3592,3593, + 5,221,0,0,3593,3600,3,584,292,0,3594,3595,5,134,0,0,3595,3596,5, + 328,0,0,3596,3597,5,17,0,0,3597,3598,5,221,0,0,3598,3600,5,431,0, + 0,3599,3590,1,0,0,0,3599,3594,1,0,0,0,3600,473,1,0,0,0,3601,3602, + 3,642,321,0,3602,475,1,0,0,0,3603,3604,3,642,321,0,3604,477,1,0, + 0,0,3605,3608,3,480,240,0,3606,3608,3,484,242,0,3607,3605,1,0,0, + 0,3607,3606,1,0,0,0,3608,479,1,0,0,0,3609,3610,3,642,321,0,3610, + 3611,5,395,0,0,3611,3614,3,642,321,0,3612,3613,5,395,0,0,3613,3615, + 3,642,321,0,3614,3612,1,0,0,0,3614,3615,1,0,0,0,3615,3618,1,0,0, + 0,3616,3618,3,642,321,0,3617,3609,1,0,0,0,3617,3616,1,0,0,0,3618, + 481,1,0,0,0,3619,3620,3,642,321,0,3620,3621,5,395,0,0,3621,3624, + 3,642,321,0,3622,3623,5,395,0,0,3623,3625,3,642,321,0,3624,3622, + 1,0,0,0,3624,3625,1,0,0,0,3625,3628,1,0,0,0,3626,3628,3,642,321, + 0,3627,3619,1,0,0,0,3627,3626,1,0,0,0,3628,483,1,0,0,0,3629,3630, + 3,642,321,0,3630,3631,5,395,0,0,3631,3633,1,0,0,0,3632,3629,1,0, + 0,0,3632,3633,1,0,0,0,3633,3634,1,0,0,0,3634,3635,3,642,321,0,3635, + 485,1,0,0,0,3636,3637,3,642,321,0,3637,3638,5,395,0,0,3638,3640, + 1,0,0,0,3639,3636,1,0,0,0,3639,3640,1,0,0,0,3640,3641,1,0,0,0,3641, + 3642,3,642,321,0,3642,487,1,0,0,0,3643,3644,5,399,0,0,3644,3645, + 3,362,181,0,3645,3647,5,400,0,0,3646,3648,5,17,0,0,3647,3646,1,0, + 0,0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3650,3,642,321,0,3650, + 489,1,0,0,0,3651,3653,3,546,273,0,3652,3654,3,544,272,0,3653,3652, + 1,0,0,0,3653,3654,1,0,0,0,3654,3663,1,0,0,0,3655,3663,3,544,272, + 0,3656,3658,3,550,275,0,3657,3659,3,552,276,0,3658,3657,1,0,0,0, + 3658,3659,1,0,0,0,3659,3663,1,0,0,0,3660,3663,3,552,276,0,3661,3663, + 3,548,274,0,3662,3651,1,0,0,0,3662,3655,1,0,0,0,3662,3656,1,0,0, + 0,3662,3660,1,0,0,0,3662,3661,1,0,0,0,3663,491,1,0,0,0,3664,3668, + 3,488,244,0,3665,3668,3,470,235,0,3666,3668,3,494,247,0,3667,3664, + 1,0,0,0,3667,3665,1,0,0,0,3667,3666,1,0,0,0,3668,493,1,0,0,0,3669, + 3670,3,642,321,0,3670,3671,5,399,0,0,3671,3672,5,224,0,0,3672,3674, + 3,492,246,0,3673,3675,3,490,245,0,3674,3673,1,0,0,0,3674,3675,1, + 0,0,0,3675,3691,1,0,0,0,3676,3677,5,432,0,0,3677,3678,5,399,0,0, + 3678,3679,3,584,292,0,3679,3688,5,400,0,0,3680,3681,5,397,0,0,3681, + 3682,5,432,0,0,3682,3683,5,399,0,0,3683,3684,3,584,292,0,3684,3685, + 5,400,0,0,3685,3687,1,0,0,0,3686,3680,1,0,0,0,3687,3690,1,0,0,0, + 3688,3686,1,0,0,0,3688,3689,1,0,0,0,3689,3692,1,0,0,0,3690,3688, + 1,0,0,0,3691,3676,1,0,0,0,3691,3692,1,0,0,0,3692,3693,1,0,0,0,3693, + 3695,5,400,0,0,3694,3696,3,642,321,0,3695,3694,1,0,0,0,3695,3696, + 1,0,0,0,3696,495,1,0,0,0,3697,3698,5,384,0,0,3698,3699,3,584,292, + 0,3699,497,1,0,0,0,3700,3719,5,374,0,0,3701,3706,3,540,270,0,3702, + 3703,5,397,0,0,3703,3705,3,540,270,0,3704,3702,1,0,0,0,3705,3708, + 1,0,0,0,3706,3704,1,0,0,0,3706,3707,1,0,0,0,3707,3720,1,0,0,0,3708, + 3706,1,0,0,0,3709,3710,5,399,0,0,3710,3711,3,536,268,0,3711,3716, + 5,400,0,0,3712,3713,5,397,0,0,3713,3715,3,540,270,0,3714,3712,1, + 0,0,0,3715,3718,1,0,0,0,3716,3714,1,0,0,0,3716,3717,1,0,0,0,3717, + 3720,1,0,0,0,3718,3716,1,0,0,0,3719,3701,1,0,0,0,3719,3709,1,0,0, + 0,3720,499,1,0,0,0,3721,3722,5,329,0,0,3722,3723,5,399,0,0,3723, + 3724,3,498,249,0,3724,3726,5,400,0,0,3725,3727,5,17,0,0,3726,3725, + 1,0,0,0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728,3738,3,466,233, + 0,3729,3730,5,399,0,0,3730,3735,3,642,321,0,3731,3732,5,397,0,0, + 3732,3734,3,642,321,0,3733,3731,1,0,0,0,3734,3737,1,0,0,0,3735,3733, + 1,0,0,0,3735,3736,1,0,0,0,3736,3739,1,0,0,0,3737,3735,1,0,0,0,3738, + 3729,1,0,0,0,3738,3739,1,0,0,0,3739,3740,1,0,0,0,3740,3741,5,400, + 0,0,3741,501,1,0,0,0,3742,3744,5,299,0,0,3743,3745,5,436,0,0,3744, + 3743,1,0,0,0,3744,3745,1,0,0,0,3745,3759,1,0,0,0,3746,3748,7,22, + 0,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0,3748,3749,1,0,0,0,3749,3754, + 3,506,253,0,3750,3751,5,397,0,0,3751,3753,3,506,253,0,3752,3750, + 1,0,0,0,3753,3756,1,0,0,0,3754,3752,1,0,0,0,3754,3755,1,0,0,0,3755, + 3760,1,0,0,0,3756,3754,1,0,0,0,3757,3758,5,347,0,0,3758,3760,3,504, + 252,0,3759,3747,1,0,0,0,3759,3757,1,0,0,0,3760,3763,1,0,0,0,3761, + 3763,3,508,254,0,3762,3742,1,0,0,0,3762,3761,1,0,0,0,3763,503,1, + 0,0,0,3764,3765,5,399,0,0,3765,3766,3,512,256,0,3766,3767,5,400, + 0,0,3767,3768,3,212,106,0,3768,3769,3,216,108,0,3769,3770,5,370, + 0,0,3770,3783,5,426,0,0,3771,3781,5,17,0,0,3772,3775,5,399,0,0,3773, + 3776,3,448,224,0,3774,3776,3,248,124,0,3775,3773,1,0,0,0,3775,3774, + 1,0,0,0,3776,3777,1,0,0,0,3777,3778,5,400,0,0,3778,3782,1,0,0,0, + 3779,3782,3,448,224,0,3780,3782,3,248,124,0,3781,3772,1,0,0,0,3781, + 3779,1,0,0,0,3781,3780,1,0,0,0,3782,3784,1,0,0,0,3783,3771,1,0,0, + 0,3783,3784,1,0,0,0,3784,3785,1,0,0,0,3785,3786,3,212,106,0,3786, + 3787,3,214,107,0,3787,505,1,0,0,0,3788,3812,3,444,222,0,3789,3792, + 3,256,128,0,3790,3792,3,584,292,0,3791,3789,1,0,0,0,3791,3790,1, + 0,0,0,3792,3809,1,0,0,0,3793,3795,5,17,0,0,3794,3793,1,0,0,0,3794, + 3795,1,0,0,0,3795,3796,1,0,0,0,3796,3810,3,642,321,0,3797,3798,5, + 17,0,0,3798,3799,5,399,0,0,3799,3804,3,642,321,0,3800,3801,5,397, + 0,0,3801,3803,3,642,321,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0,3804, + 3802,1,0,0,0,3804,3805,1,0,0,0,3805,3807,1,0,0,0,3806,3804,1,0,0, + 0,3807,3808,5,400,0,0,3808,3810,1,0,0,0,3809,3794,1,0,0,0,3809,3797, + 1,0,0,0,3809,3810,1,0,0,0,3810,3812,1,0,0,0,3811,3788,1,0,0,0,3811, + 3791,1,0,0,0,3812,507,1,0,0,0,3813,3814,7,31,0,0,3814,3815,3,512, + 256,0,3815,3816,3,212,106,0,3816,3817,3,216,108,0,3817,3818,5,370, + 0,0,3818,3831,5,426,0,0,3819,3829,5,17,0,0,3820,3823,5,399,0,0,3821, + 3824,3,448,224,0,3822,3824,3,248,124,0,3823,3821,1,0,0,0,3823,3822, + 1,0,0,0,3824,3825,1,0,0,0,3825,3826,5,400,0,0,3826,3830,1,0,0,0, + 3827,3830,3,448,224,0,3828,3830,3,248,124,0,3829,3820,1,0,0,0,3829, + 3827,1,0,0,0,3829,3828,1,0,0,0,3830,3832,1,0,0,0,3831,3819,1,0,0, + 0,3831,3832,1,0,0,0,3832,3833,1,0,0,0,3833,3834,3,212,106,0,3834, + 3835,3,214,107,0,3835,509,1,0,0,0,3836,3839,3,444,222,0,3837,3839, + 3,584,292,0,3838,3836,1,0,0,0,3838,3837,1,0,0,0,3839,511,1,0,0,0, + 3840,3845,3,510,255,0,3841,3842,5,397,0,0,3842,3844,3,510,255,0, + 3843,3841,1,0,0,0,3844,3847,1,0,0,0,3845,3843,1,0,0,0,3845,3846, + 1,0,0,0,3846,513,1,0,0,0,3847,3845,1,0,0,0,3848,3849,5,386,0,0,3849, + 3850,3,642,321,0,3850,3851,5,17,0,0,3851,3859,3,516,258,0,3852,3853, + 5,397,0,0,3853,3854,3,642,321,0,3854,3855,5,17,0,0,3855,3856,3,516, + 258,0,3856,3858,1,0,0,0,3857,3852,1,0,0,0,3858,3861,1,0,0,0,3859, + 3857,1,0,0,0,3859,3860,1,0,0,0,3860,515,1,0,0,0,3861,3859,1,0,0, + 0,3862,3875,3,642,321,0,3863,3865,5,399,0,0,3864,3866,3,642,321, + 0,3865,3864,1,0,0,0,3865,3866,1,0,0,0,3866,3868,1,0,0,0,3867,3869, + 3,490,245,0,3868,3867,1,0,0,0,3868,3869,1,0,0,0,3869,3871,1,0,0, + 0,3870,3872,3,518,259,0,3871,3870,1,0,0,0,3871,3872,1,0,0,0,3872, + 3873,1,0,0,0,3873,3875,5,400,0,0,3874,3862,1,0,0,0,3874,3863,1,0, + 0,0,3875,517,1,0,0,0,3876,3890,7,32,0,0,3877,3878,5,354,0,0,3878, + 3884,5,247,0,0,3879,3880,5,62,0,0,3880,3884,5,291,0,0,3881,3882, + 5,431,0,0,3882,3884,5,247,0,0,3883,3877,1,0,0,0,3883,3879,1,0,0, + 0,3883,3881,1,0,0,0,3884,3891,1,0,0,0,3885,3886,5,25,0,0,3886,3887, + 3,520,260,0,3887,3888,5,11,0,0,3888,3889,3,520,260,0,3889,3891,1, + 0,0,0,3890,3883,1,0,0,0,3890,3885,1,0,0,0,3891,519,1,0,0,0,3892, + 3893,7,33,0,0,3893,3897,7,34,0,0,3894,3895,5,62,0,0,3895,3897,5, + 291,0,0,3896,3892,1,0,0,0,3896,3894,1,0,0,0,3897,521,1,0,0,0,3898, + 3899,5,144,0,0,3899,3905,5,32,0,0,3900,3906,3,256,128,0,3901,3906, + 3,524,262,0,3902,3906,3,526,263,0,3903,3904,5,399,0,0,3904,3906, + 5,400,0,0,3905,3900,1,0,0,0,3905,3901,1,0,0,0,3905,3902,1,0,0,0, + 3905,3903,1,0,0,0,3906,523,1,0,0,0,3907,3910,5,290,0,0,3908,3910, + 5,61,0,0,3909,3907,1,0,0,0,3909,3908,1,0,0,0,3910,3911,1,0,0,0,3911, + 3912,5,399,0,0,3912,3917,3,584,292,0,3913,3914,5,397,0,0,3914,3916, + 3,584,292,0,3915,3913,1,0,0,0,3916,3919,1,0,0,0,3917,3915,1,0,0, + 0,3917,3918,1,0,0,0,3918,3920,1,0,0,0,3919,3917,1,0,0,0,3920,3921, + 5,400,0,0,3921,525,1,0,0,0,3922,3927,3,542,271,0,3923,3924,5,387, + 0,0,3924,3928,5,290,0,0,3925,3926,5,387,0,0,3926,3928,5,61,0,0,3927, + 3923,1,0,0,0,3927,3925,1,0,0,0,3927,3928,1,0,0,0,3928,3942,1,0,0, + 0,3929,3930,5,145,0,0,3930,3931,5,305,0,0,3931,3932,5,399,0,0,3932, + 3937,3,528,264,0,3933,3934,5,397,0,0,3934,3936,3,528,264,0,3935, + 3933,1,0,0,0,3936,3939,1,0,0,0,3937,3935,1,0,0,0,3937,3938,1,0,0, + 0,3938,3940,1,0,0,0,3939,3937,1,0,0,0,3940,3941,5,400,0,0,3941,3943, + 1,0,0,0,3942,3929,1,0,0,0,3942,3943,1,0,0,0,3943,527,1,0,0,0,3944, + 3946,5,399,0,0,3945,3947,3,584,292,0,3946,3945,1,0,0,0,3946,3947, + 1,0,0,0,3947,3952,1,0,0,0,3948,3949,5,397,0,0,3949,3951,3,584,292, + 0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0,0,3952,3953, + 1,0,0,0,3953,3955,1,0,0,0,3954,3952,1,0,0,0,3955,3958,5,400,0,0, + 3956,3958,3,584,292,0,3957,3944,1,0,0,0,3957,3956,1,0,0,0,3958,529, + 1,0,0,0,3959,3960,5,146,0,0,3960,3961,3,584,292,0,3961,531,1,0,0, + 0,3962,3963,5,256,0,0,3963,3964,3,584,292,0,3964,533,1,0,0,0,3965, + 3968,5,83,0,0,3966,3968,3,584,292,0,3967,3965,1,0,0,0,3967,3966, + 1,0,0,0,3968,535,1,0,0,0,3969,3971,3,584,292,0,3970,3972,5,17,0, + 0,3971,3970,1,0,0,0,3971,3972,1,0,0,0,3972,3974,1,0,0,0,3973,3975, + 3,642,321,0,3974,3973,1,0,0,0,3974,3975,1,0,0,0,3975,3986,1,0,0, + 0,3976,3977,5,397,0,0,3977,3979,3,584,292,0,3978,3980,5,17,0,0,3979, + 3978,1,0,0,0,3979,3980,1,0,0,0,3980,3982,1,0,0,0,3981,3983,3,642, + 321,0,3982,3981,1,0,0,0,3982,3983,1,0,0,0,3983,3985,1,0,0,0,3984, + 3976,1,0,0,0,3985,3988,1,0,0,0,3986,3984,1,0,0,0,3986,3987,1,0,0, + 0,3987,537,1,0,0,0,3988,3986,1,0,0,0,3989,3992,3,540,270,0,3990, + 3992,3,542,271,0,3991,3989,1,0,0,0,3991,3990,1,0,0,0,3992,539,1, + 0,0,0,3993,3994,5,399,0,0,3994,3995,3,542,271,0,3995,3996,5,400, + 0,0,3996,541,1,0,0,0,3997,4004,3,534,267,0,3998,3999,5,397,0,0,3999, + 4001,3,534,267,0,4000,3998,1,0,0,0,4001,4002,1,0,0,0,4002,4000,1, + 0,0,0,4002,4003,1,0,0,0,4003,4005,1,0,0,0,4004,4000,1,0,0,0,4004, + 4005,1,0,0,0,4005,543,1,0,0,0,4006,4007,5,229,0,0,4007,4008,5,32, + 0,0,4008,4013,3,310,155,0,4009,4010,5,397,0,0,4010,4012,3,310,155, + 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,545,1,0,0,0,4015,4013,1,0,0,0,4016,4017,5,237,0,0,4017, + 4018,5,32,0,0,4018,4019,3,538,269,0,4019,547,1,0,0,0,4020,4021,5, + 41,0,0,4021,4022,5,32,0,0,4022,4023,3,538,269,0,4023,549,1,0,0,0, + 4024,4025,5,97,0,0,4025,4026,5,32,0,0,4026,4027,3,538,269,0,4027, + 551,1,0,0,0,4028,4029,5,314,0,0,4029,4049,5,32,0,0,4030,4031,5,399, + 0,0,4031,4036,3,310,155,0,4032,4033,5,397,0,0,4033,4035,3,310,155, + 0,4034,4032,1,0,0,0,4035,4038,1,0,0,0,4036,4034,1,0,0,0,4036,4037, + 1,0,0,0,4037,4039,1,0,0,0,4038,4036,1,0,0,0,4039,4040,5,400,0,0, + 4040,4050,1,0,0,0,4041,4046,3,310,155,0,4042,4043,5,397,0,0,4043, + 4045,3,310,155,0,4044,4042,1,0,0,0,4045,4048,1,0,0,0,4046,4044,1, + 0,0,0,4046,4047,1,0,0,0,4047,4050,1,0,0,0,4048,4046,1,0,0,0,4049, + 4030,1,0,0,0,4049,4041,1,0,0,0,4050,553,1,0,0,0,4051,4052,5,349, + 0,0,4052,4056,5,399,0,0,4053,4057,5,179,0,0,4054,4057,5,343,0,0, + 4055,4057,5,29,0,0,4056,4053,1,0,0,0,4056,4054,1,0,0,0,4056,4055, + 1,0,0,0,4056,4057,1,0,0,0,4057,4059,1,0,0,0,4058,4060,3,510,255, + 0,4059,4058,1,0,0,0,4059,4060,1,0,0,0,4060,4061,1,0,0,0,4061,4062, + 5,139,0,0,4062,4063,3,510,255,0,4063,4064,5,400,0,0,4064,4105,1, + 0,0,0,4065,4066,3,562,281,0,4066,4081,5,399,0,0,4067,4082,5,415, + 0,0,4068,4070,7,22,0,0,4069,4068,1,0,0,0,4069,4070,1,0,0,0,4070, + 4079,1,0,0,0,4071,4076,3,510,255,0,4072,4073,5,397,0,0,4073,4075, + 3,510,255,0,4074,4072,1,0,0,0,4075,4078,1,0,0,0,4076,4074,1,0,0, + 0,4076,4077,1,0,0,0,4077,4080,1,0,0,0,4078,4076,1,0,0,0,4079,4071, + 1,0,0,0,4079,4080,1,0,0,0,4080,4082,1,0,0,0,4081,4067,1,0,0,0,4081, + 4069,1,0,0,0,4082,4102,1,0,0,0,4083,4084,5,400,0,0,4084,4085,5,388, + 0,0,4085,4086,5,144,0,0,4086,4087,5,399,0,0,4087,4088,3,544,272, + 0,4088,4089,5,400,0,0,4089,4103,1,0,0,0,4090,4092,5,400,0,0,4091, + 4093,3,556,278,0,4092,4091,1,0,0,0,4092,4093,1,0,0,0,4093,4094,1, + 0,0,0,4094,4095,5,234,0,0,4095,4103,3,516,258,0,4096,4097,3,556, + 278,0,4097,4098,5,400,0,0,4098,4099,5,234,0,0,4099,4100,3,516,258, + 0,4100,4103,1,0,0,0,4101,4103,5,400,0,0,4102,4083,1,0,0,0,4102,4090, + 1,0,0,0,4102,4096,1,0,0,0,4102,4101,1,0,0,0,4103,4105,1,0,0,0,4104, + 4051,1,0,0,0,4104,4065,1,0,0,0,4105,555,1,0,0,0,4106,4107,7,35,0, + 0,4107,4108,5,220,0,0,4108,557,1,0,0,0,4109,4110,3,644,322,0,4110, + 559,1,0,0,0,4111,4114,3,644,322,0,4112,4114,5,426,0,0,4113,4111, + 1,0,0,0,4113,4112,1,0,0,0,4114,561,1,0,0,0,4115,4119,3,644,322,0, + 4116,4119,3,650,325,0,4117,4119,3,640,320,0,4118,4115,1,0,0,0,4118, + 4116,1,0,0,0,4118,4117,1,0,0,0,4119,563,1,0,0,0,4120,4121,5,36,0, + 0,4121,4122,5,399,0,0,4122,4123,3,584,292,0,4123,4124,5,17,0,0,4124, + 4127,3,350,175,0,4125,4126,5,137,0,0,4126,4128,5,426,0,0,4127,4125, + 1,0,0,0,4127,4128,1,0,0,0,4128,4129,1,0,0,0,4129,4130,5,400,0,0, + 4130,565,1,0,0,0,4131,4132,5,35,0,0,4132,4138,3,584,292,0,4133,4134, + 5,383,0,0,4134,4135,3,584,292,0,4135,4136,5,335,0,0,4136,4137,3, + 584,292,0,4137,4139,1,0,0,0,4138,4133,1,0,0,0,4139,4140,1,0,0,0, + 4140,4138,1,0,0,0,4140,4141,1,0,0,0,4141,4144,1,0,0,0,4142,4143, + 5,105,0,0,4143,4145,3,584,292,0,4144,4142,1,0,0,0,4144,4145,1,0, + 0,0,4145,4146,1,0,0,0,4146,4147,5,108,0,0,4147,567,1,0,0,0,4148, + 4154,5,35,0,0,4149,4150,5,383,0,0,4150,4151,3,584,292,0,4151,4152, + 5,335,0,0,4152,4153,3,584,292,0,4153,4155,1,0,0,0,4154,4149,1,0, + 0,0,4155,4156,1,0,0,0,4156,4154,1,0,0,0,4156,4157,1,0,0,0,4157,4160, + 1,0,0,0,4158,4159,5,105,0,0,4159,4161,3,584,292,0,4160,4158,1,0, + 0,0,4160,4161,1,0,0,0,4161,4162,1,0,0,0,4162,4163,5,108,0,0,4163, + 569,1,0,0,0,4164,4165,5,132,0,0,4165,4166,5,399,0,0,4166,4169,3, + 584,292,0,4167,4168,5,341,0,0,4168,4170,3,574,287,0,4169,4167,1, + 0,0,0,4169,4170,1,0,0,0,4170,4171,1,0,0,0,4171,4172,5,400,0,0,4172, + 571,1,0,0,0,4173,4174,5,124,0,0,4174,4175,5,399,0,0,4175,4176,3, + 574,287,0,4176,4177,5,139,0,0,4177,4178,3,584,292,0,4178,4179,5, + 400,0,0,4179,573,1,0,0,0,4180,4189,3,670,335,0,4181,4189,5,257,0, + 0,4182,4189,3,672,336,0,4183,4189,3,674,337,0,4184,4189,3,676,338, + 0,4185,4189,3,678,339,0,4186,4189,3,680,340,0,4187,4189,3,682,341, + 0,4188,4180,1,0,0,0,4188,4181,1,0,0,0,4188,4182,1,0,0,0,4188,4183, + 1,0,0,0,4188,4184,1,0,0,0,4188,4185,1,0,0,0,4188,4186,1,0,0,0,4188, + 4187,1,0,0,0,4189,575,1,0,0,0,4190,4191,3,578,289,0,4191,4192,3, + 582,291,0,4192,4219,1,0,0,0,4193,4219,5,431,0,0,4194,4195,5,71,0, + 0,4195,4219,5,426,0,0,4196,4219,5,63,0,0,4197,4198,5,337,0,0,4198, + 4219,5,426,0,0,4199,4219,5,64,0,0,4200,4201,5,338,0,0,4201,4219, + 5,426,0,0,4202,4206,5,426,0,0,4203,4205,5,426,0,0,4204,4203,1,0, + 0,0,4205,4208,1,0,0,0,4206,4204,1,0,0,0,4206,4207,1,0,0,0,4207,4219, + 1,0,0,0,4208,4206,1,0,0,0,4209,4219,5,428,0,0,4210,4219,5,429,0, + 0,4211,4212,5,433,0,0,4212,4219,5,427,0,0,4213,4219,5,350,0,0,4214, + 4219,5,125,0,0,4215,4219,5,219,0,0,4216,4219,5,424,0,0,4217,4219, + 3,258,129,0,4218,4190,1,0,0,0,4218,4193,1,0,0,0,4218,4194,1,0,0, + 0,4218,4196,1,0,0,0,4218,4197,1,0,0,0,4218,4199,1,0,0,0,4218,4200, + 1,0,0,0,4218,4202,1,0,0,0,4218,4209,1,0,0,0,4218,4210,1,0,0,0,4218, + 4211,1,0,0,0,4218,4213,1,0,0,0,4218,4214,1,0,0,0,4218,4215,1,0,0, + 0,4218,4216,1,0,0,0,4218,4217,1,0,0,0,4219,577,1,0,0,0,4220,4221, + 7,27,0,0,4221,579,1,0,0,0,4222,4223,5,399,0,0,4223,4224,3,578,289, + 0,4224,4225,5,400,0,0,4225,4226,3,582,291,0,4226,4238,1,0,0,0,4227, + 4233,5,165,0,0,4228,4234,3,578,289,0,4229,4230,5,399,0,0,4230,4231, + 3,584,292,0,4231,4232,5,400,0,0,4232,4234,1,0,0,0,4233,4228,1,0, + 0,0,4233,4229,1,0,0,0,4234,4235,1,0,0,0,4235,4236,3,582,291,0,4236, + 4238,1,0,0,0,4237,4222,1,0,0,0,4237,4227,1,0,0,0,4238,581,1,0,0, + 0,4239,4240,3,670,335,0,4240,4241,5,341,0,0,4241,4242,3,672,336, + 0,4242,4254,1,0,0,0,4243,4244,3,676,338,0,4244,4245,5,341,0,0,4245, + 4246,3,682,341,0,4246,4254,1,0,0,0,4247,4254,3,670,335,0,4248,4254, + 3,672,336,0,4249,4254,3,676,338,0,4250,4254,3,678,339,0,4251,4254, + 3,680,340,0,4252,4254,3,682,341,0,4253,4239,1,0,0,0,4253,4243,1, + 0,0,0,4253,4247,1,0,0,0,4253,4248,1,0,0,0,4253,4249,1,0,0,0,4253, + 4250,1,0,0,0,4253,4251,1,0,0,0,4253,4252,1,0,0,0,4254,583,1,0,0, + 0,4255,4260,3,626,313,0,4256,4257,5,228,0,0,4257,4259,3,626,313, + 0,4258,4256,1,0,0,0,4259,4262,1,0,0,0,4260,4258,1,0,0,0,4260,4261, + 1,0,0,0,4261,585,1,0,0,0,4262,4260,1,0,0,0,4263,4275,3,576,288,0, + 4264,4275,3,580,290,0,4265,4275,3,564,282,0,4266,4275,3,572,286, + 0,4267,4275,3,570,285,0,4268,4275,3,566,283,0,4269,4275,3,568,284, + 0,4270,4275,3,604,302,0,4271,4275,3,554,277,0,4272,4275,3,540,270, + 0,4273,4275,3,642,321,0,4274,4263,1,0,0,0,4274,4264,1,0,0,0,4274, + 4265,1,0,0,0,4274,4266,1,0,0,0,4274,4267,1,0,0,0,4274,4268,1,0,0, + 0,4274,4269,1,0,0,0,4274,4270,1,0,0,0,4274,4271,1,0,0,0,4274,4272, + 1,0,0,0,4274,4273,1,0,0,0,4275,587,1,0,0,0,4276,4278,7,36,0,0,4277, + 4276,1,0,0,0,4278,4281,1,0,0,0,4279,4277,1,0,0,0,4279,4280,1,0,0, + 0,4280,4282,1,0,0,0,4281,4279,1,0,0,0,4282,4291,3,586,293,0,4283, + 4284,5,401,0,0,4284,4285,3,584,292,0,4285,4286,5,402,0,0,4286,4290, + 1,0,0,0,4287,4288,5,395,0,0,4288,4290,3,642,321,0,4289,4283,1,0, + 0,0,4289,4287,1,0,0,0,4290,4293,1,0,0,0,4291,4289,1,0,0,0,4291,4292, + 1,0,0,0,4292,589,1,0,0,0,4293,4291,1,0,0,0,4294,4299,3,588,294,0, + 4295,4296,5,423,0,0,4296,4298,3,588,294,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,591,1,0,0, + 0,4301,4299,1,0,0,0,4302,4307,3,590,295,0,4303,4304,7,37,0,0,4304, + 4306,3,590,295,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1, + 0,0,0,4307,4308,1,0,0,0,4308,593,1,0,0,0,4309,4307,1,0,0,0,4310, + 4315,3,592,296,0,4311,4312,7,38,0,0,4312,4314,3,592,296,0,4313,4311, + 1,0,0,0,4314,4317,1,0,0,0,4315,4313,1,0,0,0,4315,4316,1,0,0,0,4316, + 595,1,0,0,0,4317,4315,1,0,0,0,4318,4323,3,594,297,0,4319,4320,5, + 422,0,0,4320,4322,3,594,297,0,4321,4319,1,0,0,0,4322,4325,1,0,0, + 0,4323,4321,1,0,0,0,4323,4324,1,0,0,0,4324,597,1,0,0,0,4325,4323, + 1,0,0,0,4326,4331,3,596,298,0,4327,4328,5,419,0,0,4328,4330,3,596, + 298,0,4329,4327,1,0,0,0,4330,4333,1,0,0,0,4331,4329,1,0,0,0,4331, + 4332,1,0,0,0,4332,599,1,0,0,0,4333,4331,1,0,0,0,4334,4339,3,598, + 299,0,4335,4336,5,421,0,0,4336,4338,3,598,299,0,4337,4335,1,0,0, + 0,4338,4341,1,0,0,0,4339,4337,1,0,0,0,4339,4340,1,0,0,0,4340,601, + 1,0,0,0,4341,4339,1,0,0,0,4342,4343,7,39,0,0,4343,603,1,0,0,0,4344, + 4345,5,399,0,0,4345,4346,3,378,189,0,4346,4347,5,400,0,0,4347,605, + 1,0,0,0,4348,4350,3,600,300,0,4349,4351,3,608,304,0,4350,4349,1, + 0,0,0,4350,4351,1,0,0,0,4351,4355,1,0,0,0,4352,4353,5,117,0,0,4353, + 4355,3,604,302,0,4354,4348,1,0,0,0,4354,4352,1,0,0,0,4355,607,1, + 0,0,0,4356,4357,3,602,301,0,4357,4358,3,600,300,0,4358,4363,1,0, + 0,0,4359,4363,3,610,305,0,4360,4361,5,216,0,0,4361,4363,3,614,307, + 0,4362,4356,1,0,0,0,4362,4359,1,0,0,0,4362,4360,1,0,0,0,4363,609, + 1,0,0,0,4364,4365,5,154,0,0,4365,4379,3,612,306,0,4366,4367,5,25, + 0,0,4367,4368,3,600,300,0,4368,4369,5,11,0,0,4369,4370,3,600,300, + 0,4370,4379,1,0,0,0,4371,4372,5,184,0,0,4372,4373,7,40,0,0,4373, + 4379,3,540,270,0,4374,4375,3,638,319,0,4375,4376,7,41,0,0,4376,4377, + 3,604,302,0,4377,4379,1,0,0,0,4378,4364,1,0,0,0,4378,4366,1,0,0, + 0,4378,4371,1,0,0,0,4378,4374,1,0,0,0,4379,611,1,0,0,0,4380,4383, + 3,604,302,0,4381,4383,3,540,270,0,4382,4380,1,0,0,0,4382,4381,1, + 0,0,0,4383,613,1,0,0,0,4384,4385,7,42,0,0,4385,4388,3,600,300,0, + 4386,4388,3,610,305,0,4387,4384,1,0,0,0,4387,4386,1,0,0,0,4388,615, + 1,0,0,0,4389,4390,5,167,0,0,4390,4391,5,96,0,0,4391,4392,5,139,0, + 0,4392,617,1,0,0,0,4393,4401,5,405,0,0,4394,4401,5,406,0,0,4395, + 4401,5,407,0,0,4396,4397,5,167,0,0,4397,4398,5,216,0,0,4398,4399, + 5,96,0,0,4399,4401,5,139,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,4401,619,1,0,0,0,4402,4411,3, + 606,303,0,4403,4404,3,618,309,0,4404,4405,3,606,303,0,4405,4410, + 1,0,0,0,4406,4407,3,616,308,0,4407,4408,3,606,303,0,4408,4410,1, + 0,0,0,4409,4403,1,0,0,0,4409,4406,1,0,0,0,4410,4413,1,0,0,0,4411, + 4409,1,0,0,0,4411,4412,1,0,0,0,4412,621,1,0,0,0,4413,4411,1,0,0, + 0,4414,4421,5,219,0,0,4415,4421,5,350,0,0,4416,4421,5,125,0,0,4417, + 4421,5,360,0,0,4418,4419,5,216,0,0,4419,4421,7,43,0,0,4420,4414, + 1,0,0,0,4420,4415,1,0,0,0,4420,4416,1,0,0,0,4420,4417,1,0,0,0,4420, + 4418,1,0,0,0,4421,623,1,0,0,0,4422,4424,5,216,0,0,4423,4422,1,0, + 0,0,4424,4427,1,0,0,0,4425,4423,1,0,0,0,4425,4426,1,0,0,0,4426,4428, + 1,0,0,0,4427,4425,1,0,0,0,4428,4431,3,620,310,0,4429,4430,5,167, + 0,0,4430,4432,3,622,311,0,4431,4429,1,0,0,0,4431,4432,1,0,0,0,4432, + 625,1,0,0,0,4433,4438,3,624,312,0,4434,4435,5,11,0,0,4435,4437,3, + 624,312,0,4436,4434,1,0,0,0,4437,4440,1,0,0,0,4438,4436,1,0,0,0, + 4438,4439,1,0,0,0,4439,627,1,0,0,0,4440,4438,1,0,0,0,4441,4443,3, + 480,240,0,4442,4444,3,630,315,0,4443,4442,1,0,0,0,4443,4444,1,0, + 0,0,4444,629,1,0,0,0,4445,4446,5,237,0,0,4446,4447,5,399,0,0,4447, + 4452,3,632,316,0,4448,4449,5,397,0,0,4449,4451,3,632,316,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,4455,1,0,0,0,4454,4452,1,0,0,0,4455,4456,5,400,0,0,4456,631, + 1,0,0,0,4457,4460,3,642,321,0,4458,4459,5,405,0,0,4459,4461,3,576, + 288,0,4460,4458,1,0,0,0,4460,4461,1,0,0,0,4461,633,1,0,0,0,4462, + 4463,5,399,0,0,4463,4468,3,636,318,0,4464,4465,5,397,0,0,4465,4467, + 3,636,318,0,4466,4464,1,0,0,0,4467,4470,1,0,0,0,4468,4466,1,0,0, + 0,4468,4469,1,0,0,0,4469,4471,1,0,0,0,4470,4468,1,0,0,0,4471,4472, + 5,400,0,0,4472,635,1,0,0,0,4473,4476,3,642,321,0,4474,4477,5,184, + 0,0,4475,4477,3,638,319,0,4476,4474,1,0,0,0,4476,4475,1,0,0,0,4477, + 4478,1,0,0,0,4478,4479,3,576,288,0,4479,637,1,0,0,0,4480,4481,7, + 44,0,0,4481,639,1,0,0,0,4482,4483,7,45,0,0,4483,641,1,0,0,0,4484, + 4487,5,432,0,0,4485,4487,3,648,324,0,4486,4484,1,0,0,0,4486,4485, + 1,0,0,0,4487,643,1,0,0,0,4488,4491,3,642,321,0,4489,4490,5,395,0, + 0,4490,4492,3,642,321,0,4491,4489,1,0,0,0,4491,4492,1,0,0,0,4492, + 645,1,0,0,0,4493,4494,3,642,321,0,4494,647,1,0,0,0,4495,4496,7,46, + 0,0,4496,649,1,0,0,0,4497,4498,7,47,0,0,4498,651,1,0,0,0,4499,4551, + 3,642,321,0,4500,4551,5,299,0,0,4501,4551,5,171,0,0,4502,4551,5, + 237,0,0,4503,4551,5,198,0,0,4504,4551,5,268,0,0,4505,4551,5,369, + 0,0,4506,4551,5,241,0,0,4507,4551,5,165,0,0,4508,4551,5,292,0,0, + 4509,4551,5,356,0,0,4510,4551,5,144,0,0,4511,4551,5,203,0,0,4512, + 4551,5,219,0,0,4513,4551,5,126,0,0,4514,4551,5,188,0,0,4515,4551, + 5,101,0,0,4516,4551,5,329,0,0,4517,4551,5,224,0,0,4518,4551,5,291, + 0,0,4519,4551,5,145,0,0,4520,4551,5,304,0,0,4521,4551,5,135,0,0, + 4522,4551,5,318,0,0,4523,4551,5,161,0,0,4524,4551,5,54,0,0,4525, + 4551,5,166,0,0,4526,4551,5,358,0,0,4527,4551,5,45,0,0,4528,4551, + 5,347,0,0,4529,4551,5,96,0,0,4530,4551,5,154,0,0,4531,4551,5,269, + 0,0,4532,4551,5,337,0,0,4533,4551,5,225,0,0,4534,4551,5,108,0,0, + 4535,4551,5,141,0,0,4536,4551,5,365,0,0,4537,4551,5,21,0,0,4538, + 4551,5,78,0,0,4539,4551,5,374,0,0,4540,4551,5,336,0,0,4541,4551, + 5,167,0,0,4542,4551,5,134,0,0,4543,4551,5,216,0,0,4544,4551,5,27, + 0,0,4545,4551,5,370,0,0,4546,4551,5,263,0,0,4547,4551,5,25,0,0,4548, + 4551,5,62,0,0,4549,4551,5,17,0,0,4550,4499,1,0,0,0,4550,4500,1,0, + 0,0,4550,4501,1,0,0,0,4550,4502,1,0,0,0,4550,4503,1,0,0,0,4550,4504, + 1,0,0,0,4550,4505,1,0,0,0,4550,4506,1,0,0,0,4550,4507,1,0,0,0,4550, + 4508,1,0,0,0,4550,4509,1,0,0,0,4550,4510,1,0,0,0,4550,4511,1,0,0, + 0,4550,4512,1,0,0,0,4550,4513,1,0,0,0,4550,4514,1,0,0,0,4550,4515, + 1,0,0,0,4550,4516,1,0,0,0,4550,4517,1,0,0,0,4550,4518,1,0,0,0,4550, + 4519,1,0,0,0,4550,4520,1,0,0,0,4550,4521,1,0,0,0,4550,4522,1,0,0, + 0,4550,4523,1,0,0,0,4550,4524,1,0,0,0,4550,4525,1,0,0,0,4550,4526, + 1,0,0,0,4550,4527,1,0,0,0,4550,4528,1,0,0,0,4550,4529,1,0,0,0,4550, + 4530,1,0,0,0,4550,4531,1,0,0,0,4550,4532,1,0,0,0,4550,4533,1,0,0, + 0,4550,4534,1,0,0,0,4550,4535,1,0,0,0,4550,4536,1,0,0,0,4550,4537, + 1,0,0,0,4550,4538,1,0,0,0,4550,4539,1,0,0,0,4550,4540,1,0,0,0,4550, + 4541,1,0,0,0,4550,4542,1,0,0,0,4550,4543,1,0,0,0,4550,4544,1,0,0, + 0,4550,4545,1,0,0,0,4550,4546,1,0,0,0,4550,4547,1,0,0,0,4550,4548, + 1,0,0,0,4550,4549,1,0,0,0,4551,653,1,0,0,0,4552,4553,5,58,0,0,4553, + 4554,5,280,0,0,4554,4556,5,243,0,0,4555,4557,3,32,16,0,4556,4555, + 1,0,0,0,4556,4557,1,0,0,0,4557,4567,1,0,0,0,4558,4559,3,642,321, + 0,4559,4560,5,184,0,0,4560,4561,3,642,321,0,4561,4568,1,0,0,0,4562, + 4565,3,642,321,0,4563,4564,5,387,0,0,4564,4566,3,660,330,0,4565, + 4563,1,0,0,0,4565,4566,1,0,0,0,4566,4568,1,0,0,0,4567,4558,1,0,0, + 0,4567,4562,1,0,0,0,4568,4718,1,0,0,0,4569,4570,5,9,0,0,4570,4571, + 5,280,0,0,4571,4572,5,243,0,0,4572,4597,3,642,321,0,4573,4598,5, + 373,0,0,4574,4598,3,668,334,0,4575,4576,5,304,0,0,4576,4598,3,660, + 330,0,4577,4578,5,363,0,0,4578,4583,3,662,331,0,4579,4580,5,397, + 0,0,4580,4582,3,662,331,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,4598,1,0,0,0,4585,4583,1,0,0, + 0,4586,4587,5,274,0,0,4587,4588,5,341,0,0,4588,4598,3,642,321,0, + 4589,4591,3,664,332,0,4590,4592,3,666,333,0,4591,4590,1,0,0,0,4591, + 4592,1,0,0,0,4592,4598,1,0,0,0,4593,4595,3,666,333,0,4594,4596,3, + 664,332,0,4595,4594,1,0,0,0,4595,4596,1,0,0,0,4596,4598,1,0,0,0, + 4597,4573,1,0,0,0,4597,4574,1,0,0,0,4597,4575,1,0,0,0,4597,4577, + 1,0,0,0,4597,4586,1,0,0,0,4597,4589,1,0,0,0,4597,4593,1,0,0,0,4598, + 4718,1,0,0,0,4599,4600,5,101,0,0,4600,4601,5,280,0,0,4601,4603,5, + 243,0,0,4602,4604,3,30,15,0,4603,4602,1,0,0,0,4603,4604,1,0,0,0, + 4604,4605,1,0,0,0,4605,4718,3,642,321,0,4606,4609,3,666,333,0,4607, + 4609,3,668,334,0,4608,4606,1,0,0,0,4608,4607,1,0,0,0,4609,4610,1, + 0,0,0,4610,4611,5,390,0,0,4611,4612,5,197,0,0,4612,4718,1,0,0,0, + 4613,4625,5,278,0,0,4614,4615,5,3,0,0,4615,4616,5,280,0,0,4616,4617, + 5,243,0,0,4617,4618,5,387,0,0,4618,4626,3,642,321,0,4619,4620,5, + 280,0,0,4620,4621,5,243,0,0,4621,4622,3,642,321,0,4622,4623,5,387, + 0,0,4623,4624,3,642,321,0,4624,4626,1,0,0,0,4625,4614,1,0,0,0,4625, + 4619,1,0,0,0,4626,4718,1,0,0,0,4627,4628,5,58,0,0,4628,4629,5,348, + 0,0,4629,4630,3,642,321,0,4630,4631,5,395,0,0,4631,4632,3,642,321, + 0,4632,4633,5,383,0,0,4633,4634,3,688,344,0,4634,4635,5,99,0,0,4635, + 4636,3,690,345,0,4636,4718,1,0,0,0,4637,4638,5,9,0,0,4638,4639,5, + 348,0,0,4639,4640,3,642,321,0,4640,4641,5,395,0,0,4641,4658,3,642, + 321,0,4642,4643,5,383,0,0,4643,4644,3,688,344,0,4644,4645,5,99,0, + 0,4645,4646,3,690,345,0,4646,4659,1,0,0,0,4647,4648,5,4,0,0,4648, + 4652,5,341,0,0,4649,4650,5,101,0,0,4650,4652,5,139,0,0,4651,4647, + 1,0,0,0,4651,4649,1,0,0,0,4652,4656,1,0,0,0,4653,4654,5,246,0,0, + 4654,4657,3,686,343,0,4655,4657,5,362,0,0,4656,4653,1,0,0,0,4656, + 4655,1,0,0,0,4657,4659,1,0,0,0,4658,4642,1,0,0,0,4658,4651,1,0,0, + 0,4659,4718,1,0,0,0,4660,4661,5,101,0,0,4661,4662,5,348,0,0,4662, + 4663,3,642,321,0,4663,4664,5,395,0,0,4664,4665,3,642,321,0,4665, + 4718,1,0,0,0,4666,4667,5,58,0,0,4667,4668,5,246,0,0,4668,4669,3, + 642,321,0,4669,4670,5,395,0,0,4670,4671,3,686,343,0,4671,4672,5, + 387,0,0,4672,4673,3,694,347,0,4673,4718,1,0,0,0,4674,4675,5,9,0, + 0,4675,4676,5,246,0,0,4676,4677,3,642,321,0,4677,4678,5,395,0,0, + 4678,4686,3,686,343,0,4679,4680,5,304,0,0,4680,4687,3,694,347,0, + 4681,4682,5,363,0,0,4682,4687,5,294,0,0,4683,4684,7,48,0,0,4684, + 4685,5,348,0,0,4685,4687,3,642,321,0,4686,4679,1,0,0,0,4686,4681, + 1,0,0,0,4686,4683,1,0,0,0,4687,4718,1,0,0,0,4688,4689,5,101,0,0, + 4689,4690,5,246,0,0,4690,4691,3,642,321,0,4691,4692,5,395,0,0,4692, + 4693,3,686,343,0,4693,4718,1,0,0,0,4694,4695,7,49,0,0,4695,4696, + 3,656,328,0,4696,4697,5,200,0,0,4697,4698,5,426,0,0,4698,4699,5, + 154,0,0,4699,4703,3,642,321,0,4700,4701,5,341,0,0,4701,4704,3,686, + 343,0,4702,4704,5,362,0,0,4703,4700,1,0,0,0,4703,4702,1,0,0,0,4704, + 4708,1,0,0,0,4705,4706,5,387,0,0,4706,4707,5,229,0,0,4707,4709,5, + 431,0,0,4708,4705,1,0,0,0,4708,4709,1,0,0,0,4709,4718,1,0,0,0,4710, + 4711,5,101,0,0,4711,4712,3,656,328,0,4712,4713,5,200,0,0,4713,4714, + 5,426,0,0,4714,4715,5,154,0,0,4715,4716,3,642,321,0,4716,4718,1, + 0,0,0,4717,4552,1,0,0,0,4717,4569,1,0,0,0,4717,4599,1,0,0,0,4717, + 4608,1,0,0,0,4717,4613,1,0,0,0,4717,4627,1,0,0,0,4717,4637,1,0,0, + 0,4717,4660,1,0,0,0,4717,4666,1,0,0,0,4717,4674,1,0,0,0,4717,4688, + 1,0,0,0,4717,4694,1,0,0,0,4717,4710,1,0,0,0,4718,655,1,0,0,0,4719, + 4720,7,50,0,0,4720,657,1,0,0,0,4721,4722,5,259,0,0,4722,4723,5,405, + 0,0,4723,4729,5,431,0,0,4724,4725,5,83,0,0,4725,4726,5,246,0,0,4726, + 4727,5,405,0,0,4727,4729,3,686,343,0,4728,4721,1,0,0,0,4728,4724, + 1,0,0,0,4729,659,1,0,0,0,4730,4735,3,658,329,0,4731,4732,5,397,0, + 0,4732,4734,3,658,329,0,4733,4731,1,0,0,0,4734,4737,1,0,0,0,4735, + 4733,1,0,0,0,4735,4736,1,0,0,0,4736,661,1,0,0,0,4737,4735,1,0,0, + 0,4738,4742,5,259,0,0,4739,4740,5,83,0,0,4740,4742,5,246,0,0,4741, + 4738,1,0,0,0,4741,4739,1,0,0,0,4742,663,1,0,0,0,4743,4746,5,2,0, + 0,4744,4745,5,387,0,0,4745,4747,5,278,0,0,4746,4744,1,0,0,0,4746, + 4747,1,0,0,0,4747,665,1,0,0,0,4748,4749,7,51,0,0,4749,667,1,0,0, + 0,4750,4751,7,52,0,0,4751,669,1,0,0,0,4752,4753,7,53,0,0,4753,671, + 1,0,0,0,4754,4755,7,54,0,0,4755,673,1,0,0,0,4756,4757,7,55,0,0,4757, + 675,1,0,0,0,4758,4759,7,56,0,0,4759,677,1,0,0,0,4760,4761,7,57,0, + 0,4761,679,1,0,0,0,4762,4763,7,58,0,0,4763,681,1,0,0,0,4764,4765, + 7,59,0,0,4765,683,1,0,0,0,4766,4767,7,60,0,0,4767,685,1,0,0,0,4768, + 4773,3,642,321,0,4769,4770,5,395,0,0,4770,4772,3,642,321,0,4771, + 4769,1,0,0,0,4772,4775,1,0,0,0,4773,4771,1,0,0,0,4773,4774,1,0,0, + 0,4774,687,1,0,0,0,4775,4773,1,0,0,0,4776,4777,3,642,321,0,4777, + 4778,5,411,0,0,4778,4779,7,27,0,0,4779,689,1,0,0,0,4780,4785,5,176, + 0,0,4781,4782,5,211,0,0,4782,4783,5,341,0,0,4783,4785,3,686,343, + 0,4784,4780,1,0,0,0,4784,4781,1,0,0,0,4785,691,1,0,0,0,4786,4787, + 5,8,0,0,4787,4788,5,405,0,0,4788,4799,5,431,0,0,4789,4790,5,259, + 0,0,4790,4791,5,405,0,0,4791,4799,5,431,0,0,4792,4793,5,294,0,0, + 4793,4794,5,405,0,0,4794,4799,5,426,0,0,4795,4796,5,240,0,0,4796, + 4797,5,405,0,0,4797,4799,3,686,343,0,4798,4786,1,0,0,0,4798,4789, + 1,0,0,0,4798,4792,1,0,0,0,4798,4795,1,0,0,0,4799,693,1,0,0,0,4800, + 4805,3,692,346,0,4801,4802,5,397,0,0,4802,4804,3,692,346,0,4803, + 4801,1,0,0,0,4804,4807,1,0,0,0,4805,4803,1,0,0,0,4805,4806,1,0,0, + 0,4806,695,1,0,0,0,4807,4805,1,0,0,0,621,699,706,709,715,721,728, + 738,741,745,760,767,773,778,783,786,810,817,820,825,830,836,840, + 853,857,861,866,873,877,882,889,893,898,946,953,958,981,985,989, + 992,996,1001,1007,1011,1017,1019,1030,1034,1041,1049,1052,1057,1061, + 1064,1074,1082,1086,1089,1093,1097,1100,1105,1111,1116,1121,1125, + 1136,1138,1142,1152,1156,1162,1165,1172,1177,1185,1190,1194,1202, + 1207,1213,1219,1222,1225,1228,1237,1245,1250,1258,1265,1268,1271, + 1273,1284,1286,1289,1292,1295,1298,1301,1303,1315,1321,1329,1331, + 1341,1374,1379,1383,1387,1394,1401,1407,1411,1414,1421,1444,1449, + 1453,1461,1470,1477,1483,1490,1493,1499,1506,1514,1523,1532,1539, + 1559,1566,1568,1575,1585,1593,1597,1601,1614,1623,1639,1643,1648, + 1653,1656,1659,1662,1665,1668,1673,1682,1686,1693,1696,1699,1702, + 1714,1720,1746,1754,1758,1761,1764,1767,1770,1773,1776,1779,1788, + 1798,1801,1821,1827,1833,1836,1838,1845,1852,1865,1870,1879,1887, + 1895,1908,1921,1937,1941,1956,1962,1965,1968,1971,1974,1978,1993, + 1996,2007,2021,2055,2063,2068,2076,2081,2086,2093,2101,2109,2117, + 2122,2134,2138,2146,2155,2158,2162,2169,2175,2179,2185,2189,2201, + 2210,2221,2225,2232,2244,2254,2257,2264,2270,2274,2277,2280,2286, + 2290,2294,2299,2303,2307,2311,2319,2323,2327,2331,2335,2343,2347, + 2351,2359,2364,2369,2373,2377,2384,2393,2401,2413,2431,2434,2440, + 2466,2469,2475,2483,2491,2504,2511,2514,2517,2520,2523,2526,2529, + 2532,2535,2538,2541,2546,2549,2552,2555,2558,2561,2564,2567,2570, + 2573,2576,2578,2584,2588,2591,2594,2597,2600,2603,2610,2614,2617, + 2620,2623,2626,2629,2636,2639,2647,2651,2658,2660,2663,2668,2671, + 2675,2680,2686,2694,2702,2712,2715,2719,2723,2728,2735,2739,2741, + 2745,2752,2757,2770,2778,2797,2807,2820,2830,2834,2838,2844,2851, + 2858,2867,2874,2894,2897,2911,2926,2930,2950,2962,2968,2971,2974, + 2980,2986,2993,3001,3007,3011,3016,3019,3023,3030,3035,3040,3043, + 3045,3053,3061,3065,3069,3073,3090,3107,3114,3123,3128,3131,3134, + 3138,3153,3167,3170,3181,3185,3188,3191,3195,3200,3203,3206,3209, + 3212,3215,3221,3224,3227,3230,3233,3236,3239,3242,3245,3248,3252, + 3254,3260,3265,3268,3271,3274,3277,3283,3286,3289,3292,3295,3298, + 3301,3304,3307,3310,3314,3316,3318,3323,3328,3332,3336,3341,3346, + 3355,3365,3373,3385,3388,3394,3401,3408,3415,3422,3431,3435,3442, + 3447,3451,3455,3458,3461,3472,3476,3478,3481,3494,3497,3500,3512, + 3515,3522,3531,3536,3538,3540,3557,3560,3568,3571,3575,3578,3581, + 3584,3587,3599,3607,3614,3617,3624,3627,3632,3639,3647,3653,3658, + 3662,3667,3674,3688,3691,3695,3706,3716,3719,3726,3735,3738,3744, + 3747,3754,3759,3762,3775,3781,3783,3791,3794,3804,3809,3811,3823, + 3829,3831,3838,3845,3859,3865,3868,3871,3874,3883,3890,3896,3905, + 3909,3917,3927,3937,3942,3946,3952,3957,3967,3971,3974,3979,3982, + 3986,3991,4002,4004,4013,4036,4046,4049,4056,4059,4069,4076,4079, + 4081,4092,4102,4104,4113,4118,4127,4140,4144,4156,4160,4169,4188, + 4206,4218,4233,4237,4253,4260,4274,4279,4289,4291,4299,4307,4315, + 4323,4331,4339,4350,4354,4362,4378,4382,4387,4400,4409,4411,4420, + 4425,4431,4438,4443,4452,4460,4468,4476,4486,4491,4550,4556,4565, + 4567,4583,4591,4595,4597,4603,4608,4625,4651,4656,4658,4686,4703, + 4708,4717,4728,4735,4741,4746,4773,4784,4798,4805 ]; private static __ATN: antlr.ATN; @@ -33609,6 +34139,36 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public poolPath(): PoolPathContext { + return this.getRuleContext(0, PoolPathContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_columnNamePath; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -39397,14 +39957,8 @@ export class PartitioningSpecContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_PARTITION(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_PARTITION, 0); - } - public KW_BY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_BY, 0); - } - public expressions(): ExpressionsContext | null { - return this.getRuleContext(0, ExpressionsContext); + public partitionByClause(): PartitionByClauseContext | null { + return this.getRuleContext(0, PartitionByClauseContext); } public orderByClause(): OrderByClauseContext | null { return this.getRuleContext(0, OrderByClauseContext); @@ -40871,6 +41425,42 @@ export class OrderByClauseContext extends antlr.ParserRuleContext { } +export class PartitionByClauseContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_PARTITION(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_PARTITION, 0)!; + } + public KW_BY(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_BY, 0)!; + } + public expressions(): ExpressionsContext { + return this.getRuleContext(0, ExpressionsContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_partitionByClause; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterPartitionByClause) { + listener.enterPartitionByClause(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitPartitionByClause) { + listener.exitPartitionByClause(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitPartitionByClause) { + return visitor.visitPartitionByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ClusterByClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -41641,8 +42231,8 @@ export class ConstantContext extends antlr.ParserRuleContext { public QUESTION(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.QUESTION, 0); } - public Identifier(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.Identifier, 0); + public columnNamePath(): ColumnNamePathContext | null { + return this.getRuleContext(0, ColumnNamePathContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_constant; diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index ca30f6091..a9eb9d316 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -137,6 +137,7 @@ import { ColumnNameTypeOrConstraintListContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeListContext } from "./HiveSqlParser.js"; import { ColumnNameListContext } from "./HiveSqlParser.js"; import { ColumnNameContext } from "./HiveSqlParser.js"; +import { ColumnNamePathContext } from "./HiveSqlParser.js"; import { ColumnNameCreateContext } from "./HiveSqlParser.js"; import { ExtColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; @@ -282,6 +283,7 @@ import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; import { ExpressionsNotInParenthesisContext } from "./HiveSqlParser.js"; import { OrderByClauseContext } from "./HiveSqlParser.js"; +import { PartitionByClauseContext } from "./HiveSqlParser.js"; import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; @@ -1653,6 +1655,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnNameCreate`. * @param ctx the parse tree @@ -3111,6 +3123,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitOrderByClause?: (ctx: OrderByClauseContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + enterPartitionByClause?: (ctx: PartitionByClauseContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + exitPartitionByClause?: (ctx: PartitionByClauseContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.clusterByClause`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 146c94f86..3451b83cb 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -137,6 +137,7 @@ import { ColumnNameTypeOrConstraintListContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeListContext } from "./HiveSqlParser.js"; import { ColumnNameListContext } from "./HiveSqlParser.js"; import { ColumnNameContext } from "./HiveSqlParser.js"; +import { ColumnNamePathContext } from "./HiveSqlParser.js"; import { ColumnNameCreateContext } from "./HiveSqlParser.js"; import { ExtColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; @@ -282,6 +283,7 @@ import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; import { ExpressionsNotInParenthesisContext } from "./HiveSqlParser.js"; import { OrderByClauseContext } from "./HiveSqlParser.js"; +import { PartitionByClauseContext } from "./HiveSqlParser.js"; import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; @@ -1140,6 +1142,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnNameCreate`. * @param ctx the parse tree @@ -2014,6 +2022,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.partitionByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPartitionByClause?: (ctx: PartitionByClauseContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.clusterByClause`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlLexer.interp b/src/lib/impala/ImpalaSqlLexer.interp index 8917ab2a4..8ec428586 100644 --- a/src/lib/impala/ImpalaSqlLexer.interp +++ b/src/lib/impala/ImpalaSqlLexer.interp @@ -578,9 +578,9 @@ BACKQUOTED_IDENTIFIER TIME_WITH_TIME_ZONE TIMESTAMP_WITH_TIME_ZONE DOUBLE_PRECISION -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE rule names: KW_ADD @@ -872,9 +872,9 @@ DOUBLE_PRECISION EXPONENT DIGIT LETTER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE channel names: DEFAULT_TOKEN_CHANNEL diff --git a/src/lib/impala/ImpalaSqlLexer.tokens b/src/lib/impala/ImpalaSqlLexer.tokens index b57242c2b..a88a9d50a 100644 --- a/src/lib/impala/ImpalaSqlLexer.tokens +++ b/src/lib/impala/ImpalaSqlLexer.tokens @@ -284,9 +284,9 @@ BACKQUOTED_IDENTIFIER=283 TIME_WITH_TIME_ZONE=284 TIMESTAMP_WITH_TIME_ZONE=285 DOUBLE_PRECISION=286 -SIMPLE_COMMENT=287 +LINE_COMMENT=287 BRACKETED_COMMENT=288 -WS=289 +WHITE_SPACE=289 'ADD'=1 'ALL'=2 'ANALYTIC'=3 diff --git a/src/lib/impala/ImpalaSqlLexer.ts b/src/lib/impala/ImpalaSqlLexer.ts index 63492565d..0e427ca27 100644 --- a/src/lib/impala/ImpalaSqlLexer.ts +++ b/src/lib/impala/ImpalaSqlLexer.ts @@ -293,9 +293,9 @@ export class ImpalaSqlLexer extends antlr.Lexer { public static readonly TIME_WITH_TIME_ZONE = 284; public static readonly TIMESTAMP_WITH_TIME_ZONE = 285; public static readonly DOUBLE_PRECISION = 286; - public static readonly SIMPLE_COMMENT = 287; + public static readonly LINE_COMMENT = 287; public static readonly BRACKETED_COMMENT = 288; - public static readonly WS = 289; + public static readonly WHITE_SPACE = 289; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -408,7 +408,7 @@ export class ImpalaSqlLexer extends antlr.Lexer { "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "TIME_WITH_TIME_ZONE", "TIMESTAMP_WITH_TIME_ZONE", "DOUBLE_PRECISION", - "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS" + "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE" ]; public static readonly modeNames = [ @@ -471,8 +471,8 @@ export class ImpalaSqlLexer extends antlr.Lexer { "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "TIME_WITH_TIME_ZONE", "TIMESTAMP_WITH_TIME_ZONE", "DOUBLE_PRECISION", - "EXPONENT", "DIGIT", "LETTER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", - "WS", + "EXPONENT", "DIGIT", "LETTER", "LINE_COMMENT", "BRACKETED_COMMENT", + "WHITE_SPACE", ]; diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index a0c60a52b..ff4fb0a66 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -578,9 +578,9 @@ BACKQUOTED_IDENTIFIER TIME_WITH_TIME_ZONE TIMESTAMP_WITH_TIME_ZONE DOUBLE_PRECISION -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE rule names: program @@ -680,6 +680,7 @@ tableNamePath viewNamePath functionNamePath columnNamePath +columnName tableOrViewPath createCommonItem assignmentList @@ -719,6 +720,8 @@ queryTerm queryPrimary sortItem querySpecification +whereClause +havingClause groupBy groupingElement groupingSet @@ -755,6 +758,7 @@ typeParameter baseType whenClause filter +partitionByClause over windowFrame frameBound @@ -771,4 +775,4 @@ nonReserved atn: -[4, 1, 289, 2772, 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, 1, 0, 5, 0, 372, 8, 0, 10, 0, 12, 0, 375, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 381, 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, 405, 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, 418, 8, 4, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 433, 8, 5, 10, 5, 12, 5, 436, 9, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 450, 8, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 457, 8, 5, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 3, 6, 465, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 472, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 477, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 3, 7, 487, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 494, 8, 7, 10, 7, 12, 7, 497, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 3, 7, 507, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 512, 8, 7, 3, 7, 514, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 3, 7, 533, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 557, 8, 9, 1, 9, 1, 9, 3, 9, 561, 8, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 573, 8, 11, 1, 11, 1, 11, 3, 11, 577, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 584, 8, 11, 10, 11, 12, 11, 587, 9, 11, 3, 11, 589, 8, 11, 1, 11, 3, 11, 592, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 598, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 616, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 621, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 631, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 636, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 643, 8, 12, 10, 12, 12, 12, 646, 9, 12, 3, 12, 648, 8, 12, 1, 12, 3, 12, 651, 8, 12, 1, 12, 1, 12, 3, 12, 655, 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, 681, 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, 707, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 716, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 726, 8, 16, 1, 16, 3, 16, 729, 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, 743, 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, 761, 8, 20, 3, 20, 763, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 770, 8, 20, 10, 20, 12, 20, 773, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 783, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 792, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 799, 8, 22, 1, 22, 1, 22, 3, 22, 803, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 810, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 3, 23, 819, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 831, 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, 845, 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, 858, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 863, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 868, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 874, 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, 910, 8, 32, 1, 32, 3, 32, 913, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 3, 33, 922, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 928, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 934, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 946, 8, 35, 3, 35, 948, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 959, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 967, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 972, 8, 38, 1, 38, 1, 38, 3, 38, 976, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 981, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 988, 8, 40, 1, 40, 1, 40, 3, 40, 992, 8, 40, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1002, 8, 41, 1, 42, 1, 42, 3, 42, 1006, 8, 42, 1, 42, 1, 42, 3, 42, 1010, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1017, 8, 42, 10, 42, 12, 42, 1020, 9, 42, 3, 42, 1022, 8, 42, 1, 42, 3, 42, 1025, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1033, 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, 1047, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1054, 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, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1073, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1078, 8, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 50, 3, 50, 1084, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1089, 8, 50, 1, 50, 1, 50, 3, 50, 1093, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1100, 8, 50, 10, 50, 12, 50, 1103, 9, 50, 1, 50, 1, 50, 3, 50, 1107, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1113, 8, 51, 1, 52, 1, 52, 3, 52, 1117, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1122, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1127, 8, 53, 1, 53, 3, 53, 1130, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1136, 8, 53, 10, 53, 12, 53, 1139, 9, 53, 3, 53, 1141, 8, 53, 1, 53, 1, 53, 3, 53, 1145, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1155, 8, 54, 10, 54, 12, 54, 1158, 9, 54, 3, 54, 1160, 8, 54, 1, 54, 1, 54, 3, 54, 1164, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1169, 8, 55, 1, 55, 1, 55, 3, 55, 1173, 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, 1189, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1194, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1199, 8, 57, 10, 57, 12, 57, 1202, 9, 57, 3, 57, 1204, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1210, 8, 58, 1, 58, 3, 58, 1213, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1218, 8, 58, 10, 58, 12, 58, 1221, 9, 58, 3, 58, 1223, 8, 58, 1, 59, 1, 59, 3, 59, 1227, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 3, 59, 1235, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1240, 8, 59, 10, 59, 12, 59, 1243, 9, 59, 3, 59, 1245, 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, 1269, 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, 1283, 8, 65, 1, 65, 1, 65, 3, 65, 1287, 8, 65, 1, 66, 1, 66, 3, 66, 1291, 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, 1311, 8, 68, 3, 68, 1313, 8, 68, 3, 68, 1315, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1324, 8, 69, 3, 69, 1326, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1335, 8, 70, 3, 70, 1337, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1346, 8, 71, 3, 71, 1348, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1353, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1362, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1371, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1380, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1391, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1397, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 3, 78, 1405, 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, 1418, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1428, 8, 80, 1, 80, 1, 80, 3, 80, 1432, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1437, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1446, 8, 82, 10, 82, 12, 82, 1449, 9, 82, 1, 82, 1, 82, 3, 82, 1453, 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, 1484, 8, 93, 10, 93, 12, 93, 1487, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1492, 8, 94, 10, 94, 12, 94, 1495, 9, 94, 1, 95, 1, 95, 3, 95, 1499, 8, 95, 1, 96, 1, 96, 3, 96, 1503, 8, 96, 1, 97, 1, 97, 3, 97, 1507, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1512, 8, 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, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 3, 101, 1566, 8, 101, 1, 101, 1, 101, 3, 101, 1570, 8, 101, 5, 101, 1572, 8, 101, 10, 101, 12, 101, 1575, 9, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1581, 8, 102, 1, 103, 3, 103, 1584, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1592, 8, 104, 10, 104, 12, 104, 1595, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1601, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1606, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1611, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 105, 1, 105, 5, 105, 1620, 8, 105, 10, 105, 12, 105, 1623, 9, 105, 3, 105, 1625, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1634, 8, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 3, 106, 1640, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1646, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1659, 8, 110, 10, 110, 12, 110, 1662, 9, 110, 3, 110, 1664, 8, 110, 1, 110, 3, 110, 1667, 8, 110, 1, 110, 1, 110, 3, 110, 1671, 8, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1679, 8, 112, 10, 112, 12, 112, 1682, 9, 112, 3, 112, 1684, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1690, 8, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 114, 3, 114, 1702, 8, 114, 1, 114, 1, 114, 3, 114, 1706, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1716, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 5, 118, 1725, 8, 118, 10, 118, 12, 118, 1728, 9, 118, 1, 118, 1, 118, 3, 118, 1732, 8, 118, 1, 118, 3, 118, 1735, 8, 118, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1754, 8, 120, 10, 120, 12, 120, 1757, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1768, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1774, 8, 121, 3, 121, 1776, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1785, 8, 122, 1, 122, 3, 122, 1788, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1805, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1811, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1817, 8, 126, 10, 126, 12, 126, 1820, 9, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1828, 8, 127, 10, 127, 12, 127, 1831, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 1838, 8, 128, 10, 128, 12, 128, 1841, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1851, 8, 129, 3, 129, 1853, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1859, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 1864, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1872, 8, 131, 10, 131, 12, 131, 1875, 9, 131, 3, 131, 1877, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1883, 8, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1893, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1899, 8, 132, 1, 132, 5, 132, 1902, 8, 132, 10, 132, 12, 132, 1905, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1914, 8, 133, 10, 133, 12, 133, 1917, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1923, 8, 133, 1, 134, 1, 134, 3, 134, 1927, 8, 134, 1, 134, 1, 134, 3, 134, 1931, 8, 134, 1, 135, 1, 135, 3, 135, 1935, 8, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1943, 8, 135, 10, 135, 12, 135, 1946, 9, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1952, 8, 135, 10, 135, 12, 135, 1955, 9, 135, 3, 135, 1957, 8, 135, 1, 135, 1, 135, 3, 135, 1961, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1966, 8, 135, 1, 135, 1, 135, 3, 135, 1970, 8, 135, 1, 136, 3, 136, 1973, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1978, 8, 136, 10, 136, 12, 136, 1981, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1989, 8, 138, 10, 138, 12, 138, 1992, 9, 138, 3, 138, 1994, 8, 138, 1, 138, 1, 138, 3, 138, 1998, 8, 138, 1, 139, 1, 139, 3, 139, 2002, 8, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 2011, 8, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2021, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2035, 8, 142, 5, 142, 2037, 8, 142, 10, 142, 12, 142, 2040, 9, 142, 1, 143, 3, 143, 2043, 8, 143, 1, 143, 1, 143, 3, 143, 2047, 8, 143, 1, 143, 1, 143, 3, 143, 2051, 8, 143, 1, 143, 1, 143, 3, 143, 2055, 8, 143, 1, 143, 1, 143, 3, 143, 2059, 8, 143, 1, 143, 1, 143, 3, 143, 2063, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2073, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2082, 8, 144, 10, 144, 12, 144, 2085, 9, 144, 1, 144, 1, 144, 3, 144, 2089, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2102, 8, 145, 3, 145, 2104, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2110, 8, 147, 1, 147, 1, 147, 3, 147, 2114, 8, 147, 3, 147, 2116, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 2122, 8, 148, 10, 148, 12, 148, 2125, 9, 148, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2131, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2136, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2147, 8, 151, 10, 151, 12, 151, 2150, 9, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2155, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2163, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2170, 8, 155, 1, 155, 1, 155, 3, 155, 2174, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2182, 8, 155, 10, 155, 12, 155, 2185, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2195, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2203, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2210, 8, 156, 10, 156, 12, 156, 2213, 9, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2218, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2223, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2229, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2235, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2240, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2245, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2251, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2262, 8, 157, 10, 157, 12, 157, 2265, 9, 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, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2291, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2297, 8, 158, 5, 158, 2299, 8, 158, 10, 158, 12, 158, 2302, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2311, 8, 158, 10, 158, 12, 158, 2314, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2323, 8, 158, 1, 158, 3, 158, 2326, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2331, 8, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2336, 8, 158, 10, 158, 12, 158, 2339, 9, 158, 3, 158, 2341, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2348, 8, 158, 10, 158, 12, 158, 2351, 9, 158, 3, 158, 2353, 8, 158, 1, 158, 1, 158, 3, 158, 2357, 8, 158, 1, 158, 3, 158, 2360, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2370, 8, 158, 10, 158, 12, 158, 2373, 9, 158, 3, 158, 2375, 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, 4, 158, 2392, 8, 158, 11, 158, 12, 158, 2393, 1, 158, 1, 158, 3, 158, 2398, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2404, 8, 158, 11, 158, 12, 158, 2405, 1, 158, 1, 158, 3, 158, 2410, 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, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2433, 8, 158, 10, 158, 12, 158, 2436, 9, 158, 3, 158, 2438, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2447, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2453, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2459, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2465, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2476, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2485, 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, 1, 158, 1, 158, 1, 158, 5, 158, 2505, 8, 158, 10, 158, 12, 158, 2508, 9, 158, 3, 158, 2510, 8, 158, 1, 158, 3, 158, 2513, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2523, 8, 158, 10, 158, 12, 158, 2526, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2532, 8, 159, 3, 159, 2534, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2556, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2583, 8, 166, 10, 166, 12, 166, 2586, 9, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2592, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2598, 8, 166, 10, 166, 12, 166, 2601, 9, 166, 1, 166, 1, 166, 3, 166, 2605, 8, 166, 3, 166, 2607, 8, 166, 1, 166, 1, 166, 5, 166, 2611, 8, 166, 10, 166, 12, 166, 2614, 9, 166, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2620, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2626, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2646, 8, 172, 10, 172, 12, 172, 2649, 9, 172, 3, 172, 2651, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2658, 8, 172, 10, 172, 12, 172, 2661, 9, 172, 3, 172, 2663, 8, 172, 1, 172, 3, 172, 2666, 8, 172, 1, 172, 1, 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, 1, 173, 1, 173, 3, 173, 2686, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2697, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2704, 8, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2709, 8, 176, 10, 176, 12, 176, 2712, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2725, 8, 177, 3, 177, 2727, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2734, 8, 179, 10, 179, 12, 179, 2737, 9, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2745, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2752, 8, 181, 1, 182, 3, 182, 2755, 8, 182, 1, 182, 1, 182, 3, 182, 2759, 8, 182, 1, 182, 1, 182, 3, 182, 2763, 8, 182, 1, 182, 3, 182, 2766, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 10, 771, 1447, 1621, 1660, 1680, 1695, 1726, 1755, 1829, 2300, 6, 264, 284, 310, 314, 316, 332, 185, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3093, 0, 373, 1, 0, 0, 0, 2, 378, 1, 0, 0, 0, 4, 404, 1, 0, 0, 0, 6, 406, 1, 0, 0, 0, 8, 417, 1, 0, 0, 0, 10, 419, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 16, 534, 1, 0, 0, 0, 18, 553, 1, 0, 0, 0, 20, 566, 1, 0, 0, 0, 22, 570, 1, 0, 0, 0, 24, 632, 1, 0, 0, 0, 26, 680, 1, 0, 0, 0, 28, 682, 1, 0, 0, 0, 30, 690, 1, 0, 0, 0, 32, 710, 1, 0, 0, 0, 34, 730, 1, 0, 0, 0, 36, 737, 1, 0, 0, 0, 38, 746, 1, 0, 0, 0, 40, 754, 1, 0, 0, 0, 42, 776, 1, 0, 0, 0, 44, 786, 1, 0, 0, 0, 46, 804, 1, 0, 0, 0, 48, 825, 1, 0, 0, 0, 50, 846, 1, 0, 0, 0, 52, 852, 1, 0, 0, 0, 54, 869, 1, 0, 0, 0, 56, 878, 1, 0, 0, 0, 58, 885, 1, 0, 0, 0, 60, 893, 1, 0, 0, 0, 62, 900, 1, 0, 0, 0, 64, 907, 1, 0, 0, 0, 66, 916, 1, 0, 0, 0, 68, 927, 1, 0, 0, 0, 70, 929, 1, 0, 0, 0, 72, 949, 1, 0, 0, 0, 74, 966, 1, 0, 0, 0, 76, 968, 1, 0, 0, 0, 78, 977, 1, 0, 0, 0, 80, 984, 1, 0, 0, 0, 82, 993, 1, 0, 0, 0, 84, 1003, 1, 0, 0, 0, 86, 1026, 1, 0, 0, 0, 88, 1032, 1, 0, 0, 0, 90, 1034, 1, 0, 0, 0, 92, 1041, 1, 0, 0, 0, 94, 1053, 1, 0, 0, 0, 96, 1055, 1, 0, 0, 0, 98, 1062, 1, 0, 0, 0, 100, 1083, 1, 0, 0, 0, 102, 1112, 1, 0, 0, 0, 104, 1114, 1, 0, 0, 0, 106, 1123, 1, 0, 0, 0, 108, 1146, 1, 0, 0, 0, 110, 1165, 1, 0, 0, 0, 112, 1188, 1, 0, 0, 0, 114, 1190, 1, 0, 0, 0, 116, 1205, 1, 0, 0, 0, 118, 1224, 1, 0, 0, 0, 120, 1246, 1, 0, 0, 0, 122, 1251, 1, 0, 0, 0, 124, 1256, 1, 0, 0, 0, 126, 1261, 1, 0, 0, 0, 128, 1266, 1, 0, 0, 0, 130, 1273, 1, 0, 0, 0, 132, 1288, 1, 0, 0, 0, 134, 1294, 1, 0, 0, 0, 136, 1314, 1, 0, 0, 0, 138, 1316, 1, 0, 0, 0, 140, 1327, 1, 0, 0, 0, 142, 1338, 1, 0, 0, 0, 144, 1352, 1, 0, 0, 0, 146, 1354, 1, 0, 0, 0, 148, 1363, 1, 0, 0, 0, 150, 1372, 1, 0, 0, 0, 152, 1381, 1, 0, 0, 0, 154, 1384, 1, 0, 0, 0, 156, 1392, 1, 0, 0, 0, 158, 1408, 1, 0, 0, 0, 160, 1412, 1, 0, 0, 0, 162, 1436, 1, 0, 0, 0, 164, 1438, 1, 0, 0, 0, 166, 1454, 1, 0, 0, 0, 168, 1457, 1, 0, 0, 0, 170, 1461, 1, 0, 0, 0, 172, 1464, 1, 0, 0, 0, 174, 1468, 1, 0, 0, 0, 176, 1470, 1, 0, 0, 0, 178, 1472, 1, 0, 0, 0, 180, 1474, 1, 0, 0, 0, 182, 1476, 1, 0, 0, 0, 184, 1478, 1, 0, 0, 0, 186, 1480, 1, 0, 0, 0, 188, 1488, 1, 0, 0, 0, 190, 1498, 1, 0, 0, 0, 192, 1502, 1, 0, 0, 0, 194, 1506, 1, 0, 0, 0, 196, 1511, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1583, 1, 0, 0, 0, 208, 1587, 1, 0, 0, 0, 210, 1596, 1, 0, 0, 0, 212, 1626, 1, 0, 0, 0, 214, 1641, 1, 0, 0, 0, 216, 1647, 1, 0, 0, 0, 218, 1652, 1, 0, 0, 0, 220, 1654, 1, 0, 0, 0, 222, 1672, 1, 0, 0, 0, 224, 1675, 1, 0, 0, 0, 226, 1685, 1, 0, 0, 0, 228, 1705, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1717, 1, 0, 0, 0, 234, 1719, 1, 0, 0, 0, 236, 1734, 1, 0, 0, 0, 238, 1736, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1775, 1, 0, 0, 0, 244, 1787, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1804, 1, 0, 0, 0, 250, 1806, 1, 0, 0, 0, 252, 1812, 1, 0, 0, 0, 254, 1823, 1, 0, 0, 0, 256, 1834, 1, 0, 0, 0, 258, 1842, 1, 0, 0, 0, 260, 1860, 1, 0, 0, 0, 262, 1865, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1922, 1, 0, 0, 0, 268, 1924, 1, 0, 0, 0, 270, 1932, 1, 0, 0, 0, 272, 1972, 1, 0, 0, 0, 274, 1982, 1, 0, 0, 0, 276, 1997, 1, 0, 0, 0, 278, 1999, 1, 0, 0, 0, 280, 2006, 1, 0, 0, 0, 282, 2020, 1, 0, 0, 0, 284, 2022, 1, 0, 0, 0, 286, 2072, 1, 0, 0, 0, 288, 2088, 1, 0, 0, 0, 290, 2090, 1, 0, 0, 0, 292, 2105, 1, 0, 0, 0, 294, 2107, 1, 0, 0, 0, 296, 2117, 1, 0, 0, 0, 298, 2135, 1, 0, 0, 0, 300, 2137, 1, 0, 0, 0, 302, 2141, 1, 0, 0, 0, 304, 2156, 1, 0, 0, 0, 306, 2162, 1, 0, 0, 0, 308, 2164, 1, 0, 0, 0, 310, 2173, 1, 0, 0, 0, 312, 2244, 1, 0, 0, 0, 314, 2250, 1, 0, 0, 0, 316, 2512, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2537, 1, 0, 0, 0, 324, 2539, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2557, 1, 0, 0, 0, 330, 2559, 1, 0, 0, 0, 332, 2606, 1, 0, 0, 0, 334, 2615, 1, 0, 0, 0, 336, 2619, 1, 0, 0, 0, 338, 2625, 1, 0, 0, 0, 340, 2627, 1, 0, 0, 0, 342, 2632, 1, 0, 0, 0, 344, 2638, 1, 0, 0, 0, 346, 2685, 1, 0, 0, 0, 348, 2696, 1, 0, 0, 0, 350, 2703, 1, 0, 0, 0, 352, 2705, 1, 0, 0, 0, 354, 2726, 1, 0, 0, 0, 356, 2728, 1, 0, 0, 0, 358, 2730, 1, 0, 0, 0, 360, 2744, 1, 0, 0, 0, 362, 2751, 1, 0, 0, 0, 364, 2765, 1, 0, 0, 0, 366, 2767, 1, 0, 0, 0, 368, 2769, 1, 0, 0, 0, 370, 372, 3, 2, 1, 0, 371, 370, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 5, 0, 0, 1, 377, 1, 1, 0, 0, 0, 378, 380, 3, 4, 2, 0, 379, 381, 5, 262, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 3, 1, 0, 0, 0, 382, 405, 3, 206, 103, 0, 383, 405, 3, 6, 3, 0, 384, 405, 3, 8, 4, 0, 385, 405, 3, 26, 13, 0, 386, 405, 3, 64, 32, 0, 387, 405, 3, 66, 33, 0, 388, 405, 3, 68, 34, 0, 389, 405, 3, 74, 37, 0, 390, 405, 3, 88, 44, 0, 391, 405, 3, 94, 47, 0, 392, 405, 3, 100, 50, 0, 393, 405, 3, 102, 51, 0, 394, 405, 3, 108, 54, 0, 395, 405, 3, 110, 55, 0, 396, 405, 3, 112, 56, 0, 397, 405, 3, 144, 72, 0, 398, 405, 3, 152, 76, 0, 399, 405, 3, 154, 77, 0, 400, 405, 3, 156, 78, 0, 401, 405, 3, 158, 79, 0, 402, 405, 3, 160, 80, 0, 403, 405, 3, 162, 81, 0, 404, 382, 1, 0, 0, 0, 404, 383, 1, 0, 0, 0, 404, 384, 1, 0, 0, 0, 404, 385, 1, 0, 0, 0, 404, 386, 1, 0, 0, 0, 404, 387, 1, 0, 0, 0, 404, 388, 1, 0, 0, 0, 404, 389, 1, 0, 0, 0, 404, 390, 1, 0, 0, 0, 404, 391, 1, 0, 0, 0, 404, 392, 1, 0, 0, 0, 404, 393, 1, 0, 0, 0, 404, 394, 1, 0, 0, 0, 404, 395, 1, 0, 0, 0, 404, 396, 1, 0, 0, 0, 404, 397, 1, 0, 0, 0, 404, 398, 1, 0, 0, 0, 404, 399, 1, 0, 0, 0, 404, 400, 1, 0, 0, 0, 404, 401, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 403, 1, 0, 0, 0, 405, 5, 1, 0, 0, 0, 406, 407, 5, 203, 0, 0, 407, 408, 3, 184, 92, 0, 408, 7, 1, 0, 0, 0, 409, 418, 3, 18, 9, 0, 410, 418, 3, 20, 10, 0, 411, 418, 3, 22, 11, 0, 412, 418, 3, 24, 12, 0, 413, 418, 3, 16, 8, 0, 414, 418, 3, 14, 7, 0, 415, 418, 3, 12, 6, 0, 416, 418, 3, 10, 5, 0, 417, 409, 1, 0, 0, 0, 417, 410, 1, 0, 0, 0, 417, 411, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 413, 1, 0, 0, 0, 417, 414, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 9, 1, 0, 0, 0, 419, 421, 5, 37, 0, 0, 420, 422, 5, 19, 0, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 5, 188, 0, 0, 424, 426, 3, 172, 86, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 443, 3, 174, 87, 0, 428, 429, 5, 265, 0, 0, 429, 434, 3, 216, 108, 0, 430, 431, 5, 263, 0, 0, 431, 433, 3, 216, 108, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 263, 0, 0, 438, 440, 3, 210, 105, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 5, 266, 0, 0, 442, 444, 1, 0, 0, 0, 443, 428, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 451, 1, 0, 0, 0, 445, 446, 5, 17, 0, 0, 446, 449, 5, 26, 0, 0, 447, 450, 3, 296, 148, 0, 448, 450, 3, 254, 127, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 3, 196, 98, 0, 454, 455, 5, 9, 0, 0, 455, 457, 3, 206, 103, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 11, 1, 0, 0, 0, 458, 460, 5, 37, 0, 0, 459, 461, 5, 19, 0, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 5, 188, 0, 0, 463, 465, 3, 172, 86, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 3, 174, 87, 0, 467, 471, 5, 115, 0, 0, 468, 472, 3, 186, 93, 0, 469, 470, 5, 147, 0, 0, 470, 472, 3, 318, 159, 0, 471, 468, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 475, 5, 26, 0, 0, 475, 477, 3, 254, 127, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 196, 98, 0, 479, 13, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 506, 3, 174, 87, 0, 489, 490, 5, 265, 0, 0, 490, 495, 3, 218, 109, 0, 491, 492, 5, 263, 0, 0, 492, 494, 3, 218, 109, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 502, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 499, 5, 263, 0, 0, 499, 500, 5, 150, 0, 0, 500, 501, 5, 110, 0, 0, 501, 503, 3, 296, 148, 0, 502, 498, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 5, 266, 0, 0, 505, 507, 1, 0, 0, 0, 506, 489, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 513, 1, 0, 0, 0, 508, 509, 5, 150, 0, 0, 509, 511, 5, 110, 0, 0, 510, 512, 3, 296, 148, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 508, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 518, 1, 0, 0, 0, 515, 516, 5, 145, 0, 0, 516, 517, 5, 26, 0, 0, 517, 519, 3, 236, 118, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 222, 111, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 23, 0, 0, 524, 525, 5, 9, 0, 0, 525, 528, 5, 111, 0, 0, 526, 527, 5, 25, 0, 0, 527, 529, 3, 252, 126, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 531, 5, 9, 0, 0, 531, 533, 3, 206, 103, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 15, 1, 0, 0, 0, 534, 535, 5, 37, 0, 0, 535, 537, 5, 212, 0, 0, 536, 538, 3, 172, 86, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 3, 178, 89, 0, 540, 542, 3, 202, 101, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 545, 3, 222, 111, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 547, 5, 25, 0, 0, 547, 549, 3, 252, 126, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 9, 0, 0, 551, 552, 3, 206, 103, 0, 552, 17, 1, 0, 0, 0, 553, 554, 5, 37, 0, 0, 554, 556, 7, 0, 0, 0, 555, 557, 3, 172, 86, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 3, 176, 88, 0, 559, 561, 3, 222, 111, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 24, 0, 0, 563, 565, 3, 318, 159, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 19, 1, 0, 0, 0, 566, 567, 5, 37, 0, 0, 567, 568, 5, 166, 0, 0, 568, 569, 3, 362, 181, 0, 569, 21, 1, 0, 0, 0, 570, 572, 5, 37, 0, 0, 571, 573, 5, 12, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 5, 84, 0, 0, 575, 577, 3, 172, 86, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 591, 3, 180, 90, 0, 579, 588, 5, 265, 0, 0, 580, 585, 3, 332, 166, 0, 581, 582, 5, 263, 0, 0, 582, 584, 3, 332, 166, 0, 583, 581, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 580, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 592, 5, 266, 0, 0, 591, 579, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 160, 0, 0, 594, 597, 3, 332, 166, 0, 595, 596, 5, 102, 0, 0, 596, 598, 3, 332, 166, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 5, 24, 0, 0, 600, 604, 5, 274, 0, 0, 601, 602, 5, 104, 0, 0, 602, 603, 5, 249, 0, 0, 603, 605, 5, 274, 0, 0, 604, 601, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 5, 206, 0, 0, 607, 608, 5, 249, 0, 0, 608, 609, 5, 274, 0, 0, 609, 610, 5, 126, 0, 0, 610, 611, 5, 249, 0, 0, 611, 615, 5, 274, 0, 0, 612, 613, 5, 18, 0, 0, 613, 614, 5, 249, 0, 0, 614, 616, 5, 274, 0, 0, 615, 612, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 618, 5, 20, 0, 0, 618, 619, 5, 249, 0, 0, 619, 621, 5, 274, 0, 0, 620, 617, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 625, 1, 0, 0, 0, 622, 623, 5, 187, 0, 0, 623, 624, 5, 249, 0, 0, 624, 626, 5, 274, 0, 0, 625, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 76, 0, 0, 628, 629, 5, 249, 0, 0, 629, 631, 5, 274, 0, 0, 630, 627, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 23, 1, 0, 0, 0, 632, 633, 5, 37, 0, 0, 633, 635, 5, 84, 0, 0, 634, 636, 3, 172, 86, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 650, 3, 180, 90, 0, 638, 647, 5, 265, 0, 0, 639, 644, 3, 332, 166, 0, 640, 641, 5, 263, 0, 0, 641, 643, 3, 332, 166, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 639, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 651, 5, 266, 0, 0, 650, 638, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 160, 0, 0, 653, 655, 3, 332, 166, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 24, 0, 0, 657, 658, 5, 274, 0, 0, 658, 659, 5, 186, 0, 0, 659, 660, 5, 249, 0, 0, 660, 661, 3, 318, 159, 0, 661, 25, 1, 0, 0, 0, 662, 681, 3, 28, 14, 0, 663, 681, 3, 62, 31, 0, 664, 681, 3, 60, 30, 0, 665, 681, 3, 58, 29, 0, 666, 681, 3, 54, 27, 0, 667, 681, 3, 56, 28, 0, 668, 681, 3, 52, 26, 0, 669, 681, 3, 48, 24, 0, 670, 681, 3, 50, 25, 0, 671, 681, 3, 46, 23, 0, 672, 681, 3, 44, 22, 0, 673, 681, 3, 42, 21, 0, 674, 681, 3, 40, 20, 0, 675, 681, 3, 34, 17, 0, 676, 681, 3, 30, 15, 0, 677, 681, 3, 32, 16, 0, 678, 681, 3, 36, 18, 0, 679, 681, 3, 38, 19, 0, 680, 662, 1, 0, 0, 0, 680, 663, 1, 0, 0, 0, 680, 664, 1, 0, 0, 0, 680, 665, 1, 0, 0, 0, 680, 666, 1, 0, 0, 0, 680, 667, 1, 0, 0, 0, 680, 668, 1, 0, 0, 0, 680, 669, 1, 0, 0, 0, 680, 670, 1, 0, 0, 0, 680, 671, 1, 0, 0, 0, 680, 672, 1, 0, 0, 0, 680, 673, 1, 0, 0, 0, 680, 674, 1, 0, 0, 0, 680, 675, 1, 0, 0, 0, 680, 676, 1, 0, 0, 0, 680, 677, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 679, 1, 0, 0, 0, 681, 27, 1, 0, 0, 0, 682, 683, 5, 4, 0, 0, 683, 684, 5, 46, 0, 0, 684, 685, 3, 184, 92, 0, 685, 686, 5, 176, 0, 0, 686, 687, 5, 142, 0, 0, 687, 688, 7, 1, 0, 0, 688, 689, 3, 362, 181, 0, 689, 29, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 188, 0, 0, 692, 693, 3, 186, 93, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 32, 0, 0, 695, 696, 5, 182, 0, 0, 696, 697, 3, 192, 96, 0, 697, 698, 5, 265, 0, 0, 698, 699, 3, 232, 116, 0, 699, 700, 5, 249, 0, 0, 700, 706, 3, 318, 159, 0, 701, 702, 5, 263, 0, 0, 702, 703, 3, 232, 116, 0, 703, 704, 5, 249, 0, 0, 704, 705, 3, 318, 159, 0, 705, 707, 1, 0, 0, 0, 706, 701, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 266, 0, 0, 709, 31, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 188, 0, 0, 712, 715, 3, 186, 93, 0, 713, 714, 5, 145, 0, 0, 714, 716, 3, 308, 154, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 728, 5, 176, 0, 0, 718, 719, 5, 30, 0, 0, 719, 720, 5, 94, 0, 0, 720, 725, 3, 318, 159, 0, 721, 722, 5, 216, 0, 0, 722, 723, 5, 151, 0, 0, 723, 724, 5, 249, 0, 0, 724, 726, 3, 364, 182, 0, 725, 721, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 729, 5, 197, 0, 0, 728, 718, 1, 0, 0, 0, 728, 727, 1, 0, 0, 0, 729, 33, 1, 0, 0, 0, 730, 731, 5, 4, 0, 0, 731, 732, 5, 188, 0, 0, 732, 733, 3, 186, 93, 0, 733, 734, 5, 31, 0, 0, 734, 735, 3, 192, 96, 0, 735, 736, 3, 224, 112, 0, 736, 35, 1, 0, 0, 0, 737, 738, 5, 4, 0, 0, 738, 739, 5, 188, 0, 0, 739, 740, 3, 186, 93, 0, 740, 742, 5, 58, 0, 0, 741, 743, 5, 32, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 3, 192, 96, 0, 745, 37, 1, 0, 0, 0, 746, 747, 5, 4, 0, 0, 747, 748, 5, 188, 0, 0, 748, 749, 3, 186, 93, 0, 749, 750, 5, 176, 0, 0, 750, 751, 5, 142, 0, 0, 751, 752, 7, 1, 0, 0, 752, 753, 3, 362, 181, 0, 753, 39, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 762, 3, 186, 93, 0, 757, 763, 5, 158, 0, 0, 758, 760, 5, 1, 0, 0, 759, 761, 3, 172, 86, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 763, 1, 0, 0, 0, 762, 757, 1, 0, 0, 0, 762, 758, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 265, 0, 0, 766, 771, 3, 224, 112, 0, 767, 768, 5, 263, 0, 0, 768, 770, 3, 224, 112, 0, 769, 767, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 775, 5, 266, 0, 0, 775, 41, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 779, 3, 186, 93, 0, 779, 780, 5, 1, 0, 0, 780, 782, 5, 32, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 3, 226, 113, 0, 785, 43, 1, 0, 0, 0, 786, 787, 5, 4, 0, 0, 787, 788, 5, 188, 0, 0, 788, 789, 3, 186, 93, 0, 789, 791, 5, 4, 0, 0, 790, 792, 5, 32, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 802, 3, 192, 96, 0, 794, 798, 5, 176, 0, 0, 795, 799, 3, 230, 115, 0, 796, 797, 5, 34, 0, 0, 797, 799, 3, 318, 159, 0, 798, 795, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 799, 803, 1, 0, 0, 0, 800, 801, 5, 58, 0, 0, 801, 803, 5, 51, 0, 0, 802, 794, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 45, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 809, 5, 1, 0, 0, 808, 810, 3, 172, 86, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 823, 1, 0, 0, 0, 811, 812, 5, 145, 0, 0, 812, 815, 3, 308, 154, 0, 813, 814, 5, 24, 0, 0, 814, 816, 3, 318, 159, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 3, 244, 122, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 821, 5, 154, 0, 0, 821, 822, 5, 145, 0, 0, 822, 824, 3, 242, 121, 0, 823, 811, 1, 0, 0, 0, 823, 820, 1, 0, 0, 0, 824, 47, 1, 0, 0, 0, 825, 826, 5, 4, 0, 0, 826, 827, 5, 188, 0, 0, 827, 830, 3, 186, 93, 0, 828, 829, 5, 145, 0, 0, 829, 831, 3, 308, 154, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 844, 5, 176, 0, 0, 833, 834, 5, 72, 0, 0, 834, 845, 3, 234, 117, 0, 835, 836, 5, 168, 0, 0, 836, 837, 5, 79, 0, 0, 837, 845, 3, 258, 129, 0, 838, 839, 5, 24, 0, 0, 839, 845, 3, 318, 159, 0, 840, 841, 5, 25, 0, 0, 841, 845, 3, 252, 126, 0, 842, 843, 5, 175, 0, 0, 843, 845, 3, 252, 126, 0, 844, 833, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 49, 1, 0, 0, 0, 846, 847, 5, 4, 0, 0, 847, 848, 5, 188, 0, 0, 848, 849, 3, 186, 93, 0, 849, 850, 5, 155, 0, 0, 850, 851, 5, 146, 0, 0, 851, 51, 1, 0, 0, 0, 852, 853, 5, 4, 0, 0, 853, 854, 5, 188, 0, 0, 854, 855, 3, 186, 93, 0, 855, 857, 5, 58, 0, 0, 856, 858, 3, 170, 85, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 867, 1, 0, 0, 0, 859, 860, 5, 145, 0, 0, 860, 862, 3, 308, 154, 0, 861, 863, 5, 22, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 868, 1, 0, 0, 0, 864, 865, 5, 154, 0, 0, 865, 866, 5, 145, 0, 0, 866, 868, 3, 242, 121, 0, 867, 859, 1, 0, 0, 0, 867, 864, 1, 0, 0, 0, 868, 53, 1, 0, 0, 0, 869, 870, 5, 4, 0, 0, 870, 871, 5, 212, 0, 0, 871, 873, 3, 188, 94, 0, 872, 874, 3, 202, 101, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 9, 0, 0, 876, 877, 3, 206, 103, 0, 877, 55, 1, 0, 0, 0, 878, 879, 5, 4, 0, 0, 879, 880, 5, 212, 0, 0, 880, 881, 3, 188, 94, 0, 881, 882, 5, 156, 0, 0, 882, 883, 5, 193, 0, 0, 883, 884, 3, 188, 94, 0, 884, 57, 1, 0, 0, 0, 885, 886, 5, 4, 0, 0, 886, 887, 5, 212, 0, 0, 887, 888, 3, 188, 94, 0, 888, 889, 5, 176, 0, 0, 889, 890, 5, 142, 0, 0, 890, 891, 7, 1, 0, 0, 891, 892, 3, 358, 179, 0, 892, 59, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 188, 0, 0, 895, 896, 3, 186, 93, 0, 896, 897, 5, 156, 0, 0, 897, 898, 5, 193, 0, 0, 898, 899, 3, 186, 93, 0, 899, 61, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 7, 2, 0, 0, 904, 905, 5, 25, 0, 0, 905, 906, 3, 252, 126, 0, 906, 63, 1, 0, 0, 0, 907, 909, 5, 196, 0, 0, 908, 910, 5, 188, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 1, 0, 0, 0, 911, 913, 3, 170, 85, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 186, 93, 0, 915, 65, 1, 0, 0, 0, 916, 918, 5, 56, 0, 0, 917, 919, 5, 46, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 922, 7, 3, 0, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 358, 179, 0, 924, 67, 1, 0, 0, 0, 925, 928, 3, 70, 35, 0, 926, 928, 3, 72, 36, 0, 927, 925, 1, 0, 0, 0, 927, 926, 1, 0, 0, 0, 928, 69, 1, 0, 0, 0, 929, 930, 5, 36, 0, 0, 930, 931, 5, 182, 0, 0, 931, 933, 3, 186, 93, 0, 932, 934, 3, 296, 148, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 947, 1, 0, 0, 0, 935, 936, 5, 190, 0, 0, 936, 937, 5, 185, 0, 0, 937, 938, 5, 265, 0, 0, 938, 939, 3, 364, 182, 0, 939, 945, 5, 266, 0, 0, 940, 941, 5, 157, 0, 0, 941, 942, 5, 265, 0, 0, 942, 943, 3, 364, 182, 0, 943, 944, 5, 266, 0, 0, 944, 946, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 935, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 71, 1, 0, 0, 0, 949, 950, 5, 36, 0, 0, 950, 951, 5, 96, 0, 0, 951, 952, 5, 182, 0, 0, 952, 958, 3, 186, 93, 0, 953, 954, 5, 145, 0, 0, 954, 955, 5, 265, 0, 0, 955, 956, 3, 308, 154, 0, 956, 957, 5, 266, 0, 0, 957, 959, 1, 0, 0, 0, 958, 953, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 73, 1, 0, 0, 0, 960, 967, 3, 86, 43, 0, 961, 967, 3, 84, 42, 0, 962, 967, 3, 82, 41, 0, 963, 967, 3, 78, 39, 0, 964, 967, 3, 80, 40, 0, 965, 967, 3, 76, 38, 0, 966, 960, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 962, 1, 0, 0, 0, 966, 963, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 965, 1, 0, 0, 0, 967, 75, 1, 0, 0, 0, 968, 969, 5, 58, 0, 0, 969, 971, 7, 0, 0, 0, 970, 972, 3, 170, 85, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 184, 92, 0, 974, 976, 7, 4, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 77, 1, 0, 0, 0, 977, 978, 5, 58, 0, 0, 978, 980, 5, 212, 0, 0, 979, 981, 3, 170, 85, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 188, 94, 0, 983, 79, 1, 0, 0, 0, 984, 985, 5, 58, 0, 0, 985, 987, 5, 188, 0, 0, 986, 988, 3, 170, 85, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 991, 3, 186, 93, 0, 990, 992, 5, 22, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 81, 1, 0, 0, 0, 993, 995, 5, 58, 0, 0, 994, 996, 5, 96, 0, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 5, 182, 0, 0, 998, 1001, 3, 186, 93, 0, 999, 1000, 5, 145, 0, 0, 1000, 1002, 3, 308, 154, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 83, 1, 0, 0, 0, 1003, 1005, 5, 58, 0, 0, 1004, 1006, 5, 12, 0, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 5, 84, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1024, 3, 190, 95, 0, 1012, 1021, 5, 265, 0, 0, 1013, 1018, 3, 332, 166, 0, 1014, 1015, 5, 263, 0, 0, 1015, 1017, 3, 332, 166, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 5, 266, 0, 0, 1024, 1012, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 85, 1, 0, 0, 0, 1026, 1027, 5, 58, 0, 0, 1027, 1028, 5, 166, 0, 0, 1028, 1029, 3, 362, 181, 0, 1029, 87, 1, 0, 0, 0, 1030, 1033, 3, 90, 45, 0, 1031, 1033, 3, 92, 46, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 89, 1, 0, 0, 0, 1034, 1035, 5, 86, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 362, 181, 0, 1037, 1038, 5, 193, 0, 0, 1038, 1039, 5, 87, 0, 0, 1039, 1040, 3, 362, 181, 0, 1040, 91, 1, 0, 0, 0, 1041, 1042, 5, 86, 0, 0, 1042, 1043, 3, 354, 177, 0, 1043, 1044, 5, 136, 0, 0, 1044, 1046, 3, 356, 178, 0, 1045, 1047, 3, 358, 179, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 193, 0, 0, 1049, 1050, 3, 360, 180, 0, 1050, 93, 1, 0, 0, 0, 1051, 1054, 3, 96, 48, 0, 1052, 1054, 3, 98, 49, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1052, 1, 0, 0, 0, 1054, 95, 1, 0, 0, 0, 1055, 1056, 5, 161, 0, 0, 1056, 1057, 5, 166, 0, 0, 1057, 1058, 3, 362, 181, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1060, 5, 87, 0, 0, 1060, 1061, 3, 362, 181, 0, 1061, 97, 1, 0, 0, 0, 1062, 1066, 5, 161, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 5, 137, 0, 0, 1065, 1067, 5, 78, 0, 0, 1066, 1063, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 3, 354, 177, 0, 1069, 1070, 5, 136, 0, 0, 1070, 1072, 3, 356, 178, 0, 1071, 1073, 3, 358, 179, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1080, 5, 82, 0, 0, 1075, 1081, 3, 360, 180, 0, 1076, 1078, 5, 166, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 362, 181, 0, 1080, 1075, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1081, 99, 1, 0, 0, 0, 1082, 1084, 3, 208, 104, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 5, 99, 0, 0, 1086, 1088, 7, 5, 0, 0, 1087, 1089, 5, 188, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 3, 186, 93, 0, 1091, 1093, 3, 296, 148, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1106, 1, 0, 0, 0, 1094, 1095, 5, 145, 0, 0, 1095, 1096, 5, 265, 0, 0, 1096, 1101, 3, 308, 154, 0, 1097, 1098, 5, 263, 0, 0, 1098, 1100, 3, 308, 154, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1104, 1105, 5, 266, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1094, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 206, 103, 0, 1109, 101, 1, 0, 0, 0, 1110, 1113, 3, 104, 52, 0, 1111, 1113, 3, 106, 53, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 103, 1, 0, 0, 0, 1114, 1116, 5, 50, 0, 0, 1115, 1117, 5, 82, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 186, 93, 0, 1119, 1120, 5, 215, 0, 0, 1120, 1122, 3, 310, 155, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 105, 1, 0, 0, 0, 1123, 1124, 5, 50, 0, 0, 1124, 1129, 3, 186, 93, 0, 1125, 1127, 5, 9, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 362, 181, 0, 1129, 1126, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1140, 5, 82, 0, 0, 1132, 1137, 3, 284, 142, 0, 1133, 1134, 5, 263, 0, 0, 1134, 1136, 3, 284, 142, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1132, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1143, 5, 215, 0, 0, 1143, 1145, 3, 310, 155, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 107, 1, 0, 0, 0, 1146, 1147, 5, 54, 0, 0, 1147, 1148, 3, 186, 93, 0, 1148, 1149, 5, 176, 0, 0, 1149, 1159, 3, 198, 99, 0, 1150, 1151, 5, 82, 0, 0, 1151, 1156, 3, 284, 142, 0, 1152, 1153, 5, 263, 0, 0, 1153, 1155, 3, 284, 142, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1150, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1162, 5, 215, 0, 0, 1162, 1164, 3, 310, 155, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 109, 1, 0, 0, 0, 1165, 1166, 5, 207, 0, 0, 1166, 1168, 5, 103, 0, 0, 1167, 1169, 5, 188, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, 3, 186, 93, 0, 1171, 1173, 3, 296, 148, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 3, 206, 103, 0, 1175, 111, 1, 0, 0, 0, 1176, 1189, 3, 132, 66, 0, 1177, 1189, 3, 134, 67, 0, 1178, 1189, 3, 136, 68, 0, 1179, 1189, 3, 130, 65, 0, 1180, 1189, 3, 128, 64, 0, 1181, 1189, 3, 126, 63, 0, 1182, 1189, 3, 124, 62, 0, 1183, 1189, 3, 122, 61, 0, 1184, 1189, 3, 120, 60, 0, 1185, 1189, 3, 118, 59, 0, 1186, 1189, 3, 116, 58, 0, 1187, 1189, 3, 114, 57, 0, 1188, 1176, 1, 0, 0, 0, 1188, 1177, 1, 0, 0, 0, 1188, 1178, 1, 0, 0, 0, 1188, 1179, 1, 0, 0, 0, 1188, 1180, 1, 0, 0, 0, 1188, 1181, 1, 0, 0, 0, 1188, 1182, 1, 0, 0, 0, 1188, 1183, 1, 0, 0, 0, 1188, 1184, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 113, 1, 0, 0, 0, 1190, 1191, 5, 179, 0, 0, 1191, 1203, 7, 6, 0, 0, 1192, 1194, 5, 115, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1200, 3, 318, 159, 0, 1196, 1197, 5, 271, 0, 0, 1197, 1199, 3, 318, 159, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1193, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 115, 1, 0, 0, 0, 1205, 1206, 5, 179, 0, 0, 1206, 1209, 5, 189, 0, 0, 1207, 1208, 5, 94, 0, 0, 1208, 1210, 3, 186, 93, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1222, 1, 0, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 318, 159, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 318, 159, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 117, 1, 0, 0, 0, 1224, 1226, 5, 179, 0, 0, 1225, 1227, 7, 7, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1231, 5, 85, 0, 0, 1229, 1230, 5, 94, 0, 0, 1230, 1232, 3, 184, 92, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1244, 1, 0, 0, 0, 1233, 1235, 5, 115, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1241, 3, 318, 159, 0, 1237, 1238, 5, 271, 0, 0, 1238, 1240, 3, 318, 159, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 119, 1, 0, 0, 0, 1246, 1247, 5, 179, 0, 0, 1247, 1248, 5, 37, 0, 0, 1248, 1249, 5, 188, 0, 0, 1249, 1250, 3, 186, 93, 0, 1250, 121, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 212, 0, 0, 1254, 1255, 3, 188, 94, 0, 1255, 123, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 188, 0, 0, 1258, 1259, 5, 182, 0, 0, 1259, 1260, 3, 186, 93, 0, 1260, 125, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 32, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 127, 1, 0, 0, 0, 1266, 1268, 5, 179, 0, 0, 1267, 1269, 5, 154, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 5, 146, 0, 0, 1271, 1272, 3, 186, 93, 0, 1272, 129, 1, 0, 0, 0, 1273, 1274, 5, 179, 0, 0, 1274, 1275, 5, 73, 0, 0, 1275, 1276, 5, 94, 0, 0, 1276, 1286, 3, 186, 93, 0, 1277, 1278, 5, 145, 0, 0, 1278, 1279, 5, 265, 0, 0, 1279, 1282, 3, 308, 154, 0, 1280, 1281, 5, 263, 0, 0, 1281, 1283, 3, 308, 154, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 5, 266, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1277, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 131, 1, 0, 0, 0, 1288, 1290, 5, 179, 0, 0, 1289, 1291, 5, 39, 0, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 5, 167, 0, 0, 1293, 133, 1, 0, 0, 0, 1294, 1295, 5, 179, 0, 0, 1295, 1296, 5, 166, 0, 0, 1296, 1297, 5, 86, 0, 0, 1297, 1298, 5, 87, 0, 0, 1298, 1299, 3, 362, 181, 0, 1299, 135, 1, 0, 0, 0, 1300, 1315, 3, 138, 69, 0, 1301, 1315, 3, 140, 70, 0, 1302, 1315, 3, 142, 71, 0, 1303, 1304, 5, 179, 0, 0, 1304, 1305, 5, 86, 0, 0, 1305, 1306, 7, 8, 0, 0, 1306, 1312, 3, 362, 181, 0, 1307, 1308, 5, 136, 0, 0, 1308, 1310, 7, 9, 0, 0, 1309, 1311, 3, 358, 179, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1307, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1300, 1, 0, 0, 0, 1314, 1301, 1, 0, 0, 0, 1314, 1302, 1, 0, 0, 0, 1314, 1303, 1, 0, 0, 0, 1315, 137, 1, 0, 0, 0, 1316, 1317, 5, 179, 0, 0, 1317, 1318, 5, 86, 0, 0, 1318, 1319, 7, 8, 0, 0, 1319, 1325, 3, 362, 181, 0, 1320, 1321, 5, 136, 0, 0, 1321, 1323, 5, 46, 0, 0, 1322, 1324, 3, 184, 92, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1320, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 139, 1, 0, 0, 0, 1327, 1328, 5, 179, 0, 0, 1328, 1329, 5, 86, 0, 0, 1329, 1330, 7, 8, 0, 0, 1330, 1336, 3, 362, 181, 0, 1331, 1332, 5, 136, 0, 0, 1332, 1334, 5, 188, 0, 0, 1333, 1335, 3, 186, 93, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1331, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 141, 1, 0, 0, 0, 1338, 1339, 5, 179, 0, 0, 1339, 1340, 5, 86, 0, 0, 1340, 1341, 7, 8, 0, 0, 1341, 1347, 3, 362, 181, 0, 1342, 1343, 5, 136, 0, 0, 1343, 1345, 5, 32, 0, 0, 1344, 1346, 3, 192, 96, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 143, 1, 0, 0, 0, 1349, 1353, 3, 146, 73, 0, 1350, 1353, 3, 148, 74, 0, 1351, 1353, 3, 150, 75, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 145, 1, 0, 0, 0, 1354, 1355, 5, 34, 0, 0, 1355, 1356, 5, 136, 0, 0, 1356, 1357, 5, 46, 0, 0, 1357, 1358, 3, 184, 92, 0, 1358, 1361, 5, 108, 0, 0, 1359, 1362, 3, 318, 159, 0, 1360, 1362, 5, 133, 0, 0, 1361, 1359, 1, 0, 0, 0, 1361, 1360, 1, 0, 0, 0, 1362, 147, 1, 0, 0, 0, 1363, 1364, 5, 34, 0, 0, 1364, 1365, 5, 136, 0, 0, 1365, 1366, 5, 188, 0, 0, 1366, 1367, 3, 186, 93, 0, 1367, 1370, 5, 108, 0, 0, 1368, 1371, 3, 318, 159, 0, 1369, 1371, 5, 133, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 149, 1, 0, 0, 0, 1372, 1373, 5, 34, 0, 0, 1373, 1374, 5, 136, 0, 0, 1374, 1375, 5, 32, 0, 0, 1375, 1376, 3, 192, 96, 0, 1376, 1379, 5, 108, 0, 0, 1377, 1380, 3, 318, 159, 0, 1378, 1380, 5, 133, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1378, 1, 0, 0, 0, 1380, 151, 1, 0, 0, 0, 1381, 1382, 5, 67, 0, 0, 1382, 1383, 3, 4, 2, 0, 1383, 153, 1, 0, 0, 0, 1384, 1390, 5, 176, 0, 0, 1385, 1391, 5, 2, 0, 0, 1386, 1387, 3, 362, 181, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 308, 154, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 155, 1, 0, 0, 0, 1392, 1393, 5, 264, 0, 0, 1393, 1394, 5, 180, 0, 0, 1394, 1404, 5, 265, 0, 0, 1395, 1397, 3, 318, 159, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1401, 3, 318, 159, 0, 1399, 1400, 5, 263, 0, 0, 1400, 1402, 3, 308, 154, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1405, 3, 308, 154, 0, 1404, 1396, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 5, 266, 0, 0, 1407, 157, 1, 0, 0, 0, 1408, 1409, 5, 107, 0, 0, 1409, 1410, 5, 121, 0, 0, 1410, 1411, 3, 186, 93, 0, 1411, 159, 1, 0, 0, 0, 1412, 1413, 5, 118, 0, 0, 1413, 1414, 5, 45, 0, 0, 1414, 1415, 5, 98, 0, 0, 1415, 1417, 5, 274, 0, 0, 1416, 1418, 5, 144, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 5, 103, 0, 0, 1420, 1421, 5, 188, 0, 0, 1421, 1431, 3, 186, 93, 0, 1422, 1423, 5, 145, 0, 0, 1423, 1424, 5, 265, 0, 0, 1424, 1427, 3, 308, 154, 0, 1425, 1426, 5, 263, 0, 0, 1426, 1428, 3, 308, 154, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 5, 266, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 161, 1, 0, 0, 0, 1433, 1437, 3, 164, 82, 0, 1434, 1437, 3, 166, 83, 0, 1435, 1437, 3, 168, 84, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 163, 1, 0, 0, 0, 1438, 1439, 5, 162, 0, 0, 1439, 1452, 3, 186, 93, 0, 1440, 1441, 5, 145, 0, 0, 1441, 1442, 5, 265, 0, 0, 1442, 1447, 3, 308, 154, 0, 1443, 1444, 5, 263, 0, 0, 1444, 1446, 3, 308, 154, 0, 1445, 1443, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1450, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1450, 1451, 5, 266, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1440, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 165, 1, 0, 0, 0, 1454, 1455, 5, 162, 0, 0, 1455, 1456, 5, 13, 0, 0, 1456, 167, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1459, 5, 85, 0, 0, 1459, 1460, 3, 190, 95, 0, 1460, 169, 1, 0, 0, 0, 1461, 1462, 5, 93, 0, 0, 1462, 1463, 5, 66, 0, 0, 1463, 171, 1, 0, 0, 0, 1464, 1465, 5, 93, 0, 0, 1465, 1466, 5, 132, 0, 0, 1466, 1467, 5, 66, 0, 0, 1467, 173, 1, 0, 0, 0, 1468, 1469, 3, 358, 179, 0, 1469, 175, 1, 0, 0, 0, 1470, 1471, 3, 358, 179, 0, 1471, 177, 1, 0, 0, 0, 1472, 1473, 3, 358, 179, 0, 1473, 179, 1, 0, 0, 0, 1474, 1475, 3, 358, 179, 0, 1475, 181, 1, 0, 0, 0, 1476, 1477, 3, 358, 179, 0, 1477, 183, 1, 0, 0, 0, 1478, 1479, 3, 358, 179, 0, 1479, 185, 1, 0, 0, 0, 1480, 1485, 3, 362, 181, 0, 1481, 1482, 5, 261, 0, 0, 1482, 1484, 3, 362, 181, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 187, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1493, 3, 362, 181, 0, 1489, 1490, 5, 261, 0, 0, 1490, 1492, 3, 362, 181, 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, 189, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 3, 366, 183, 0, 1497, 1499, 3, 358, 179, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 191, 1, 0, 0, 0, 1500, 1503, 3, 358, 179, 0, 1501, 1503, 4, 96, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1501, 1, 0, 0, 0, 1503, 193, 1, 0, 0, 0, 1504, 1507, 3, 186, 93, 0, 1505, 1507, 3, 188, 94, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1505, 1, 0, 0, 0, 1507, 195, 1, 0, 0, 0, 1508, 1509, 5, 21, 0, 0, 1509, 1510, 5, 26, 0, 0, 1510, 1512, 3, 296, 148, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1515, 3, 222, 111, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 258, 129, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 252, 126, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 234, 117, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 318, 159, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 358, 179, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 252, 126, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 358, 179, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 308, 154, 0, 1562, 201, 1, 0, 0, 0, 1563, 1565, 5, 265, 0, 0, 1564, 1566, 3, 204, 102, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1573, 1, 0, 0, 0, 1567, 1569, 5, 263, 0, 0, 1568, 1570, 3, 204, 102, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1567, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 266, 0, 0, 1577, 203, 1, 0, 0, 0, 1578, 1580, 3, 182, 91, 0, 1579, 1581, 3, 222, 111, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 205, 1, 0, 0, 0, 1582, 1584, 3, 208, 104, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 262, 131, 0, 1586, 207, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 278, 139, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 278, 139, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 209, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 296, 148, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 212, 106, 0, 1614, 1616, 3, 212, 106, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 212, 106, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 211, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 296, 148, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 296, 148, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 213, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 332, 166, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 318, 159, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 215, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1650, 3, 332, 166, 0, 1649, 1651, 3, 222, 111, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 217, 1, 0, 0, 0, 1652, 1653, 3, 220, 110, 0, 1653, 219, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1663, 3, 332, 166, 0, 1656, 1660, 3, 228, 114, 0, 1657, 1659, 3, 228, 114, 0, 1658, 1657, 1, 0, 0, 0, 1659, 1662, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1656, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1669, 5, 150, 0, 0, 1669, 1671, 5, 110, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 221, 1, 0, 0, 0, 1672, 1673, 5, 34, 0, 0, 1673, 1674, 3, 318, 159, 0, 1674, 223, 1, 0, 0, 0, 1675, 1683, 3, 214, 107, 0, 1676, 1680, 3, 228, 114, 0, 1677, 1679, 3, 228, 114, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1676, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 225, 1, 0, 0, 0, 1685, 1686, 3, 182, 91, 0, 1686, 1689, 3, 332, 166, 0, 1687, 1688, 5, 34, 0, 0, 1688, 1690, 3, 318, 159, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1698, 1, 0, 0, 0, 1691, 1695, 3, 228, 114, 0, 1692, 1694, 3, 228, 114, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1691, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 227, 1, 0, 0, 0, 1700, 1702, 5, 132, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1706, 5, 133, 0, 0, 1704, 1706, 3, 230, 115, 0, 1705, 1701, 1, 0, 0, 0, 1705, 1704, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1708, 5, 60, 0, 0, 1708, 1716, 3, 308, 154, 0, 1709, 1710, 5, 35, 0, 0, 1710, 1716, 3, 308, 154, 0, 1711, 1712, 5, 51, 0, 0, 1712, 1716, 3, 308, 154, 0, 1713, 1714, 5, 16, 0, 0, 1714, 1716, 3, 364, 182, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1718, 7, 10, 0, 0, 1718, 233, 1, 0, 0, 0, 1719, 1720, 7, 11, 0, 0, 1720, 235, 1, 0, 0, 0, 1721, 1726, 3, 238, 119, 0, 1722, 1723, 5, 263, 0, 0, 1723, 1725, 3, 238, 119, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1731, 1, 0, 0, 0, 1728, 1726, 1, 0, 0, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 240, 120, 0, 1734, 1721, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 237, 1, 0, 0, 0, 1736, 1738, 5, 89, 0, 0, 1737, 1739, 3, 296, 148, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 5, 146, 0, 0, 1741, 1742, 3, 364, 182, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 154, 0, 0, 1744, 1746, 3, 296, 148, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 265, 0, 0, 1748, 1749, 5, 145, 0, 0, 1749, 1755, 3, 242, 121, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1752, 5, 145, 0, 0, 1752, 1754, 3, 242, 121, 0, 1753, 1750, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1759, 5, 266, 0, 0, 1759, 241, 1, 0, 0, 0, 1760, 1761, 5, 210, 0, 0, 1761, 1762, 3, 248, 124, 0, 1762, 1763, 3, 308, 154, 0, 1763, 1776, 1, 0, 0, 0, 1764, 1765, 3, 308, 154, 0, 1765, 1766, 3, 246, 123, 0, 1766, 1768, 1, 0, 0, 0, 1767, 1764, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 5, 211, 0, 0, 1770, 1771, 3, 246, 123, 0, 1771, 1772, 3, 308, 154, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1770, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1760, 1, 0, 0, 0, 1775, 1767, 1, 0, 0, 0, 1776, 243, 1, 0, 0, 0, 1777, 1778, 5, 30, 0, 0, 1778, 1779, 5, 94, 0, 0, 1779, 1784, 3, 362, 181, 0, 1780, 1781, 5, 216, 0, 0, 1781, 1782, 5, 151, 0, 0, 1782, 1783, 5, 249, 0, 0, 1783, 1785, 3, 364, 182, 0, 1784, 1780, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1788, 5, 197, 0, 0, 1787, 1777, 1, 0, 0, 0, 1787, 1786, 1, 0, 0, 0, 1788, 245, 1, 0, 0, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1795, 5, 251, 0, 0, 1791, 1795, 5, 252, 0, 0, 1792, 1795, 5, 253, 0, 0, 1793, 1795, 5, 254, 0, 0, 1794, 1789, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1805, 5, 249, 0, 0, 1797, 1805, 5, 250, 0, 0, 1798, 1805, 5, 115, 0, 0, 1799, 1805, 5, 164, 0, 0, 1800, 1805, 5, 163, 0, 0, 1801, 1805, 5, 15, 0, 0, 1802, 1805, 5, 94, 0, 0, 1803, 1805, 3, 246, 123, 0, 1804, 1796, 1, 0, 0, 0, 1804, 1797, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1804, 1799, 1, 0, 0, 0, 1804, 1800, 1, 0, 0, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1804, 1803, 1, 0, 0, 0, 1805, 249, 1, 0, 0, 0, 1806, 1807, 5, 115, 0, 0, 1807, 1810, 3, 358, 179, 0, 1808, 1809, 7, 12, 0, 0, 1809, 1811, 5, 153, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 251, 1, 0, 0, 0, 1812, 1813, 5, 265, 0, 0, 1813, 1818, 3, 260, 130, 0, 1814, 1815, 5, 263, 0, 0, 1815, 1817, 3, 260, 130, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1820, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1822, 5, 266, 0, 0, 1822, 253, 1, 0, 0, 0, 1823, 1824, 5, 265, 0, 0, 1824, 1829, 3, 214, 107, 0, 1825, 1826, 5, 263, 0, 0, 1826, 1828, 3, 214, 107, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1832, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1833, 5, 266, 0, 0, 1833, 255, 1, 0, 0, 0, 1834, 1839, 3, 308, 154, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 308, 154, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1852, 5, 52, 0, 0, 1843, 1844, 5, 71, 0, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1846, 5, 26, 0, 0, 1846, 1850, 3, 318, 159, 0, 1847, 1848, 5, 63, 0, 0, 1848, 1849, 5, 26, 0, 0, 1849, 1851, 3, 318, 159, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1843, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1858, 1, 0, 0, 0, 1854, 1855, 5, 117, 0, 0, 1855, 1856, 5, 191, 0, 0, 1856, 1857, 5, 26, 0, 0, 1857, 1859, 3, 318, 159, 0, 1858, 1854, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 259, 1, 0, 0, 0, 1860, 1863, 3, 362, 181, 0, 1861, 1862, 5, 249, 0, 0, 1862, 1864, 3, 308, 154, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 261, 1, 0, 0, 0, 1865, 1876, 3, 264, 132, 0, 1866, 1867, 5, 139, 0, 0, 1867, 1868, 5, 26, 0, 0, 1868, 1873, 3, 268, 134, 0, 1869, 1870, 5, 263, 0, 0, 1870, 1872, 3, 268, 134, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1866, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1884, 1, 0, 0, 0, 1878, 1879, 5, 116, 0, 0, 1879, 1882, 3, 308, 154, 0, 1880, 1881, 5, 135, 0, 0, 1881, 1883, 5, 277, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1878, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1887, 6, 132, -1, 0, 1887, 1888, 3, 266, 133, 0, 1888, 1903, 1, 0, 0, 0, 1889, 1890, 10, 2, 0, 0, 1890, 1892, 5, 100, 0, 0, 1891, 1893, 3, 280, 140, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1902, 3, 264, 132, 3, 1895, 1896, 10, 1, 0, 0, 1896, 1898, 7, 13, 0, 0, 1897, 1899, 3, 280, 140, 0, 1898, 1897, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1902, 3, 264, 132, 2, 1901, 1889, 1, 0, 0, 0, 1901, 1895, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 265, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1923, 3, 270, 135, 0, 1907, 1908, 5, 188, 0, 0, 1908, 1923, 3, 186, 93, 0, 1909, 1910, 5, 211, 0, 0, 1910, 1915, 3, 308, 154, 0, 1911, 1912, 5, 263, 0, 0, 1912, 1914, 3, 308, 154, 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, 1923, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 5, 265, 0, 0, 1919, 1920, 3, 262, 131, 0, 1920, 1921, 5, 266, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1906, 1, 0, 0, 0, 1922, 1907, 1, 0, 0, 0, 1922, 1909, 1, 0, 0, 0, 1922, 1918, 1, 0, 0, 0, 1923, 267, 1, 0, 0, 0, 1924, 1926, 3, 306, 153, 0, 1925, 1927, 7, 14, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1929, 5, 134, 0, 0, 1929, 1931, 7, 15, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 269, 1, 0, 0, 0, 1932, 1934, 5, 174, 0, 0, 1933, 1935, 3, 280, 140, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 1, 0, 0, 0, 1936, 1938, 5, 183, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 282, 141, 0, 1940, 1941, 5, 263, 0, 0, 1941, 1943, 3, 282, 141, 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, 1956, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1948, 5, 82, 0, 0, 1948, 1953, 3, 284, 142, 0, 1949, 1950, 5, 263, 0, 0, 1950, 1952, 3, 284, 142, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1947, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1959, 5, 215, 0, 0, 1959, 1961, 3, 310, 155, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1965, 1, 0, 0, 0, 1962, 1963, 5, 87, 0, 0, 1963, 1964, 5, 26, 0, 0, 1964, 1966, 3, 272, 136, 0, 1965, 1962, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1968, 5, 90, 0, 0, 1968, 1970, 3, 310, 155, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 271, 1, 0, 0, 0, 1971, 1973, 3, 280, 140, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1979, 3, 274, 137, 0, 1975, 1976, 5, 263, 0, 0, 1976, 1978, 3, 274, 137, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 273, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 276, 138, 0, 1983, 275, 1, 0, 0, 0, 1984, 1993, 5, 265, 0, 0, 1985, 1990, 3, 306, 153, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 306, 153, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1985, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1998, 5, 266, 0, 0, 1996, 1998, 3, 306, 153, 0, 1997, 1984, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 277, 1, 0, 0, 0, 1999, 2001, 3, 362, 181, 0, 2000, 2002, 3, 296, 148, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 5, 9, 0, 0, 2004, 2005, 3, 300, 150, 0, 2005, 279, 1, 0, 0, 0, 2006, 2007, 7, 16, 0, 0, 2007, 281, 1, 0, 0, 0, 2008, 2013, 3, 306, 153, 0, 2009, 2011, 5, 9, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 3, 362, 181, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2021, 1, 0, 0, 0, 2015, 2016, 3, 358, 179, 0, 2016, 2017, 5, 261, 0, 0, 2017, 2018, 5, 257, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2021, 5, 257, 0, 0, 2020, 2008, 1, 0, 0, 0, 2020, 2015, 1, 0, 0, 0, 2020, 2019, 1, 0, 0, 0, 2021, 283, 1, 0, 0, 0, 2022, 2023, 6, 142, -1, 0, 2023, 2024, 3, 290, 145, 0, 2024, 2038, 1, 0, 0, 0, 2025, 2034, 10, 2, 0, 0, 2026, 2027, 5, 38, 0, 0, 2027, 2028, 5, 109, 0, 0, 2028, 2035, 3, 290, 145, 0, 2029, 2030, 3, 286, 143, 0, 2030, 2031, 5, 109, 0, 0, 2031, 2032, 3, 284, 142, 0, 2032, 2033, 3, 288, 144, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2026, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2025, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 285, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2073, 1, 0, 0, 0, 2044, 2046, 5, 114, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2073, 1, 0, 0, 0, 2048, 2050, 5, 165, 0, 0, 2049, 2051, 5, 97, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2073, 1, 0, 0, 0, 2052, 2054, 5, 114, 0, 0, 2053, 2055, 5, 141, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2073, 1, 0, 0, 0, 2056, 2058, 5, 165, 0, 0, 2057, 2059, 5, 141, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2073, 1, 0, 0, 0, 2060, 2062, 5, 83, 0, 0, 2061, 2063, 5, 141, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2073, 1, 0, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2073, 5, 177, 0, 0, 2066, 2067, 5, 165, 0, 0, 2067, 2073, 5, 177, 0, 0, 2068, 2069, 5, 114, 0, 0, 2069, 2073, 5, 7, 0, 0, 2070, 2071, 5, 165, 0, 0, 2071, 2073, 5, 7, 0, 0, 2072, 2042, 1, 0, 0, 0, 2072, 2044, 1, 0, 0, 0, 2072, 2048, 1, 0, 0, 0, 2072, 2052, 1, 0, 0, 0, 2072, 2056, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2064, 1, 0, 0, 0, 2072, 2066, 1, 0, 0, 0, 2072, 2068, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2073, 287, 1, 0, 0, 0, 2074, 2075, 5, 136, 0, 0, 2075, 2089, 3, 310, 155, 0, 2076, 2077, 5, 205, 0, 0, 2077, 2078, 5, 265, 0, 0, 2078, 2083, 3, 362, 181, 0, 2079, 2080, 5, 263, 0, 0, 2080, 2082, 3, 362, 181, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2087, 5, 266, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2074, 1, 0, 0, 0, 2088, 2076, 1, 0, 0, 0, 2089, 289, 1, 0, 0, 0, 2090, 2103, 3, 294, 147, 0, 2091, 2092, 5, 190, 0, 0, 2092, 2093, 3, 292, 146, 0, 2093, 2094, 5, 265, 0, 0, 2094, 2095, 3, 308, 154, 0, 2095, 2101, 5, 266, 0, 0, 2096, 2097, 5, 157, 0, 0, 2097, 2098, 5, 265, 0, 0, 2098, 2099, 3, 308, 154, 0, 2099, 2100, 5, 266, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 291, 1, 0, 0, 0, 2105, 2106, 7, 17, 0, 0, 2106, 293, 1, 0, 0, 0, 2107, 2115, 3, 298, 149, 0, 2108, 2110, 5, 9, 0, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 3, 362, 181, 0, 2112, 2114, 3, 296, 148, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 295, 1, 0, 0, 0, 2117, 2118, 5, 265, 0, 0, 2118, 2123, 3, 192, 96, 0, 2119, 2120, 5, 263, 0, 0, 2120, 2122, 3, 192, 96, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2125, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2127, 5, 266, 0, 0, 2127, 297, 1, 0, 0, 0, 2128, 2136, 3, 194, 97, 0, 2129, 2131, 5, 113, 0, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2136, 3, 300, 150, 0, 2133, 2136, 3, 302, 151, 0, 2134, 2136, 3, 304, 152, 0, 2135, 2128, 1, 0, 0, 0, 2135, 2130, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 299, 1, 0, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2139, 3, 206, 103, 0, 2139, 2140, 5, 266, 0, 0, 2140, 301, 1, 0, 0, 0, 2141, 2142, 5, 201, 0, 0, 2142, 2143, 5, 265, 0, 0, 2143, 2148, 3, 308, 154, 0, 2144, 2145, 5, 263, 0, 0, 2145, 2147, 3, 308, 154, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 266, 0, 0, 2152, 2153, 5, 216, 0, 0, 2153, 2155, 5, 140, 0, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 303, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2158, 3, 284, 142, 0, 2158, 2159, 5, 266, 0, 0, 2159, 305, 1, 0, 0, 0, 2160, 2163, 3, 192, 96, 0, 2161, 2163, 3, 308, 154, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 307, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 309, 1, 0, 0, 0, 2166, 2167, 6, 155, -1, 0, 2167, 2169, 3, 314, 157, 0, 2168, 2170, 3, 312, 156, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2172, 5, 132, 0, 0, 2172, 2174, 3, 310, 155, 3, 2173, 2166, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2183, 1, 0, 0, 0, 2175, 2176, 10, 2, 0, 0, 2176, 2177, 5, 5, 0, 0, 2177, 2182, 3, 310, 155, 3, 2178, 2179, 10, 1, 0, 0, 2179, 2180, 5, 138, 0, 0, 2180, 2182, 3, 310, 155, 2, 2181, 2175, 1, 0, 0, 0, 2181, 2178, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 311, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 3, 320, 160, 0, 2187, 2188, 3, 314, 157, 0, 2188, 2245, 1, 0, 0, 0, 2189, 2190, 3, 320, 160, 0, 2190, 2191, 3, 322, 161, 0, 2191, 2192, 3, 300, 150, 0, 2192, 2245, 1, 0, 0, 0, 2193, 2195, 5, 132, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 5, 15, 0, 0, 2197, 2198, 3, 314, 157, 0, 2198, 2199, 5, 5, 0, 0, 2199, 2200, 3, 314, 157, 0, 2200, 2245, 1, 0, 0, 0, 2201, 2203, 5, 132, 0, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 5, 94, 0, 0, 2205, 2206, 5, 265, 0, 0, 2206, 2211, 3, 308, 154, 0, 2207, 2208, 5, 263, 0, 0, 2208, 2210, 3, 308, 154, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 266, 0, 0, 2215, 2245, 1, 0, 0, 0, 2216, 2218, 5, 132, 0, 0, 2217, 2216, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 5, 94, 0, 0, 2220, 2245, 3, 300, 150, 0, 2221, 2223, 5, 132, 0, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 7, 18, 0, 0, 2225, 2228, 3, 314, 157, 0, 2226, 2227, 5, 62, 0, 0, 2227, 2229, 3, 314, 157, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2245, 1, 0, 0, 0, 2230, 2231, 7, 19, 0, 0, 2231, 2245, 3, 314, 157, 0, 2232, 2234, 5, 108, 0, 0, 2233, 2235, 5, 132, 0, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2245, 7, 20, 0, 0, 2237, 2239, 5, 108, 0, 0, 2238, 2240, 5, 132, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2242, 5, 57, 0, 0, 2242, 2243, 5, 82, 0, 0, 2243, 2245, 3, 314, 157, 0, 2244, 2186, 1, 0, 0, 0, 2244, 2189, 1, 0, 0, 0, 2244, 2194, 1, 0, 0, 0, 2244, 2202, 1, 0, 0, 0, 2244, 2217, 1, 0, 0, 0, 2244, 2222, 1, 0, 0, 0, 2244, 2230, 1, 0, 0, 0, 2244, 2232, 1, 0, 0, 0, 2244, 2237, 1, 0, 0, 0, 2245, 313, 1, 0, 0, 0, 2246, 2247, 6, 157, -1, 0, 2247, 2251, 3, 316, 158, 0, 2248, 2249, 7, 21, 0, 0, 2249, 2251, 3, 314, 157, 4, 2250, 2246, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2263, 1, 0, 0, 0, 2252, 2253, 10, 3, 0, 0, 2253, 2254, 7, 22, 0, 0, 2254, 2262, 3, 314, 157, 4, 2255, 2256, 10, 2, 0, 0, 2256, 2257, 7, 21, 0, 0, 2257, 2262, 3, 314, 157, 3, 2258, 2259, 10, 1, 0, 0, 2259, 2260, 5, 260, 0, 0, 2260, 2262, 3, 314, 157, 2, 2261, 2252, 1, 0, 0, 0, 2261, 2255, 1, 0, 0, 0, 2261, 2258, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 315, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 6, 158, -1, 0, 2267, 2513, 5, 133, 0, 0, 2268, 2513, 3, 326, 163, 0, 2269, 2270, 3, 362, 181, 0, 2270, 2271, 3, 318, 159, 0, 2271, 2513, 1, 0, 0, 0, 2272, 2273, 5, 286, 0, 0, 2273, 2513, 3, 318, 159, 0, 2274, 2513, 3, 364, 182, 0, 2275, 2513, 3, 324, 162, 0, 2276, 2513, 3, 318, 159, 0, 2277, 2513, 5, 276, 0, 0, 2278, 2513, 5, 272, 0, 0, 2279, 2280, 5, 148, 0, 0, 2280, 2281, 5, 265, 0, 0, 2281, 2282, 3, 314, 157, 0, 2282, 2283, 5, 94, 0, 0, 2283, 2284, 3, 314, 157, 0, 2284, 2285, 5, 266, 0, 0, 2285, 2513, 1, 0, 0, 0, 2286, 2287, 5, 265, 0, 0, 2287, 2290, 3, 308, 154, 0, 2288, 2289, 5, 9, 0, 0, 2289, 2291, 3, 332, 166, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 5, 263, 0, 0, 2293, 2296, 3, 308, 154, 0, 2294, 2295, 5, 9, 0, 0, 2295, 2297, 3, 332, 166, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2292, 1, 0, 0, 0, 2299, 2302, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2304, 5, 266, 0, 0, 2304, 2513, 1, 0, 0, 0, 2305, 2306, 5, 168, 0, 0, 2306, 2307, 5, 265, 0, 0, 2307, 2312, 3, 308, 154, 0, 2308, 2309, 5, 263, 0, 0, 2309, 2311, 3, 308, 154, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2314, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2315, 2316, 5, 266, 0, 0, 2316, 2513, 1, 0, 0, 0, 2317, 2318, 3, 190, 95, 0, 2318, 2319, 5, 265, 0, 0, 2319, 2320, 5, 257, 0, 0, 2320, 2322, 5, 266, 0, 0, 2321, 2323, 3, 342, 171, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 344, 172, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2513, 1, 0, 0, 0, 2327, 2328, 3, 190, 95, 0, 2328, 2340, 5, 265, 0, 0, 2329, 2331, 3, 280, 140, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2337, 3, 308, 154, 0, 2333, 2334, 5, 263, 0, 0, 2334, 2336, 3, 308, 154, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2330, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2352, 1, 0, 0, 0, 2342, 2343, 5, 139, 0, 0, 2343, 2344, 5, 26, 0, 0, 2344, 2349, 3, 268, 134, 0, 2345, 2346, 5, 263, 0, 0, 2346, 2348, 3, 268, 134, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2342, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 5, 266, 0, 0, 2355, 2357, 3, 342, 171, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2360, 3, 344, 172, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2513, 1, 0, 0, 0, 2361, 2362, 3, 362, 181, 0, 2362, 2363, 5, 273, 0, 0, 2363, 2364, 3, 308, 154, 0, 2364, 2513, 1, 0, 0, 0, 2365, 2374, 5, 265, 0, 0, 2366, 2371, 3, 362, 181, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2370, 3, 362, 181, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2366, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 266, 0, 0, 2377, 2378, 5, 273, 0, 0, 2378, 2513, 3, 308, 154, 0, 2379, 2380, 5, 265, 0, 0, 2380, 2381, 3, 206, 103, 0, 2381, 2382, 5, 266, 0, 0, 2382, 2513, 1, 0, 0, 0, 2383, 2384, 5, 66, 0, 0, 2384, 2385, 5, 265, 0, 0, 2385, 2386, 3, 206, 103, 0, 2386, 2387, 5, 266, 0, 0, 2387, 2513, 1, 0, 0, 0, 2388, 2389, 5, 28, 0, 0, 2389, 2391, 3, 314, 157, 0, 2390, 2392, 3, 340, 170, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2396, 5, 59, 0, 0, 2396, 2398, 3, 308, 154, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 5, 61, 0, 0, 2400, 2513, 1, 0, 0, 0, 2401, 2403, 5, 28, 0, 0, 2402, 2404, 3, 340, 170, 0, 2403, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2408, 5, 59, 0, 0, 2408, 2410, 3, 308, 154, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 5, 61, 0, 0, 2412, 2513, 1, 0, 0, 0, 2413, 2414, 5, 29, 0, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 3, 308, 154, 0, 2416, 2417, 5, 9, 0, 0, 2417, 2418, 3, 332, 166, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2513, 1, 0, 0, 0, 2420, 2421, 5, 195, 0, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 308, 154, 0, 2423, 2424, 5, 9, 0, 0, 2424, 2425, 3, 332, 166, 0, 2425, 2426, 5, 266, 0, 0, 2426, 2513, 1, 0, 0, 0, 2427, 2428, 5, 8, 0, 0, 2428, 2437, 5, 267, 0, 0, 2429, 2434, 3, 308, 154, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 308, 154, 0, 2432, 2430, 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, 2429, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2513, 5, 268, 0, 0, 2440, 2513, 3, 362, 181, 0, 2441, 2513, 5, 40, 0, 0, 2442, 2446, 5, 42, 0, 0, 2443, 2444, 5, 265, 0, 0, 2444, 2445, 5, 277, 0, 0, 2445, 2447, 5, 266, 0, 0, 2446, 2443, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2513, 1, 0, 0, 0, 2448, 2452, 5, 43, 0, 0, 2449, 2450, 5, 265, 0, 0, 2450, 2451, 5, 277, 0, 0, 2451, 2453, 5, 266, 0, 0, 2452, 2449, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2513, 1, 0, 0, 0, 2454, 2458, 5, 119, 0, 0, 2455, 2456, 5, 265, 0, 0, 2456, 2457, 5, 277, 0, 0, 2457, 2459, 5, 266, 0, 0, 2458, 2455, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2513, 1, 0, 0, 0, 2460, 2464, 5, 120, 0, 0, 2461, 2462, 5, 265, 0, 0, 2462, 2463, 5, 277, 0, 0, 2463, 2465, 5, 266, 0, 0, 2464, 2461, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2513, 1, 0, 0, 0, 2466, 2513, 5, 44, 0, 0, 2467, 2513, 5, 41, 0, 0, 2468, 2469, 5, 184, 0, 0, 2469, 2470, 5, 265, 0, 0, 2470, 2471, 3, 314, 157, 0, 2471, 2472, 5, 82, 0, 0, 2472, 2475, 3, 314, 157, 0, 2473, 2474, 5, 78, 0, 0, 2474, 2476, 3, 314, 157, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 5, 266, 0, 0, 2478, 2513, 1, 0, 0, 0, 2479, 2480, 5, 131, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2484, 3, 314, 157, 0, 2482, 2483, 5, 263, 0, 0, 2483, 2485, 3, 330, 165, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 266, 0, 0, 2487, 2513, 1, 0, 0, 0, 2488, 2489, 5, 68, 0, 0, 2489, 2490, 5, 265, 0, 0, 2490, 2491, 3, 362, 181, 0, 2491, 2492, 5, 82, 0, 0, 2492, 2493, 3, 314, 157, 0, 2493, 2494, 5, 266, 0, 0, 2494, 2513, 1, 0, 0, 0, 2495, 2496, 5, 265, 0, 0, 2496, 2497, 3, 308, 154, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2513, 1, 0, 0, 0, 2499, 2500, 5, 88, 0, 0, 2500, 2509, 5, 265, 0, 0, 2501, 2506, 3, 358, 179, 0, 2502, 2503, 5, 263, 0, 0, 2503, 2505, 3, 358, 179, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2501, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 5, 266, 0, 0, 2512, 2266, 1, 0, 0, 0, 2512, 2268, 1, 0, 0, 0, 2512, 2269, 1, 0, 0, 0, 2512, 2272, 1, 0, 0, 0, 2512, 2274, 1, 0, 0, 0, 2512, 2275, 1, 0, 0, 0, 2512, 2276, 1, 0, 0, 0, 2512, 2277, 1, 0, 0, 0, 2512, 2278, 1, 0, 0, 0, 2512, 2279, 1, 0, 0, 0, 2512, 2286, 1, 0, 0, 0, 2512, 2305, 1, 0, 0, 0, 2512, 2317, 1, 0, 0, 0, 2512, 2327, 1, 0, 0, 0, 2512, 2361, 1, 0, 0, 0, 2512, 2365, 1, 0, 0, 0, 2512, 2379, 1, 0, 0, 0, 2512, 2383, 1, 0, 0, 0, 2512, 2388, 1, 0, 0, 0, 2512, 2401, 1, 0, 0, 0, 2512, 2413, 1, 0, 0, 0, 2512, 2420, 1, 0, 0, 0, 2512, 2427, 1, 0, 0, 0, 2512, 2440, 1, 0, 0, 0, 2512, 2441, 1, 0, 0, 0, 2512, 2442, 1, 0, 0, 0, 2512, 2448, 1, 0, 0, 0, 2512, 2454, 1, 0, 0, 0, 2512, 2460, 1, 0, 0, 0, 2512, 2466, 1, 0, 0, 0, 2512, 2467, 1, 0, 0, 0, 2512, 2468, 1, 0, 0, 0, 2512, 2479, 1, 0, 0, 0, 2512, 2488, 1, 0, 0, 0, 2512, 2495, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2513, 2524, 1, 0, 0, 0, 2514, 2515, 10, 15, 0, 0, 2515, 2516, 5, 267, 0, 0, 2516, 2517, 3, 314, 157, 0, 2517, 2518, 5, 268, 0, 0, 2518, 2523, 1, 0, 0, 0, 2519, 2520, 10, 13, 0, 0, 2520, 2521, 5, 261, 0, 0, 2521, 2523, 3, 362, 181, 0, 2522, 2514, 1, 0, 0, 0, 2522, 2519, 1, 0, 0, 0, 2523, 2526, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 317, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2534, 5, 274, 0, 0, 2528, 2531, 5, 275, 0, 0, 2529, 2530, 5, 198, 0, 0, 2530, 2532, 5, 274, 0, 0, 2531, 2529, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 23, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 7, 24, 0, 0, 2538, 323, 1, 0, 0, 0, 2539, 2540, 7, 25, 0, 0, 2540, 325, 1, 0, 0, 0, 2541, 2542, 5, 277, 0, 0, 2542, 2556, 3, 328, 164, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2545, 5, 277, 0, 0, 2545, 2546, 5, 266, 0, 0, 2546, 2556, 3, 328, 164, 0, 2547, 2548, 5, 101, 0, 0, 2548, 2549, 5, 277, 0, 0, 2549, 2556, 3, 328, 164, 0, 2550, 2551, 5, 101, 0, 0, 2551, 2552, 5, 265, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2554, 5, 266, 0, 0, 2554, 2556, 3, 328, 164, 0, 2555, 2541, 1, 0, 0, 0, 2555, 2543, 1, 0, 0, 0, 2555, 2547, 1, 0, 0, 0, 2555, 2550, 1, 0, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 7, 26, 0, 0, 2558, 329, 1, 0, 0, 0, 2559, 2560, 7, 27, 0, 0, 2560, 331, 1, 0, 0, 0, 2561, 2562, 6, 166, -1, 0, 2562, 2563, 5, 8, 0, 0, 2563, 2564, 5, 251, 0, 0, 2564, 2565, 3, 332, 166, 0, 2565, 2566, 5, 253, 0, 0, 2566, 2607, 1, 0, 0, 0, 2567, 2568, 5, 235, 0, 0, 2568, 2569, 5, 251, 0, 0, 2569, 2570, 3, 332, 166, 0, 2570, 2571, 5, 263, 0, 0, 2571, 2572, 3, 332, 166, 0, 2572, 2573, 5, 253, 0, 0, 2573, 2607, 1, 0, 0, 0, 2574, 2575, 5, 240, 0, 0, 2575, 2576, 5, 251, 0, 0, 2576, 2577, 3, 362, 181, 0, 2577, 2584, 3, 332, 166, 0, 2578, 2579, 5, 263, 0, 0, 2579, 2580, 3, 362, 181, 0, 2580, 2581, 3, 332, 166, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2578, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2584, 2585, 1, 0, 0, 0, 2585, 2587, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2588, 5, 253, 0, 0, 2588, 2607, 1, 0, 0, 0, 2589, 2592, 3, 338, 169, 0, 2590, 2592, 3, 334, 167, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2590, 1, 0, 0, 0, 2592, 2604, 1, 0, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2599, 3, 336, 168, 0, 2595, 2596, 5, 263, 0, 0, 2596, 2598, 3, 336, 168, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2601, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2603, 5, 266, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2593, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2561, 1, 0, 0, 0, 2606, 2567, 1, 0, 0, 0, 2606, 2574, 1, 0, 0, 0, 2606, 2591, 1, 0, 0, 0, 2607, 2612, 1, 0, 0, 0, 2608, 2609, 10, 5, 0, 0, 2609, 2611, 5, 8, 0, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 333, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 7, 28, 0, 0, 2616, 335, 1, 0, 0, 0, 2617, 2620, 5, 277, 0, 0, 2618, 2620, 3, 332, 166, 0, 2619, 2617, 1, 0, 0, 0, 2619, 2618, 1, 0, 0, 0, 2620, 337, 1, 0, 0, 0, 2621, 2626, 5, 284, 0, 0, 2622, 2626, 5, 285, 0, 0, 2623, 2626, 5, 286, 0, 0, 2624, 2626, 3, 362, 181, 0, 2625, 2621, 1, 0, 0, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 339, 1, 0, 0, 0, 2627, 2628, 5, 214, 0, 0, 2628, 2629, 3, 308, 154, 0, 2629, 2630, 5, 192, 0, 0, 2630, 2631, 3, 308, 154, 0, 2631, 341, 1, 0, 0, 0, 2632, 2633, 5, 74, 0, 0, 2633, 2634, 5, 265, 0, 0, 2634, 2635, 5, 215, 0, 0, 2635, 2636, 3, 310, 155, 0, 2636, 2637, 5, 266, 0, 0, 2637, 343, 1, 0, 0, 0, 2638, 2639, 5, 143, 0, 0, 2639, 2650, 5, 265, 0, 0, 2640, 2641, 5, 145, 0, 0, 2641, 2642, 5, 26, 0, 0, 2642, 2647, 3, 308, 154, 0, 2643, 2644, 5, 263, 0, 0, 2644, 2646, 3, 308, 154, 0, 2645, 2643, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2640, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2662, 1, 0, 0, 0, 2652, 2653, 5, 139, 0, 0, 2653, 2654, 5, 26, 0, 0, 2654, 2659, 3, 268, 134, 0, 2655, 2656, 5, 263, 0, 0, 2656, 2658, 3, 268, 134, 0, 2657, 2655, 1, 0, 0, 0, 2658, 2661, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2663, 1, 0, 0, 0, 2661, 2659, 1, 0, 0, 0, 2662, 2652, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 346, 173, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 5, 266, 0, 0, 2668, 345, 1, 0, 0, 0, 2669, 2670, 5, 154, 0, 0, 2670, 2686, 3, 348, 174, 0, 2671, 2672, 5, 169, 0, 0, 2672, 2686, 3, 348, 174, 0, 2673, 2674, 5, 154, 0, 0, 2674, 2675, 5, 15, 0, 0, 2675, 2676, 3, 348, 174, 0, 2676, 2677, 5, 5, 0, 0, 2677, 2678, 3, 348, 174, 0, 2678, 2686, 1, 0, 0, 0, 2679, 2680, 5, 169, 0, 0, 2680, 2681, 5, 15, 0, 0, 2681, 2682, 3, 348, 174, 0, 2682, 2683, 5, 5, 0, 0, 2683, 2684, 3, 348, 174, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2669, 1, 0, 0, 0, 2685, 2671, 1, 0, 0, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2679, 1, 0, 0, 0, 2686, 347, 1, 0, 0, 0, 2687, 2688, 5, 199, 0, 0, 2688, 2697, 5, 149, 0, 0, 2689, 2690, 5, 199, 0, 0, 2690, 2697, 5, 77, 0, 0, 2691, 2692, 5, 39, 0, 0, 2692, 2697, 5, 168, 0, 0, 2693, 2694, 3, 308, 154, 0, 2694, 2695, 7, 29, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2687, 1, 0, 0, 0, 2696, 2689, 1, 0, 0, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 349, 1, 0, 0, 0, 2698, 2699, 3, 362, 181, 0, 2699, 2700, 5, 261, 0, 0, 2700, 2701, 3, 362, 181, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2704, 3, 362, 181, 0, 2703, 2698, 1, 0, 0, 0, 2703, 2702, 1, 0, 0, 0, 2704, 351, 1, 0, 0, 0, 2705, 2710, 3, 350, 175, 0, 2706, 2707, 5, 263, 0, 0, 2707, 2709, 3, 350, 175, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2712, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 353, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2713, 2727, 5, 2, 0, 0, 2714, 2727, 5, 4, 0, 0, 2715, 2727, 5, 58, 0, 0, 2716, 2727, 5, 37, 0, 0, 2717, 2727, 5, 99, 0, 0, 2718, 2727, 5, 162, 0, 0, 2719, 2724, 5, 174, 0, 0, 2720, 2721, 5, 265, 0, 0, 2721, 2722, 3, 362, 181, 0, 2722, 2723, 5, 266, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2713, 1, 0, 0, 0, 2726, 2714, 1, 0, 0, 0, 2726, 2715, 1, 0, 0, 0, 2726, 2716, 1, 0, 0, 0, 2726, 2717, 1, 0, 0, 0, 2726, 2718, 1, 0, 0, 0, 2726, 2719, 1, 0, 0, 0, 2727, 355, 1, 0, 0, 0, 2728, 2729, 7, 30, 0, 0, 2729, 357, 1, 0, 0, 0, 2730, 2735, 3, 362, 181, 0, 2731, 2732, 5, 261, 0, 0, 2732, 2734, 3, 362, 181, 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, 359, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 166, 0, 0, 2739, 2745, 3, 362, 181, 0, 2740, 2741, 5, 204, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2743, 5, 87, 0, 0, 2743, 2745, 3, 362, 181, 0, 2744, 2738, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 361, 1, 0, 0, 0, 2746, 2752, 5, 280, 0, 0, 2747, 2752, 5, 274, 0, 0, 2748, 2752, 3, 368, 184, 0, 2749, 2752, 5, 283, 0, 0, 2750, 2752, 5, 281, 0, 0, 2751, 2746, 1, 0, 0, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2748, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 363, 1, 0, 0, 0, 2753, 2755, 5, 256, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2766, 5, 278, 0, 0, 2757, 2759, 5, 256, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2766, 5, 279, 0, 0, 2761, 2763, 5, 256, 0, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 5, 277, 0, 0, 2765, 2754, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2765, 2762, 1, 0, 0, 0, 2766, 365, 1, 0, 0, 0, 2767, 2768, 7, 31, 0, 0, 2768, 367, 1, 0, 0, 0, 2769, 2770, 7, 32, 0, 0, 2770, 369, 1, 0, 0, 0, 353, 373, 380, 404, 417, 421, 425, 434, 439, 443, 449, 451, 456, 460, 464, 471, 476, 482, 486, 495, 502, 506, 511, 513, 518, 521, 528, 532, 537, 541, 544, 548, 556, 560, 564, 572, 576, 585, 588, 591, 597, 604, 615, 620, 625, 630, 635, 644, 647, 650, 654, 680, 706, 715, 725, 728, 742, 760, 762, 771, 782, 791, 798, 802, 809, 815, 818, 823, 830, 844, 857, 862, 867, 873, 909, 912, 918, 921, 927, 933, 945, 947, 958, 966, 971, 975, 980, 987, 991, 995, 1001, 1005, 1009, 1018, 1021, 1024, 1032, 1046, 1053, 1066, 1072, 1077, 1080, 1083, 1088, 1092, 1101, 1106, 1112, 1116, 1121, 1126, 1129, 1137, 1140, 1144, 1156, 1159, 1163, 1168, 1172, 1188, 1193, 1200, 1203, 1209, 1212, 1219, 1222, 1226, 1231, 1234, 1241, 1244, 1268, 1282, 1286, 1290, 1310, 1312, 1314, 1323, 1325, 1334, 1336, 1345, 1347, 1352, 1361, 1370, 1379, 1390, 1396, 1401, 1404, 1417, 1427, 1431, 1436, 1447, 1452, 1485, 1493, 1498, 1502, 1506, 1511, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1565, 1569, 1573, 1580, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1650, 1660, 1663, 1666, 1670, 1680, 1683, 1689, 1695, 1698, 1701, 1705, 1715, 1726, 1731, 1734, 1738, 1745, 1755, 1767, 1773, 1775, 1784, 1787, 1794, 1804, 1810, 1818, 1829, 1839, 1850, 1852, 1858, 1863, 1873, 1876, 1882, 1884, 1892, 1898, 1901, 1903, 1915, 1922, 1926, 1930, 1934, 1937, 1944, 1953, 1956, 1960, 1965, 1969, 1972, 1979, 1990, 1993, 1997, 2001, 2010, 2013, 2020, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2062, 2072, 2083, 2088, 2101, 2103, 2109, 2113, 2115, 2123, 2130, 2135, 2148, 2154, 2162, 2169, 2173, 2181, 2183, 2194, 2202, 2211, 2217, 2222, 2228, 2234, 2239, 2244, 2250, 2261, 2263, 2290, 2296, 2300, 2312, 2322, 2325, 2330, 2337, 2340, 2349, 2352, 2356, 2359, 2371, 2374, 2393, 2397, 2405, 2409, 2434, 2437, 2446, 2452, 2458, 2464, 2475, 2484, 2506, 2509, 2512, 2522, 2524, 2531, 2533, 2555, 2584, 2591, 2599, 2604, 2606, 2612, 2619, 2625, 2647, 2650, 2659, 2662, 2665, 2685, 2696, 2703, 2710, 2724, 2726, 2735, 2744, 2751, 2754, 2758, 2762, 2765] \ No newline at end of file +[4, 1, 289, 2783, 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, 1, 0, 5, 0, 380, 8, 0, 10, 0, 12, 0, 383, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 389, 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, 413, 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, 426, 8, 4, 1, 5, 1, 5, 3, 5, 430, 8, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 441, 8, 5, 10, 5, 12, 5, 444, 9, 5, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 458, 8, 5, 3, 5, 460, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 465, 8, 5, 1, 6, 1, 6, 3, 6, 469, 8, 6, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 480, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 485, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 491, 8, 7, 1, 7, 1, 7, 3, 7, 495, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 502, 8, 7, 10, 7, 12, 7, 505, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 520, 8, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 527, 8, 7, 1, 7, 3, 7, 530, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 537, 8, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 8, 1, 8, 1, 8, 3, 8, 550, 8, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 9, 1, 9, 3, 9, 569, 8, 9, 1, 9, 1, 9, 3, 9, 573, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 581, 8, 11, 1, 11, 1, 11, 3, 11, 585, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 592, 8, 11, 10, 11, 12, 11, 595, 9, 11, 3, 11, 597, 8, 11, 1, 11, 3, 11, 600, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 606, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 624, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 629, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 634, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 639, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 644, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 651, 8, 12, 10, 12, 12, 12, 654, 9, 12, 3, 12, 656, 8, 12, 1, 12, 3, 12, 659, 8, 12, 1, 12, 1, 12, 3, 12, 663, 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, 689, 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, 715, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 724, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 734, 8, 16, 1, 16, 3, 16, 737, 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, 751, 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, 769, 8, 20, 3, 20, 771, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 778, 8, 20, 10, 20, 12, 20, 781, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 791, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 807, 8, 22, 1, 22, 1, 22, 3, 22, 811, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 818, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 23, 3, 23, 827, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 832, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 839, 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, 853, 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, 866, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 871, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 876, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 882, 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, 918, 8, 32, 1, 32, 3, 32, 921, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 927, 8, 33, 1, 33, 3, 33, 930, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 936, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 942, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 954, 8, 35, 3, 35, 956, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 967, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 975, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 980, 8, 38, 1, 38, 1, 38, 3, 38, 984, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 989, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 996, 8, 40, 1, 40, 1, 40, 3, 40, 1000, 8, 40, 1, 41, 1, 41, 3, 41, 1004, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1010, 8, 41, 1, 42, 1, 42, 3, 42, 1014, 8, 42, 1, 42, 1, 42, 3, 42, 1018, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1025, 8, 42, 10, 42, 12, 42, 1028, 9, 42, 3, 42, 1030, 8, 42, 1, 42, 3, 42, 1033, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1041, 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, 1055, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1062, 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, 1075, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1086, 8, 49, 1, 49, 3, 49, 1089, 8, 49, 1, 50, 3, 50, 1092, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1097, 8, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1108, 8, 50, 10, 50, 12, 50, 1111, 9, 50, 1, 50, 1, 50, 3, 50, 1115, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1121, 8, 51, 1, 52, 1, 52, 3, 52, 1125, 8, 52, 1, 52, 1, 52, 3, 52, 1129, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1134, 8, 53, 1, 53, 3, 53, 1137, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1143, 8, 53, 10, 53, 12, 53, 1146, 9, 53, 3, 53, 1148, 8, 53, 1, 53, 3, 53, 1151, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1161, 8, 54, 10, 54, 12, 54, 1164, 9, 54, 3, 54, 1166, 8, 54, 1, 54, 3, 54, 1169, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1174, 8, 55, 1, 55, 1, 55, 3, 55, 1178, 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, 1194, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1199, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1204, 8, 57, 10, 57, 12, 57, 1207, 9, 57, 3, 57, 1209, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1215, 8, 58, 1, 58, 3, 58, 1218, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1223, 8, 58, 10, 58, 12, 58, 1226, 9, 58, 3, 58, 1228, 8, 58, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1237, 8, 59, 1, 59, 3, 59, 1240, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1245, 8, 59, 10, 59, 12, 59, 1248, 9, 59, 3, 59, 1250, 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, 1274, 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, 1288, 8, 65, 1, 65, 1, 65, 3, 65, 1292, 8, 65, 1, 66, 1, 66, 3, 66, 1296, 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, 1316, 8, 68, 3, 68, 1318, 8, 68, 3, 68, 1320, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1329, 8, 69, 3, 69, 1331, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1340, 8, 70, 3, 70, 1342, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1351, 8, 71, 3, 71, 1353, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1358, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1367, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1376, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1385, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1407, 8, 78, 1, 78, 3, 78, 1410, 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, 1423, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1433, 8, 80, 1, 80, 1, 80, 3, 80, 1437, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1442, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1451, 8, 82, 10, 82, 12, 82, 1454, 9, 82, 1, 82, 1, 82, 3, 82, 1458, 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, 1489, 8, 93, 10, 93, 12, 93, 1492, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1497, 8, 94, 10, 94, 12, 94, 1500, 9, 94, 1, 95, 1, 95, 3, 95, 1504, 8, 95, 1, 96, 1, 96, 3, 96, 1508, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 1514, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1519, 8, 99, 1, 99, 3, 99, 1522, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1527, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1532, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1537, 8, 99, 1, 99, 1, 99, 3, 99, 1541, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1550, 8, 99, 1, 99, 3, 99, 1553, 8, 99, 1, 99, 1, 99, 3, 99, 1557, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 1562, 8, 100, 10, 100, 12, 100, 1565, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1573, 8, 102, 1, 102, 1, 102, 3, 102, 1577, 8, 102, 5, 102, 1579, 8, 102, 10, 102, 12, 102, 1582, 9, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1588, 8, 103, 1, 104, 3, 104, 1591, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1599, 8, 105, 10, 105, 12, 105, 1602, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1608, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1613, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1618, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1623, 8, 106, 1, 106, 1, 106, 5, 106, 1627, 8, 106, 10, 106, 12, 106, 1630, 9, 106, 3, 106, 1632, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1641, 8, 107, 1, 107, 3, 107, 1644, 8, 107, 1, 107, 3, 107, 1647, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1653, 8, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1658, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1666, 8, 111, 10, 111, 12, 111, 1669, 9, 111, 3, 111, 1671, 8, 111, 1, 111, 3, 111, 1674, 8, 111, 1, 111, 1, 111, 3, 111, 1678, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 5, 113, 1686, 8, 113, 10, 113, 12, 113, 1689, 9, 113, 3, 113, 1691, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1697, 8, 114, 1, 114, 1, 114, 5, 114, 1701, 8, 114, 10, 114, 12, 114, 1704, 9, 114, 3, 114, 1706, 8, 114, 1, 115, 3, 115, 1709, 8, 115, 1, 115, 1, 115, 3, 115, 1713, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1723, 8, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 1732, 8, 119, 10, 119, 12, 119, 1735, 9, 119, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 3, 119, 1742, 8, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 1753, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1761, 8, 121, 10, 121, 12, 121, 1764, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1775, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1781, 8, 122, 3, 122, 1783, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1792, 8, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1802, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1812, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1818, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1824, 8, 127, 10, 127, 12, 127, 1827, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1835, 8, 128, 10, 128, 12, 128, 1838, 9, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1845, 8, 129, 10, 129, 12, 129, 1848, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1858, 8, 130, 3, 130, 1860, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1866, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 1871, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1879, 8, 132, 10, 132, 12, 132, 1882, 9, 132, 3, 132, 1884, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1890, 8, 132, 3, 132, 1892, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1900, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1906, 8, 133, 1, 133, 5, 133, 1909, 8, 133, 10, 133, 12, 133, 1912, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1921, 8, 134, 10, 134, 12, 134, 1924, 9, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1930, 8, 134, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 136, 1, 136, 3, 136, 1942, 8, 136, 1, 136, 3, 136, 1945, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1950, 8, 136, 10, 136, 12, 136, 1953, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1959, 8, 136, 10, 136, 12, 136, 1962, 9, 136, 3, 136, 1964, 8, 136, 1, 136, 3, 136, 1967, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1972, 8, 136, 1, 136, 3, 136, 1975, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 3, 139, 1984, 8, 139, 1, 139, 1, 139, 1, 139, 5, 139, 1989, 8, 139, 10, 139, 12, 139, 1992, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 2000, 8, 141, 10, 141, 12, 141, 2003, 9, 141, 3, 141, 2005, 8, 141, 1, 141, 1, 141, 3, 141, 2009, 8, 141, 1, 142, 1, 142, 3, 142, 2013, 8, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2022, 8, 144, 1, 144, 3, 144, 2025, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2032, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 5, 145, 2048, 8, 145, 10, 145, 12, 145, 2051, 9, 145, 1, 146, 3, 146, 2054, 8, 146, 1, 146, 1, 146, 3, 146, 2058, 8, 146, 1, 146, 1, 146, 3, 146, 2062, 8, 146, 1, 146, 1, 146, 3, 146, 2066, 8, 146, 1, 146, 1, 146, 3, 146, 2070, 8, 146, 1, 146, 1, 146, 3, 146, 2074, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2084, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2093, 8, 147, 10, 147, 12, 147, 2096, 9, 147, 1, 147, 1, 147, 3, 147, 2100, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2113, 8, 148, 3, 148, 2115, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 3, 150, 2121, 8, 150, 1, 150, 1, 150, 3, 150, 2125, 8, 150, 3, 150, 2127, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2133, 8, 151, 10, 151, 12, 151, 2136, 9, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2142, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2147, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2158, 8, 154, 10, 154, 12, 154, 2161, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2166, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2174, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2181, 8, 158, 1, 158, 1, 158, 3, 158, 2185, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2193, 8, 158, 10, 158, 12, 158, 2196, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2206, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2214, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 2221, 8, 159, 10, 159, 12, 159, 2224, 9, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2229, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2234, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2240, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2246, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2251, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2256, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2262, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 2273, 8, 160, 10, 160, 12, 160, 2276, 9, 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, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2302, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2308, 8, 161, 5, 161, 2310, 8, 161, 10, 161, 12, 161, 2313, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2322, 8, 161, 10, 161, 12, 161, 2325, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2334, 8, 161, 1, 161, 3, 161, 2337, 8, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2342, 8, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2347, 8, 161, 10, 161, 12, 161, 2350, 9, 161, 3, 161, 2352, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2359, 8, 161, 10, 161, 12, 161, 2362, 9, 161, 3, 161, 2364, 8, 161, 1, 161, 1, 161, 3, 161, 2368, 8, 161, 1, 161, 3, 161, 2371, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2381, 8, 161, 10, 161, 12, 161, 2384, 9, 161, 3, 161, 2386, 8, 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, 1, 161, 1, 161, 4, 161, 2403, 8, 161, 11, 161, 12, 161, 2404, 1, 161, 1, 161, 3, 161, 2409, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 4, 161, 2415, 8, 161, 11, 161, 12, 161, 2416, 1, 161, 1, 161, 3, 161, 2421, 8, 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, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2444, 8, 161, 10, 161, 12, 161, 2447, 9, 161, 3, 161, 2449, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2458, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2464, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2470, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2476, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2487, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2496, 8, 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, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2516, 8, 161, 10, 161, 12, 161, 2519, 9, 161, 3, 161, 2521, 8, 161, 1, 161, 3, 161, 2524, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2534, 8, 161, 10, 161, 12, 161, 2537, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2543, 8, 162, 3, 162, 2545, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2567, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2594, 8, 169, 10, 169, 12, 169, 2597, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2603, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2609, 8, 169, 10, 169, 12, 169, 2612, 9, 169, 1, 169, 1, 169, 3, 169, 2616, 8, 169, 3, 169, 2618, 8, 169, 1, 169, 1, 169, 5, 169, 2622, 8, 169, 10, 169, 12, 169, 2625, 9, 169, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2631, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2637, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 5, 175, 2652, 8, 175, 10, 175, 12, 175, 2655, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2662, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2669, 8, 176, 10, 176, 12, 176, 2672, 9, 176, 3, 176, 2674, 8, 176, 1, 176, 3, 176, 2677, 8, 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, 3, 177, 2697, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2708, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2715, 8, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2720, 8, 180, 10, 180, 12, 180, 2723, 9, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2736, 8, 181, 3, 181, 2738, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 5, 183, 2745, 8, 183, 10, 183, 12, 183, 2748, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2756, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2763, 8, 185, 1, 186, 3, 186, 2766, 8, 186, 1, 186, 1, 186, 3, 186, 2770, 8, 186, 1, 186, 1, 186, 3, 186, 2774, 8, 186, 1, 186, 3, 186, 2777, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 10, 779, 1452, 1628, 1667, 1687, 1702, 1733, 1762, 1836, 2311, 6, 266, 290, 316, 320, 322, 338, 189, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3100, 0, 381, 1, 0, 0, 0, 2, 386, 1, 0, 0, 0, 4, 412, 1, 0, 0, 0, 6, 414, 1, 0, 0, 0, 8, 425, 1, 0, 0, 0, 10, 427, 1, 0, 0, 0, 12, 466, 1, 0, 0, 0, 14, 488, 1, 0, 0, 0, 16, 542, 1, 0, 0, 0, 18, 561, 1, 0, 0, 0, 20, 574, 1, 0, 0, 0, 22, 578, 1, 0, 0, 0, 24, 640, 1, 0, 0, 0, 26, 688, 1, 0, 0, 0, 28, 690, 1, 0, 0, 0, 30, 698, 1, 0, 0, 0, 32, 718, 1, 0, 0, 0, 34, 738, 1, 0, 0, 0, 36, 745, 1, 0, 0, 0, 38, 754, 1, 0, 0, 0, 40, 762, 1, 0, 0, 0, 42, 784, 1, 0, 0, 0, 44, 794, 1, 0, 0, 0, 46, 812, 1, 0, 0, 0, 48, 833, 1, 0, 0, 0, 50, 854, 1, 0, 0, 0, 52, 860, 1, 0, 0, 0, 54, 877, 1, 0, 0, 0, 56, 886, 1, 0, 0, 0, 58, 893, 1, 0, 0, 0, 60, 901, 1, 0, 0, 0, 62, 908, 1, 0, 0, 0, 64, 915, 1, 0, 0, 0, 66, 924, 1, 0, 0, 0, 68, 935, 1, 0, 0, 0, 70, 937, 1, 0, 0, 0, 72, 957, 1, 0, 0, 0, 74, 974, 1, 0, 0, 0, 76, 976, 1, 0, 0, 0, 78, 985, 1, 0, 0, 0, 80, 992, 1, 0, 0, 0, 82, 1001, 1, 0, 0, 0, 84, 1011, 1, 0, 0, 0, 86, 1034, 1, 0, 0, 0, 88, 1040, 1, 0, 0, 0, 90, 1042, 1, 0, 0, 0, 92, 1049, 1, 0, 0, 0, 94, 1061, 1, 0, 0, 0, 96, 1063, 1, 0, 0, 0, 98, 1070, 1, 0, 0, 0, 100, 1091, 1, 0, 0, 0, 102, 1120, 1, 0, 0, 0, 104, 1122, 1, 0, 0, 0, 106, 1130, 1, 0, 0, 0, 108, 1152, 1, 0, 0, 0, 110, 1170, 1, 0, 0, 0, 112, 1193, 1, 0, 0, 0, 114, 1195, 1, 0, 0, 0, 116, 1210, 1, 0, 0, 0, 118, 1229, 1, 0, 0, 0, 120, 1251, 1, 0, 0, 0, 122, 1256, 1, 0, 0, 0, 124, 1261, 1, 0, 0, 0, 126, 1266, 1, 0, 0, 0, 128, 1271, 1, 0, 0, 0, 130, 1278, 1, 0, 0, 0, 132, 1293, 1, 0, 0, 0, 134, 1299, 1, 0, 0, 0, 136, 1319, 1, 0, 0, 0, 138, 1321, 1, 0, 0, 0, 140, 1332, 1, 0, 0, 0, 142, 1343, 1, 0, 0, 0, 144, 1357, 1, 0, 0, 0, 146, 1359, 1, 0, 0, 0, 148, 1368, 1, 0, 0, 0, 150, 1377, 1, 0, 0, 0, 152, 1386, 1, 0, 0, 0, 154, 1389, 1, 0, 0, 0, 156, 1397, 1, 0, 0, 0, 158, 1413, 1, 0, 0, 0, 160, 1417, 1, 0, 0, 0, 162, 1441, 1, 0, 0, 0, 164, 1443, 1, 0, 0, 0, 166, 1459, 1, 0, 0, 0, 168, 1462, 1, 0, 0, 0, 170, 1466, 1, 0, 0, 0, 172, 1469, 1, 0, 0, 0, 174, 1473, 1, 0, 0, 0, 176, 1475, 1, 0, 0, 0, 178, 1477, 1, 0, 0, 0, 180, 1479, 1, 0, 0, 0, 182, 1481, 1, 0, 0, 0, 184, 1483, 1, 0, 0, 0, 186, 1485, 1, 0, 0, 0, 188, 1493, 1, 0, 0, 0, 190, 1503, 1, 0, 0, 0, 192, 1507, 1, 0, 0, 0, 194, 1509, 1, 0, 0, 0, 196, 1513, 1, 0, 0, 0, 198, 1518, 1, 0, 0, 0, 200, 1558, 1, 0, 0, 0, 202, 1566, 1, 0, 0, 0, 204, 1570, 1, 0, 0, 0, 206, 1585, 1, 0, 0, 0, 208, 1590, 1, 0, 0, 0, 210, 1594, 1, 0, 0, 0, 212, 1603, 1, 0, 0, 0, 214, 1633, 1, 0, 0, 0, 216, 1648, 1, 0, 0, 0, 218, 1654, 1, 0, 0, 0, 220, 1659, 1, 0, 0, 0, 222, 1661, 1, 0, 0, 0, 224, 1679, 1, 0, 0, 0, 226, 1682, 1, 0, 0, 0, 228, 1692, 1, 0, 0, 0, 230, 1712, 1, 0, 0, 0, 232, 1722, 1, 0, 0, 0, 234, 1724, 1, 0, 0, 0, 236, 1726, 1, 0, 0, 0, 238, 1741, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1750, 1, 0, 0, 0, 244, 1782, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1801, 1, 0, 0, 0, 250, 1811, 1, 0, 0, 0, 252, 1813, 1, 0, 0, 0, 254, 1819, 1, 0, 0, 0, 256, 1830, 1, 0, 0, 0, 258, 1841, 1, 0, 0, 0, 260, 1849, 1, 0, 0, 0, 262, 1867, 1, 0, 0, 0, 264, 1872, 1, 0, 0, 0, 266, 1893, 1, 0, 0, 0, 268, 1929, 1, 0, 0, 0, 270, 1931, 1, 0, 0, 0, 272, 1939, 1, 0, 0, 0, 274, 1976, 1, 0, 0, 0, 276, 1979, 1, 0, 0, 0, 278, 1983, 1, 0, 0, 0, 280, 1993, 1, 0, 0, 0, 282, 2008, 1, 0, 0, 0, 284, 2010, 1, 0, 0, 0, 286, 2017, 1, 0, 0, 0, 288, 2031, 1, 0, 0, 0, 290, 2033, 1, 0, 0, 0, 292, 2083, 1, 0, 0, 0, 294, 2099, 1, 0, 0, 0, 296, 2101, 1, 0, 0, 0, 298, 2116, 1, 0, 0, 0, 300, 2118, 1, 0, 0, 0, 302, 2128, 1, 0, 0, 0, 304, 2146, 1, 0, 0, 0, 306, 2148, 1, 0, 0, 0, 308, 2152, 1, 0, 0, 0, 310, 2167, 1, 0, 0, 0, 312, 2173, 1, 0, 0, 0, 314, 2175, 1, 0, 0, 0, 316, 2184, 1, 0, 0, 0, 318, 2255, 1, 0, 0, 0, 320, 2261, 1, 0, 0, 0, 322, 2523, 1, 0, 0, 0, 324, 2544, 1, 0, 0, 0, 326, 2546, 1, 0, 0, 0, 328, 2548, 1, 0, 0, 0, 330, 2550, 1, 0, 0, 0, 332, 2566, 1, 0, 0, 0, 334, 2568, 1, 0, 0, 0, 336, 2570, 1, 0, 0, 0, 338, 2617, 1, 0, 0, 0, 340, 2626, 1, 0, 0, 0, 342, 2630, 1, 0, 0, 0, 344, 2636, 1, 0, 0, 0, 346, 2638, 1, 0, 0, 0, 348, 2643, 1, 0, 0, 0, 350, 2648, 1, 0, 0, 0, 352, 2656, 1, 0, 0, 0, 354, 2696, 1, 0, 0, 0, 356, 2707, 1, 0, 0, 0, 358, 2714, 1, 0, 0, 0, 360, 2716, 1, 0, 0, 0, 362, 2737, 1, 0, 0, 0, 364, 2739, 1, 0, 0, 0, 366, 2741, 1, 0, 0, 0, 368, 2755, 1, 0, 0, 0, 370, 2762, 1, 0, 0, 0, 372, 2776, 1, 0, 0, 0, 374, 2778, 1, 0, 0, 0, 376, 2780, 1, 0, 0, 0, 378, 380, 3, 2, 1, 0, 379, 378, 1, 0, 0, 0, 380, 383, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 5, 0, 0, 1, 385, 1, 1, 0, 0, 0, 386, 388, 3, 4, 2, 0, 387, 389, 5, 262, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 3, 1, 0, 0, 0, 390, 413, 3, 208, 104, 0, 391, 413, 3, 6, 3, 0, 392, 413, 3, 8, 4, 0, 393, 413, 3, 26, 13, 0, 394, 413, 3, 64, 32, 0, 395, 413, 3, 66, 33, 0, 396, 413, 3, 68, 34, 0, 397, 413, 3, 74, 37, 0, 398, 413, 3, 88, 44, 0, 399, 413, 3, 94, 47, 0, 400, 413, 3, 100, 50, 0, 401, 413, 3, 102, 51, 0, 402, 413, 3, 108, 54, 0, 403, 413, 3, 110, 55, 0, 404, 413, 3, 112, 56, 0, 405, 413, 3, 144, 72, 0, 406, 413, 3, 152, 76, 0, 407, 413, 3, 154, 77, 0, 408, 413, 3, 156, 78, 0, 409, 413, 3, 158, 79, 0, 410, 413, 3, 160, 80, 0, 411, 413, 3, 162, 81, 0, 412, 390, 1, 0, 0, 0, 412, 391, 1, 0, 0, 0, 412, 392, 1, 0, 0, 0, 412, 393, 1, 0, 0, 0, 412, 394, 1, 0, 0, 0, 412, 395, 1, 0, 0, 0, 412, 396, 1, 0, 0, 0, 412, 397, 1, 0, 0, 0, 412, 398, 1, 0, 0, 0, 412, 399, 1, 0, 0, 0, 412, 400, 1, 0, 0, 0, 412, 401, 1, 0, 0, 0, 412, 402, 1, 0, 0, 0, 412, 403, 1, 0, 0, 0, 412, 404, 1, 0, 0, 0, 412, 405, 1, 0, 0, 0, 412, 406, 1, 0, 0, 0, 412, 407, 1, 0, 0, 0, 412, 408, 1, 0, 0, 0, 412, 409, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 411, 1, 0, 0, 0, 413, 5, 1, 0, 0, 0, 414, 415, 5, 203, 0, 0, 415, 416, 3, 184, 92, 0, 416, 7, 1, 0, 0, 0, 417, 426, 3, 18, 9, 0, 418, 426, 3, 20, 10, 0, 419, 426, 3, 22, 11, 0, 420, 426, 3, 24, 12, 0, 421, 426, 3, 16, 8, 0, 422, 426, 3, 14, 7, 0, 423, 426, 3, 12, 6, 0, 424, 426, 3, 10, 5, 0, 425, 417, 1, 0, 0, 0, 425, 418, 1, 0, 0, 0, 425, 419, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 421, 1, 0, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 9, 1, 0, 0, 0, 427, 429, 5, 37, 0, 0, 428, 430, 5, 19, 0, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 5, 188, 0, 0, 432, 434, 3, 172, 86, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 451, 3, 174, 87, 0, 436, 437, 5, 265, 0, 0, 437, 442, 3, 218, 109, 0, 438, 439, 5, 263, 0, 0, 439, 441, 3, 218, 109, 0, 440, 438, 1, 0, 0, 0, 441, 444, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 447, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 445, 446, 5, 263, 0, 0, 446, 448, 3, 212, 106, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 266, 0, 0, 450, 452, 1, 0, 0, 0, 451, 436, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 459, 1, 0, 0, 0, 453, 454, 5, 17, 0, 0, 454, 457, 5, 26, 0, 0, 455, 458, 3, 302, 151, 0, 456, 458, 3, 256, 128, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 460, 1, 0, 0, 0, 459, 453, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 3, 198, 99, 0, 462, 463, 5, 9, 0, 0, 463, 465, 3, 208, 104, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 11, 1, 0, 0, 0, 466, 468, 5, 37, 0, 0, 467, 469, 5, 19, 0, 0, 468, 467, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 5, 188, 0, 0, 471, 473, 3, 172, 86, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 3, 174, 87, 0, 475, 479, 5, 115, 0, 0, 476, 480, 3, 186, 93, 0, 477, 478, 5, 147, 0, 0, 478, 480, 3, 324, 162, 0, 479, 476, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 484, 1, 0, 0, 0, 481, 482, 5, 17, 0, 0, 482, 483, 5, 26, 0, 0, 483, 485, 3, 256, 128, 0, 484, 481, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 198, 99, 0, 487, 13, 1, 0, 0, 0, 488, 490, 5, 37, 0, 0, 489, 491, 5, 19, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 5, 188, 0, 0, 493, 495, 3, 172, 86, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 514, 3, 174, 87, 0, 497, 498, 5, 265, 0, 0, 498, 503, 3, 220, 110, 0, 499, 500, 5, 263, 0, 0, 500, 502, 3, 220, 110, 0, 501, 499, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 510, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 507, 5, 263, 0, 0, 507, 508, 5, 150, 0, 0, 508, 509, 5, 110, 0, 0, 509, 511, 3, 302, 151, 0, 510, 506, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 266, 0, 0, 513, 515, 1, 0, 0, 0, 514, 497, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 521, 1, 0, 0, 0, 516, 517, 5, 150, 0, 0, 517, 519, 5, 110, 0, 0, 518, 520, 3, 302, 151, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 526, 1, 0, 0, 0, 523, 524, 5, 145, 0, 0, 524, 525, 5, 26, 0, 0, 525, 527, 3, 238, 119, 0, 526, 523, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 1, 0, 0, 0, 528, 530, 3, 224, 112, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 23, 0, 0, 532, 533, 5, 9, 0, 0, 533, 536, 5, 111, 0, 0, 534, 535, 5, 25, 0, 0, 535, 537, 3, 254, 127, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 9, 0, 0, 539, 541, 3, 208, 104, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 15, 1, 0, 0, 0, 542, 543, 5, 37, 0, 0, 543, 545, 5, 212, 0, 0, 544, 546, 3, 172, 86, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 3, 178, 89, 0, 548, 550, 3, 204, 102, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 553, 3, 224, 112, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 254, 127, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 560, 3, 208, 104, 0, 560, 17, 1, 0, 0, 0, 561, 562, 5, 37, 0, 0, 562, 564, 7, 0, 0, 0, 563, 565, 3, 172, 86, 0, 564, 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 568, 3, 176, 88, 0, 567, 569, 3, 224, 112, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 571, 5, 24, 0, 0, 571, 573, 3, 324, 162, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 19, 1, 0, 0, 0, 574, 575, 5, 37, 0, 0, 575, 576, 5, 166, 0, 0, 576, 577, 3, 370, 185, 0, 577, 21, 1, 0, 0, 0, 578, 580, 5, 37, 0, 0, 579, 581, 5, 12, 0, 0, 580, 579, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 5, 84, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 599, 3, 180, 90, 0, 587, 596, 5, 265, 0, 0, 588, 593, 3, 338, 169, 0, 589, 590, 5, 263, 0, 0, 590, 592, 3, 338, 169, 0, 591, 589, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, 588, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 5, 266, 0, 0, 599, 587, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 160, 0, 0, 602, 605, 3, 338, 169, 0, 603, 604, 5, 102, 0, 0, 604, 606, 3, 338, 169, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 24, 0, 0, 608, 612, 5, 274, 0, 0, 609, 610, 5, 104, 0, 0, 610, 611, 5, 249, 0, 0, 611, 613, 5, 274, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 206, 0, 0, 615, 616, 5, 249, 0, 0, 616, 617, 5, 274, 0, 0, 617, 618, 5, 126, 0, 0, 618, 619, 5, 249, 0, 0, 619, 623, 5, 274, 0, 0, 620, 621, 5, 18, 0, 0, 621, 622, 5, 249, 0, 0, 622, 624, 5, 274, 0, 0, 623, 620, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 626, 5, 20, 0, 0, 626, 627, 5, 249, 0, 0, 627, 629, 5, 274, 0, 0, 628, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 633, 1, 0, 0, 0, 630, 631, 5, 187, 0, 0, 631, 632, 5, 249, 0, 0, 632, 634, 5, 274, 0, 0, 633, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 638, 1, 0, 0, 0, 635, 636, 5, 76, 0, 0, 636, 637, 5, 249, 0, 0, 637, 639, 5, 274, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 23, 1, 0, 0, 0, 640, 641, 5, 37, 0, 0, 641, 643, 5, 84, 0, 0, 642, 644, 3, 172, 86, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 658, 3, 180, 90, 0, 646, 655, 5, 265, 0, 0, 647, 652, 3, 338, 169, 0, 648, 649, 5, 263, 0, 0, 649, 651, 3, 338, 169, 0, 650, 648, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 647, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 5, 266, 0, 0, 658, 646, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 662, 1, 0, 0, 0, 660, 661, 5, 160, 0, 0, 661, 663, 3, 338, 169, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 24, 0, 0, 665, 666, 5, 274, 0, 0, 666, 667, 5, 186, 0, 0, 667, 668, 5, 249, 0, 0, 668, 669, 3, 324, 162, 0, 669, 25, 1, 0, 0, 0, 670, 689, 3, 28, 14, 0, 671, 689, 3, 62, 31, 0, 672, 689, 3, 60, 30, 0, 673, 689, 3, 58, 29, 0, 674, 689, 3, 54, 27, 0, 675, 689, 3, 56, 28, 0, 676, 689, 3, 52, 26, 0, 677, 689, 3, 48, 24, 0, 678, 689, 3, 50, 25, 0, 679, 689, 3, 46, 23, 0, 680, 689, 3, 44, 22, 0, 681, 689, 3, 42, 21, 0, 682, 689, 3, 40, 20, 0, 683, 689, 3, 34, 17, 0, 684, 689, 3, 30, 15, 0, 685, 689, 3, 32, 16, 0, 686, 689, 3, 36, 18, 0, 687, 689, 3, 38, 19, 0, 688, 670, 1, 0, 0, 0, 688, 671, 1, 0, 0, 0, 688, 672, 1, 0, 0, 0, 688, 673, 1, 0, 0, 0, 688, 674, 1, 0, 0, 0, 688, 675, 1, 0, 0, 0, 688, 676, 1, 0, 0, 0, 688, 677, 1, 0, 0, 0, 688, 678, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 680, 1, 0, 0, 0, 688, 681, 1, 0, 0, 0, 688, 682, 1, 0, 0, 0, 688, 683, 1, 0, 0, 0, 688, 684, 1, 0, 0, 0, 688, 685, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 688, 687, 1, 0, 0, 0, 689, 27, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 46, 0, 0, 692, 693, 3, 184, 92, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 142, 0, 0, 695, 696, 7, 1, 0, 0, 696, 697, 3, 370, 185, 0, 697, 29, 1, 0, 0, 0, 698, 699, 5, 4, 0, 0, 699, 700, 5, 188, 0, 0, 700, 701, 3, 186, 93, 0, 701, 702, 5, 176, 0, 0, 702, 703, 5, 32, 0, 0, 703, 704, 5, 182, 0, 0, 704, 705, 3, 192, 96, 0, 705, 706, 5, 265, 0, 0, 706, 707, 3, 234, 117, 0, 707, 708, 5, 249, 0, 0, 708, 714, 3, 324, 162, 0, 709, 710, 5, 263, 0, 0, 710, 711, 3, 234, 117, 0, 711, 712, 5, 249, 0, 0, 712, 713, 3, 324, 162, 0, 713, 715, 1, 0, 0, 0, 714, 709, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 266, 0, 0, 717, 31, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 723, 3, 186, 93, 0, 721, 722, 5, 145, 0, 0, 722, 724, 3, 314, 157, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 736, 5, 176, 0, 0, 726, 727, 5, 30, 0, 0, 727, 728, 5, 94, 0, 0, 728, 733, 3, 324, 162, 0, 729, 730, 5, 216, 0, 0, 730, 731, 5, 151, 0, 0, 731, 732, 5, 249, 0, 0, 732, 734, 3, 372, 186, 0, 733, 729, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 737, 5, 197, 0, 0, 736, 726, 1, 0, 0, 0, 736, 735, 1, 0, 0, 0, 737, 33, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 741, 3, 186, 93, 0, 741, 742, 5, 31, 0, 0, 742, 743, 3, 192, 96, 0, 743, 744, 3, 226, 113, 0, 744, 35, 1, 0, 0, 0, 745, 746, 5, 4, 0, 0, 746, 747, 5, 188, 0, 0, 747, 748, 3, 186, 93, 0, 748, 750, 5, 58, 0, 0, 749, 751, 5, 32, 0, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 3, 192, 96, 0, 753, 37, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 757, 3, 186, 93, 0, 757, 758, 5, 176, 0, 0, 758, 759, 5, 142, 0, 0, 759, 760, 7, 1, 0, 0, 760, 761, 3, 370, 185, 0, 761, 39, 1, 0, 0, 0, 762, 763, 5, 4, 0, 0, 763, 764, 5, 188, 0, 0, 764, 770, 3, 186, 93, 0, 765, 771, 5, 158, 0, 0, 766, 768, 5, 1, 0, 0, 767, 769, 3, 172, 86, 0, 768, 767, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 765, 1, 0, 0, 0, 770, 766, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 33, 0, 0, 773, 774, 5, 265, 0, 0, 774, 779, 3, 226, 113, 0, 775, 776, 5, 263, 0, 0, 776, 778, 3, 226, 113, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 266, 0, 0, 783, 41, 1, 0, 0, 0, 784, 785, 5, 4, 0, 0, 785, 786, 5, 188, 0, 0, 786, 787, 3, 186, 93, 0, 787, 788, 5, 1, 0, 0, 788, 790, 5, 32, 0, 0, 789, 791, 3, 172, 86, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 3, 228, 114, 0, 793, 43, 1, 0, 0, 0, 794, 795, 5, 4, 0, 0, 795, 796, 5, 188, 0, 0, 796, 797, 3, 186, 93, 0, 797, 799, 5, 4, 0, 0, 798, 800, 5, 32, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 810, 3, 192, 96, 0, 802, 806, 5, 176, 0, 0, 803, 807, 3, 232, 116, 0, 804, 805, 5, 34, 0, 0, 805, 807, 3, 324, 162, 0, 806, 803, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 811, 1, 0, 0, 0, 808, 809, 5, 58, 0, 0, 809, 811, 5, 51, 0, 0, 810, 802, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 45, 1, 0, 0, 0, 812, 813, 5, 4, 0, 0, 813, 814, 5, 188, 0, 0, 814, 815, 3, 186, 93, 0, 815, 817, 5, 1, 0, 0, 816, 818, 3, 172, 86, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 831, 1, 0, 0, 0, 819, 820, 5, 145, 0, 0, 820, 823, 3, 314, 157, 0, 821, 822, 5, 24, 0, 0, 822, 824, 3, 324, 162, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 826, 1, 0, 0, 0, 825, 827, 3, 246, 123, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 832, 1, 0, 0, 0, 828, 829, 5, 154, 0, 0, 829, 830, 5, 145, 0, 0, 830, 832, 3, 244, 122, 0, 831, 819, 1, 0, 0, 0, 831, 828, 1, 0, 0, 0, 832, 47, 1, 0, 0, 0, 833, 834, 5, 4, 0, 0, 834, 835, 5, 188, 0, 0, 835, 838, 3, 186, 93, 0, 836, 837, 5, 145, 0, 0, 837, 839, 3, 314, 157, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 852, 5, 176, 0, 0, 841, 842, 5, 72, 0, 0, 842, 853, 3, 236, 118, 0, 843, 844, 5, 168, 0, 0, 844, 845, 5, 79, 0, 0, 845, 853, 3, 260, 130, 0, 846, 847, 5, 24, 0, 0, 847, 853, 3, 324, 162, 0, 848, 849, 5, 25, 0, 0, 849, 853, 3, 254, 127, 0, 850, 851, 5, 175, 0, 0, 851, 853, 3, 254, 127, 0, 852, 841, 1, 0, 0, 0, 852, 843, 1, 0, 0, 0, 852, 846, 1, 0, 0, 0, 852, 848, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 49, 1, 0, 0, 0, 854, 855, 5, 4, 0, 0, 855, 856, 5, 188, 0, 0, 856, 857, 3, 186, 93, 0, 857, 858, 5, 155, 0, 0, 858, 859, 5, 146, 0, 0, 859, 51, 1, 0, 0, 0, 860, 861, 5, 4, 0, 0, 861, 862, 5, 188, 0, 0, 862, 863, 3, 186, 93, 0, 863, 865, 5, 58, 0, 0, 864, 866, 3, 170, 85, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 875, 1, 0, 0, 0, 867, 868, 5, 145, 0, 0, 868, 870, 3, 314, 157, 0, 869, 871, 5, 22, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 876, 1, 0, 0, 0, 872, 873, 5, 154, 0, 0, 873, 874, 5, 145, 0, 0, 874, 876, 3, 244, 122, 0, 875, 867, 1, 0, 0, 0, 875, 872, 1, 0, 0, 0, 876, 53, 1, 0, 0, 0, 877, 878, 5, 4, 0, 0, 878, 879, 5, 212, 0, 0, 879, 881, 3, 188, 94, 0, 880, 882, 3, 204, 102, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 5, 9, 0, 0, 884, 885, 3, 208, 104, 0, 885, 55, 1, 0, 0, 0, 886, 887, 5, 4, 0, 0, 887, 888, 5, 212, 0, 0, 888, 889, 3, 188, 94, 0, 889, 890, 5, 156, 0, 0, 890, 891, 5, 193, 0, 0, 891, 892, 3, 188, 94, 0, 892, 57, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 212, 0, 0, 895, 896, 3, 188, 94, 0, 896, 897, 5, 176, 0, 0, 897, 898, 5, 142, 0, 0, 898, 899, 7, 1, 0, 0, 899, 900, 3, 366, 183, 0, 900, 59, 1, 0, 0, 0, 901, 902, 5, 4, 0, 0, 902, 903, 5, 188, 0, 0, 903, 904, 3, 186, 93, 0, 904, 905, 5, 156, 0, 0, 905, 906, 5, 193, 0, 0, 906, 907, 3, 186, 93, 0, 907, 61, 1, 0, 0, 0, 908, 909, 5, 4, 0, 0, 909, 910, 5, 212, 0, 0, 910, 911, 3, 188, 94, 0, 911, 912, 7, 2, 0, 0, 912, 913, 5, 25, 0, 0, 913, 914, 3, 254, 127, 0, 914, 63, 1, 0, 0, 0, 915, 917, 5, 196, 0, 0, 916, 918, 5, 188, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 921, 3, 170, 85, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 186, 93, 0, 923, 65, 1, 0, 0, 0, 924, 926, 5, 56, 0, 0, 925, 927, 5, 46, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 1, 0, 0, 0, 928, 930, 7, 3, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 3, 366, 183, 0, 932, 67, 1, 0, 0, 0, 933, 936, 3, 70, 35, 0, 934, 936, 3, 72, 36, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 69, 1, 0, 0, 0, 937, 938, 5, 36, 0, 0, 938, 939, 5, 182, 0, 0, 939, 941, 3, 186, 93, 0, 940, 942, 3, 302, 151, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 955, 1, 0, 0, 0, 943, 944, 5, 190, 0, 0, 944, 945, 5, 185, 0, 0, 945, 946, 5, 265, 0, 0, 946, 947, 3, 372, 186, 0, 947, 953, 5, 266, 0, 0, 948, 949, 5, 157, 0, 0, 949, 950, 5, 265, 0, 0, 950, 951, 3, 372, 186, 0, 951, 952, 5, 266, 0, 0, 952, 954, 1, 0, 0, 0, 953, 948, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 1, 0, 0, 0, 955, 943, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 71, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 96, 0, 0, 959, 960, 5, 182, 0, 0, 960, 966, 3, 186, 93, 0, 961, 962, 5, 145, 0, 0, 962, 963, 5, 265, 0, 0, 963, 964, 3, 314, 157, 0, 964, 965, 5, 266, 0, 0, 965, 967, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 73, 1, 0, 0, 0, 968, 975, 3, 86, 43, 0, 969, 975, 3, 84, 42, 0, 970, 975, 3, 82, 41, 0, 971, 975, 3, 78, 39, 0, 972, 975, 3, 80, 40, 0, 973, 975, 3, 76, 38, 0, 974, 968, 1, 0, 0, 0, 974, 969, 1, 0, 0, 0, 974, 970, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 75, 1, 0, 0, 0, 976, 977, 5, 58, 0, 0, 977, 979, 7, 0, 0, 0, 978, 980, 3, 170, 85, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 983, 3, 184, 92, 0, 982, 984, 7, 4, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 77, 1, 0, 0, 0, 985, 986, 5, 58, 0, 0, 986, 988, 5, 212, 0, 0, 987, 989, 3, 170, 85, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 3, 188, 94, 0, 991, 79, 1, 0, 0, 0, 992, 993, 5, 58, 0, 0, 993, 995, 5, 188, 0, 0, 994, 996, 3, 170, 85, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 3, 186, 93, 0, 998, 1000, 5, 22, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 81, 1, 0, 0, 0, 1001, 1003, 5, 58, 0, 0, 1002, 1004, 5, 96, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 5, 182, 0, 0, 1006, 1009, 3, 186, 93, 0, 1007, 1008, 5, 145, 0, 0, 1008, 1010, 3, 314, 157, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 83, 1, 0, 0, 0, 1011, 1013, 5, 58, 0, 0, 1012, 1014, 5, 12, 0, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 5, 84, 0, 0, 1016, 1018, 3, 170, 85, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1032, 3, 190, 95, 0, 1020, 1029, 5, 265, 0, 0, 1021, 1026, 3, 338, 169, 0, 1022, 1023, 5, 263, 0, 0, 1023, 1025, 3, 338, 169, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1028, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 1021, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 266, 0, 0, 1032, 1020, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 85, 1, 0, 0, 0, 1034, 1035, 5, 58, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 370, 185, 0, 1037, 87, 1, 0, 0, 0, 1038, 1041, 3, 90, 45, 0, 1039, 1041, 3, 92, 46, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1039, 1, 0, 0, 0, 1041, 89, 1, 0, 0, 0, 1042, 1043, 5, 86, 0, 0, 1043, 1044, 5, 166, 0, 0, 1044, 1045, 3, 370, 185, 0, 1045, 1046, 5, 193, 0, 0, 1046, 1047, 5, 87, 0, 0, 1047, 1048, 3, 370, 185, 0, 1048, 91, 1, 0, 0, 0, 1049, 1050, 5, 86, 0, 0, 1050, 1051, 3, 362, 181, 0, 1051, 1052, 5, 136, 0, 0, 1052, 1054, 3, 364, 182, 0, 1053, 1055, 3, 366, 183, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 5, 193, 0, 0, 1057, 1058, 3, 368, 184, 0, 1058, 93, 1, 0, 0, 0, 1059, 1062, 3, 96, 48, 0, 1060, 1062, 3, 98, 49, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1060, 1, 0, 0, 0, 1062, 95, 1, 0, 0, 0, 1063, 1064, 5, 161, 0, 0, 1064, 1065, 5, 166, 0, 0, 1065, 1066, 3, 370, 185, 0, 1066, 1067, 5, 82, 0, 0, 1067, 1068, 5, 87, 0, 0, 1068, 1069, 3, 370, 185, 0, 1069, 97, 1, 0, 0, 0, 1070, 1074, 5, 161, 0, 0, 1071, 1072, 5, 86, 0, 0, 1072, 1073, 5, 137, 0, 0, 1073, 1075, 5, 78, 0, 0, 1074, 1071, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 3, 362, 181, 0, 1077, 1078, 5, 136, 0, 0, 1078, 1080, 3, 364, 182, 0, 1079, 1081, 3, 366, 183, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1088, 5, 82, 0, 0, 1083, 1089, 3, 368, 184, 0, 1084, 1086, 5, 166, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 3, 370, 185, 0, 1088, 1083, 1, 0, 0, 0, 1088, 1085, 1, 0, 0, 0, 1089, 99, 1, 0, 0, 0, 1090, 1092, 3, 210, 105, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 5, 99, 0, 0, 1094, 1096, 7, 5, 0, 0, 1095, 1097, 5, 188, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 186, 93, 0, 1099, 1101, 3, 302, 151, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1114, 1, 0, 0, 0, 1102, 1103, 5, 145, 0, 0, 1103, 1104, 5, 265, 0, 0, 1104, 1109, 3, 314, 157, 0, 1105, 1106, 5, 263, 0, 0, 1106, 1108, 3, 314, 157, 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, 266, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1102, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 3, 208, 104, 0, 1117, 101, 1, 0, 0, 0, 1118, 1121, 3, 104, 52, 0, 1119, 1121, 3, 106, 53, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 103, 1, 0, 0, 0, 1122, 1124, 5, 50, 0, 0, 1123, 1125, 5, 82, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 3, 186, 93, 0, 1127, 1129, 3, 274, 137, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 105, 1, 0, 0, 0, 1130, 1131, 5, 50, 0, 0, 1131, 1136, 3, 186, 93, 0, 1132, 1134, 5, 9, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 3, 370, 185, 0, 1136, 1133, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1147, 5, 82, 0, 0, 1139, 1144, 3, 290, 145, 0, 1140, 1141, 5, 263, 0, 0, 1141, 1143, 3, 290, 145, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1139, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1151, 3, 274, 137, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 107, 1, 0, 0, 0, 1152, 1153, 5, 54, 0, 0, 1153, 1154, 3, 186, 93, 0, 1154, 1155, 5, 176, 0, 0, 1155, 1165, 3, 200, 100, 0, 1156, 1157, 5, 82, 0, 0, 1157, 1162, 3, 290, 145, 0, 1158, 1159, 5, 263, 0, 0, 1159, 1161, 3, 290, 145, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1156, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1168, 1, 0, 0, 0, 1167, 1169, 3, 274, 137, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 109, 1, 0, 0, 0, 1170, 1171, 5, 207, 0, 0, 1171, 1173, 5, 103, 0, 0, 1172, 1174, 5, 188, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 3, 186, 93, 0, 1176, 1178, 3, 302, 151, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 3, 208, 104, 0, 1180, 111, 1, 0, 0, 0, 1181, 1194, 3, 132, 66, 0, 1182, 1194, 3, 134, 67, 0, 1183, 1194, 3, 136, 68, 0, 1184, 1194, 3, 130, 65, 0, 1185, 1194, 3, 128, 64, 0, 1186, 1194, 3, 126, 63, 0, 1187, 1194, 3, 124, 62, 0, 1188, 1194, 3, 122, 61, 0, 1189, 1194, 3, 120, 60, 0, 1190, 1194, 3, 118, 59, 0, 1191, 1194, 3, 116, 58, 0, 1192, 1194, 3, 114, 57, 0, 1193, 1181, 1, 0, 0, 0, 1193, 1182, 1, 0, 0, 0, 1193, 1183, 1, 0, 0, 0, 1193, 1184, 1, 0, 0, 0, 1193, 1185, 1, 0, 0, 0, 1193, 1186, 1, 0, 0, 0, 1193, 1187, 1, 0, 0, 0, 1193, 1188, 1, 0, 0, 0, 1193, 1189, 1, 0, 0, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 113, 1, 0, 0, 0, 1195, 1196, 5, 179, 0, 0, 1196, 1208, 7, 6, 0, 0, 1197, 1199, 5, 115, 0, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1205, 3, 324, 162, 0, 1201, 1202, 5, 271, 0, 0, 1202, 1204, 3, 324, 162, 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, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1198, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 115, 1, 0, 0, 0, 1210, 1211, 5, 179, 0, 0, 1211, 1214, 5, 189, 0, 0, 1212, 1213, 5, 94, 0, 0, 1213, 1215, 3, 186, 93, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1227, 1, 0, 0, 0, 1216, 1218, 5, 115, 0, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1224, 3, 324, 162, 0, 1220, 1221, 5, 271, 0, 0, 1221, 1223, 3, 324, 162, 0, 1222, 1220, 1, 0, 0, 0, 1223, 1226, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1228, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1227, 1217, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 117, 1, 0, 0, 0, 1229, 1231, 5, 179, 0, 0, 1230, 1232, 7, 7, 0, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1236, 5, 85, 0, 0, 1234, 1235, 5, 94, 0, 0, 1235, 1237, 3, 184, 92, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1249, 1, 0, 0, 0, 1238, 1240, 5, 115, 0, 0, 1239, 1238, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1246, 3, 324, 162, 0, 1242, 1243, 5, 271, 0, 0, 1243, 1245, 3, 324, 162, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1250, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1239, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 119, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 188, 0, 0, 1254, 1255, 3, 186, 93, 0, 1255, 121, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 37, 0, 0, 1258, 1259, 5, 212, 0, 0, 1259, 1260, 3, 188, 94, 0, 1260, 123, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 188, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 125, 1, 0, 0, 0, 1266, 1267, 5, 179, 0, 0, 1267, 1268, 5, 32, 0, 0, 1268, 1269, 5, 182, 0, 0, 1269, 1270, 3, 186, 93, 0, 1270, 127, 1, 0, 0, 0, 1271, 1273, 5, 179, 0, 0, 1272, 1274, 5, 154, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 5, 146, 0, 0, 1276, 1277, 3, 186, 93, 0, 1277, 129, 1, 0, 0, 0, 1278, 1279, 5, 179, 0, 0, 1279, 1280, 5, 73, 0, 0, 1280, 1281, 5, 94, 0, 0, 1281, 1291, 3, 186, 93, 0, 1282, 1283, 5, 145, 0, 0, 1283, 1284, 5, 265, 0, 0, 1284, 1287, 3, 314, 157, 0, 1285, 1286, 5, 263, 0, 0, 1286, 1288, 3, 314, 157, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 5, 266, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1282, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 131, 1, 0, 0, 0, 1293, 1295, 5, 179, 0, 0, 1294, 1296, 5, 39, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 5, 167, 0, 0, 1298, 133, 1, 0, 0, 0, 1299, 1300, 5, 179, 0, 0, 1300, 1301, 5, 166, 0, 0, 1301, 1302, 5, 86, 0, 0, 1302, 1303, 5, 87, 0, 0, 1303, 1304, 3, 370, 185, 0, 1304, 135, 1, 0, 0, 0, 1305, 1320, 3, 138, 69, 0, 1306, 1320, 3, 140, 70, 0, 1307, 1320, 3, 142, 71, 0, 1308, 1309, 5, 179, 0, 0, 1309, 1310, 5, 86, 0, 0, 1310, 1311, 7, 8, 0, 0, 1311, 1317, 3, 370, 185, 0, 1312, 1313, 5, 136, 0, 0, 1313, 1315, 7, 9, 0, 0, 1314, 1316, 3, 366, 183, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1305, 1, 0, 0, 0, 1319, 1306, 1, 0, 0, 0, 1319, 1307, 1, 0, 0, 0, 1319, 1308, 1, 0, 0, 0, 1320, 137, 1, 0, 0, 0, 1321, 1322, 5, 179, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 370, 185, 0, 1325, 1326, 5, 136, 0, 0, 1326, 1328, 5, 46, 0, 0, 1327, 1329, 3, 184, 92, 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, 139, 1, 0, 0, 0, 1332, 1333, 5, 179, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 370, 185, 0, 1336, 1337, 5, 136, 0, 0, 1337, 1339, 5, 188, 0, 0, 1338, 1340, 3, 186, 93, 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, 141, 1, 0, 0, 0, 1343, 1344, 5, 179, 0, 0, 1344, 1345, 5, 86, 0, 0, 1345, 1346, 7, 8, 0, 0, 1346, 1352, 3, 370, 185, 0, 1347, 1348, 5, 136, 0, 0, 1348, 1350, 5, 32, 0, 0, 1349, 1351, 3, 192, 96, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1347, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 143, 1, 0, 0, 0, 1354, 1358, 3, 146, 73, 0, 1355, 1358, 3, 148, 74, 0, 1356, 1358, 3, 150, 75, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 145, 1, 0, 0, 0, 1359, 1360, 5, 34, 0, 0, 1360, 1361, 5, 136, 0, 0, 1361, 1362, 5, 46, 0, 0, 1362, 1363, 3, 184, 92, 0, 1363, 1366, 5, 108, 0, 0, 1364, 1367, 3, 324, 162, 0, 1365, 1367, 5, 133, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1365, 1, 0, 0, 0, 1367, 147, 1, 0, 0, 0, 1368, 1369, 5, 34, 0, 0, 1369, 1370, 5, 136, 0, 0, 1370, 1371, 5, 188, 0, 0, 1371, 1372, 3, 186, 93, 0, 1372, 1375, 5, 108, 0, 0, 1373, 1376, 3, 324, 162, 0, 1374, 1376, 5, 133, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 149, 1, 0, 0, 0, 1377, 1378, 5, 34, 0, 0, 1378, 1379, 5, 136, 0, 0, 1379, 1380, 5, 32, 0, 0, 1380, 1381, 3, 192, 96, 0, 1381, 1384, 5, 108, 0, 0, 1382, 1385, 3, 324, 162, 0, 1383, 1385, 5, 133, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 151, 1, 0, 0, 0, 1386, 1387, 5, 67, 0, 0, 1387, 1388, 3, 4, 2, 0, 1388, 153, 1, 0, 0, 0, 1389, 1395, 5, 176, 0, 0, 1390, 1396, 5, 2, 0, 0, 1391, 1392, 3, 370, 185, 0, 1392, 1393, 5, 249, 0, 0, 1393, 1394, 3, 314, 157, 0, 1394, 1396, 1, 0, 0, 0, 1395, 1390, 1, 0, 0, 0, 1395, 1391, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 155, 1, 0, 0, 0, 1397, 1398, 5, 264, 0, 0, 1398, 1399, 5, 180, 0, 0, 1399, 1409, 5, 265, 0, 0, 1400, 1402, 3, 324, 162, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1410, 1, 0, 0, 0, 1403, 1406, 3, 324, 162, 0, 1404, 1405, 5, 263, 0, 0, 1405, 1407, 3, 314, 157, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1410, 3, 314, 157, 0, 1409, 1401, 1, 0, 0, 0, 1409, 1403, 1, 0, 0, 0, 1409, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 5, 266, 0, 0, 1412, 157, 1, 0, 0, 0, 1413, 1414, 5, 107, 0, 0, 1414, 1415, 5, 121, 0, 0, 1415, 1416, 3, 186, 93, 0, 1416, 159, 1, 0, 0, 0, 1417, 1418, 5, 118, 0, 0, 1418, 1419, 5, 45, 0, 0, 1419, 1420, 5, 98, 0, 0, 1420, 1422, 5, 274, 0, 0, 1421, 1423, 5, 144, 0, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 5, 103, 0, 0, 1425, 1426, 5, 188, 0, 0, 1426, 1436, 3, 186, 93, 0, 1427, 1428, 5, 145, 0, 0, 1428, 1429, 5, 265, 0, 0, 1429, 1432, 3, 314, 157, 0, 1430, 1431, 5, 263, 0, 0, 1431, 1433, 3, 314, 157, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 5, 266, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1427, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 161, 1, 0, 0, 0, 1438, 1442, 3, 164, 82, 0, 1439, 1442, 3, 166, 83, 0, 1440, 1442, 3, 168, 84, 0, 1441, 1438, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1440, 1, 0, 0, 0, 1442, 163, 1, 0, 0, 0, 1443, 1444, 5, 162, 0, 0, 1444, 1457, 3, 186, 93, 0, 1445, 1446, 5, 145, 0, 0, 1446, 1447, 5, 265, 0, 0, 1447, 1452, 3, 314, 157, 0, 1448, 1449, 5, 263, 0, 0, 1449, 1451, 3, 314, 157, 0, 1450, 1448, 1, 0, 0, 0, 1451, 1454, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1456, 5, 266, 0, 0, 1456, 1458, 1, 0, 0, 0, 1457, 1445, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 165, 1, 0, 0, 0, 1459, 1460, 5, 162, 0, 0, 1460, 1461, 5, 13, 0, 0, 1461, 167, 1, 0, 0, 0, 1462, 1463, 5, 162, 0, 0, 1463, 1464, 5, 85, 0, 0, 1464, 1465, 3, 190, 95, 0, 1465, 169, 1, 0, 0, 0, 1466, 1467, 5, 93, 0, 0, 1467, 1468, 5, 66, 0, 0, 1468, 171, 1, 0, 0, 0, 1469, 1470, 5, 93, 0, 0, 1470, 1471, 5, 132, 0, 0, 1471, 1472, 5, 66, 0, 0, 1472, 173, 1, 0, 0, 0, 1473, 1474, 3, 366, 183, 0, 1474, 175, 1, 0, 0, 0, 1475, 1476, 3, 366, 183, 0, 1476, 177, 1, 0, 0, 0, 1477, 1478, 3, 366, 183, 0, 1478, 179, 1, 0, 0, 0, 1479, 1480, 3, 366, 183, 0, 1480, 181, 1, 0, 0, 0, 1481, 1482, 3, 366, 183, 0, 1482, 183, 1, 0, 0, 0, 1483, 1484, 3, 366, 183, 0, 1484, 185, 1, 0, 0, 0, 1485, 1490, 3, 370, 185, 0, 1486, 1487, 5, 261, 0, 0, 1487, 1489, 3, 370, 185, 0, 1488, 1486, 1, 0, 0, 0, 1489, 1492, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 187, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1493, 1498, 3, 370, 185, 0, 1494, 1495, 5, 261, 0, 0, 1495, 1497, 3, 370, 185, 0, 1496, 1494, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 189, 1, 0, 0, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 3, 374, 187, 0, 1502, 1504, 3, 366, 183, 0, 1503, 1501, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 191, 1, 0, 0, 0, 1505, 1508, 3, 366, 183, 0, 1506, 1508, 4, 96, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 193, 1, 0, 0, 0, 1509, 1510, 3, 366, 183, 0, 1510, 195, 1, 0, 0, 0, 1511, 1514, 3, 186, 93, 0, 1512, 1514, 3, 188, 94, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 197, 1, 0, 0, 0, 1515, 1516, 5, 21, 0, 0, 1516, 1517, 5, 26, 0, 0, 1517, 1519, 3, 302, 151, 0, 1518, 1515, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, 1, 0, 0, 0, 1520, 1522, 3, 224, 112, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1526, 1, 0, 0, 0, 1523, 1524, 5, 168, 0, 0, 1524, 1525, 5, 79, 0, 0, 1525, 1527, 3, 260, 130, 0, 1526, 1523, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 216, 0, 0, 1529, 1530, 5, 175, 0, 0, 1530, 1532, 3, 254, 127, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1536, 1, 0, 0, 0, 1533, 1534, 5, 23, 0, 0, 1534, 1535, 5, 9, 0, 0, 1535, 1537, 3, 236, 118, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1539, 5, 24, 0, 0, 1539, 1541, 3, 324, 162, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1552, 1, 0, 0, 0, 1542, 1543, 5, 30, 0, 0, 1543, 1544, 5, 94, 0, 0, 1544, 1549, 3, 366, 183, 0, 1545, 1546, 5, 216, 0, 0, 1546, 1547, 5, 151, 0, 0, 1547, 1548, 5, 249, 0, 0, 1548, 1550, 5, 277, 0, 0, 1549, 1545, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1553, 5, 197, 0, 0, 1552, 1542, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1556, 1, 0, 0, 0, 1554, 1555, 5, 25, 0, 0, 1555, 1557, 3, 254, 127, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1563, 3, 202, 101, 0, 1559, 1560, 5, 263, 0, 0, 1560, 1562, 3, 202, 101, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1565, 1, 0, 0, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 201, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1566, 1567, 3, 366, 183, 0, 1567, 1568, 5, 249, 0, 0, 1568, 1569, 3, 314, 157, 0, 1569, 203, 1, 0, 0, 0, 1570, 1572, 5, 265, 0, 0, 1571, 1573, 3, 206, 103, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1580, 1, 0, 0, 0, 1574, 1576, 5, 263, 0, 0, 1575, 1577, 3, 206, 103, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1574, 1, 0, 0, 0, 1579, 1582, 1, 0, 0, 0, 1580, 1578, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1583, 1584, 5, 266, 0, 0, 1584, 205, 1, 0, 0, 0, 1585, 1587, 3, 182, 91, 0, 1586, 1588, 3, 224, 112, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 207, 1, 0, 0, 0, 1589, 1591, 3, 210, 105, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 3, 264, 132, 0, 1593, 209, 1, 0, 0, 0, 1594, 1595, 5, 216, 0, 0, 1595, 1600, 3, 284, 142, 0, 1596, 1597, 5, 263, 0, 0, 1597, 1599, 3, 284, 142, 0, 1598, 1596, 1, 0, 0, 0, 1599, 1602, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 211, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1604, 5, 150, 0, 0, 1604, 1605, 5, 110, 0, 0, 1605, 1607, 3, 302, 151, 0, 1606, 1608, 5, 53, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1612, 1, 0, 0, 0, 1609, 1613, 5, 225, 0, 0, 1610, 1611, 5, 263, 0, 0, 1611, 1613, 5, 225, 0, 0, 1612, 1609, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1617, 1, 0, 0, 0, 1614, 1618, 5, 226, 0, 0, 1615, 1616, 5, 263, 0, 0, 1616, 1618, 5, 226, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1631, 1, 0, 0, 0, 1619, 1620, 5, 263, 0, 0, 1620, 1623, 3, 214, 107, 0, 1621, 1623, 3, 214, 107, 0, 1622, 1619, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1628, 1, 0, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 214, 107, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1622, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 213, 1, 0, 0, 0, 1633, 1634, 5, 81, 0, 0, 1634, 1635, 5, 110, 0, 0, 1635, 1636, 3, 302, 151, 0, 1636, 1637, 5, 224, 0, 0, 1637, 1638, 3, 186, 93, 0, 1638, 1640, 3, 302, 151, 0, 1639, 1641, 5, 53, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 5, 225, 0, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 5, 226, 0, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 215, 1, 0, 0, 0, 1648, 1649, 3, 192, 96, 0, 1649, 1652, 3, 338, 169, 0, 1650, 1651, 5, 34, 0, 0, 1651, 1653, 3, 324, 162, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 217, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1657, 3, 338, 169, 0, 1656, 1658, 3, 224, 112, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 219, 1, 0, 0, 0, 1659, 1660, 3, 222, 111, 0, 1660, 221, 1, 0, 0, 0, 1661, 1662, 3, 182, 91, 0, 1662, 1670, 3, 338, 169, 0, 1663, 1667, 3, 230, 115, 0, 1664, 1666, 3, 230, 115, 0, 1665, 1664, 1, 0, 0, 0, 1666, 1669, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1667, 1665, 1, 0, 0, 0, 1668, 1671, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1670, 1663, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1674, 3, 224, 112, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1676, 5, 150, 0, 0, 1676, 1678, 5, 110, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 223, 1, 0, 0, 0, 1679, 1680, 5, 34, 0, 0, 1680, 1681, 3, 324, 162, 0, 1681, 225, 1, 0, 0, 0, 1682, 1690, 3, 216, 108, 0, 1683, 1687, 3, 230, 115, 0, 1684, 1686, 3, 230, 115, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1683, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 227, 1, 0, 0, 0, 1692, 1693, 3, 182, 91, 0, 1693, 1696, 3, 338, 169, 0, 1694, 1695, 5, 34, 0, 0, 1695, 1697, 3, 324, 162, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1705, 1, 0, 0, 0, 1698, 1702, 3, 230, 115, 0, 1699, 1701, 3, 230, 115, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1698, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1709, 5, 132, 0, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1713, 5, 133, 0, 0, 1711, 1713, 3, 232, 116, 0, 1712, 1708, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 231, 1, 0, 0, 0, 1714, 1715, 5, 60, 0, 0, 1715, 1723, 3, 314, 157, 0, 1716, 1717, 5, 35, 0, 0, 1717, 1723, 3, 314, 157, 0, 1718, 1719, 5, 51, 0, 0, 1719, 1723, 3, 314, 157, 0, 1720, 1721, 5, 16, 0, 0, 1721, 1723, 3, 372, 186, 0, 1722, 1714, 1, 0, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1718, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 233, 1, 0, 0, 0, 1724, 1725, 7, 10, 0, 0, 1725, 235, 1, 0, 0, 0, 1726, 1727, 7, 11, 0, 0, 1727, 237, 1, 0, 0, 0, 1728, 1733, 3, 240, 120, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1736, 1737, 5, 263, 0, 0, 1737, 1739, 3, 242, 121, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1742, 3, 242, 121, 0, 1741, 1728, 1, 0, 0, 0, 1741, 1740, 1, 0, 0, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 89, 0, 0, 1744, 1746, 3, 302, 151, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 146, 0, 0, 1748, 1749, 3, 372, 186, 0, 1749, 241, 1, 0, 0, 0, 1750, 1752, 5, 154, 0, 0, 1751, 1753, 3, 302, 151, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 5, 265, 0, 0, 1755, 1756, 5, 145, 0, 0, 1756, 1762, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1759, 5, 145, 0, 0, 1759, 1761, 3, 244, 122, 0, 1760, 1757, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 266, 0, 0, 1766, 243, 1, 0, 0, 0, 1767, 1768, 5, 210, 0, 0, 1768, 1769, 3, 250, 125, 0, 1769, 1770, 3, 314, 157, 0, 1770, 1783, 1, 0, 0, 0, 1771, 1772, 3, 314, 157, 0, 1772, 1773, 3, 248, 124, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1771, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1780, 5, 211, 0, 0, 1777, 1778, 3, 248, 124, 0, 1778, 1779, 3, 314, 157, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1777, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1767, 1, 0, 0, 0, 1782, 1774, 1, 0, 0, 0, 1783, 245, 1, 0, 0, 0, 1784, 1785, 5, 30, 0, 0, 1785, 1786, 5, 94, 0, 0, 1786, 1791, 3, 370, 185, 0, 1787, 1788, 5, 216, 0, 0, 1788, 1789, 5, 151, 0, 0, 1789, 1790, 5, 249, 0, 0, 1790, 1792, 3, 372, 186, 0, 1791, 1787, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1795, 5, 197, 0, 0, 1794, 1784, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1802, 1, 0, 0, 0, 1797, 1802, 5, 251, 0, 0, 1798, 1802, 5, 252, 0, 0, 1799, 1802, 5, 253, 0, 0, 1800, 1802, 5, 254, 0, 0, 1801, 1796, 1, 0, 0, 0, 1801, 1797, 1, 0, 0, 0, 1801, 1798, 1, 0, 0, 0, 1801, 1799, 1, 0, 0, 0, 1801, 1800, 1, 0, 0, 0, 1802, 249, 1, 0, 0, 0, 1803, 1812, 5, 249, 0, 0, 1804, 1812, 5, 250, 0, 0, 1805, 1812, 5, 115, 0, 0, 1806, 1812, 5, 164, 0, 0, 1807, 1812, 5, 163, 0, 0, 1808, 1812, 5, 15, 0, 0, 1809, 1812, 5, 94, 0, 0, 1810, 1812, 3, 248, 124, 0, 1811, 1803, 1, 0, 0, 0, 1811, 1804, 1, 0, 0, 0, 1811, 1805, 1, 0, 0, 0, 1811, 1806, 1, 0, 0, 0, 1811, 1807, 1, 0, 0, 0, 1811, 1808, 1, 0, 0, 0, 1811, 1809, 1, 0, 0, 0, 1811, 1810, 1, 0, 0, 0, 1812, 251, 1, 0, 0, 0, 1813, 1814, 5, 115, 0, 0, 1814, 1817, 3, 366, 183, 0, 1815, 1816, 7, 12, 0, 0, 1816, 1818, 5, 153, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 253, 1, 0, 0, 0, 1819, 1820, 5, 265, 0, 0, 1820, 1825, 3, 262, 131, 0, 1821, 1822, 5, 263, 0, 0, 1822, 1824, 3, 262, 131, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1828, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 5, 266, 0, 0, 1829, 255, 1, 0, 0, 0, 1830, 1831, 5, 265, 0, 0, 1831, 1836, 3, 216, 108, 0, 1832, 1833, 5, 263, 0, 0, 1833, 1835, 3, 216, 108, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1840, 5, 266, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1846, 3, 314, 157, 0, 1842, 1843, 5, 263, 0, 0, 1843, 1845, 3, 314, 157, 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, 259, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1859, 5, 52, 0, 0, 1850, 1851, 5, 71, 0, 0, 1851, 1852, 5, 191, 0, 0, 1852, 1853, 5, 26, 0, 0, 1853, 1857, 3, 324, 162, 0, 1854, 1855, 5, 63, 0, 0, 1855, 1856, 5, 26, 0, 0, 1856, 1858, 3, 324, 162, 0, 1857, 1854, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1850, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1865, 1, 0, 0, 0, 1861, 1862, 5, 117, 0, 0, 1862, 1863, 5, 191, 0, 0, 1863, 1864, 5, 26, 0, 0, 1864, 1866, 3, 324, 162, 0, 1865, 1861, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 261, 1, 0, 0, 0, 1867, 1870, 3, 370, 185, 0, 1868, 1869, 5, 249, 0, 0, 1869, 1871, 3, 314, 157, 0, 1870, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 263, 1, 0, 0, 0, 1872, 1883, 3, 266, 133, 0, 1873, 1874, 5, 139, 0, 0, 1874, 1875, 5, 26, 0, 0, 1875, 1880, 3, 270, 135, 0, 1876, 1877, 5, 263, 0, 0, 1877, 1879, 3, 270, 135, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1891, 1, 0, 0, 0, 1885, 1886, 5, 116, 0, 0, 1886, 1889, 3, 314, 157, 0, 1887, 1888, 5, 135, 0, 0, 1888, 1890, 5, 277, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1892, 1, 0, 0, 0, 1891, 1885, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 265, 1, 0, 0, 0, 1893, 1894, 6, 133, -1, 0, 1894, 1895, 3, 268, 134, 0, 1895, 1910, 1, 0, 0, 0, 1896, 1897, 10, 2, 0, 0, 1897, 1899, 5, 100, 0, 0, 1898, 1900, 3, 286, 143, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1909, 3, 266, 133, 3, 1902, 1903, 10, 1, 0, 0, 1903, 1905, 7, 13, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 3, 266, 133, 2, 1908, 1896, 1, 0, 0, 0, 1908, 1902, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 267, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1930, 3, 272, 136, 0, 1914, 1915, 5, 188, 0, 0, 1915, 1930, 3, 186, 93, 0, 1916, 1917, 5, 211, 0, 0, 1917, 1922, 3, 314, 157, 0, 1918, 1919, 5, 263, 0, 0, 1919, 1921, 3, 314, 157, 0, 1920, 1918, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1930, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1926, 5, 265, 0, 0, 1926, 1927, 3, 264, 132, 0, 1927, 1928, 5, 266, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1913, 1, 0, 0, 0, 1929, 1914, 1, 0, 0, 0, 1929, 1916, 1, 0, 0, 0, 1929, 1925, 1, 0, 0, 0, 1930, 269, 1, 0, 0, 0, 1931, 1933, 3, 312, 156, 0, 1932, 1934, 7, 14, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1936, 5, 134, 0, 0, 1936, 1938, 7, 15, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 271, 1, 0, 0, 0, 1939, 1941, 5, 174, 0, 0, 1940, 1942, 3, 286, 143, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1945, 5, 183, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 3, 288, 144, 0, 1947, 1948, 5, 263, 0, 0, 1948, 1950, 3, 288, 144, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1963, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1955, 5, 82, 0, 0, 1955, 1960, 3, 290, 145, 0, 1956, 1957, 5, 263, 0, 0, 1957, 1959, 3, 290, 145, 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, 1954, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 274, 137, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1971, 1, 0, 0, 0, 1968, 1969, 5, 87, 0, 0, 1969, 1970, 5, 26, 0, 0, 1970, 1972, 3, 278, 139, 0, 1971, 1968, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 276, 138, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 273, 1, 0, 0, 0, 1976, 1977, 5, 215, 0, 0, 1977, 1978, 3, 316, 158, 0, 1978, 275, 1, 0, 0, 0, 1979, 1980, 5, 90, 0, 0, 1980, 1981, 3, 316, 158, 0, 1981, 277, 1, 0, 0, 0, 1982, 1984, 3, 286, 143, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1990, 3, 280, 140, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 280, 140, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 279, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1994, 3, 282, 141, 0, 1994, 281, 1, 0, 0, 0, 1995, 2004, 5, 265, 0, 0, 1996, 2001, 3, 312, 156, 0, 1997, 1998, 5, 263, 0, 0, 1998, 2000, 3, 312, 156, 0, 1999, 1997, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2004, 1996, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2009, 5, 266, 0, 0, 2007, 2009, 3, 312, 156, 0, 2008, 1995, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 283, 1, 0, 0, 0, 2010, 2012, 3, 370, 185, 0, 2011, 2013, 3, 302, 151, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 9, 0, 0, 2015, 2016, 3, 306, 153, 0, 2016, 285, 1, 0, 0, 0, 2017, 2018, 7, 16, 0, 0, 2018, 287, 1, 0, 0, 0, 2019, 2024, 3, 312, 156, 0, 2020, 2022, 5, 9, 0, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 3, 370, 185, 0, 2024, 2021, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2032, 1, 0, 0, 0, 2026, 2027, 3, 366, 183, 0, 2027, 2028, 5, 261, 0, 0, 2028, 2029, 5, 257, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2032, 5, 257, 0, 0, 2031, 2019, 1, 0, 0, 0, 2031, 2026, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2032, 289, 1, 0, 0, 0, 2033, 2034, 6, 145, -1, 0, 2034, 2035, 3, 296, 148, 0, 2035, 2049, 1, 0, 0, 0, 2036, 2045, 10, 2, 0, 0, 2037, 2038, 5, 38, 0, 0, 2038, 2039, 5, 109, 0, 0, 2039, 2046, 3, 296, 148, 0, 2040, 2041, 3, 292, 146, 0, 2041, 2042, 5, 109, 0, 0, 2042, 2043, 3, 290, 145, 0, 2043, 2044, 3, 294, 147, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2037, 1, 0, 0, 0, 2045, 2040, 1, 0, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2036, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 291, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2054, 5, 97, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2084, 1, 0, 0, 0, 2055, 2057, 5, 114, 0, 0, 2056, 2058, 5, 97, 0, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2084, 1, 0, 0, 0, 2059, 2061, 5, 165, 0, 0, 2060, 2062, 5, 97, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2084, 1, 0, 0, 0, 2063, 2065, 5, 114, 0, 0, 2064, 2066, 5, 141, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2084, 1, 0, 0, 0, 2067, 2069, 5, 165, 0, 0, 2068, 2070, 5, 141, 0, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2084, 1, 0, 0, 0, 2071, 2073, 5, 83, 0, 0, 2072, 2074, 5, 141, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2084, 1, 0, 0, 0, 2075, 2076, 5, 114, 0, 0, 2076, 2084, 5, 177, 0, 0, 2077, 2078, 5, 165, 0, 0, 2078, 2084, 5, 177, 0, 0, 2079, 2080, 5, 114, 0, 0, 2080, 2084, 5, 7, 0, 0, 2081, 2082, 5, 165, 0, 0, 2082, 2084, 5, 7, 0, 0, 2083, 2053, 1, 0, 0, 0, 2083, 2055, 1, 0, 0, 0, 2083, 2059, 1, 0, 0, 0, 2083, 2063, 1, 0, 0, 0, 2083, 2067, 1, 0, 0, 0, 2083, 2071, 1, 0, 0, 0, 2083, 2075, 1, 0, 0, 0, 2083, 2077, 1, 0, 0, 0, 2083, 2079, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2084, 293, 1, 0, 0, 0, 2085, 2086, 5, 136, 0, 0, 2086, 2100, 3, 316, 158, 0, 2087, 2088, 5, 205, 0, 0, 2088, 2089, 5, 265, 0, 0, 2089, 2094, 3, 370, 185, 0, 2090, 2091, 5, 263, 0, 0, 2091, 2093, 3, 370, 185, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2098, 5, 266, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2085, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2100, 295, 1, 0, 0, 0, 2101, 2114, 3, 300, 150, 0, 2102, 2103, 5, 190, 0, 0, 2103, 2104, 3, 298, 149, 0, 2104, 2105, 5, 265, 0, 0, 2105, 2106, 3, 314, 157, 0, 2106, 2112, 5, 266, 0, 0, 2107, 2108, 5, 157, 0, 0, 2108, 2109, 5, 265, 0, 0, 2109, 2110, 3, 314, 157, 0, 2110, 2111, 5, 266, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2107, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2102, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 297, 1, 0, 0, 0, 2116, 2117, 7, 17, 0, 0, 2117, 299, 1, 0, 0, 0, 2118, 2126, 3, 304, 152, 0, 2119, 2121, 5, 9, 0, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 3, 370, 185, 0, 2123, 2125, 3, 302, 151, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2120, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 301, 1, 0, 0, 0, 2128, 2129, 5, 265, 0, 0, 2129, 2134, 3, 192, 96, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2133, 3, 192, 96, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2138, 5, 266, 0, 0, 2138, 303, 1, 0, 0, 0, 2139, 2147, 3, 196, 98, 0, 2140, 2142, 5, 113, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2147, 3, 306, 153, 0, 2144, 2147, 3, 308, 154, 0, 2145, 2147, 3, 310, 155, 0, 2146, 2139, 1, 0, 0, 0, 2146, 2141, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2145, 1, 0, 0, 0, 2147, 305, 1, 0, 0, 0, 2148, 2149, 5, 265, 0, 0, 2149, 2150, 3, 208, 104, 0, 2150, 2151, 5, 266, 0, 0, 2151, 307, 1, 0, 0, 0, 2152, 2153, 5, 201, 0, 0, 2153, 2154, 5, 265, 0, 0, 2154, 2159, 3, 314, 157, 0, 2155, 2156, 5, 263, 0, 0, 2156, 2158, 3, 314, 157, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2161, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 5, 266, 0, 0, 2163, 2164, 5, 216, 0, 0, 2164, 2166, 5, 140, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 309, 1, 0, 0, 0, 2167, 2168, 5, 265, 0, 0, 2168, 2169, 3, 290, 145, 0, 2169, 2170, 5, 266, 0, 0, 2170, 311, 1, 0, 0, 0, 2171, 2174, 3, 192, 96, 0, 2172, 2174, 3, 314, 157, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2172, 1, 0, 0, 0, 2174, 313, 1, 0, 0, 0, 2175, 2176, 3, 316, 158, 0, 2176, 315, 1, 0, 0, 0, 2177, 2178, 6, 158, -1, 0, 2178, 2180, 3, 320, 160, 0, 2179, 2181, 3, 318, 159, 0, 2180, 2179, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2185, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2185, 3, 316, 158, 3, 2184, 2177, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2185, 2194, 1, 0, 0, 0, 2186, 2187, 10, 2, 0, 0, 2187, 2188, 5, 5, 0, 0, 2188, 2193, 3, 316, 158, 3, 2189, 2190, 10, 1, 0, 0, 2190, 2191, 5, 138, 0, 0, 2191, 2193, 3, 316, 158, 2, 2192, 2186, 1, 0, 0, 0, 2192, 2189, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 317, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 3, 326, 163, 0, 2198, 2199, 3, 320, 160, 0, 2199, 2256, 1, 0, 0, 0, 2200, 2201, 3, 326, 163, 0, 2201, 2202, 3, 328, 164, 0, 2202, 2203, 3, 306, 153, 0, 2203, 2256, 1, 0, 0, 0, 2204, 2206, 5, 132, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 5, 15, 0, 0, 2208, 2209, 3, 320, 160, 0, 2209, 2210, 5, 5, 0, 0, 2210, 2211, 3, 320, 160, 0, 2211, 2256, 1, 0, 0, 0, 2212, 2214, 5, 132, 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, 2217, 5, 265, 0, 0, 2217, 2222, 3, 314, 157, 0, 2218, 2219, 5, 263, 0, 0, 2219, 2221, 3, 314, 157, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 266, 0, 0, 2226, 2256, 1, 0, 0, 0, 2227, 2229, 5, 132, 0, 0, 2228, 2227, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2231, 5, 94, 0, 0, 2231, 2256, 3, 306, 153, 0, 2232, 2234, 5, 132, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 7, 18, 0, 0, 2236, 2239, 3, 320, 160, 0, 2237, 2238, 5, 62, 0, 0, 2238, 2240, 3, 320, 160, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2256, 1, 0, 0, 0, 2241, 2242, 7, 19, 0, 0, 2242, 2256, 3, 320, 160, 0, 2243, 2245, 5, 108, 0, 0, 2244, 2246, 5, 132, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2256, 7, 20, 0, 0, 2248, 2250, 5, 108, 0, 0, 2249, 2251, 5, 132, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 57, 0, 0, 2253, 2254, 5, 82, 0, 0, 2254, 2256, 3, 320, 160, 0, 2255, 2197, 1, 0, 0, 0, 2255, 2200, 1, 0, 0, 0, 2255, 2205, 1, 0, 0, 0, 2255, 2213, 1, 0, 0, 0, 2255, 2228, 1, 0, 0, 0, 2255, 2233, 1, 0, 0, 0, 2255, 2241, 1, 0, 0, 0, 2255, 2243, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 319, 1, 0, 0, 0, 2257, 2258, 6, 160, -1, 0, 2258, 2262, 3, 322, 161, 0, 2259, 2260, 7, 21, 0, 0, 2260, 2262, 3, 320, 160, 4, 2261, 2257, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2274, 1, 0, 0, 0, 2263, 2264, 10, 3, 0, 0, 2264, 2265, 7, 22, 0, 0, 2265, 2273, 3, 320, 160, 4, 2266, 2267, 10, 2, 0, 0, 2267, 2268, 7, 21, 0, 0, 2268, 2273, 3, 320, 160, 3, 2269, 2270, 10, 1, 0, 0, 2270, 2271, 5, 260, 0, 0, 2271, 2273, 3, 320, 160, 2, 2272, 2263, 1, 0, 0, 0, 2272, 2266, 1, 0, 0, 0, 2272, 2269, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 321, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2278, 6, 161, -1, 0, 2278, 2524, 5, 133, 0, 0, 2279, 2524, 3, 332, 166, 0, 2280, 2281, 3, 370, 185, 0, 2281, 2282, 3, 324, 162, 0, 2282, 2524, 1, 0, 0, 0, 2283, 2284, 5, 286, 0, 0, 2284, 2524, 3, 324, 162, 0, 2285, 2524, 3, 372, 186, 0, 2286, 2524, 3, 330, 165, 0, 2287, 2524, 3, 324, 162, 0, 2288, 2524, 5, 276, 0, 0, 2289, 2524, 5, 272, 0, 0, 2290, 2291, 5, 148, 0, 0, 2291, 2292, 5, 265, 0, 0, 2292, 2293, 3, 320, 160, 0, 2293, 2294, 5, 94, 0, 0, 2294, 2295, 3, 320, 160, 0, 2295, 2296, 5, 266, 0, 0, 2296, 2524, 1, 0, 0, 0, 2297, 2298, 5, 265, 0, 0, 2298, 2301, 3, 314, 157, 0, 2299, 2300, 5, 9, 0, 0, 2300, 2302, 3, 338, 169, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2311, 1, 0, 0, 0, 2303, 2304, 5, 263, 0, 0, 2304, 2307, 3, 314, 157, 0, 2305, 2306, 5, 9, 0, 0, 2306, 2308, 3, 338, 169, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 266, 0, 0, 2315, 2524, 1, 0, 0, 0, 2316, 2317, 5, 168, 0, 0, 2317, 2318, 5, 265, 0, 0, 2318, 2323, 3, 314, 157, 0, 2319, 2320, 5, 263, 0, 0, 2320, 2322, 3, 314, 157, 0, 2321, 2319, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2327, 5, 266, 0, 0, 2327, 2524, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2330, 5, 265, 0, 0, 2330, 2331, 5, 257, 0, 0, 2331, 2333, 5, 266, 0, 0, 2332, 2334, 3, 348, 174, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 352, 176, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2524, 1, 0, 0, 0, 2338, 2339, 3, 190, 95, 0, 2339, 2351, 5, 265, 0, 0, 2340, 2342, 3, 286, 143, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2348, 3, 314, 157, 0, 2344, 2345, 5, 263, 0, 0, 2345, 2347, 3, 314, 157, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2341, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2363, 1, 0, 0, 0, 2353, 2354, 5, 139, 0, 0, 2354, 2355, 5, 26, 0, 0, 2355, 2360, 3, 270, 135, 0, 2356, 2357, 5, 263, 0, 0, 2357, 2359, 3, 270, 135, 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, 2364, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2353, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2367, 5, 266, 0, 0, 2366, 2368, 3, 348, 174, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 1, 0, 0, 0, 2369, 2371, 3, 352, 176, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2524, 1, 0, 0, 0, 2372, 2373, 3, 370, 185, 0, 2373, 2374, 5, 273, 0, 0, 2374, 2375, 3, 314, 157, 0, 2375, 2524, 1, 0, 0, 0, 2376, 2385, 5, 265, 0, 0, 2377, 2382, 3, 370, 185, 0, 2378, 2379, 5, 263, 0, 0, 2379, 2381, 3, 370, 185, 0, 2380, 2378, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2377, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 5, 266, 0, 0, 2388, 2389, 5, 273, 0, 0, 2389, 2524, 3, 314, 157, 0, 2390, 2391, 5, 265, 0, 0, 2391, 2392, 3, 208, 104, 0, 2392, 2393, 5, 266, 0, 0, 2393, 2524, 1, 0, 0, 0, 2394, 2395, 5, 66, 0, 0, 2395, 2396, 5, 265, 0, 0, 2396, 2397, 3, 208, 104, 0, 2397, 2398, 5, 266, 0, 0, 2398, 2524, 1, 0, 0, 0, 2399, 2400, 5, 28, 0, 0, 2400, 2402, 3, 320, 160, 0, 2401, 2403, 3, 346, 173, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2407, 5, 59, 0, 0, 2407, 2409, 3, 314, 157, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 5, 61, 0, 0, 2411, 2524, 1, 0, 0, 0, 2412, 2414, 5, 28, 0, 0, 2413, 2415, 3, 346, 173, 0, 2414, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2420, 1, 0, 0, 0, 2418, 2419, 5, 59, 0, 0, 2419, 2421, 3, 314, 157, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 5, 61, 0, 0, 2423, 2524, 1, 0, 0, 0, 2424, 2425, 5, 29, 0, 0, 2425, 2426, 5, 265, 0, 0, 2426, 2427, 3, 314, 157, 0, 2427, 2428, 5, 9, 0, 0, 2428, 2429, 3, 338, 169, 0, 2429, 2430, 5, 266, 0, 0, 2430, 2524, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 265, 0, 0, 2433, 2434, 3, 314, 157, 0, 2434, 2435, 5, 9, 0, 0, 2435, 2436, 3, 338, 169, 0, 2436, 2437, 5, 266, 0, 0, 2437, 2524, 1, 0, 0, 0, 2438, 2439, 5, 8, 0, 0, 2439, 2448, 5, 267, 0, 0, 2440, 2445, 3, 314, 157, 0, 2441, 2442, 5, 263, 0, 0, 2442, 2444, 3, 314, 157, 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, 2449, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2440, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2524, 5, 268, 0, 0, 2451, 2524, 3, 194, 97, 0, 2452, 2524, 5, 40, 0, 0, 2453, 2457, 5, 42, 0, 0, 2454, 2455, 5, 265, 0, 0, 2455, 2456, 5, 277, 0, 0, 2456, 2458, 5, 266, 0, 0, 2457, 2454, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2524, 1, 0, 0, 0, 2459, 2463, 5, 43, 0, 0, 2460, 2461, 5, 265, 0, 0, 2461, 2462, 5, 277, 0, 0, 2462, 2464, 5, 266, 0, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2524, 1, 0, 0, 0, 2465, 2469, 5, 119, 0, 0, 2466, 2467, 5, 265, 0, 0, 2467, 2468, 5, 277, 0, 0, 2468, 2470, 5, 266, 0, 0, 2469, 2466, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2524, 1, 0, 0, 0, 2471, 2475, 5, 120, 0, 0, 2472, 2473, 5, 265, 0, 0, 2473, 2474, 5, 277, 0, 0, 2474, 2476, 5, 266, 0, 0, 2475, 2472, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2524, 1, 0, 0, 0, 2477, 2524, 5, 44, 0, 0, 2478, 2524, 5, 41, 0, 0, 2479, 2480, 5, 184, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2482, 3, 320, 160, 0, 2482, 2483, 5, 82, 0, 0, 2483, 2486, 3, 320, 160, 0, 2484, 2485, 5, 78, 0, 0, 2485, 2487, 3, 320, 160, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2489, 5, 266, 0, 0, 2489, 2524, 1, 0, 0, 0, 2490, 2491, 5, 131, 0, 0, 2491, 2492, 5, 265, 0, 0, 2492, 2495, 3, 320, 160, 0, 2493, 2494, 5, 263, 0, 0, 2494, 2496, 3, 336, 168, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2524, 1, 0, 0, 0, 2499, 2500, 5, 68, 0, 0, 2500, 2501, 5, 265, 0, 0, 2501, 2502, 3, 370, 185, 0, 2502, 2503, 5, 82, 0, 0, 2503, 2504, 3, 320, 160, 0, 2504, 2505, 5, 266, 0, 0, 2505, 2524, 1, 0, 0, 0, 2506, 2507, 5, 265, 0, 0, 2507, 2508, 3, 314, 157, 0, 2508, 2509, 5, 266, 0, 0, 2509, 2524, 1, 0, 0, 0, 2510, 2511, 5, 88, 0, 0, 2511, 2520, 5, 265, 0, 0, 2512, 2517, 3, 366, 183, 0, 2513, 2514, 5, 263, 0, 0, 2514, 2516, 3, 366, 183, 0, 2515, 2513, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2512, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 5, 266, 0, 0, 2523, 2277, 1, 0, 0, 0, 2523, 2279, 1, 0, 0, 0, 2523, 2280, 1, 0, 0, 0, 2523, 2283, 1, 0, 0, 0, 2523, 2285, 1, 0, 0, 0, 2523, 2286, 1, 0, 0, 0, 2523, 2287, 1, 0, 0, 0, 2523, 2288, 1, 0, 0, 0, 2523, 2289, 1, 0, 0, 0, 2523, 2290, 1, 0, 0, 0, 2523, 2297, 1, 0, 0, 0, 2523, 2316, 1, 0, 0, 0, 2523, 2328, 1, 0, 0, 0, 2523, 2338, 1, 0, 0, 0, 2523, 2372, 1, 0, 0, 0, 2523, 2376, 1, 0, 0, 0, 2523, 2390, 1, 0, 0, 0, 2523, 2394, 1, 0, 0, 0, 2523, 2399, 1, 0, 0, 0, 2523, 2412, 1, 0, 0, 0, 2523, 2424, 1, 0, 0, 0, 2523, 2431, 1, 0, 0, 0, 2523, 2438, 1, 0, 0, 0, 2523, 2451, 1, 0, 0, 0, 2523, 2452, 1, 0, 0, 0, 2523, 2453, 1, 0, 0, 0, 2523, 2459, 1, 0, 0, 0, 2523, 2465, 1, 0, 0, 0, 2523, 2471, 1, 0, 0, 0, 2523, 2477, 1, 0, 0, 0, 2523, 2478, 1, 0, 0, 0, 2523, 2479, 1, 0, 0, 0, 2523, 2490, 1, 0, 0, 0, 2523, 2499, 1, 0, 0, 0, 2523, 2506, 1, 0, 0, 0, 2523, 2510, 1, 0, 0, 0, 2524, 2535, 1, 0, 0, 0, 2525, 2526, 10, 15, 0, 0, 2526, 2527, 5, 267, 0, 0, 2527, 2528, 3, 320, 160, 0, 2528, 2529, 5, 268, 0, 0, 2529, 2534, 1, 0, 0, 0, 2530, 2531, 10, 13, 0, 0, 2531, 2532, 5, 261, 0, 0, 2532, 2534, 3, 370, 185, 0, 2533, 2525, 1, 0, 0, 0, 2533, 2530, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 323, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2545, 5, 274, 0, 0, 2539, 2542, 5, 275, 0, 0, 2540, 2541, 5, 198, 0, 0, 2541, 2543, 5, 274, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2538, 1, 0, 0, 0, 2544, 2539, 1, 0, 0, 0, 2545, 325, 1, 0, 0, 0, 2546, 2547, 7, 23, 0, 0, 2547, 327, 1, 0, 0, 0, 2548, 2549, 7, 24, 0, 0, 2549, 329, 1, 0, 0, 0, 2550, 2551, 7, 25, 0, 0, 2551, 331, 1, 0, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2567, 3, 334, 167, 0, 2554, 2555, 5, 265, 0, 0, 2555, 2556, 5, 277, 0, 0, 2556, 2557, 5, 266, 0, 0, 2557, 2567, 3, 334, 167, 0, 2558, 2559, 5, 101, 0, 0, 2559, 2560, 5, 277, 0, 0, 2560, 2567, 3, 334, 167, 0, 2561, 2562, 5, 101, 0, 0, 2562, 2563, 5, 265, 0, 0, 2563, 2564, 5, 277, 0, 0, 2564, 2565, 5, 266, 0, 0, 2565, 2567, 3, 334, 167, 0, 2566, 2552, 1, 0, 0, 0, 2566, 2554, 1, 0, 0, 0, 2566, 2558, 1, 0, 0, 0, 2566, 2561, 1, 0, 0, 0, 2567, 333, 1, 0, 0, 0, 2568, 2569, 7, 26, 0, 0, 2569, 335, 1, 0, 0, 0, 2570, 2571, 7, 27, 0, 0, 2571, 337, 1, 0, 0, 0, 2572, 2573, 6, 169, -1, 0, 2573, 2574, 5, 8, 0, 0, 2574, 2575, 5, 251, 0, 0, 2575, 2576, 3, 338, 169, 0, 2576, 2577, 5, 253, 0, 0, 2577, 2618, 1, 0, 0, 0, 2578, 2579, 5, 235, 0, 0, 2579, 2580, 5, 251, 0, 0, 2580, 2581, 3, 338, 169, 0, 2581, 2582, 5, 263, 0, 0, 2582, 2583, 3, 338, 169, 0, 2583, 2584, 5, 253, 0, 0, 2584, 2618, 1, 0, 0, 0, 2585, 2586, 5, 240, 0, 0, 2586, 2587, 5, 251, 0, 0, 2587, 2588, 3, 370, 185, 0, 2588, 2595, 3, 338, 169, 0, 2589, 2590, 5, 263, 0, 0, 2590, 2591, 3, 370, 185, 0, 2591, 2592, 3, 338, 169, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2589, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2599, 5, 253, 0, 0, 2599, 2618, 1, 0, 0, 0, 2600, 2603, 3, 344, 172, 0, 2601, 2603, 3, 340, 170, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2601, 1, 0, 0, 0, 2603, 2615, 1, 0, 0, 0, 2604, 2605, 5, 265, 0, 0, 2605, 2610, 3, 342, 171, 0, 2606, 2607, 5, 263, 0, 0, 2607, 2609, 3, 342, 171, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2614, 5, 266, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2604, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2618, 1, 0, 0, 0, 2617, 2572, 1, 0, 0, 0, 2617, 2578, 1, 0, 0, 0, 2617, 2585, 1, 0, 0, 0, 2617, 2602, 1, 0, 0, 0, 2618, 2623, 1, 0, 0, 0, 2619, 2620, 10, 5, 0, 0, 2620, 2622, 5, 8, 0, 0, 2621, 2619, 1, 0, 0, 0, 2622, 2625, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 339, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2627, 7, 28, 0, 0, 2627, 341, 1, 0, 0, 0, 2628, 2631, 5, 277, 0, 0, 2629, 2631, 3, 338, 169, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2629, 1, 0, 0, 0, 2631, 343, 1, 0, 0, 0, 2632, 2637, 5, 284, 0, 0, 2633, 2637, 5, 285, 0, 0, 2634, 2637, 5, 286, 0, 0, 2635, 2637, 3, 370, 185, 0, 2636, 2632, 1, 0, 0, 0, 2636, 2633, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2635, 1, 0, 0, 0, 2637, 345, 1, 0, 0, 0, 2638, 2639, 5, 214, 0, 0, 2639, 2640, 3, 314, 157, 0, 2640, 2641, 5, 192, 0, 0, 2641, 2642, 3, 314, 157, 0, 2642, 347, 1, 0, 0, 0, 2643, 2644, 5, 74, 0, 0, 2644, 2645, 5, 265, 0, 0, 2645, 2646, 3, 274, 137, 0, 2646, 2647, 5, 266, 0, 0, 2647, 349, 1, 0, 0, 0, 2648, 2653, 3, 314, 157, 0, 2649, 2650, 5, 263, 0, 0, 2650, 2652, 3, 314, 157, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2655, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 351, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2656, 2657, 5, 143, 0, 0, 2657, 2661, 5, 265, 0, 0, 2658, 2659, 5, 145, 0, 0, 2659, 2660, 5, 26, 0, 0, 2660, 2662, 3, 350, 175, 0, 2661, 2658, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2673, 1, 0, 0, 0, 2663, 2664, 5, 139, 0, 0, 2664, 2665, 5, 26, 0, 0, 2665, 2670, 3, 270, 135, 0, 2666, 2667, 5, 263, 0, 0, 2667, 2669, 3, 270, 135, 0, 2668, 2666, 1, 0, 0, 0, 2669, 2672, 1, 0, 0, 0, 2670, 2668, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2674, 1, 0, 0, 0, 2672, 2670, 1, 0, 0, 0, 2673, 2663, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 354, 177, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 5, 266, 0, 0, 2679, 353, 1, 0, 0, 0, 2680, 2681, 5, 154, 0, 0, 2681, 2697, 3, 356, 178, 0, 2682, 2683, 5, 169, 0, 0, 2683, 2697, 3, 356, 178, 0, 2684, 2685, 5, 154, 0, 0, 2685, 2686, 5, 15, 0, 0, 2686, 2687, 3, 356, 178, 0, 2687, 2688, 5, 5, 0, 0, 2688, 2689, 3, 356, 178, 0, 2689, 2697, 1, 0, 0, 0, 2690, 2691, 5, 169, 0, 0, 2691, 2692, 5, 15, 0, 0, 2692, 2693, 3, 356, 178, 0, 2693, 2694, 5, 5, 0, 0, 2694, 2695, 3, 356, 178, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2680, 1, 0, 0, 0, 2696, 2682, 1, 0, 0, 0, 2696, 2684, 1, 0, 0, 0, 2696, 2690, 1, 0, 0, 0, 2697, 355, 1, 0, 0, 0, 2698, 2699, 5, 199, 0, 0, 2699, 2708, 5, 149, 0, 0, 2700, 2701, 5, 199, 0, 0, 2701, 2708, 5, 77, 0, 0, 2702, 2703, 5, 39, 0, 0, 2703, 2708, 5, 168, 0, 0, 2704, 2705, 3, 314, 157, 0, 2705, 2706, 7, 29, 0, 0, 2706, 2708, 1, 0, 0, 0, 2707, 2698, 1, 0, 0, 0, 2707, 2700, 1, 0, 0, 0, 2707, 2702, 1, 0, 0, 0, 2707, 2704, 1, 0, 0, 0, 2708, 357, 1, 0, 0, 0, 2709, 2710, 3, 370, 185, 0, 2710, 2711, 5, 261, 0, 0, 2711, 2712, 3, 370, 185, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 370, 185, 0, 2714, 2709, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 359, 1, 0, 0, 0, 2716, 2721, 3, 358, 179, 0, 2717, 2718, 5, 263, 0, 0, 2718, 2720, 3, 358, 179, 0, 2719, 2717, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 361, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2738, 5, 2, 0, 0, 2725, 2738, 5, 4, 0, 0, 2726, 2738, 5, 58, 0, 0, 2727, 2738, 5, 37, 0, 0, 2728, 2738, 5, 99, 0, 0, 2729, 2738, 5, 162, 0, 0, 2730, 2735, 5, 174, 0, 0, 2731, 2732, 5, 265, 0, 0, 2732, 2733, 3, 370, 185, 0, 2733, 2734, 5, 266, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2731, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2724, 1, 0, 0, 0, 2737, 2725, 1, 0, 0, 0, 2737, 2726, 1, 0, 0, 0, 2737, 2727, 1, 0, 0, 0, 2737, 2728, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2730, 1, 0, 0, 0, 2738, 363, 1, 0, 0, 0, 2739, 2740, 7, 30, 0, 0, 2740, 365, 1, 0, 0, 0, 2741, 2746, 3, 370, 185, 0, 2742, 2743, 5, 261, 0, 0, 2743, 2745, 3, 370, 185, 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, 367, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2750, 5, 166, 0, 0, 2750, 2756, 3, 370, 185, 0, 2751, 2752, 5, 204, 0, 0, 2752, 2756, 3, 370, 185, 0, 2753, 2754, 5, 87, 0, 0, 2754, 2756, 3, 370, 185, 0, 2755, 2749, 1, 0, 0, 0, 2755, 2751, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2756, 369, 1, 0, 0, 0, 2757, 2763, 5, 280, 0, 0, 2758, 2763, 5, 274, 0, 0, 2759, 2763, 3, 376, 188, 0, 2760, 2763, 5, 283, 0, 0, 2761, 2763, 5, 281, 0, 0, 2762, 2757, 1, 0, 0, 0, 2762, 2758, 1, 0, 0, 0, 2762, 2759, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2761, 1, 0, 0, 0, 2763, 371, 1, 0, 0, 0, 2764, 2766, 5, 256, 0, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2777, 5, 278, 0, 0, 2768, 2770, 5, 256, 0, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2777, 5, 279, 0, 0, 2772, 2774, 5, 256, 0, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2777, 5, 277, 0, 0, 2776, 2765, 1, 0, 0, 0, 2776, 2769, 1, 0, 0, 0, 2776, 2773, 1, 0, 0, 0, 2777, 373, 1, 0, 0, 0, 2778, 2779, 7, 31, 0, 0, 2779, 375, 1, 0, 0, 0, 2780, 2781, 7, 32, 0, 0, 2781, 377, 1, 0, 0, 0, 353, 381, 388, 412, 425, 429, 433, 442, 447, 451, 457, 459, 464, 468, 472, 479, 484, 490, 494, 503, 510, 514, 519, 521, 526, 529, 536, 540, 545, 549, 552, 556, 564, 568, 572, 580, 584, 593, 596, 599, 605, 612, 623, 628, 633, 638, 643, 652, 655, 658, 662, 688, 714, 723, 733, 736, 750, 768, 770, 779, 790, 799, 806, 810, 817, 823, 826, 831, 838, 852, 865, 870, 875, 881, 917, 920, 926, 929, 935, 941, 953, 955, 966, 974, 979, 983, 988, 995, 999, 1003, 1009, 1013, 1017, 1026, 1029, 1032, 1040, 1054, 1061, 1074, 1080, 1085, 1088, 1091, 1096, 1100, 1109, 1114, 1120, 1124, 1128, 1133, 1136, 1144, 1147, 1150, 1162, 1165, 1168, 1173, 1177, 1193, 1198, 1205, 1208, 1214, 1217, 1224, 1227, 1231, 1236, 1239, 1246, 1249, 1273, 1287, 1291, 1295, 1315, 1317, 1319, 1328, 1330, 1339, 1341, 1350, 1352, 1357, 1366, 1375, 1384, 1395, 1401, 1406, 1409, 1422, 1432, 1436, 1441, 1452, 1457, 1490, 1498, 1503, 1507, 1513, 1518, 1521, 1526, 1531, 1536, 1540, 1549, 1552, 1556, 1563, 1572, 1576, 1580, 1587, 1590, 1600, 1607, 1612, 1617, 1622, 1628, 1631, 1640, 1643, 1646, 1652, 1657, 1667, 1670, 1673, 1677, 1687, 1690, 1696, 1702, 1705, 1708, 1712, 1722, 1733, 1738, 1741, 1745, 1752, 1762, 1774, 1780, 1782, 1791, 1794, 1801, 1811, 1817, 1825, 1836, 1846, 1857, 1859, 1865, 1870, 1880, 1883, 1889, 1891, 1899, 1905, 1908, 1910, 1922, 1929, 1933, 1937, 1941, 1944, 1951, 1960, 1963, 1966, 1971, 1974, 1983, 1990, 2001, 2004, 2008, 2012, 2021, 2024, 2031, 2045, 2049, 2053, 2057, 2061, 2065, 2069, 2073, 2083, 2094, 2099, 2112, 2114, 2120, 2124, 2126, 2134, 2141, 2146, 2159, 2165, 2173, 2180, 2184, 2192, 2194, 2205, 2213, 2222, 2228, 2233, 2239, 2245, 2250, 2255, 2261, 2272, 2274, 2301, 2307, 2311, 2323, 2333, 2336, 2341, 2348, 2351, 2360, 2363, 2367, 2370, 2382, 2385, 2404, 2408, 2416, 2420, 2445, 2448, 2457, 2463, 2469, 2475, 2486, 2495, 2517, 2520, 2523, 2533, 2535, 2542, 2544, 2566, 2595, 2602, 2610, 2615, 2617, 2623, 2630, 2636, 2653, 2661, 2670, 2673, 2676, 2696, 2707, 2714, 2721, 2735, 2737, 2746, 2755, 2762, 2765, 2769, 2773, 2776] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.tokens b/src/lib/impala/ImpalaSqlParser.tokens index b57242c2b..a88a9d50a 100644 --- a/src/lib/impala/ImpalaSqlParser.tokens +++ b/src/lib/impala/ImpalaSqlParser.tokens @@ -284,9 +284,9 @@ BACKQUOTED_IDENTIFIER=283 TIME_WITH_TIME_ZONE=284 TIMESTAMP_WITH_TIME_ZONE=285 DOUBLE_PRECISION=286 -SIMPLE_COMMENT=287 +LINE_COMMENT=287 BRACKETED_COMMENT=288 -WS=289 +WHITE_SPACE=289 'ADD'=1 'ALL'=2 'ANALYTIC'=3 diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 99114cf03..2fa9d917c 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -303,9 +303,9 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly TIME_WITH_TIME_ZONE = 284; public static readonly TIMESTAMP_WITH_TIME_ZONE = 285; public static readonly DOUBLE_PRECISION = 286; - public static readonly SIMPLE_COMMENT = 287; + public static readonly LINE_COMMENT = 287; public static readonly BRACKETED_COMMENT = 288; - public static readonly WS = 289; + public static readonly WHITE_SPACE = 289; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_sqlStatement = 2; @@ -403,94 +403,98 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_viewNamePath = 94; public static readonly RULE_functionNamePath = 95; public static readonly RULE_columnNamePath = 96; - public static readonly RULE_tableOrViewPath = 97; - public static readonly RULE_createCommonItem = 98; - public static readonly RULE_assignmentList = 99; - public static readonly RULE_assignmentItem = 100; - public static readonly RULE_viewColumns = 101; - public static readonly RULE_viewColumnItem = 102; - public static readonly RULE_queryStatement = 103; - public static readonly RULE_with = 104; - public static readonly RULE_constraintSpecification = 105; - public static readonly RULE_foreignKeySpecification = 106; - public static readonly RULE_columnSpec = 107; - public static readonly RULE_columnDefinition = 108; - public static readonly RULE_kuduTableElement = 109; - public static readonly RULE_kuduColumnDefinition = 110; - public static readonly RULE_commentClause = 111; - public static readonly RULE_columnSpecWithKudu = 112; - public static readonly RULE_createColumnSpecWithKudu = 113; - public static readonly RULE_kuduAttributes = 114; - public static readonly RULE_kuduStorageAttr = 115; - public static readonly RULE_statsKey = 116; - public static readonly RULE_fileFormat = 117; - public static readonly RULE_kuduPartitionClause = 118; - public static readonly RULE_hashClause = 119; - public static readonly RULE_rangeClause = 120; - public static readonly RULE_kuduPartitionSpec = 121; - public static readonly RULE_cacheSpec = 122; - public static readonly RULE_rangeOperator = 123; - public static readonly RULE_partitionCol = 124; - public static readonly RULE_likeClause = 125; - public static readonly RULE_properties = 126; - public static readonly RULE_partitionedBy = 127; - public static readonly RULE_sortedBy = 128; - public static readonly RULE_rowFormat = 129; - public static readonly RULE_property = 130; - public static readonly RULE_queryNoWith = 131; - public static readonly RULE_queryTerm = 132; - public static readonly RULE_queryPrimary = 133; - public static readonly RULE_sortItem = 134; - public static readonly RULE_querySpecification = 135; - public static readonly RULE_groupBy = 136; - public static readonly RULE_groupingElement = 137; - public static readonly RULE_groupingSet = 138; - public static readonly RULE_namedQuery = 139; - public static readonly RULE_setQuantifier = 140; - public static readonly RULE_selectItem = 141; - public static readonly RULE_relation = 142; - public static readonly RULE_joinType = 143; - public static readonly RULE_joinCriteria = 144; - public static readonly RULE_sampledRelation = 145; - public static readonly RULE_sampleType = 146; - public static readonly RULE_aliasedRelation = 147; - public static readonly RULE_columnAliases = 148; - public static readonly RULE_relationPrimary = 149; - public static readonly RULE_subQueryRelation = 150; - public static readonly RULE_unnest = 151; - public static readonly RULE_parenthesizedRelation = 152; - public static readonly RULE_columnItem = 153; - public static readonly RULE_expression = 154; - public static readonly RULE_booleanExpression = 155; - public static readonly RULE_predicate = 156; - public static readonly RULE_valueExpression = 157; - public static readonly RULE_primaryExpression = 158; - public static readonly RULE_stringLiteral = 159; - public static readonly RULE_comparisonOperator = 160; - public static readonly RULE_comparisonQuantifier = 161; - public static readonly RULE_booleanValue = 162; - public static readonly RULE_interval = 163; - public static readonly RULE_intervalField = 164; - public static readonly RULE_normalForm = 165; - public static readonly RULE_type = 166; - public static readonly RULE_dataType = 167; - public static readonly RULE_typeParameter = 168; - public static readonly RULE_baseType = 169; - public static readonly RULE_whenClause = 170; - public static readonly RULE_filter = 171; - public static readonly RULE_over = 172; - public static readonly RULE_windowFrame = 173; - public static readonly RULE_frameBound = 174; - public static readonly RULE_pathElement = 175; - public static readonly RULE_pathSpecification = 176; - public static readonly RULE_privilege = 177; - public static readonly RULE_objectType = 178; - public static readonly RULE_qualifiedName = 179; - public static readonly RULE_principal = 180; - public static readonly RULE_identifier = 181; - public static readonly RULE_number = 182; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 183; - public static readonly RULE_nonReserved = 184; + public static readonly RULE_columnName = 97; + public static readonly RULE_tableOrViewPath = 98; + public static readonly RULE_createCommonItem = 99; + public static readonly RULE_assignmentList = 100; + public static readonly RULE_assignmentItem = 101; + public static readonly RULE_viewColumns = 102; + public static readonly RULE_viewColumnItem = 103; + public static readonly RULE_queryStatement = 104; + public static readonly RULE_with = 105; + public static readonly RULE_constraintSpecification = 106; + public static readonly RULE_foreignKeySpecification = 107; + public static readonly RULE_columnSpec = 108; + public static readonly RULE_columnDefinition = 109; + public static readonly RULE_kuduTableElement = 110; + public static readonly RULE_kuduColumnDefinition = 111; + public static readonly RULE_commentClause = 112; + public static readonly RULE_columnSpecWithKudu = 113; + public static readonly RULE_createColumnSpecWithKudu = 114; + public static readonly RULE_kuduAttributes = 115; + public static readonly RULE_kuduStorageAttr = 116; + public static readonly RULE_statsKey = 117; + public static readonly RULE_fileFormat = 118; + public static readonly RULE_kuduPartitionClause = 119; + public static readonly RULE_hashClause = 120; + public static readonly RULE_rangeClause = 121; + public static readonly RULE_kuduPartitionSpec = 122; + public static readonly RULE_cacheSpec = 123; + public static readonly RULE_rangeOperator = 124; + public static readonly RULE_partitionCol = 125; + public static readonly RULE_likeClause = 126; + public static readonly RULE_properties = 127; + public static readonly RULE_partitionedBy = 128; + public static readonly RULE_sortedBy = 129; + public static readonly RULE_rowFormat = 130; + public static readonly RULE_property = 131; + public static readonly RULE_queryNoWith = 132; + public static readonly RULE_queryTerm = 133; + public static readonly RULE_queryPrimary = 134; + public static readonly RULE_sortItem = 135; + public static readonly RULE_querySpecification = 136; + public static readonly RULE_whereClause = 137; + public static readonly RULE_havingClause = 138; + public static readonly RULE_groupBy = 139; + public static readonly RULE_groupingElement = 140; + public static readonly RULE_groupingSet = 141; + public static readonly RULE_namedQuery = 142; + public static readonly RULE_setQuantifier = 143; + public static readonly RULE_selectItem = 144; + public static readonly RULE_relation = 145; + public static readonly RULE_joinType = 146; + public static readonly RULE_joinCriteria = 147; + public static readonly RULE_sampledRelation = 148; + public static readonly RULE_sampleType = 149; + public static readonly RULE_aliasedRelation = 150; + public static readonly RULE_columnAliases = 151; + public static readonly RULE_relationPrimary = 152; + public static readonly RULE_subQueryRelation = 153; + public static readonly RULE_unnest = 154; + public static readonly RULE_parenthesizedRelation = 155; + public static readonly RULE_columnItem = 156; + public static readonly RULE_expression = 157; + public static readonly RULE_booleanExpression = 158; + public static readonly RULE_predicate = 159; + public static readonly RULE_valueExpression = 160; + public static readonly RULE_primaryExpression = 161; + public static readonly RULE_stringLiteral = 162; + public static readonly RULE_comparisonOperator = 163; + public static readonly RULE_comparisonQuantifier = 164; + public static readonly RULE_booleanValue = 165; + public static readonly RULE_interval = 166; + public static readonly RULE_intervalField = 167; + public static readonly RULE_normalForm = 168; + public static readonly RULE_type = 169; + public static readonly RULE_dataType = 170; + public static readonly RULE_typeParameter = 171; + public static readonly RULE_baseType = 172; + public static readonly RULE_whenClause = 173; + public static readonly RULE_filter = 174; + public static readonly RULE_partitionByClause = 175; + public static readonly RULE_over = 176; + public static readonly RULE_windowFrame = 177; + public static readonly RULE_frameBound = 178; + public static readonly RULE_pathElement = 179; + public static readonly RULE_pathSpecification = 180; + public static readonly RULE_privilege = 181; + public static readonly RULE_objectType = 182; + public static readonly RULE_qualifiedName = 183; + public static readonly RULE_principal = 184; + public static readonly RULE_identifier = 185; + public static readonly RULE_number = 186; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 187; + public static readonly RULE_nonReserved = 188; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -599,7 +603,7 @@ export class ImpalaSqlParser extends SQLParserBase { "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "TIME_WITH_TIME_ZONE", "TIMESTAMP_WITH_TIME_ZONE", "DOUBLE_PRECISION", - "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS" + "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE" ]; public static readonly ruleNames = [ "program", "singleStatement", "sqlStatement", "useStatement", "createStatement", @@ -626,25 +630,26 @@ export class ImpalaSqlParser extends SQLParserBase { "ifExists", "ifNotExists", "tableNameCreate", "databaseNameCreate", "viewNameCreate", "functionNameCreate", "columnNamePathCreate", "databaseNamePath", "tableNamePath", "viewNamePath", "functionNamePath", - "columnNamePath", "tableOrViewPath", "createCommonItem", "assignmentList", - "assignmentItem", "viewColumns", "viewColumnItem", "queryStatement", - "with", "constraintSpecification", "foreignKeySpecification", "columnSpec", - "columnDefinition", "kuduTableElement", "kuduColumnDefinition", + "columnNamePath", "columnName", "tableOrViewPath", "createCommonItem", + "assignmentList", "assignmentItem", "viewColumns", "viewColumnItem", + "queryStatement", "with", "constraintSpecification", "foreignKeySpecification", + "columnSpec", "columnDefinition", "kuduTableElement", "kuduColumnDefinition", "commentClause", "columnSpecWithKudu", "createColumnSpecWithKudu", "kuduAttributes", "kuduStorageAttr", "statsKey", "fileFormat", "kuduPartitionClause", "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", "rowFormat", "property", "queryNoWith", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", - "groupingSet", "namedQuery", "setQuantifier", "selectItem", "relation", - "joinType", "joinCriteria", "sampledRelation", "sampleType", "aliasedRelation", - "columnAliases", "relationPrimary", "subQueryRelation", "unnest", - "parenthesizedRelation", "columnItem", "expression", "booleanExpression", - "predicate", "valueExpression", "primaryExpression", "stringLiteral", - "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "dataType", "typeParameter", - "baseType", "whenClause", "filter", "over", "windowFrame", "frameBound", - "pathElement", "pathSpecification", "privilege", "objectType", "qualifiedName", + "sortItem", "querySpecification", "whereClause", "havingClause", + "groupBy", "groupingElement", "groupingSet", "namedQuery", "setQuantifier", + "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", + "sampleType", "aliasedRelation", "columnAliases", "relationPrimary", + "subQueryRelation", "unnest", "parenthesizedRelation", "columnItem", + "expression", "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", + "booleanValue", "interval", "intervalField", "normalForm", "type", + "dataType", "typeParameter", "baseType", "whenClause", "filter", + "partitionByClause", "over", "windowFrame", "frameBound", "pathElement", + "pathSpecification", "privilege", "objectType", "qualifiedName", "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", "nonReserved", ]; @@ -670,21 +675,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 373; + this.state = 381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 370; + this.state = 378; this.singleStatement(); } } - this.state = 375; + this.state = 383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 376; + this.state = 384; this.match(ImpalaSqlParser.EOF); } } @@ -709,14 +714,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 378; + this.state = 386; this.sqlStatement(); - this.state = 380; + this.state = 388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 379; + this.state = 387; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -741,160 +746,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 404; + this.state = 412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 382; + this.state = 390; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 383; + this.state = 391; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 384; + this.state = 392; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 385; + this.state = 393; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 386; + this.state = 394; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 387; + this.state = 395; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 388; + this.state = 396; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 389; + this.state = 397; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 390; + this.state = 398; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 391; + this.state = 399; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 392; + this.state = 400; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 393; + this.state = 401; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 394; + this.state = 402; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 395; + this.state = 403; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 396; + this.state = 404; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 397; + this.state = 405; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 398; + this.state = 406; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 399; + this.state = 407; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 400; + this.state = 408; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 401; + this.state = 409; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 402; + this.state = 410; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 403; + this.state = 411; this.refreshStatement(); } break; @@ -920,9 +925,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 406; + this.state = 414; this.match(ImpalaSqlParser.KW_USE); - this.state = 407; + this.state = 415; this.databaseNamePath(); } } @@ -944,62 +949,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 417; + this.state = 425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 409; + this.state = 417; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 410; + this.state = 418; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 411; + this.state = 419; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 412; + this.state = 420; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 413; + this.state = 421; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 414; + this.state = 422; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 415; + this.state = 423; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 416; + this.state = 424; this.createTableSelect(); } break; @@ -1027,97 +1032,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 419; + this.state = 427; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 421; + this.state = 429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 420; + this.state = 428; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 423; + this.state = 431; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 425; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 424; + this.state = 432; this.ifNotExists(); } } - this.state = 427; + this.state = 435; this.tableNameCreate(); - this.state = 443; + this.state = 451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 428; + this.state = 436; this.match(ImpalaSqlParser.LPAREN); - this.state = 429; + this.state = 437; this.columnDefinition(); - this.state = 434; + this.state = 442; 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 = 430; + this.state = 438; this.match(ImpalaSqlParser.COMMA); - this.state = 431; + this.state = 439; this.columnDefinition(); } } } - this.state = 436; + this.state = 444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 439; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 437; + this.state = 445; this.match(ImpalaSqlParser.COMMA); - this.state = 438; + this.state = 446; this.constraintSpecification(); } } - this.state = 441; + this.state = 449; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 451; + this.state = 459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 445; + this.state = 453; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 446; + this.state = 454; this.match(ImpalaSqlParser.KW_BY); - this.state = 449; + this.state = 457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 447; + this.state = 455; this.columnAliases(); } break; case 2: { - this.state = 448; + this.state = 456; this.partitionedBy(); } break; @@ -1125,16 +1130,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 453; + this.state = 461; this.createCommonItem(); - this.state = 456; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 454; + this.state = 462; this.match(ImpalaSqlParser.KW_AS); - this.state = 455; + this.state = 463; this.queryStatement(); } } @@ -1162,35 +1167,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 458; + this.state = 466; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 460; + this.state = 468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 459; + this.state = 467; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 462; + this.state = 470; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 464; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 463; + this.state = 471; this.ifNotExists(); } } - this.state = 466; + this.state = 474; this.tableNameCreate(); - this.state = 467; + this.state = 475; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 471; + this.state = 479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1232,36 +1237,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 468; + this.state = 476; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 469; + this.state = 477; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 470; + this.state = 478; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 476; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 473; + this.state = 481; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 474; + this.state = 482; this.match(ImpalaSqlParser.KW_BY); - this.state = 475; + this.state = 483; this.partitionedBy(); } } - this.state = 478; + this.state = 486; this.createCommonItem(); } } @@ -1287,95 +1292,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 488; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 482; + this.state = 490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 481; + this.state = 489; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 484; + this.state = 492; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 486; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 485; + this.state = 493; this.ifNotExists(); } } - this.state = 488; + this.state = 496; this.tableNameCreate(); - this.state = 506; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 489; + this.state = 497; this.match(ImpalaSqlParser.LPAREN); - this.state = 490; + this.state = 498; this.kuduTableElement(); - this.state = 495; + this.state = 503; 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 = 491; + this.state = 499; this.match(ImpalaSqlParser.COMMA); - this.state = 492; + this.state = 500; this.kuduTableElement(); } } } - this.state = 497; + this.state = 505; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 502; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 498; + this.state = 506; this.match(ImpalaSqlParser.COMMA); - this.state = 499; + this.state = 507; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 500; + this.state = 508; this.match(ImpalaSqlParser.KW_KEY); - this.state = 501; + this.state = 509; this.columnAliases(); } } - this.state = 504; + this.state = 512; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 513; + this.state = 521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 508; + this.state = 516; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 509; + this.state = 517; this.match(ImpalaSqlParser.KW_KEY); - this.state = 511; + this.state = 519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 510; + this.state = 518; this.columnAliases(); } } @@ -1383,56 +1388,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 518; + this.state = 526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 515; + this.state = 523; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 516; + this.state = 524; this.match(ImpalaSqlParser.KW_BY); - this.state = 517; + this.state = 525; this.kuduPartitionClause(); } } - this.state = 521; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 520; + this.state = 528; this.commentClause(); } } - this.state = 523; + this.state = 531; this.match(ImpalaSqlParser.KW_STORED); - this.state = 524; + this.state = 532; this.match(ImpalaSqlParser.KW_AS); - this.state = 525; + this.state = 533; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 528; + this.state = 536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 526; + this.state = 534; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 527; + this.state = 535; localContext._tblProp = this.properties(); } } - this.state = 532; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 530; + this.state = 538; this.match(ImpalaSqlParser.KW_AS); - this.state = 531; + this.state = 539; this.queryStatement(); } } @@ -1460,57 +1465,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 542; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 535; + this.state = 543; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 537; + this.state = 545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 536; + this.state = 544; this.ifNotExists(); } } - this.state = 539; + this.state = 547; this.viewNameCreate(); - this.state = 541; + this.state = 549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 540; + this.state = 548; this.viewColumns(); } } - this.state = 544; + this.state = 552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 543; + this.state = 551; this.commentClause(); } } - this.state = 548; + this.state = 556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 546; + this.state = 554; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 547; + this.state = 555; localContext._tblProp = this.properties(); } } - this.state = 550; + this.state = 558; this.match(ImpalaSqlParser.KW_AS); - this.state = 551; + this.state = 559; this.queryStatement(); } } @@ -1535,9 +1540,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 553; + this.state = 561; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 554; + this.state = 562; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1546,36 +1551,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 556; + this.state = 564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 555; + this.state = 563; this.ifNotExists(); } } - this.state = 558; + this.state = 566; this.databaseNameCreate(); - this.state = 560; + this.state = 568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 559; + this.state = 567; this.commentClause(); } break; } - this.state = 564; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 562; + this.state = 570; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 563; + this.state = 571; localContext._location = this.stringLiteral(); } } @@ -1602,11 +1607,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 566; + this.state = 574; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 567; + this.state = 575; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 568; + this.state = 576; localContext._name = this.identifier(); } } @@ -1631,168 +1636,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 570; + this.state = 578; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 572; + this.state = 580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 571; + this.state = 579; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 574; + this.state = 582; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 576; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 575; + this.state = 583; this.ifNotExists(); } } - this.state = 578; + this.state = 586; this.functionNameCreate(); - this.state = 591; + this.state = 599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 579; + this.state = 587; this.match(ImpalaSqlParser.LPAREN); - this.state = 588; + this.state = 596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 580; + this.state = 588; this.type_(0); - this.state = 585; + this.state = 593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 581; + this.state = 589; this.match(ImpalaSqlParser.COMMA); - this.state = 582; + this.state = 590; this.type_(0); } } - this.state = 587; + this.state = 595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 590; + this.state = 598; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 593; + this.state = 601; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 594; + this.state = 602; localContext._returnType = this.type_(0); - this.state = 597; + this.state = 605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 595; + this.state = 603; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 596; + this.state = 604; this.type_(0); } } - this.state = 599; + this.state = 607; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 600; + this.state = 608; this.match(ImpalaSqlParser.STRING); - this.state = 604; + this.state = 612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 601; + this.state = 609; this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 602; + this.state = 610; this.match(ImpalaSqlParser.EQ); - this.state = 603; + this.state = 611; this.match(ImpalaSqlParser.STRING); } } - this.state = 606; + this.state = 614; this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 607; + this.state = 615; this.match(ImpalaSqlParser.EQ); - this.state = 608; + this.state = 616; this.match(ImpalaSqlParser.STRING); - this.state = 609; + this.state = 617; this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 610; + this.state = 618; this.match(ImpalaSqlParser.EQ); - this.state = 611; + this.state = 619; this.match(ImpalaSqlParser.STRING); - this.state = 615; + this.state = 623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 612; + this.state = 620; this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 613; + this.state = 621; this.match(ImpalaSqlParser.EQ); - this.state = 614; + this.state = 622; this.match(ImpalaSqlParser.STRING); } } - this.state = 620; + this.state = 628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 617; + this.state = 625; this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 618; + this.state = 626; this.match(ImpalaSqlParser.EQ); - this.state = 619; + this.state = 627; this.match(ImpalaSqlParser.STRING); } } - this.state = 625; + this.state = 633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 622; + this.state = 630; this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 623; + this.state = 631; this.match(ImpalaSqlParser.EQ); - this.state = 624; + this.state = 632; this.match(ImpalaSqlParser.STRING); } } - this.state = 630; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 627; + this.state = 635; this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 628; + this.state = 636; this.match(ImpalaSqlParser.EQ); - this.state = 629; + this.state = 637; this.match(ImpalaSqlParser.STRING); } } @@ -1820,81 +1825,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 632; + this.state = 640; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 633; + this.state = 641; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 635; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 634; + this.state = 642; this.ifNotExists(); } } - this.state = 637; + this.state = 645; this.functionNameCreate(); - this.state = 650; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 638; + this.state = 646; this.match(ImpalaSqlParser.LPAREN); - this.state = 647; + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 639; + this.state = 647; this.type_(0); - this.state = 644; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 640; + this.state = 648; this.match(ImpalaSqlParser.COMMA); - this.state = 641; + this.state = 649; this.type_(0); } } - this.state = 646; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 649; + this.state = 657; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 654; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 652; + this.state = 660; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 653; + this.state = 661; localContext._returnType = this.type_(0); } } - this.state = 656; + this.state = 664; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 657; + this.state = 665; this.match(ImpalaSqlParser.STRING); - this.state = 658; + this.state = 666; this.match(ImpalaSqlParser.KW_SYMBOL); - this.state = 659; + this.state = 667; this.match(ImpalaSqlParser.EQ); - this.state = 660; + this.state = 668; localContext._symbol_ = this.stringLiteral(); } } @@ -1916,132 +1921,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 680; + this.state = 688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 662; + this.state = 670; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 663; + this.state = 671; this.alterUnSetOrSetViewTblProperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 664; + this.state = 672; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 665; + this.state = 673; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 666; + this.state = 674; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 667; + this.state = 675; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 668; + this.state = 676; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 669; + this.state = 677; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 670; + this.state = 678; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 671; + this.state = 679; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 672; + this.state = 680; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 673; + this.state = 681; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 674; + this.state = 682; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 675; + this.state = 683; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 676; + this.state = 684; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 677; + this.state = 685; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 678; + this.state = 686; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 679; + this.state = 687; this.alterTableOwner(); } break; @@ -2068,17 +2073,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 682; + this.state = 690; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 683; + this.state = 691; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 684; + this.state = 692; this.databaseNamePath(); - this.state = 685; + this.state = 693; this.match(ImpalaSqlParser.KW_SET); - this.state = 686; + this.state = 694; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 687; + this.state = 695; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2087,7 +2092,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 688; + this.state = 696; this.identifier(); } } @@ -2112,45 +2117,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 690; + this.state = 698; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 691; + this.state = 699; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 692; + this.state = 700; this.tableNamePath(); - this.state = 693; + this.state = 701; this.match(ImpalaSqlParser.KW_SET); - this.state = 694; + this.state = 702; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 695; + this.state = 703; this.match(ImpalaSqlParser.KW_STATS); - this.state = 696; + this.state = 704; this.columnNamePath(); - this.state = 697; + this.state = 705; this.match(ImpalaSqlParser.LPAREN); - this.state = 698; + this.state = 706; this.statsKey(); - this.state = 699; + this.state = 707; this.match(ImpalaSqlParser.EQ); - this.state = 700; + this.state = 708; this.stringLiteral(); - this.state = 706; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 701; + this.state = 709; this.match(ImpalaSqlParser.COMMA); - this.state = 702; + this.state = 710; this.statsKey(); - this.state = 703; + this.state = 711; this.match(ImpalaSqlParser.EQ); - this.state = 704; + this.state = 712; this.stringLiteral(); } } - this.state = 708; + this.state = 716; this.match(ImpalaSqlParser.RPAREN); } } @@ -2175,50 +2180,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 710; + this.state = 718; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 711; + this.state = 719; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 712; + this.state = 720; this.tableNamePath(); - this.state = 715; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 713; + this.state = 721; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 714; + this.state = 722; this.expression(); } } - this.state = 717; + this.state = 725; this.match(ImpalaSqlParser.KW_SET); - this.state = 728; + this.state = 736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 718; + this.state = 726; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 719; + this.state = 727; this.match(ImpalaSqlParser.KW_IN); - this.state = 720; + this.state = 728; this.stringLiteral(); - this.state = 725; + this.state = 733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 721; + this.state = 729; this.match(ImpalaSqlParser.KW_WITH); - this.state = 722; + this.state = 730; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 723; + this.state = 731; this.match(ImpalaSqlParser.EQ); - this.state = 724; + this.state = 732; this.number_(); } break; @@ -2228,7 +2233,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 727; + this.state = 735; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2257,17 +2262,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 730; + this.state = 738; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 731; + this.state = 739; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 732; + this.state = 740; this.tableNamePath(); - this.state = 733; + this.state = 741; this.match(ImpalaSqlParser.KW_CHANGE); - this.state = 734; + this.state = 742; this.columnNamePath(); - this.state = 735; + this.state = 743; this.columnSpecWithKudu(); } } @@ -2291,25 +2296,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 745; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 738; + this.state = 746; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 739; + this.state = 747; this.tableNamePath(); - this.state = 740; + this.state = 748; this.match(ImpalaSqlParser.KW_DROP); - this.state = 742; + this.state = 750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 741; + this.state = 749; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 744; + this.state = 752; this.columnNamePath(); } } @@ -2334,17 +2339,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 746; + this.state = 754; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 747; + this.state = 755; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 748; + this.state = 756; this.tableNamePath(); - this.state = 749; + this.state = 757; this.match(ImpalaSqlParser.KW_SET); - this.state = 750; + this.state = 758; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 751; + this.state = 759; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2353,7 +2358,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 752; + this.state = 760; this.identifier(); } } @@ -2379,31 +2384,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 762; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 755; + this.state = 763; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 756; + this.state = 764; this.tableNamePath(); - this.state = 762; + this.state = 770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 757; + this.state = 765; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 758; + this.state = 766; this.match(ImpalaSqlParser.KW_ADD); - this.state = 760; + this.state = 768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 759; + this.state = 767; this.ifNotExists(); } } @@ -2413,31 +2418,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 764; + this.state = 772; this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 765; + this.state = 773; this.match(ImpalaSqlParser.LPAREN); - this.state = 766; + this.state = 774; this.columnSpecWithKudu(); - this.state = 771; + this.state = 779; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 767; + this.state = 775; this.match(ImpalaSqlParser.COMMA); - this.state = 768; + this.state = 776; this.columnSpecWithKudu(); } } } - this.state = 773; + this.state = 781; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 774; + this.state = 782; this.match(ImpalaSqlParser.RPAREN); } } @@ -2462,27 +2467,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 776; + this.state = 784; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 777; + this.state = 785; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 778; + this.state = 786; this.tableNamePath(); - this.state = 779; + this.state = 787; this.match(ImpalaSqlParser.KW_ADD); - this.state = 780; + this.state = 788; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 782; + this.state = 790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 781; + this.state = 789; this.ifNotExists(); } } - this.state = 784; + this.state = 792; this.createColumnSpecWithKudu(); } } @@ -2506,34 +2511,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 794; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 787; + this.state = 795; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 788; + this.state = 796; this.tableNamePath(); - this.state = 789; + this.state = 797; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 791; + this.state = 799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 790; + this.state = 798; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 793; + this.state = 801; this.columnNamePath(); - this.state = 802; + this.state = 810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 794; + this.state = 802; this.match(ImpalaSqlParser.KW_SET); - this.state = 798; + this.state = 806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2541,15 +2546,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 795; + this.state = 803; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 796; + this.state = 804; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 797; + this.state = 805; this.stringLiteral(); } break; @@ -2560,9 +2565,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 800; + this.state = 808; this.match(ImpalaSqlParser.KW_DROP); - this.state = 801; + this.state = 809; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2592,51 +2597,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 804; + this.state = 812; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 805; + this.state = 813; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 806; + this.state = 814; this.tableNamePath(); - this.state = 807; + this.state = 815; this.match(ImpalaSqlParser.KW_ADD); - this.state = 809; + this.state = 817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 808; + this.state = 816; this.ifNotExists(); } } - this.state = 823; + this.state = 831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 811; + this.state = 819; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 812; + this.state = 820; this.expression(); - this.state = 815; + this.state = 823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 813; + this.state = 821; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 814; + this.state = 822; this.stringLiteral(); } } - this.state = 818; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 817; + this.state = 825; this.cacheSpec(); } } @@ -2645,11 +2650,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 820; + this.state = 828; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 821; + this.state = 829; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 822; + this.state = 830; this.kuduPartitionSpec(); } break; @@ -2679,35 +2684,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 825; + this.state = 833; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 826; + this.state = 834; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 827; + this.state = 835; this.tableNamePath(); - this.state = 830; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 828; + this.state = 836; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 829; + this.state = 837; this.expression(); } } - this.state = 832; + this.state = 840; this.match(ImpalaSqlParser.KW_SET); - this.state = 844; + this.state = 852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 833; + this.state = 841; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 834; + this.state = 842; this.fileFormat(); } } @@ -2715,11 +2720,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 835; + this.state = 843; this.match(ImpalaSqlParser.KW_ROW); - this.state = 836; + this.state = 844; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 837; + this.state = 845; this.rowFormat(); } } @@ -2727,9 +2732,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 838; + this.state = 846; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 839; + this.state = 847; this.stringLiteral(); } } @@ -2737,9 +2742,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 840; + this.state = 848; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 841; + this.state = 849; localContext._tblProp = this.properties(); } } @@ -2747,9 +2752,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 842; + this.state = 850; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 843; + this.state = 851; localContext._tblProp = this.properties(); } } @@ -2779,15 +2784,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 854; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 847; + this.state = 855; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 848; + this.state = 856; this.tableNamePath(); - this.state = 849; + this.state = 857; this.match(ImpalaSqlParser.KW_RECOVER); - this.state = 850; + this.state = 858; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2812,39 +2817,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 852; + this.state = 860; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 853; + this.state = 861; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 854; + this.state = 862; this.tableNamePath(); - this.state = 855; + this.state = 863; this.match(ImpalaSqlParser.KW_DROP); - this.state = 857; + this.state = 865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 856; + this.state = 864; this.ifExists(); } } - this.state = 867; + this.state = 875; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 859; + this.state = 867; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 860; + this.state = 868; this.expression(); - this.state = 862; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 861; + this.state = 869; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2853,11 +2858,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 864; + this.state = 872; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 865; + this.state = 873; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 866; + this.state = 874; this.kuduPartitionSpec(); } break; @@ -2887,25 +2892,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 869; + this.state = 877; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 870; + this.state = 878; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 871; + this.state = 879; this.viewNamePath(); - this.state = 873; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 872; + this.state = 880; this.viewColumns(); } } - this.state = 875; + this.state = 883; this.match(ImpalaSqlParser.KW_AS); - this.state = 876; + this.state = 884; this.queryStatement(); } } @@ -2929,17 +2934,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 878; + this.state = 886; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 879; + this.state = 887; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 880; + this.state = 888; this.viewNamePath(); - this.state = 881; + this.state = 889; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 882; + this.state = 890; this.match(ImpalaSqlParser.KW_TO); - this.state = 883; + this.state = 891; this.viewNamePath(); } } @@ -2964,17 +2969,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 885; + this.state = 893; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 886; + this.state = 894; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 887; + this.state = 895; this.viewNamePath(); - this.state = 888; + this.state = 896; this.match(ImpalaSqlParser.KW_SET); - this.state = 889; + this.state = 897; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 890; + this.state = 898; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2983,7 +2988,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 891; + this.state = 899; this.qualifiedName(); } } @@ -3007,17 +3012,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 893; + this.state = 901; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 894; + this.state = 902; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 895; + this.state = 903; this.tableNamePath(); - this.state = 896; + this.state = 904; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 897; + this.state = 905; this.match(ImpalaSqlParser.KW_TO); - this.state = 898; + this.state = 906; this.tableNamePath(); } } @@ -3042,13 +3047,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 908; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 901; + this.state = 909; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 902; + this.state = 910; this.viewNamePath(); - this.state = 903; + this.state = 911; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3057,9 +3062,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 904; + this.state = 912; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 905; + this.state = 913; localContext._tblProp = this.properties(); } } @@ -3084,29 +3089,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 915; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 909; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 908; + this.state = 916; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 912; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 911; + this.state = 919; this.ifExists(); } } - this.state = 914; + this.state = 922; this.tableNamePath(); } } @@ -3131,24 +3136,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 924; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 918; + this.state = 926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 917; + this.state = 925; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 921; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 920; + this.state = 928; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3160,7 +3165,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 923; + this.state = 931; this.qualifiedName(); } } @@ -3182,20 +3187,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 927; + this.state = 935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 933; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 926; + this.state = 934; this.computeIncrementalStats(); } break; @@ -3222,49 +3227,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 937; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 930; + this.state = 938; this.match(ImpalaSqlParser.KW_STATS); - this.state = 931; + this.state = 939; this.tableNamePath(); - this.state = 933; + this.state = 941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 932; + this.state = 940; this.columnAliases(); } break; } - this.state = 947; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 935; + this.state = 943; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 936; + this.state = 944; this.match(ImpalaSqlParser.KW_SYSTEM); - this.state = 937; + this.state = 945; this.match(ImpalaSqlParser.LPAREN); - this.state = 938; + this.state = 946; this.number_(); - this.state = 939; + this.state = 947; this.match(ImpalaSqlParser.RPAREN); - this.state = 945; + this.state = 953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 940; + this.state = 948; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 941; + this.state = 949; this.match(ImpalaSqlParser.LPAREN); - this.state = 942; + this.state = 950; this.number_(); - this.state = 943; + this.state = 951; this.match(ImpalaSqlParser.RPAREN); } } @@ -3295,26 +3300,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 949; + this.state = 957; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 950; + this.state = 958; this.match(ImpalaSqlParser.KW_INCREMENTAL); - this.state = 951; + this.state = 959; this.match(ImpalaSqlParser.KW_STATS); - this.state = 952; + this.state = 960; this.tableNamePath(); - this.state = 958; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 953; + this.state = 961; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 954; + this.state = 962; this.match(ImpalaSqlParser.LPAREN); - this.state = 955; + this.state = 963; this.expression(); - this.state = 956; + this.state = 964; this.match(ImpalaSqlParser.RPAREN); } } @@ -3339,48 +3344,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 966; + this.state = 974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 968; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 961; + this.state = 969; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 962; + this.state = 970; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 963; + this.state = 971; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 964; + this.state = 972; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 965; + this.state = 973; this.dropSchema(); } break; @@ -3407,9 +3412,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 976; this.match(ImpalaSqlParser.KW_DROP); - this.state = 969; + this.state = 977; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3418,24 +3423,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 971; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 970; + this.state = 978; this.ifExists(); } } - this.state = 973; + this.state = 981; this.databaseNamePath(); - this.state = 975; + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 974; + this.state = 982; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3470,21 +3475,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 985; this.match(ImpalaSqlParser.KW_DROP); - this.state = 978; + this.state = 986; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 980; + this.state = 988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 979; + this.state = 987; this.ifExists(); } } - this.state = 982; + this.state = 990; this.viewNamePath(); } } @@ -3509,28 +3514,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 984; + this.state = 992; this.match(ImpalaSqlParser.KW_DROP); - this.state = 985; + this.state = 993; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 987; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 986; + this.state = 994; this.ifExists(); } } - this.state = 989; + this.state = 997; this.tableNamePath(); - this.state = 991; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 990; + this.state = 998; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3558,30 +3563,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 993; + this.state = 1001; this.match(ImpalaSqlParser.KW_DROP); - this.state = 995; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 994; + this.state = 1002; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 997; + this.state = 1005; this.match(ImpalaSqlParser.KW_STATS); - this.state = 998; + this.state = 1006; this.tableNamePath(); - this.state = 1001; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 999; + this.state = 1007; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1000; + this.state = 1008; this.expression(); } } @@ -3609,66 +3614,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1003; + this.state = 1011; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1005; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1004; + this.state = 1012; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1007; + this.state = 1015; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1009; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1008; + this.state = 1016; this.ifExists(); } } - this.state = 1011; + this.state = 1019; this.functionNamePath(); - this.state = 1024; + this.state = 1032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1012; + this.state = 1020; this.match(ImpalaSqlParser.LPAREN); - this.state = 1021; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1013; + this.state = 1021; this.type_(0); - this.state = 1018; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1014; + this.state = 1022; this.match(ImpalaSqlParser.COMMA); - this.state = 1015; + this.state = 1023; this.type_(0); } } - this.state = 1020; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1023; + this.state = 1031; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3695,11 +3700,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1026; + this.state = 1034; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1027; + this.state = 1035; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1028; + this.state = 1036; localContext._name = this.identifier(); } } @@ -3721,20 +3726,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1032; + this.state = 1040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1030; + this.state = 1038; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1031; + this.state = 1039; this.grant(); } break; @@ -3760,17 +3765,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1034; + this.state = 1042; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1035; + this.state = 1043; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1036; + this.state = 1044; this.identifier(); - this.state = 1037; + this.state = 1045; this.match(ImpalaSqlParser.KW_TO); - this.state = 1038; + this.state = 1046; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1039; + this.state = 1047; this.identifier(); } } @@ -3795,27 +3800,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1041; + this.state = 1049; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1042; + this.state = 1050; this.privilege(); - this.state = 1043; + this.state = 1051; this.match(ImpalaSqlParser.KW_ON); - this.state = 1044; + this.state = 1052; this.objectType(); - this.state = 1046; + this.state = 1054; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1045; + this.state = 1053; this.qualifiedName(); } } - this.state = 1048; + this.state = 1056; this.match(ImpalaSqlParser.KW_TO); - this.state = 1049; + this.state = 1057; localContext._grantee = this.principal(); } } @@ -3837,20 +3842,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1053; + this.state = 1061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1051; + this.state = 1059; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1052; + this.state = 1060; this.revoke(); } break; @@ -3876,17 +3881,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 1063; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1056; + this.state = 1064; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1057; + this.state = 1065; this.identifier(); - this.state = 1058; + this.state = 1066; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1059; + this.state = 1067; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1060; + this.state = 1068; this.identifier(); } } @@ -3911,62 +3916,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1070; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1066; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1063; + this.state = 1071; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1064; + this.state = 1072; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1065; + this.state = 1073; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1068; + this.state = 1076; this.privilege(); - this.state = 1069; + this.state = 1077; this.match(ImpalaSqlParser.KW_ON); - this.state = 1070; + this.state = 1078; this.objectType(); - this.state = 1072; + this.state = 1080; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1071; + this.state = 1079; this.qualifiedName(); } } - this.state = 1074; + this.state = 1082; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1080; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1075; + this.state = 1083; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1077; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1076; + this.state = 1084; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1079; + this.state = 1087; this.identifier(); } break; @@ -3994,19 +3999,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1083; + this.state = 1091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1082; + this.state = 1090; this.with_(); } } - this.state = 1085; + this.state = 1093; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1086; + this.state = 1094; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4015,61 +4020,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1087; + this.state = 1095; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1090; + this.state = 1098; this.tableNamePath(); - this.state = 1092; + this.state = 1100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1091; + this.state = 1099; this.columnAliases(); } break; } - this.state = 1106; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1094; + this.state = 1102; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1095; + this.state = 1103; this.match(ImpalaSqlParser.LPAREN); - this.state = 1096; + this.state = 1104; this.expression(); - this.state = 1101; + this.state = 1109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1097; + this.state = 1105; this.match(ImpalaSqlParser.COMMA); - this.state = 1098; + this.state = 1106; this.expression(); } } - this.state = 1103; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1104; + this.state = 1112; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1108; + this.state = 1116; this.queryStatement(); } } @@ -4091,20 +4096,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1112; + this.state = 1120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1110; + this.state = 1118; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1111; + this.state = 1119; this.deleteTableRef(); } break; @@ -4131,29 +4136,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1114; + this.state = 1122; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1116; + this.state = 1124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1115; + this.state = 1123; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1118; + this.state = 1126; this.tableNamePath(); - this.state = 1121; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1119; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1120; - this.booleanExpression(0); + this.state = 1127; + this.whereClause(); } } @@ -4180,67 +4183,65 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1130; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1124; + this.state = 1131; this.tableNamePath(); - this.state = 1129; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1126; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1125; + this.state = 1132; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1128; + this.state = 1135; this.identifier(); } } - this.state = 1131; + this.state = 1138; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1140; + this.state = 1147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1132; + this.state = 1139; this.relation(0); - this.state = 1137; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1133; + this.state = 1140; this.match(ImpalaSqlParser.COMMA); - this.state = 1134; + this.state = 1141; this.relation(0); } } - this.state = 1139; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1144; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1142; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1143; - this.booleanExpression(0); + this.state = 1149; + this.whereClause(); } } @@ -4267,51 +4268,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1146; + this.state = 1152; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1147; + this.state = 1153; this.tableNamePath(); - this.state = 1148; + this.state = 1154; this.match(ImpalaSqlParser.KW_SET); - this.state = 1149; + this.state = 1155; this.assignmentList(); - this.state = 1159; + this.state = 1165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1150; + this.state = 1156; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1151; + this.state = 1157; this.relation(0); - this.state = 1156; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1152; + this.state = 1158; this.match(ImpalaSqlParser.COMMA); - this.state = 1153; + this.state = 1159; this.relation(0); } } - this.state = 1158; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1163; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1161; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1162; - this.booleanExpression(0); + this.state = 1167; + this.whereClause(); } } @@ -4338,33 +4337,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1165; + this.state = 1170; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1166; + this.state = 1171; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1168; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1167; + this.state = 1172; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1170; + this.state = 1175; this.tableNamePath(); - this.state = 1172; + this.state = 1177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1171; + this.state = 1176; this.columnAliases(); } break; } - this.state = 1174; + this.state = 1179; this.queryStatement(); } } @@ -4386,90 +4385,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1188; + this.state = 1193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1176; + this.state = 1181; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1177; + this.state = 1182; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1178; + this.state = 1183; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1179; + this.state = 1184; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1180; + this.state = 1185; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1181; + this.state = 1186; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1182; + this.state = 1187; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1183; + this.state = 1188; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1184; + this.state = 1189; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1185; + this.state = 1190; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1186; + this.state = 1191; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1187; + this.state = 1192; this.showSchemas(); } break; @@ -4496,9 +4495,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1190; + this.state = 1195; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1191; + this.state = 1196; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4507,36 +4506,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1193; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1192; + this.state = 1197; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1195; - localContext._pattern = this.stringLiteral(); this.state = 1200; + localContext._pattern = this.stringLiteral(); + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1196; + this.state = 1201; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1197; + this.state = 1202; this.stringLiteral(); } } - this.state = 1202; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4566,52 +4565,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1205; + this.state = 1210; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1206; + this.state = 1211; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1209; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1207; + this.state = 1212; this.match(ImpalaSqlParser.KW_IN); - this.state = 1208; + this.state = 1213; this.tableNamePath(); } } - this.state = 1222; + this.state = 1227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1212; + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1211; + this.state = 1216; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1214; - localContext._pattern = this.stringLiteral(); this.state = 1219; + localContext._pattern = this.stringLiteral(); + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1215; + this.state = 1220; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1216; + this.state = 1221; this.stringLiteral(); } } - this.state = 1221; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4641,14 +4640,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1224; + this.state = 1229; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1225; + this.state = 1230; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4660,50 +4659,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1228; + this.state = 1233; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1231; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1229; + this.state = 1234; this.match(ImpalaSqlParser.KW_IN); - this.state = 1230; + this.state = 1235; this.databaseNamePath(); } } - this.state = 1244; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1234; + this.state = 1239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1233; + this.state = 1238; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1236; - localContext._pattern = this.stringLiteral(); this.state = 1241; + localContext._pattern = this.stringLiteral(); + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1237; + this.state = 1242; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1238; + this.state = 1243; this.stringLiteral(); } } - this.state = 1243; + this.state = 1248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4732,13 +4731,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1246; + this.state = 1251; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1247; + this.state = 1252; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1248; + this.state = 1253; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1249; + this.state = 1254; this.tableNamePath(); } } @@ -4762,13 +4761,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1251; + this.state = 1256; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1252; + this.state = 1257; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1258; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1254; + this.state = 1259; this.viewNamePath(); } } @@ -4792,13 +4791,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1256; + this.state = 1261; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1262; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1258; + this.state = 1263; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1259; + this.state = 1264; this.tableNamePath(); } } @@ -4822,13 +4821,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1261; + this.state = 1266; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1262; + this.state = 1267; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1263; + this.state = 1268; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1264; + this.state = 1269; this.tableNamePath(); } } @@ -4853,21 +4852,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1271; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1268; + this.state = 1273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1267; + this.state = 1272; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1270; + this.state = 1275; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1271; + this.state = 1276; this.tableNamePath(); } } @@ -4892,38 +4891,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1278; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1274; + this.state = 1279; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1275; + this.state = 1280; this.match(ImpalaSqlParser.KW_IN); - this.state = 1276; + this.state = 1281; this.tableNamePath(); - this.state = 1286; + this.state = 1291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1277; + this.state = 1282; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1278; + this.state = 1283; this.match(ImpalaSqlParser.LPAREN); - this.state = 1279; + this.state = 1284; this.expression(); - this.state = 1282; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1280; + this.state = 1285; this.match(ImpalaSqlParser.COMMA); - this.state = 1281; + this.state = 1286; this.expression(); } } - this.state = 1284; + this.state = 1289; this.match(ImpalaSqlParser.RPAREN); } } @@ -4951,19 +4950,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1288; + this.state = 1293; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1290; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1289; + this.state = 1294; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1292; + this.state = 1297; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4987,15 +4986,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1299; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1295; + this.state = 1300; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1296; + this.state = 1301; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1297; + this.state = 1302; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1298; + this.state = 1303; this.identifier(); } } @@ -5018,38 +5017,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1314; + this.state = 1319; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1300; + this.state = 1305; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1301; + this.state = 1306; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1302; + this.state = 1307; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1303; + this.state = 1308; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1304; + this.state = 1309; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1305; + this.state = 1310; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5058,16 +5057,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1306; + this.state = 1311; this.identifier(); - this.state = 1312; + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1307; + this.state = 1312; this.match(ImpalaSqlParser.KW_ON); - this.state = 1308; + this.state = 1313; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5076,12 +5075,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1310; + this.state = 1315; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1309; + this.state = 1314; this.qualifiedName(); } } @@ -5114,11 +5113,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1316; + this.state = 1321; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1317; + this.state = 1322; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1318; + this.state = 1323; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5127,23 +5126,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1319; + this.state = 1324; this.identifier(); - this.state = 1325; + this.state = 1330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1320; + this.state = 1325; this.match(ImpalaSqlParser.KW_ON); - this.state = 1321; + this.state = 1326; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1323; + this.state = 1328; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1322; + this.state = 1327; this.databaseNamePath(); } } @@ -5174,11 +5173,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1332; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1328; + this.state = 1333; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1329; + this.state = 1334; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5187,23 +5186,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1330; + this.state = 1335; this.identifier(); - this.state = 1336; + this.state = 1341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1331; + this.state = 1336; this.match(ImpalaSqlParser.KW_ON); - this.state = 1332; + this.state = 1337; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1334; + 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1333; + this.state = 1338; this.tableNamePath(); } } @@ -5234,11 +5233,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1338; + this.state = 1343; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1339; + this.state = 1344; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1340; + this.state = 1345; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5247,23 +5246,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1346; this.identifier(); - this.state = 1347; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1342; + this.state = 1347; this.match(ImpalaSqlParser.KW_ON); - this.state = 1343; + this.state = 1348; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1345; + this.state = 1350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1344; + this.state = 1349; this.columnNamePath(); } break; @@ -5291,27 +5290,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1352; + this.state = 1357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1354; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1350; + this.state = 1355; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1356; this.addColumnComments(); } break; @@ -5337,29 +5336,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1354; + this.state = 1359; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1355; + this.state = 1360; this.match(ImpalaSqlParser.KW_ON); - this.state = 1356; + this.state = 1361; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1357; + this.state = 1362; this.databaseNamePath(); - this.state = 1358; + this.state = 1363; this.match(ImpalaSqlParser.KW_IS); - this.state = 1361; + this.state = 1366; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1359; + this.state = 1364; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1360; + this.state = 1365; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5388,29 +5387,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1368; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1364; + this.state = 1369; this.match(ImpalaSqlParser.KW_ON); - this.state = 1365; + this.state = 1370; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1366; + this.state = 1371; this.tableNamePath(); - this.state = 1367; + this.state = 1372; this.match(ImpalaSqlParser.KW_IS); - this.state = 1370; + this.state = 1375; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1368; + this.state = 1373; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1369; + this.state = 1374; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5439,29 +5438,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1372; + this.state = 1377; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1373; + this.state = 1378; this.match(ImpalaSqlParser.KW_ON); - this.state = 1374; + this.state = 1379; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1375; + this.state = 1380; this.columnNamePath(); - this.state = 1376; + this.state = 1381; this.match(ImpalaSqlParser.KW_IS); - this.state = 1379; + this.state = 1384; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1377; + this.state = 1382; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1378; + this.state = 1383; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5490,9 +5489,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1381; + this.state = 1386; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1382; + this.state = 1387; this.sqlStatement(); } } @@ -5516,14 +5515,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1389; this.match(ImpalaSqlParser.KW_SET); - this.state = 1390; + this.state = 1395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1385; + this.state = 1390; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5566,11 +5565,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1386; + this.state = 1391; this.identifier(); - this.state = 1387; + this.state = 1392; this.match(ImpalaSqlParser.EQ); - this.state = 1388; + this.state = 1393; this.expression(); } break; @@ -5629,23 +5628,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1397; this.match(ImpalaSqlParser.COLON); - this.state = 1393; + this.state = 1398; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1394; + this.state = 1399; this.match(ImpalaSqlParser.LPAREN); - this.state = 1404; + this.state = 1409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1396; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1395; + this.state = 1400; this.stringLiteral(); } } @@ -5654,16 +5653,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1398; + this.state = 1403; this.stringLiteral(); - this.state = 1401; + this.state = 1406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1399; + this.state = 1404; this.match(ImpalaSqlParser.COMMA); - this.state = 1400; + this.state = 1405; this.expression(); } } @@ -5672,12 +5671,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1403; + this.state = 1408; this.expression(); } break; } - this.state = 1406; + this.state = 1411; this.match(ImpalaSqlParser.RPAREN); } } @@ -5701,11 +5700,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1413; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1409; + this.state = 1414; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1410; + this.state = 1415; this.tableNamePath(); } } @@ -5730,54 +5729,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1412; + this.state = 1417; this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1413; + this.state = 1418; this.match(ImpalaSqlParser.KW_DATA); - this.state = 1414; + this.state = 1419; this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1415; + this.state = 1420; this.match(ImpalaSqlParser.STRING); - this.state = 1417; + this.state = 1422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1416; + this.state = 1421; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1419; + this.state = 1424; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1420; + this.state = 1425; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1421; + this.state = 1426; this.tableNamePath(); - this.state = 1431; + this.state = 1436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1422; + this.state = 1427; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1423; + this.state = 1428; this.match(ImpalaSqlParser.LPAREN); - this.state = 1424; + this.state = 1429; this.expression(); - this.state = 1427; + this.state = 1432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1425; + this.state = 1430; this.match(ImpalaSqlParser.COMMA); - this.state = 1426; + this.state = 1431; this.expression(); } } - this.state = 1429; + this.state = 1434; this.match(ImpalaSqlParser.RPAREN); } } @@ -5802,27 +5801,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1436; + this.state = 1441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1433; + this.state = 1438; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1434; + this.state = 1439; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1435; + this.state = 1440; this.refreshFunction(); } break; @@ -5850,40 +5849,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1438; + this.state = 1443; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1439; + this.state = 1444; this.tableNamePath(); - this.state = 1452; + this.state = 1457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1440; + this.state = 1445; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1441; + this.state = 1446; this.match(ImpalaSqlParser.LPAREN); - this.state = 1442; - this.expression(); this.state = 1447; + this.expression(); + this.state = 1452; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1443; + this.state = 1448; this.match(ImpalaSqlParser.COMMA); - this.state = 1444; + this.state = 1449; this.expression(); } } } - this.state = 1449; + this.state = 1454; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1450; + this.state = 1455; this.match(ImpalaSqlParser.RPAREN); } } @@ -5910,9 +5909,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1459; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1455; + this.state = 1460; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5936,11 +5935,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1462; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1458; + this.state = 1463; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1459; + this.state = 1464; this.functionNamePath(); } } @@ -5964,9 +5963,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1466; this.match(ImpalaSqlParser.KW_IF); - this.state = 1462; + this.state = 1467; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5990,11 +5989,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1469; this.match(ImpalaSqlParser.KW_IF); - this.state = 1465; + this.state = 1470; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1466; + this.state = 1471; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6018,7 +6017,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1473; this.qualifiedName(); } } @@ -6042,7 +6041,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1475; this.qualifiedName(); } } @@ -6066,7 +6065,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1477; this.qualifiedName(); } } @@ -6090,7 +6089,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1474; + this.state = 1479; this.qualifiedName(); } } @@ -6114,7 +6113,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1481; this.qualifiedName(); } } @@ -6138,7 +6137,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1478; + this.state = 1483; this.qualifiedName(); } } @@ -6163,23 +6162,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1480; - this.identifier(); this.state = 1485; + this.identifier(); + this.state = 1490; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1481; + this.state = 1486; this.match(ImpalaSqlParser.DOT); - this.state = 1482; + this.state = 1487; this.identifier(); } } } - this.state = 1487; + this.state = 1492; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6206,23 +6205,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1488; - this.identifier(); this.state = 1493; + this.identifier(); + this.state = 1498; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1489; + this.state = 1494; this.match(ImpalaSqlParser.DOT); - this.state = 1490; + this.state = 1495; this.identifier(); } } } - this.state = 1495; + this.state = 1500; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6246,20 +6245,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1498; + this.state = 1503; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1496; + this.state = 1501; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1497; + this.state = 1502; this.qualifiedName(); } break; @@ -6283,20 +6282,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1502; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1505; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1501; + this.state = 1506; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6318,24 +6317,48 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public columnName(): ColumnNameContext { + let localContext = new ColumnNameContext(this.context, this.state); + this.enterRule(localContext, 194, ImpalaSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1509; + this.qualifiedName(); + } + } + 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 tableOrViewPath(): TableOrViewPathContext { let localContext = new TableOrViewPathContext(this.context, this.state); - this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); + this.enterRule(localContext, 196, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1506; + this.state = 1513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1504; + this.state = 1511; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1505; + this.state = 1512; this.viewNamePath(); } break; @@ -6357,112 +6380,112 @@ export class ImpalaSqlParser extends SQLParserBase { } public createCommonItem(): CreateCommonItemContext { let localContext = new CreateCommonItemContext(this.context, this.state); - this.enterRule(localContext, 196, ImpalaSqlParser.RULE_createCommonItem); + this.enterRule(localContext, 198, ImpalaSqlParser.RULE_createCommonItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1508; + this.state = 1515; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1509; + this.state = 1516; this.match(ImpalaSqlParser.KW_BY); - this.state = 1510; + this.state = 1517; this.columnAliases(); } } - this.state = 1514; + this.state = 1521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1513; + this.state = 1520; this.commentClause(); } break; } - this.state = 1519; + this.state = 1526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1516; + this.state = 1523; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1517; + this.state = 1524; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1518; + this.state = 1525; this.rowFormat(); } } - this.state = 1524; + this.state = 1531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1521; + this.state = 1528; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1522; + this.state = 1529; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1523; + this.state = 1530; localContext._serdProp = this.properties(); } break; } - this.state = 1529; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1526; + this.state = 1533; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1527; + this.state = 1534; this.match(ImpalaSqlParser.KW_AS); - this.state = 1528; + this.state = 1535; this.fileFormat(); } } - this.state = 1533; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1531; + this.state = 1538; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1532; + this.state = 1539; localContext._location = this.stringLiteral(); } } - this.state = 1545; + this.state = 1552; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1535; + this.state = 1542; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1536; + this.state = 1543; this.match(ImpalaSqlParser.KW_IN); - this.state = 1537; + this.state = 1544; localContext._cacheName = this.qualifiedName(); - this.state = 1542; + this.state = 1549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1538; + this.state = 1545; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1539; + this.state = 1546; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1540; + this.state = 1547; this.match(ImpalaSqlParser.EQ); - this.state = 1541; + this.state = 1548; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6471,7 +6494,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1544; + this.state = 1551; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6509,14 +6532,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1549; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1547; + this.state = 1554; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1548; + this.state = 1555; localContext._tblProp = this.properties(); } } @@ -6539,26 +6562,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 198, ImpalaSqlParser.RULE_assignmentList); + this.enterRule(localContext, 200, ImpalaSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1551; + this.state = 1558; this.assignmentItem(); - this.state = 1556; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1552; + this.state = 1559; this.match(ImpalaSqlParser.COMMA); - this.state = 1553; + this.state = 1560; this.assignmentItem(); } } - this.state = 1558; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6580,15 +6603,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentItem(): AssignmentItemContext { let localContext = new AssignmentItemContext(this.context, this.state); - this.enterRule(localContext, 200, ImpalaSqlParser.RULE_assignmentItem); + this.enterRule(localContext, 202, ImpalaSqlParser.RULE_assignmentItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 1559; + this.state = 1566; this.qualifiedName(); - this.state = 1560; + this.state = 1567; this.match(ImpalaSqlParser.EQ); - this.state = 1561; + this.state = 1568; this.expression(); } } @@ -6608,48 +6631,48 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumns(): ViewColumnsContext { let localContext = new ViewColumnsContext(this.context, this.state); - this.enterRule(localContext, 202, ImpalaSqlParser.RULE_viewColumns); + this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1570; this.match(ImpalaSqlParser.LPAREN); - this.state = 1565; + this.state = 1572; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1564; + this.state = 1571; this.viewColumnItem(); } } - this.state = 1573; + this.state = 1580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1567; + this.state = 1574; this.match(ImpalaSqlParser.COMMA); - this.state = 1569; + this.state = 1576; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1568; + this.state = 1575; this.viewColumnItem(); } } } } - this.state = 1575; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1576; + this.state = 1583; this.match(ImpalaSqlParser.RPAREN); } } @@ -6669,19 +6692,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumnItem(): ViewColumnItemContext { let localContext = new ViewColumnItemContext(this.context, this.state); - this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumnItem); + this.enterRule(localContext, 206, ImpalaSqlParser.RULE_viewColumnItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1585; this.columnNamePathCreate(); - this.state = 1580; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1579; + this.state = 1586; this.commentClause(); } } @@ -6704,22 +6727,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryStatement(): QueryStatementContext { let localContext = new QueryStatementContext(this.context, this.state); - this.enterRule(localContext, 206, ImpalaSqlParser.RULE_queryStatement); + this.enterRule(localContext, 208, ImpalaSqlParser.RULE_queryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1582; + this.state = 1589; this.with_(); } } - this.state = 1585; + this.state = 1592; this.queryNoWith(); } } @@ -6739,28 +6762,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public with_(): WithContext { let localContext = new WithContext(this.context, this.state); - this.enterRule(localContext, 208, ImpalaSqlParser.RULE_with); + this.enterRule(localContext, 210, ImpalaSqlParser.RULE_with); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1594; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1588; + this.state = 1595; this.namedQuery(); - this.state = 1593; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1589; + this.state = 1596; this.match(ImpalaSqlParser.COMMA); - this.state = 1590; + this.state = 1597; this.namedQuery(); } } - this.state = 1595; + this.state = 1602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6782,104 +6805,104 @@ export class ImpalaSqlParser extends SQLParserBase { } public constraintSpecification(): ConstraintSpecificationContext { let localContext = new ConstraintSpecificationContext(this.context, this.state); - this.enterRule(localContext, 210, ImpalaSqlParser.RULE_constraintSpecification); + this.enterRule(localContext, 212, ImpalaSqlParser.RULE_constraintSpecification); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1603; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1597; + this.state = 1604; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1598; + this.state = 1605; this.columnAliases(); - this.state = 1600; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1599; + this.state = 1606; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1605; + this.state = 1612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1602; + this.state = 1609; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: { - this.state = 1603; + this.state = 1610; this.match(ImpalaSqlParser.COMMA); - this.state = 1604; + this.state = 1611; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; } - this.state = 1610; + this.state = 1617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1607; + this.state = 1614; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1608; + this.state = 1615; this.match(ImpalaSqlParser.COMMA); - this.state = 1609; + this.state = 1616; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1624; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 263) { { - this.state = 1615; + this.state = 1622; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1612; + this.state = 1619; this.match(ImpalaSqlParser.COMMA); - this.state = 1613; + this.state = 1620; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1614; + this.state = 1621; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1621; + this.state = 1628; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1617; + this.state = 1624; this.match(ImpalaSqlParser.COMMA); - this.state = 1618; + this.state = 1625; this.foreignKeySpecification(); } } } - this.state = 1623; + this.state = 1630; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); } @@ -6904,49 +6927,49 @@ export class ImpalaSqlParser extends SQLParserBase { } public foreignKeySpecification(): ForeignKeySpecificationContext { let localContext = new ForeignKeySpecificationContext(this.context, this.state); - this.enterRule(localContext, 212, ImpalaSqlParser.RULE_foreignKeySpecification); + this.enterRule(localContext, 214, ImpalaSqlParser.RULE_foreignKeySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1626; + this.state = 1633; this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1627; + this.state = 1634; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1628; + this.state = 1635; this.columnAliases(); - this.state = 1629; + this.state = 1636; this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1630; + this.state = 1637; this.tableNamePath(); - this.state = 1631; + this.state = 1638; this.columnAliases(); - this.state = 1633; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1632; + this.state = 1639; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1636; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 1635; + this.state = 1642; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1639; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226) { { - this.state = 1638; + this.state = 1645; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6969,22 +6992,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpec(): ColumnSpecContext { let localContext = new ColumnSpecContext(this.context, this.state); - this.enterRule(localContext, 214, ImpalaSqlParser.RULE_columnSpec); + this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1648; this.columnNamePath(); - this.state = 1642; + this.state = 1649; this.type_(0); - this.state = 1645; + this.state = 1652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1643; + this.state = 1650; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1644; + this.state = 1651; this.stringLiteral(); } break; @@ -7007,21 +7030,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnDefinition(): ColumnDefinitionContext { let localContext = new ColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnDefinition); + this.enterRule(localContext, 218, ImpalaSqlParser.RULE_columnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1654; this.columnNamePathCreate(); - this.state = 1648; + this.state = 1655; localContext._colType = this.type_(0); - this.state = 1650; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1649; + this.state = 1656; this.commentClause(); } } @@ -7044,11 +7067,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduTableElement(): KuduTableElementContext { let localContext = new KuduTableElementContext(this.context, this.state); - this.enterRule(localContext, 218, ImpalaSqlParser.RULE_kuduTableElement); + this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduTableElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1659; this.kuduColumnDefinition(); } } @@ -7068,60 +7091,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduColumnDefinition(): KuduColumnDefinitionContext { let localContext = new KuduColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduColumnDefinition); + this.enterRule(localContext, 222, ImpalaSqlParser.RULE_kuduColumnDefinition); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1661; this.columnNamePathCreate(); - this.state = 1655; + this.state = 1662; localContext._colType = this.type_(0); - this.state = 1663; + this.state = 1670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1656; + this.state = 1663; this.kuduAttributes(); - this.state = 1660; + this.state = 1667; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1657; + this.state = 1664; this.kuduAttributes(); } } } - this.state = 1662; + this.state = 1669; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } } } - this.state = 1666; + this.state = 1673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1665; + this.state = 1672; this.commentClause(); } } - this.state = 1670; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1668; + this.state = 1675; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1669; + this.state = 1676; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7144,13 +7167,13 @@ export class ImpalaSqlParser extends SQLParserBase { } public commentClause(): CommentClauseContext { let localContext = new CommentClauseContext(this.context, this.state); - this.enterRule(localContext, 222, ImpalaSqlParser.RULE_commentClause); + this.enterRule(localContext, 224, ImpalaSqlParser.RULE_commentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1672; + this.state = 1679; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1673; + this.state = 1680; localContext._comment = this.stringLiteral(); } } @@ -7170,34 +7193,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpecWithKudu(): ColumnSpecWithKuduContext { let localContext = new ColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 224, ImpalaSqlParser.RULE_columnSpecWithKudu); + this.enterRule(localContext, 226, ImpalaSqlParser.RULE_columnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1682; this.columnSpec(); - this.state = 1683; + this.state = 1690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1676; + this.state = 1683; this.kuduAttributes(); - this.state = 1680; + this.state = 1687; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1677; + this.state = 1684; this.kuduAttributes(); } } } - this.state = 1682; + this.state = 1689; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -7222,48 +7245,48 @@ export class ImpalaSqlParser extends SQLParserBase { } public createColumnSpecWithKudu(): CreateColumnSpecWithKuduContext { let localContext = new CreateColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 226, ImpalaSqlParser.RULE_createColumnSpecWithKudu); + this.enterRule(localContext, 228, ImpalaSqlParser.RULE_createColumnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1692; this.columnNamePathCreate(); - this.state = 1686; + this.state = 1693; this.type_(0); - this.state = 1689; + this.state = 1696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1687; + this.state = 1694; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1688; + this.state = 1695; this.stringLiteral(); } break; } - this.state = 1698; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1691; + this.state = 1698; this.kuduAttributes(); - this.state = 1695; + this.state = 1702; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1692; + this.state = 1699; this.kuduAttributes(); } } } - this.state = 1697; + this.state = 1704; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } @@ -7288,28 +7311,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduAttributes(): KuduAttributesContext { let localContext = new KuduAttributesContext(this.context, this.state); - this.enterRule(localContext, 228, ImpalaSqlParser.RULE_kuduAttributes); + this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduAttributes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1712; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1701; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1700; + this.state = 1707; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1703; + this.state = 1710; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7318,7 +7341,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1704; + this.state = 1711; this.kuduStorageAttr(); } break; @@ -7343,44 +7366,44 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduStorageAttr(): KuduStorageAttrContext { let localContext = new KuduStorageAttrContext(this.context, this.state); - this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduStorageAttr); + this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1715; + this.state = 1722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1714; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1708; + this.state = 1715; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1709; + this.state = 1716; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1710; + this.state = 1717; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1711; + this.state = 1718; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1712; + this.state = 1719; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1713; + this.state = 1720; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1714; + this.state = 1721; this.number_(); } break; @@ -7404,12 +7427,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public statsKey(): StatsKeyContext { let localContext = new StatsKeyContext(this.context, this.state); - this.enterRule(localContext, 232, ImpalaSqlParser.RULE_statsKey); + this.enterRule(localContext, 234, ImpalaSqlParser.RULE_statsKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1724; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7436,12 +7459,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 234, ImpalaSqlParser.RULE_fileFormat); + this.enterRule(localContext, 236, ImpalaSqlParser.RULE_fileFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1726; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7468,45 +7491,45 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionClause(): KuduPartitionClauseContext { let localContext = new KuduPartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 236, ImpalaSqlParser.RULE_kuduPartitionClause); + this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionClause); let _la: number; try { let alternative: number; - this.state = 1734; + this.state = 1741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1721; + this.state = 1728; this.hashClause(); - this.state = 1726; + this.state = 1733; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1722; + this.state = 1729; this.match(ImpalaSqlParser.COMMA); - this.state = 1723; + this.state = 1730; this.hashClause(); } } } - this.state = 1728; + this.state = 1735; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1731; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1729; + this.state = 1736; this.match(ImpalaSqlParser.COMMA); - this.state = 1730; + this.state = 1737; this.rangeClause(); } } @@ -7517,7 +7540,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1733; + this.state = 1740; this.rangeClause(); } break; @@ -7541,26 +7564,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public hashClause(): HashClauseContext { let localContext = new HashClauseContext(this.context, this.state); - this.enterRule(localContext, 238, ImpalaSqlParser.RULE_hashClause); + this.enterRule(localContext, 240, ImpalaSqlParser.RULE_hashClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1736; + this.state = 1743; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1738; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1737; + this.state = 1744; this.columnAliases(); } } - this.state = 1740; + this.state = 1747; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1741; + this.state = 1748; this.number_(); } } @@ -7580,52 +7603,52 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeClause(): RangeClauseContext { let localContext = new RangeClauseContext(this.context, this.state); - this.enterRule(localContext, 240, ImpalaSqlParser.RULE_rangeClause); + this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1750; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1745; + this.state = 1752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1744; + this.state = 1751; this.columnAliases(); } break; } - this.state = 1747; + this.state = 1754; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1748; + this.state = 1755; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1749; + this.state = 1756; this.kuduPartitionSpec(); - this.state = 1755; + this.state = 1762; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1750; + this.state = 1757; this.match(ImpalaSqlParser.COMMA); - this.state = 1751; + this.state = 1758; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1752; + this.state = 1759; this.kuduPartitionSpec(); } } } - this.state = 1757; + this.state = 1764; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1758; + this.state = 1765; this.match(ImpalaSqlParser.RPAREN); } } @@ -7645,20 +7668,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionSpec(): KuduPartitionSpecContext { let localContext = new KuduPartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 242, ImpalaSqlParser.RULE_kuduPartitionSpec); + this.enterRule(localContext, 244, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1775; + this.state = 1782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1760; + this.state = 1767; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1761; + this.state = 1768; this.partitionCol(); - this.state = 1762; + this.state = 1769; this.expression(); } break; @@ -7734,28 +7757,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1774; 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)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1764; + this.state = 1771; this.expression(); - this.state = 1765; + this.state = 1772; this.rangeOperator(); } } - this.state = 1769; + this.state = 1776; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1773; + this.state = 1780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1770; + this.state = 1777; this.rangeOperator(); - this.state = 1771; + this.state = 1778; this.expression(); } break; @@ -7782,32 +7805,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public cacheSpec(): CacheSpecContext { let localContext = new CacheSpecContext(this.context, this.state); - this.enterRule(localContext, 244, ImpalaSqlParser.RULE_cacheSpec); + this.enterRule(localContext, 246, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1787; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1777; + this.state = 1784; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1778; + this.state = 1785; this.match(ImpalaSqlParser.KW_IN); - this.state = 1779; + this.state = 1786; this.identifier(); - this.state = 1784; + this.state = 1791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1780; + this.state = 1787; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1781; + this.state = 1788; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1782; + this.state = 1789; this.match(ImpalaSqlParser.EQ); - this.state = 1783; + this.state = 1790; this.number_(); } break; @@ -7817,7 +7840,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1786; + this.state = 1793; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7841,9 +7864,9 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeOperator(): RangeOperatorContext { let localContext = new RangeOperatorContext(this.context, this.state); - this.enterRule(localContext, 246, ImpalaSqlParser.RULE_rangeOperator); + this.enterRule(localContext, 248, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1794; + this.state = 1801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7924,28 +7947,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1797; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1798; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1792; + this.state = 1799; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1793; + this.state = 1800; this.match(ImpalaSqlParser.GTE); } break; @@ -7969,57 +7992,57 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionCol(): PartitionColContext { let localContext = new PartitionColContext(this.context, this.state); - this.enterRule(localContext, 248, ImpalaSqlParser.RULE_partitionCol); + this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1804; + this.state = 1811; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1803; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1804; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1798; + this.state = 1805; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1799; + this.state = 1806; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1800; + this.state = 1807; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1801; + this.state = 1808; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1802; + this.state = 1809; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8098,7 +8121,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1803; + this.state = 1810; this.rangeOperator(); } break; @@ -8122,21 +8145,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public likeClause(): LikeClauseContext { let localContext = new LikeClauseContext(this.context, this.state); - this.enterRule(localContext, 250, ImpalaSqlParser.RULE_likeClause); + this.enterRule(localContext, 252, ImpalaSqlParser.RULE_likeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1813; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1807; + this.state = 1814; this.qualifiedName(); - this.state = 1810; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1808; + this.state = 1815; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8146,7 +8169,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1809; + this.state = 1816; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8169,32 +8192,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public properties(): PropertiesContext { let localContext = new PropertiesContext(this.context, this.state); - this.enterRule(localContext, 252, ImpalaSqlParser.RULE_properties); + this.enterRule(localContext, 254, ImpalaSqlParser.RULE_properties); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1819; this.match(ImpalaSqlParser.LPAREN); - this.state = 1813; + this.state = 1820; this.property(); - this.state = 1818; + this.state = 1825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1814; + this.state = 1821; this.match(ImpalaSqlParser.COMMA); - this.state = 1815; + this.state = 1822; this.property(); } } - this.state = 1820; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1821; + this.state = 1828; this.match(ImpalaSqlParser.RPAREN); } } @@ -8214,34 +8237,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionedBy(): PartitionedByContext { let localContext = new PartitionedByContext(this.context, this.state); - this.enterRule(localContext, 254, ImpalaSqlParser.RULE_partitionedBy); + this.enterRule(localContext, 256, ImpalaSqlParser.RULE_partitionedBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1823; + this.state = 1830; this.match(ImpalaSqlParser.LPAREN); - this.state = 1824; + this.state = 1831; this.columnSpec(); - this.state = 1829; + this.state = 1836; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1825; + this.state = 1832; this.match(ImpalaSqlParser.COMMA); - this.state = 1826; + this.state = 1833; this.columnSpec(); } } } - this.state = 1831; + this.state = 1838; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1832; + this.state = 1839; this.match(ImpalaSqlParser.RPAREN); } } @@ -8261,26 +8284,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortedBy(): SortedByContext { let localContext = new SortedByContext(this.context, this.state); - this.enterRule(localContext, 256, ImpalaSqlParser.RULE_sortedBy); + this.enterRule(localContext, 258, ImpalaSqlParser.RULE_sortedBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1834; + this.state = 1841; this.expression(); - this.state = 1839; + this.state = 1846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1835; + this.state = 1842; this.match(ImpalaSqlParser.COMMA); - this.state = 1836; + this.state = 1843; this.expression(); } } - this.state = 1841; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8302,36 +8325,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 258, ImpalaSqlParser.RULE_rowFormat); + this.enterRule(localContext, 260, ImpalaSqlParser.RULE_rowFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1849; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1852; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1843; + this.state = 1850; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1844; + this.state = 1851; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1845; + this.state = 1852; this.match(ImpalaSqlParser.KW_BY); - this.state = 1846; + this.state = 1853; this.stringLiteral(); - this.state = 1850; + this.state = 1857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1847; + this.state = 1854; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1848; + this.state = 1855; this.match(ImpalaSqlParser.KW_BY); - this.state = 1849; + this.state = 1856; this.stringLiteral(); } } @@ -8339,18 +8362,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1858; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1854; + this.state = 1861; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1855; + this.state = 1862; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1856; + this.state = 1863; this.match(ImpalaSqlParser.KW_BY); - this.state = 1857; + this.state = 1864; this.stringLiteral(); } } @@ -8373,21 +8396,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 260, ImpalaSqlParser.RULE_property); + this.enterRule(localContext, 262, ImpalaSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1867; this.identifier(); - this.state = 1863; + this.state = 1870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1861; + this.state = 1868; this.match(ImpalaSqlParser.EQ); - this.state = 1862; + this.state = 1869; this.expression(); } } @@ -8410,60 +8433,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryNoWith(): QueryNoWithContext { let localContext = new QueryNoWithContext(this.context, this.state); - this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryNoWith); + this.enterRule(localContext, 264, ImpalaSqlParser.RULE_queryNoWith); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1872; this.queryTerm(0); - this.state = 1876; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1866; + this.state = 1873; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1867; + this.state = 1874; this.match(ImpalaSqlParser.KW_BY); - this.state = 1868; + this.state = 1875; this.sortItem(); - this.state = 1873; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1869; + this.state = 1876; this.match(ImpalaSqlParser.COMMA); - this.state = 1870; + this.state = 1877; this.sortItem(); } } - this.state = 1875; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1884; + this.state = 1891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1878; + this.state = 1885; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1879; + this.state = 1886; localContext._rows = this.expression(); - this.state = 1882; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1880; + this.state = 1887; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1881; + this.state = 1888; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8499,8 +8522,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 264; - this.enterRecursionRule(localContext, 264, ImpalaSqlParser.RULE_queryTerm, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, ImpalaSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; @@ -8511,11 +8534,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1887; + this.state = 1894; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1903; + this.state = 1910; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8525,7 +8548,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1901; + this.state = 1908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: @@ -8533,23 +8556,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1889; + this.state = 1896; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1890; + this.state = 1897; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1892; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1891; + this.state = 1898; this.setQuantifier(); } } - this.state = 1894; + this.state = 1901; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8558,11 +8581,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1895; + this.state = 1902; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1896; + this.state = 1903; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8572,24 +8595,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1897; + this.state = 1904; this.setQuantifier(); } } - this.state = 1900; + this.state = 1907; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1905; + this.state = 1912; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -8611,17 +8634,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 266, ImpalaSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 268, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1922; + this.state = 1929; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1913; this.querySpecification(); } break; @@ -8629,9 +8652,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1907; + this.state = 1914; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1908; + this.state = 1915; this.tableNamePath(); } break; @@ -8639,25 +8662,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1909; + this.state = 1916; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1910; + this.state = 1917; this.expression(); - this.state = 1915; + this.state = 1922; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1911; + this.state = 1918; this.match(ImpalaSqlParser.COMMA); - this.state = 1912; + this.state = 1919; this.expression(); } } } - this.state = 1917; + this.state = 1924; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } @@ -8667,11 +8690,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1918; + this.state = 1925; this.match(ImpalaSqlParser.LPAREN); - this.state = 1919; + this.state = 1926; this.queryNoWith(); - this.state = 1920; + this.state = 1927; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8695,19 +8718,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 268, ImpalaSqlParser.RULE_sortItem); + this.enterRule(localContext, 270, ImpalaSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1924; + this.state = 1931; this.columnItem(); - this.state = 1926; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1925; + this.state = 1932; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8720,14 +8743,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1930; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1928; + this.state = 1935; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1929; + this.state = 1936; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8758,118 +8781,114 @@ export class ImpalaSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, ImpalaSqlParser.RULE_querySpecification); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1932; + this.state = 1939; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1934; + this.state = 1941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1933; + this.state = 1940; this.setQuantifier(); } break; } - this.state = 1937; + this.state = 1944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1936; + this.state = 1943; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1939; + this.state = 1946; this.selectItem(); - this.state = 1944; + this.state = 1951; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1940; + this.state = 1947; this.match(ImpalaSqlParser.COMMA); - this.state = 1941; + this.state = 1948; this.selectItem(); } } } - this.state = 1946; + this.state = 1953; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } - this.state = 1956; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1947; + this.state = 1954; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1948; + this.state = 1955; this.relation(0); - this.state = 1953; + this.state = 1960; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1949; + this.state = 1956; this.match(ImpalaSqlParser.COMMA); - this.state = 1950; + this.state = 1957; this.relation(0); } } } - this.state = 1955; + this.state = 1962; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1960; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1958; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1959; - localContext._where = this.booleanExpression(0); + this.state = 1965; + this.whereClause(); } break; } - this.state = 1965; + this.state = 1971; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1962; + this.state = 1968; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1963; + this.state = 1969; this.match(ImpalaSqlParser.KW_BY); - this.state = 1964; + this.state = 1970; this.groupBy(); } break; } - this.state = 1969; + this.state = 1974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1967; - this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1968; - localContext._having = this.booleanExpression(0); + this.state = 1973; + this.havingClause(); } break; } @@ -8889,40 +8908,92 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1976; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1977; + localContext._where = this.booleanExpression(0); + } + } + 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 havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_havingClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1979; + this.match(ImpalaSqlParser.KW_HAVING); + this.state = 1980; + localContext._having = this.booleanExpression(0); + } + } + 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 groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1972; + this.state = 1983; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1971; + this.state = 1982; this.setQuantifier(); } break; } - this.state = 1974; + this.state = 1985; this.groupingElement(); - this.state = 1979; + this.state = 1990; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1975; + this.state = 1986; this.match(ImpalaSqlParser.COMMA); - this.state = 1976; + this.state = 1987; this.groupingElement(); } } } - this.state = 1981; + this.state = 1992; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } @@ -8944,12 +9015,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1982; + this.state = 1993; this.groupingSet(); } } @@ -8969,51 +9040,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1997; + this.state = 2008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1984; + this.state = 1995; this.match(ImpalaSqlParser.LPAREN); - this.state = 1993; + this.state = 2004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1985; + this.state = 1996; this.columnItem(); - this.state = 1990; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1986; + this.state = 1997; this.match(ImpalaSqlParser.COMMA); - this.state = 1987; + this.state = 1998; this.columnItem(); } } - this.state = 1992; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1995; + this.state = 2006; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1996; + this.state = 2007; this.columnItem(); } break; @@ -9035,26 +9106,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1999; + this.state = 2010; localContext._name = this.identifier(); - this.state = 2001; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2000; + this.state = 2011; this.columnAliases(); } } - this.state = 2003; + this.state = 2014; this.match(ImpalaSqlParser.KW_AS); - this.state = 2004; + this.state = 2015; this.subQueryRelation(); } } @@ -9074,12 +9145,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2017; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9106,34 +9177,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_selectItem); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_selectItem); let _la: number; try { - this.state = 2020; + this.state = 2031; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2019; this.columnItem(); - this.state = 2013; + this.state = 2024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2010; + this.state = 2021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2009; + this.state = 2020; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2012; + this.state = 2023; this.identifier(); } break; @@ -9144,11 +9215,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2015; + this.state = 2026; this.qualifiedName(); - this.state = 2016; + this.state = 2027; this.match(ImpalaSqlParser.DOT); - this.state = 2017; + this.state = 2028; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9156,7 +9227,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2019; + this.state = 2030; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9188,8 +9259,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, ImpalaSqlParser.RULE_relation, _p); + let _startState = 290; + this.enterRecursionRule(localContext, 290, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9199,11 +9270,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2023; + this.state = 2034; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2038; + this.state = 2049; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9217,20 +9288,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2025; + this.state = 2036; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2034; + this.state = 2045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2026; + this.state = 2037; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2027; + this.state = 2038; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2028; + this.state = 2039; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9240,13 +9311,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2029; + this.state = 2040; this.joinType(); - this.state = 2030; + this.state = 2041; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2031; + this.state = 2042; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2032; + this.state = 2043; this.joinCriteria(); } break; @@ -9256,7 +9327,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2040; + this.state = 2051; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); } @@ -9278,21 +9349,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2072; + this.state = 2083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2041; + this.state = 2052; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9302,14 +9373,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2044; + this.state = 2055; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2046; + this.state = 2057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2045; + this.state = 2056; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9319,14 +9390,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2048; + this.state = 2059; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2050; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2049; + this.state = 2060; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9336,14 +9407,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2052; + this.state = 2063; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2054; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2053; + this.state = 2064; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9353,14 +9424,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2056; + this.state = 2067; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2058; + this.state = 2069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2057; + this.state = 2068; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9370,14 +9441,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2060; + this.state = 2071; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2062; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2061; + this.state = 2072; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9387,36 +9458,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2064; + this.state = 2075; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2065; + this.state = 2076; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2066; + this.state = 2077; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2067; + this.state = 2078; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2068; + this.state = 2079; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2069; + this.state = 2080; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2070; + this.state = 2081; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2071; + this.state = 2082; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9438,47 +9509,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 294, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2088; + this.state = 2099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2074; + this.state = 2085; this.match(ImpalaSqlParser.KW_ON); - this.state = 2075; + this.state = 2086; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2076; + this.state = 2087; this.match(ImpalaSqlParser.KW_USING); - this.state = 2077; + this.state = 2088; this.match(ImpalaSqlParser.LPAREN); - this.state = 2078; + this.state = 2089; this.identifier(); - this.state = 2083; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2079; + this.state = 2090; this.match(ImpalaSqlParser.COMMA); - this.state = 2080; + this.state = 2091; this.identifier(); } } - this.state = 2085; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2086; + this.state = 2097; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9502,39 +9573,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2101; this.aliasedRelation(); - this.state = 2103; + this.state = 2114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2091; + this.state = 2102; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2092; + this.state = 2103; this.sampleType(); - this.state = 2093; + this.state = 2104; this.match(ImpalaSqlParser.LPAREN); - this.state = 2094; + this.state = 2105; localContext._percentage = this.expression(); - this.state = 2095; + this.state = 2106; this.match(ImpalaSqlParser.RPAREN); - this.state = 2101; + this.state = 2112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2096; + this.state = 2107; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2097; + this.state = 2108; this.match(ImpalaSqlParser.LPAREN); - this.state = 2098; + this.state = 2109; localContext._seed = this.expression(); - this.state = 2099; + this.state = 2110; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9560,12 +9631,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2105; + this.state = 2116; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9592,36 +9663,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 300, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2107; + this.state = 2118; this.relationPrimary(); - this.state = 2115; + this.state = 2126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2109; + this.state = 2120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2108; + this.state = 2119; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2111; + this.state = 2122; localContext._alias = this.identifier(); - this.state = 2113; + this.state = 2124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2112; + this.state = 2123; this.columnAliases(); } break; @@ -9647,32 +9718,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2128; this.match(ImpalaSqlParser.LPAREN); - this.state = 2118; + this.state = 2129; this.columnNamePath(); - this.state = 2123; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2119; + this.state = 2130; this.match(ImpalaSqlParser.COMMA); - this.state = 2120; + this.state = 2131; this.columnNamePath(); } } - this.state = 2125; + this.state = 2136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2126; + this.state = 2137; this.match(ImpalaSqlParser.RPAREN); } } @@ -9692,47 +9763,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 304, ImpalaSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 2135; + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 2139; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2130; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2129; + this.state = 2140; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2132; + this.state = 2143; this.subQueryRelation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2133; + this.state = 2144; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2134; + this.state = 2145; this.parenthesizedRelation(); } break; @@ -9754,15 +9825,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 300, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2148; this.match(ImpalaSqlParser.LPAREN); - this.state = 2138; + this.state = 2149; this.queryStatement(); - this.state = 2139; + this.state = 2150; this.match(ImpalaSqlParser.RPAREN); } } @@ -9782,43 +9853,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2152; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2142; + this.state = 2153; this.match(ImpalaSqlParser.LPAREN); - this.state = 2143; + this.state = 2154; this.expression(); - this.state = 2148; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2144; + this.state = 2155; this.match(ImpalaSqlParser.COMMA); - this.state = 2145; + this.state = 2156; this.expression(); } } - this.state = 2150; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2151; + this.state = 2162; this.match(ImpalaSqlParser.RPAREN); - this.state = 2154; + this.state = 2165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2152; + this.state = 2163; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2153; + this.state = 2164; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9841,15 +9912,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 310, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2167; this.match(ImpalaSqlParser.LPAREN); - this.state = 2157; + this.state = 2168; this.relation(0); - this.state = 2158; + this.state = 2169; this.match(ImpalaSqlParser.RPAREN); } } @@ -9869,22 +9940,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 306, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2162; + this.state = 2173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2171; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2172; this.expression(); } break; @@ -9906,11 +9977,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 314, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2175; this.booleanExpression(0); } } @@ -9940,13 +10011,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 310; - this.enterRecursionRule(localContext, 310, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 316; + this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2184; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10022,14 +10093,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2167; + this.state = 2178; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2169; + this.state = 2180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2168; + this.state = 2179; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10041,9 +10112,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2171; + this.state = 2182; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2172; + this.state = 2183; this.booleanExpression(3); } break; @@ -10051,7 +10122,7 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2183; + this.state = 2194; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10061,7 +10132,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2181; + this.state = 2192; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: @@ -10069,13 +10140,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2175; + this.state = 2186; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2176; + this.state = 2187; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2177; + this.state = 2188; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10084,20 +10155,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2178; + this.state = 2189; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2179; + this.state = 2190; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2180; + this.state = 2191; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2185; + this.state = 2196; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } @@ -10119,19 +10190,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 312, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2244; + this.state = 2255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2197; this.comparisonOperator(); - this.state = 2187; + this.state = 2198; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10139,11 +10210,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2200; this.comparisonOperator(); - this.state = 2190; + this.state = 2201; this.comparisonQuantifier(); - this.state = 2191; + this.state = 2202; this.subQueryRelation(); } break; @@ -10151,23 +10222,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2194; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2193; + this.state = 2204; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2196; + this.state = 2207; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2197; + this.state = 2208; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2198; + this.state = 2209; this.match(ImpalaSqlParser.KW_AND); - this.state = 2199; + this.state = 2210; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10175,39 +10246,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2202; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2201; + this.state = 2212; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2204; + this.state = 2215; this.match(ImpalaSqlParser.KW_IN); - this.state = 2205; + this.state = 2216; this.match(ImpalaSqlParser.LPAREN); - this.state = 2206; + this.state = 2217; this.expression(); - this.state = 2211; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2207; + this.state = 2218; this.match(ImpalaSqlParser.COMMA); - this.state = 2208; + this.state = 2219; this.expression(); } } - this.state = 2213; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2225; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10215,19 +10286,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2217; + this.state = 2228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2216; + this.state = 2227; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2219; + this.state = 2230; this.match(ImpalaSqlParser.KW_IN); - this.state = 2220; + this.state = 2231; this.subQueryRelation(); } break; @@ -10235,17 +10306,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2222; + this.state = 2233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2221; + this.state = 2232; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2224; + this.state = 2235; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10254,16 +10325,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2225; + this.state = 2236; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2228; + this.state = 2239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2226; + this.state = 2237; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2227; + this.state = 2238; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10274,7 +10345,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2230; + this.state = 2241; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10283,7 +10354,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2231; + this.state = 2242; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10291,19 +10362,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2232; + this.state = 2243; this.match(ImpalaSqlParser.KW_IS); - this.state = 2234; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2233; + this.state = 2244; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2236; + this.state = 2247; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10318,23 +10389,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2237; + this.state = 2248; this.match(ImpalaSqlParser.KW_IS); - this.state = 2239; + this.state = 2250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2238; + this.state = 2249; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2241; + this.state = 2252; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2242; + this.state = 2253; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2243; + this.state = 2254; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10366,14 +10437,14 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 314; - this.enterRecursionRule(localContext, 314, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 320; + this.enterRecursionRule(localContext, 320, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2250; + this.state = 2261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: @@ -10382,7 +10453,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2247; + this.state = 2258; this.primaryExpression(0); } break; @@ -10391,7 +10462,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2248; + this.state = 2259; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10401,13 +10472,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2249; + this.state = 2260; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2263; + this.state = 2274; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10417,7 +10488,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2261; + this.state = 2272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: @@ -10425,11 +10496,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2252; + this.state = 2263; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2253; + this.state = 2264; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10439,7 +10510,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2254; + this.state = 2265; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10448,11 +10519,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2255; + this.state = 2266; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2256; + this.state = 2267; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10462,7 +10533,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2257; + this.state = 2268; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10471,20 +10542,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2258; + this.state = 2269; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2259; + this.state = 2270; this.match(ImpalaSqlParser.CONCAT); - this.state = 2260; + this.state = 2271; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2265; + this.state = 2276; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } @@ -10516,14 +10587,14 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 316; - this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 322; + this.enterRecursionRule(localContext, 322, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2512; + this.state = 2523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: @@ -10532,7 +10603,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2267; + this.state = 2278; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10541,7 +10612,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2268; + this.state = 2279; this.interval(); } break; @@ -10550,9 +10621,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2269; + this.state = 2280; this.identifier(); - this.state = 2270; + this.state = 2281; this.stringLiteral(); } break; @@ -10561,9 +10632,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2272; + this.state = 2283; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2273; + this.state = 2284; this.stringLiteral(); } break; @@ -10572,7 +10643,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2285; this.number_(); } break; @@ -10581,7 +10652,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2275; + this.state = 2286; this.booleanValue(); } break; @@ -10590,7 +10661,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2276; + this.state = 2287; this.stringLiteral(); } break; @@ -10599,7 +10670,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2277; + this.state = 2288; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10608,7 +10679,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; + this.state = 2289; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10617,17 +10688,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2279; + this.state = 2290; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2280; + this.state = 2291; this.match(ImpalaSqlParser.LPAREN); - this.state = 2281; + this.state = 2292; this.valueExpression(0); - this.state = 2282; + this.state = 2293; this.match(ImpalaSqlParser.KW_IN); - this.state = 2283; + this.state = 2294; this.valueExpression(0); - this.state = 2284; + this.state = 2295; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10636,41 +10707,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2286; + this.state = 2297; this.match(ImpalaSqlParser.LPAREN); - this.state = 2287; + this.state = 2298; this.expression(); - this.state = 2290; + this.state = 2301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2288; + this.state = 2299; this.match(ImpalaSqlParser.KW_AS); - this.state = 2289; + this.state = 2300; this.type_(0); } } - this.state = 2300; + this.state = 2311; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2292; + this.state = 2303; this.match(ImpalaSqlParser.COMMA); - this.state = 2293; + this.state = 2304; this.expression(); - this.state = 2296; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2294; + this.state = 2305; this.match(ImpalaSqlParser.KW_AS); - this.state = 2295; + this.state = 2306; this.type_(0); } } @@ -10678,11 +10749,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2302; + this.state = 2313; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } - this.state = 2303; + this.state = 2314; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10691,29 +10762,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2305; + this.state = 2316; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2306; + this.state = 2317; this.match(ImpalaSqlParser.LPAREN); - this.state = 2307; + this.state = 2318; this.expression(); - this.state = 2312; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2308; + this.state = 2319; this.match(ImpalaSqlParser.COMMA); - this.state = 2309; + this.state = 2320; this.expression(); } } - this.state = 2314; + this.state = 2325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2315; + this.state = 2326; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10722,30 +10793,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2317; + this.state = 2328; this.functionNamePath(); - this.state = 2318; + this.state = 2329; this.match(ImpalaSqlParser.LPAREN); - this.state = 2319; + this.state = 2330; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2320; + this.state = 2331; this.match(ImpalaSqlParser.RPAREN); - this.state = 2322; + this.state = 2333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2321; + this.state = 2332; this.filter(); } break; } - this.state = 2325; + this.state = 2336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2324; + this.state = 2335; this.over(); } break; @@ -10757,94 +10828,94 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2338; this.functionNamePath(); - this.state = 2328; + this.state = 2339; this.match(ImpalaSqlParser.LPAREN); - this.state = 2340; + this.state = 2351; 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)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2330; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2329; + this.state = 2340; this.setQuantifier(); } } - this.state = 2332; + this.state = 2343; this.expression(); - this.state = 2337; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2333; + this.state = 2344; this.match(ImpalaSqlParser.COMMA); - this.state = 2334; + this.state = 2345; this.expression(); } } - this.state = 2339; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2352; + this.state = 2363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2342; + this.state = 2353; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2343; + this.state = 2354; this.match(ImpalaSqlParser.KW_BY); - this.state = 2344; + this.state = 2355; this.sortItem(); - this.state = 2349; + this.state = 2360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2345; + this.state = 2356; this.match(ImpalaSqlParser.COMMA); - this.state = 2346; + this.state = 2357; this.sortItem(); } } - this.state = 2351; + this.state = 2362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2354; + this.state = 2365; this.match(ImpalaSqlParser.RPAREN); - this.state = 2356; + this.state = 2367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2355; + this.state = 2366; this.filter(); } break; } - this.state = 2359; + this.state = 2370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2358; + this.state = 2369; this.over(); } break; @@ -10856,11 +10927,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2372; this.identifier(); - this.state = 2362; + this.state = 2373; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2363; + this.state = 2374; this.expression(); } break; @@ -10869,39 +10940,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2365; + this.state = 2376; this.match(ImpalaSqlParser.LPAREN); - this.state = 2374; + this.state = 2385; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2366; + this.state = 2377; this.identifier(); - this.state = 2371; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2367; + this.state = 2378; this.match(ImpalaSqlParser.COMMA); - this.state = 2368; + this.state = 2379; this.identifier(); } } - this.state = 2373; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2376; + this.state = 2387; this.match(ImpalaSqlParser.RPAREN); - this.state = 2377; + this.state = 2388; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2378; + this.state = 2389; this.expression(); } break; @@ -10910,11 +10981,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2379; + this.state = 2390; this.match(ImpalaSqlParser.LPAREN); - this.state = 2380; + this.state = 2391; this.queryStatement(); - this.state = 2381; + this.state = 2392; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10923,13 +10994,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2383; + this.state = 2394; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2384; + this.state = 2395; this.match(ImpalaSqlParser.LPAREN); - this.state = 2385; + this.state = 2396; this.queryStatement(); - this.state = 2386; + this.state = 2397; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10938,37 +11009,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2388; + this.state = 2399; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2389; + this.state = 2400; this.valueExpression(0); - this.state = 2391; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2390; + this.state = 2401; this.whenClause(); } } - this.state = 2393; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2397; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2395; + this.state = 2406; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2396; + this.state = 2407; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2399; + this.state = 2410; this.match(ImpalaSqlParser.KW_END); } break; @@ -10977,35 +11048,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2401; + this.state = 2412; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2403; + this.state = 2414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2402; + this.state = 2413; this.whenClause(); } } - this.state = 2405; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2409; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2407; + this.state = 2418; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2408; + this.state = 2419; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2411; + this.state = 2422; this.match(ImpalaSqlParser.KW_END); } break; @@ -11014,17 +11085,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2413; + this.state = 2424; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2414; + this.state = 2425; this.match(ImpalaSqlParser.LPAREN); - this.state = 2415; + this.state = 2426; this.expression(); - this.state = 2416; + this.state = 2427; this.match(ImpalaSqlParser.KW_AS); - this.state = 2417; + this.state = 2428; this.type_(0); - this.state = 2418; + this.state = 2429; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11033,17 +11104,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2420; + this.state = 2431; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2421; + this.state = 2432; this.match(ImpalaSqlParser.LPAREN); - this.state = 2422; + this.state = 2433; this.expression(); - this.state = 2423; + this.state = 2434; this.match(ImpalaSqlParser.KW_AS); - this.state = 2424; + this.state = 2435; this.type_(0); - this.state = 2425; + this.state = 2436; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11052,37 +11123,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2427; + this.state = 2438; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2428; + this.state = 2439; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2437; + this.state = 2448; 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)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2429; + this.state = 2440; this.expression(); - this.state = 2434; + this.state = 2445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2430; + this.state = 2441; this.match(ImpalaSqlParser.COMMA); - this.state = 2431; + this.state = 2442; this.expression(); } } - this.state = 2436; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2439; + this.state = 2450; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11091,8 +11162,8 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2440; - this.identifier(); + this.state = 2451; + this.columnName(); } break; case 25: @@ -11100,7 +11171,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2441; + this.state = 2452; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11109,18 +11180,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2442; + this.state = 2453; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2446; + this.state = 2457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2443; + this.state = 2454; this.match(ImpalaSqlParser.LPAREN); - this.state = 2444; + this.state = 2455; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2445; + this.state = 2456; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11132,18 +11203,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2448; + this.state = 2459; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2452; + this.state = 2463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2449; + this.state = 2460; this.match(ImpalaSqlParser.LPAREN); - this.state = 2450; + this.state = 2461; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2451; + this.state = 2462; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11155,18 +11226,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2454; + this.state = 2465; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2458; + this.state = 2469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2455; + this.state = 2466; this.match(ImpalaSqlParser.LPAREN); - this.state = 2456; + this.state = 2467; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2457; + this.state = 2468; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11178,18 +11249,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2471; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2464; + this.state = 2475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2461; + this.state = 2472; this.match(ImpalaSqlParser.LPAREN); - this.state = 2462; + this.state = 2473; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2463; + this.state = 2474; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11201,7 +11272,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2466; + this.state = 2477; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11210,7 +11281,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2467; + this.state = 2478; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11219,29 +11290,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2468; + this.state = 2479; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2469; + this.state = 2480; this.match(ImpalaSqlParser.LPAREN); - this.state = 2470; + this.state = 2481; this.valueExpression(0); - this.state = 2471; + this.state = 2482; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2472; + this.state = 2483; this.valueExpression(0); - this.state = 2475; + this.state = 2486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2473; + this.state = 2484; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2474; + this.state = 2485; this.valueExpression(0); } } - this.state = 2477; + this.state = 2488; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11250,25 +11321,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2479; + this.state = 2490; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2480; + this.state = 2491; this.match(ImpalaSqlParser.LPAREN); - this.state = 2481; + this.state = 2492; this.valueExpression(0); - this.state = 2484; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2482; + this.state = 2493; this.match(ImpalaSqlParser.COMMA); - this.state = 2483; + this.state = 2494; this.normalForm(); } } - this.state = 2486; + this.state = 2497; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11277,17 +11348,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2488; + this.state = 2499; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2489; + this.state = 2500; this.match(ImpalaSqlParser.LPAREN); - this.state = 2490; + this.state = 2501; this.identifier(); - this.state = 2491; + this.state = 2502; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2492; + this.state = 2503; this.valueExpression(0); - this.state = 2493; + this.state = 2504; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11296,11 +11367,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2495; + this.state = 2506; this.match(ImpalaSqlParser.LPAREN); - this.state = 2496; + this.state = 2507; this.expression(); - this.state = 2497; + this.state = 2508; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11309,43 +11380,43 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2499; + this.state = 2510; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2500; + this.state = 2511; this.match(ImpalaSqlParser.LPAREN); - this.state = 2509; + this.state = 2520; 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)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2501; + this.state = 2512; this.qualifiedName(); - this.state = 2506; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2502; + this.state = 2513; this.match(ImpalaSqlParser.COMMA); - this.state = 2503; + this.state = 2514; this.qualifiedName(); } } - this.state = 2508; + this.state = 2519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2511; + this.state = 2522; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2524; + this.state = 2535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11355,7 +11426,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2522; + this.state = 2533; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: @@ -11363,15 +11434,15 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2514; + this.state = 2525; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2515; + this.state = 2526; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2516; + this.state = 2527; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2517; + this.state = 2528; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11380,20 +11451,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2519; + this.state = 2530; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2520; + this.state = 2531; this.match(ImpalaSqlParser.DOT); - this.state = 2521; + this.state = 2532; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2526; + this.state = 2537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11415,16 +11486,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2533; + this.state = 2544; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2538; this.match(ImpalaSqlParser.STRING); } break; @@ -11432,16 +11503,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2528; + this.state = 2539; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2531; + this.state = 2542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2529; + this.state = 2540; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2530; + this.state = 2541; this.match(ImpalaSqlParser.STRING); } break; @@ -11468,12 +11539,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 320, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 326, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2546; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11500,12 +11571,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 322, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 328, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2548; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11532,12 +11603,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2539; + this.state = 2550; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11564,56 +11635,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 332, ImpalaSqlParser.RULE_interval); try { - this.state = 2555; + this.state = 2566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2552; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2542; + this.state = 2553; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2543; + this.state = 2554; this.match(ImpalaSqlParser.LPAREN); - this.state = 2544; + this.state = 2555; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2545; + this.state = 2556; this.match(ImpalaSqlParser.RPAREN); - this.state = 2546; + this.state = 2557; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2547; + this.state = 2558; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2548; + this.state = 2559; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2549; + this.state = 2560; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2550; + this.state = 2561; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2551; + this.state = 2562; this.match(ImpalaSqlParser.LPAREN); - this.state = 2552; + this.state = 2563; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2553; + this.state = 2564; this.match(ImpalaSqlParser.RPAREN); - this.state = 2554; + this.state = 2565; this.intervalField(); } break; @@ -11635,12 +11706,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 328, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2568; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11667,12 +11738,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 336, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2570; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11709,120 +11780,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 332; - this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_type, _p); + let _startState = 338; + this.enterRecursionRule(localContext, 338, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2562; + this.state = 2573; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2563; + this.state = 2574; this.match(ImpalaSqlParser.LT); - this.state = 2564; + this.state = 2575; this.type_(0); - this.state = 2565; + this.state = 2576; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2567; + this.state = 2578; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2568; + this.state = 2579; this.match(ImpalaSqlParser.LT); - this.state = 2569; + this.state = 2580; this.type_(0); - this.state = 2570; + this.state = 2581; this.match(ImpalaSqlParser.COMMA); - this.state = 2571; + this.state = 2582; this.type_(0); - this.state = 2572; + this.state = 2583; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2574; + this.state = 2585; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2575; + this.state = 2586; this.match(ImpalaSqlParser.LT); - this.state = 2576; + this.state = 2587; this.identifier(); - this.state = 2577; + this.state = 2588; this.type_(0); - this.state = 2584; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2578; + this.state = 2589; this.match(ImpalaSqlParser.COMMA); - this.state = 2579; + this.state = 2590; this.identifier(); - this.state = 2580; + this.state = 2591; this.type_(0); } } - this.state = 2586; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2587; + this.state = 2598; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2591; + this.state = 2602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2589; + this.state = 2600; this.baseType(); } break; case 2: { - this.state = 2590; + this.state = 2601; this.dataType(); } break; } - this.state = 2604; + this.state = 2615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2593; + this.state = 2604; this.match(ImpalaSqlParser.LPAREN); - this.state = 2594; + this.state = 2605; this.typeParameter(); - this.state = 2599; + this.state = 2610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2595; + this.state = 2606; this.match(ImpalaSqlParser.COMMA); - this.state = 2596; + this.state = 2607; this.typeParameter(); } } - this.state = 2601; + this.state = 2612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2602; + this.state = 2613; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11831,7 +11902,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2612; + this.state = 2623; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11844,16 +11915,16 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2608; + this.state = 2619; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2609; + this.state = 2620; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2614; + this.state = 2625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); } @@ -11875,12 +11946,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2626; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -11907,15 +11978,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2619; + this.state = 2630; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2628; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11980,7 +12051,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2618; + this.state = 2629; this.type_(0); } break; @@ -12004,29 +12075,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_baseType); try { - this.state = 2625; + this.state = 2636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2621; + this.state = 2632; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2622; + this.state = 2633; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2623; + this.state = 2634; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12070,7 +12141,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2624; + this.state = 2635; this.identifier(); } break; @@ -12094,17 +12165,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2627; + this.state = 2638; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2628; + this.state = 2639; localContext._condition = this.expression(); - this.state = 2629; + this.state = 2640; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2630; + this.state = 2641; localContext._result = this.expression(); } } @@ -12122,22 +12193,63 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } - public filter(): FilterContext { - let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_filter); + public filter(): FilterContext { + let localContext = new FilterContext(this.context, this.state); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_filter); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2643; + this.match(ImpalaSqlParser.KW_FILTER); + this.state = 2644; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2645; + this.whereClause(); + this.state = 2646; + 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 partitionByClause(): PartitionByClauseContext { + let localContext = new PartitionByClauseContext(this.context, this.state); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_partitionByClause); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2632; - this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2633; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2634; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 2635; - this.booleanExpression(0); - this.state = 2636; - this.match(ImpalaSqlParser.RPAREN); + this.state = 2648; + localContext._expression = this.expression(); + localContext._partition.push(localContext._expression); + this.state = 2653; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 263) { + { + { + this.state = 2649; + this.match(ImpalaSqlParser.COMMA); + this.state = 2650; + localContext._expression = this.expression(); + localContext._partition.push(localContext._expression); + } + } + this.state = 2655; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -12156,88 +12268,70 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2638; + this.state = 2656; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2639; + this.state = 2657; this.match(ImpalaSqlParser.LPAREN); - this.state = 2650; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2640; + this.state = 2658; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2641; + this.state = 2659; this.match(ImpalaSqlParser.KW_BY); - this.state = 2642; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 2647; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 263) { - { - { - this.state = 2643; - this.match(ImpalaSqlParser.COMMA); - this.state = 2644; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 2649; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 2660; + this.partitionByClause(); } } - this.state = 2662; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2652; + this.state = 2663; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2653; + this.state = 2664; this.match(ImpalaSqlParser.KW_BY); - this.state = 2654; + this.state = 2665; this.sortItem(); - this.state = 2659; + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2655; + this.state = 2666; this.match(ImpalaSqlParser.COMMA); - this.state = 2656; + this.state = 2667; this.sortItem(); } } - this.state = 2661; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2665; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2664; + this.state = 2675; this.windowFrame(); } } - this.state = 2667; + this.state = 2678; this.match(ImpalaSqlParser.RPAREN); } } @@ -12257,56 +12351,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2685; + this.state = 2696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2680; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2670; + this.state = 2681; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2671; + this.state = 2682; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2672; + this.state = 2683; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2673; + this.state = 2684; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2674; + this.state = 2685; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2675; + this.state = 2686; localContext._start_ = this.frameBound(); - this.state = 2676; + this.state = 2687; this.match(ImpalaSqlParser.KW_AND); - this.state = 2677; + this.state = 2688; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2679; + this.state = 2690; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2680; + this.state = 2691; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2681; + this.state = 2692; localContext._start_ = this.frameBound(); - this.state = 2682; + this.state = 2693; this.match(ImpalaSqlParser.KW_AND); - this.state = 2683; + this.state = 2694; localContext._end = this.frameBound(); } break; @@ -12328,19 +12422,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2696; + this.state = 2707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2698; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2688; + this.state = 2699; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12348,9 +12442,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2689; + this.state = 2700; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2690; + this.state = 2701; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12358,9 +12452,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2691; + this.state = 2702; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2692; + this.state = 2703; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12368,9 +12462,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2693; + this.state = 2704; this.expression(); - this.state = 2694; + this.state = 2705; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12400,20 +12494,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2703; + this.state = 2714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2709; this.identifier(); - this.state = 2699; + this.state = 2710; this.match(ImpalaSqlParser.DOT); - this.state = 2700; + this.state = 2711; this.identifier(); } break; @@ -12421,7 +12515,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2702; + this.state = 2713; this.identifier(); } break; @@ -12443,26 +12537,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2705; + this.state = 2716; this.pathElement(); - this.state = 2710; + this.state = 2721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2706; + this.state = 2717; this.match(ImpalaSqlParser.COMMA); - this.state = 2707; + this.state = 2718; this.pathElement(); } } - this.state = 2712; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12484,69 +12578,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2726; + this.state = 2737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2713; + this.state = 2724; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2714; + this.state = 2725; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2726; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2716; + this.state = 2727; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2717; + this.state = 2728; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2718; + this.state = 2729; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2719; + this.state = 2730; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2724; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2720; + this.state = 2731; this.match(ImpalaSqlParser.LPAREN); - this.state = 2721; - localContext._columnName = this.identifier(); - this.state = 2722; + this.state = 2732; + localContext._name = this.identifier(); + this.state = 2733; this.match(ImpalaSqlParser.RPAREN); } } @@ -12573,12 +12667,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2739; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12605,28 +12699,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2730; + this.state = 2741; this.identifier(); - this.state = 2735; + this.state = 2746; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2731; + this.state = 2742; this.match(ImpalaSqlParser.DOT); - this.state = 2732; + this.state = 2743; this.identifier(); } } } - this.state = 2737; + this.state = 2748; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); } @@ -12648,18 +12742,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_principal); try { - this.state = 2744; + this.state = 2755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2738; + this.state = 2749; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2739; + this.state = 2750; this.identifier(); } break; @@ -12667,9 +12761,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2740; + this.state = 2751; this.match(ImpalaSqlParser.KW_USER); - this.state = 2741; + this.state = 2752; this.identifier(); } break; @@ -12677,9 +12771,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2742; + this.state = 2753; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2743; + this.state = 2754; this.identifier(); } break; @@ -12703,16 +12797,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 370, ImpalaSqlParser.RULE_identifier); try { - this.state = 2751; + this.state = 2762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2746; + this.state = 2757; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12720,7 +12814,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2747; + this.state = 2758; this.match(ImpalaSqlParser.STRING); } break; @@ -12761,7 +12855,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2748; + this.state = 2759; this.nonReserved(); } break; @@ -12769,7 +12863,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2749; + this.state = 2760; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12777,7 +12871,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2750; + this.state = 2761; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12801,27 +12895,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 372, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2765; + this.state = 2776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2754; + this.state = 2765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2753; + this.state = 2764; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2756; + this.state = 2767; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12829,17 +12923,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2758; + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2757; + this.state = 2768; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2760; + this.state = 2771; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12847,17 +12941,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2762; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2761; + this.state = 2772; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2764; + this.state = 2775; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12879,12 +12973,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 366, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 374, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2778; _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)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -12911,12 +13005,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 368, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 376, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2780; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -12946,17 +13040,17 @@ export class ImpalaSqlParser extends SQLParserBase { switch (ruleIndex) { case 96: return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); - case 132: + case 133: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 142: + case 145: return this.relation_sempred(localContext as RelationContext, predIndex); - case 155: + case 158: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 157: + case 160: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 158: + case 161: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 166: + case 169: return this.type_sempred(localContext as TypeContext, predIndex); } return true; @@ -13022,7 +13116,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,289,2772,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,289,2783,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, @@ -13052,1163 +13146,1167 @@ export class ImpalaSqlParser extends SQLParserBase { 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,1,0,5,0,372,8,0, - 10,0,12,0,375,9,0,1,0,1,0,1,1,1,1,3,1,381,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,405,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,418,8,4,1,5,1,5,3,5,422,8,5,1,5,1,5,3,5,426,8,5,1,5,1,5,1,5,1, - 5,1,5,5,5,433,8,5,10,5,12,5,436,9,5,1,5,1,5,3,5,440,8,5,1,5,1,5, - 3,5,444,8,5,1,5,1,5,1,5,1,5,3,5,450,8,5,3,5,452,8,5,1,5,1,5,1,5, - 3,5,457,8,5,1,6,1,6,3,6,461,8,6,1,6,1,6,3,6,465,8,6,1,6,1,6,1,6, - 1,6,1,6,3,6,472,8,6,1,6,1,6,1,6,3,6,477,8,6,1,6,1,6,1,7,1,7,3,7, - 483,8,7,1,7,1,7,3,7,487,8,7,1,7,1,7,1,7,1,7,1,7,5,7,494,8,7,10,7, - 12,7,497,9,7,1,7,1,7,1,7,1,7,3,7,503,8,7,1,7,1,7,3,7,507,8,7,1,7, - 1,7,1,7,3,7,512,8,7,3,7,514,8,7,1,7,1,7,1,7,3,7,519,8,7,1,7,3,7, - 522,8,7,1,7,1,7,1,7,1,7,1,7,3,7,529,8,7,1,7,1,7,3,7,533,8,7,1,8, - 1,8,1,8,3,8,538,8,8,1,8,1,8,3,8,542,8,8,1,8,3,8,545,8,8,1,8,1,8, - 3,8,549,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,557,8,9,1,9,1,9,3,9,561, - 8,9,1,9,1,9,3,9,565,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,573,8, - 11,1,11,1,11,3,11,577,8,11,1,11,1,11,1,11,1,11,1,11,5,11,584,8,11, - 10,11,12,11,587,9,11,3,11,589,8,11,1,11,3,11,592,8,11,1,11,1,11, - 1,11,1,11,3,11,598,8,11,1,11,1,11,1,11,1,11,1,11,3,11,605,8,11,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,616,8,11,1,11,1, - 11,1,11,3,11,621,8,11,1,11,1,11,1,11,3,11,626,8,11,1,11,1,11,1,11, - 3,11,631,8,11,1,12,1,12,1,12,3,12,636,8,12,1,12,1,12,1,12,1,12,1, - 12,5,12,643,8,12,10,12,12,12,646,9,12,3,12,648,8,12,1,12,3,12,651, - 8,12,1,12,1,12,3,12,655,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, + 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,1,0,5,0,380,8,0,10,0,12,0,383,9,0, + 1,0,1,0,1,1,1,1,3,1,389,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,413,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,426,8,4,1,5,1,5, + 3,5,430,8,5,1,5,1,5,3,5,434,8,5,1,5,1,5,1,5,1,5,1,5,5,5,441,8,5, + 10,5,12,5,444,9,5,1,5,1,5,3,5,448,8,5,1,5,1,5,3,5,452,8,5,1,5,1, + 5,1,5,1,5,3,5,458,8,5,3,5,460,8,5,1,5,1,5,1,5,3,5,465,8,5,1,6,1, + 6,3,6,469,8,6,1,6,1,6,3,6,473,8,6,1,6,1,6,1,6,1,6,1,6,3,6,480,8, + 6,1,6,1,6,1,6,3,6,485,8,6,1,6,1,6,1,7,1,7,3,7,491,8,7,1,7,1,7,3, + 7,495,8,7,1,7,1,7,1,7,1,7,1,7,5,7,502,8,7,10,7,12,7,505,9,7,1,7, + 1,7,1,7,1,7,3,7,511,8,7,1,7,1,7,3,7,515,8,7,1,7,1,7,1,7,3,7,520, + 8,7,3,7,522,8,7,1,7,1,7,1,7,3,7,527,8,7,1,7,3,7,530,8,7,1,7,1,7, + 1,7,1,7,1,7,3,7,537,8,7,1,7,1,7,3,7,541,8,7,1,8,1,8,1,8,3,8,546, + 8,8,1,8,1,8,3,8,550,8,8,1,8,3,8,553,8,8,1,8,1,8,3,8,557,8,8,1,8, + 1,8,1,8,1,9,1,9,1,9,3,9,565,8,9,1,9,1,9,3,9,569,8,9,1,9,1,9,3,9, + 573,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,581,8,11,1,11,1,11,3, + 11,585,8,11,1,11,1,11,1,11,1,11,1,11,5,11,592,8,11,10,11,12,11,595, + 9,11,3,11,597,8,11,1,11,3,11,600,8,11,1,11,1,11,1,11,1,11,3,11,606, + 8,11,1,11,1,11,1,11,1,11,1,11,3,11,613,8,11,1,11,1,11,1,11,1,11, + 1,11,1,11,1,11,1,11,1,11,3,11,624,8,11,1,11,1,11,1,11,3,11,629,8, + 11,1,11,1,11,1,11,3,11,634,8,11,1,11,1,11,1,11,3,11,639,8,11,1,12, + 1,12,1,12,3,12,644,8,12,1,12,1,12,1,12,1,12,1,12,5,12,651,8,12,10, + 12,12,12,654,9,12,3,12,656,8,12,1,12,3,12,659,8,12,1,12,1,12,3,12, + 663,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, - 1,13,1,13,1,13,1,13,3,13,681,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,707,8,15,1,15,1,15,1,16,1,16,1,16, - 1,16,1,16,3,16,716,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, - 3,16,726,8,16,1,16,3,16,729,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,743,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,761, - 8,20,3,20,763,8,20,1,20,1,20,1,20,1,20,1,20,5,20,770,8,20,10,20, - 12,20,773,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,783, - 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,792,8,22,1,22,1,22, - 1,22,1,22,1,22,3,22,799,8,22,1,22,1,22,3,22,803,8,22,1,23,1,23,1, - 23,1,23,1,23,3,23,810,8,23,1,23,1,23,1,23,1,23,3,23,816,8,23,1,23, - 3,23,819,8,23,1,23,1,23,1,23,3,23,824,8,23,1,24,1,24,1,24,1,24,1, - 24,3,24,831,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,845,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,858,8,26,1,26,1,26,1,26,3,26,863,8,26,1,26, - 1,26,1,26,3,26,868,8,26,1,27,1,27,1,27,1,27,3,27,874,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,910,8,32,1,32,3,32,913,8,32, - 1,32,1,32,1,33,1,33,3,33,919,8,33,1,33,3,33,922,8,33,1,33,1,33,1, - 34,1,34,3,34,928,8,34,1,35,1,35,1,35,1,35,3,35,934,8,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,946,8,35,3,35,948,8, - 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,959,8,36,1, - 37,1,37,1,37,1,37,1,37,1,37,3,37,967,8,37,1,38,1,38,1,38,3,38,972, - 8,38,1,38,1,38,3,38,976,8,38,1,39,1,39,1,39,3,39,981,8,39,1,39,1, - 39,1,40,1,40,1,40,3,40,988,8,40,1,40,1,40,3,40,992,8,40,1,41,1,41, - 3,41,996,8,41,1,41,1,41,1,41,1,41,3,41,1002,8,41,1,42,1,42,3,42, - 1006,8,42,1,42,1,42,3,42,1010,8,42,1,42,1,42,1,42,1,42,1,42,5,42, - 1017,8,42,10,42,12,42,1020,9,42,3,42,1022,8,42,1,42,3,42,1025,8, - 42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1033,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,1047,8,46,1,46,1, - 46,1,46,1,47,1,47,3,47,1054,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,1067,8,49,1,49,1,49,1,49,1,49,3,49,1073, - 8,49,1,49,1,49,1,49,3,49,1078,8,49,1,49,3,49,1081,8,49,1,50,3,50, - 1084,8,50,1,50,1,50,1,50,3,50,1089,8,50,1,50,1,50,3,50,1093,8,50, - 1,50,1,50,1,50,1,50,1,50,5,50,1100,8,50,10,50,12,50,1103,9,50,1, - 50,1,50,3,50,1107,8,50,1,50,1,50,1,51,1,51,3,51,1113,8,51,1,52,1, - 52,3,52,1117,8,52,1,52,1,52,1,52,3,52,1122,8,52,1,53,1,53,1,53,3, - 53,1127,8,53,1,53,3,53,1130,8,53,1,53,1,53,1,53,1,53,5,53,1136,8, - 53,10,53,12,53,1139,9,53,3,53,1141,8,53,1,53,1,53,3,53,1145,8,53, - 1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1155,8,54,10,54,12, - 54,1158,9,54,3,54,1160,8,54,1,54,1,54,3,54,1164,8,54,1,55,1,55,1, - 55,3,55,1169,8,55,1,55,1,55,3,55,1173,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,1189,8,56,1, - 57,1,57,1,57,3,57,1194,8,57,1,57,1,57,1,57,5,57,1199,8,57,10,57, - 12,57,1202,9,57,3,57,1204,8,57,1,58,1,58,1,58,1,58,3,58,1210,8,58, - 1,58,3,58,1213,8,58,1,58,1,58,1,58,5,58,1218,8,58,10,58,12,58,1221, - 9,58,3,58,1223,8,58,1,59,1,59,3,59,1227,8,59,1,59,1,59,1,59,3,59, - 1232,8,59,1,59,3,59,1235,8,59,1,59,1,59,1,59,5,59,1240,8,59,10,59, - 12,59,1243,9,59,3,59,1245,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,1269,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,1283,8,65,1,65,1,65,3,65,1287,8,65,1,66, - 1,66,3,66,1291,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,1311,8,68,3,68, - 1313,8,68,3,68,1315,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1324,8,69,3,69,1326,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, - 1335,8,70,3,70,1337,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71, - 1346,8,71,3,71,1348,8,71,1,72,1,72,1,72,3,72,1353,8,72,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,3,73,1362,8,73,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,3,74,1371,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75, - 1380,8,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1391, - 8,77,1,78,1,78,1,78,1,78,3,78,1397,8,78,1,78,1,78,1,78,3,78,1402, - 8,78,1,78,3,78,1405,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,1418,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,3,80,1428,8,80,1,80,1,80,3,80,1432,8,80,1,81,1,81,1,81,3,81, - 1437,8,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,1446,8,82,10,82, - 12,82,1449,9,82,1,82,1,82,3,82,1453,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,1484, - 8,93,10,93,12,93,1487,9,93,1,94,1,94,1,94,5,94,1492,8,94,10,94,12, - 94,1495,9,94,1,95,1,95,3,95,1499,8,95,1,96,1,96,3,96,1503,8,96,1, - 97,1,97,3,97,1507,8,97,1,98,1,98,1,98,3,98,1512,8,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,1,98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98, - 1,98,3,98,1550,8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558, - 9,99,1,100,1,100,1,100,1,100,1,101,1,101,3,101,1566,8,101,1,101, - 1,101,3,101,1570,8,101,5,101,1572,8,101,10,101,12,101,1575,9,101, - 1,101,1,101,1,102,1,102,3,102,1581,8,102,1,103,3,103,1584,8,103, - 1,103,1,103,1,104,1,104,1,104,1,104,5,104,1592,8,104,10,104,12,104, - 1595,9,104,1,105,1,105,1,105,1,105,3,105,1601,8,105,1,105,1,105, - 1,105,3,105,1606,8,105,1,105,1,105,1,105,3,105,1611,8,105,1,105, - 1,105,1,105,3,105,1616,8,105,1,105,1,105,5,105,1620,8,105,10,105, - 12,105,1623,9,105,3,105,1625,8,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,3,106,1634,8,106,1,106,3,106,1637,8,106,1,106,3,106, - 1640,8,106,1,107,1,107,1,107,1,107,3,107,1646,8,107,1,108,1,108, - 1,108,3,108,1651,8,108,1,109,1,109,1,110,1,110,1,110,1,110,5,110, - 1659,8,110,10,110,12,110,1662,9,110,3,110,1664,8,110,1,110,3,110, - 1667,8,110,1,110,1,110,3,110,1671,8,110,1,111,1,111,1,111,1,112, - 1,112,1,112,5,112,1679,8,112,10,112,12,112,1682,9,112,3,112,1684, - 8,112,1,113,1,113,1,113,1,113,3,113,1690,8,113,1,113,1,113,5,113, - 1694,8,113,10,113,12,113,1697,9,113,3,113,1699,8,113,1,114,3,114, - 1702,8,114,1,114,1,114,3,114,1706,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,1,115,3,115,1716,8,115,1,116,1,116,1,117,1,117, - 1,118,1,118,1,118,5,118,1725,8,118,10,118,12,118,1728,9,118,1,118, - 1,118,3,118,1732,8,118,1,118,3,118,1735,8,118,1,119,1,119,3,119, - 1739,8,119,1,119,1,119,1,119,1,120,1,120,3,120,1746,8,120,1,120, - 1,120,1,120,1,120,1,120,1,120,5,120,1754,8,120,10,120,12,120,1757, - 9,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 1768,8,121,1,121,1,121,1,121,1,121,3,121,1774,8,121,3,121,1776,8, - 121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1785,8,122,1, - 122,3,122,1788,8,122,1,123,1,123,1,123,1,123,1,123,3,123,1795,8, - 123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1805,8, - 124,1,125,1,125,1,125,1,125,3,125,1811,8,125,1,126,1,126,1,126,1, - 126,5,126,1817,8,126,10,126,12,126,1820,9,126,1,126,1,126,1,127, - 1,127,1,127,1,127,5,127,1828,8,127,10,127,12,127,1831,9,127,1,127, - 1,127,1,128,1,128,1,128,5,128,1838,8,128,10,128,12,128,1841,9,128, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1851,8,129, - 3,129,1853,8,129,1,129,1,129,1,129,1,129,3,129,1859,8,129,1,130, - 1,130,1,130,3,130,1864,8,130,1,131,1,131,1,131,1,131,1,131,1,131, - 5,131,1872,8,131,10,131,12,131,1875,9,131,3,131,1877,8,131,1,131, - 1,131,1,131,1,131,3,131,1883,8,131,3,131,1885,8,131,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1893,8,132,1,132,1,132,1,132,1,132, - 3,132,1899,8,132,1,132,5,132,1902,8,132,10,132,12,132,1905,9,132, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1914,8,133,10,133, - 12,133,1917,9,133,1,133,1,133,1,133,1,133,3,133,1923,8,133,1,134, - 1,134,3,134,1927,8,134,1,134,1,134,3,134,1931,8,134,1,135,1,135, - 3,135,1935,8,135,1,135,3,135,1938,8,135,1,135,1,135,1,135,5,135, - 1943,8,135,10,135,12,135,1946,9,135,1,135,1,135,1,135,1,135,5,135, - 1952,8,135,10,135,12,135,1955,9,135,3,135,1957,8,135,1,135,1,135, - 3,135,1961,8,135,1,135,1,135,1,135,3,135,1966,8,135,1,135,1,135, - 3,135,1970,8,135,1,136,3,136,1973,8,136,1,136,1,136,1,136,5,136, - 1978,8,136,10,136,12,136,1981,9,136,1,137,1,137,1,138,1,138,1,138, - 1,138,5,138,1989,8,138,10,138,12,138,1992,9,138,3,138,1994,8,138, - 1,138,1,138,3,138,1998,8,138,1,139,1,139,3,139,2002,8,139,1,139, - 1,139,1,139,1,140,1,140,1,141,1,141,3,141,2011,8,141,1,141,3,141, - 2014,8,141,1,141,1,141,1,141,1,141,1,141,3,141,2021,8,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,2035,8,142,5,142,2037,8,142,10,142,12,142,2040,9,142,1,143, - 3,143,2043,8,143,1,143,1,143,3,143,2047,8,143,1,143,1,143,3,143, - 2051,8,143,1,143,1,143,3,143,2055,8,143,1,143,1,143,3,143,2059,8, - 143,1,143,1,143,3,143,2063,8,143,1,143,1,143,1,143,1,143,1,143,1, - 143,1,143,1,143,3,143,2073,8,143,1,144,1,144,1,144,1,144,1,144,1, - 144,1,144,5,144,2082,8,144,10,144,12,144,2085,9,144,1,144,1,144, - 3,144,2089,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2102,8,145,3,145,2104,8,145,1,146,1,146, - 1,147,1,147,3,147,2110,8,147,1,147,1,147,3,147,2114,8,147,3,147, - 2116,8,147,1,148,1,148,1,148,1,148,5,148,2122,8,148,10,148,12,148, - 2125,9,148,1,148,1,148,1,149,1,149,3,149,2131,8,149,1,149,1,149, - 1,149,3,149,2136,8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151, - 1,151,1,151,5,151,2147,8,151,10,151,12,151,2150,9,151,1,151,1,151, - 1,151,3,151,2155,8,151,1,152,1,152,1,152,1,152,1,153,1,153,3,153, - 2163,8,153,1,154,1,154,1,155,1,155,1,155,3,155,2170,8,155,1,155, - 1,155,3,155,2174,8,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155, - 2182,8,155,10,155,12,155,2185,9,155,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2195,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,3,156,2203,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2210, - 8,156,10,156,12,156,2213,9,156,1,156,1,156,1,156,3,156,2218,8,156, - 1,156,1,156,1,156,3,156,2223,8,156,1,156,1,156,1,156,1,156,3,156, - 2229,8,156,1,156,1,156,1,156,1,156,3,156,2235,8,156,1,156,1,156, - 1,156,3,156,2240,8,156,1,156,1,156,1,156,3,156,2245,8,156,1,157, - 1,157,1,157,1,157,3,157,2251,8,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,5,157,2262,8,157,10,157,12,157,2265,9,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,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,2291,8,158,1,158,1,158,1,158,1,158,3,158,2297, - 8,158,5,158,2299,8,158,10,158,12,158,2302,9,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,5,158,2311,8,158,10,158,12,158,2314,9,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,2323,8,158,1,158, - 3,158,2326,8,158,1,158,1,158,1,158,3,158,2331,8,158,1,158,1,158, - 1,158,5,158,2336,8,158,10,158,12,158,2339,9,158,3,158,2341,8,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2348,8,158,10,158,12,158,2351, - 9,158,3,158,2353,8,158,1,158,1,158,3,158,2357,8,158,1,158,3,158, - 2360,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158, - 2370,8,158,10,158,12,158,2373,9,158,3,158,2375,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,4,158,2392,8,158,11,158,12,158,2393,1,158,1,158,3,158, - 2398,8,158,1,158,1,158,1,158,1,158,4,158,2404,8,158,11,158,12,158, - 2405,1,158,1,158,3,158,2410,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,1,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2433,8,158,10,158,12,158,2436, - 9,158,3,158,2438,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2447,8,158,1,158,1,158,1,158,1,158,3,158,2453,8,158,1,158, - 1,158,1,158,1,158,3,158,2459,8,158,1,158,1,158,1,158,1,158,3,158, - 2465,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2476,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, - 2485,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,1,158,1,158,1,158,5,158,2505, - 8,158,10,158,12,158,2508,9,158,3,158,2510,8,158,1,158,3,158,2513, - 8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2523, - 8,158,10,158,12,158,2526,9,158,1,159,1,159,1,159,1,159,3,159,2532, - 8,159,3,159,2534,8,159,1,160,1,160,1,161,1,161,1,162,1,162,1,163, - 1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, - 1,163,1,163,3,163,2556,8,163,1,164,1,164,1,165,1,165,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166,2583,8,166, - 10,166,12,166,2586,9,166,1,166,1,166,1,166,1,166,3,166,2592,8,166, - 1,166,1,166,1,166,1,166,5,166,2598,8,166,10,166,12,166,2601,9,166, - 1,166,1,166,3,166,2605,8,166,3,166,2607,8,166,1,166,1,166,5,166, - 2611,8,166,10,166,12,166,2614,9,166,1,167,1,167,1,168,1,168,3,168, - 2620,8,168,1,169,1,169,1,169,1,169,3,169,2626,8,169,1,170,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172, - 1,172,1,172,1,172,1,172,1,172,5,172,2646,8,172,10,172,12,172,2649, - 9,172,3,172,2651,8,172,1,172,1,172,1,172,1,172,1,172,5,172,2658, - 8,172,10,172,12,172,2661,9,172,3,172,2663,8,172,1,172,3,172,2666, - 8,172,1,172,1,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,1,173,1,173,3,173,2686,8,173, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2697, - 8,174,1,175,1,175,1,175,1,175,1,175,3,175,2704,8,175,1,176,1,176, - 1,176,5,176,2709,8,176,10,176,12,176,2712,9,176,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2725,8,177, - 3,177,2727,8,177,1,178,1,178,1,179,1,179,1,179,5,179,2734,8,179, - 10,179,12,179,2737,9,179,1,180,1,180,1,180,1,180,1,180,1,180,3,180, - 2745,8,180,1,181,1,181,1,181,1,181,1,181,3,181,2752,8,181,1,182, - 3,182,2755,8,182,1,182,1,182,3,182,2759,8,182,1,182,1,182,3,182, - 2763,8,182,1,182,3,182,2766,8,182,1,183,1,183,1,184,1,184,1,184, - 10,771,1447,1621,1660,1680,1695,1726,1755,1829,2300,6,264,284,310, - 314,316,332,185,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,0,33,2,0, - 46,46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69, - 80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2, - 0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245, - 248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10, - 10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, - 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, - 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, - 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, - 130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178,178,188,188, - 209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114,114,122,122, - 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, - 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, - 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, - 195,204,204,213,213,217,217,220,220,231,231,3093,0,373,1,0,0,0,2, - 378,1,0,0,0,4,404,1,0,0,0,6,406,1,0,0,0,8,417,1,0,0,0,10,419,1,0, - 0,0,12,458,1,0,0,0,14,480,1,0,0,0,16,534,1,0,0,0,18,553,1,0,0,0, - 20,566,1,0,0,0,22,570,1,0,0,0,24,632,1,0,0,0,26,680,1,0,0,0,28,682, - 1,0,0,0,30,690,1,0,0,0,32,710,1,0,0,0,34,730,1,0,0,0,36,737,1,0, - 0,0,38,746,1,0,0,0,40,754,1,0,0,0,42,776,1,0,0,0,44,786,1,0,0,0, - 46,804,1,0,0,0,48,825,1,0,0,0,50,846,1,0,0,0,52,852,1,0,0,0,54,869, - 1,0,0,0,56,878,1,0,0,0,58,885,1,0,0,0,60,893,1,0,0,0,62,900,1,0, - 0,0,64,907,1,0,0,0,66,916,1,0,0,0,68,927,1,0,0,0,70,929,1,0,0,0, - 72,949,1,0,0,0,74,966,1,0,0,0,76,968,1,0,0,0,78,977,1,0,0,0,80,984, - 1,0,0,0,82,993,1,0,0,0,84,1003,1,0,0,0,86,1026,1,0,0,0,88,1032,1, - 0,0,0,90,1034,1,0,0,0,92,1041,1,0,0,0,94,1053,1,0,0,0,96,1055,1, - 0,0,0,98,1062,1,0,0,0,100,1083,1,0,0,0,102,1112,1,0,0,0,104,1114, - 1,0,0,0,106,1123,1,0,0,0,108,1146,1,0,0,0,110,1165,1,0,0,0,112,1188, - 1,0,0,0,114,1190,1,0,0,0,116,1205,1,0,0,0,118,1224,1,0,0,0,120,1246, - 1,0,0,0,122,1251,1,0,0,0,124,1256,1,0,0,0,126,1261,1,0,0,0,128,1266, - 1,0,0,0,130,1273,1,0,0,0,132,1288,1,0,0,0,134,1294,1,0,0,0,136,1314, - 1,0,0,0,138,1316,1,0,0,0,140,1327,1,0,0,0,142,1338,1,0,0,0,144,1352, - 1,0,0,0,146,1354,1,0,0,0,148,1363,1,0,0,0,150,1372,1,0,0,0,152,1381, - 1,0,0,0,154,1384,1,0,0,0,156,1392,1,0,0,0,158,1408,1,0,0,0,160,1412, - 1,0,0,0,162,1436,1,0,0,0,164,1438,1,0,0,0,166,1454,1,0,0,0,168,1457, - 1,0,0,0,170,1461,1,0,0,0,172,1464,1,0,0,0,174,1468,1,0,0,0,176,1470, - 1,0,0,0,178,1472,1,0,0,0,180,1474,1,0,0,0,182,1476,1,0,0,0,184,1478, - 1,0,0,0,186,1480,1,0,0,0,188,1488,1,0,0,0,190,1498,1,0,0,0,192,1502, - 1,0,0,0,194,1506,1,0,0,0,196,1511,1,0,0,0,198,1551,1,0,0,0,200,1559, - 1,0,0,0,202,1563,1,0,0,0,204,1578,1,0,0,0,206,1583,1,0,0,0,208,1587, - 1,0,0,0,210,1596,1,0,0,0,212,1626,1,0,0,0,214,1641,1,0,0,0,216,1647, - 1,0,0,0,218,1652,1,0,0,0,220,1654,1,0,0,0,222,1672,1,0,0,0,224,1675, - 1,0,0,0,226,1685,1,0,0,0,228,1705,1,0,0,0,230,1715,1,0,0,0,232,1717, - 1,0,0,0,234,1719,1,0,0,0,236,1734,1,0,0,0,238,1736,1,0,0,0,240,1743, - 1,0,0,0,242,1775,1,0,0,0,244,1787,1,0,0,0,246,1794,1,0,0,0,248,1804, - 1,0,0,0,250,1806,1,0,0,0,252,1812,1,0,0,0,254,1823,1,0,0,0,256,1834, - 1,0,0,0,258,1842,1,0,0,0,260,1860,1,0,0,0,262,1865,1,0,0,0,264,1886, - 1,0,0,0,266,1922,1,0,0,0,268,1924,1,0,0,0,270,1932,1,0,0,0,272,1972, - 1,0,0,0,274,1982,1,0,0,0,276,1997,1,0,0,0,278,1999,1,0,0,0,280,2006, - 1,0,0,0,282,2020,1,0,0,0,284,2022,1,0,0,0,286,2072,1,0,0,0,288,2088, - 1,0,0,0,290,2090,1,0,0,0,292,2105,1,0,0,0,294,2107,1,0,0,0,296,2117, - 1,0,0,0,298,2135,1,0,0,0,300,2137,1,0,0,0,302,2141,1,0,0,0,304,2156, - 1,0,0,0,306,2162,1,0,0,0,308,2164,1,0,0,0,310,2173,1,0,0,0,312,2244, - 1,0,0,0,314,2250,1,0,0,0,316,2512,1,0,0,0,318,2533,1,0,0,0,320,2535, - 1,0,0,0,322,2537,1,0,0,0,324,2539,1,0,0,0,326,2555,1,0,0,0,328,2557, - 1,0,0,0,330,2559,1,0,0,0,332,2606,1,0,0,0,334,2615,1,0,0,0,336,2619, - 1,0,0,0,338,2625,1,0,0,0,340,2627,1,0,0,0,342,2632,1,0,0,0,344,2638, - 1,0,0,0,346,2685,1,0,0,0,348,2696,1,0,0,0,350,2703,1,0,0,0,352,2705, - 1,0,0,0,354,2726,1,0,0,0,356,2728,1,0,0,0,358,2730,1,0,0,0,360,2744, - 1,0,0,0,362,2751,1,0,0,0,364,2765,1,0,0,0,366,2767,1,0,0,0,368,2769, - 1,0,0,0,370,372,3,2,1,0,371,370,1,0,0,0,372,375,1,0,0,0,373,371, - 1,0,0,0,373,374,1,0,0,0,374,376,1,0,0,0,375,373,1,0,0,0,376,377, - 5,0,0,1,377,1,1,0,0,0,378,380,3,4,2,0,379,381,5,262,0,0,380,379, - 1,0,0,0,380,381,1,0,0,0,381,3,1,0,0,0,382,405,3,206,103,0,383,405, - 3,6,3,0,384,405,3,8,4,0,385,405,3,26,13,0,386,405,3,64,32,0,387, - 405,3,66,33,0,388,405,3,68,34,0,389,405,3,74,37,0,390,405,3,88,44, - 0,391,405,3,94,47,0,392,405,3,100,50,0,393,405,3,102,51,0,394,405, - 3,108,54,0,395,405,3,110,55,0,396,405,3,112,56,0,397,405,3,144,72, - 0,398,405,3,152,76,0,399,405,3,154,77,0,400,405,3,156,78,0,401,405, - 3,158,79,0,402,405,3,160,80,0,403,405,3,162,81,0,404,382,1,0,0,0, - 404,383,1,0,0,0,404,384,1,0,0,0,404,385,1,0,0,0,404,386,1,0,0,0, - 404,387,1,0,0,0,404,388,1,0,0,0,404,389,1,0,0,0,404,390,1,0,0,0, - 404,391,1,0,0,0,404,392,1,0,0,0,404,393,1,0,0,0,404,394,1,0,0,0, - 404,395,1,0,0,0,404,396,1,0,0,0,404,397,1,0,0,0,404,398,1,0,0,0, - 404,399,1,0,0,0,404,400,1,0,0,0,404,401,1,0,0,0,404,402,1,0,0,0, - 404,403,1,0,0,0,405,5,1,0,0,0,406,407,5,203,0,0,407,408,3,184,92, - 0,408,7,1,0,0,0,409,418,3,18,9,0,410,418,3,20,10,0,411,418,3,22, - 11,0,412,418,3,24,12,0,413,418,3,16,8,0,414,418,3,14,7,0,415,418, - 3,12,6,0,416,418,3,10,5,0,417,409,1,0,0,0,417,410,1,0,0,0,417,411, - 1,0,0,0,417,412,1,0,0,0,417,413,1,0,0,0,417,414,1,0,0,0,417,415, - 1,0,0,0,417,416,1,0,0,0,418,9,1,0,0,0,419,421,5,37,0,0,420,422,5, - 19,0,0,421,420,1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,425,5, - 188,0,0,424,426,3,172,86,0,425,424,1,0,0,0,425,426,1,0,0,0,426,427, - 1,0,0,0,427,443,3,174,87,0,428,429,5,265,0,0,429,434,3,216,108,0, - 430,431,5,263,0,0,431,433,3,216,108,0,432,430,1,0,0,0,433,436,1, - 0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436,434,1, - 0,0,0,437,438,5,263,0,0,438,440,3,210,105,0,439,437,1,0,0,0,439, - 440,1,0,0,0,440,441,1,0,0,0,441,442,5,266,0,0,442,444,1,0,0,0,443, - 428,1,0,0,0,443,444,1,0,0,0,444,451,1,0,0,0,445,446,5,17,0,0,446, - 449,5,26,0,0,447,450,3,296,148,0,448,450,3,254,127,0,449,447,1,0, - 0,0,449,448,1,0,0,0,450,452,1,0,0,0,451,445,1,0,0,0,451,452,1,0, - 0,0,452,453,1,0,0,0,453,456,3,196,98,0,454,455,5,9,0,0,455,457,3, - 206,103,0,456,454,1,0,0,0,456,457,1,0,0,0,457,11,1,0,0,0,458,460, - 5,37,0,0,459,461,5,19,0,0,460,459,1,0,0,0,460,461,1,0,0,0,461,462, - 1,0,0,0,462,464,5,188,0,0,463,465,3,172,86,0,464,463,1,0,0,0,464, - 465,1,0,0,0,465,466,1,0,0,0,466,467,3,174,87,0,467,471,5,115,0,0, - 468,472,3,186,93,0,469,470,5,147,0,0,470,472,3,318,159,0,471,468, - 1,0,0,0,471,469,1,0,0,0,472,476,1,0,0,0,473,474,5,17,0,0,474,475, - 5,26,0,0,475,477,3,254,127,0,476,473,1,0,0,0,476,477,1,0,0,0,477, - 478,1,0,0,0,478,479,3,196,98,0,479,13,1,0,0,0,480,482,5,37,0,0,481, - 483,5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484, - 486,5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0, - 487,488,1,0,0,0,488,506,3,174,87,0,489,490,5,265,0,0,490,495,3,218, - 109,0,491,492,5,263,0,0,492,494,3,218,109,0,493,491,1,0,0,0,494, - 497,1,0,0,0,495,493,1,0,0,0,495,496,1,0,0,0,496,502,1,0,0,0,497, - 495,1,0,0,0,498,499,5,263,0,0,499,500,5,150,0,0,500,501,5,110,0, - 0,501,503,3,296,148,0,502,498,1,0,0,0,502,503,1,0,0,0,503,504,1, - 0,0,0,504,505,5,266,0,0,505,507,1,0,0,0,506,489,1,0,0,0,506,507, - 1,0,0,0,507,513,1,0,0,0,508,509,5,150,0,0,509,511,5,110,0,0,510, - 512,3,296,148,0,511,510,1,0,0,0,511,512,1,0,0,0,512,514,1,0,0,0, - 513,508,1,0,0,0,513,514,1,0,0,0,514,518,1,0,0,0,515,516,5,145,0, - 0,516,517,5,26,0,0,517,519,3,236,118,0,518,515,1,0,0,0,518,519,1, - 0,0,0,519,521,1,0,0,0,520,522,3,222,111,0,521,520,1,0,0,0,521,522, - 1,0,0,0,522,523,1,0,0,0,523,524,5,23,0,0,524,525,5,9,0,0,525,528, - 5,111,0,0,526,527,5,25,0,0,527,529,3,252,126,0,528,526,1,0,0,0,528, - 529,1,0,0,0,529,532,1,0,0,0,530,531,5,9,0,0,531,533,3,206,103,0, - 532,530,1,0,0,0,532,533,1,0,0,0,533,15,1,0,0,0,534,535,5,37,0,0, - 535,537,5,212,0,0,536,538,3,172,86,0,537,536,1,0,0,0,537,538,1,0, - 0,0,538,539,1,0,0,0,539,541,3,178,89,0,540,542,3,202,101,0,541,540, - 1,0,0,0,541,542,1,0,0,0,542,544,1,0,0,0,543,545,3,222,111,0,544, - 543,1,0,0,0,544,545,1,0,0,0,545,548,1,0,0,0,546,547,5,25,0,0,547, - 549,3,252,126,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0, - 550,551,5,9,0,0,551,552,3,206,103,0,552,17,1,0,0,0,553,554,5,37, - 0,0,554,556,7,0,0,0,555,557,3,172,86,0,556,555,1,0,0,0,556,557,1, - 0,0,0,557,558,1,0,0,0,558,560,3,176,88,0,559,561,3,222,111,0,560, - 559,1,0,0,0,560,561,1,0,0,0,561,564,1,0,0,0,562,563,5,24,0,0,563, - 565,3,318,159,0,564,562,1,0,0,0,564,565,1,0,0,0,565,19,1,0,0,0,566, - 567,5,37,0,0,567,568,5,166,0,0,568,569,3,362,181,0,569,21,1,0,0, - 0,570,572,5,37,0,0,571,573,5,12,0,0,572,571,1,0,0,0,572,573,1,0, - 0,0,573,574,1,0,0,0,574,576,5,84,0,0,575,577,3,172,86,0,576,575, - 1,0,0,0,576,577,1,0,0,0,577,578,1,0,0,0,578,591,3,180,90,0,579,588, - 5,265,0,0,580,585,3,332,166,0,581,582,5,263,0,0,582,584,3,332,166, - 0,583,581,1,0,0,0,584,587,1,0,0,0,585,583,1,0,0,0,585,586,1,0,0, - 0,586,589,1,0,0,0,587,585,1,0,0,0,588,580,1,0,0,0,588,589,1,0,0, - 0,589,590,1,0,0,0,590,592,5,266,0,0,591,579,1,0,0,0,591,592,1,0, - 0,0,592,593,1,0,0,0,593,594,5,160,0,0,594,597,3,332,166,0,595,596, - 5,102,0,0,596,598,3,332,166,0,597,595,1,0,0,0,597,598,1,0,0,0,598, - 599,1,0,0,0,599,600,5,24,0,0,600,604,5,274,0,0,601,602,5,104,0,0, - 602,603,5,249,0,0,603,605,5,274,0,0,604,601,1,0,0,0,604,605,1,0, - 0,0,605,606,1,0,0,0,606,607,5,206,0,0,607,608,5,249,0,0,608,609, - 5,274,0,0,609,610,5,126,0,0,610,611,5,249,0,0,611,615,5,274,0,0, - 612,613,5,18,0,0,613,614,5,249,0,0,614,616,5,274,0,0,615,612,1,0, - 0,0,615,616,1,0,0,0,616,620,1,0,0,0,617,618,5,20,0,0,618,619,5,249, - 0,0,619,621,5,274,0,0,620,617,1,0,0,0,620,621,1,0,0,0,621,625,1, - 0,0,0,622,623,5,187,0,0,623,624,5,249,0,0,624,626,5,274,0,0,625, - 622,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,628,5,76,0,0,628, - 629,5,249,0,0,629,631,5,274,0,0,630,627,1,0,0,0,630,631,1,0,0,0, - 631,23,1,0,0,0,632,633,5,37,0,0,633,635,5,84,0,0,634,636,3,172,86, - 0,635,634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,650,3,180, - 90,0,638,647,5,265,0,0,639,644,3,332,166,0,640,641,5,263,0,0,641, - 643,3,332,166,0,642,640,1,0,0,0,643,646,1,0,0,0,644,642,1,0,0,0, - 644,645,1,0,0,0,645,648,1,0,0,0,646,644,1,0,0,0,647,639,1,0,0,0, - 647,648,1,0,0,0,648,649,1,0,0,0,649,651,5,266,0,0,650,638,1,0,0, - 0,650,651,1,0,0,0,651,654,1,0,0,0,652,653,5,160,0,0,653,655,3,332, - 166,0,654,652,1,0,0,0,654,655,1,0,0,0,655,656,1,0,0,0,656,657,5, - 24,0,0,657,658,5,274,0,0,658,659,5,186,0,0,659,660,5,249,0,0,660, - 661,3,318,159,0,661,25,1,0,0,0,662,681,3,28,14,0,663,681,3,62,31, - 0,664,681,3,60,30,0,665,681,3,58,29,0,666,681,3,54,27,0,667,681, - 3,56,28,0,668,681,3,52,26,0,669,681,3,48,24,0,670,681,3,50,25,0, - 671,681,3,46,23,0,672,681,3,44,22,0,673,681,3,42,21,0,674,681,3, - 40,20,0,675,681,3,34,17,0,676,681,3,30,15,0,677,681,3,32,16,0,678, - 681,3,36,18,0,679,681,3,38,19,0,680,662,1,0,0,0,680,663,1,0,0,0, - 680,664,1,0,0,0,680,665,1,0,0,0,680,666,1,0,0,0,680,667,1,0,0,0, - 680,668,1,0,0,0,680,669,1,0,0,0,680,670,1,0,0,0,680,671,1,0,0,0, - 680,672,1,0,0,0,680,673,1,0,0,0,680,674,1,0,0,0,680,675,1,0,0,0, - 680,676,1,0,0,0,680,677,1,0,0,0,680,678,1,0,0,0,680,679,1,0,0,0, - 681,27,1,0,0,0,682,683,5,4,0,0,683,684,5,46,0,0,684,685,3,184,92, - 0,685,686,5,176,0,0,686,687,5,142,0,0,687,688,7,1,0,0,688,689,3, - 362,181,0,689,29,1,0,0,0,690,691,5,4,0,0,691,692,5,188,0,0,692,693, - 3,186,93,0,693,694,5,176,0,0,694,695,5,32,0,0,695,696,5,182,0,0, - 696,697,3,192,96,0,697,698,5,265,0,0,698,699,3,232,116,0,699,700, - 5,249,0,0,700,706,3,318,159,0,701,702,5,263,0,0,702,703,3,232,116, - 0,703,704,5,249,0,0,704,705,3,318,159,0,705,707,1,0,0,0,706,701, - 1,0,0,0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,5,266,0,0,709,31, - 1,0,0,0,710,711,5,4,0,0,711,712,5,188,0,0,712,715,3,186,93,0,713, - 714,5,145,0,0,714,716,3,308,154,0,715,713,1,0,0,0,715,716,1,0,0, - 0,716,717,1,0,0,0,717,728,5,176,0,0,718,719,5,30,0,0,719,720,5,94, - 0,0,720,725,3,318,159,0,721,722,5,216,0,0,722,723,5,151,0,0,723, - 724,5,249,0,0,724,726,3,364,182,0,725,721,1,0,0,0,725,726,1,0,0, - 0,726,729,1,0,0,0,727,729,5,197,0,0,728,718,1,0,0,0,728,727,1,0, - 0,0,729,33,1,0,0,0,730,731,5,4,0,0,731,732,5,188,0,0,732,733,3,186, - 93,0,733,734,5,31,0,0,734,735,3,192,96,0,735,736,3,224,112,0,736, - 35,1,0,0,0,737,738,5,4,0,0,738,739,5,188,0,0,739,740,3,186,93,0, - 740,742,5,58,0,0,741,743,5,32,0,0,742,741,1,0,0,0,742,743,1,0,0, - 0,743,744,1,0,0,0,744,745,3,192,96,0,745,37,1,0,0,0,746,747,5,4, - 0,0,747,748,5,188,0,0,748,749,3,186,93,0,749,750,5,176,0,0,750,751, - 5,142,0,0,751,752,7,1,0,0,752,753,3,362,181,0,753,39,1,0,0,0,754, - 755,5,4,0,0,755,756,5,188,0,0,756,762,3,186,93,0,757,763,5,158,0, - 0,758,760,5,1,0,0,759,761,3,172,86,0,760,759,1,0,0,0,760,761,1,0, - 0,0,761,763,1,0,0,0,762,757,1,0,0,0,762,758,1,0,0,0,763,764,1,0, - 0,0,764,765,5,33,0,0,765,766,5,265,0,0,766,771,3,224,112,0,767,768, - 5,263,0,0,768,770,3,224,112,0,769,767,1,0,0,0,770,773,1,0,0,0,771, - 772,1,0,0,0,771,769,1,0,0,0,772,774,1,0,0,0,773,771,1,0,0,0,774, - 775,5,266,0,0,775,41,1,0,0,0,776,777,5,4,0,0,777,778,5,188,0,0,778, - 779,3,186,93,0,779,780,5,1,0,0,780,782,5,32,0,0,781,783,3,172,86, - 0,782,781,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,3,226, - 113,0,785,43,1,0,0,0,786,787,5,4,0,0,787,788,5,188,0,0,788,789,3, - 186,93,0,789,791,5,4,0,0,790,792,5,32,0,0,791,790,1,0,0,0,791,792, - 1,0,0,0,792,793,1,0,0,0,793,802,3,192,96,0,794,798,5,176,0,0,795, - 799,3,230,115,0,796,797,5,34,0,0,797,799,3,318,159,0,798,795,1,0, - 0,0,798,796,1,0,0,0,799,803,1,0,0,0,800,801,5,58,0,0,801,803,5,51, - 0,0,802,794,1,0,0,0,802,800,1,0,0,0,803,45,1,0,0,0,804,805,5,4,0, - 0,805,806,5,188,0,0,806,807,3,186,93,0,807,809,5,1,0,0,808,810,3, - 172,86,0,809,808,1,0,0,0,809,810,1,0,0,0,810,823,1,0,0,0,811,812, - 5,145,0,0,812,815,3,308,154,0,813,814,5,24,0,0,814,816,3,318,159, - 0,815,813,1,0,0,0,815,816,1,0,0,0,816,818,1,0,0,0,817,819,3,244, - 122,0,818,817,1,0,0,0,818,819,1,0,0,0,819,824,1,0,0,0,820,821,5, - 154,0,0,821,822,5,145,0,0,822,824,3,242,121,0,823,811,1,0,0,0,823, - 820,1,0,0,0,824,47,1,0,0,0,825,826,5,4,0,0,826,827,5,188,0,0,827, - 830,3,186,93,0,828,829,5,145,0,0,829,831,3,308,154,0,830,828,1,0, - 0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,844,5,176,0,0,833,834,5, - 72,0,0,834,845,3,234,117,0,835,836,5,168,0,0,836,837,5,79,0,0,837, - 845,3,258,129,0,838,839,5,24,0,0,839,845,3,318,159,0,840,841,5,25, - 0,0,841,845,3,252,126,0,842,843,5,175,0,0,843,845,3,252,126,0,844, - 833,1,0,0,0,844,835,1,0,0,0,844,838,1,0,0,0,844,840,1,0,0,0,844, - 842,1,0,0,0,845,49,1,0,0,0,846,847,5,4,0,0,847,848,5,188,0,0,848, - 849,3,186,93,0,849,850,5,155,0,0,850,851,5,146,0,0,851,51,1,0,0, - 0,852,853,5,4,0,0,853,854,5,188,0,0,854,855,3,186,93,0,855,857,5, - 58,0,0,856,858,3,170,85,0,857,856,1,0,0,0,857,858,1,0,0,0,858,867, - 1,0,0,0,859,860,5,145,0,0,860,862,3,308,154,0,861,863,5,22,0,0,862, - 861,1,0,0,0,862,863,1,0,0,0,863,868,1,0,0,0,864,865,5,154,0,0,865, - 866,5,145,0,0,866,868,3,242,121,0,867,859,1,0,0,0,867,864,1,0,0, - 0,868,53,1,0,0,0,869,870,5,4,0,0,870,871,5,212,0,0,871,873,3,188, - 94,0,872,874,3,202,101,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875, - 1,0,0,0,875,876,5,9,0,0,876,877,3,206,103,0,877,55,1,0,0,0,878,879, - 5,4,0,0,879,880,5,212,0,0,880,881,3,188,94,0,881,882,5,156,0,0,882, - 883,5,193,0,0,883,884,3,188,94,0,884,57,1,0,0,0,885,886,5,4,0,0, - 886,887,5,212,0,0,887,888,3,188,94,0,888,889,5,176,0,0,889,890,5, - 142,0,0,890,891,7,1,0,0,891,892,3,358,179,0,892,59,1,0,0,0,893,894, - 5,4,0,0,894,895,5,188,0,0,895,896,3,186,93,0,896,897,5,156,0,0,897, - 898,5,193,0,0,898,899,3,186,93,0,899,61,1,0,0,0,900,901,5,4,0,0, - 901,902,5,212,0,0,902,903,3,188,94,0,903,904,7,2,0,0,904,905,5,25, - 0,0,905,906,3,252,126,0,906,63,1,0,0,0,907,909,5,196,0,0,908,910, - 5,188,0,0,909,908,1,0,0,0,909,910,1,0,0,0,910,912,1,0,0,0,911,913, - 3,170,85,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,915, - 3,186,93,0,915,65,1,0,0,0,916,918,5,56,0,0,917,919,5,46,0,0,918, - 917,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,922,7,3,0,0,921, - 920,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,358,179,0, - 924,67,1,0,0,0,925,928,3,70,35,0,926,928,3,72,36,0,927,925,1,0,0, - 0,927,926,1,0,0,0,928,69,1,0,0,0,929,930,5,36,0,0,930,931,5,182, - 0,0,931,933,3,186,93,0,932,934,3,296,148,0,933,932,1,0,0,0,933,934, - 1,0,0,0,934,947,1,0,0,0,935,936,5,190,0,0,936,937,5,185,0,0,937, - 938,5,265,0,0,938,939,3,364,182,0,939,945,5,266,0,0,940,941,5,157, - 0,0,941,942,5,265,0,0,942,943,3,364,182,0,943,944,5,266,0,0,944, - 946,1,0,0,0,945,940,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947, - 935,1,0,0,0,947,948,1,0,0,0,948,71,1,0,0,0,949,950,5,36,0,0,950, - 951,5,96,0,0,951,952,5,182,0,0,952,958,3,186,93,0,953,954,5,145, - 0,0,954,955,5,265,0,0,955,956,3,308,154,0,956,957,5,266,0,0,957, - 959,1,0,0,0,958,953,1,0,0,0,958,959,1,0,0,0,959,73,1,0,0,0,960,967, - 3,86,43,0,961,967,3,84,42,0,962,967,3,82,41,0,963,967,3,78,39,0, - 964,967,3,80,40,0,965,967,3,76,38,0,966,960,1,0,0,0,966,961,1,0, - 0,0,966,962,1,0,0,0,966,963,1,0,0,0,966,964,1,0,0,0,966,965,1,0, - 0,0,967,75,1,0,0,0,968,969,5,58,0,0,969,971,7,0,0,0,970,972,3,170, - 85,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,184, - 92,0,974,976,7,4,0,0,975,974,1,0,0,0,975,976,1,0,0,0,976,77,1,0, - 0,0,977,978,5,58,0,0,978,980,5,212,0,0,979,981,3,170,85,0,980,979, - 1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983,3,188,94,0,983,79, - 1,0,0,0,984,985,5,58,0,0,985,987,5,188,0,0,986,988,3,170,85,0,987, - 986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,991,3,186,93,0,990, - 992,5,22,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,81,1,0,0,0,993, - 995,5,58,0,0,994,996,5,96,0,0,995,994,1,0,0,0,995,996,1,0,0,0,996, - 997,1,0,0,0,997,998,5,182,0,0,998,1001,3,186,93,0,999,1000,5,145, - 0,0,1000,1002,3,308,154,0,1001,999,1,0,0,0,1001,1002,1,0,0,0,1002, - 83,1,0,0,0,1003,1005,5,58,0,0,1004,1006,5,12,0,0,1005,1004,1,0,0, - 0,1005,1006,1,0,0,0,1006,1007,1,0,0,0,1007,1009,5,84,0,0,1008,1010, - 3,170,85,0,1009,1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0, - 1011,1024,3,190,95,0,1012,1021,5,265,0,0,1013,1018,3,332,166,0,1014, - 1015,5,263,0,0,1015,1017,3,332,166,0,1016,1014,1,0,0,0,1017,1020, - 1,0,0,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020, - 1018,1,0,0,0,1021,1013,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0, - 0,1023,1025,5,266,0,0,1024,1012,1,0,0,0,1024,1025,1,0,0,0,1025,85, - 1,0,0,0,1026,1027,5,58,0,0,1027,1028,5,166,0,0,1028,1029,3,362,181, - 0,1029,87,1,0,0,0,1030,1033,3,90,45,0,1031,1033,3,92,46,0,1032,1030, - 1,0,0,0,1032,1031,1,0,0,0,1033,89,1,0,0,0,1034,1035,5,86,0,0,1035, - 1036,5,166,0,0,1036,1037,3,362,181,0,1037,1038,5,193,0,0,1038,1039, - 5,87,0,0,1039,1040,3,362,181,0,1040,91,1,0,0,0,1041,1042,5,86,0, - 0,1042,1043,3,354,177,0,1043,1044,5,136,0,0,1044,1046,3,356,178, - 0,1045,1047,3,358,179,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047, - 1048,1,0,0,0,1048,1049,5,193,0,0,1049,1050,3,360,180,0,1050,93,1, - 0,0,0,1051,1054,3,96,48,0,1052,1054,3,98,49,0,1053,1051,1,0,0,0, - 1053,1052,1,0,0,0,1054,95,1,0,0,0,1055,1056,5,161,0,0,1056,1057, - 5,166,0,0,1057,1058,3,362,181,0,1058,1059,5,82,0,0,1059,1060,5,87, - 0,0,1060,1061,3,362,181,0,1061,97,1,0,0,0,1062,1066,5,161,0,0,1063, - 1064,5,86,0,0,1064,1065,5,137,0,0,1065,1067,5,78,0,0,1066,1063,1, - 0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0,1068,1069,3,354,177,0, - 1069,1070,5,136,0,0,1070,1072,3,356,178,0,1071,1073,3,358,179,0, - 1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1080, - 5,82,0,0,1075,1081,3,360,180,0,1076,1078,5,166,0,0,1077,1076,1,0, - 0,0,1077,1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,362,181,0,1080, - 1075,1,0,0,0,1080,1077,1,0,0,0,1081,99,1,0,0,0,1082,1084,3,208,104, - 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, - 5,99,0,0,1086,1088,7,5,0,0,1087,1089,5,188,0,0,1088,1087,1,0,0,0, - 1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1092,3,186,93,0,1091,1093, - 3,296,148,0,1092,1091,1,0,0,0,1092,1093,1,0,0,0,1093,1106,1,0,0, - 0,1094,1095,5,145,0,0,1095,1096,5,265,0,0,1096,1101,3,308,154,0, - 1097,1098,5,263,0,0,1098,1100,3,308,154,0,1099,1097,1,0,0,0,1100, - 1103,1,0,0,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102,1104,1,0,0, - 0,1103,1101,1,0,0,0,1104,1105,5,266,0,0,1105,1107,1,0,0,0,1106,1094, - 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,206,103, - 0,1109,101,1,0,0,0,1110,1113,3,104,52,0,1111,1113,3,106,53,0,1112, - 1110,1,0,0,0,1112,1111,1,0,0,0,1113,103,1,0,0,0,1114,1116,5,50,0, - 0,1115,1117,5,82,0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,1118, - 1,0,0,0,1118,1121,3,186,93,0,1119,1120,5,215,0,0,1120,1122,3,310, - 155,0,1121,1119,1,0,0,0,1121,1122,1,0,0,0,1122,105,1,0,0,0,1123, - 1124,5,50,0,0,1124,1129,3,186,93,0,1125,1127,5,9,0,0,1126,1125,1, - 0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130,3,362,181,0, - 1129,1126,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0,0,0,1131,1140, - 5,82,0,0,1132,1137,3,284,142,0,1133,1134,5,263,0,0,1134,1136,3,284, - 142,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1137, - 1138,1,0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1140,1132,1,0,0, - 0,1140,1141,1,0,0,0,1141,1144,1,0,0,0,1142,1143,5,215,0,0,1143,1145, - 3,310,155,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,107,1,0,0,0, - 1146,1147,5,54,0,0,1147,1148,3,186,93,0,1148,1149,5,176,0,0,1149, - 1159,3,198,99,0,1150,1151,5,82,0,0,1151,1156,3,284,142,0,1152,1153, - 5,263,0,0,1153,1155,3,284,142,0,1154,1152,1,0,0,0,1155,1158,1,0, - 0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,1160,1,0,0,0,1158,1156, - 1,0,0,0,1159,1150,1,0,0,0,1159,1160,1,0,0,0,1160,1163,1,0,0,0,1161, - 1162,5,215,0,0,1162,1164,3,310,155,0,1163,1161,1,0,0,0,1163,1164, - 1,0,0,0,1164,109,1,0,0,0,1165,1166,5,207,0,0,1166,1168,5,103,0,0, - 1167,1169,5,188,0,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170, - 1,0,0,0,1170,1172,3,186,93,0,1171,1173,3,296,148,0,1172,1171,1,0, - 0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1175,3,206,103,0,1175, - 111,1,0,0,0,1176,1189,3,132,66,0,1177,1189,3,134,67,0,1178,1189, - 3,136,68,0,1179,1189,3,130,65,0,1180,1189,3,128,64,0,1181,1189,3, - 126,63,0,1182,1189,3,124,62,0,1183,1189,3,122,61,0,1184,1189,3,120, - 60,0,1185,1189,3,118,59,0,1186,1189,3,116,58,0,1187,1189,3,114,57, - 0,1188,1176,1,0,0,0,1188,1177,1,0,0,0,1188,1178,1,0,0,0,1188,1179, - 1,0,0,0,1188,1180,1,0,0,0,1188,1181,1,0,0,0,1188,1182,1,0,0,0,1188, - 1183,1,0,0,0,1188,1184,1,0,0,0,1188,1185,1,0,0,0,1188,1186,1,0,0, - 0,1188,1187,1,0,0,0,1189,113,1,0,0,0,1190,1191,5,179,0,0,1191,1203, - 7,6,0,0,1192,1194,5,115,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1200,3,318,159,0,1196,1197,5,271,0,0,1197, - 1199,3,318,159,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, - 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, - 1193,1,0,0,0,1203,1204,1,0,0,0,1204,115,1,0,0,0,1205,1206,5,179, - 0,0,1206,1209,5,189,0,0,1207,1208,5,94,0,0,1208,1210,3,186,93,0, - 1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1222,1,0,0,0,1211,1213, - 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, - 1214,1219,3,318,159,0,1215,1216,5,271,0,0,1216,1218,3,318,159,0, - 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, - 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, - 1223,1,0,0,0,1223,117,1,0,0,0,1224,1226,5,179,0,0,1225,1227,7,7, - 0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1231, - 5,85,0,0,1229,1230,5,94,0,0,1230,1232,3,184,92,0,1231,1229,1,0,0, - 0,1231,1232,1,0,0,0,1232,1244,1,0,0,0,1233,1235,5,115,0,0,1234,1233, - 1,0,0,0,1234,1235,1,0,0,0,1235,1236,1,0,0,0,1236,1241,3,318,159, - 0,1237,1238,5,271,0,0,1238,1240,3,318,159,0,1239,1237,1,0,0,0,1240, - 1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1245,1,0,0, - 0,1243,1241,1,0,0,0,1244,1234,1,0,0,0,1244,1245,1,0,0,0,1245,119, - 1,0,0,0,1246,1247,5,179,0,0,1247,1248,5,37,0,0,1248,1249,5,188,0, - 0,1249,1250,3,186,93,0,1250,121,1,0,0,0,1251,1252,5,179,0,0,1252, - 1253,5,37,0,0,1253,1254,5,212,0,0,1254,1255,3,188,94,0,1255,123, - 1,0,0,0,1256,1257,5,179,0,0,1257,1258,5,188,0,0,1258,1259,5,182, - 0,0,1259,1260,3,186,93,0,1260,125,1,0,0,0,1261,1262,5,179,0,0,1262, - 1263,5,32,0,0,1263,1264,5,182,0,0,1264,1265,3,186,93,0,1265,127, - 1,0,0,0,1266,1268,5,179,0,0,1267,1269,5,154,0,0,1268,1267,1,0,0, - 0,1268,1269,1,0,0,0,1269,1270,1,0,0,0,1270,1271,5,146,0,0,1271,1272, - 3,186,93,0,1272,129,1,0,0,0,1273,1274,5,179,0,0,1274,1275,5,73,0, - 0,1275,1276,5,94,0,0,1276,1286,3,186,93,0,1277,1278,5,145,0,0,1278, - 1279,5,265,0,0,1279,1282,3,308,154,0,1280,1281,5,263,0,0,1281,1283, - 3,308,154,0,1282,1280,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0, - 0,1284,1285,5,266,0,0,1285,1287,1,0,0,0,1286,1277,1,0,0,0,1286,1287, - 1,0,0,0,1287,131,1,0,0,0,1288,1290,5,179,0,0,1289,1291,5,39,0,0, - 1290,1289,1,0,0,0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1293, - 5,167,0,0,1293,133,1,0,0,0,1294,1295,5,179,0,0,1295,1296,5,166,0, - 0,1296,1297,5,86,0,0,1297,1298,5,87,0,0,1298,1299,3,362,181,0,1299, - 135,1,0,0,0,1300,1315,3,138,69,0,1301,1315,3,140,70,0,1302,1315, - 3,142,71,0,1303,1304,5,179,0,0,1304,1305,5,86,0,0,1305,1306,7,8, - 0,0,1306,1312,3,362,181,0,1307,1308,5,136,0,0,1308,1310,7,9,0,0, - 1309,1311,3,358,179,0,1310,1309,1,0,0,0,1310,1311,1,0,0,0,1311,1313, - 1,0,0,0,1312,1307,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314, - 1300,1,0,0,0,1314,1301,1,0,0,0,1314,1302,1,0,0,0,1314,1303,1,0,0, - 0,1315,137,1,0,0,0,1316,1317,5,179,0,0,1317,1318,5,86,0,0,1318,1319, - 7,8,0,0,1319,1325,3,362,181,0,1320,1321,5,136,0,0,1321,1323,5,46, - 0,0,1322,1324,3,184,92,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, - 1326,1,0,0,0,1325,1320,1,0,0,0,1325,1326,1,0,0,0,1326,139,1,0,0, - 0,1327,1328,5,179,0,0,1328,1329,5,86,0,0,1329,1330,7,8,0,0,1330, - 1336,3,362,181,0,1331,1332,5,136,0,0,1332,1334,5,188,0,0,1333,1335, - 3,186,93,0,1334,1333,1,0,0,0,1334,1335,1,0,0,0,1335,1337,1,0,0,0, - 1336,1331,1,0,0,0,1336,1337,1,0,0,0,1337,141,1,0,0,0,1338,1339,5, - 179,0,0,1339,1340,5,86,0,0,1340,1341,7,8,0,0,1341,1347,3,362,181, - 0,1342,1343,5,136,0,0,1343,1345,5,32,0,0,1344,1346,3,192,96,0,1345, - 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1342,1,0,0, - 0,1347,1348,1,0,0,0,1348,143,1,0,0,0,1349,1353,3,146,73,0,1350,1353, - 3,148,74,0,1351,1353,3,150,75,0,1352,1349,1,0,0,0,1352,1350,1,0, - 0,0,1352,1351,1,0,0,0,1353,145,1,0,0,0,1354,1355,5,34,0,0,1355,1356, - 5,136,0,0,1356,1357,5,46,0,0,1357,1358,3,184,92,0,1358,1361,5,108, - 0,0,1359,1362,3,318,159,0,1360,1362,5,133,0,0,1361,1359,1,0,0,0, - 1361,1360,1,0,0,0,1362,147,1,0,0,0,1363,1364,5,34,0,0,1364,1365, - 5,136,0,0,1365,1366,5,188,0,0,1366,1367,3,186,93,0,1367,1370,5,108, - 0,0,1368,1371,3,318,159,0,1369,1371,5,133,0,0,1370,1368,1,0,0,0, - 1370,1369,1,0,0,0,1371,149,1,0,0,0,1372,1373,5,34,0,0,1373,1374, - 5,136,0,0,1374,1375,5,32,0,0,1375,1376,3,192,96,0,1376,1379,5,108, - 0,0,1377,1380,3,318,159,0,1378,1380,5,133,0,0,1379,1377,1,0,0,0, - 1379,1378,1,0,0,0,1380,151,1,0,0,0,1381,1382,5,67,0,0,1382,1383, - 3,4,2,0,1383,153,1,0,0,0,1384,1390,5,176,0,0,1385,1391,5,2,0,0,1386, - 1387,3,362,181,0,1387,1388,5,249,0,0,1388,1389,3,308,154,0,1389, - 1391,1,0,0,0,1390,1385,1,0,0,0,1390,1386,1,0,0,0,1390,1391,1,0,0, - 0,1391,155,1,0,0,0,1392,1393,5,264,0,0,1393,1394,5,180,0,0,1394, - 1404,5,265,0,0,1395,1397,3,318,159,0,1396,1395,1,0,0,0,1396,1397, - 1,0,0,0,1397,1405,1,0,0,0,1398,1401,3,318,159,0,1399,1400,5,263, - 0,0,1400,1402,3,308,154,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, - 1405,1,0,0,0,1403,1405,3,308,154,0,1404,1396,1,0,0,0,1404,1398,1, - 0,0,0,1404,1403,1,0,0,0,1405,1406,1,0,0,0,1406,1407,5,266,0,0,1407, - 157,1,0,0,0,1408,1409,5,107,0,0,1409,1410,5,121,0,0,1410,1411,3, - 186,93,0,1411,159,1,0,0,0,1412,1413,5,118,0,0,1413,1414,5,45,0,0, - 1414,1415,5,98,0,0,1415,1417,5,274,0,0,1416,1418,5,144,0,0,1417, - 1416,1,0,0,0,1417,1418,1,0,0,0,1418,1419,1,0,0,0,1419,1420,5,103, - 0,0,1420,1421,5,188,0,0,1421,1431,3,186,93,0,1422,1423,5,145,0,0, - 1423,1424,5,265,0,0,1424,1427,3,308,154,0,1425,1426,5,263,0,0,1426, - 1428,3,308,154,0,1427,1425,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1, - 0,0,0,1429,1430,5,266,0,0,1430,1432,1,0,0,0,1431,1422,1,0,0,0,1431, - 1432,1,0,0,0,1432,161,1,0,0,0,1433,1437,3,164,82,0,1434,1437,3,166, - 83,0,1435,1437,3,168,84,0,1436,1433,1,0,0,0,1436,1434,1,0,0,0,1436, - 1435,1,0,0,0,1437,163,1,0,0,0,1438,1439,5,162,0,0,1439,1452,3,186, - 93,0,1440,1441,5,145,0,0,1441,1442,5,265,0,0,1442,1447,3,308,154, - 0,1443,1444,5,263,0,0,1444,1446,3,308,154,0,1445,1443,1,0,0,0,1446, - 1449,1,0,0,0,1447,1448,1,0,0,0,1447,1445,1,0,0,0,1448,1450,1,0,0, - 0,1449,1447,1,0,0,0,1450,1451,5,266,0,0,1451,1453,1,0,0,0,1452,1440, - 1,0,0,0,1452,1453,1,0,0,0,1453,165,1,0,0,0,1454,1455,5,162,0,0,1455, - 1456,5,13,0,0,1456,167,1,0,0,0,1457,1458,5,162,0,0,1458,1459,5,85, - 0,0,1459,1460,3,190,95,0,1460,169,1,0,0,0,1461,1462,5,93,0,0,1462, - 1463,5,66,0,0,1463,171,1,0,0,0,1464,1465,5,93,0,0,1465,1466,5,132, - 0,0,1466,1467,5,66,0,0,1467,173,1,0,0,0,1468,1469,3,358,179,0,1469, - 175,1,0,0,0,1470,1471,3,358,179,0,1471,177,1,0,0,0,1472,1473,3,358, - 179,0,1473,179,1,0,0,0,1474,1475,3,358,179,0,1475,181,1,0,0,0,1476, - 1477,3,358,179,0,1477,183,1,0,0,0,1478,1479,3,358,179,0,1479,185, - 1,0,0,0,1480,1485,3,362,181,0,1481,1482,5,261,0,0,1482,1484,3,362, - 181,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1485, - 1486,1,0,0,0,1486,187,1,0,0,0,1487,1485,1,0,0,0,1488,1493,3,362, - 181,0,1489,1490,5,261,0,0,1490,1492,3,362,181,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,189, - 1,0,0,0,1495,1493,1,0,0,0,1496,1499,3,366,183,0,1497,1499,3,358, - 179,0,1498,1496,1,0,0,0,1498,1497,1,0,0,0,1499,191,1,0,0,0,1500, - 1503,3,358,179,0,1501,1503,4,96,0,0,1502,1500,1,0,0,0,1502,1501, - 1,0,0,0,1503,193,1,0,0,0,1504,1507,3,186,93,0,1505,1507,3,188,94, - 0,1506,1504,1,0,0,0,1506,1505,1,0,0,0,1507,195,1,0,0,0,1508,1509, - 5,21,0,0,1509,1510,5,26,0,0,1510,1512,3,296,148,0,1511,1508,1,0, - 0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0,1513,1515,3,222,111,0,1514, - 1513,1,0,0,0,1514,1515,1,0,0,0,1515,1519,1,0,0,0,1516,1517,5,168, - 0,0,1517,1518,5,79,0,0,1518,1520,3,258,129,0,1519,1516,1,0,0,0,1519, - 1520,1,0,0,0,1520,1524,1,0,0,0,1521,1522,5,216,0,0,1522,1523,5,175, - 0,0,1523,1525,3,252,126,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525, - 1529,1,0,0,0,1526,1527,5,23,0,0,1527,1528,5,9,0,0,1528,1530,3,234, - 117,0,1529,1526,1,0,0,0,1529,1530,1,0,0,0,1530,1533,1,0,0,0,1531, - 1532,5,24,0,0,1532,1534,3,318,159,0,1533,1531,1,0,0,0,1533,1534, - 1,0,0,0,1534,1545,1,0,0,0,1535,1536,5,30,0,0,1536,1537,5,94,0,0, - 1537,1542,3,358,179,0,1538,1539,5,216,0,0,1539,1540,5,151,0,0,1540, - 1541,5,249,0,0,1541,1543,5,277,0,0,1542,1538,1,0,0,0,1542,1543,1, - 0,0,0,1543,1546,1,0,0,0,1544,1546,5,197,0,0,1545,1535,1,0,0,0,1545, - 1544,1,0,0,0,1545,1546,1,0,0,0,1546,1549,1,0,0,0,1547,1548,5,25, - 0,0,1548,1550,3,252,126,0,1549,1547,1,0,0,0,1549,1550,1,0,0,0,1550, - 197,1,0,0,0,1551,1556,3,200,100,0,1552,1553,5,263,0,0,1553,1555, - 3,200,100,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556,1554,1,0,0, - 0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1556,1,0,0,0,1559,1560, - 3,358,179,0,1560,1561,5,249,0,0,1561,1562,3,308,154,0,1562,201,1, - 0,0,0,1563,1565,5,265,0,0,1564,1566,3,204,102,0,1565,1564,1,0,0, - 0,1565,1566,1,0,0,0,1566,1573,1,0,0,0,1567,1569,5,263,0,0,1568,1570, - 3,204,102,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1572,1,0,0, - 0,1571,1567,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0,0,0,1573,1574, - 1,0,0,0,1574,1576,1,0,0,0,1575,1573,1,0,0,0,1576,1577,5,266,0,0, - 1577,203,1,0,0,0,1578,1580,3,182,91,0,1579,1581,3,222,111,0,1580, - 1579,1,0,0,0,1580,1581,1,0,0,0,1581,205,1,0,0,0,1582,1584,3,208, - 104,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585, - 1586,3,262,131,0,1586,207,1,0,0,0,1587,1588,5,216,0,0,1588,1593, - 3,278,139,0,1589,1590,5,263,0,0,1590,1592,3,278,139,0,1591,1589, - 1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594, - 209,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5,150,0,0,1597,1598,5,110, - 0,0,1598,1600,3,296,148,0,1599,1601,5,53,0,0,1600,1599,1,0,0,0,1600, - 1601,1,0,0,0,1601,1605,1,0,0,0,1602,1606,5,225,0,0,1603,1604,5,263, - 0,0,1604,1606,5,225,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605, - 1606,1,0,0,0,1606,1610,1,0,0,0,1607,1611,5,226,0,0,1608,1609,5,263, - 0,0,1609,1611,5,226,0,0,1610,1607,1,0,0,0,1610,1608,1,0,0,0,1610, - 1611,1,0,0,0,1611,1624,1,0,0,0,1612,1613,5,263,0,0,1613,1616,3,212, - 106,0,1614,1616,3,212,106,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0, - 1616,1621,1,0,0,0,1617,1618,5,263,0,0,1618,1620,3,212,106,0,1619, - 1617,1,0,0,0,1620,1623,1,0,0,0,1621,1622,1,0,0,0,1621,1619,1,0,0, - 0,1622,1625,1,0,0,0,1623,1621,1,0,0,0,1624,1615,1,0,0,0,1624,1625, - 1,0,0,0,1625,211,1,0,0,0,1626,1627,5,81,0,0,1627,1628,5,110,0,0, - 1628,1629,3,296,148,0,1629,1630,5,224,0,0,1630,1631,3,186,93,0,1631, - 1633,3,296,148,0,1632,1634,5,53,0,0,1633,1632,1,0,0,0,1633,1634, - 1,0,0,0,1634,1636,1,0,0,0,1635,1637,5,225,0,0,1636,1635,1,0,0,0, - 1636,1637,1,0,0,0,1637,1639,1,0,0,0,1638,1640,5,226,0,0,1639,1638, - 1,0,0,0,1639,1640,1,0,0,0,1640,213,1,0,0,0,1641,1642,3,192,96,0, - 1642,1645,3,332,166,0,1643,1644,5,34,0,0,1644,1646,3,318,159,0,1645, - 1643,1,0,0,0,1645,1646,1,0,0,0,1646,215,1,0,0,0,1647,1648,3,182, - 91,0,1648,1650,3,332,166,0,1649,1651,3,222,111,0,1650,1649,1,0,0, - 0,1650,1651,1,0,0,0,1651,217,1,0,0,0,1652,1653,3,220,110,0,1653, - 219,1,0,0,0,1654,1655,3,182,91,0,1655,1663,3,332,166,0,1656,1660, - 3,228,114,0,1657,1659,3,228,114,0,1658,1657,1,0,0,0,1659,1662,1, - 0,0,0,1660,1661,1,0,0,0,1660,1658,1,0,0,0,1661,1664,1,0,0,0,1662, - 1660,1,0,0,0,1663,1656,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0, - 0,1665,1667,3,222,111,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667, - 1670,1,0,0,0,1668,1669,5,150,0,0,1669,1671,5,110,0,0,1670,1668,1, - 0,0,0,1670,1671,1,0,0,0,1671,221,1,0,0,0,1672,1673,5,34,0,0,1673, - 1674,3,318,159,0,1674,223,1,0,0,0,1675,1683,3,214,107,0,1676,1680, - 3,228,114,0,1677,1679,3,228,114,0,1678,1677,1,0,0,0,1679,1682,1, - 0,0,0,1680,1681,1,0,0,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, - 1680,1,0,0,0,1683,1676,1,0,0,0,1683,1684,1,0,0,0,1684,225,1,0,0, - 0,1685,1686,3,182,91,0,1686,1689,3,332,166,0,1687,1688,5,34,0,0, - 1688,1690,3,318,159,0,1689,1687,1,0,0,0,1689,1690,1,0,0,0,1690,1698, - 1,0,0,0,1691,1695,3,228,114,0,1692,1694,3,228,114,0,1693,1692,1, - 0,0,0,1694,1697,1,0,0,0,1695,1696,1,0,0,0,1695,1693,1,0,0,0,1696, - 1699,1,0,0,0,1697,1695,1,0,0,0,1698,1691,1,0,0,0,1698,1699,1,0,0, - 0,1699,227,1,0,0,0,1700,1702,5,132,0,0,1701,1700,1,0,0,0,1701,1702, - 1,0,0,0,1702,1703,1,0,0,0,1703,1706,5,133,0,0,1704,1706,3,230,115, - 0,1705,1701,1,0,0,0,1705,1704,1,0,0,0,1706,229,1,0,0,0,1707,1708, - 5,60,0,0,1708,1716,3,308,154,0,1709,1710,5,35,0,0,1710,1716,3,308, - 154,0,1711,1712,5,51,0,0,1712,1716,3,308,154,0,1713,1714,5,16,0, - 0,1714,1716,3,364,182,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715, - 1711,1,0,0,0,1715,1713,1,0,0,0,1716,231,1,0,0,0,1717,1718,7,10,0, - 0,1718,233,1,0,0,0,1719,1720,7,11,0,0,1720,235,1,0,0,0,1721,1726, - 3,238,119,0,1722,1723,5,263,0,0,1723,1725,3,238,119,0,1724,1722, - 1,0,0,0,1725,1728,1,0,0,0,1726,1727,1,0,0,0,1726,1724,1,0,0,0,1727, - 1731,1,0,0,0,1728,1726,1,0,0,0,1729,1730,5,263,0,0,1730,1732,3,240, - 120,0,1731,1729,1,0,0,0,1731,1732,1,0,0,0,1732,1735,1,0,0,0,1733, - 1735,3,240,120,0,1734,1721,1,0,0,0,1734,1733,1,0,0,0,1735,237,1, - 0,0,0,1736,1738,5,89,0,0,1737,1739,3,296,148,0,1738,1737,1,0,0,0, - 1738,1739,1,0,0,0,1739,1740,1,0,0,0,1740,1741,5,146,0,0,1741,1742, - 3,364,182,0,1742,239,1,0,0,0,1743,1745,5,154,0,0,1744,1746,3,296, - 148,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, - 1748,5,265,0,0,1748,1749,5,145,0,0,1749,1755,3,242,121,0,1750,1751, - 5,263,0,0,1751,1752,5,145,0,0,1752,1754,3,242,121,0,1753,1750,1, - 0,0,0,1754,1757,1,0,0,0,1755,1756,1,0,0,0,1755,1753,1,0,0,0,1756, - 1758,1,0,0,0,1757,1755,1,0,0,0,1758,1759,5,266,0,0,1759,241,1,0, - 0,0,1760,1761,5,210,0,0,1761,1762,3,248,124,0,1762,1763,3,308,154, - 0,1763,1776,1,0,0,0,1764,1765,3,308,154,0,1765,1766,3,246,123,0, - 1766,1768,1,0,0,0,1767,1764,1,0,0,0,1767,1768,1,0,0,0,1768,1769, - 1,0,0,0,1769,1773,5,211,0,0,1770,1771,3,246,123,0,1771,1772,3,308, - 154,0,1772,1774,1,0,0,0,1773,1770,1,0,0,0,1773,1774,1,0,0,0,1774, - 1776,1,0,0,0,1775,1760,1,0,0,0,1775,1767,1,0,0,0,1776,243,1,0,0, - 0,1777,1778,5,30,0,0,1778,1779,5,94,0,0,1779,1784,3,362,181,0,1780, - 1781,5,216,0,0,1781,1782,5,151,0,0,1782,1783,5,249,0,0,1783,1785, - 3,364,182,0,1784,1780,1,0,0,0,1784,1785,1,0,0,0,1785,1788,1,0,0, - 0,1786,1788,5,197,0,0,1787,1777,1,0,0,0,1787,1786,1,0,0,0,1788,245, - 1,0,0,0,1789,1795,1,0,0,0,1790,1795,5,251,0,0,1791,1795,5,252,0, - 0,1792,1795,5,253,0,0,1793,1795,5,254,0,0,1794,1789,1,0,0,0,1794, - 1790,1,0,0,0,1794,1791,1,0,0,0,1794,1792,1,0,0,0,1794,1793,1,0,0, - 0,1795,247,1,0,0,0,1796,1805,5,249,0,0,1797,1805,5,250,0,0,1798, - 1805,5,115,0,0,1799,1805,5,164,0,0,1800,1805,5,163,0,0,1801,1805, - 5,15,0,0,1802,1805,5,94,0,0,1803,1805,3,246,123,0,1804,1796,1,0, - 0,0,1804,1797,1,0,0,0,1804,1798,1,0,0,0,1804,1799,1,0,0,0,1804,1800, - 1,0,0,0,1804,1801,1,0,0,0,1804,1802,1,0,0,0,1804,1803,1,0,0,0,1805, - 249,1,0,0,0,1806,1807,5,115,0,0,1807,1810,3,358,179,0,1808,1809, - 7,12,0,0,1809,1811,5,153,0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0, - 1811,251,1,0,0,0,1812,1813,5,265,0,0,1813,1818,3,260,130,0,1814, - 1815,5,263,0,0,1815,1817,3,260,130,0,1816,1814,1,0,0,0,1817,1820, - 1,0,0,0,1818,1816,1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820, - 1818,1,0,0,0,1821,1822,5,266,0,0,1822,253,1,0,0,0,1823,1824,5,265, - 0,0,1824,1829,3,214,107,0,1825,1826,5,263,0,0,1826,1828,3,214,107, - 0,1827,1825,1,0,0,0,1828,1831,1,0,0,0,1829,1830,1,0,0,0,1829,1827, - 1,0,0,0,1830,1832,1,0,0,0,1831,1829,1,0,0,0,1832,1833,5,266,0,0, - 1833,255,1,0,0,0,1834,1839,3,308,154,0,1835,1836,5,263,0,0,1836, - 1838,3,308,154,0,1837,1835,1,0,0,0,1838,1841,1,0,0,0,1839,1837,1, - 0,0,0,1839,1840,1,0,0,0,1840,257,1,0,0,0,1841,1839,1,0,0,0,1842, - 1852,5,52,0,0,1843,1844,5,71,0,0,1844,1845,5,191,0,0,1845,1846,5, - 26,0,0,1846,1850,3,318,159,0,1847,1848,5,63,0,0,1848,1849,5,26,0, - 0,1849,1851,3,318,159,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851, - 1853,1,0,0,0,1852,1843,1,0,0,0,1852,1853,1,0,0,0,1853,1858,1,0,0, - 0,1854,1855,5,117,0,0,1855,1856,5,191,0,0,1856,1857,5,26,0,0,1857, - 1859,3,318,159,0,1858,1854,1,0,0,0,1858,1859,1,0,0,0,1859,259,1, - 0,0,0,1860,1863,3,362,181,0,1861,1862,5,249,0,0,1862,1864,3,308, - 154,0,1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,261,1,0,0,0,1865, - 1876,3,264,132,0,1866,1867,5,139,0,0,1867,1868,5,26,0,0,1868,1873, - 3,268,134,0,1869,1870,5,263,0,0,1870,1872,3,268,134,0,1871,1869, - 1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0,0,1874, - 1877,1,0,0,0,1875,1873,1,0,0,0,1876,1866,1,0,0,0,1876,1877,1,0,0, - 0,1877,1884,1,0,0,0,1878,1879,5,116,0,0,1879,1882,3,308,154,0,1880, - 1881,5,135,0,0,1881,1883,5,277,0,0,1882,1880,1,0,0,0,1882,1883,1, - 0,0,0,1883,1885,1,0,0,0,1884,1878,1,0,0,0,1884,1885,1,0,0,0,1885, - 263,1,0,0,0,1886,1887,6,132,-1,0,1887,1888,3,266,133,0,1888,1903, - 1,0,0,0,1889,1890,10,2,0,0,1890,1892,5,100,0,0,1891,1893,3,280,140, - 0,1892,1891,1,0,0,0,1892,1893,1,0,0,0,1893,1894,1,0,0,0,1894,1902, - 3,264,132,3,1895,1896,10,1,0,0,1896,1898,7,13,0,0,1897,1899,3,280, - 140,0,1898,1897,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900, - 1902,3,264,132,2,1901,1889,1,0,0,0,1901,1895,1,0,0,0,1902,1905,1, - 0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904,265,1,0,0,0,1905, - 1903,1,0,0,0,1906,1923,3,270,135,0,1907,1908,5,188,0,0,1908,1923, - 3,186,93,0,1909,1910,5,211,0,0,1910,1915,3,308,154,0,1911,1912,5, - 263,0,0,1912,1914,3,308,154,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,1923,1,0,0,0,1917,1915, - 1,0,0,0,1918,1919,5,265,0,0,1919,1920,3,262,131,0,1920,1921,5,266, - 0,0,1921,1923,1,0,0,0,1922,1906,1,0,0,0,1922,1907,1,0,0,0,1922,1909, - 1,0,0,0,1922,1918,1,0,0,0,1923,267,1,0,0,0,1924,1926,3,306,153,0, - 1925,1927,7,14,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1930, - 1,0,0,0,1928,1929,5,134,0,0,1929,1931,7,15,0,0,1930,1928,1,0,0,0, - 1930,1931,1,0,0,0,1931,269,1,0,0,0,1932,1934,5,174,0,0,1933,1935, - 3,280,140,0,1934,1933,1,0,0,0,1934,1935,1,0,0,0,1935,1937,1,0,0, - 0,1936,1938,5,183,0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939, - 1,0,0,0,1939,1944,3,282,141,0,1940,1941,5,263,0,0,1941,1943,3,282, - 141,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,1956,1,0,0,0,1946,1944,1,0,0,0,1947,1948,5,82, - 0,0,1948,1953,3,284,142,0,1949,1950,5,263,0,0,1950,1952,3,284,142, - 0,1951,1949,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0,0,1953,1954, - 1,0,0,0,1954,1957,1,0,0,0,1955,1953,1,0,0,0,1956,1947,1,0,0,0,1956, - 1957,1,0,0,0,1957,1960,1,0,0,0,1958,1959,5,215,0,0,1959,1961,3,310, - 155,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1965,1,0,0,0,1962, - 1963,5,87,0,0,1963,1964,5,26,0,0,1964,1966,3,272,136,0,1965,1962, - 1,0,0,0,1965,1966,1,0,0,0,1966,1969,1,0,0,0,1967,1968,5,90,0,0,1968, - 1970,3,310,155,0,1969,1967,1,0,0,0,1969,1970,1,0,0,0,1970,271,1, - 0,0,0,1971,1973,3,280,140,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0, - 1973,1974,1,0,0,0,1974,1979,3,274,137,0,1975,1976,5,263,0,0,1976, - 1978,3,274,137,0,1977,1975,1,0,0,0,1978,1981,1,0,0,0,1979,1977,1, - 0,0,0,1979,1980,1,0,0,0,1980,273,1,0,0,0,1981,1979,1,0,0,0,1982, - 1983,3,276,138,0,1983,275,1,0,0,0,1984,1993,5,265,0,0,1985,1990, - 3,306,153,0,1986,1987,5,263,0,0,1987,1989,3,306,153,0,1988,1986, - 1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991, - 1994,1,0,0,0,1992,1990,1,0,0,0,1993,1985,1,0,0,0,1993,1994,1,0,0, - 0,1994,1995,1,0,0,0,1995,1998,5,266,0,0,1996,1998,3,306,153,0,1997, - 1984,1,0,0,0,1997,1996,1,0,0,0,1998,277,1,0,0,0,1999,2001,3,362, - 181,0,2000,2002,3,296,148,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0, - 2002,2003,1,0,0,0,2003,2004,5,9,0,0,2004,2005,3,300,150,0,2005,279, - 1,0,0,0,2006,2007,7,16,0,0,2007,281,1,0,0,0,2008,2013,3,306,153, - 0,2009,2011,5,9,0,0,2010,2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012, - 1,0,0,0,2012,2014,3,362,181,0,2013,2010,1,0,0,0,2013,2014,1,0,0, - 0,2014,2021,1,0,0,0,2015,2016,3,358,179,0,2016,2017,5,261,0,0,2017, - 2018,5,257,0,0,2018,2021,1,0,0,0,2019,2021,5,257,0,0,2020,2008,1, - 0,0,0,2020,2015,1,0,0,0,2020,2019,1,0,0,0,2021,283,1,0,0,0,2022, - 2023,6,142,-1,0,2023,2024,3,290,145,0,2024,2038,1,0,0,0,2025,2034, - 10,2,0,0,2026,2027,5,38,0,0,2027,2028,5,109,0,0,2028,2035,3,290, - 145,0,2029,2030,3,286,143,0,2030,2031,5,109,0,0,2031,2032,3,284, - 142,0,2032,2033,3,288,144,0,2033,2035,1,0,0,0,2034,2026,1,0,0,0, - 2034,2029,1,0,0,0,2035,2037,1,0,0,0,2036,2025,1,0,0,0,2037,2040, - 1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,285,1,0,0,0,2040, - 2038,1,0,0,0,2041,2043,5,97,0,0,2042,2041,1,0,0,0,2042,2043,1,0, - 0,0,2043,2073,1,0,0,0,2044,2046,5,114,0,0,2045,2047,5,97,0,0,2046, - 2045,1,0,0,0,2046,2047,1,0,0,0,2047,2073,1,0,0,0,2048,2050,5,165, - 0,0,2049,2051,5,97,0,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, - 2073,1,0,0,0,2052,2054,5,114,0,0,2053,2055,5,141,0,0,2054,2053,1, - 0,0,0,2054,2055,1,0,0,0,2055,2073,1,0,0,0,2056,2058,5,165,0,0,2057, - 2059,5,141,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2073,1,0, - 0,0,2060,2062,5,83,0,0,2061,2063,5,141,0,0,2062,2061,1,0,0,0,2062, - 2063,1,0,0,0,2063,2073,1,0,0,0,2064,2065,5,114,0,0,2065,2073,5,177, - 0,0,2066,2067,5,165,0,0,2067,2073,5,177,0,0,2068,2069,5,114,0,0, - 2069,2073,5,7,0,0,2070,2071,5,165,0,0,2071,2073,5,7,0,0,2072,2042, - 1,0,0,0,2072,2044,1,0,0,0,2072,2048,1,0,0,0,2072,2052,1,0,0,0,2072, - 2056,1,0,0,0,2072,2060,1,0,0,0,2072,2064,1,0,0,0,2072,2066,1,0,0, - 0,2072,2068,1,0,0,0,2072,2070,1,0,0,0,2073,287,1,0,0,0,2074,2075, - 5,136,0,0,2075,2089,3,310,155,0,2076,2077,5,205,0,0,2077,2078,5, - 265,0,0,2078,2083,3,362,181,0,2079,2080,5,263,0,0,2080,2082,3,362, - 181,0,2081,2079,1,0,0,0,2082,2085,1,0,0,0,2083,2081,1,0,0,0,2083, - 2084,1,0,0,0,2084,2086,1,0,0,0,2085,2083,1,0,0,0,2086,2087,5,266, - 0,0,2087,2089,1,0,0,0,2088,2074,1,0,0,0,2088,2076,1,0,0,0,2089,289, - 1,0,0,0,2090,2103,3,294,147,0,2091,2092,5,190,0,0,2092,2093,3,292, - 146,0,2093,2094,5,265,0,0,2094,2095,3,308,154,0,2095,2101,5,266, - 0,0,2096,2097,5,157,0,0,2097,2098,5,265,0,0,2098,2099,3,308,154, - 0,2099,2100,5,266,0,0,2100,2102,1,0,0,0,2101,2096,1,0,0,0,2101,2102, - 1,0,0,0,2102,2104,1,0,0,0,2103,2091,1,0,0,0,2103,2104,1,0,0,0,2104, - 291,1,0,0,0,2105,2106,7,17,0,0,2106,293,1,0,0,0,2107,2115,3,298, - 149,0,2108,2110,5,9,0,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110, - 2111,1,0,0,0,2111,2113,3,362,181,0,2112,2114,3,296,148,0,2113,2112, - 1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2109,1,0,0,0,2115, - 2116,1,0,0,0,2116,295,1,0,0,0,2117,2118,5,265,0,0,2118,2123,3,192, - 96,0,2119,2120,5,263,0,0,2120,2122,3,192,96,0,2121,2119,1,0,0,0, - 2122,2125,1,0,0,0,2123,2121,1,0,0,0,2123,2124,1,0,0,0,2124,2126, - 1,0,0,0,2125,2123,1,0,0,0,2126,2127,5,266,0,0,2127,297,1,0,0,0,2128, - 2136,3,194,97,0,2129,2131,5,113,0,0,2130,2129,1,0,0,0,2130,2131, - 1,0,0,0,2131,2132,1,0,0,0,2132,2136,3,300,150,0,2133,2136,3,302, - 151,0,2134,2136,3,304,152,0,2135,2128,1,0,0,0,2135,2130,1,0,0,0, - 2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,299,1,0,0,0,2137,2138,5, - 265,0,0,2138,2139,3,206,103,0,2139,2140,5,266,0,0,2140,301,1,0,0, - 0,2141,2142,5,201,0,0,2142,2143,5,265,0,0,2143,2148,3,308,154,0, - 2144,2145,5,263,0,0,2145,2147,3,308,154,0,2146,2144,1,0,0,0,2147, - 2150,1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2151,1,0,0, - 0,2150,2148,1,0,0,0,2151,2154,5,266,0,0,2152,2153,5,216,0,0,2153, - 2155,5,140,0,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,303,1,0, - 0,0,2156,2157,5,265,0,0,2157,2158,3,284,142,0,2158,2159,5,266,0, - 0,2159,305,1,0,0,0,2160,2163,3,192,96,0,2161,2163,3,308,154,0,2162, - 2160,1,0,0,0,2162,2161,1,0,0,0,2163,307,1,0,0,0,2164,2165,3,310, - 155,0,2165,309,1,0,0,0,2166,2167,6,155,-1,0,2167,2169,3,314,157, - 0,2168,2170,3,312,156,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170, - 2174,1,0,0,0,2171,2172,5,132,0,0,2172,2174,3,310,155,3,2173,2166, - 1,0,0,0,2173,2171,1,0,0,0,2174,2183,1,0,0,0,2175,2176,10,2,0,0,2176, - 2177,5,5,0,0,2177,2182,3,310,155,3,2178,2179,10,1,0,0,2179,2180, - 5,138,0,0,2180,2182,3,310,155,2,2181,2175,1,0,0,0,2181,2178,1,0, - 0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,311, - 1,0,0,0,2185,2183,1,0,0,0,2186,2187,3,320,160,0,2187,2188,3,314, - 157,0,2188,2245,1,0,0,0,2189,2190,3,320,160,0,2190,2191,3,322,161, - 0,2191,2192,3,300,150,0,2192,2245,1,0,0,0,2193,2195,5,132,0,0,2194, - 2193,1,0,0,0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2197,5,15, - 0,0,2197,2198,3,314,157,0,2198,2199,5,5,0,0,2199,2200,3,314,157, - 0,2200,2245,1,0,0,0,2201,2203,5,132,0,0,2202,2201,1,0,0,0,2202,2203, - 1,0,0,0,2203,2204,1,0,0,0,2204,2205,5,94,0,0,2205,2206,5,265,0,0, - 2206,2211,3,308,154,0,2207,2208,5,263,0,0,2208,2210,3,308,154,0, - 2209,2207,1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212, - 1,0,0,0,2212,2214,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,266,0,0, - 2215,2245,1,0,0,0,2216,2218,5,132,0,0,2217,2216,1,0,0,0,2217,2218, - 1,0,0,0,2218,2219,1,0,0,0,2219,2220,5,94,0,0,2220,2245,3,300,150, - 0,2221,2223,5,132,0,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2224, - 1,0,0,0,2224,2225,7,18,0,0,2225,2228,3,314,157,0,2226,2227,5,62, - 0,0,2227,2229,3,314,157,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229, - 2245,1,0,0,0,2230,2231,7,19,0,0,2231,2245,3,314,157,0,2232,2234, - 5,108,0,0,2233,2235,5,132,0,0,2234,2233,1,0,0,0,2234,2235,1,0,0, - 0,2235,2236,1,0,0,0,2236,2245,7,20,0,0,2237,2239,5,108,0,0,2238, - 2240,5,132,0,0,2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0, - 0,0,2241,2242,5,57,0,0,2242,2243,5,82,0,0,2243,2245,3,314,157,0, - 2244,2186,1,0,0,0,2244,2189,1,0,0,0,2244,2194,1,0,0,0,2244,2202, - 1,0,0,0,2244,2217,1,0,0,0,2244,2222,1,0,0,0,2244,2230,1,0,0,0,2244, - 2232,1,0,0,0,2244,2237,1,0,0,0,2245,313,1,0,0,0,2246,2247,6,157, - -1,0,2247,2251,3,316,158,0,2248,2249,7,21,0,0,2249,2251,3,314,157, - 4,2250,2246,1,0,0,0,2250,2248,1,0,0,0,2251,2263,1,0,0,0,2252,2253, - 10,3,0,0,2253,2254,7,22,0,0,2254,2262,3,314,157,4,2255,2256,10,2, - 0,0,2256,2257,7,21,0,0,2257,2262,3,314,157,3,2258,2259,10,1,0,0, - 2259,2260,5,260,0,0,2260,2262,3,314,157,2,2261,2252,1,0,0,0,2261, - 2255,1,0,0,0,2261,2258,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0, - 0,2263,2264,1,0,0,0,2264,315,1,0,0,0,2265,2263,1,0,0,0,2266,2267, - 6,158,-1,0,2267,2513,5,133,0,0,2268,2513,3,326,163,0,2269,2270,3, - 362,181,0,2270,2271,3,318,159,0,2271,2513,1,0,0,0,2272,2273,5,286, - 0,0,2273,2513,3,318,159,0,2274,2513,3,364,182,0,2275,2513,3,324, - 162,0,2276,2513,3,318,159,0,2277,2513,5,276,0,0,2278,2513,5,272, - 0,0,2279,2280,5,148,0,0,2280,2281,5,265,0,0,2281,2282,3,314,157, - 0,2282,2283,5,94,0,0,2283,2284,3,314,157,0,2284,2285,5,266,0,0,2285, - 2513,1,0,0,0,2286,2287,5,265,0,0,2287,2290,3,308,154,0,2288,2289, - 5,9,0,0,2289,2291,3,332,166,0,2290,2288,1,0,0,0,2290,2291,1,0,0, - 0,2291,2300,1,0,0,0,2292,2293,5,263,0,0,2293,2296,3,308,154,0,2294, - 2295,5,9,0,0,2295,2297,3,332,166,0,2296,2294,1,0,0,0,2296,2297,1, - 0,0,0,2297,2299,1,0,0,0,2298,2292,1,0,0,0,2299,2302,1,0,0,0,2300, - 2301,1,0,0,0,2300,2298,1,0,0,0,2301,2303,1,0,0,0,2302,2300,1,0,0, - 0,2303,2304,5,266,0,0,2304,2513,1,0,0,0,2305,2306,5,168,0,0,2306, - 2307,5,265,0,0,2307,2312,3,308,154,0,2308,2309,5,263,0,0,2309,2311, - 3,308,154,0,2310,2308,1,0,0,0,2311,2314,1,0,0,0,2312,2310,1,0,0, - 0,2312,2313,1,0,0,0,2313,2315,1,0,0,0,2314,2312,1,0,0,0,2315,2316, - 5,266,0,0,2316,2513,1,0,0,0,2317,2318,3,190,95,0,2318,2319,5,265, - 0,0,2319,2320,5,257,0,0,2320,2322,5,266,0,0,2321,2323,3,342,171, - 0,2322,2321,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0,0,2324,2326, - 3,344,172,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2513,1,0,0, - 0,2327,2328,3,190,95,0,2328,2340,5,265,0,0,2329,2331,3,280,140,0, - 2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2337, - 3,308,154,0,2333,2334,5,263,0,0,2334,2336,3,308,154,0,2335,2333, - 1,0,0,0,2336,2339,1,0,0,0,2337,2335,1,0,0,0,2337,2338,1,0,0,0,2338, - 2341,1,0,0,0,2339,2337,1,0,0,0,2340,2330,1,0,0,0,2340,2341,1,0,0, - 0,2341,2352,1,0,0,0,2342,2343,5,139,0,0,2343,2344,5,26,0,0,2344, - 2349,3,268,134,0,2345,2346,5,263,0,0,2346,2348,3,268,134,0,2347, - 2345,1,0,0,0,2348,2351,1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0, - 0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2352,2342,1,0,0,0,2352,2353, - 1,0,0,0,2353,2354,1,0,0,0,2354,2356,5,266,0,0,2355,2357,3,342,171, - 0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2360, - 3,344,172,0,2359,2358,1,0,0,0,2359,2360,1,0,0,0,2360,2513,1,0,0, - 0,2361,2362,3,362,181,0,2362,2363,5,273,0,0,2363,2364,3,308,154, - 0,2364,2513,1,0,0,0,2365,2374,5,265,0,0,2366,2371,3,362,181,0,2367, - 2368,5,263,0,0,2368,2370,3,362,181,0,2369,2367,1,0,0,0,2370,2373, - 1,0,0,0,2371,2369,1,0,0,0,2371,2372,1,0,0,0,2372,2375,1,0,0,0,2373, - 2371,1,0,0,0,2374,2366,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0, - 0,2376,2377,5,266,0,0,2377,2378,5,273,0,0,2378,2513,3,308,154,0, - 2379,2380,5,265,0,0,2380,2381,3,206,103,0,2381,2382,5,266,0,0,2382, - 2513,1,0,0,0,2383,2384,5,66,0,0,2384,2385,5,265,0,0,2385,2386,3, - 206,103,0,2386,2387,5,266,0,0,2387,2513,1,0,0,0,2388,2389,5,28,0, - 0,2389,2391,3,314,157,0,2390,2392,3,340,170,0,2391,2390,1,0,0,0, - 2392,2393,1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397, - 1,0,0,0,2395,2396,5,59,0,0,2396,2398,3,308,154,0,2397,2395,1,0,0, - 0,2397,2398,1,0,0,0,2398,2399,1,0,0,0,2399,2400,5,61,0,0,2400,2513, - 1,0,0,0,2401,2403,5,28,0,0,2402,2404,3,340,170,0,2403,2402,1,0,0, - 0,2404,2405,1,0,0,0,2405,2403,1,0,0,0,2405,2406,1,0,0,0,2406,2409, - 1,0,0,0,2407,2408,5,59,0,0,2408,2410,3,308,154,0,2409,2407,1,0,0, - 0,2409,2410,1,0,0,0,2410,2411,1,0,0,0,2411,2412,5,61,0,0,2412,2513, - 1,0,0,0,2413,2414,5,29,0,0,2414,2415,5,265,0,0,2415,2416,3,308,154, - 0,2416,2417,5,9,0,0,2417,2418,3,332,166,0,2418,2419,5,266,0,0,2419, - 2513,1,0,0,0,2420,2421,5,195,0,0,2421,2422,5,265,0,0,2422,2423,3, - 308,154,0,2423,2424,5,9,0,0,2424,2425,3,332,166,0,2425,2426,5,266, - 0,0,2426,2513,1,0,0,0,2427,2428,5,8,0,0,2428,2437,5,267,0,0,2429, - 2434,3,308,154,0,2430,2431,5,263,0,0,2431,2433,3,308,154,0,2432, - 2430,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,2429,1,0,0,0,2437,2438, - 1,0,0,0,2438,2439,1,0,0,0,2439,2513,5,268,0,0,2440,2513,3,362,181, - 0,2441,2513,5,40,0,0,2442,2446,5,42,0,0,2443,2444,5,265,0,0,2444, - 2445,5,277,0,0,2445,2447,5,266,0,0,2446,2443,1,0,0,0,2446,2447,1, - 0,0,0,2447,2513,1,0,0,0,2448,2452,5,43,0,0,2449,2450,5,265,0,0,2450, - 2451,5,277,0,0,2451,2453,5,266,0,0,2452,2449,1,0,0,0,2452,2453,1, - 0,0,0,2453,2513,1,0,0,0,2454,2458,5,119,0,0,2455,2456,5,265,0,0, - 2456,2457,5,277,0,0,2457,2459,5,266,0,0,2458,2455,1,0,0,0,2458,2459, - 1,0,0,0,2459,2513,1,0,0,0,2460,2464,5,120,0,0,2461,2462,5,265,0, - 0,2462,2463,5,277,0,0,2463,2465,5,266,0,0,2464,2461,1,0,0,0,2464, - 2465,1,0,0,0,2465,2513,1,0,0,0,2466,2513,5,44,0,0,2467,2513,5,41, - 0,0,2468,2469,5,184,0,0,2469,2470,5,265,0,0,2470,2471,3,314,157, - 0,2471,2472,5,82,0,0,2472,2475,3,314,157,0,2473,2474,5,78,0,0,2474, - 2476,3,314,157,0,2475,2473,1,0,0,0,2475,2476,1,0,0,0,2476,2477,1, - 0,0,0,2477,2478,5,266,0,0,2478,2513,1,0,0,0,2479,2480,5,131,0,0, - 2480,2481,5,265,0,0,2481,2484,3,314,157,0,2482,2483,5,263,0,0,2483, - 2485,3,330,165,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1, - 0,0,0,2486,2487,5,266,0,0,2487,2513,1,0,0,0,2488,2489,5,68,0,0,2489, - 2490,5,265,0,0,2490,2491,3,362,181,0,2491,2492,5,82,0,0,2492,2493, - 3,314,157,0,2493,2494,5,266,0,0,2494,2513,1,0,0,0,2495,2496,5,265, - 0,0,2496,2497,3,308,154,0,2497,2498,5,266,0,0,2498,2513,1,0,0,0, - 2499,2500,5,88,0,0,2500,2509,5,265,0,0,2501,2506,3,358,179,0,2502, - 2503,5,263,0,0,2503,2505,3,358,179,0,2504,2502,1,0,0,0,2505,2508, - 1,0,0,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2510,1,0,0,0,2508, - 2506,1,0,0,0,2509,2501,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, - 0,2511,2513,5,266,0,0,2512,2266,1,0,0,0,2512,2268,1,0,0,0,2512,2269, - 1,0,0,0,2512,2272,1,0,0,0,2512,2274,1,0,0,0,2512,2275,1,0,0,0,2512, - 2276,1,0,0,0,2512,2277,1,0,0,0,2512,2278,1,0,0,0,2512,2279,1,0,0, - 0,2512,2286,1,0,0,0,2512,2305,1,0,0,0,2512,2317,1,0,0,0,2512,2327, - 1,0,0,0,2512,2361,1,0,0,0,2512,2365,1,0,0,0,2512,2379,1,0,0,0,2512, - 2383,1,0,0,0,2512,2388,1,0,0,0,2512,2401,1,0,0,0,2512,2413,1,0,0, - 0,2512,2420,1,0,0,0,2512,2427,1,0,0,0,2512,2440,1,0,0,0,2512,2441, - 1,0,0,0,2512,2442,1,0,0,0,2512,2448,1,0,0,0,2512,2454,1,0,0,0,2512, - 2460,1,0,0,0,2512,2466,1,0,0,0,2512,2467,1,0,0,0,2512,2468,1,0,0, - 0,2512,2479,1,0,0,0,2512,2488,1,0,0,0,2512,2495,1,0,0,0,2512,2499, - 1,0,0,0,2513,2524,1,0,0,0,2514,2515,10,15,0,0,2515,2516,5,267,0, - 0,2516,2517,3,314,157,0,2517,2518,5,268,0,0,2518,2523,1,0,0,0,2519, - 2520,10,13,0,0,2520,2521,5,261,0,0,2521,2523,3,362,181,0,2522,2514, - 1,0,0,0,2522,2519,1,0,0,0,2523,2526,1,0,0,0,2524,2522,1,0,0,0,2524, - 2525,1,0,0,0,2525,317,1,0,0,0,2526,2524,1,0,0,0,2527,2534,5,274, - 0,0,2528,2531,5,275,0,0,2529,2530,5,198,0,0,2530,2532,5,274,0,0, - 2531,2529,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2527, - 1,0,0,0,2533,2528,1,0,0,0,2534,319,1,0,0,0,2535,2536,7,23,0,0,2536, - 321,1,0,0,0,2537,2538,7,24,0,0,2538,323,1,0,0,0,2539,2540,7,25,0, - 0,2540,325,1,0,0,0,2541,2542,5,277,0,0,2542,2556,3,328,164,0,2543, - 2544,5,265,0,0,2544,2545,5,277,0,0,2545,2546,5,266,0,0,2546,2556, - 3,328,164,0,2547,2548,5,101,0,0,2548,2549,5,277,0,0,2549,2556,3, - 328,164,0,2550,2551,5,101,0,0,2551,2552,5,265,0,0,2552,2553,5,277, - 0,0,2553,2554,5,266,0,0,2554,2556,3,328,164,0,2555,2541,1,0,0,0, - 2555,2543,1,0,0,0,2555,2547,1,0,0,0,2555,2550,1,0,0,0,2556,327,1, - 0,0,0,2557,2558,7,26,0,0,2558,329,1,0,0,0,2559,2560,7,27,0,0,2560, - 331,1,0,0,0,2561,2562,6,166,-1,0,2562,2563,5,8,0,0,2563,2564,5,251, - 0,0,2564,2565,3,332,166,0,2565,2566,5,253,0,0,2566,2607,1,0,0,0, - 2567,2568,5,235,0,0,2568,2569,5,251,0,0,2569,2570,3,332,166,0,2570, - 2571,5,263,0,0,2571,2572,3,332,166,0,2572,2573,5,253,0,0,2573,2607, - 1,0,0,0,2574,2575,5,240,0,0,2575,2576,5,251,0,0,2576,2577,3,362, - 181,0,2577,2584,3,332,166,0,2578,2579,5,263,0,0,2579,2580,3,362, - 181,0,2580,2581,3,332,166,0,2581,2583,1,0,0,0,2582,2578,1,0,0,0, - 2583,2586,1,0,0,0,2584,2582,1,0,0,0,2584,2585,1,0,0,0,2585,2587, - 1,0,0,0,2586,2584,1,0,0,0,2587,2588,5,253,0,0,2588,2607,1,0,0,0, - 2589,2592,3,338,169,0,2590,2592,3,334,167,0,2591,2589,1,0,0,0,2591, - 2590,1,0,0,0,2592,2604,1,0,0,0,2593,2594,5,265,0,0,2594,2599,3,336, - 168,0,2595,2596,5,263,0,0,2596,2598,3,336,168,0,2597,2595,1,0,0, - 0,2598,2601,1,0,0,0,2599,2597,1,0,0,0,2599,2600,1,0,0,0,2600,2602, - 1,0,0,0,2601,2599,1,0,0,0,2602,2603,5,266,0,0,2603,2605,1,0,0,0, - 2604,2593,1,0,0,0,2604,2605,1,0,0,0,2605,2607,1,0,0,0,2606,2561, - 1,0,0,0,2606,2567,1,0,0,0,2606,2574,1,0,0,0,2606,2591,1,0,0,0,2607, - 2612,1,0,0,0,2608,2609,10,5,0,0,2609,2611,5,8,0,0,2610,2608,1,0, - 0,0,2611,2614,1,0,0,0,2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,333, - 1,0,0,0,2614,2612,1,0,0,0,2615,2616,7,28,0,0,2616,335,1,0,0,0,2617, - 2620,5,277,0,0,2618,2620,3,332,166,0,2619,2617,1,0,0,0,2619,2618, - 1,0,0,0,2620,337,1,0,0,0,2621,2626,5,284,0,0,2622,2626,5,285,0,0, - 2623,2626,5,286,0,0,2624,2626,3,362,181,0,2625,2621,1,0,0,0,2625, - 2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0,2626,339,1,0,0, - 0,2627,2628,5,214,0,0,2628,2629,3,308,154,0,2629,2630,5,192,0,0, - 2630,2631,3,308,154,0,2631,341,1,0,0,0,2632,2633,5,74,0,0,2633,2634, - 5,265,0,0,2634,2635,5,215,0,0,2635,2636,3,310,155,0,2636,2637,5, - 266,0,0,2637,343,1,0,0,0,2638,2639,5,143,0,0,2639,2650,5,265,0,0, - 2640,2641,5,145,0,0,2641,2642,5,26,0,0,2642,2647,3,308,154,0,2643, - 2644,5,263,0,0,2644,2646,3,308,154,0,2645,2643,1,0,0,0,2646,2649, - 1,0,0,0,2647,2645,1,0,0,0,2647,2648,1,0,0,0,2648,2651,1,0,0,0,2649, - 2647,1,0,0,0,2650,2640,1,0,0,0,2650,2651,1,0,0,0,2651,2662,1,0,0, - 0,2652,2653,5,139,0,0,2653,2654,5,26,0,0,2654,2659,3,268,134,0,2655, - 2656,5,263,0,0,2656,2658,3,268,134,0,2657,2655,1,0,0,0,2658,2661, - 1,0,0,0,2659,2657,1,0,0,0,2659,2660,1,0,0,0,2660,2663,1,0,0,0,2661, - 2659,1,0,0,0,2662,2652,1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0, - 0,2664,2666,3,346,173,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666, - 2667,1,0,0,0,2667,2668,5,266,0,0,2668,345,1,0,0,0,2669,2670,5,154, - 0,0,2670,2686,3,348,174,0,2671,2672,5,169,0,0,2672,2686,3,348,174, - 0,2673,2674,5,154,0,0,2674,2675,5,15,0,0,2675,2676,3,348,174,0,2676, - 2677,5,5,0,0,2677,2678,3,348,174,0,2678,2686,1,0,0,0,2679,2680,5, - 169,0,0,2680,2681,5,15,0,0,2681,2682,3,348,174,0,2682,2683,5,5,0, - 0,2683,2684,3,348,174,0,2684,2686,1,0,0,0,2685,2669,1,0,0,0,2685, - 2671,1,0,0,0,2685,2673,1,0,0,0,2685,2679,1,0,0,0,2686,347,1,0,0, - 0,2687,2688,5,199,0,0,2688,2697,5,149,0,0,2689,2690,5,199,0,0,2690, - 2697,5,77,0,0,2691,2692,5,39,0,0,2692,2697,5,168,0,0,2693,2694,3, - 308,154,0,2694,2695,7,29,0,0,2695,2697,1,0,0,0,2696,2687,1,0,0,0, - 2696,2689,1,0,0,0,2696,2691,1,0,0,0,2696,2693,1,0,0,0,2697,349,1, - 0,0,0,2698,2699,3,362,181,0,2699,2700,5,261,0,0,2700,2701,3,362, - 181,0,2701,2704,1,0,0,0,2702,2704,3,362,181,0,2703,2698,1,0,0,0, - 2703,2702,1,0,0,0,2704,351,1,0,0,0,2705,2710,3,350,175,0,2706,2707, - 5,263,0,0,2707,2709,3,350,175,0,2708,2706,1,0,0,0,2709,2712,1,0, - 0,0,2710,2708,1,0,0,0,2710,2711,1,0,0,0,2711,353,1,0,0,0,2712,2710, - 1,0,0,0,2713,2727,5,2,0,0,2714,2727,5,4,0,0,2715,2727,5,58,0,0,2716, - 2727,5,37,0,0,2717,2727,5,99,0,0,2718,2727,5,162,0,0,2719,2724,5, - 174,0,0,2720,2721,5,265,0,0,2721,2722,3,362,181,0,2722,2723,5,266, - 0,0,2723,2725,1,0,0,0,2724,2720,1,0,0,0,2724,2725,1,0,0,0,2725,2727, - 1,0,0,0,2726,2713,1,0,0,0,2726,2714,1,0,0,0,2726,2715,1,0,0,0,2726, - 2716,1,0,0,0,2726,2717,1,0,0,0,2726,2718,1,0,0,0,2726,2719,1,0,0, - 0,2727,355,1,0,0,0,2728,2729,7,30,0,0,2729,357,1,0,0,0,2730,2735, - 3,362,181,0,2731,2732,5,261,0,0,2732,2734,3,362,181,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, - 359,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,166,0,0,2739,2745,3,362, - 181,0,2740,2741,5,204,0,0,2741,2745,3,362,181,0,2742,2743,5,87,0, - 0,2743,2745,3,362,181,0,2744,2738,1,0,0,0,2744,2740,1,0,0,0,2744, - 2742,1,0,0,0,2745,361,1,0,0,0,2746,2752,5,280,0,0,2747,2752,5,274, - 0,0,2748,2752,3,368,184,0,2749,2752,5,283,0,0,2750,2752,5,281,0, - 0,2751,2746,1,0,0,0,2751,2747,1,0,0,0,2751,2748,1,0,0,0,2751,2749, - 1,0,0,0,2751,2750,1,0,0,0,2752,363,1,0,0,0,2753,2755,5,256,0,0,2754, - 2753,1,0,0,0,2754,2755,1,0,0,0,2755,2756,1,0,0,0,2756,2766,5,278, - 0,0,2757,2759,5,256,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759, - 2760,1,0,0,0,2760,2766,5,279,0,0,2761,2763,5,256,0,0,2762,2761,1, - 0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0,0,2764,2766,5,277,0,0,2765, - 2754,1,0,0,0,2765,2758,1,0,0,0,2765,2762,1,0,0,0,2766,365,1,0,0, - 0,2767,2768,7,31,0,0,2768,367,1,0,0,0,2769,2770,7,32,0,0,2770,369, - 1,0,0,0,353,373,380,404,417,421,425,434,439,443,449,451,456,460, - 464,471,476,482,486,495,502,506,511,513,518,521,528,532,537,541, - 544,548,556,560,564,572,576,585,588,591,597,604,615,620,625,630, - 635,644,647,650,654,680,706,715,725,728,742,760,762,771,782,791, - 798,802,809,815,818,823,830,844,857,862,867,873,909,912,918,921, - 927,933,945,947,958,966,971,975,980,987,991,995,1001,1005,1009,1018, - 1021,1024,1032,1046,1053,1066,1072,1077,1080,1083,1088,1092,1101, - 1106,1112,1116,1121,1126,1129,1137,1140,1144,1156,1159,1163,1168, - 1172,1188,1193,1200,1203,1209,1212,1219,1222,1226,1231,1234,1241, - 1244,1268,1282,1286,1290,1310,1312,1314,1323,1325,1334,1336,1345, - 1347,1352,1361,1370,1379,1390,1396,1401,1404,1417,1427,1431,1436, - 1447,1452,1485,1493,1498,1502,1506,1511,1514,1519,1524,1529,1533, - 1542,1545,1549,1556,1565,1569,1573,1580,1583,1593,1600,1605,1610, - 1615,1621,1624,1633,1636,1639,1645,1650,1660,1663,1666,1670,1680, - 1683,1689,1695,1698,1701,1705,1715,1726,1731,1734,1738,1745,1755, - 1767,1773,1775,1784,1787,1794,1804,1810,1818,1829,1839,1850,1852, - 1858,1863,1873,1876,1882,1884,1892,1898,1901,1903,1915,1922,1926, - 1930,1934,1937,1944,1953,1956,1960,1965,1969,1972,1979,1990,1993, - 1997,2001,2010,2013,2020,2034,2038,2042,2046,2050,2054,2058,2062, - 2072,2083,2088,2101,2103,2109,2113,2115,2123,2130,2135,2148,2154, - 2162,2169,2173,2181,2183,2194,2202,2211,2217,2222,2228,2234,2239, - 2244,2250,2261,2263,2290,2296,2300,2312,2322,2325,2330,2337,2340, - 2349,2352,2356,2359,2371,2374,2393,2397,2405,2409,2434,2437,2446, - 2452,2458,2464,2475,2484,2506,2509,2512,2522,2524,2531,2533,2555, - 2584,2591,2599,2604,2606,2612,2619,2625,2647,2650,2659,2662,2665, - 2685,2696,2703,2710,2724,2726,2735,2744,2751,2754,2758,2762,2765 + 3,13,689,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,715,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,724,8, + 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,734,8,16,1,16,3, + 16,737,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,751,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,769,8,20,3,20,771,8,20, + 1,20,1,20,1,20,1,20,1,20,5,20,778,8,20,10,20,12,20,781,9,20,1,20, + 1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,791,8,21,1,21,1,21,1,22, + 1,22,1,22,1,22,1,22,3,22,800,8,22,1,22,1,22,1,22,1,22,1,22,3,22, + 807,8,22,1,22,1,22,3,22,811,8,22,1,23,1,23,1,23,1,23,1,23,3,23,818, + 8,23,1,23,1,23,1,23,1,23,3,23,824,8,23,1,23,3,23,827,8,23,1,23,1, + 23,1,23,3,23,832,8,23,1,24,1,24,1,24,1,24,1,24,3,24,839,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,853, + 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, + 866,8,26,1,26,1,26,1,26,3,26,871,8,26,1,26,1,26,1,26,3,26,876,8, + 26,1,27,1,27,1,27,1,27,3,27,882,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,918,8,32,1,32,3,32,921,8,32,1,32,1,32,1,33,1,33, + 3,33,927,8,33,1,33,3,33,930,8,33,1,33,1,33,1,34,1,34,3,34,936,8, + 34,1,35,1,35,1,35,1,35,3,35,942,8,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,3,35,954,8,35,3,35,956,8,35,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,1,36,3,36,967,8,36,1,37,1,37,1,37,1,37, + 1,37,1,37,3,37,975,8,37,1,38,1,38,1,38,3,38,980,8,38,1,38,1,38,3, + 38,984,8,38,1,39,1,39,1,39,3,39,989,8,39,1,39,1,39,1,40,1,40,1,40, + 3,40,996,8,40,1,40,1,40,3,40,1000,8,40,1,41,1,41,3,41,1004,8,41, + 1,41,1,41,1,41,1,41,3,41,1010,8,41,1,42,1,42,3,42,1014,8,42,1,42, + 1,42,3,42,1018,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1025,8,42,10,42, + 12,42,1028,9,42,3,42,1030,8,42,1,42,3,42,1033,8,42,1,43,1,43,1,43, + 1,43,1,44,1,44,3,44,1041,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,1055,8,46,1,46,1,46,1,46,1,47,1,47, + 3,47,1062,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,1075,8,49,1,49,1,49,1,49,1,49,3,49,1081,8,49,1,49,1,49, + 1,49,3,49,1086,8,49,1,49,3,49,1089,8,49,1,50,3,50,1092,8,50,1,50, + 1,50,1,50,3,50,1097,8,50,1,50,1,50,3,50,1101,8,50,1,50,1,50,1,50, + 1,50,1,50,5,50,1108,8,50,10,50,12,50,1111,9,50,1,50,1,50,3,50,1115, + 8,50,1,50,1,50,1,51,1,51,3,51,1121,8,51,1,52,1,52,3,52,1125,8,52, + 1,52,1,52,3,52,1129,8,52,1,53,1,53,1,53,3,53,1134,8,53,1,53,3,53, + 1137,8,53,1,53,1,53,1,53,1,53,5,53,1143,8,53,10,53,12,53,1146,9, + 53,3,53,1148,8,53,1,53,3,53,1151,8,53,1,54,1,54,1,54,1,54,1,54,1, + 54,1,54,1,54,5,54,1161,8,54,10,54,12,54,1164,9,54,3,54,1166,8,54, + 1,54,3,54,1169,8,54,1,55,1,55,1,55,3,55,1174,8,55,1,55,1,55,3,55, + 1178,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,1194,8,56,1,57,1,57,1,57,3,57,1199,8,57,1,57, + 1,57,1,57,5,57,1204,8,57,10,57,12,57,1207,9,57,3,57,1209,8,57,1, + 58,1,58,1,58,1,58,3,58,1215,8,58,1,58,3,58,1218,8,58,1,58,1,58,1, + 58,5,58,1223,8,58,10,58,12,58,1226,9,58,3,58,1228,8,58,1,59,1,59, + 3,59,1232,8,59,1,59,1,59,1,59,3,59,1237,8,59,1,59,3,59,1240,8,59, + 1,59,1,59,1,59,5,59,1245,8,59,10,59,12,59,1248,9,59,3,59,1250,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,1274,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,1288, + 8,65,1,65,1,65,3,65,1292,8,65,1,66,1,66,3,66,1296,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,1316,8,68,3,68,1318,8,68,3,68,1320,8,68,1,69, + 1,69,1,69,1,69,1,69,1,69,1,69,3,69,1329,8,69,3,69,1331,8,69,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,3,70,1340,8,70,3,70,1342,8,70,1,71, + 1,71,1,71,1,71,1,71,1,71,1,71,3,71,1351,8,71,3,71,1353,8,71,1,72, + 1,72,1,72,3,72,1358,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, + 1367,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1376,8,74,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,3,75,1385,8,75,1,76,1,76,1,76,1,77, + 1,77,1,77,1,77,1,77,1,77,3,77,1396,8,77,1,78,1,78,1,78,1,78,3,78, + 1402,8,78,1,78,1,78,1,78,3,78,1407,8,78,1,78,3,78,1410,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,1423,8,80, + 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1433,8,80,1,80,1,80, + 3,80,1437,8,80,1,81,1,81,1,81,3,81,1442,8,81,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,5,82,1451,8,82,10,82,12,82,1454,9,82,1,82,1,82,3, + 82,1458,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,1489,8,93,10,93,12,93,1492,9,93, + 1,94,1,94,1,94,5,94,1497,8,94,10,94,12,94,1500,9,94,1,95,1,95,3, + 95,1504,8,95,1,96,1,96,3,96,1508,8,96,1,97,1,97,1,98,1,98,3,98,1514, + 8,98,1,99,1,99,1,99,3,99,1519,8,99,1,99,3,99,1522,8,99,1,99,1,99, + 1,99,3,99,1527,8,99,1,99,1,99,1,99,3,99,1532,8,99,1,99,1,99,1,99, + 3,99,1537,8,99,1,99,1,99,3,99,1541,8,99,1,99,1,99,1,99,1,99,1,99, + 1,99,1,99,3,99,1550,8,99,1,99,3,99,1553,8,99,1,99,1,99,3,99,1557, + 8,99,1,100,1,100,1,100,5,100,1562,8,100,10,100,12,100,1565,9,100, + 1,101,1,101,1,101,1,101,1,102,1,102,3,102,1573,8,102,1,102,1,102, + 3,102,1577,8,102,5,102,1579,8,102,10,102,12,102,1582,9,102,1,102, + 1,102,1,103,1,103,3,103,1588,8,103,1,104,3,104,1591,8,104,1,104, + 1,104,1,105,1,105,1,105,1,105,5,105,1599,8,105,10,105,12,105,1602, + 9,105,1,106,1,106,1,106,1,106,3,106,1608,8,106,1,106,1,106,1,106, + 3,106,1613,8,106,1,106,1,106,1,106,3,106,1618,8,106,1,106,1,106, + 1,106,3,106,1623,8,106,1,106,1,106,5,106,1627,8,106,10,106,12,106, + 1630,9,106,3,106,1632,8,106,1,107,1,107,1,107,1,107,1,107,1,107, + 1,107,3,107,1641,8,107,1,107,3,107,1644,8,107,1,107,3,107,1647,8, + 107,1,108,1,108,1,108,1,108,3,108,1653,8,108,1,109,1,109,1,109,3, + 109,1658,8,109,1,110,1,110,1,111,1,111,1,111,1,111,5,111,1666,8, + 111,10,111,12,111,1669,9,111,3,111,1671,8,111,1,111,3,111,1674,8, + 111,1,111,1,111,3,111,1678,8,111,1,112,1,112,1,112,1,113,1,113,1, + 113,5,113,1686,8,113,10,113,12,113,1689,9,113,3,113,1691,8,113,1, + 114,1,114,1,114,1,114,3,114,1697,8,114,1,114,1,114,5,114,1701,8, + 114,10,114,12,114,1704,9,114,3,114,1706,8,114,1,115,3,115,1709,8, + 115,1,115,1,115,3,115,1713,8,115,1,116,1,116,1,116,1,116,1,116,1, + 116,1,116,1,116,3,116,1723,8,116,1,117,1,117,1,118,1,118,1,119,1, + 119,1,119,5,119,1732,8,119,10,119,12,119,1735,9,119,1,119,1,119, + 3,119,1739,8,119,1,119,3,119,1742,8,119,1,120,1,120,3,120,1746,8, + 120,1,120,1,120,1,120,1,121,1,121,3,121,1753,8,121,1,121,1,121,1, + 121,1,121,1,121,1,121,5,121,1761,8,121,10,121,12,121,1764,9,121, + 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1775, + 8,122,1,122,1,122,1,122,1,122,3,122,1781,8,122,3,122,1783,8,122, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,1792,8,123,1,123, + 3,123,1795,8,123,1,124,1,124,1,124,1,124,1,124,3,124,1802,8,124, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1812,8,125, + 1,126,1,126,1,126,1,126,3,126,1818,8,126,1,127,1,127,1,127,1,127, + 5,127,1824,8,127,10,127,12,127,1827,9,127,1,127,1,127,1,128,1,128, + 1,128,1,128,5,128,1835,8,128,10,128,12,128,1838,9,128,1,128,1,128, + 1,129,1,129,1,129,5,129,1845,8,129,10,129,12,129,1848,9,129,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1858,8,130,3,130, + 1860,8,130,1,130,1,130,1,130,1,130,3,130,1866,8,130,1,131,1,131, + 1,131,3,131,1871,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, + 1879,8,132,10,132,12,132,1882,9,132,3,132,1884,8,132,1,132,1,132, + 1,132,1,132,3,132,1890,8,132,3,132,1892,8,132,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,1900,8,133,1,133,1,133,1,133,1,133,3,133, + 1906,8,133,1,133,5,133,1909,8,133,10,133,12,133,1912,9,133,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,5,134,1921,8,134,10,134,12,134, + 1924,9,134,1,134,1,134,1,134,1,134,3,134,1930,8,134,1,135,1,135, + 3,135,1934,8,135,1,135,1,135,3,135,1938,8,135,1,136,1,136,3,136, + 1942,8,136,1,136,3,136,1945,8,136,1,136,1,136,1,136,5,136,1950,8, + 136,10,136,12,136,1953,9,136,1,136,1,136,1,136,1,136,5,136,1959, + 8,136,10,136,12,136,1962,9,136,3,136,1964,8,136,1,136,3,136,1967, + 8,136,1,136,1,136,1,136,3,136,1972,8,136,1,136,3,136,1975,8,136, + 1,137,1,137,1,137,1,138,1,138,1,138,1,139,3,139,1984,8,139,1,139, + 1,139,1,139,5,139,1989,8,139,10,139,12,139,1992,9,139,1,140,1,140, + 1,141,1,141,1,141,1,141,5,141,2000,8,141,10,141,12,141,2003,9,141, + 3,141,2005,8,141,1,141,1,141,3,141,2009,8,141,1,142,1,142,3,142, + 2013,8,142,1,142,1,142,1,142,1,143,1,143,1,144,1,144,3,144,2022, + 8,144,1,144,3,144,2025,8,144,1,144,1,144,1,144,1,144,1,144,3,144, + 2032,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,3,145,2046,8,145,5,145,2048,8,145,10,145,12,145, + 2051,9,145,1,146,3,146,2054,8,146,1,146,1,146,3,146,2058,8,146,1, + 146,1,146,3,146,2062,8,146,1,146,1,146,3,146,2066,8,146,1,146,1, + 146,3,146,2070,8,146,1,146,1,146,3,146,2074,8,146,1,146,1,146,1, + 146,1,146,1,146,1,146,1,146,1,146,3,146,2084,8,146,1,147,1,147,1, + 147,1,147,1,147,1,147,1,147,5,147,2093,8,147,10,147,12,147,2096, + 9,147,1,147,1,147,3,147,2100,8,147,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,3,148,2113,8,148,3,148,2115, + 8,148,1,149,1,149,1,150,1,150,3,150,2121,8,150,1,150,1,150,3,150, + 2125,8,150,3,150,2127,8,150,1,151,1,151,1,151,1,151,5,151,2133,8, + 151,10,151,12,151,2136,9,151,1,151,1,151,1,152,1,152,3,152,2142, + 8,152,1,152,1,152,1,152,3,152,2147,8,152,1,153,1,153,1,153,1,153, + 1,154,1,154,1,154,1,154,1,154,5,154,2158,8,154,10,154,12,154,2161, + 9,154,1,154,1,154,1,154,3,154,2166,8,154,1,155,1,155,1,155,1,155, + 1,156,1,156,3,156,2174,8,156,1,157,1,157,1,158,1,158,1,158,3,158, + 2181,8,158,1,158,1,158,3,158,2185,8,158,1,158,1,158,1,158,1,158, + 1,158,1,158,5,158,2193,8,158,10,158,12,158,2196,9,158,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,1,159,3,159,2206,8,159,1,159,1,159, + 1,159,1,159,1,159,1,159,3,159,2214,8,159,1,159,1,159,1,159,1,159, + 1,159,5,159,2221,8,159,10,159,12,159,2224,9,159,1,159,1,159,1,159, + 3,159,2229,8,159,1,159,1,159,1,159,3,159,2234,8,159,1,159,1,159, + 1,159,1,159,3,159,2240,8,159,1,159,1,159,1,159,1,159,3,159,2246, + 8,159,1,159,1,159,1,159,3,159,2251,8,159,1,159,1,159,1,159,3,159, + 2256,8,159,1,160,1,160,1,160,1,160,3,160,2262,8,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,5,160,2273,8,160,10,160, + 12,160,2276,9,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,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,3,161,2302,8,161,1,161,1,161,1,161, + 1,161,3,161,2308,8,161,5,161,2310,8,161,10,161,12,161,2313,9,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2322,8,161,10,161, + 12,161,2325,9,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,3,161, + 2334,8,161,1,161,3,161,2337,8,161,1,161,1,161,1,161,3,161,2342,8, + 161,1,161,1,161,1,161,5,161,2347,8,161,10,161,12,161,2350,9,161, + 3,161,2352,8,161,1,161,1,161,1,161,1,161,1,161,5,161,2359,8,161, + 10,161,12,161,2362,9,161,3,161,2364,8,161,1,161,1,161,3,161,2368, + 8,161,1,161,3,161,2371,8,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,5,161,2381,8,161,10,161,12,161,2384,9,161,3,161,2386, + 8,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,1,161,1,161,4,161,2403,8,161,11,161,12,161,2404, + 1,161,1,161,3,161,2409,8,161,1,161,1,161,1,161,1,161,4,161,2415, + 8,161,11,161,12,161,2416,1,161,1,161,3,161,2421,8,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, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2444,8,161, + 10,161,12,161,2447,9,161,3,161,2449,8,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,3,161,2458,8,161,1,161,1,161,1,161,1,161,3,161, + 2464,8,161,1,161,1,161,1,161,1,161,3,161,2470,8,161,1,161,1,161, + 1,161,1,161,3,161,2476,8,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,3,161,2487,8,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,3,161,2496,8,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,1,161,1,161,1,161,1,161, + 1,161,5,161,2516,8,161,10,161,12,161,2519,9,161,3,161,2521,8,161, + 1,161,3,161,2524,8,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,5,161,2534,8,161,10,161,12,161,2537,9,161,1,162,1,162,1,162, + 1,162,3,162,2543,8,162,3,162,2545,8,162,1,163,1,163,1,164,1,164, + 1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,3,166,2567,8,166,1,167,1,167,1,168, + 1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 5,169,2594,8,169,10,169,12,169,2597,9,169,1,169,1,169,1,169,1,169, + 3,169,2603,8,169,1,169,1,169,1,169,1,169,5,169,2609,8,169,10,169, + 12,169,2612,9,169,1,169,1,169,3,169,2616,8,169,3,169,2618,8,169, + 1,169,1,169,5,169,2622,8,169,10,169,12,169,2625,9,169,1,170,1,170, + 1,171,1,171,3,171,2631,8,171,1,172,1,172,1,172,1,172,3,172,2637, + 8,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174, + 1,175,1,175,1,175,5,175,2652,8,175,10,175,12,175,2655,9,175,1,176, + 1,176,1,176,1,176,1,176,3,176,2662,8,176,1,176,1,176,1,176,1,176, + 1,176,5,176,2669,8,176,10,176,12,176,2672,9,176,3,176,2674,8,176, + 1,176,3,176,2677,8,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, + 3,177,2697,8,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,3,178,2708,8,178,1,179,1,179,1,179,1,179,1,179,3,179,2715, + 8,179,1,180,1,180,1,180,5,180,2720,8,180,10,180,12,180,2723,9,180, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 3,181,2736,8,181,3,181,2738,8,181,1,182,1,182,1,183,1,183,1,183, + 5,183,2745,8,183,10,183,12,183,2748,9,183,1,184,1,184,1,184,1,184, + 1,184,1,184,3,184,2756,8,184,1,185,1,185,1,185,1,185,1,185,3,185, + 2763,8,185,1,186,3,186,2766,8,186,1,186,1,186,3,186,2770,8,186,1, + 186,1,186,3,186,2774,8,186,1,186,3,186,2777,8,186,1,187,1,187,1, + 188,1,188,1,188,10,779,1452,1628,1667,1687,1702,1733,1762,1836,2311, + 6,266,290,316,320,322,338,189,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,0,33,2,0,46,46,170,170,2,0,166,166,204,204, + 2,0,176,176,202,202,2,0,69,69,80,80,2,0,27,27,159,159,2,0,103,103, + 144,144,2,0,47,47,171,171,2,0,3,3,12,12,3,0,87,87,166,166,204,204, + 2,0,178,178,209,209,1,0,245,248,2,0,147,147,219,223,2,0,65,65,95, + 95,2,0,64,64,200,200,2,0,10,10,55,55,2,0,75,75,112,112,2,0,2,2,57, + 57,2,0,14,14,185,185,3,0,106,106,115,115,164,164,2,0,105,105,163, + 163,4,0,70,70,133,133,194,194,208,208,1,0,255,256,1,0,257,259,1, + 0,249,254,3,0,2,2,6,6,181,181,2,0,70,70,194,194,5,0,48,49,91,92, + 122,125,172,173,217,218,1,0,127,130,2,0,8,8,227,244,2,0,77,77,149, + 149,4,0,46,46,178,178,188,188,209,209,16,0,28,29,40,40,43,43,48, + 48,68,68,91,91,114,114,122,122,124,124,158,158,165,165,172,172,184, + 184,196,196,204,204,217,217,23,0,14,14,43,44,48,49,65,65,68,68,91, + 91,95,95,110,110,119,119,122,125,127,130,137,137,140,140,152,153, + 172,173,180,180,184,185,195,195,204,204,213,213,217,217,220,220, + 231,231,3100,0,381,1,0,0,0,2,386,1,0,0,0,4,412,1,0,0,0,6,414,1,0, + 0,0,8,425,1,0,0,0,10,427,1,0,0,0,12,466,1,0,0,0,14,488,1,0,0,0,16, + 542,1,0,0,0,18,561,1,0,0,0,20,574,1,0,0,0,22,578,1,0,0,0,24,640, + 1,0,0,0,26,688,1,0,0,0,28,690,1,0,0,0,30,698,1,0,0,0,32,718,1,0, + 0,0,34,738,1,0,0,0,36,745,1,0,0,0,38,754,1,0,0,0,40,762,1,0,0,0, + 42,784,1,0,0,0,44,794,1,0,0,0,46,812,1,0,0,0,48,833,1,0,0,0,50,854, + 1,0,0,0,52,860,1,0,0,0,54,877,1,0,0,0,56,886,1,0,0,0,58,893,1,0, + 0,0,60,901,1,0,0,0,62,908,1,0,0,0,64,915,1,0,0,0,66,924,1,0,0,0, + 68,935,1,0,0,0,70,937,1,0,0,0,72,957,1,0,0,0,74,974,1,0,0,0,76,976, + 1,0,0,0,78,985,1,0,0,0,80,992,1,0,0,0,82,1001,1,0,0,0,84,1011,1, + 0,0,0,86,1034,1,0,0,0,88,1040,1,0,0,0,90,1042,1,0,0,0,92,1049,1, + 0,0,0,94,1061,1,0,0,0,96,1063,1,0,0,0,98,1070,1,0,0,0,100,1091,1, + 0,0,0,102,1120,1,0,0,0,104,1122,1,0,0,0,106,1130,1,0,0,0,108,1152, + 1,0,0,0,110,1170,1,0,0,0,112,1193,1,0,0,0,114,1195,1,0,0,0,116,1210, + 1,0,0,0,118,1229,1,0,0,0,120,1251,1,0,0,0,122,1256,1,0,0,0,124,1261, + 1,0,0,0,126,1266,1,0,0,0,128,1271,1,0,0,0,130,1278,1,0,0,0,132,1293, + 1,0,0,0,134,1299,1,0,0,0,136,1319,1,0,0,0,138,1321,1,0,0,0,140,1332, + 1,0,0,0,142,1343,1,0,0,0,144,1357,1,0,0,0,146,1359,1,0,0,0,148,1368, + 1,0,0,0,150,1377,1,0,0,0,152,1386,1,0,0,0,154,1389,1,0,0,0,156,1397, + 1,0,0,0,158,1413,1,0,0,0,160,1417,1,0,0,0,162,1441,1,0,0,0,164,1443, + 1,0,0,0,166,1459,1,0,0,0,168,1462,1,0,0,0,170,1466,1,0,0,0,172,1469, + 1,0,0,0,174,1473,1,0,0,0,176,1475,1,0,0,0,178,1477,1,0,0,0,180,1479, + 1,0,0,0,182,1481,1,0,0,0,184,1483,1,0,0,0,186,1485,1,0,0,0,188,1493, + 1,0,0,0,190,1503,1,0,0,0,192,1507,1,0,0,0,194,1509,1,0,0,0,196,1513, + 1,0,0,0,198,1518,1,0,0,0,200,1558,1,0,0,0,202,1566,1,0,0,0,204,1570, + 1,0,0,0,206,1585,1,0,0,0,208,1590,1,0,0,0,210,1594,1,0,0,0,212,1603, + 1,0,0,0,214,1633,1,0,0,0,216,1648,1,0,0,0,218,1654,1,0,0,0,220,1659, + 1,0,0,0,222,1661,1,0,0,0,224,1679,1,0,0,0,226,1682,1,0,0,0,228,1692, + 1,0,0,0,230,1712,1,0,0,0,232,1722,1,0,0,0,234,1724,1,0,0,0,236,1726, + 1,0,0,0,238,1741,1,0,0,0,240,1743,1,0,0,0,242,1750,1,0,0,0,244,1782, + 1,0,0,0,246,1794,1,0,0,0,248,1801,1,0,0,0,250,1811,1,0,0,0,252,1813, + 1,0,0,0,254,1819,1,0,0,0,256,1830,1,0,0,0,258,1841,1,0,0,0,260,1849, + 1,0,0,0,262,1867,1,0,0,0,264,1872,1,0,0,0,266,1893,1,0,0,0,268,1929, + 1,0,0,0,270,1931,1,0,0,0,272,1939,1,0,0,0,274,1976,1,0,0,0,276,1979, + 1,0,0,0,278,1983,1,0,0,0,280,1993,1,0,0,0,282,2008,1,0,0,0,284,2010, + 1,0,0,0,286,2017,1,0,0,0,288,2031,1,0,0,0,290,2033,1,0,0,0,292,2083, + 1,0,0,0,294,2099,1,0,0,0,296,2101,1,0,0,0,298,2116,1,0,0,0,300,2118, + 1,0,0,0,302,2128,1,0,0,0,304,2146,1,0,0,0,306,2148,1,0,0,0,308,2152, + 1,0,0,0,310,2167,1,0,0,0,312,2173,1,0,0,0,314,2175,1,0,0,0,316,2184, + 1,0,0,0,318,2255,1,0,0,0,320,2261,1,0,0,0,322,2523,1,0,0,0,324,2544, + 1,0,0,0,326,2546,1,0,0,0,328,2548,1,0,0,0,330,2550,1,0,0,0,332,2566, + 1,0,0,0,334,2568,1,0,0,0,336,2570,1,0,0,0,338,2617,1,0,0,0,340,2626, + 1,0,0,0,342,2630,1,0,0,0,344,2636,1,0,0,0,346,2638,1,0,0,0,348,2643, + 1,0,0,0,350,2648,1,0,0,0,352,2656,1,0,0,0,354,2696,1,0,0,0,356,2707, + 1,0,0,0,358,2714,1,0,0,0,360,2716,1,0,0,0,362,2737,1,0,0,0,364,2739, + 1,0,0,0,366,2741,1,0,0,0,368,2755,1,0,0,0,370,2762,1,0,0,0,372,2776, + 1,0,0,0,374,2778,1,0,0,0,376,2780,1,0,0,0,378,380,3,2,1,0,379,378, + 1,0,0,0,380,383,1,0,0,0,381,379,1,0,0,0,381,382,1,0,0,0,382,384, + 1,0,0,0,383,381,1,0,0,0,384,385,5,0,0,1,385,1,1,0,0,0,386,388,3, + 4,2,0,387,389,5,262,0,0,388,387,1,0,0,0,388,389,1,0,0,0,389,3,1, + 0,0,0,390,413,3,208,104,0,391,413,3,6,3,0,392,413,3,8,4,0,393,413, + 3,26,13,0,394,413,3,64,32,0,395,413,3,66,33,0,396,413,3,68,34,0, + 397,413,3,74,37,0,398,413,3,88,44,0,399,413,3,94,47,0,400,413,3, + 100,50,0,401,413,3,102,51,0,402,413,3,108,54,0,403,413,3,110,55, + 0,404,413,3,112,56,0,405,413,3,144,72,0,406,413,3,152,76,0,407,413, + 3,154,77,0,408,413,3,156,78,0,409,413,3,158,79,0,410,413,3,160,80, + 0,411,413,3,162,81,0,412,390,1,0,0,0,412,391,1,0,0,0,412,392,1,0, + 0,0,412,393,1,0,0,0,412,394,1,0,0,0,412,395,1,0,0,0,412,396,1,0, + 0,0,412,397,1,0,0,0,412,398,1,0,0,0,412,399,1,0,0,0,412,400,1,0, + 0,0,412,401,1,0,0,0,412,402,1,0,0,0,412,403,1,0,0,0,412,404,1,0, + 0,0,412,405,1,0,0,0,412,406,1,0,0,0,412,407,1,0,0,0,412,408,1,0, + 0,0,412,409,1,0,0,0,412,410,1,0,0,0,412,411,1,0,0,0,413,5,1,0,0, + 0,414,415,5,203,0,0,415,416,3,184,92,0,416,7,1,0,0,0,417,426,3,18, + 9,0,418,426,3,20,10,0,419,426,3,22,11,0,420,426,3,24,12,0,421,426, + 3,16,8,0,422,426,3,14,7,0,423,426,3,12,6,0,424,426,3,10,5,0,425, + 417,1,0,0,0,425,418,1,0,0,0,425,419,1,0,0,0,425,420,1,0,0,0,425, + 421,1,0,0,0,425,422,1,0,0,0,425,423,1,0,0,0,425,424,1,0,0,0,426, + 9,1,0,0,0,427,429,5,37,0,0,428,430,5,19,0,0,429,428,1,0,0,0,429, + 430,1,0,0,0,430,431,1,0,0,0,431,433,5,188,0,0,432,434,3,172,86,0, + 433,432,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,451,3,174,87, + 0,436,437,5,265,0,0,437,442,3,218,109,0,438,439,5,263,0,0,439,441, + 3,218,109,0,440,438,1,0,0,0,441,444,1,0,0,0,442,440,1,0,0,0,442, + 443,1,0,0,0,443,447,1,0,0,0,444,442,1,0,0,0,445,446,5,263,0,0,446, + 448,3,212,106,0,447,445,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0, + 449,450,5,266,0,0,450,452,1,0,0,0,451,436,1,0,0,0,451,452,1,0,0, + 0,452,459,1,0,0,0,453,454,5,17,0,0,454,457,5,26,0,0,455,458,3,302, + 151,0,456,458,3,256,128,0,457,455,1,0,0,0,457,456,1,0,0,0,458,460, + 1,0,0,0,459,453,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0,0,461,464, + 3,198,99,0,462,463,5,9,0,0,463,465,3,208,104,0,464,462,1,0,0,0,464, + 465,1,0,0,0,465,11,1,0,0,0,466,468,5,37,0,0,467,469,5,19,0,0,468, + 467,1,0,0,0,468,469,1,0,0,0,469,470,1,0,0,0,470,472,5,188,0,0,471, + 473,3,172,86,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474, + 475,3,174,87,0,475,479,5,115,0,0,476,480,3,186,93,0,477,478,5,147, + 0,0,478,480,3,324,162,0,479,476,1,0,0,0,479,477,1,0,0,0,480,484, + 1,0,0,0,481,482,5,17,0,0,482,483,5,26,0,0,483,485,3,256,128,0,484, + 481,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,487,3,198,99,0,487, + 13,1,0,0,0,488,490,5,37,0,0,489,491,5,19,0,0,490,489,1,0,0,0,490, + 491,1,0,0,0,491,492,1,0,0,0,492,494,5,188,0,0,493,495,3,172,86,0, + 494,493,1,0,0,0,494,495,1,0,0,0,495,496,1,0,0,0,496,514,3,174,87, + 0,497,498,5,265,0,0,498,503,3,220,110,0,499,500,5,263,0,0,500,502, + 3,220,110,0,501,499,1,0,0,0,502,505,1,0,0,0,503,501,1,0,0,0,503, + 504,1,0,0,0,504,510,1,0,0,0,505,503,1,0,0,0,506,507,5,263,0,0,507, + 508,5,150,0,0,508,509,5,110,0,0,509,511,3,302,151,0,510,506,1,0, + 0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,513,5,266,0,0,513,515,1, + 0,0,0,514,497,1,0,0,0,514,515,1,0,0,0,515,521,1,0,0,0,516,517,5, + 150,0,0,517,519,5,110,0,0,518,520,3,302,151,0,519,518,1,0,0,0,519, + 520,1,0,0,0,520,522,1,0,0,0,521,516,1,0,0,0,521,522,1,0,0,0,522, + 526,1,0,0,0,523,524,5,145,0,0,524,525,5,26,0,0,525,527,3,238,119, + 0,526,523,1,0,0,0,526,527,1,0,0,0,527,529,1,0,0,0,528,530,3,224, + 112,0,529,528,1,0,0,0,529,530,1,0,0,0,530,531,1,0,0,0,531,532,5, + 23,0,0,532,533,5,9,0,0,533,536,5,111,0,0,534,535,5,25,0,0,535,537, + 3,254,127,0,536,534,1,0,0,0,536,537,1,0,0,0,537,540,1,0,0,0,538, + 539,5,9,0,0,539,541,3,208,104,0,540,538,1,0,0,0,540,541,1,0,0,0, + 541,15,1,0,0,0,542,543,5,37,0,0,543,545,5,212,0,0,544,546,3,172, + 86,0,545,544,1,0,0,0,545,546,1,0,0,0,546,547,1,0,0,0,547,549,3,178, + 89,0,548,550,3,204,102,0,549,548,1,0,0,0,549,550,1,0,0,0,550,552, + 1,0,0,0,551,553,3,224,112,0,552,551,1,0,0,0,552,553,1,0,0,0,553, + 556,1,0,0,0,554,555,5,25,0,0,555,557,3,254,127,0,556,554,1,0,0,0, + 556,557,1,0,0,0,557,558,1,0,0,0,558,559,5,9,0,0,559,560,3,208,104, + 0,560,17,1,0,0,0,561,562,5,37,0,0,562,564,7,0,0,0,563,565,3,172, + 86,0,564,563,1,0,0,0,564,565,1,0,0,0,565,566,1,0,0,0,566,568,3,176, + 88,0,567,569,3,224,112,0,568,567,1,0,0,0,568,569,1,0,0,0,569,572, + 1,0,0,0,570,571,5,24,0,0,571,573,3,324,162,0,572,570,1,0,0,0,572, + 573,1,0,0,0,573,19,1,0,0,0,574,575,5,37,0,0,575,576,5,166,0,0,576, + 577,3,370,185,0,577,21,1,0,0,0,578,580,5,37,0,0,579,581,5,12,0,0, + 580,579,1,0,0,0,580,581,1,0,0,0,581,582,1,0,0,0,582,584,5,84,0,0, + 583,585,3,172,86,0,584,583,1,0,0,0,584,585,1,0,0,0,585,586,1,0,0, + 0,586,599,3,180,90,0,587,596,5,265,0,0,588,593,3,338,169,0,589,590, + 5,263,0,0,590,592,3,338,169,0,591,589,1,0,0,0,592,595,1,0,0,0,593, + 591,1,0,0,0,593,594,1,0,0,0,594,597,1,0,0,0,595,593,1,0,0,0,596, + 588,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598,600,5,266,0,0,599, + 587,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,5,160,0,0,602, + 605,3,338,169,0,603,604,5,102,0,0,604,606,3,338,169,0,605,603,1, + 0,0,0,605,606,1,0,0,0,606,607,1,0,0,0,607,608,5,24,0,0,608,612,5, + 274,0,0,609,610,5,104,0,0,610,611,5,249,0,0,611,613,5,274,0,0,612, + 609,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,615,5,206,0,0,615, + 616,5,249,0,0,616,617,5,274,0,0,617,618,5,126,0,0,618,619,5,249, + 0,0,619,623,5,274,0,0,620,621,5,18,0,0,621,622,5,249,0,0,622,624, + 5,274,0,0,623,620,1,0,0,0,623,624,1,0,0,0,624,628,1,0,0,0,625,626, + 5,20,0,0,626,627,5,249,0,0,627,629,5,274,0,0,628,625,1,0,0,0,628, + 629,1,0,0,0,629,633,1,0,0,0,630,631,5,187,0,0,631,632,5,249,0,0, + 632,634,5,274,0,0,633,630,1,0,0,0,633,634,1,0,0,0,634,638,1,0,0, + 0,635,636,5,76,0,0,636,637,5,249,0,0,637,639,5,274,0,0,638,635,1, + 0,0,0,638,639,1,0,0,0,639,23,1,0,0,0,640,641,5,37,0,0,641,643,5, + 84,0,0,642,644,3,172,86,0,643,642,1,0,0,0,643,644,1,0,0,0,644,645, + 1,0,0,0,645,658,3,180,90,0,646,655,5,265,0,0,647,652,3,338,169,0, + 648,649,5,263,0,0,649,651,3,338,169,0,650,648,1,0,0,0,651,654,1, + 0,0,0,652,650,1,0,0,0,652,653,1,0,0,0,653,656,1,0,0,0,654,652,1, + 0,0,0,655,647,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,659,5, + 266,0,0,658,646,1,0,0,0,658,659,1,0,0,0,659,662,1,0,0,0,660,661, + 5,160,0,0,661,663,3,338,169,0,662,660,1,0,0,0,662,663,1,0,0,0,663, + 664,1,0,0,0,664,665,5,24,0,0,665,666,5,274,0,0,666,667,5,186,0,0, + 667,668,5,249,0,0,668,669,3,324,162,0,669,25,1,0,0,0,670,689,3,28, + 14,0,671,689,3,62,31,0,672,689,3,60,30,0,673,689,3,58,29,0,674,689, + 3,54,27,0,675,689,3,56,28,0,676,689,3,52,26,0,677,689,3,48,24,0, + 678,689,3,50,25,0,679,689,3,46,23,0,680,689,3,44,22,0,681,689,3, + 42,21,0,682,689,3,40,20,0,683,689,3,34,17,0,684,689,3,30,15,0,685, + 689,3,32,16,0,686,689,3,36,18,0,687,689,3,38,19,0,688,670,1,0,0, + 0,688,671,1,0,0,0,688,672,1,0,0,0,688,673,1,0,0,0,688,674,1,0,0, + 0,688,675,1,0,0,0,688,676,1,0,0,0,688,677,1,0,0,0,688,678,1,0,0, + 0,688,679,1,0,0,0,688,680,1,0,0,0,688,681,1,0,0,0,688,682,1,0,0, + 0,688,683,1,0,0,0,688,684,1,0,0,0,688,685,1,0,0,0,688,686,1,0,0, + 0,688,687,1,0,0,0,689,27,1,0,0,0,690,691,5,4,0,0,691,692,5,46,0, + 0,692,693,3,184,92,0,693,694,5,176,0,0,694,695,5,142,0,0,695,696, + 7,1,0,0,696,697,3,370,185,0,697,29,1,0,0,0,698,699,5,4,0,0,699,700, + 5,188,0,0,700,701,3,186,93,0,701,702,5,176,0,0,702,703,5,32,0,0, + 703,704,5,182,0,0,704,705,3,192,96,0,705,706,5,265,0,0,706,707,3, + 234,117,0,707,708,5,249,0,0,708,714,3,324,162,0,709,710,5,263,0, + 0,710,711,3,234,117,0,711,712,5,249,0,0,712,713,3,324,162,0,713, + 715,1,0,0,0,714,709,1,0,0,0,714,715,1,0,0,0,715,716,1,0,0,0,716, + 717,5,266,0,0,717,31,1,0,0,0,718,719,5,4,0,0,719,720,5,188,0,0,720, + 723,3,186,93,0,721,722,5,145,0,0,722,724,3,314,157,0,723,721,1,0, + 0,0,723,724,1,0,0,0,724,725,1,0,0,0,725,736,5,176,0,0,726,727,5, + 30,0,0,727,728,5,94,0,0,728,733,3,324,162,0,729,730,5,216,0,0,730, + 731,5,151,0,0,731,732,5,249,0,0,732,734,3,372,186,0,733,729,1,0, + 0,0,733,734,1,0,0,0,734,737,1,0,0,0,735,737,5,197,0,0,736,726,1, + 0,0,0,736,735,1,0,0,0,737,33,1,0,0,0,738,739,5,4,0,0,739,740,5,188, + 0,0,740,741,3,186,93,0,741,742,5,31,0,0,742,743,3,192,96,0,743,744, + 3,226,113,0,744,35,1,0,0,0,745,746,5,4,0,0,746,747,5,188,0,0,747, + 748,3,186,93,0,748,750,5,58,0,0,749,751,5,32,0,0,750,749,1,0,0,0, + 750,751,1,0,0,0,751,752,1,0,0,0,752,753,3,192,96,0,753,37,1,0,0, + 0,754,755,5,4,0,0,755,756,5,188,0,0,756,757,3,186,93,0,757,758,5, + 176,0,0,758,759,5,142,0,0,759,760,7,1,0,0,760,761,3,370,185,0,761, + 39,1,0,0,0,762,763,5,4,0,0,763,764,5,188,0,0,764,770,3,186,93,0, + 765,771,5,158,0,0,766,768,5,1,0,0,767,769,3,172,86,0,768,767,1,0, + 0,0,768,769,1,0,0,0,769,771,1,0,0,0,770,765,1,0,0,0,770,766,1,0, + 0,0,771,772,1,0,0,0,772,773,5,33,0,0,773,774,5,265,0,0,774,779,3, + 226,113,0,775,776,5,263,0,0,776,778,3,226,113,0,777,775,1,0,0,0, + 778,781,1,0,0,0,779,780,1,0,0,0,779,777,1,0,0,0,780,782,1,0,0,0, + 781,779,1,0,0,0,782,783,5,266,0,0,783,41,1,0,0,0,784,785,5,4,0,0, + 785,786,5,188,0,0,786,787,3,186,93,0,787,788,5,1,0,0,788,790,5,32, + 0,0,789,791,3,172,86,0,790,789,1,0,0,0,790,791,1,0,0,0,791,792,1, + 0,0,0,792,793,3,228,114,0,793,43,1,0,0,0,794,795,5,4,0,0,795,796, + 5,188,0,0,796,797,3,186,93,0,797,799,5,4,0,0,798,800,5,32,0,0,799, + 798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,810,3,192,96,0,802, + 806,5,176,0,0,803,807,3,232,116,0,804,805,5,34,0,0,805,807,3,324, + 162,0,806,803,1,0,0,0,806,804,1,0,0,0,807,811,1,0,0,0,808,809,5, + 58,0,0,809,811,5,51,0,0,810,802,1,0,0,0,810,808,1,0,0,0,811,45,1, + 0,0,0,812,813,5,4,0,0,813,814,5,188,0,0,814,815,3,186,93,0,815,817, + 5,1,0,0,816,818,3,172,86,0,817,816,1,0,0,0,817,818,1,0,0,0,818,831, + 1,0,0,0,819,820,5,145,0,0,820,823,3,314,157,0,821,822,5,24,0,0,822, + 824,3,324,162,0,823,821,1,0,0,0,823,824,1,0,0,0,824,826,1,0,0,0, + 825,827,3,246,123,0,826,825,1,0,0,0,826,827,1,0,0,0,827,832,1,0, + 0,0,828,829,5,154,0,0,829,830,5,145,0,0,830,832,3,244,122,0,831, + 819,1,0,0,0,831,828,1,0,0,0,832,47,1,0,0,0,833,834,5,4,0,0,834,835, + 5,188,0,0,835,838,3,186,93,0,836,837,5,145,0,0,837,839,3,314,157, + 0,838,836,1,0,0,0,838,839,1,0,0,0,839,840,1,0,0,0,840,852,5,176, + 0,0,841,842,5,72,0,0,842,853,3,236,118,0,843,844,5,168,0,0,844,845, + 5,79,0,0,845,853,3,260,130,0,846,847,5,24,0,0,847,853,3,324,162, + 0,848,849,5,25,0,0,849,853,3,254,127,0,850,851,5,175,0,0,851,853, + 3,254,127,0,852,841,1,0,0,0,852,843,1,0,0,0,852,846,1,0,0,0,852, + 848,1,0,0,0,852,850,1,0,0,0,853,49,1,0,0,0,854,855,5,4,0,0,855,856, + 5,188,0,0,856,857,3,186,93,0,857,858,5,155,0,0,858,859,5,146,0,0, + 859,51,1,0,0,0,860,861,5,4,0,0,861,862,5,188,0,0,862,863,3,186,93, + 0,863,865,5,58,0,0,864,866,3,170,85,0,865,864,1,0,0,0,865,866,1, + 0,0,0,866,875,1,0,0,0,867,868,5,145,0,0,868,870,3,314,157,0,869, + 871,5,22,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,876,1,0,0,0,872, + 873,5,154,0,0,873,874,5,145,0,0,874,876,3,244,122,0,875,867,1,0, + 0,0,875,872,1,0,0,0,876,53,1,0,0,0,877,878,5,4,0,0,878,879,5,212, + 0,0,879,881,3,188,94,0,880,882,3,204,102,0,881,880,1,0,0,0,881,882, + 1,0,0,0,882,883,1,0,0,0,883,884,5,9,0,0,884,885,3,208,104,0,885, + 55,1,0,0,0,886,887,5,4,0,0,887,888,5,212,0,0,888,889,3,188,94,0, + 889,890,5,156,0,0,890,891,5,193,0,0,891,892,3,188,94,0,892,57,1, + 0,0,0,893,894,5,4,0,0,894,895,5,212,0,0,895,896,3,188,94,0,896,897, + 5,176,0,0,897,898,5,142,0,0,898,899,7,1,0,0,899,900,3,366,183,0, + 900,59,1,0,0,0,901,902,5,4,0,0,902,903,5,188,0,0,903,904,3,186,93, + 0,904,905,5,156,0,0,905,906,5,193,0,0,906,907,3,186,93,0,907,61, + 1,0,0,0,908,909,5,4,0,0,909,910,5,212,0,0,910,911,3,188,94,0,911, + 912,7,2,0,0,912,913,5,25,0,0,913,914,3,254,127,0,914,63,1,0,0,0, + 915,917,5,196,0,0,916,918,5,188,0,0,917,916,1,0,0,0,917,918,1,0, + 0,0,918,920,1,0,0,0,919,921,3,170,85,0,920,919,1,0,0,0,920,921,1, + 0,0,0,921,922,1,0,0,0,922,923,3,186,93,0,923,65,1,0,0,0,924,926, + 5,56,0,0,925,927,5,46,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,929, + 1,0,0,0,928,930,7,3,0,0,929,928,1,0,0,0,929,930,1,0,0,0,930,931, + 1,0,0,0,931,932,3,366,183,0,932,67,1,0,0,0,933,936,3,70,35,0,934, + 936,3,72,36,0,935,933,1,0,0,0,935,934,1,0,0,0,936,69,1,0,0,0,937, + 938,5,36,0,0,938,939,5,182,0,0,939,941,3,186,93,0,940,942,3,302, + 151,0,941,940,1,0,0,0,941,942,1,0,0,0,942,955,1,0,0,0,943,944,5, + 190,0,0,944,945,5,185,0,0,945,946,5,265,0,0,946,947,3,372,186,0, + 947,953,5,266,0,0,948,949,5,157,0,0,949,950,5,265,0,0,950,951,3, + 372,186,0,951,952,5,266,0,0,952,954,1,0,0,0,953,948,1,0,0,0,953, + 954,1,0,0,0,954,956,1,0,0,0,955,943,1,0,0,0,955,956,1,0,0,0,956, + 71,1,0,0,0,957,958,5,36,0,0,958,959,5,96,0,0,959,960,5,182,0,0,960, + 966,3,186,93,0,961,962,5,145,0,0,962,963,5,265,0,0,963,964,3,314, + 157,0,964,965,5,266,0,0,965,967,1,0,0,0,966,961,1,0,0,0,966,967, + 1,0,0,0,967,73,1,0,0,0,968,975,3,86,43,0,969,975,3,84,42,0,970,975, + 3,82,41,0,971,975,3,78,39,0,972,975,3,80,40,0,973,975,3,76,38,0, + 974,968,1,0,0,0,974,969,1,0,0,0,974,970,1,0,0,0,974,971,1,0,0,0, + 974,972,1,0,0,0,974,973,1,0,0,0,975,75,1,0,0,0,976,977,5,58,0,0, + 977,979,7,0,0,0,978,980,3,170,85,0,979,978,1,0,0,0,979,980,1,0,0, + 0,980,981,1,0,0,0,981,983,3,184,92,0,982,984,7,4,0,0,983,982,1,0, + 0,0,983,984,1,0,0,0,984,77,1,0,0,0,985,986,5,58,0,0,986,988,5,212, + 0,0,987,989,3,170,85,0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1, + 0,0,0,990,991,3,188,94,0,991,79,1,0,0,0,992,993,5,58,0,0,993,995, + 5,188,0,0,994,996,3,170,85,0,995,994,1,0,0,0,995,996,1,0,0,0,996, + 997,1,0,0,0,997,999,3,186,93,0,998,1000,5,22,0,0,999,998,1,0,0,0, + 999,1000,1,0,0,0,1000,81,1,0,0,0,1001,1003,5,58,0,0,1002,1004,5, + 96,0,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005, + 1006,5,182,0,0,1006,1009,3,186,93,0,1007,1008,5,145,0,0,1008,1010, + 3,314,157,0,1009,1007,1,0,0,0,1009,1010,1,0,0,0,1010,83,1,0,0,0, + 1011,1013,5,58,0,0,1012,1014,5,12,0,0,1013,1012,1,0,0,0,1013,1014, + 1,0,0,0,1014,1015,1,0,0,0,1015,1017,5,84,0,0,1016,1018,3,170,85, + 0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019,1032, + 3,190,95,0,1020,1029,5,265,0,0,1021,1026,3,338,169,0,1022,1023,5, + 263,0,0,1023,1025,3,338,169,0,1024,1022,1,0,0,0,1025,1028,1,0,0, + 0,1026,1024,1,0,0,0,1026,1027,1,0,0,0,1027,1030,1,0,0,0,1028,1026, + 1,0,0,0,1029,1021,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0,0,0,1031, + 1033,5,266,0,0,1032,1020,1,0,0,0,1032,1033,1,0,0,0,1033,85,1,0,0, + 0,1034,1035,5,58,0,0,1035,1036,5,166,0,0,1036,1037,3,370,185,0,1037, + 87,1,0,0,0,1038,1041,3,90,45,0,1039,1041,3,92,46,0,1040,1038,1,0, + 0,0,1040,1039,1,0,0,0,1041,89,1,0,0,0,1042,1043,5,86,0,0,1043,1044, + 5,166,0,0,1044,1045,3,370,185,0,1045,1046,5,193,0,0,1046,1047,5, + 87,0,0,1047,1048,3,370,185,0,1048,91,1,0,0,0,1049,1050,5,86,0,0, + 1050,1051,3,362,181,0,1051,1052,5,136,0,0,1052,1054,3,364,182,0, + 1053,1055,3,366,183,0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056, + 1,0,0,0,1056,1057,5,193,0,0,1057,1058,3,368,184,0,1058,93,1,0,0, + 0,1059,1062,3,96,48,0,1060,1062,3,98,49,0,1061,1059,1,0,0,0,1061, + 1060,1,0,0,0,1062,95,1,0,0,0,1063,1064,5,161,0,0,1064,1065,5,166, + 0,0,1065,1066,3,370,185,0,1066,1067,5,82,0,0,1067,1068,5,87,0,0, + 1068,1069,3,370,185,0,1069,97,1,0,0,0,1070,1074,5,161,0,0,1071,1072, + 5,86,0,0,1072,1073,5,137,0,0,1073,1075,5,78,0,0,1074,1071,1,0,0, + 0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1077,3,362,181,0,1077, + 1078,5,136,0,0,1078,1080,3,364,182,0,1079,1081,3,366,183,0,1080, + 1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1088,5,82, + 0,0,1083,1089,3,368,184,0,1084,1086,5,166,0,0,1085,1084,1,0,0,0, + 1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,3,370,185,0,1088,1083, + 1,0,0,0,1088,1085,1,0,0,0,1089,99,1,0,0,0,1090,1092,3,210,105,0, + 1091,1090,1,0,0,0,1091,1092,1,0,0,0,1092,1093,1,0,0,0,1093,1094, + 5,99,0,0,1094,1096,7,5,0,0,1095,1097,5,188,0,0,1096,1095,1,0,0,0, + 1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098,1100,3,186,93,0,1099,1101, + 3,302,151,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1114,1,0,0, + 0,1102,1103,5,145,0,0,1103,1104,5,265,0,0,1104,1109,3,314,157,0, + 1105,1106,5,263,0,0,1106,1108,3,314,157,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,266,0,0,1113,1115,1,0,0,0,1114,1102, + 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,3,208,104, + 0,1117,101,1,0,0,0,1118,1121,3,104,52,0,1119,1121,3,106,53,0,1120, + 1118,1,0,0,0,1120,1119,1,0,0,0,1121,103,1,0,0,0,1122,1124,5,50,0, + 0,1123,1125,5,82,0,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0,1125,1126, + 1,0,0,0,1126,1128,3,186,93,0,1127,1129,3,274,137,0,1128,1127,1,0, + 0,0,1128,1129,1,0,0,0,1129,105,1,0,0,0,1130,1131,5,50,0,0,1131,1136, + 3,186,93,0,1132,1134,5,9,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0, + 1134,1135,1,0,0,0,1135,1137,3,370,185,0,1136,1133,1,0,0,0,1136,1137, + 1,0,0,0,1137,1138,1,0,0,0,1138,1147,5,82,0,0,1139,1144,3,290,145, + 0,1140,1141,5,263,0,0,1141,1143,3,290,145,0,1142,1140,1,0,0,0,1143, + 1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,1148,1,0,0, + 0,1146,1144,1,0,0,0,1147,1139,1,0,0,0,1147,1148,1,0,0,0,1148,1150, + 1,0,0,0,1149,1151,3,274,137,0,1150,1149,1,0,0,0,1150,1151,1,0,0, + 0,1151,107,1,0,0,0,1152,1153,5,54,0,0,1153,1154,3,186,93,0,1154, + 1155,5,176,0,0,1155,1165,3,200,100,0,1156,1157,5,82,0,0,1157,1162, + 3,290,145,0,1158,1159,5,263,0,0,1159,1161,3,290,145,0,1160,1158, + 1,0,0,0,1161,1164,1,0,0,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163, + 1166,1,0,0,0,1164,1162,1,0,0,0,1165,1156,1,0,0,0,1165,1166,1,0,0, + 0,1166,1168,1,0,0,0,1167,1169,3,274,137,0,1168,1167,1,0,0,0,1168, + 1169,1,0,0,0,1169,109,1,0,0,0,1170,1171,5,207,0,0,1171,1173,5,103, + 0,0,1172,1174,5,188,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174, + 1175,1,0,0,0,1175,1177,3,186,93,0,1176,1178,3,302,151,0,1177,1176, + 1,0,0,0,1177,1178,1,0,0,0,1178,1179,1,0,0,0,1179,1180,3,208,104, + 0,1180,111,1,0,0,0,1181,1194,3,132,66,0,1182,1194,3,134,67,0,1183, + 1194,3,136,68,0,1184,1194,3,130,65,0,1185,1194,3,128,64,0,1186,1194, + 3,126,63,0,1187,1194,3,124,62,0,1188,1194,3,122,61,0,1189,1194,3, + 120,60,0,1190,1194,3,118,59,0,1191,1194,3,116,58,0,1192,1194,3,114, + 57,0,1193,1181,1,0,0,0,1193,1182,1,0,0,0,1193,1183,1,0,0,0,1193, + 1184,1,0,0,0,1193,1185,1,0,0,0,1193,1186,1,0,0,0,1193,1187,1,0,0, + 0,1193,1188,1,0,0,0,1193,1189,1,0,0,0,1193,1190,1,0,0,0,1193,1191, + 1,0,0,0,1193,1192,1,0,0,0,1194,113,1,0,0,0,1195,1196,5,179,0,0,1196, + 1208,7,6,0,0,1197,1199,5,115,0,0,1198,1197,1,0,0,0,1198,1199,1,0, + 0,0,1199,1200,1,0,0,0,1200,1205,3,324,162,0,1201,1202,5,271,0,0, + 1202,1204,3,324,162,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,1209,1,0,0,0,1207,1205,1,0,0,0,1208, + 1198,1,0,0,0,1208,1209,1,0,0,0,1209,115,1,0,0,0,1210,1211,5,179, + 0,0,1211,1214,5,189,0,0,1212,1213,5,94,0,0,1213,1215,3,186,93,0, + 1214,1212,1,0,0,0,1214,1215,1,0,0,0,1215,1227,1,0,0,0,1216,1218, + 5,115,0,0,1217,1216,1,0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0, + 1219,1224,3,324,162,0,1220,1221,5,271,0,0,1221,1223,3,324,162,0, + 1222,1220,1,0,0,0,1223,1226,1,0,0,0,1224,1222,1,0,0,0,1224,1225, + 1,0,0,0,1225,1228,1,0,0,0,1226,1224,1,0,0,0,1227,1217,1,0,0,0,1227, + 1228,1,0,0,0,1228,117,1,0,0,0,1229,1231,5,179,0,0,1230,1232,7,7, + 0,0,1231,1230,1,0,0,0,1231,1232,1,0,0,0,1232,1233,1,0,0,0,1233,1236, + 5,85,0,0,1234,1235,5,94,0,0,1235,1237,3,184,92,0,1236,1234,1,0,0, + 0,1236,1237,1,0,0,0,1237,1249,1,0,0,0,1238,1240,5,115,0,0,1239,1238, + 1,0,0,0,1239,1240,1,0,0,0,1240,1241,1,0,0,0,1241,1246,3,324,162, + 0,1242,1243,5,271,0,0,1243,1245,3,324,162,0,1244,1242,1,0,0,0,1245, + 1248,1,0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247,1250,1,0,0, + 0,1248,1246,1,0,0,0,1249,1239,1,0,0,0,1249,1250,1,0,0,0,1250,119, + 1,0,0,0,1251,1252,5,179,0,0,1252,1253,5,37,0,0,1253,1254,5,188,0, + 0,1254,1255,3,186,93,0,1255,121,1,0,0,0,1256,1257,5,179,0,0,1257, + 1258,5,37,0,0,1258,1259,5,212,0,0,1259,1260,3,188,94,0,1260,123, + 1,0,0,0,1261,1262,5,179,0,0,1262,1263,5,188,0,0,1263,1264,5,182, + 0,0,1264,1265,3,186,93,0,1265,125,1,0,0,0,1266,1267,5,179,0,0,1267, + 1268,5,32,0,0,1268,1269,5,182,0,0,1269,1270,3,186,93,0,1270,127, + 1,0,0,0,1271,1273,5,179,0,0,1272,1274,5,154,0,0,1273,1272,1,0,0, + 0,1273,1274,1,0,0,0,1274,1275,1,0,0,0,1275,1276,5,146,0,0,1276,1277, + 3,186,93,0,1277,129,1,0,0,0,1278,1279,5,179,0,0,1279,1280,5,73,0, + 0,1280,1281,5,94,0,0,1281,1291,3,186,93,0,1282,1283,5,145,0,0,1283, + 1284,5,265,0,0,1284,1287,3,314,157,0,1285,1286,5,263,0,0,1286,1288, + 3,314,157,0,1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,1289,1,0,0, + 0,1289,1290,5,266,0,0,1290,1292,1,0,0,0,1291,1282,1,0,0,0,1291,1292, + 1,0,0,0,1292,131,1,0,0,0,1293,1295,5,179,0,0,1294,1296,5,39,0,0, + 1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1298, + 5,167,0,0,1298,133,1,0,0,0,1299,1300,5,179,0,0,1300,1301,5,166,0, + 0,1301,1302,5,86,0,0,1302,1303,5,87,0,0,1303,1304,3,370,185,0,1304, + 135,1,0,0,0,1305,1320,3,138,69,0,1306,1320,3,140,70,0,1307,1320, + 3,142,71,0,1308,1309,5,179,0,0,1309,1310,5,86,0,0,1310,1311,7,8, + 0,0,1311,1317,3,370,185,0,1312,1313,5,136,0,0,1313,1315,7,9,0,0, + 1314,1316,3,366,183,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1318, + 1,0,0,0,1317,1312,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319, + 1305,1,0,0,0,1319,1306,1,0,0,0,1319,1307,1,0,0,0,1319,1308,1,0,0, + 0,1320,137,1,0,0,0,1321,1322,5,179,0,0,1322,1323,5,86,0,0,1323,1324, + 7,8,0,0,1324,1330,3,370,185,0,1325,1326,5,136,0,0,1326,1328,5,46, + 0,0,1327,1329,3,184,92,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,139,1,0,0, + 0,1332,1333,5,179,0,0,1333,1334,5,86,0,0,1334,1335,7,8,0,0,1335, + 1341,3,370,185,0,1336,1337,5,136,0,0,1337,1339,5,188,0,0,1338,1340, + 3,186,93,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,141,1,0,0,0,1343,1344,5, + 179,0,0,1344,1345,5,86,0,0,1345,1346,7,8,0,0,1346,1352,3,370,185, + 0,1347,1348,5,136,0,0,1348,1350,5,32,0,0,1349,1351,3,192,96,0,1350, + 1349,1,0,0,0,1350,1351,1,0,0,0,1351,1353,1,0,0,0,1352,1347,1,0,0, + 0,1352,1353,1,0,0,0,1353,143,1,0,0,0,1354,1358,3,146,73,0,1355,1358, + 3,148,74,0,1356,1358,3,150,75,0,1357,1354,1,0,0,0,1357,1355,1,0, + 0,0,1357,1356,1,0,0,0,1358,145,1,0,0,0,1359,1360,5,34,0,0,1360,1361, + 5,136,0,0,1361,1362,5,46,0,0,1362,1363,3,184,92,0,1363,1366,5,108, + 0,0,1364,1367,3,324,162,0,1365,1367,5,133,0,0,1366,1364,1,0,0,0, + 1366,1365,1,0,0,0,1367,147,1,0,0,0,1368,1369,5,34,0,0,1369,1370, + 5,136,0,0,1370,1371,5,188,0,0,1371,1372,3,186,93,0,1372,1375,5,108, + 0,0,1373,1376,3,324,162,0,1374,1376,5,133,0,0,1375,1373,1,0,0,0, + 1375,1374,1,0,0,0,1376,149,1,0,0,0,1377,1378,5,34,0,0,1378,1379, + 5,136,0,0,1379,1380,5,32,0,0,1380,1381,3,192,96,0,1381,1384,5,108, + 0,0,1382,1385,3,324,162,0,1383,1385,5,133,0,0,1384,1382,1,0,0,0, + 1384,1383,1,0,0,0,1385,151,1,0,0,0,1386,1387,5,67,0,0,1387,1388, + 3,4,2,0,1388,153,1,0,0,0,1389,1395,5,176,0,0,1390,1396,5,2,0,0,1391, + 1392,3,370,185,0,1392,1393,5,249,0,0,1393,1394,3,314,157,0,1394, + 1396,1,0,0,0,1395,1390,1,0,0,0,1395,1391,1,0,0,0,1395,1396,1,0,0, + 0,1396,155,1,0,0,0,1397,1398,5,264,0,0,1398,1399,5,180,0,0,1399, + 1409,5,265,0,0,1400,1402,3,324,162,0,1401,1400,1,0,0,0,1401,1402, + 1,0,0,0,1402,1410,1,0,0,0,1403,1406,3,324,162,0,1404,1405,5,263, + 0,0,1405,1407,3,314,157,0,1406,1404,1,0,0,0,1406,1407,1,0,0,0,1407, + 1410,1,0,0,0,1408,1410,3,314,157,0,1409,1401,1,0,0,0,1409,1403,1, + 0,0,0,1409,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1412,5,266,0,0,1412, + 157,1,0,0,0,1413,1414,5,107,0,0,1414,1415,5,121,0,0,1415,1416,3, + 186,93,0,1416,159,1,0,0,0,1417,1418,5,118,0,0,1418,1419,5,45,0,0, + 1419,1420,5,98,0,0,1420,1422,5,274,0,0,1421,1423,5,144,0,0,1422, + 1421,1,0,0,0,1422,1423,1,0,0,0,1423,1424,1,0,0,0,1424,1425,5,103, + 0,0,1425,1426,5,188,0,0,1426,1436,3,186,93,0,1427,1428,5,145,0,0, + 1428,1429,5,265,0,0,1429,1432,3,314,157,0,1430,1431,5,263,0,0,1431, + 1433,3,314,157,0,1432,1430,1,0,0,0,1432,1433,1,0,0,0,1433,1434,1, + 0,0,0,1434,1435,5,266,0,0,1435,1437,1,0,0,0,1436,1427,1,0,0,0,1436, + 1437,1,0,0,0,1437,161,1,0,0,0,1438,1442,3,164,82,0,1439,1442,3,166, + 83,0,1440,1442,3,168,84,0,1441,1438,1,0,0,0,1441,1439,1,0,0,0,1441, + 1440,1,0,0,0,1442,163,1,0,0,0,1443,1444,5,162,0,0,1444,1457,3,186, + 93,0,1445,1446,5,145,0,0,1446,1447,5,265,0,0,1447,1452,3,314,157, + 0,1448,1449,5,263,0,0,1449,1451,3,314,157,0,1450,1448,1,0,0,0,1451, + 1454,1,0,0,0,1452,1453,1,0,0,0,1452,1450,1,0,0,0,1453,1455,1,0,0, + 0,1454,1452,1,0,0,0,1455,1456,5,266,0,0,1456,1458,1,0,0,0,1457,1445, + 1,0,0,0,1457,1458,1,0,0,0,1458,165,1,0,0,0,1459,1460,5,162,0,0,1460, + 1461,5,13,0,0,1461,167,1,0,0,0,1462,1463,5,162,0,0,1463,1464,5,85, + 0,0,1464,1465,3,190,95,0,1465,169,1,0,0,0,1466,1467,5,93,0,0,1467, + 1468,5,66,0,0,1468,171,1,0,0,0,1469,1470,5,93,0,0,1470,1471,5,132, + 0,0,1471,1472,5,66,0,0,1472,173,1,0,0,0,1473,1474,3,366,183,0,1474, + 175,1,0,0,0,1475,1476,3,366,183,0,1476,177,1,0,0,0,1477,1478,3,366, + 183,0,1478,179,1,0,0,0,1479,1480,3,366,183,0,1480,181,1,0,0,0,1481, + 1482,3,366,183,0,1482,183,1,0,0,0,1483,1484,3,366,183,0,1484,185, + 1,0,0,0,1485,1490,3,370,185,0,1486,1487,5,261,0,0,1487,1489,3,370, + 185,0,1488,1486,1,0,0,0,1489,1492,1,0,0,0,1490,1488,1,0,0,0,1490, + 1491,1,0,0,0,1491,187,1,0,0,0,1492,1490,1,0,0,0,1493,1498,3,370, + 185,0,1494,1495,5,261,0,0,1495,1497,3,370,185,0,1496,1494,1,0,0, + 0,1497,1500,1,0,0,0,1498,1496,1,0,0,0,1498,1499,1,0,0,0,1499,189, + 1,0,0,0,1500,1498,1,0,0,0,1501,1504,3,374,187,0,1502,1504,3,366, + 183,0,1503,1501,1,0,0,0,1503,1502,1,0,0,0,1504,191,1,0,0,0,1505, + 1508,3,366,183,0,1506,1508,4,96,0,0,1507,1505,1,0,0,0,1507,1506, + 1,0,0,0,1508,193,1,0,0,0,1509,1510,3,366,183,0,1510,195,1,0,0,0, + 1511,1514,3,186,93,0,1512,1514,3,188,94,0,1513,1511,1,0,0,0,1513, + 1512,1,0,0,0,1514,197,1,0,0,0,1515,1516,5,21,0,0,1516,1517,5,26, + 0,0,1517,1519,3,302,151,0,1518,1515,1,0,0,0,1518,1519,1,0,0,0,1519, + 1521,1,0,0,0,1520,1522,3,224,112,0,1521,1520,1,0,0,0,1521,1522,1, + 0,0,0,1522,1526,1,0,0,0,1523,1524,5,168,0,0,1524,1525,5,79,0,0,1525, + 1527,3,260,130,0,1526,1523,1,0,0,0,1526,1527,1,0,0,0,1527,1531,1, + 0,0,0,1528,1529,5,216,0,0,1529,1530,5,175,0,0,1530,1532,3,254,127, + 0,1531,1528,1,0,0,0,1531,1532,1,0,0,0,1532,1536,1,0,0,0,1533,1534, + 5,23,0,0,1534,1535,5,9,0,0,1535,1537,3,236,118,0,1536,1533,1,0,0, + 0,1536,1537,1,0,0,0,1537,1540,1,0,0,0,1538,1539,5,24,0,0,1539,1541, + 3,324,162,0,1540,1538,1,0,0,0,1540,1541,1,0,0,0,1541,1552,1,0,0, + 0,1542,1543,5,30,0,0,1543,1544,5,94,0,0,1544,1549,3,366,183,0,1545, + 1546,5,216,0,0,1546,1547,5,151,0,0,1547,1548,5,249,0,0,1548,1550, + 5,277,0,0,1549,1545,1,0,0,0,1549,1550,1,0,0,0,1550,1553,1,0,0,0, + 1551,1553,5,197,0,0,1552,1542,1,0,0,0,1552,1551,1,0,0,0,1552,1553, + 1,0,0,0,1553,1556,1,0,0,0,1554,1555,5,25,0,0,1555,1557,3,254,127, + 0,1556,1554,1,0,0,0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1563, + 3,202,101,0,1559,1560,5,263,0,0,1560,1562,3,202,101,0,1561,1559, + 1,0,0,0,1562,1565,1,0,0,0,1563,1561,1,0,0,0,1563,1564,1,0,0,0,1564, + 201,1,0,0,0,1565,1563,1,0,0,0,1566,1567,3,366,183,0,1567,1568,5, + 249,0,0,1568,1569,3,314,157,0,1569,203,1,0,0,0,1570,1572,5,265,0, + 0,1571,1573,3,206,103,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, + 1580,1,0,0,0,1574,1576,5,263,0,0,1575,1577,3,206,103,0,1576,1575, + 1,0,0,0,1576,1577,1,0,0,0,1577,1579,1,0,0,0,1578,1574,1,0,0,0,1579, + 1582,1,0,0,0,1580,1578,1,0,0,0,1580,1581,1,0,0,0,1581,1583,1,0,0, + 0,1582,1580,1,0,0,0,1583,1584,5,266,0,0,1584,205,1,0,0,0,1585,1587, + 3,182,91,0,1586,1588,3,224,112,0,1587,1586,1,0,0,0,1587,1588,1,0, + 0,0,1588,207,1,0,0,0,1589,1591,3,210,105,0,1590,1589,1,0,0,0,1590, + 1591,1,0,0,0,1591,1592,1,0,0,0,1592,1593,3,264,132,0,1593,209,1, + 0,0,0,1594,1595,5,216,0,0,1595,1600,3,284,142,0,1596,1597,5,263, + 0,0,1597,1599,3,284,142,0,1598,1596,1,0,0,0,1599,1602,1,0,0,0,1600, + 1598,1,0,0,0,1600,1601,1,0,0,0,1601,211,1,0,0,0,1602,1600,1,0,0, + 0,1603,1604,5,150,0,0,1604,1605,5,110,0,0,1605,1607,3,302,151,0, + 1606,1608,5,53,0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1612, + 1,0,0,0,1609,1613,5,225,0,0,1610,1611,5,263,0,0,1611,1613,5,225, + 0,0,1612,1609,1,0,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1617, + 1,0,0,0,1614,1618,5,226,0,0,1615,1616,5,263,0,0,1616,1618,5,226, + 0,0,1617,1614,1,0,0,0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,1631, + 1,0,0,0,1619,1620,5,263,0,0,1620,1623,3,214,107,0,1621,1623,3,214, + 107,0,1622,1619,1,0,0,0,1622,1621,1,0,0,0,1623,1628,1,0,0,0,1624, + 1625,5,263,0,0,1625,1627,3,214,107,0,1626,1624,1,0,0,0,1627,1630, + 1,0,0,0,1628,1629,1,0,0,0,1628,1626,1,0,0,0,1629,1632,1,0,0,0,1630, + 1628,1,0,0,0,1631,1622,1,0,0,0,1631,1632,1,0,0,0,1632,213,1,0,0, + 0,1633,1634,5,81,0,0,1634,1635,5,110,0,0,1635,1636,3,302,151,0,1636, + 1637,5,224,0,0,1637,1638,3,186,93,0,1638,1640,3,302,151,0,1639,1641, + 5,53,0,0,1640,1639,1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642, + 1644,5,225,0,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0, + 0,0,1645,1647,5,226,0,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647, + 215,1,0,0,0,1648,1649,3,192,96,0,1649,1652,3,338,169,0,1650,1651, + 5,34,0,0,1651,1653,3,324,162,0,1652,1650,1,0,0,0,1652,1653,1,0,0, + 0,1653,217,1,0,0,0,1654,1655,3,182,91,0,1655,1657,3,338,169,0,1656, + 1658,3,224,112,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,219,1, + 0,0,0,1659,1660,3,222,111,0,1660,221,1,0,0,0,1661,1662,3,182,91, + 0,1662,1670,3,338,169,0,1663,1667,3,230,115,0,1664,1666,3,230,115, + 0,1665,1664,1,0,0,0,1666,1669,1,0,0,0,1667,1668,1,0,0,0,1667,1665, + 1,0,0,0,1668,1671,1,0,0,0,1669,1667,1,0,0,0,1670,1663,1,0,0,0,1670, + 1671,1,0,0,0,1671,1673,1,0,0,0,1672,1674,3,224,112,0,1673,1672,1, + 0,0,0,1673,1674,1,0,0,0,1674,1677,1,0,0,0,1675,1676,5,150,0,0,1676, + 1678,5,110,0,0,1677,1675,1,0,0,0,1677,1678,1,0,0,0,1678,223,1,0, + 0,0,1679,1680,5,34,0,0,1680,1681,3,324,162,0,1681,225,1,0,0,0,1682, + 1690,3,216,108,0,1683,1687,3,230,115,0,1684,1686,3,230,115,0,1685, + 1684,1,0,0,0,1686,1689,1,0,0,0,1687,1688,1,0,0,0,1687,1685,1,0,0, + 0,1688,1691,1,0,0,0,1689,1687,1,0,0,0,1690,1683,1,0,0,0,1690,1691, + 1,0,0,0,1691,227,1,0,0,0,1692,1693,3,182,91,0,1693,1696,3,338,169, + 0,1694,1695,5,34,0,0,1695,1697,3,324,162,0,1696,1694,1,0,0,0,1696, + 1697,1,0,0,0,1697,1705,1,0,0,0,1698,1702,3,230,115,0,1699,1701,3, + 230,115,0,1700,1699,1,0,0,0,1701,1704,1,0,0,0,1702,1703,1,0,0,0, + 1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704,1702,1,0,0,0,1705,1698, + 1,0,0,0,1705,1706,1,0,0,0,1706,229,1,0,0,0,1707,1709,5,132,0,0,1708, + 1707,1,0,0,0,1708,1709,1,0,0,0,1709,1710,1,0,0,0,1710,1713,5,133, + 0,0,1711,1713,3,232,116,0,1712,1708,1,0,0,0,1712,1711,1,0,0,0,1713, + 231,1,0,0,0,1714,1715,5,60,0,0,1715,1723,3,314,157,0,1716,1717,5, + 35,0,0,1717,1723,3,314,157,0,1718,1719,5,51,0,0,1719,1723,3,314, + 157,0,1720,1721,5,16,0,0,1721,1723,3,372,186,0,1722,1714,1,0,0,0, + 1722,1716,1,0,0,0,1722,1718,1,0,0,0,1722,1720,1,0,0,0,1723,233,1, + 0,0,0,1724,1725,7,10,0,0,1725,235,1,0,0,0,1726,1727,7,11,0,0,1727, + 237,1,0,0,0,1728,1733,3,240,120,0,1729,1730,5,263,0,0,1730,1732, + 3,240,120,0,1731,1729,1,0,0,0,1732,1735,1,0,0,0,1733,1734,1,0,0, + 0,1733,1731,1,0,0,0,1734,1738,1,0,0,0,1735,1733,1,0,0,0,1736,1737, + 5,263,0,0,1737,1739,3,242,121,0,1738,1736,1,0,0,0,1738,1739,1,0, + 0,0,1739,1742,1,0,0,0,1740,1742,3,242,121,0,1741,1728,1,0,0,0,1741, + 1740,1,0,0,0,1742,239,1,0,0,0,1743,1745,5,89,0,0,1744,1746,3,302, + 151,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, + 1748,5,146,0,0,1748,1749,3,372,186,0,1749,241,1,0,0,0,1750,1752, + 5,154,0,0,1751,1753,3,302,151,0,1752,1751,1,0,0,0,1752,1753,1,0, + 0,0,1753,1754,1,0,0,0,1754,1755,5,265,0,0,1755,1756,5,145,0,0,1756, + 1762,3,244,122,0,1757,1758,5,263,0,0,1758,1759,5,145,0,0,1759,1761, + 3,244,122,0,1760,1757,1,0,0,0,1761,1764,1,0,0,0,1762,1763,1,0,0, + 0,1762,1760,1,0,0,0,1763,1765,1,0,0,0,1764,1762,1,0,0,0,1765,1766, + 5,266,0,0,1766,243,1,0,0,0,1767,1768,5,210,0,0,1768,1769,3,250,125, + 0,1769,1770,3,314,157,0,1770,1783,1,0,0,0,1771,1772,3,314,157,0, + 1772,1773,3,248,124,0,1773,1775,1,0,0,0,1774,1771,1,0,0,0,1774,1775, + 1,0,0,0,1775,1776,1,0,0,0,1776,1780,5,211,0,0,1777,1778,3,248,124, + 0,1778,1779,3,314,157,0,1779,1781,1,0,0,0,1780,1777,1,0,0,0,1780, + 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1767,1,0,0,0,1782,1774,1,0,0, + 0,1783,245,1,0,0,0,1784,1785,5,30,0,0,1785,1786,5,94,0,0,1786,1791, + 3,370,185,0,1787,1788,5,216,0,0,1788,1789,5,151,0,0,1789,1790,5, + 249,0,0,1790,1792,3,372,186,0,1791,1787,1,0,0,0,1791,1792,1,0,0, + 0,1792,1795,1,0,0,0,1793,1795,5,197,0,0,1794,1784,1,0,0,0,1794,1793, + 1,0,0,0,1795,247,1,0,0,0,1796,1802,1,0,0,0,1797,1802,5,251,0,0,1798, + 1802,5,252,0,0,1799,1802,5,253,0,0,1800,1802,5,254,0,0,1801,1796, + 1,0,0,0,1801,1797,1,0,0,0,1801,1798,1,0,0,0,1801,1799,1,0,0,0,1801, + 1800,1,0,0,0,1802,249,1,0,0,0,1803,1812,5,249,0,0,1804,1812,5,250, + 0,0,1805,1812,5,115,0,0,1806,1812,5,164,0,0,1807,1812,5,163,0,0, + 1808,1812,5,15,0,0,1809,1812,5,94,0,0,1810,1812,3,248,124,0,1811, + 1803,1,0,0,0,1811,1804,1,0,0,0,1811,1805,1,0,0,0,1811,1806,1,0,0, + 0,1811,1807,1,0,0,0,1811,1808,1,0,0,0,1811,1809,1,0,0,0,1811,1810, + 1,0,0,0,1812,251,1,0,0,0,1813,1814,5,115,0,0,1814,1817,3,366,183, + 0,1815,1816,7,12,0,0,1816,1818,5,153,0,0,1817,1815,1,0,0,0,1817, + 1818,1,0,0,0,1818,253,1,0,0,0,1819,1820,5,265,0,0,1820,1825,3,262, + 131,0,1821,1822,5,263,0,0,1822,1824,3,262,131,0,1823,1821,1,0,0, + 0,1824,1827,1,0,0,0,1825,1823,1,0,0,0,1825,1826,1,0,0,0,1826,1828, + 1,0,0,0,1827,1825,1,0,0,0,1828,1829,5,266,0,0,1829,255,1,0,0,0,1830, + 1831,5,265,0,0,1831,1836,3,216,108,0,1832,1833,5,263,0,0,1833,1835, + 3,216,108,0,1834,1832,1,0,0,0,1835,1838,1,0,0,0,1836,1837,1,0,0, + 0,1836,1834,1,0,0,0,1837,1839,1,0,0,0,1838,1836,1,0,0,0,1839,1840, + 5,266,0,0,1840,257,1,0,0,0,1841,1846,3,314,157,0,1842,1843,5,263, + 0,0,1843,1845,3,314,157,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,259,1,0,0,0,1848,1846,1,0,0, + 0,1849,1859,5,52,0,0,1850,1851,5,71,0,0,1851,1852,5,191,0,0,1852, + 1853,5,26,0,0,1853,1857,3,324,162,0,1854,1855,5,63,0,0,1855,1856, + 5,26,0,0,1856,1858,3,324,162,0,1857,1854,1,0,0,0,1857,1858,1,0,0, + 0,1858,1860,1,0,0,0,1859,1850,1,0,0,0,1859,1860,1,0,0,0,1860,1865, + 1,0,0,0,1861,1862,5,117,0,0,1862,1863,5,191,0,0,1863,1864,5,26,0, + 0,1864,1866,3,324,162,0,1865,1861,1,0,0,0,1865,1866,1,0,0,0,1866, + 261,1,0,0,0,1867,1870,3,370,185,0,1868,1869,5,249,0,0,1869,1871, + 3,314,157,0,1870,1868,1,0,0,0,1870,1871,1,0,0,0,1871,263,1,0,0,0, + 1872,1883,3,266,133,0,1873,1874,5,139,0,0,1874,1875,5,26,0,0,1875, + 1880,3,270,135,0,1876,1877,5,263,0,0,1877,1879,3,270,135,0,1878, + 1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0, + 0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1883,1873,1,0,0,0,1883,1884, + 1,0,0,0,1884,1891,1,0,0,0,1885,1886,5,116,0,0,1886,1889,3,314,157, + 0,1887,1888,5,135,0,0,1888,1890,5,277,0,0,1889,1887,1,0,0,0,1889, + 1890,1,0,0,0,1890,1892,1,0,0,0,1891,1885,1,0,0,0,1891,1892,1,0,0, + 0,1892,265,1,0,0,0,1893,1894,6,133,-1,0,1894,1895,3,268,134,0,1895, + 1910,1,0,0,0,1896,1897,10,2,0,0,1897,1899,5,100,0,0,1898,1900,3, + 286,143,0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0, + 1901,1909,3,266,133,3,1902,1903,10,1,0,0,1903,1905,7,13,0,0,1904, + 1906,3,286,143,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906,1907,1, + 0,0,0,1907,1909,3,266,133,2,1908,1896,1,0,0,0,1908,1902,1,0,0,0, + 1909,1912,1,0,0,0,1910,1908,1,0,0,0,1910,1911,1,0,0,0,1911,267,1, + 0,0,0,1912,1910,1,0,0,0,1913,1930,3,272,136,0,1914,1915,5,188,0, + 0,1915,1930,3,186,93,0,1916,1917,5,211,0,0,1917,1922,3,314,157,0, + 1918,1919,5,263,0,0,1919,1921,3,314,157,0,1920,1918,1,0,0,0,1921, + 1924,1,0,0,0,1922,1920,1,0,0,0,1922,1923,1,0,0,0,1923,1930,1,0,0, + 0,1924,1922,1,0,0,0,1925,1926,5,265,0,0,1926,1927,3,264,132,0,1927, + 1928,5,266,0,0,1928,1930,1,0,0,0,1929,1913,1,0,0,0,1929,1914,1,0, + 0,0,1929,1916,1,0,0,0,1929,1925,1,0,0,0,1930,269,1,0,0,0,1931,1933, + 3,312,156,0,1932,1934,7,14,0,0,1933,1932,1,0,0,0,1933,1934,1,0,0, + 0,1934,1937,1,0,0,0,1935,1936,5,134,0,0,1936,1938,7,15,0,0,1937, + 1935,1,0,0,0,1937,1938,1,0,0,0,1938,271,1,0,0,0,1939,1941,5,174, + 0,0,1940,1942,3,286,143,0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942, + 1944,1,0,0,0,1943,1945,5,183,0,0,1944,1943,1,0,0,0,1944,1945,1,0, + 0,0,1945,1946,1,0,0,0,1946,1951,3,288,144,0,1947,1948,5,263,0,0, + 1948,1950,3,288,144,0,1949,1947,1,0,0,0,1950,1953,1,0,0,0,1951,1949, + 1,0,0,0,1951,1952,1,0,0,0,1952,1963,1,0,0,0,1953,1951,1,0,0,0,1954, + 1955,5,82,0,0,1955,1960,3,290,145,0,1956,1957,5,263,0,0,1957,1959, + 3,290,145,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,1954, + 1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0,1965,1967,3,274,137, + 0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,1971,1,0,0,0,1968,1969, + 5,87,0,0,1969,1970,5,26,0,0,1970,1972,3,278,139,0,1971,1968,1,0, + 0,0,1971,1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,3,276,138,0,1974, + 1973,1,0,0,0,1974,1975,1,0,0,0,1975,273,1,0,0,0,1976,1977,5,215, + 0,0,1977,1978,3,316,158,0,1978,275,1,0,0,0,1979,1980,5,90,0,0,1980, + 1981,3,316,158,0,1981,277,1,0,0,0,1982,1984,3,286,143,0,1983,1982, + 1,0,0,0,1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,1990,3,280,140, + 0,1986,1987,5,263,0,0,1987,1989,3,280,140,0,1988,1986,1,0,0,0,1989, + 1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991,279,1,0,0, + 0,1992,1990,1,0,0,0,1993,1994,3,282,141,0,1994,281,1,0,0,0,1995, + 2004,5,265,0,0,1996,2001,3,312,156,0,1997,1998,5,263,0,0,1998,2000, + 3,312,156,0,1999,1997,1,0,0,0,2000,2003,1,0,0,0,2001,1999,1,0,0, + 0,2001,2002,1,0,0,0,2002,2005,1,0,0,0,2003,2001,1,0,0,0,2004,1996, + 1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006,2009,5,266,0,0, + 2007,2009,3,312,156,0,2008,1995,1,0,0,0,2008,2007,1,0,0,0,2009,283, + 1,0,0,0,2010,2012,3,370,185,0,2011,2013,3,302,151,0,2012,2011,1, + 0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,9,0,0,2015, + 2016,3,306,153,0,2016,285,1,0,0,0,2017,2018,7,16,0,0,2018,287,1, + 0,0,0,2019,2024,3,312,156,0,2020,2022,5,9,0,0,2021,2020,1,0,0,0, + 2021,2022,1,0,0,0,2022,2023,1,0,0,0,2023,2025,3,370,185,0,2024,2021, + 1,0,0,0,2024,2025,1,0,0,0,2025,2032,1,0,0,0,2026,2027,3,366,183, + 0,2027,2028,5,261,0,0,2028,2029,5,257,0,0,2029,2032,1,0,0,0,2030, + 2032,5,257,0,0,2031,2019,1,0,0,0,2031,2026,1,0,0,0,2031,2030,1,0, + 0,0,2032,289,1,0,0,0,2033,2034,6,145,-1,0,2034,2035,3,296,148,0, + 2035,2049,1,0,0,0,2036,2045,10,2,0,0,2037,2038,5,38,0,0,2038,2039, + 5,109,0,0,2039,2046,3,296,148,0,2040,2041,3,292,146,0,2041,2042, + 5,109,0,0,2042,2043,3,290,145,0,2043,2044,3,294,147,0,2044,2046, + 1,0,0,0,2045,2037,1,0,0,0,2045,2040,1,0,0,0,2046,2048,1,0,0,0,2047, + 2036,1,0,0,0,2048,2051,1,0,0,0,2049,2047,1,0,0,0,2049,2050,1,0,0, + 0,2050,291,1,0,0,0,2051,2049,1,0,0,0,2052,2054,5,97,0,0,2053,2052, + 1,0,0,0,2053,2054,1,0,0,0,2054,2084,1,0,0,0,2055,2057,5,114,0,0, + 2056,2058,5,97,0,0,2057,2056,1,0,0,0,2057,2058,1,0,0,0,2058,2084, + 1,0,0,0,2059,2061,5,165,0,0,2060,2062,5,97,0,0,2061,2060,1,0,0,0, + 2061,2062,1,0,0,0,2062,2084,1,0,0,0,2063,2065,5,114,0,0,2064,2066, + 5,141,0,0,2065,2064,1,0,0,0,2065,2066,1,0,0,0,2066,2084,1,0,0,0, + 2067,2069,5,165,0,0,2068,2070,5,141,0,0,2069,2068,1,0,0,0,2069,2070, + 1,0,0,0,2070,2084,1,0,0,0,2071,2073,5,83,0,0,2072,2074,5,141,0,0, + 2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,2084,1,0,0,0,2075,2076, + 5,114,0,0,2076,2084,5,177,0,0,2077,2078,5,165,0,0,2078,2084,5,177, + 0,0,2079,2080,5,114,0,0,2080,2084,5,7,0,0,2081,2082,5,165,0,0,2082, + 2084,5,7,0,0,2083,2053,1,0,0,0,2083,2055,1,0,0,0,2083,2059,1,0,0, + 0,2083,2063,1,0,0,0,2083,2067,1,0,0,0,2083,2071,1,0,0,0,2083,2075, + 1,0,0,0,2083,2077,1,0,0,0,2083,2079,1,0,0,0,2083,2081,1,0,0,0,2084, + 293,1,0,0,0,2085,2086,5,136,0,0,2086,2100,3,316,158,0,2087,2088, + 5,205,0,0,2088,2089,5,265,0,0,2089,2094,3,370,185,0,2090,2091,5, + 263,0,0,2091,2093,3,370,185,0,2092,2090,1,0,0,0,2093,2096,1,0,0, + 0,2094,2092,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096,2094, + 1,0,0,0,2097,2098,5,266,0,0,2098,2100,1,0,0,0,2099,2085,1,0,0,0, + 2099,2087,1,0,0,0,2100,295,1,0,0,0,2101,2114,3,300,150,0,2102,2103, + 5,190,0,0,2103,2104,3,298,149,0,2104,2105,5,265,0,0,2105,2106,3, + 314,157,0,2106,2112,5,266,0,0,2107,2108,5,157,0,0,2108,2109,5,265, + 0,0,2109,2110,3,314,157,0,2110,2111,5,266,0,0,2111,2113,1,0,0,0, + 2112,2107,1,0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2102, + 1,0,0,0,2114,2115,1,0,0,0,2115,297,1,0,0,0,2116,2117,7,17,0,0,2117, + 299,1,0,0,0,2118,2126,3,304,152,0,2119,2121,5,9,0,0,2120,2119,1, + 0,0,0,2120,2121,1,0,0,0,2121,2122,1,0,0,0,2122,2124,3,370,185,0, + 2123,2125,3,302,151,0,2124,2123,1,0,0,0,2124,2125,1,0,0,0,2125,2127, + 1,0,0,0,2126,2120,1,0,0,0,2126,2127,1,0,0,0,2127,301,1,0,0,0,2128, + 2129,5,265,0,0,2129,2134,3,192,96,0,2130,2131,5,263,0,0,2131,2133, + 3,192,96,0,2132,2130,1,0,0,0,2133,2136,1,0,0,0,2134,2132,1,0,0,0, + 2134,2135,1,0,0,0,2135,2137,1,0,0,0,2136,2134,1,0,0,0,2137,2138, + 5,266,0,0,2138,303,1,0,0,0,2139,2147,3,196,98,0,2140,2142,5,113, + 0,0,2141,2140,1,0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2147, + 3,306,153,0,2144,2147,3,308,154,0,2145,2147,3,310,155,0,2146,2139, + 1,0,0,0,2146,2141,1,0,0,0,2146,2144,1,0,0,0,2146,2145,1,0,0,0,2147, + 305,1,0,0,0,2148,2149,5,265,0,0,2149,2150,3,208,104,0,2150,2151, + 5,266,0,0,2151,307,1,0,0,0,2152,2153,5,201,0,0,2153,2154,5,265,0, + 0,2154,2159,3,314,157,0,2155,2156,5,263,0,0,2156,2158,3,314,157, + 0,2157,2155,1,0,0,0,2158,2161,1,0,0,0,2159,2157,1,0,0,0,2159,2160, + 1,0,0,0,2160,2162,1,0,0,0,2161,2159,1,0,0,0,2162,2165,5,266,0,0, + 2163,2164,5,216,0,0,2164,2166,5,140,0,0,2165,2163,1,0,0,0,2165,2166, + 1,0,0,0,2166,309,1,0,0,0,2167,2168,5,265,0,0,2168,2169,3,290,145, + 0,2169,2170,5,266,0,0,2170,311,1,0,0,0,2171,2174,3,192,96,0,2172, + 2174,3,314,157,0,2173,2171,1,0,0,0,2173,2172,1,0,0,0,2174,313,1, + 0,0,0,2175,2176,3,316,158,0,2176,315,1,0,0,0,2177,2178,6,158,-1, + 0,2178,2180,3,320,160,0,2179,2181,3,318,159,0,2180,2179,1,0,0,0, + 2180,2181,1,0,0,0,2181,2185,1,0,0,0,2182,2183,5,132,0,0,2183,2185, + 3,316,158,3,2184,2177,1,0,0,0,2184,2182,1,0,0,0,2185,2194,1,0,0, + 0,2186,2187,10,2,0,0,2187,2188,5,5,0,0,2188,2193,3,316,158,3,2189, + 2190,10,1,0,0,2190,2191,5,138,0,0,2191,2193,3,316,158,2,2192,2186, + 1,0,0,0,2192,2189,1,0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194, + 2195,1,0,0,0,2195,317,1,0,0,0,2196,2194,1,0,0,0,2197,2198,3,326, + 163,0,2198,2199,3,320,160,0,2199,2256,1,0,0,0,2200,2201,3,326,163, + 0,2201,2202,3,328,164,0,2202,2203,3,306,153,0,2203,2256,1,0,0,0, + 2204,2206,5,132,0,0,2205,2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207, + 1,0,0,0,2207,2208,5,15,0,0,2208,2209,3,320,160,0,2209,2210,5,5,0, + 0,2210,2211,3,320,160,0,2211,2256,1,0,0,0,2212,2214,5,132,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,2217,5,265,0,0,2217,2222,3,314,157,0,2218,2219,5,263,0, + 0,2219,2221,3,314,157,0,2220,2218,1,0,0,0,2221,2224,1,0,0,0,2222, + 2220,1,0,0,0,2222,2223,1,0,0,0,2223,2225,1,0,0,0,2224,2222,1,0,0, + 0,2225,2226,5,266,0,0,2226,2256,1,0,0,0,2227,2229,5,132,0,0,2228, + 2227,1,0,0,0,2228,2229,1,0,0,0,2229,2230,1,0,0,0,2230,2231,5,94, + 0,0,2231,2256,3,306,153,0,2232,2234,5,132,0,0,2233,2232,1,0,0,0, + 2233,2234,1,0,0,0,2234,2235,1,0,0,0,2235,2236,7,18,0,0,2236,2239, + 3,320,160,0,2237,2238,5,62,0,0,2238,2240,3,320,160,0,2239,2237,1, + 0,0,0,2239,2240,1,0,0,0,2240,2256,1,0,0,0,2241,2242,7,19,0,0,2242, + 2256,3,320,160,0,2243,2245,5,108,0,0,2244,2246,5,132,0,0,2245,2244, + 1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0,2247,2256,7,20,0,0,2248, + 2250,5,108,0,0,2249,2251,5,132,0,0,2250,2249,1,0,0,0,2250,2251,1, + 0,0,0,2251,2252,1,0,0,0,2252,2253,5,57,0,0,2253,2254,5,82,0,0,2254, + 2256,3,320,160,0,2255,2197,1,0,0,0,2255,2200,1,0,0,0,2255,2205,1, + 0,0,0,2255,2213,1,0,0,0,2255,2228,1,0,0,0,2255,2233,1,0,0,0,2255, + 2241,1,0,0,0,2255,2243,1,0,0,0,2255,2248,1,0,0,0,2256,319,1,0,0, + 0,2257,2258,6,160,-1,0,2258,2262,3,322,161,0,2259,2260,7,21,0,0, + 2260,2262,3,320,160,4,2261,2257,1,0,0,0,2261,2259,1,0,0,0,2262,2274, + 1,0,0,0,2263,2264,10,3,0,0,2264,2265,7,22,0,0,2265,2273,3,320,160, + 4,2266,2267,10,2,0,0,2267,2268,7,21,0,0,2268,2273,3,320,160,3,2269, + 2270,10,1,0,0,2270,2271,5,260,0,0,2271,2273,3,320,160,2,2272,2263, + 1,0,0,0,2272,2266,1,0,0,0,2272,2269,1,0,0,0,2273,2276,1,0,0,0,2274, + 2272,1,0,0,0,2274,2275,1,0,0,0,2275,321,1,0,0,0,2276,2274,1,0,0, + 0,2277,2278,6,161,-1,0,2278,2524,5,133,0,0,2279,2524,3,332,166,0, + 2280,2281,3,370,185,0,2281,2282,3,324,162,0,2282,2524,1,0,0,0,2283, + 2284,5,286,0,0,2284,2524,3,324,162,0,2285,2524,3,372,186,0,2286, + 2524,3,330,165,0,2287,2524,3,324,162,0,2288,2524,5,276,0,0,2289, + 2524,5,272,0,0,2290,2291,5,148,0,0,2291,2292,5,265,0,0,2292,2293, + 3,320,160,0,2293,2294,5,94,0,0,2294,2295,3,320,160,0,2295,2296,5, + 266,0,0,2296,2524,1,0,0,0,2297,2298,5,265,0,0,2298,2301,3,314,157, + 0,2299,2300,5,9,0,0,2300,2302,3,338,169,0,2301,2299,1,0,0,0,2301, + 2302,1,0,0,0,2302,2311,1,0,0,0,2303,2304,5,263,0,0,2304,2307,3,314, + 157,0,2305,2306,5,9,0,0,2306,2308,3,338,169,0,2307,2305,1,0,0,0, + 2307,2308,1,0,0,0,2308,2310,1,0,0,0,2309,2303,1,0,0,0,2310,2313, + 1,0,0,0,2311,2312,1,0,0,0,2311,2309,1,0,0,0,2312,2314,1,0,0,0,2313, + 2311,1,0,0,0,2314,2315,5,266,0,0,2315,2524,1,0,0,0,2316,2317,5,168, + 0,0,2317,2318,5,265,0,0,2318,2323,3,314,157,0,2319,2320,5,263,0, + 0,2320,2322,3,314,157,0,2321,2319,1,0,0,0,2322,2325,1,0,0,0,2323, + 2321,1,0,0,0,2323,2324,1,0,0,0,2324,2326,1,0,0,0,2325,2323,1,0,0, + 0,2326,2327,5,266,0,0,2327,2524,1,0,0,0,2328,2329,3,190,95,0,2329, + 2330,5,265,0,0,2330,2331,5,257,0,0,2331,2333,5,266,0,0,2332,2334, + 3,348,174,0,2333,2332,1,0,0,0,2333,2334,1,0,0,0,2334,2336,1,0,0, + 0,2335,2337,3,352,176,0,2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337, + 2524,1,0,0,0,2338,2339,3,190,95,0,2339,2351,5,265,0,0,2340,2342, + 3,286,143,0,2341,2340,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0, + 0,2343,2348,3,314,157,0,2344,2345,5,263,0,0,2345,2347,3,314,157, + 0,2346,2344,1,0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2348,2349, + 1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2351,2341,1,0,0,0,2351, + 2352,1,0,0,0,2352,2363,1,0,0,0,2353,2354,5,139,0,0,2354,2355,5,26, + 0,0,2355,2360,3,270,135,0,2356,2357,5,263,0,0,2357,2359,3,270,135, + 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,2364,1,0,0,0,2362,2360,1,0,0,0,2363,2353,1,0,0,0,2363, + 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2367,5,266,0,0,2366,2368,3,348, + 174,0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2370,1,0,0,0,2369, + 2371,3,352,176,0,2370,2369,1,0,0,0,2370,2371,1,0,0,0,2371,2524,1, + 0,0,0,2372,2373,3,370,185,0,2373,2374,5,273,0,0,2374,2375,3,314, + 157,0,2375,2524,1,0,0,0,2376,2385,5,265,0,0,2377,2382,3,370,185, + 0,2378,2379,5,263,0,0,2379,2381,3,370,185,0,2380,2378,1,0,0,0,2381, + 2384,1,0,0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2386,1,0,0, + 0,2384,2382,1,0,0,0,2385,2377,1,0,0,0,2385,2386,1,0,0,0,2386,2387, + 1,0,0,0,2387,2388,5,266,0,0,2388,2389,5,273,0,0,2389,2524,3,314, + 157,0,2390,2391,5,265,0,0,2391,2392,3,208,104,0,2392,2393,5,266, + 0,0,2393,2524,1,0,0,0,2394,2395,5,66,0,0,2395,2396,5,265,0,0,2396, + 2397,3,208,104,0,2397,2398,5,266,0,0,2398,2524,1,0,0,0,2399,2400, + 5,28,0,0,2400,2402,3,320,160,0,2401,2403,3,346,173,0,2402,2401,1, + 0,0,0,2403,2404,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, + 2408,1,0,0,0,2406,2407,5,59,0,0,2407,2409,3,314,157,0,2408,2406, + 1,0,0,0,2408,2409,1,0,0,0,2409,2410,1,0,0,0,2410,2411,5,61,0,0,2411, + 2524,1,0,0,0,2412,2414,5,28,0,0,2413,2415,3,346,173,0,2414,2413, + 1,0,0,0,2415,2416,1,0,0,0,2416,2414,1,0,0,0,2416,2417,1,0,0,0,2417, + 2420,1,0,0,0,2418,2419,5,59,0,0,2419,2421,3,314,157,0,2420,2418, + 1,0,0,0,2420,2421,1,0,0,0,2421,2422,1,0,0,0,2422,2423,5,61,0,0,2423, + 2524,1,0,0,0,2424,2425,5,29,0,0,2425,2426,5,265,0,0,2426,2427,3, + 314,157,0,2427,2428,5,9,0,0,2428,2429,3,338,169,0,2429,2430,5,266, + 0,0,2430,2524,1,0,0,0,2431,2432,5,195,0,0,2432,2433,5,265,0,0,2433, + 2434,3,314,157,0,2434,2435,5,9,0,0,2435,2436,3,338,169,0,2436,2437, + 5,266,0,0,2437,2524,1,0,0,0,2438,2439,5,8,0,0,2439,2448,5,267,0, + 0,2440,2445,3,314,157,0,2441,2442,5,263,0,0,2442,2444,3,314,157, + 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,2449,1,0,0,0,2447,2445,1,0,0,0,2448,2440,1,0,0,0,2448, + 2449,1,0,0,0,2449,2450,1,0,0,0,2450,2524,5,268,0,0,2451,2524,3,194, + 97,0,2452,2524,5,40,0,0,2453,2457,5,42,0,0,2454,2455,5,265,0,0,2455, + 2456,5,277,0,0,2456,2458,5,266,0,0,2457,2454,1,0,0,0,2457,2458,1, + 0,0,0,2458,2524,1,0,0,0,2459,2463,5,43,0,0,2460,2461,5,265,0,0,2461, + 2462,5,277,0,0,2462,2464,5,266,0,0,2463,2460,1,0,0,0,2463,2464,1, + 0,0,0,2464,2524,1,0,0,0,2465,2469,5,119,0,0,2466,2467,5,265,0,0, + 2467,2468,5,277,0,0,2468,2470,5,266,0,0,2469,2466,1,0,0,0,2469,2470, + 1,0,0,0,2470,2524,1,0,0,0,2471,2475,5,120,0,0,2472,2473,5,265,0, + 0,2473,2474,5,277,0,0,2474,2476,5,266,0,0,2475,2472,1,0,0,0,2475, + 2476,1,0,0,0,2476,2524,1,0,0,0,2477,2524,5,44,0,0,2478,2524,5,41, + 0,0,2479,2480,5,184,0,0,2480,2481,5,265,0,0,2481,2482,3,320,160, + 0,2482,2483,5,82,0,0,2483,2486,3,320,160,0,2484,2485,5,78,0,0,2485, + 2487,3,320,160,0,2486,2484,1,0,0,0,2486,2487,1,0,0,0,2487,2488,1, + 0,0,0,2488,2489,5,266,0,0,2489,2524,1,0,0,0,2490,2491,5,131,0,0, + 2491,2492,5,265,0,0,2492,2495,3,320,160,0,2493,2494,5,263,0,0,2494, + 2496,3,336,168,0,2495,2493,1,0,0,0,2495,2496,1,0,0,0,2496,2497,1, + 0,0,0,2497,2498,5,266,0,0,2498,2524,1,0,0,0,2499,2500,5,68,0,0,2500, + 2501,5,265,0,0,2501,2502,3,370,185,0,2502,2503,5,82,0,0,2503,2504, + 3,320,160,0,2504,2505,5,266,0,0,2505,2524,1,0,0,0,2506,2507,5,265, + 0,0,2507,2508,3,314,157,0,2508,2509,5,266,0,0,2509,2524,1,0,0,0, + 2510,2511,5,88,0,0,2511,2520,5,265,0,0,2512,2517,3,366,183,0,2513, + 2514,5,263,0,0,2514,2516,3,366,183,0,2515,2513,1,0,0,0,2516,2519, + 1,0,0,0,2517,2515,1,0,0,0,2517,2518,1,0,0,0,2518,2521,1,0,0,0,2519, + 2517,1,0,0,0,2520,2512,1,0,0,0,2520,2521,1,0,0,0,2521,2522,1,0,0, + 0,2522,2524,5,266,0,0,2523,2277,1,0,0,0,2523,2279,1,0,0,0,2523,2280, + 1,0,0,0,2523,2283,1,0,0,0,2523,2285,1,0,0,0,2523,2286,1,0,0,0,2523, + 2287,1,0,0,0,2523,2288,1,0,0,0,2523,2289,1,0,0,0,2523,2290,1,0,0, + 0,2523,2297,1,0,0,0,2523,2316,1,0,0,0,2523,2328,1,0,0,0,2523,2338, + 1,0,0,0,2523,2372,1,0,0,0,2523,2376,1,0,0,0,2523,2390,1,0,0,0,2523, + 2394,1,0,0,0,2523,2399,1,0,0,0,2523,2412,1,0,0,0,2523,2424,1,0,0, + 0,2523,2431,1,0,0,0,2523,2438,1,0,0,0,2523,2451,1,0,0,0,2523,2452, + 1,0,0,0,2523,2453,1,0,0,0,2523,2459,1,0,0,0,2523,2465,1,0,0,0,2523, + 2471,1,0,0,0,2523,2477,1,0,0,0,2523,2478,1,0,0,0,2523,2479,1,0,0, + 0,2523,2490,1,0,0,0,2523,2499,1,0,0,0,2523,2506,1,0,0,0,2523,2510, + 1,0,0,0,2524,2535,1,0,0,0,2525,2526,10,15,0,0,2526,2527,5,267,0, + 0,2527,2528,3,320,160,0,2528,2529,5,268,0,0,2529,2534,1,0,0,0,2530, + 2531,10,13,0,0,2531,2532,5,261,0,0,2532,2534,3,370,185,0,2533,2525, + 1,0,0,0,2533,2530,1,0,0,0,2534,2537,1,0,0,0,2535,2533,1,0,0,0,2535, + 2536,1,0,0,0,2536,323,1,0,0,0,2537,2535,1,0,0,0,2538,2545,5,274, + 0,0,2539,2542,5,275,0,0,2540,2541,5,198,0,0,2541,2543,5,274,0,0, + 2542,2540,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2538, + 1,0,0,0,2544,2539,1,0,0,0,2545,325,1,0,0,0,2546,2547,7,23,0,0,2547, + 327,1,0,0,0,2548,2549,7,24,0,0,2549,329,1,0,0,0,2550,2551,7,25,0, + 0,2551,331,1,0,0,0,2552,2553,5,277,0,0,2553,2567,3,334,167,0,2554, + 2555,5,265,0,0,2555,2556,5,277,0,0,2556,2557,5,266,0,0,2557,2567, + 3,334,167,0,2558,2559,5,101,0,0,2559,2560,5,277,0,0,2560,2567,3, + 334,167,0,2561,2562,5,101,0,0,2562,2563,5,265,0,0,2563,2564,5,277, + 0,0,2564,2565,5,266,0,0,2565,2567,3,334,167,0,2566,2552,1,0,0,0, + 2566,2554,1,0,0,0,2566,2558,1,0,0,0,2566,2561,1,0,0,0,2567,333,1, + 0,0,0,2568,2569,7,26,0,0,2569,335,1,0,0,0,2570,2571,7,27,0,0,2571, + 337,1,0,0,0,2572,2573,6,169,-1,0,2573,2574,5,8,0,0,2574,2575,5,251, + 0,0,2575,2576,3,338,169,0,2576,2577,5,253,0,0,2577,2618,1,0,0,0, + 2578,2579,5,235,0,0,2579,2580,5,251,0,0,2580,2581,3,338,169,0,2581, + 2582,5,263,0,0,2582,2583,3,338,169,0,2583,2584,5,253,0,0,2584,2618, + 1,0,0,0,2585,2586,5,240,0,0,2586,2587,5,251,0,0,2587,2588,3,370, + 185,0,2588,2595,3,338,169,0,2589,2590,5,263,0,0,2590,2591,3,370, + 185,0,2591,2592,3,338,169,0,2592,2594,1,0,0,0,2593,2589,1,0,0,0, + 2594,2597,1,0,0,0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2598, + 1,0,0,0,2597,2595,1,0,0,0,2598,2599,5,253,0,0,2599,2618,1,0,0,0, + 2600,2603,3,344,172,0,2601,2603,3,340,170,0,2602,2600,1,0,0,0,2602, + 2601,1,0,0,0,2603,2615,1,0,0,0,2604,2605,5,265,0,0,2605,2610,3,342, + 171,0,2606,2607,5,263,0,0,2607,2609,3,342,171,0,2608,2606,1,0,0, + 0,2609,2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2613, + 1,0,0,0,2612,2610,1,0,0,0,2613,2614,5,266,0,0,2614,2616,1,0,0,0, + 2615,2604,1,0,0,0,2615,2616,1,0,0,0,2616,2618,1,0,0,0,2617,2572, + 1,0,0,0,2617,2578,1,0,0,0,2617,2585,1,0,0,0,2617,2602,1,0,0,0,2618, + 2623,1,0,0,0,2619,2620,10,5,0,0,2620,2622,5,8,0,0,2621,2619,1,0, + 0,0,2622,2625,1,0,0,0,2623,2621,1,0,0,0,2623,2624,1,0,0,0,2624,339, + 1,0,0,0,2625,2623,1,0,0,0,2626,2627,7,28,0,0,2627,341,1,0,0,0,2628, + 2631,5,277,0,0,2629,2631,3,338,169,0,2630,2628,1,0,0,0,2630,2629, + 1,0,0,0,2631,343,1,0,0,0,2632,2637,5,284,0,0,2633,2637,5,285,0,0, + 2634,2637,5,286,0,0,2635,2637,3,370,185,0,2636,2632,1,0,0,0,2636, + 2633,1,0,0,0,2636,2634,1,0,0,0,2636,2635,1,0,0,0,2637,345,1,0,0, + 0,2638,2639,5,214,0,0,2639,2640,3,314,157,0,2640,2641,5,192,0,0, + 2641,2642,3,314,157,0,2642,347,1,0,0,0,2643,2644,5,74,0,0,2644,2645, + 5,265,0,0,2645,2646,3,274,137,0,2646,2647,5,266,0,0,2647,349,1,0, + 0,0,2648,2653,3,314,157,0,2649,2650,5,263,0,0,2650,2652,3,314,157, + 0,2651,2649,1,0,0,0,2652,2655,1,0,0,0,2653,2651,1,0,0,0,2653,2654, + 1,0,0,0,2654,351,1,0,0,0,2655,2653,1,0,0,0,2656,2657,5,143,0,0,2657, + 2661,5,265,0,0,2658,2659,5,145,0,0,2659,2660,5,26,0,0,2660,2662, + 3,350,175,0,2661,2658,1,0,0,0,2661,2662,1,0,0,0,2662,2673,1,0,0, + 0,2663,2664,5,139,0,0,2664,2665,5,26,0,0,2665,2670,3,270,135,0,2666, + 2667,5,263,0,0,2667,2669,3,270,135,0,2668,2666,1,0,0,0,2669,2672, + 1,0,0,0,2670,2668,1,0,0,0,2670,2671,1,0,0,0,2671,2674,1,0,0,0,2672, + 2670,1,0,0,0,2673,2663,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0,0, + 0,2675,2677,3,354,177,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677, + 2678,1,0,0,0,2678,2679,5,266,0,0,2679,353,1,0,0,0,2680,2681,5,154, + 0,0,2681,2697,3,356,178,0,2682,2683,5,169,0,0,2683,2697,3,356,178, + 0,2684,2685,5,154,0,0,2685,2686,5,15,0,0,2686,2687,3,356,178,0,2687, + 2688,5,5,0,0,2688,2689,3,356,178,0,2689,2697,1,0,0,0,2690,2691,5, + 169,0,0,2691,2692,5,15,0,0,2692,2693,3,356,178,0,2693,2694,5,5,0, + 0,2694,2695,3,356,178,0,2695,2697,1,0,0,0,2696,2680,1,0,0,0,2696, + 2682,1,0,0,0,2696,2684,1,0,0,0,2696,2690,1,0,0,0,2697,355,1,0,0, + 0,2698,2699,5,199,0,0,2699,2708,5,149,0,0,2700,2701,5,199,0,0,2701, + 2708,5,77,0,0,2702,2703,5,39,0,0,2703,2708,5,168,0,0,2704,2705,3, + 314,157,0,2705,2706,7,29,0,0,2706,2708,1,0,0,0,2707,2698,1,0,0,0, + 2707,2700,1,0,0,0,2707,2702,1,0,0,0,2707,2704,1,0,0,0,2708,357,1, + 0,0,0,2709,2710,3,370,185,0,2710,2711,5,261,0,0,2711,2712,3,370, + 185,0,2712,2715,1,0,0,0,2713,2715,3,370,185,0,2714,2709,1,0,0,0, + 2714,2713,1,0,0,0,2715,359,1,0,0,0,2716,2721,3,358,179,0,2717,2718, + 5,263,0,0,2718,2720,3,358,179,0,2719,2717,1,0,0,0,2720,2723,1,0, + 0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722,361,1,0,0,0,2723,2721, + 1,0,0,0,2724,2738,5,2,0,0,2725,2738,5,4,0,0,2726,2738,5,58,0,0,2727, + 2738,5,37,0,0,2728,2738,5,99,0,0,2729,2738,5,162,0,0,2730,2735,5, + 174,0,0,2731,2732,5,265,0,0,2732,2733,3,370,185,0,2733,2734,5,266, + 0,0,2734,2736,1,0,0,0,2735,2731,1,0,0,0,2735,2736,1,0,0,0,2736,2738, + 1,0,0,0,2737,2724,1,0,0,0,2737,2725,1,0,0,0,2737,2726,1,0,0,0,2737, + 2727,1,0,0,0,2737,2728,1,0,0,0,2737,2729,1,0,0,0,2737,2730,1,0,0, + 0,2738,363,1,0,0,0,2739,2740,7,30,0,0,2740,365,1,0,0,0,2741,2746, + 3,370,185,0,2742,2743,5,261,0,0,2743,2745,3,370,185,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, + 367,1,0,0,0,2748,2746,1,0,0,0,2749,2750,5,166,0,0,2750,2756,3,370, + 185,0,2751,2752,5,204,0,0,2752,2756,3,370,185,0,2753,2754,5,87,0, + 0,2754,2756,3,370,185,0,2755,2749,1,0,0,0,2755,2751,1,0,0,0,2755, + 2753,1,0,0,0,2756,369,1,0,0,0,2757,2763,5,280,0,0,2758,2763,5,274, + 0,0,2759,2763,3,376,188,0,2760,2763,5,283,0,0,2761,2763,5,281,0, + 0,2762,2757,1,0,0,0,2762,2758,1,0,0,0,2762,2759,1,0,0,0,2762,2760, + 1,0,0,0,2762,2761,1,0,0,0,2763,371,1,0,0,0,2764,2766,5,256,0,0,2765, + 2764,1,0,0,0,2765,2766,1,0,0,0,2766,2767,1,0,0,0,2767,2777,5,278, + 0,0,2768,2770,5,256,0,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0,2770, + 2771,1,0,0,0,2771,2777,5,279,0,0,2772,2774,5,256,0,0,2773,2772,1, + 0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775,2777,5,277,0,0,2776, + 2765,1,0,0,0,2776,2769,1,0,0,0,2776,2773,1,0,0,0,2777,373,1,0,0, + 0,2778,2779,7,31,0,0,2779,375,1,0,0,0,2780,2781,7,32,0,0,2781,377, + 1,0,0,0,353,381,388,412,425,429,433,442,447,451,457,459,464,468, + 472,479,484,490,494,503,510,514,519,521,526,529,536,540,545,549, + 552,556,564,568,572,580,584,593,596,599,605,612,623,628,633,638, + 643,652,655,658,662,688,714,723,733,736,750,768,770,779,790,799, + 806,810,817,823,826,831,838,852,865,870,875,881,917,920,926,929, + 935,941,953,955,966,974,979,983,988,995,999,1003,1009,1013,1017, + 1026,1029,1032,1040,1054,1061,1074,1080,1085,1088,1091,1096,1100, + 1109,1114,1120,1124,1128,1133,1136,1144,1147,1150,1162,1165,1168, + 1173,1177,1193,1198,1205,1208,1214,1217,1224,1227,1231,1236,1239, + 1246,1249,1273,1287,1291,1295,1315,1317,1319,1328,1330,1339,1341, + 1350,1352,1357,1366,1375,1384,1395,1401,1406,1409,1422,1432,1436, + 1441,1452,1457,1490,1498,1503,1507,1513,1518,1521,1526,1531,1536, + 1540,1549,1552,1556,1563,1572,1576,1580,1587,1590,1600,1607,1612, + 1617,1622,1628,1631,1640,1643,1646,1652,1657,1667,1670,1673,1677, + 1687,1690,1696,1702,1705,1708,1712,1722,1733,1738,1741,1745,1752, + 1762,1774,1780,1782,1791,1794,1801,1811,1817,1825,1836,1846,1857, + 1859,1865,1870,1880,1883,1889,1891,1899,1905,1908,1910,1922,1929, + 1933,1937,1941,1944,1951,1960,1963,1966,1971,1974,1983,1990,2001, + 2004,2008,2012,2021,2024,2031,2045,2049,2053,2057,2061,2065,2069, + 2073,2083,2094,2099,2112,2114,2120,2124,2126,2134,2141,2146,2159, + 2165,2173,2180,2184,2192,2194,2205,2213,2222,2228,2233,2239,2245, + 2250,2255,2261,2272,2274,2301,2307,2311,2323,2333,2336,2341,2348, + 2351,2360,2363,2367,2370,2382,2385,2404,2408,2416,2420,2445,2448, + 2457,2463,2469,2475,2486,2495,2517,2520,2523,2533,2535,2542,2544, + 2566,2595,2602,2610,2615,2617,2623,2630,2636,2653,2661,2670,2673, + 2676,2696,2707,2714,2721,2735,2737,2746,2755,2762,2765,2769,2773, + 2776 ]; private static __ATN: antlr.ATN; @@ -17163,11 +17261,8 @@ export class DeleteContext extends antlr.ParserRuleContext { public KW_FROM(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_FROM, 0); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_delete; @@ -17217,11 +17312,8 @@ export class DeleteTableRefContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_AS, 0); @@ -17286,11 +17378,8 @@ export class UpdateStatementContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -19157,6 +19246,36 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { } +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 override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnName; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterColumnName) { + listener.enterColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitColumnName) { + listener.exitColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitColumnName) { + return visitor.visitColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TableOrViewPathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21098,8 +21217,6 @@ export class SortItemContext extends antlr.ParserRuleContext { export class QuerySpecificationContext extends antlr.ParserRuleContext { - public _where?: BooleanExpressionContext; - public _having?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -21142,8 +21259,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_GROUP(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_GROUP, 0); @@ -21154,17 +21271,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public groupBy(): GroupByContext | null { return this.getRuleContext(0, GroupByContext); } - public KW_HAVING(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_HAVING, 0); - } - public booleanExpression(): BooleanExpressionContext[]; - public booleanExpression(i: number): BooleanExpressionContext | null; - public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(BooleanExpressionContext); - } - - return this.getRuleContext(i, BooleanExpressionContext); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_querySpecification; @@ -21189,6 +21297,74 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } +export class WhereClauseContext extends antlr.ParserRuleContext { + public _where?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_WHERE(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_WHERE, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_whereClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterWhereClause) { + listener.enterWhereClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitWhereClause) { + listener.exitWhereClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitWhereClause) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class HavingClauseContext extends antlr.ParserRuleContext { + public _having?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_HAVING(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_HAVING, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_havingClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23269,8 +23445,8 @@ export class ColumnReferenceContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } public override enterRule(listener: ImpalaSqlParserListener): void { if(listener.enterColumnReference) { @@ -24506,11 +24682,8 @@ export class FilterContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.LPAREN, 0)!; } - public KW_WHERE(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.KW_WHERE, 0)!; - } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.RPAREN, 0)!; @@ -24538,9 +24711,54 @@ export class FilterContext extends antlr.ParserRuleContext { } -export class OverContext extends antlr.ParserRuleContext { +export class PartitionByClauseContext extends antlr.ParserRuleContext { public _expression?: ExpressionContext; public _partition: ExpressionContext[] = []; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + 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_partitionByClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterPartitionByClause) { + listener.enterPartitionByClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitPartitionByClause) { + listener.exitPartitionByClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitPartitionByClause) { + return visitor.visitPartitionByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class OverContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -24565,6 +24783,9 @@ export class OverContext extends antlr.ParserRuleContext { return this.getToken(ImpalaSqlParser.KW_BY, i); } } + public partitionByClause(): PartitionByClauseContext | null { + return this.getRuleContext(0, PartitionByClauseContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_ORDER, 0); } @@ -24580,15 +24801,6 @@ export class OverContext extends antlr.ParserRuleContext { public windowFrame(): WindowFrameContext | null { return this.getRuleContext(0, WindowFrameContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -24900,7 +25112,7 @@ export class PathSpecificationContext extends antlr.ParserRuleContext { export class PrivilegeContext extends antlr.ParserRuleContext { - public _columnName?: IdentifierContext; + public _name?: IdentifierContext; 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 11488c838..6b66331c0 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -105,6 +105,7 @@ import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; +import { ColumnNameContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -148,6 +149,8 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { WhereClauseContext } from "./ImpalaSqlParser.js"; +import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; @@ -228,6 +231,7 @@ import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; import { FilterContext } from "./ImpalaSqlParser.js"; +import { PartitionByClauseContext } from "./ImpalaSqlParser.js"; import { OverContext } from "./ImpalaSqlParser.js"; import { WindowFrameContext } from "./ImpalaSqlParser.js"; import { UnboundedFrameContext } from "./ImpalaSqlParser.js"; @@ -1228,6 +1232,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + */ + enterColumnName?: (ctx: ColumnNameContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + */ + exitColumnName?: (ctx: ColumnNameContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -1670,6 +1684,26 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + */ + enterWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + */ + exitWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + */ + enterHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + */ + exitHavingClause?: (ctx: HavingClauseContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -2574,6 +2608,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFilter?: (ctx: FilterContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + enterPartitionByClause?: (ctx: PartitionByClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + */ + exitPartitionByClause?: (ctx: PartitionByClauseContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.over`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index de72c8dac..0cf1e9bd4 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -105,6 +105,7 @@ import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; +import { ColumnNameContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -148,6 +149,8 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { WhereClauseContext } from "./ImpalaSqlParser.js"; +import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; @@ -228,6 +231,7 @@ import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; import { FilterContext } from "./ImpalaSqlParser.js"; +import { PartitionByClauseContext } from "./ImpalaSqlParser.js"; import { OverContext } from "./ImpalaSqlParser.js"; import { WindowFrameContext } from "./ImpalaSqlParser.js"; import { UnboundedFrameContext } from "./ImpalaSqlParser.js"; @@ -843,6 +847,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnName?: (ctx: ColumnNameContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -1107,6 +1117,18 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.whereClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereClause?: (ctx: WhereClauseContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.havingClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -1639,6 +1661,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.partitionByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPartitionByClause?: (ctx: PartitionByClauseContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.over`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlLexer.interp b/src/lib/mysql/MySqlLexer.interp index b270a7159..2c6303b45 100644 --- a/src/lib/mysql/MySqlLexer.interp +++ b/src/lib/mysql/MySqlLexer.interp @@ -898,9 +898,9 @@ null token symbolic names: null -SPACE +WHITE_SPACE SPEC_MYSQL_COMMENT -COMMENT_INPUT +BRACKETED_COMMENT LINE_COMMENT KW_ACTIVE KW_ADD @@ -1795,9 +1795,9 @@ PERSIST_ID ERROR_RECONGNIGION rule names: -SPACE +WHITE_SPACE SPEC_MYSQL_COMMENT -COMMENT_INPUT +BRACKETED_COMMENT LINE_COMMENT KW_ACTIVE KW_ADD diff --git a/src/lib/mysql/MySqlLexer.tokens b/src/lib/mysql/MySqlLexer.tokens index 91f7bd198..e229d134d 100644 --- a/src/lib/mysql/MySqlLexer.tokens +++ b/src/lib/mysql/MySqlLexer.tokens @@ -1,6 +1,6 @@ -SPACE=1 +WHITE_SPACE=1 SPEC_MYSQL_COMMENT=2 -COMMENT_INPUT=3 +BRACKETED_COMMENT=3 LINE_COMMENT=4 KW_ACTIVE=5 KW_ADD=6 diff --git a/src/lib/mysql/MySqlLexer.ts b/src/lib/mysql/MySqlLexer.ts index 95cf24a98..d5a290f64 100644 --- a/src/lib/mysql/MySqlLexer.ts +++ b/src/lib/mysql/MySqlLexer.ts @@ -7,9 +7,9 @@ import { Token } from "antlr4ng"; export class MySqlLexer extends antlr.Lexer { - public static readonly SPACE = 1; + public static readonly WHITE_SPACE = 1; public static readonly SPEC_MYSQL_COMMENT = 2; - public static readonly COMMENT_INPUT = 3; + public static readonly BRACKETED_COMMENT = 3; public static readonly LINE_COMMENT = 4; public static readonly KW_ACTIVE = 5; public static readonly KW_ADD = 6; @@ -1088,46 +1088,46 @@ export class MySqlLexer extends antlr.Lexer { ]; public static readonly symbolicNames = [ - null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", - "KW_ACTIVE", "KW_ADD", "KW_ALL", "KW_ALTER", "KW_ALWAYS", "KW_ANALYZE", - "KW_AND", "KW_ARRAY", "KW_AS", "KW_ASC", "KW_ATTRIBUTE", "KW_BEFORE", - "KW_BETWEEN", "KW_BOTH", "KW_BUCKETS", "KW_BY", "KW_CALL", "KW_CASCADE", - "KW_CASE", "KW_CAST", "KW_CHANGE", "KW_CHARACTER", "KW_CHECK", "KW_COLLATE", - "KW_COLUMN", "KW_CONDITION", "KW_CONSTRAINT", "KW_CONTINUE", "KW_CONVERT", - "KW_CREATE", "KW_CROSS", "KW_CURRENT", "KW_CURRENT_USER", "KW_CURSOR", - "KW_DATABASE", "KW_DATABASES", "KW_DECLARE", "KW_DEFAULT", "KW_DELAYED", - "KW_DELETE", "KW_DESC", "KW_DESCRIBE", "KW_DETERMINISTIC", "KW_DIAGNOSTICS", - "KW_DISTINCT", "KW_DISTINCTROW", "KW_DROP", "KW_EACH", "KW_ELSE", - "KW_ELSEIF", "KW_EMPTY", "KW_ENCLOSED", "KW_ENFORCED", "KW_ESCAPED", - "KW_EXCEPT", "KW_EXISTS", "KW_EXIT", "KW_EXPLAIN", "KW_FALSE", "KW_FETCH", - "KW_FOR", "KW_FORCE", "KW_FOREIGN", "KW_FROM", "KW_FULLTEXT", "KW_GENERATE", - "KW_GENERATED", "KW_GET", "KW_GRANT", "KW_GROUP", "KW_HAVING", "KW_HIGH_PRIORITY", - "KW_HISTOGRAM", "KW_IF", "KW_IGNORE", "KW_IN", "KW_INACTIVE", "KW_INDEX", - "KW_INFILE", "KW_INNER", "KW_INOUT", "KW_INSERT", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_ITERATE", "KW_JOIN", "KW_KEY", "KW_KEYS", - "KW_KILL", "KW_LATERAL", "KW_LEADING", "KW_LEAVE", "KW_LEFT", "KW_LIKE", - "KW_LIMIT", "KW_LINEAR", "KW_LINES", "KW_LOAD", "KW_LOCK", "KW_LOCKED", - "KW_LOOP", "KW_LOW_PRIORITY", "KW_MASTER_BIND", "KW_MASTER_SSL_VERIFY_SERVER_CERT", - "KW_MATCH", "KW_MAXVALUE", "KW_MODIFIES", "KW_NATURAL", "KW_NOT", - "KW_NO_WRITE_TO_BINLOG", "KW_NULL_LITERAL", "KW_NUMBER", "KW_STREAM", - "KW_ON", "KW_OPTIMIZE", "KW_OPTION", "KW_OPTIONAL", "KW_OPTIONALLY", - "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTFILE", "KW_OVER", - "KW_PARTITION", "KW_PRIMARY", "KW_PROCEDURE", "KW_PURGE", "KW_RANGE", - "KW_READ", "KW_READS", "KW_REFERENCE", "KW_REFERENCES", "KW_REGEXP", - "KW_RELEASE", "KW_RENAME", "KW_REPEAT", "KW_REPLACE", "KW_REQUIRE", - "KW_RESIGNAL", "KW_RESTRICT", "KW_RETAIN", "KW_RETURN", "KW_REVOKE", - "KW_RIGHT", "KW_RLIKE", "KW_SCHEMA", "KW_SCHEMAS", "KW_SELECT", - "KW_SET", "KW_SEPARATOR", "KW_SHOW", "KW_SIGNAL", "KW_SKIP", "KW_SKIP_QUERY_REWRITE", - "KW_SPATIAL", "KW_SQL", "KW_SQLEXCEPTION", "KW_SQLSTATE", "KW_SQLWARNING", - "KW_SQL_BIG_RESULT", "KW_SQL_CALC_FOUND_ROWS", "KW_SQL_SMALL_RESULT", - "KW_SSL", "KW_STACKED", "KW_STARTING", "KW_STRAIGHT_JOIN", "KW_TABLE", - "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRAILING", "KW_TRIGGER", - "KW_TRUE", "KW_UNDO", "KW_UNION", "KW_UNIQUE", "KW_UNLOCK", "KW_UNSIGNED", - "KW_UPDATE", "KW_USAGE", "KW_USE", "KW_USING", "KW_VALUES", "KW_VCPU", - "KW_WHEN", "KW_WHERE", "KW_WHILE", "KW_WITH", "KW_WRITE", "KW_XOR", - "KW_ZEROFILL", "KW_TINYINT", "KW_SMALLINT", "KW_MEDIUMINT", "KW_MIDDLEINT", - "KW_INT", "KW_INT1", "KW_INT2", "KW_INT3", "KW_INT4", "KW_INT8", - "KW_INTEGER", "KW_BIGINT", "KW_REAL", "KW_DOUBLE", "KW_PRECISION", + null, "WHITE_SPACE", "SPEC_MYSQL_COMMENT", "BRACKETED_COMMENT", + "LINE_COMMENT", "KW_ACTIVE", "KW_ADD", "KW_ALL", "KW_ALTER", "KW_ALWAYS", + "KW_ANALYZE", "KW_AND", "KW_ARRAY", "KW_AS", "KW_ASC", "KW_ATTRIBUTE", + "KW_BEFORE", "KW_BETWEEN", "KW_BOTH", "KW_BUCKETS", "KW_BY", "KW_CALL", + "KW_CASCADE", "KW_CASE", "KW_CAST", "KW_CHANGE", "KW_CHARACTER", + "KW_CHECK", "KW_COLLATE", "KW_COLUMN", "KW_CONDITION", "KW_CONSTRAINT", + "KW_CONTINUE", "KW_CONVERT", "KW_CREATE", "KW_CROSS", "KW_CURRENT", + "KW_CURRENT_USER", "KW_CURSOR", "KW_DATABASE", "KW_DATABASES", "KW_DECLARE", + "KW_DEFAULT", "KW_DELAYED", "KW_DELETE", "KW_DESC", "KW_DESCRIBE", + "KW_DETERMINISTIC", "KW_DIAGNOSTICS", "KW_DISTINCT", "KW_DISTINCTROW", + "KW_DROP", "KW_EACH", "KW_ELSE", "KW_ELSEIF", "KW_EMPTY", "KW_ENCLOSED", + "KW_ENFORCED", "KW_ESCAPED", "KW_EXCEPT", "KW_EXISTS", "KW_EXIT", + "KW_EXPLAIN", "KW_FALSE", "KW_FETCH", "KW_FOR", "KW_FORCE", "KW_FOREIGN", + "KW_FROM", "KW_FULLTEXT", "KW_GENERATE", "KW_GENERATED", "KW_GET", + "KW_GRANT", "KW_GROUP", "KW_HAVING", "KW_HIGH_PRIORITY", "KW_HISTOGRAM", + "KW_IF", "KW_IGNORE", "KW_IN", "KW_INACTIVE", "KW_INDEX", "KW_INFILE", + "KW_INNER", "KW_INOUT", "KW_INSERT", "KW_INTERVAL", "KW_INTO", "KW_IS", + "KW_ITERATE", "KW_JOIN", "KW_KEY", "KW_KEYS", "KW_KILL", "KW_LATERAL", + "KW_LEADING", "KW_LEAVE", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LINEAR", + "KW_LINES", "KW_LOAD", "KW_LOCK", "KW_LOCKED", "KW_LOOP", "KW_LOW_PRIORITY", + "KW_MASTER_BIND", "KW_MASTER_SSL_VERIFY_SERVER_CERT", "KW_MATCH", + "KW_MAXVALUE", "KW_MODIFIES", "KW_NATURAL", "KW_NOT", "KW_NO_WRITE_TO_BINLOG", + "KW_NULL_LITERAL", "KW_NUMBER", "KW_STREAM", "KW_ON", "KW_OPTIMIZE", + "KW_OPTION", "KW_OPTIONAL", "KW_OPTIONALLY", "KW_OR", "KW_ORDER", + "KW_OUT", "KW_OUTER", "KW_OUTFILE", "KW_OVER", "KW_PARTITION", "KW_PRIMARY", + "KW_PROCEDURE", "KW_PURGE", "KW_RANGE", "KW_READ", "KW_READS", "KW_REFERENCE", + "KW_REFERENCES", "KW_REGEXP", "KW_RELEASE", "KW_RENAME", "KW_REPEAT", + "KW_REPLACE", "KW_REQUIRE", "KW_RESIGNAL", "KW_RESTRICT", "KW_RETAIN", + "KW_RETURN", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_SCHEMA", "KW_SCHEMAS", + "KW_SELECT", "KW_SET", "KW_SEPARATOR", "KW_SHOW", "KW_SIGNAL", "KW_SKIP", + "KW_SKIP_QUERY_REWRITE", "KW_SPATIAL", "KW_SQL", "KW_SQLEXCEPTION", + "KW_SQLSTATE", "KW_SQLWARNING", "KW_SQL_BIG_RESULT", "KW_SQL_CALC_FOUND_ROWS", + "KW_SQL_SMALL_RESULT", "KW_SSL", "KW_STACKED", "KW_STARTING", "KW_STRAIGHT_JOIN", + "KW_TABLE", "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRAILING", + "KW_TRIGGER", "KW_TRUE", "KW_UNDO", "KW_UNION", "KW_UNIQUE", "KW_UNLOCK", + "KW_UNSIGNED", "KW_UPDATE", "KW_USAGE", "KW_USE", "KW_USING", "KW_VALUES", + "KW_VCPU", "KW_WHEN", "KW_WHERE", "KW_WHILE", "KW_WITH", "KW_WRITE", + "KW_XOR", "KW_ZEROFILL", "KW_TINYINT", "KW_SMALLINT", "KW_MEDIUMINT", + "KW_MIDDLEINT", "KW_INT", "KW_INT1", "KW_INT2", "KW_INT3", "KW_INT4", + "KW_INT8", "KW_INTEGER", "KW_BIGINT", "KW_REAL", "KW_DOUBLE", "KW_PRECISION", "KW_FLOAT", "KW_FLOAT4", "KW_FLOAT8", "KW_DECIMAL", "KW_DEC", "KW_NUMERIC", "KW_DATE", "KW_TIME", "KW_TIMESTAMP", "KW_DATETIME", "KW_YEAR", "KW_CHAR", "KW_VARCHAR", "KW_NVARCHAR", "KW_NATIONAL", "KW_BINARY", @@ -1291,7 +1291,7 @@ export class MySqlLexer extends antlr.Lexer { ]; public static readonly ruleNames = [ - "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", + "WHITE_SPACE", "SPEC_MYSQL_COMMENT", "BRACKETED_COMMENT", "LINE_COMMENT", "KW_ACTIVE", "KW_ADD", "KW_ALL", "KW_ALTER", "KW_ALWAYS", "KW_ANALYZE", "KW_AND", "KW_ARRAY", "KW_AS", "KW_ASC", "KW_ATTRIBUTE", "KW_BEFORE", "KW_BETWEEN", "KW_BOTH", "KW_BUCKETS", "KW_BY", "KW_CALL", "KW_CASCADE", diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index c5d4aa63c..abeee55f2 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -898,9 +898,9 @@ null token symbolic names: null -SPACE +WHITE_SPACE SPEC_MYSQL_COMMENT -COMMENT_INPUT +BRACKETED_COMMENT LINE_COMMENT KW_ACTIVE KW_ADD diff --git a/src/lib/mysql/MySqlParser.tokens b/src/lib/mysql/MySqlParser.tokens index 91f7bd198..e229d134d 100644 --- a/src/lib/mysql/MySqlParser.tokens +++ b/src/lib/mysql/MySqlParser.tokens @@ -1,6 +1,6 @@ -SPACE=1 +WHITE_SPACE=1 SPEC_MYSQL_COMMENT=2 -COMMENT_INPUT=3 +BRACKETED_COMMENT=3 LINE_COMMENT=4 KW_ACTIVE=5 KW_ADD=6 diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index 468006c2a..cec7dc3e9 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -17,9 +17,9 @@ import { SQLParserBase } from '../SQLParserBase'; export class MySqlParser extends SQLParserBase { - public static readonly SPACE = 1; + public static readonly WHITE_SPACE = 1; public static readonly SPEC_MYSQL_COMMENT = 2; - public static readonly COMMENT_INPUT = 3; + public static readonly BRACKETED_COMMENT = 3; public static readonly LINE_COMMENT = 4; public static readonly KW_ACTIVE = 5; public static readonly KW_ADD = 6; @@ -1513,46 +1513,46 @@ export class MySqlParser extends SQLParserBase { ]; public static readonly symbolicNames = [ - null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", - "KW_ACTIVE", "KW_ADD", "KW_ALL", "KW_ALTER", "KW_ALWAYS", "KW_ANALYZE", - "KW_AND", "KW_ARRAY", "KW_AS", "KW_ASC", "KW_ATTRIBUTE", "KW_BEFORE", - "KW_BETWEEN", "KW_BOTH", "KW_BUCKETS", "KW_BY", "KW_CALL", "KW_CASCADE", - "KW_CASE", "KW_CAST", "KW_CHANGE", "KW_CHARACTER", "KW_CHECK", "KW_COLLATE", - "KW_COLUMN", "KW_CONDITION", "KW_CONSTRAINT", "KW_CONTINUE", "KW_CONVERT", - "KW_CREATE", "KW_CROSS", "KW_CURRENT", "KW_CURRENT_USER", "KW_CURSOR", - "KW_DATABASE", "KW_DATABASES", "KW_DECLARE", "KW_DEFAULT", "KW_DELAYED", - "KW_DELETE", "KW_DESC", "KW_DESCRIBE", "KW_DETERMINISTIC", "KW_DIAGNOSTICS", - "KW_DISTINCT", "KW_DISTINCTROW", "KW_DROP", "KW_EACH", "KW_ELSE", - "KW_ELSEIF", "KW_EMPTY", "KW_ENCLOSED", "KW_ENFORCED", "KW_ESCAPED", - "KW_EXCEPT", "KW_EXISTS", "KW_EXIT", "KW_EXPLAIN", "KW_FALSE", "KW_FETCH", - "KW_FOR", "KW_FORCE", "KW_FOREIGN", "KW_FROM", "KW_FULLTEXT", "KW_GENERATE", - "KW_GENERATED", "KW_GET", "KW_GRANT", "KW_GROUP", "KW_HAVING", "KW_HIGH_PRIORITY", - "KW_HISTOGRAM", "KW_IF", "KW_IGNORE", "KW_IN", "KW_INACTIVE", "KW_INDEX", - "KW_INFILE", "KW_INNER", "KW_INOUT", "KW_INSERT", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_ITERATE", "KW_JOIN", "KW_KEY", "KW_KEYS", - "KW_KILL", "KW_LATERAL", "KW_LEADING", "KW_LEAVE", "KW_LEFT", "KW_LIKE", - "KW_LIMIT", "KW_LINEAR", "KW_LINES", "KW_LOAD", "KW_LOCK", "KW_LOCKED", - "KW_LOOP", "KW_LOW_PRIORITY", "KW_MASTER_BIND", "KW_MASTER_SSL_VERIFY_SERVER_CERT", - "KW_MATCH", "KW_MAXVALUE", "KW_MODIFIES", "KW_NATURAL", "KW_NOT", - "KW_NO_WRITE_TO_BINLOG", "KW_NULL_LITERAL", "KW_NUMBER", "KW_STREAM", - "KW_ON", "KW_OPTIMIZE", "KW_OPTION", "KW_OPTIONAL", "KW_OPTIONALLY", - "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTFILE", "KW_OVER", - "KW_PARTITION", "KW_PRIMARY", "KW_PROCEDURE", "KW_PURGE", "KW_RANGE", - "KW_READ", "KW_READS", "KW_REFERENCE", "KW_REFERENCES", "KW_REGEXP", - "KW_RELEASE", "KW_RENAME", "KW_REPEAT", "KW_REPLACE", "KW_REQUIRE", - "KW_RESIGNAL", "KW_RESTRICT", "KW_RETAIN", "KW_RETURN", "KW_REVOKE", - "KW_RIGHT", "KW_RLIKE", "KW_SCHEMA", "KW_SCHEMAS", "KW_SELECT", - "KW_SET", "KW_SEPARATOR", "KW_SHOW", "KW_SIGNAL", "KW_SKIP", "KW_SKIP_QUERY_REWRITE", - "KW_SPATIAL", "KW_SQL", "KW_SQLEXCEPTION", "KW_SQLSTATE", "KW_SQLWARNING", - "KW_SQL_BIG_RESULT", "KW_SQL_CALC_FOUND_ROWS", "KW_SQL_SMALL_RESULT", - "KW_SSL", "KW_STACKED", "KW_STARTING", "KW_STRAIGHT_JOIN", "KW_TABLE", - "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRAILING", "KW_TRIGGER", - "KW_TRUE", "KW_UNDO", "KW_UNION", "KW_UNIQUE", "KW_UNLOCK", "KW_UNSIGNED", - "KW_UPDATE", "KW_USAGE", "KW_USE", "KW_USING", "KW_VALUES", "KW_VCPU", - "KW_WHEN", "KW_WHERE", "KW_WHILE", "KW_WITH", "KW_WRITE", "KW_XOR", - "KW_ZEROFILL", "KW_TINYINT", "KW_SMALLINT", "KW_MEDIUMINT", "KW_MIDDLEINT", - "KW_INT", "KW_INT1", "KW_INT2", "KW_INT3", "KW_INT4", "KW_INT8", - "KW_INTEGER", "KW_BIGINT", "KW_REAL", "KW_DOUBLE", "KW_PRECISION", + null, "WHITE_SPACE", "SPEC_MYSQL_COMMENT", "BRACKETED_COMMENT", + "LINE_COMMENT", "KW_ACTIVE", "KW_ADD", "KW_ALL", "KW_ALTER", "KW_ALWAYS", + "KW_ANALYZE", "KW_AND", "KW_ARRAY", "KW_AS", "KW_ASC", "KW_ATTRIBUTE", + "KW_BEFORE", "KW_BETWEEN", "KW_BOTH", "KW_BUCKETS", "KW_BY", "KW_CALL", + "KW_CASCADE", "KW_CASE", "KW_CAST", "KW_CHANGE", "KW_CHARACTER", + "KW_CHECK", "KW_COLLATE", "KW_COLUMN", "KW_CONDITION", "KW_CONSTRAINT", + "KW_CONTINUE", "KW_CONVERT", "KW_CREATE", "KW_CROSS", "KW_CURRENT", + "KW_CURRENT_USER", "KW_CURSOR", "KW_DATABASE", "KW_DATABASES", "KW_DECLARE", + "KW_DEFAULT", "KW_DELAYED", "KW_DELETE", "KW_DESC", "KW_DESCRIBE", + "KW_DETERMINISTIC", "KW_DIAGNOSTICS", "KW_DISTINCT", "KW_DISTINCTROW", + "KW_DROP", "KW_EACH", "KW_ELSE", "KW_ELSEIF", "KW_EMPTY", "KW_ENCLOSED", + "KW_ENFORCED", "KW_ESCAPED", "KW_EXCEPT", "KW_EXISTS", "KW_EXIT", + "KW_EXPLAIN", "KW_FALSE", "KW_FETCH", "KW_FOR", "KW_FORCE", "KW_FOREIGN", + "KW_FROM", "KW_FULLTEXT", "KW_GENERATE", "KW_GENERATED", "KW_GET", + "KW_GRANT", "KW_GROUP", "KW_HAVING", "KW_HIGH_PRIORITY", "KW_HISTOGRAM", + "KW_IF", "KW_IGNORE", "KW_IN", "KW_INACTIVE", "KW_INDEX", "KW_INFILE", + "KW_INNER", "KW_INOUT", "KW_INSERT", "KW_INTERVAL", "KW_INTO", "KW_IS", + "KW_ITERATE", "KW_JOIN", "KW_KEY", "KW_KEYS", "KW_KILL", "KW_LATERAL", + "KW_LEADING", "KW_LEAVE", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LINEAR", + "KW_LINES", "KW_LOAD", "KW_LOCK", "KW_LOCKED", "KW_LOOP", "KW_LOW_PRIORITY", + "KW_MASTER_BIND", "KW_MASTER_SSL_VERIFY_SERVER_CERT", "KW_MATCH", + "KW_MAXVALUE", "KW_MODIFIES", "KW_NATURAL", "KW_NOT", "KW_NO_WRITE_TO_BINLOG", + "KW_NULL_LITERAL", "KW_NUMBER", "KW_STREAM", "KW_ON", "KW_OPTIMIZE", + "KW_OPTION", "KW_OPTIONAL", "KW_OPTIONALLY", "KW_OR", "KW_ORDER", + "KW_OUT", "KW_OUTER", "KW_OUTFILE", "KW_OVER", "KW_PARTITION", "KW_PRIMARY", + "KW_PROCEDURE", "KW_PURGE", "KW_RANGE", "KW_READ", "KW_READS", "KW_REFERENCE", + "KW_REFERENCES", "KW_REGEXP", "KW_RELEASE", "KW_RENAME", "KW_REPEAT", + "KW_REPLACE", "KW_REQUIRE", "KW_RESIGNAL", "KW_RESTRICT", "KW_RETAIN", + "KW_RETURN", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_SCHEMA", "KW_SCHEMAS", + "KW_SELECT", "KW_SET", "KW_SEPARATOR", "KW_SHOW", "KW_SIGNAL", "KW_SKIP", + "KW_SKIP_QUERY_REWRITE", "KW_SPATIAL", "KW_SQL", "KW_SQLEXCEPTION", + "KW_SQLSTATE", "KW_SQLWARNING", "KW_SQL_BIG_RESULT", "KW_SQL_CALC_FOUND_ROWS", + "KW_SQL_SMALL_RESULT", "KW_SSL", "KW_STACKED", "KW_STARTING", "KW_STRAIGHT_JOIN", + "KW_TABLE", "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRAILING", + "KW_TRIGGER", "KW_TRUE", "KW_UNDO", "KW_UNION", "KW_UNIQUE", "KW_UNLOCK", + "KW_UNSIGNED", "KW_UPDATE", "KW_USAGE", "KW_USE", "KW_USING", "KW_VALUES", + "KW_VCPU", "KW_WHEN", "KW_WHERE", "KW_WHILE", "KW_WITH", "KW_WRITE", + "KW_XOR", "KW_ZEROFILL", "KW_TINYINT", "KW_SMALLINT", "KW_MEDIUMINT", + "KW_MIDDLEINT", "KW_INT", "KW_INT1", "KW_INT2", "KW_INT3", "KW_INT4", + "KW_INT8", "KW_INTEGER", "KW_BIGINT", "KW_REAL", "KW_DOUBLE", "KW_PRECISION", "KW_FLOAT", "KW_FLOAT4", "KW_FLOAT8", "KW_DECIMAL", "KW_DEC", "KW_NUMERIC", "KW_DATE", "KW_TIME", "KW_TIMESTAMP", "KW_DATETIME", "KW_YEAR", "KW_CHAR", "KW_VARCHAR", "KW_NVARCHAR", "KW_NATIONAL", "KW_BINARY", diff --git a/src/lib/postgresql/PostgreSqlLexer.interp b/src/lib/postgresql/PostgreSqlLexer.interp index e7ab22fa0..02851784e 100644 --- a/src/lib/postgresql/PostgreSqlLexer.interp +++ b/src/lib/postgresql/PostgreSqlLexer.interp @@ -583,7 +583,6 @@ null null null null -null '\\\\' null null @@ -1174,10 +1173,9 @@ NumericFail Numeric PLSQLVARIABLENAME PLSQLIDENTIFIER -Whitespace -Newline -LineComment -BlockComment +WHITE_SPACE +LINE_COMMENT +BRACKETED_COMMENT UnterminatedBlockComment MetaCommand EndMetaCommand @@ -1779,10 +1777,9 @@ Numeric Digits PLSQLVARIABLENAME PLSQLIDENTIFIER -Whitespace -Newline -LineComment -BlockComment +WHITE_SPACE +LINE_COMMENT +BRACKETED_COMMENT UnterminatedBlockComment MetaCommand EndMetaCommand @@ -1794,9 +1791,7 @@ InvalidEscapeStringConstant InvalidUnterminatedEscapeStringConstant InvalidEscapeStringText AfterEscapeStringConstantMode_Whitespace -AfterEscapeStringConstantMode_Newline AfterEscapeStringConstantWithNewlineMode_Whitespace -AfterEscapeStringConstantWithNewlineMode_Newline AfterEscapeStringConstantWithNewlineMode_Continued DollarText EndDollarStringConstant @@ -1813,4 +1808,4 @@ AfterEscapeStringConstantWithNewlineMode DollarQuotedStringMode atn: -[4, 0, 593, 5846, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 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, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 4, 27, 1289, 8, 27, 11, 27, 12, 27, 1290, 1, 28, 1, 28, 4, 28, 1295, 8, 28, 11, 28, 12, 28, 1296, 1, 28, 1, 28, 3, 28, 1301, 8, 28, 3, 28, 1303, 8, 28, 1, 28, 4, 28, 1306, 8, 28, 11, 28, 12, 28, 1307, 1, 28, 3, 28, 1311, 8, 28, 1, 29, 1, 29, 5, 29, 1315, 8, 29, 10, 29, 12, 29, 1318, 9, 29, 1, 29, 1, 29, 3, 29, 1322, 8, 29, 1, 29, 4, 29, 1325, 8, 29, 11, 29, 12, 29, 1326, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 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, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 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, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 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, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 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, 1, 54, 1, 54, 1, 54, 1, 54, 1, 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, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 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, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 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, 62, 1, 62, 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, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 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, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 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, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 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, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 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, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 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, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 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, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 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, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 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, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 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, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 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, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 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, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 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, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 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, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 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, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 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, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 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, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 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, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 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, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 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, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 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, 291, 1, 291, 1, 291, 1, 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, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 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, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 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, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 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, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 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, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 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, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 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, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 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, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 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, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 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, 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, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 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, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 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, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 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, 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, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 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, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 514, 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, 516, 1, 516, 1, 516, 1, 516, 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, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 1, 523, 1, 523, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 555, 1, 555, 5, 555, 5399, 8, 555, 10, 555, 12, 555, 5402, 9, 555, 1, 556, 1, 556, 1, 556, 3, 556, 5407, 8, 556, 1, 557, 1, 557, 3, 557, 5411, 8, 557, 1, 558, 1, 558, 3, 558, 5415, 8, 558, 1, 559, 1, 559, 1, 559, 1, 560, 1, 560, 1, 560, 1, 560, 5, 560, 5424, 8, 560, 10, 560, 12, 560, 5427, 9, 560, 1, 561, 1, 561, 1, 561, 1, 562, 1, 562, 1, 562, 1, 562, 5, 562, 5436, 8, 562, 10, 562, 12, 562, 5439, 9, 562, 1, 563, 1, 563, 1, 563, 1, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 566, 1, 566, 1, 566, 1, 566, 1, 567, 1, 567, 1, 567, 1, 568, 1, 568, 1, 568, 1, 568, 5, 568, 5464, 8, 568, 10, 568, 12, 568, 5467, 9, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 570, 1, 570, 1, 570, 1, 571, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 3, 572, 5484, 8, 572, 1, 572, 1, 572, 1, 572, 1, 572, 1, 573, 1, 573, 5, 573, 5492, 8, 573, 10, 573, 12, 573, 5495, 9, 573, 1, 574, 1, 574, 1, 574, 1, 575, 1, 575, 1, 575, 5, 575, 5503, 8, 575, 10, 575, 12, 575, 5506, 9, 575, 1, 576, 1, 576, 1, 576, 1, 577, 1, 577, 1, 577, 1, 578, 1, 578, 1, 578, 1, 579, 1, 579, 1, 579, 5, 579, 5520, 8, 579, 10, 579, 12, 579, 5523, 9, 579, 1, 580, 1, 580, 1, 580, 1, 581, 1, 581, 1, 581, 1, 582, 1, 582, 1, 583, 1, 583, 1, 583, 1, 583, 1, 584, 1, 584, 1, 584, 3, 584, 5540, 8, 584, 1, 584, 1, 584, 3, 584, 5544, 8, 584, 1, 584, 3, 584, 5547, 8, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 5553, 8, 584, 1, 584, 3, 584, 5556, 8, 584, 1, 584, 1, 584, 1, 584, 3, 584, 5561, 8, 584, 1, 584, 1, 584, 3, 584, 5565, 8, 584, 1, 585, 4, 585, 5568, 8, 585, 11, 585, 12, 585, 5569, 1, 586, 1, 586, 1, 586, 5, 586, 5575, 8, 586, 10, 586, 12, 586, 5578, 9, 586, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 5, 587, 5588, 8, 587, 10, 587, 12, 587, 5591, 9, 587, 1, 587, 1, 587, 1, 588, 4, 588, 5596, 8, 588, 11, 588, 12, 588, 5597, 1, 588, 1, 588, 1, 589, 1, 589, 3, 589, 5604, 8, 589, 1, 589, 3, 589, 5607, 8, 589, 1, 589, 1, 589, 1, 590, 1, 590, 1, 590, 1, 590, 5, 590, 5615, 8, 590, 10, 590, 12, 590, 5618, 9, 590, 1, 590, 1, 590, 1, 591, 1, 591, 1, 591, 1, 591, 5, 591, 5626, 8, 591, 10, 591, 12, 591, 5629, 9, 591, 1, 591, 1, 591, 1, 591, 4, 591, 5634, 8, 591, 11, 591, 12, 591, 5635, 1, 591, 1, 591, 4, 591, 5640, 8, 591, 11, 591, 12, 591, 5641, 1, 591, 5, 591, 5645, 8, 591, 10, 591, 12, 591, 5648, 9, 591, 1, 591, 5, 591, 5651, 8, 591, 10, 591, 12, 591, 5654, 9, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 592, 1, 592, 1, 592, 1, 592, 5, 592, 5665, 8, 592, 10, 592, 12, 592, 5668, 9, 592, 1, 592, 1, 592, 1, 592, 4, 592, 5673, 8, 592, 11, 592, 12, 592, 5674, 1, 592, 1, 592, 4, 592, 5679, 8, 592, 11, 592, 12, 592, 5680, 1, 592, 3, 592, 5684, 8, 592, 5, 592, 5686, 8, 592, 10, 592, 12, 592, 5689, 9, 592, 1, 592, 4, 592, 5692, 8, 592, 11, 592, 12, 592, 5693, 1, 592, 4, 592, 5697, 8, 592, 11, 592, 12, 592, 5698, 1, 592, 5, 592, 5702, 8, 592, 10, 592, 12, 592, 5705, 9, 592, 1, 592, 3, 592, 5708, 8, 592, 1, 593, 1, 593, 1, 593, 1, 593, 5, 593, 5714, 8, 593, 10, 593, 12, 593, 5717, 9, 593, 1, 593, 5, 593, 5720, 8, 593, 10, 593, 12, 593, 5723, 9, 593, 1, 593, 1, 593, 5, 593, 5727, 8, 593, 10, 593, 12, 593, 5730, 9, 593, 3, 593, 5732, 8, 593, 1, 594, 1, 594, 1, 594, 1, 595, 1, 595, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 1, 597, 1, 597, 3, 597, 5746, 8, 597, 1, 597, 1, 597, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 3, 598, 5770, 8, 598, 1, 598, 5, 598, 5773, 8, 598, 10, 598, 12, 598, 5776, 9, 598, 1, 599, 1, 599, 1, 599, 1, 599, 1, 599, 1, 600, 1, 600, 3, 600, 5785, 8, 600, 1, 600, 1, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 5, 601, 5794, 8, 601, 10, 601, 12, 601, 5797, 9, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 607, 4, 607, 5826, 8, 607, 11, 607, 12, 607, 5827, 1, 607, 1, 607, 5, 607, 5832, 8, 607, 10, 607, 12, 607, 5835, 9, 607, 3, 607, 5837, 8, 607, 1, 608, 1, 608, 3, 608, 5841, 8, 608, 1, 608, 1, 608, 1, 608, 1, 608, 0, 0, 609, 5, 1, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 0, 65, 0, 67, 0, 69, 0, 71, 30, 73, 31, 75, 32, 77, 33, 79, 34, 81, 35, 83, 36, 85, 37, 87, 38, 89, 39, 91, 40, 93, 41, 95, 42, 97, 43, 99, 44, 101, 45, 103, 46, 105, 47, 107, 48, 109, 49, 111, 50, 113, 51, 115, 52, 117, 53, 119, 54, 121, 55, 123, 56, 125, 57, 127, 58, 129, 59, 131, 60, 133, 61, 135, 62, 137, 63, 139, 64, 141, 65, 143, 66, 145, 67, 147, 68, 149, 69, 151, 70, 153, 71, 155, 72, 157, 73, 159, 74, 161, 75, 163, 76, 165, 77, 167, 78, 169, 79, 171, 80, 173, 81, 175, 82, 177, 83, 179, 84, 181, 85, 183, 86, 185, 87, 187, 88, 189, 89, 191, 90, 193, 91, 195, 92, 197, 93, 199, 94, 201, 95, 203, 96, 205, 97, 207, 98, 209, 99, 211, 100, 213, 101, 215, 102, 217, 103, 219, 104, 221, 105, 223, 106, 225, 107, 227, 108, 229, 109, 231, 110, 233, 111, 235, 112, 237, 113, 239, 114, 241, 115, 243, 116, 245, 117, 247, 118, 249, 119, 251, 120, 253, 121, 255, 122, 257, 123, 259, 124, 261, 125, 263, 126, 265, 127, 267, 128, 269, 129, 271, 130, 273, 131, 275, 132, 277, 133, 279, 134, 281, 135, 283, 136, 285, 137, 287, 138, 289, 139, 291, 140, 293, 141, 295, 142, 297, 143, 299, 144, 301, 145, 303, 146, 305, 147, 307, 148, 309, 149, 311, 150, 313, 151, 315, 152, 317, 153, 319, 154, 321, 155, 323, 156, 325, 157, 327, 158, 329, 159, 331, 160, 333, 161, 335, 162, 337, 163, 339, 164, 341, 165, 343, 166, 345, 167, 347, 168, 349, 169, 351, 170, 353, 171, 355, 172, 357, 173, 359, 174, 361, 175, 363, 176, 365, 177, 367, 178, 369, 179, 371, 180, 373, 181, 375, 182, 377, 183, 379, 184, 381, 185, 383, 186, 385, 187, 387, 188, 389, 189, 391, 190, 393, 191, 395, 192, 397, 193, 399, 194, 401, 195, 403, 196, 405, 197, 407, 198, 409, 199, 411, 200, 413, 201, 415, 202, 417, 203, 419, 204, 421, 205, 423, 206, 425, 207, 427, 208, 429, 209, 431, 210, 433, 211, 435, 212, 437, 213, 439, 214, 441, 215, 443, 216, 445, 217, 447, 218, 449, 219, 451, 220, 453, 221, 455, 222, 457, 223, 459, 224, 461, 225, 463, 226, 465, 227, 467, 228, 469, 229, 471, 230, 473, 231, 475, 232, 477, 233, 479, 234, 481, 235, 483, 236, 485, 237, 487, 238, 489, 239, 491, 240, 493, 241, 495, 242, 497, 243, 499, 244, 501, 245, 503, 246, 505, 247, 507, 248, 509, 249, 511, 250, 513, 251, 515, 252, 517, 253, 519, 254, 521, 255, 523, 256, 525, 257, 527, 258, 529, 259, 531, 260, 533, 261, 535, 262, 537, 263, 539, 264, 541, 265, 543, 266, 545, 267, 547, 268, 549, 269, 551, 270, 553, 271, 555, 272, 557, 273, 559, 274, 561, 275, 563, 276, 565, 277, 567, 278, 569, 279, 571, 280, 573, 281, 575, 282, 577, 283, 579, 284, 581, 285, 583, 286, 585, 287, 587, 288, 589, 289, 591, 290, 593, 291, 595, 292, 597, 293, 599, 294, 601, 295, 603, 296, 605, 297, 607, 298, 609, 299, 611, 300, 613, 301, 615, 302, 617, 303, 619, 304, 621, 305, 623, 306, 625, 307, 627, 308, 629, 309, 631, 310, 633, 311, 635, 312, 637, 313, 639, 314, 641, 315, 643, 316, 645, 317, 647, 318, 649, 319, 651, 320, 653, 321, 655, 322, 657, 323, 659, 324, 661, 325, 663, 326, 665, 327, 667, 328, 669, 329, 671, 330, 673, 331, 675, 332, 677, 333, 679, 334, 681, 335, 683, 336, 685, 337, 687, 338, 689, 339, 691, 340, 693, 341, 695, 342, 697, 343, 699, 344, 701, 345, 703, 346, 705, 347, 707, 348, 709, 349, 711, 350, 713, 351, 715, 352, 717, 353, 719, 354, 721, 355, 723, 356, 725, 357, 727, 358, 729, 359, 731, 360, 733, 361, 735, 362, 737, 363, 739, 364, 741, 365, 743, 366, 745, 367, 747, 368, 749, 369, 751, 370, 753, 371, 755, 372, 757, 373, 759, 374, 761, 375, 763, 376, 765, 377, 767, 378, 769, 379, 771, 380, 773, 381, 775, 382, 777, 383, 779, 384, 781, 385, 783, 386, 785, 387, 787, 388, 789, 389, 791, 390, 793, 391, 795, 392, 797, 393, 799, 394, 801, 395, 803, 396, 805, 397, 807, 398, 809, 399, 811, 400, 813, 401, 815, 402, 817, 403, 819, 404, 821, 405, 823, 406, 825, 407, 827, 408, 829, 409, 831, 410, 833, 411, 835, 412, 837, 413, 839, 414, 841, 415, 843, 416, 845, 417, 847, 418, 849, 419, 851, 420, 853, 421, 855, 422, 857, 423, 859, 424, 861, 425, 863, 426, 865, 427, 867, 428, 869, 429, 871, 430, 873, 431, 875, 432, 877, 433, 879, 434, 881, 435, 883, 436, 885, 437, 887, 438, 889, 439, 891, 440, 893, 441, 895, 442, 897, 443, 899, 444, 901, 445, 903, 446, 905, 447, 907, 448, 909, 449, 911, 450, 913, 451, 915, 452, 917, 453, 919, 454, 921, 455, 923, 456, 925, 457, 927, 458, 929, 459, 931, 460, 933, 461, 935, 462, 937, 463, 939, 464, 941, 465, 943, 466, 945, 467, 947, 468, 949, 469, 951, 470, 953, 471, 955, 472, 957, 473, 959, 474, 961, 475, 963, 476, 965, 477, 967, 478, 969, 479, 971, 480, 973, 481, 975, 482, 977, 483, 979, 484, 981, 485, 983, 486, 985, 487, 987, 488, 989, 489, 991, 490, 993, 491, 995, 492, 997, 493, 999, 494, 1001, 495, 1003, 496, 1005, 497, 1007, 498, 1009, 499, 1011, 500, 1013, 501, 1015, 502, 1017, 503, 1019, 504, 1021, 505, 1023, 506, 1025, 507, 1027, 508, 1029, 509, 1031, 510, 1033, 511, 1035, 512, 1037, 513, 1039, 514, 1041, 515, 1043, 516, 1045, 517, 1047, 518, 1049, 519, 1051, 520, 1053, 521, 1055, 522, 1057, 523, 1059, 524, 1061, 525, 1063, 526, 1065, 527, 1067, 528, 1069, 529, 1071, 530, 1073, 531, 1075, 532, 1077, 533, 1079, 534, 1081, 535, 1083, 536, 1085, 537, 1087, 538, 1089, 539, 1091, 540, 1093, 541, 1095, 542, 1097, 543, 1099, 544, 1101, 545, 1103, 546, 1105, 547, 1107, 548, 1109, 549, 1111, 550, 1113, 551, 1115, 552, 1117, 0, 1119, 0, 1121, 0, 1123, 553, 1125, 554, 1127, 555, 1129, 556, 1131, 557, 1133, 558, 1135, 559, 1137, 560, 1139, 561, 1141, 562, 1143, 0, 1145, 563, 1147, 564, 1149, 565, 1151, 0, 1153, 566, 1155, 567, 1157, 568, 1159, 569, 1161, 570, 1163, 571, 1165, 572, 1167, 573, 1169, 574, 1171, 575, 1173, 576, 1175, 0, 1177, 577, 1179, 578, 1181, 579, 1183, 580, 1185, 581, 1187, 582, 1189, 583, 1191, 584, 1193, 585, 1195, 586, 1197, 587, 1199, 588, 1201, 0, 1203, 589, 1205, 590, 1207, 0, 1209, 0, 1211, 0, 1213, 0, 1215, 0, 1217, 593, 1219, 591, 1221, 592, 5, 0, 1, 2, 3, 4, 51, 1, 0, 48, 57, 2, 0, 43, 43, 45, 45, 2, 0, 45, 45, 47, 47, 9, 0, 33, 33, 35, 35, 37, 38, 42, 42, 60, 64, 94, 94, 96, 96, 124, 124, 126, 126, 2, 0, 42, 43, 60, 62, 8, 0, 33, 33, 35, 35, 37, 38, 63, 64, 94, 94, 96, 96, 124, 124, 126, 126, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 82, 82, 114, 114, 2, 0, 67, 67, 99, 99, 2, 0, 77, 77, 109, 109, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 66, 66, 98, 98, 2, 0, 79, 79, 111, 111, 2, 0, 72, 72, 104, 104, 2, 0, 75, 75, 107, 107, 2, 0, 85, 85, 117, 117, 2, 0, 71, 71, 103, 103, 2, 0, 80, 80, 112, 112, 2, 0, 70, 70, 102, 102, 2, 0, 88, 88, 120, 120, 2, 0, 86, 86, 118, 118, 2, 0, 81, 81, 113, 113, 2, 0, 87, 87, 119, 119, 2, 0, 74, 74, 106, 106, 10, 0, 65, 90, 95, 95, 97, 122, 170, 170, 181, 181, 186, 186, 192, 214, 224, 246, 248, 55295, 57344, 65535, 1, 0, 55296, 56319, 1, 0, 56320, 57343, 2, 0, 0, 0, 34, 34, 1, 0, 34, 34, 1, 0, 39, 39, 1, 0, 48, 49, 3, 0, 48, 57, 65, 70, 97, 102, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 9, 9, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 42, 42, 47, 47, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 3, 0, 10, 10, 13, 13, 34, 34, 4, 0, 85, 85, 88, 88, 117, 117, 120, 120, 2, 0, 39, 39, 92, 92, 1, 0, 36, 36, 5915, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 0, 1085, 1, 0, 0, 0, 0, 1087, 1, 0, 0, 0, 0, 1089, 1, 0, 0, 0, 0, 1091, 1, 0, 0, 0, 0, 1093, 1, 0, 0, 0, 0, 1095, 1, 0, 0, 0, 0, 1097, 1, 0, 0, 0, 0, 1099, 1, 0, 0, 0, 0, 1101, 1, 0, 0, 0, 0, 1103, 1, 0, 0, 0, 0, 1105, 1, 0, 0, 0, 0, 1107, 1, 0, 0, 0, 0, 1109, 1, 0, 0, 0, 0, 1111, 1, 0, 0, 0, 0, 1113, 1, 0, 0, 0, 0, 1115, 1, 0, 0, 0, 0, 1123, 1, 0, 0, 0, 0, 1125, 1, 0, 0, 0, 0, 1127, 1, 0, 0, 0, 0, 1129, 1, 0, 0, 0, 0, 1131, 1, 0, 0, 0, 0, 1133, 1, 0, 0, 0, 0, 1135, 1, 0, 0, 0, 0, 1137, 1, 0, 0, 0, 0, 1139, 1, 0, 0, 0, 0, 1141, 1, 0, 0, 0, 0, 1143, 1, 0, 0, 0, 0, 1145, 1, 0, 0, 0, 0, 1147, 1, 0, 0, 0, 0, 1149, 1, 0, 0, 0, 0, 1153, 1, 0, 0, 0, 0, 1155, 1, 0, 0, 0, 0, 1157, 1, 0, 0, 0, 0, 1159, 1, 0, 0, 0, 0, 1161, 1, 0, 0, 0, 0, 1163, 1, 0, 0, 0, 0, 1165, 1, 0, 0, 0, 0, 1167, 1, 0, 0, 0, 0, 1169, 1, 0, 0, 0, 0, 1171, 1, 0, 0, 0, 0, 1173, 1, 0, 0, 0, 0, 1177, 1, 0, 0, 0, 0, 1179, 1, 0, 0, 0, 0, 1181, 1, 0, 0, 0, 0, 1183, 1, 0, 0, 0, 0, 1185, 1, 0, 0, 0, 0, 1187, 1, 0, 0, 0, 0, 1189, 1, 0, 0, 0, 0, 1191, 1, 0, 0, 0, 0, 1193, 1, 0, 0, 0, 0, 1195, 1, 0, 0, 0, 1, 1197, 1, 0, 0, 0, 1, 1199, 1, 0, 0, 0, 1, 1203, 1, 0, 0, 0, 1, 1205, 1, 0, 0, 0, 2, 1209, 1, 0, 0, 0, 2, 1211, 1, 0, 0, 0, 3, 1213, 1, 0, 0, 0, 3, 1215, 1, 0, 0, 0, 3, 1217, 1, 0, 0, 0, 4, 1219, 1, 0, 0, 0, 4, 1221, 1, 0, 0, 0, 5, 1223, 1, 0, 0, 0, 7, 1225, 1, 0, 0, 0, 9, 1227, 1, 0, 0, 0, 11, 1229, 1, 0, 0, 0, 13, 1231, 1, 0, 0, 0, 15, 1233, 1, 0, 0, 0, 17, 1235, 1, 0, 0, 0, 19, 1237, 1, 0, 0, 0, 21, 1239, 1, 0, 0, 0, 23, 1241, 1, 0, 0, 0, 25, 1243, 1, 0, 0, 0, 27, 1245, 1, 0, 0, 0, 29, 1247, 1, 0, 0, 0, 31, 1249, 1, 0, 0, 0, 33, 1251, 1, 0, 0, 0, 35, 1253, 1, 0, 0, 0, 37, 1255, 1, 0, 0, 0, 39, 1257, 1, 0, 0, 0, 41, 1260, 1, 0, 0, 0, 43, 1263, 1, 0, 0, 0, 45, 1266, 1, 0, 0, 0, 47, 1269, 1, 0, 0, 0, 49, 1272, 1, 0, 0, 0, 51, 1275, 1, 0, 0, 0, 53, 1278, 1, 0, 0, 0, 55, 1281, 1, 0, 0, 0, 57, 1284, 1, 0, 0, 0, 59, 1286, 1, 0, 0, 0, 61, 1310, 1, 0, 0, 0, 63, 1316, 1, 0, 0, 0, 65, 1330, 1, 0, 0, 0, 67, 1332, 1, 0, 0, 0, 69, 1334, 1, 0, 0, 0, 71, 1336, 1, 0, 0, 0, 73, 1340, 1, 0, 0, 0, 75, 1348, 1, 0, 0, 0, 77, 1356, 1, 0, 0, 0, 79, 1360, 1, 0, 0, 0, 81, 1364, 1, 0, 0, 0, 83, 1370, 1, 0, 0, 0, 85, 1373, 1, 0, 0, 0, 87, 1377, 1, 0, 0, 0, 89, 1388, 1, 0, 0, 0, 91, 1393, 1, 0, 0, 0, 93, 1398, 1, 0, 0, 0, 95, 1403, 1, 0, 0, 0, 97, 1409, 1, 0, 0, 0, 99, 1417, 1, 0, 0, 0, 101, 1424, 1, 0, 0, 0, 103, 1435, 1, 0, 0, 0, 105, 1442, 1, 0, 0, 0, 107, 1458, 1, 0, 0, 0, 109, 1471, 1, 0, 0, 0, 111, 1484, 1, 0, 0, 0, 113, 1497, 1, 0, 0, 0, 115, 1515, 1, 0, 0, 0, 117, 1528, 1, 0, 0, 0, 119, 1536, 1, 0, 0, 0, 121, 1547, 1, 0, 0, 0, 123, 1552, 1, 0, 0, 0, 125, 1561, 1, 0, 0, 0, 127, 1564, 1, 0, 0, 0, 129, 1569, 1, 0, 0, 0, 131, 1576, 1, 0, 0, 0, 133, 1582, 1, 0, 0, 0, 135, 1588, 1, 0, 0, 0, 137, 1592, 1, 0, 0, 0, 139, 1600, 1, 0, 0, 0, 141, 1605, 1, 0, 0, 0, 143, 1611, 1, 0, 0, 0, 145, 1617, 1, 0, 0, 0, 147, 1624, 1, 0, 0, 0, 149, 1627, 1, 0, 0, 0, 151, 1637, 1, 0, 0, 0, 153, 1647, 1, 0, 0, 0, 155, 1652, 1, 0, 0, 0, 157, 1660, 1, 0, 0, 0, 159, 1668, 1, 0, 0, 0, 161, 1674, 1, 0, 0, 0, 163, 1684, 1, 0, 0, 0, 165, 1699, 1, 0, 0, 0, 167, 1703, 1, 0, 0, 0, 169, 1708, 1, 0, 0, 0, 171, 1715, 1, 0, 0, 0, 173, 1718, 1, 0, 0, 0, 175, 1723, 1, 0, 0, 0, 177, 1726, 1, 0, 0, 0, 179, 1732, 1, 0, 0, 0, 181, 1740, 1, 0, 0, 0, 183, 1748, 1, 0, 0, 0, 185, 1759, 1, 0, 0, 0, 187, 1769, 1, 0, 0, 0, 189, 1776, 1, 0, 0, 0, 191, 1789, 1, 0, 0, 0, 193, 1794, 1, 0, 0, 0, 195, 1804, 1, 0, 0, 0, 197, 1810, 1, 0, 0, 0, 199, 1815, 1, 0, 0, 0, 201, 1818, 1, 0, 0, 0, 203, 1827, 1, 0, 0, 0, 205, 1832, 1, 0, 0, 0, 207, 1838, 1, 0, 0, 0, 209, 1845, 1, 0, 0, 0, 211, 1850, 1, 0, 0, 0, 213, 1856, 1, 0, 0, 0, 215, 1865, 1, 0, 0, 0, 217, 1870, 1, 0, 0, 0, 219, 1876, 1, 0, 0, 0, 221, 1883, 1, 0, 0, 0, 223, 1888, 1, 0, 0, 0, 225, 1902, 1, 0, 0, 0, 227, 1909, 1, 0, 0, 0, 229, 1919, 1, 0, 0, 0, 231, 1932, 1, 0, 0, 0, 233, 1938, 1, 0, 0, 0, 235, 1953, 1, 0, 0, 0, 237, 1960, 1, 0, 0, 0, 239, 1965, 1, 0, 0, 0, 241, 1971, 1, 0, 0, 0, 243, 1977, 1, 0, 0, 0, 245, 1980, 1, 0, 0, 0, 247, 1987, 1, 0, 0, 0, 249, 1992, 1, 0, 0, 0, 251, 1997, 1, 0, 0, 0, 253, 2002, 1, 0, 0, 0, 255, 2010, 1, 0, 0, 0, 257, 2018, 1, 0, 0, 0, 259, 2024, 1, 0, 0, 0, 261, 2029, 1, 0, 0, 0, 263, 2038, 1, 0, 0, 0, 265, 2044, 1, 0, 0, 0, 267, 2052, 1, 0, 0, 0, 269, 2060, 1, 0, 0, 0, 271, 2066, 1, 0, 0, 0, 273, 2075, 1, 0, 0, 0, 275, 2082, 1, 0, 0, 0, 277, 2089, 1, 0, 0, 0, 279, 2093, 1, 0, 0, 0, 281, 2099, 1, 0, 0, 0, 283, 2105, 1, 0, 0, 0, 285, 2115, 1, 0, 0, 0, 287, 2120, 1, 0, 0, 0, 289, 2126, 1, 0, 0, 0, 291, 2133, 1, 0, 0, 0, 293, 2143, 1, 0, 0, 0, 295, 2154, 1, 0, 0, 0, 297, 2157, 1, 0, 0, 0, 299, 2167, 1, 0, 0, 0, 301, 2176, 1, 0, 0, 0, 303, 2183, 1, 0, 0, 0, 305, 2189, 1, 0, 0, 0, 307, 2192, 1, 0, 0, 0, 309, 2198, 1, 0, 0, 0, 311, 2205, 1, 0, 0, 0, 313, 2213, 1, 0, 0, 0, 315, 2222, 1, 0, 0, 0, 317, 2230, 1, 0, 0, 0, 319, 2236, 1, 0, 0, 0, 321, 2252, 1, 0, 0, 0, 323, 2263, 1, 0, 0, 0, 325, 2269, 1, 0, 0, 0, 327, 2275, 1, 0, 0, 0, 329, 2283, 1, 0, 0, 0, 331, 2291, 1, 0, 0, 0, 333, 2300, 1, 0, 0, 0, 335, 2307, 1, 0, 0, 0, 337, 2317, 1, 0, 0, 0, 339, 2331, 1, 0, 0, 0, 341, 2342, 1, 0, 0, 0, 343, 2354, 1, 0, 0, 0, 345, 2362, 1, 0, 0, 0, 347, 2371, 1, 0, 0, 0, 349, 2382, 1, 0, 0, 0, 351, 2387, 1, 0, 0, 0, 353, 2392, 1, 0, 0, 0, 355, 2396, 1, 0, 0, 0, 357, 2403, 1, 0, 0, 0, 359, 2409, 1, 0, 0, 0, 361, 2414, 1, 0, 0, 0, 363, 2423, 1, 0, 0, 0, 365, 2427, 1, 0, 0, 0, 367, 2438, 1, 0, 0, 0, 369, 2446, 1, 0, 0, 0, 371, 2455, 1, 0, 0, 0, 373, 2464, 1, 0, 0, 0, 375, 2472, 1, 0, 0, 0, 377, 2479, 1, 0, 0, 0, 379, 2489, 1, 0, 0, 0, 381, 2500, 1, 0, 0, 0, 383, 2511, 1, 0, 0, 0, 385, 2519, 1, 0, 0, 0, 387, 2527, 1, 0, 0, 0, 389, 2536, 1, 0, 0, 0, 391, 2543, 1, 0, 0, 0, 393, 2550, 1, 0, 0, 0, 395, 2555, 1, 0, 0, 0, 397, 2560, 1, 0, 0, 0, 399, 2567, 1, 0, 0, 0, 401, 2576, 1, 0, 0, 0, 403, 2586, 1, 0, 0, 0, 405, 2591, 1, 0, 0, 0, 407, 2598, 1, 0, 0, 0, 409, 2604, 1, 0, 0, 0, 411, 2612, 1, 0, 0, 0, 413, 2622, 1, 0, 0, 0, 415, 2632, 1, 0, 0, 0, 417, 2640, 1, 0, 0, 0, 419, 2648, 1, 0, 0, 0, 421, 2658, 1, 0, 0, 0, 423, 2667, 1, 0, 0, 0, 425, 2674, 1, 0, 0, 0, 427, 2680, 1, 0, 0, 0, 429, 2690, 1, 0, 0, 0, 431, 2696, 1, 0, 0, 0, 433, 2704, 1, 0, 0, 0, 435, 2713, 1, 0, 0, 0, 437, 2723, 1, 0, 0, 0, 439, 2730, 1, 0, 0, 0, 441, 2738, 1, 0, 0, 0, 443, 2746, 1, 0, 0, 0, 445, 2753, 1, 0, 0, 0, 447, 2758, 1, 0, 0, 0, 449, 2763, 1, 0, 0, 0, 451, 2772, 1, 0, 0, 0, 453, 2775, 1, 0, 0, 0, 455, 2785, 1, 0, 0, 0, 457, 2795, 1, 0, 0, 0, 459, 2804, 1, 0, 0, 0, 461, 2814, 1, 0, 0, 0, 463, 2824, 1, 0, 0, 0, 465, 2830, 1, 0, 0, 0, 467, 2838, 1, 0, 0, 0, 469, 2846, 1, 0, 0, 0, 471, 2856, 1, 0, 0, 0, 473, 2866, 1, 0, 0, 0, 475, 2878, 1, 0, 0, 0, 477, 2887, 1, 0, 0, 0, 479, 2898, 1, 0, 0, 0, 481, 2909, 1, 0, 0, 0, 483, 2922, 1, 0, 0, 0, 485, 2933, 1, 0, 0, 0, 487, 2946, 1, 0, 0, 0, 489, 2955, 1, 0, 0, 0, 491, 2962, 1, 0, 0, 0, 493, 2974, 1, 0, 0, 0, 495, 2981, 1, 0, 0, 0, 497, 2989, 1, 0, 0, 0, 499, 2997, 1, 0, 0, 0, 501, 3007, 1, 0, 0, 0, 503, 3011, 1, 0, 0, 0, 505, 3017, 1, 0, 0, 0, 507, 3026, 1, 0, 0, 0, 509, 3032, 1, 0, 0, 0, 511, 3037, 1, 0, 0, 0, 513, 3047, 1, 0, 0, 0, 515, 3053, 1, 0, 0, 0, 517, 3060, 1, 0, 0, 0, 519, 3065, 1, 0, 0, 0, 521, 3071, 1, 0, 0, 0, 523, 3080, 1, 0, 0, 0, 525, 3085, 1, 0, 0, 0, 527, 3093, 1, 0, 0, 0, 529, 3099, 1, 0, 0, 0, 531, 3112, 1, 0, 0, 0, 533, 3121, 1, 0, 0, 0, 535, 3128, 1, 0, 0, 0, 537, 3137, 1, 0, 0, 0, 539, 3142, 1, 0, 0, 0, 541, 3148, 1, 0, 0, 0, 543, 3153, 1, 0, 0, 0, 545, 3158, 1, 0, 0, 0, 547, 3164, 1, 0, 0, 0, 549, 3169, 1, 0, 0, 0, 551, 3172, 1, 0, 0, 0, 553, 3180, 1, 0, 0, 0, 555, 3187, 1, 0, 0, 0, 557, 3194, 1, 0, 0, 0, 559, 3200, 1, 0, 0, 0, 561, 3207, 1, 0, 0, 0, 563, 3210, 1, 0, 0, 0, 565, 3214, 1, 0, 0, 0, 567, 3219, 1, 0, 0, 0, 569, 3228, 1, 0, 0, 0, 571, 3235, 1, 0, 0, 0, 573, 3243, 1, 0, 0, 0, 575, 3249, 1, 0, 0, 0, 577, 3255, 1, 0, 0, 0, 579, 3262, 1, 0, 0, 0, 581, 3270, 1, 0, 0, 0, 583, 3280, 1, 0, 0, 0, 585, 3288, 1, 0, 0, 0, 587, 3297, 1, 0, 0, 0, 589, 3303, 1, 0, 0, 0, 591, 3313, 1, 0, 0, 0, 593, 3321, 1, 0, 0, 0, 595, 3330, 1, 0, 0, 0, 597, 3339, 1, 0, 0, 0, 599, 3345, 1, 0, 0, 0, 601, 3356, 1, 0, 0, 0, 603, 3367, 1, 0, 0, 0, 605, 3377, 1, 0, 0, 0, 607, 3385, 1, 0, 0, 0, 609, 3391, 1, 0, 0, 0, 611, 3397, 1, 0, 0, 0, 613, 3402, 1, 0, 0, 0, 615, 3411, 1, 0, 0, 0, 617, 3419, 1, 0, 0, 0, 619, 3429, 1, 0, 0, 0, 621, 3433, 1, 0, 0, 0, 623, 3441, 1, 0, 0, 0, 625, 3449, 1, 0, 0, 0, 627, 3458, 1, 0, 0, 0, 629, 3466, 1, 0, 0, 0, 631, 3473, 1, 0, 0, 0, 633, 3484, 1, 0, 0, 0, 635, 3492, 1, 0, 0, 0, 637, 3500, 1, 0, 0, 0, 639, 3506, 1, 0, 0, 0, 641, 3514, 1, 0, 0, 0, 643, 3523, 1, 0, 0, 0, 645, 3531, 1, 0, 0, 0, 647, 3538, 1, 0, 0, 0, 649, 3543, 1, 0, 0, 0, 651, 3552, 1, 0, 0, 0, 653, 3557, 1, 0, 0, 0, 655, 3562, 1, 0, 0, 0, 657, 3572, 1, 0, 0, 0, 659, 3579, 1, 0, 0, 0, 661, 3586, 1, 0, 0, 0, 663, 3593, 1, 0, 0, 0, 665, 3600, 1, 0, 0, 0, 667, 3609, 1, 0, 0, 0, 669, 3618, 1, 0, 0, 0, 671, 3628, 1, 0, 0, 0, 673, 3641, 1, 0, 0, 0, 675, 3648, 1, 0, 0, 0, 677, 3656, 1, 0, 0, 0, 679, 3660, 1, 0, 0, 0, 681, 3666, 1, 0, 0, 0, 683, 3671, 1, 0, 0, 0, 685, 3678, 1, 0, 0, 0, 687, 3687, 1, 0, 0, 0, 689, 3694, 1, 0, 0, 0, 691, 3705, 1, 0, 0, 0, 693, 3711, 1, 0, 0, 0, 695, 3721, 1, 0, 0, 0, 697, 3732, 1, 0, 0, 0, 699, 3738, 1, 0, 0, 0, 701, 3745, 1, 0, 0, 0, 703, 3753, 1, 0, 0, 0, 705, 3760, 1, 0, 0, 0, 707, 3766, 1, 0, 0, 0, 709, 3772, 1, 0, 0, 0, 711, 3779, 1, 0, 0, 0, 713, 3786, 1, 0, 0, 0, 715, 3797, 1, 0, 0, 0, 717, 3802, 1, 0, 0, 0, 719, 3811, 1, 0, 0, 0, 721, 3821, 1, 0, 0, 0, 723, 3826, 1, 0, 0, 0, 725, 3838, 1, 0, 0, 0, 727, 3846, 1, 0, 0, 0, 729, 3855, 1, 0, 0, 0, 731, 3863, 1, 0, 0, 0, 733, 3868, 1, 0, 0, 0, 735, 3874, 1, 0, 0, 0, 737, 3884, 1, 0, 0, 0, 739, 3896, 1, 0, 0, 0, 741, 3908, 1, 0, 0, 0, 743, 3916, 1, 0, 0, 0, 745, 3925, 1, 0, 0, 0, 747, 3934, 1, 0, 0, 0, 749, 3940, 1, 0, 0, 0, 751, 3947, 1, 0, 0, 0, 753, 3954, 1, 0, 0, 0, 755, 3960, 1, 0, 0, 0, 757, 3969, 1, 0, 0, 0, 759, 3979, 1, 0, 0, 0, 761, 3987, 1, 0, 0, 0, 763, 3995, 1, 0, 0, 0, 765, 4000, 1, 0, 0, 0, 767, 4009, 1, 0, 0, 0, 769, 4020, 1, 0, 0, 0, 771, 4028, 1, 0, 0, 0, 773, 4033, 1, 0, 0, 0, 775, 4041, 1, 0, 0, 0, 777, 4047, 1, 0, 0, 0, 779, 4051, 1, 0, 0, 0, 781, 4056, 1, 0, 0, 0, 783, 4060, 1, 0, 0, 0, 785, 4065, 1, 0, 0, 0, 787, 4073, 1, 0, 0, 0, 789, 4080, 1, 0, 0, 0, 791, 4084, 1, 0, 0, 0, 793, 4092, 1, 0, 0, 0, 795, 4097, 1, 0, 0, 0, 797, 4107, 1, 0, 0, 0, 799, 4116, 1, 0, 0, 0, 801, 4120, 1, 0, 0, 0, 803, 4128, 1, 0, 0, 0, 805, 4135, 1, 0, 0, 0, 807, 4143, 1, 0, 0, 0, 809, 4149, 1, 0, 0, 0, 811, 4158, 1, 0, 0, 0, 813, 4164, 1, 0, 0, 0, 815, 4168, 1, 0, 0, 0, 817, 4176, 1, 0, 0, 0, 819, 4185, 1, 0, 0, 0, 821, 4191, 1, 0, 0, 0, 823, 4200, 1, 0, 0, 0, 825, 4206, 1, 0, 0, 0, 827, 4211, 1, 0, 0, 0, 829, 4218, 1, 0, 0, 0, 831, 4226, 1, 0, 0, 0, 833, 4234, 1, 0, 0, 0, 835, 4243, 1, 0, 0, 0, 837, 4253, 1, 0, 0, 0, 839, 4258, 1, 0, 0, 0, 841, 4262, 1, 0, 0, 0, 843, 4268, 1, 0, 0, 0, 845, 4277, 1, 0, 0, 0, 847, 4287, 1, 0, 0, 0, 849, 4292, 1, 0, 0, 0, 851, 4302, 1, 0, 0, 0, 853, 4308, 1, 0, 0, 0, 855, 4313, 1, 0, 0, 0, 857, 4320, 1, 0, 0, 0, 859, 4328, 1, 0, 0, 0, 861, 4342, 1, 0, 0, 0, 863, 4352, 1, 0, 0, 0, 865, 4363, 1, 0, 0, 0, 867, 4373, 1, 0, 0, 0, 869, 4383, 1, 0, 0, 0, 871, 4392, 1, 0, 0, 0, 873, 4398, 1, 0, 0, 0, 875, 4406, 1, 0, 0, 0, 877, 4419, 1, 0, 0, 0, 879, 4424, 1, 0, 0, 0, 881, 4432, 1, 0, 0, 0, 883, 4439, 1, 0, 0, 0, 885, 4446, 1, 0, 0, 0, 887, 4457, 1, 0, 0, 0, 889, 4467, 1, 0, 0, 0, 891, 4474, 1, 0, 0, 0, 893, 4481, 1, 0, 0, 0, 895, 4489, 1, 0, 0, 0, 897, 4497, 1, 0, 0, 0, 899, 4507, 1, 0, 0, 0, 901, 4514, 1, 0, 0, 0, 903, 4521, 1, 0, 0, 0, 905, 4528, 1, 0, 0, 0, 907, 4540, 1, 0, 0, 0, 909, 4544, 1, 0, 0, 0, 911, 4548, 1, 0, 0, 0, 913, 4554, 1, 0, 0, 0, 915, 4567, 1, 0, 0, 0, 917, 4579, 1, 0, 0, 0, 919, 4583, 1, 0, 0, 0, 921, 4587, 1, 0, 0, 0, 923, 4596, 1, 0, 0, 0, 925, 4604, 1, 0, 0, 0, 927, 4615, 1, 0, 0, 0, 929, 4621, 1, 0, 0, 0, 931, 4629, 1, 0, 0, 0, 933, 4638, 1, 0, 0, 0, 935, 4642, 1, 0, 0, 0, 937, 4650, 1, 0, 0, 0, 939, 4661, 1, 0, 0, 0, 941, 4670, 1, 0, 0, 0, 943, 4675, 1, 0, 0, 0, 945, 4682, 1, 0, 0, 0, 947, 4687, 1, 0, 0, 0, 949, 4694, 1, 0, 0, 0, 951, 4699, 1, 0, 0, 0, 953, 4708, 1, 0, 0, 0, 955, 4713, 1, 0, 0, 0, 957, 4725, 1, 0, 0, 0, 959, 4736, 1, 0, 0, 0, 961, 4745, 1, 0, 0, 0, 963, 4753, 1, 0, 0, 0, 965, 4767, 1, 0, 0, 0, 967, 4775, 1, 0, 0, 0, 969, 4786, 1, 0, 0, 0, 971, 4793, 1, 0, 0, 0, 973, 4800, 1, 0, 0, 0, 975, 4807, 1, 0, 0, 0, 977, 4814, 1, 0, 0, 0, 979, 4818, 1, 0, 0, 0, 981, 4822, 1, 0, 0, 0, 983, 4827, 1, 0, 0, 0, 985, 4832, 1, 0, 0, 0, 987, 4840, 1, 0, 0, 0, 989, 4846, 1, 0, 0, 0, 991, 4856, 1, 0, 0, 0, 993, 4861, 1, 0, 0, 0, 995, 4881, 1, 0, 0, 0, 997, 4899, 1, 0, 0, 0, 999, 4905, 1, 0, 0, 0, 1001, 4918, 1, 0, 0, 0, 1003, 4929, 1, 0, 0, 0, 1005, 4935, 1, 0, 0, 0, 1007, 4944, 1, 0, 0, 0, 1009, 4952, 1, 0, 0, 0, 1011, 4956, 1, 0, 0, 0, 1013, 4968, 1, 0, 0, 0, 1015, 4976, 1, 0, 0, 0, 1017, 4982, 1, 0, 0, 0, 1019, 4988, 1, 0, 0, 0, 1021, 4996, 1, 0, 0, 0, 1023, 5004, 1, 0, 0, 0, 1025, 5010, 1, 0, 0, 0, 1027, 5015, 1, 0, 0, 0, 1029, 5022, 1, 0, 0, 0, 1031, 5028, 1, 0, 0, 0, 1033, 5034, 1, 0, 0, 0, 1035, 5043, 1, 0, 0, 0, 1037, 5049, 1, 0, 0, 0, 1039, 5053, 1, 0, 0, 0, 1041, 5058, 1, 0, 0, 0, 1043, 5065, 1, 0, 0, 0, 1045, 5073, 1, 0, 0, 0, 1047, 5083, 1, 0, 0, 0, 1049, 5090, 1, 0, 0, 0, 1051, 5095, 1, 0, 0, 0, 1053, 5100, 1, 0, 0, 0, 1055, 5111, 1, 0, 0, 0, 1057, 5117, 1, 0, 0, 0, 1059, 5125, 1, 0, 0, 0, 1061, 5132, 1, 0, 0, 0, 1063, 5138, 1, 0, 0, 0, 1065, 5146, 1, 0, 0, 0, 1067, 5154, 1, 0, 0, 0, 1069, 5160, 1, 0, 0, 0, 1071, 5167, 1, 0, 0, 0, 1073, 5178, 1, 0, 0, 0, 1075, 5183, 1, 0, 0, 0, 1077, 5192, 1, 0, 0, 0, 1079, 5200, 1, 0, 0, 0, 1081, 5210, 1, 0, 0, 0, 1083, 5216, 1, 0, 0, 0, 1085, 5224, 1, 0, 0, 0, 1087, 5236, 1, 0, 0, 0, 1089, 5250, 1, 0, 0, 0, 1091, 5260, 1, 0, 0, 0, 1093, 5272, 1, 0, 0, 0, 1095, 5283, 1, 0, 0, 0, 1097, 5295, 1, 0, 0, 0, 1099, 5307, 1, 0, 0, 0, 1101, 5313, 1, 0, 0, 0, 1103, 5322, 1, 0, 0, 0, 1105, 5327, 1, 0, 0, 0, 1107, 5339, 1, 0, 0, 0, 1109, 5358, 1, 0, 0, 0, 1111, 5370, 1, 0, 0, 0, 1113, 5385, 1, 0, 0, 0, 1115, 5396, 1, 0, 0, 0, 1117, 5406, 1, 0, 0, 0, 1119, 5410, 1, 0, 0, 0, 1121, 5414, 1, 0, 0, 0, 1123, 5416, 1, 0, 0, 0, 1125, 5419, 1, 0, 0, 0, 1127, 5428, 1, 0, 0, 0, 1129, 5431, 1, 0, 0, 0, 1131, 5440, 1, 0, 0, 0, 1133, 5444, 1, 0, 0, 0, 1135, 5448, 1, 0, 0, 0, 1137, 5452, 1, 0, 0, 0, 1139, 5456, 1, 0, 0, 0, 1141, 5459, 1, 0, 0, 0, 1143, 5468, 1, 0, 0, 0, 1145, 5474, 1, 0, 0, 0, 1147, 5477, 1, 0, 0, 0, 1149, 5481, 1, 0, 0, 0, 1151, 5489, 1, 0, 0, 0, 1153, 5496, 1, 0, 0, 0, 1155, 5499, 1, 0, 0, 0, 1157, 5507, 1, 0, 0, 0, 1159, 5510, 1, 0, 0, 0, 1161, 5513, 1, 0, 0, 0, 1163, 5516, 1, 0, 0, 0, 1165, 5524, 1, 0, 0, 0, 1167, 5527, 1, 0, 0, 0, 1169, 5530, 1, 0, 0, 0, 1171, 5532, 1, 0, 0, 0, 1173, 5564, 1, 0, 0, 0, 1175, 5567, 1, 0, 0, 0, 1177, 5571, 1, 0, 0, 0, 1179, 5579, 1, 0, 0, 0, 1181, 5595, 1, 0, 0, 0, 1183, 5606, 1, 0, 0, 0, 1185, 5610, 1, 0, 0, 0, 1187, 5621, 1, 0, 0, 0, 1189, 5660, 1, 0, 0, 0, 1191, 5709, 1, 0, 0, 0, 1193, 5733, 1, 0, 0, 0, 1195, 5736, 1, 0, 0, 0, 1197, 5738, 1, 0, 0, 0, 1199, 5743, 1, 0, 0, 0, 1201, 5774, 1, 0, 0, 0, 1203, 5777, 1, 0, 0, 0, 1205, 5782, 1, 0, 0, 0, 1207, 5795, 1, 0, 0, 0, 1209, 5798, 1, 0, 0, 0, 1211, 5803, 1, 0, 0, 0, 1213, 5809, 1, 0, 0, 0, 1215, 5814, 1, 0, 0, 0, 1217, 5819, 1, 0, 0, 0, 1219, 5836, 1, 0, 0, 0, 1221, 5838, 1, 0, 0, 0, 1223, 1224, 5, 36, 0, 0, 1224, 6, 1, 0, 0, 0, 1225, 1226, 5, 40, 0, 0, 1226, 8, 1, 0, 0, 0, 1227, 1228, 5, 41, 0, 0, 1228, 10, 1, 0, 0, 0, 1229, 1230, 5, 91, 0, 0, 1230, 12, 1, 0, 0, 0, 1231, 1232, 5, 93, 0, 0, 1232, 14, 1, 0, 0, 0, 1233, 1234, 5, 44, 0, 0, 1234, 16, 1, 0, 0, 0, 1235, 1236, 5, 59, 0, 0, 1236, 18, 1, 0, 0, 0, 1237, 1238, 5, 58, 0, 0, 1238, 20, 1, 0, 0, 0, 1239, 1240, 5, 42, 0, 0, 1240, 22, 1, 0, 0, 0, 1241, 1242, 5, 61, 0, 0, 1242, 24, 1, 0, 0, 0, 1243, 1244, 5, 46, 0, 0, 1244, 26, 1, 0, 0, 0, 1245, 1246, 5, 43, 0, 0, 1246, 28, 1, 0, 0, 0, 1247, 1248, 5, 45, 0, 0, 1248, 30, 1, 0, 0, 0, 1249, 1250, 5, 47, 0, 0, 1250, 32, 1, 0, 0, 0, 1251, 1252, 5, 94, 0, 0, 1252, 34, 1, 0, 0, 0, 1253, 1254, 5, 60, 0, 0, 1254, 36, 1, 0, 0, 0, 1255, 1256, 5, 62, 0, 0, 1256, 38, 1, 0, 0, 0, 1257, 1258, 5, 60, 0, 0, 1258, 1259, 5, 60, 0, 0, 1259, 40, 1, 0, 0, 0, 1260, 1261, 5, 62, 0, 0, 1261, 1262, 5, 62, 0, 0, 1262, 42, 1, 0, 0, 0, 1263, 1264, 5, 58, 0, 0, 1264, 1265, 5, 61, 0, 0, 1265, 44, 1, 0, 0, 0, 1266, 1267, 5, 60, 0, 0, 1267, 1268, 5, 61, 0, 0, 1268, 46, 1, 0, 0, 0, 1269, 1270, 5, 61, 0, 0, 1270, 1271, 5, 62, 0, 0, 1271, 48, 1, 0, 0, 0, 1272, 1273, 5, 62, 0, 0, 1273, 1274, 5, 61, 0, 0, 1274, 50, 1, 0, 0, 0, 1275, 1276, 5, 46, 0, 0, 1276, 1277, 5, 46, 0, 0, 1277, 52, 1, 0, 0, 0, 1278, 1279, 5, 60, 0, 0, 1279, 1280, 5, 62, 0, 0, 1280, 54, 1, 0, 0, 0, 1281, 1282, 5, 58, 0, 0, 1282, 1283, 5, 58, 0, 0, 1283, 56, 1, 0, 0, 0, 1284, 1285, 5, 37, 0, 0, 1285, 58, 1, 0, 0, 0, 1286, 1288, 5, 36, 0, 0, 1287, 1289, 7, 0, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 60, 1, 0, 0, 0, 1292, 1306, 3, 65, 30, 0, 1293, 1295, 7, 1, 0, 0, 1294, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1302, 1, 0, 0, 0, 1298, 1303, 3, 65, 30, 0, 1299, 1301, 5, 47, 0, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1298, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1306, 1, 0, 0, 0, 1304, 1306, 5, 47, 0, 0, 1305, 1292, 1, 0, 0, 0, 1305, 1294, 1, 0, 0, 0, 1305, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1311, 1, 0, 0, 0, 1309, 1311, 7, 1, 0, 0, 1310, 1305, 1, 0, 0, 0, 1310, 1309, 1, 0, 0, 0, 1311, 62, 1, 0, 0, 0, 1312, 1315, 3, 67, 31, 0, 1313, 1315, 7, 2, 0, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1313, 1, 0, 0, 0, 1315, 1318, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1321, 3, 69, 32, 0, 1320, 1322, 3, 61, 28, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1325, 7, 1, 0, 0, 1324, 1323, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 6, 29, 0, 0, 1329, 64, 1, 0, 0, 0, 1330, 1331, 7, 3, 0, 0, 1331, 66, 1, 0, 0, 0, 1332, 1333, 7, 4, 0, 0, 1333, 68, 1, 0, 0, 0, 1334, 1335, 7, 5, 0, 0, 1335, 70, 1, 0, 0, 0, 1336, 1337, 7, 6, 0, 0, 1337, 1338, 7, 7, 0, 0, 1338, 1339, 7, 7, 0, 0, 1339, 72, 1, 0, 0, 0, 1340, 1341, 7, 6, 0, 0, 1341, 1342, 7, 8, 0, 0, 1342, 1343, 7, 6, 0, 0, 1343, 1344, 7, 7, 0, 0, 1344, 1345, 7, 9, 0, 0, 1345, 1346, 7, 10, 0, 0, 1346, 1347, 7, 11, 0, 0, 1347, 74, 1, 0, 0, 0, 1348, 1349, 7, 6, 0, 0, 1349, 1350, 7, 8, 0, 0, 1350, 1351, 7, 6, 0, 0, 1351, 1352, 7, 7, 0, 0, 1352, 1353, 7, 9, 0, 0, 1353, 1354, 7, 12, 0, 0, 1354, 1355, 7, 11, 0, 0, 1355, 76, 1, 0, 0, 0, 1356, 1357, 7, 6, 0, 0, 1357, 1358, 7, 8, 0, 0, 1358, 1359, 7, 13, 0, 0, 1359, 78, 1, 0, 0, 0, 1360, 1361, 7, 6, 0, 0, 1361, 1362, 7, 8, 0, 0, 1362, 1363, 7, 9, 0, 0, 1363, 80, 1, 0, 0, 0, 1364, 1365, 7, 6, 0, 0, 1365, 1366, 7, 14, 0, 0, 1366, 1367, 7, 14, 0, 0, 1367, 1368, 7, 6, 0, 0, 1368, 1369, 7, 9, 0, 0, 1369, 82, 1, 0, 0, 0, 1370, 1371, 7, 6, 0, 0, 1371, 1372, 7, 10, 0, 0, 1372, 84, 1, 0, 0, 0, 1373, 1374, 7, 6, 0, 0, 1374, 1375, 7, 10, 0, 0, 1375, 1376, 7, 15, 0, 0, 1376, 86, 1, 0, 0, 0, 1377, 1378, 7, 6, 0, 0, 1378, 1379, 7, 10, 0, 0, 1379, 1380, 7, 9, 0, 0, 1380, 1381, 7, 16, 0, 0, 1381, 1382, 7, 16, 0, 0, 1382, 1383, 7, 11, 0, 0, 1383, 1384, 7, 17, 0, 0, 1384, 1385, 7, 14, 0, 0, 1385, 1386, 7, 18, 0, 0, 1386, 1387, 7, 15, 0, 0, 1387, 88, 1, 0, 0, 0, 1388, 1389, 7, 19, 0, 0, 1389, 1390, 7, 20, 0, 0, 1390, 1391, 7, 17, 0, 0, 1391, 1392, 7, 21, 0, 0, 1392, 90, 1, 0, 0, 0, 1393, 1394, 7, 15, 0, 0, 1394, 1395, 7, 6, 0, 0, 1395, 1396, 7, 10, 0, 0, 1396, 1397, 7, 11, 0, 0, 1397, 92, 1, 0, 0, 0, 1398, 1399, 7, 15, 0, 0, 1399, 1400, 7, 6, 0, 0, 1400, 1401, 7, 10, 0, 0, 1401, 1402, 7, 17, 0, 0, 1402, 94, 1, 0, 0, 0, 1403, 1404, 7, 15, 0, 0, 1404, 1405, 7, 21, 0, 0, 1405, 1406, 7, 11, 0, 0, 1406, 1407, 7, 15, 0, 0, 1407, 1408, 7, 22, 0, 0, 1408, 96, 1, 0, 0, 0, 1409, 1410, 7, 15, 0, 0, 1410, 1411, 7, 20, 0, 0, 1411, 1412, 7, 7, 0, 0, 1412, 1413, 7, 7, 0, 0, 1413, 1414, 7, 6, 0, 0, 1414, 1415, 7, 17, 0, 0, 1415, 1416, 7, 11, 0, 0, 1416, 98, 1, 0, 0, 0, 1417, 1418, 7, 15, 0, 0, 1418, 1419, 7, 20, 0, 0, 1419, 1420, 7, 7, 0, 0, 1420, 1421, 7, 23, 0, 0, 1421, 1422, 7, 16, 0, 0, 1422, 1423, 7, 8, 0, 0, 1423, 100, 1, 0, 0, 0, 1424, 1425, 7, 15, 0, 0, 1425, 1426, 7, 20, 0, 0, 1426, 1427, 7, 8, 0, 0, 1427, 1428, 7, 10, 0, 0, 1428, 1429, 7, 17, 0, 0, 1429, 1430, 7, 14, 0, 0, 1430, 1431, 7, 6, 0, 0, 1431, 1432, 7, 18, 0, 0, 1432, 1433, 7, 8, 0, 0, 1433, 1434, 7, 17, 0, 0, 1434, 102, 1, 0, 0, 0, 1435, 1436, 7, 15, 0, 0, 1436, 1437, 7, 14, 0, 0, 1437, 1438, 7, 11, 0, 0, 1438, 1439, 7, 6, 0, 0, 1439, 1440, 7, 17, 0, 0, 1440, 1441, 7, 11, 0, 0, 1441, 104, 1, 0, 0, 0, 1442, 1443, 7, 15, 0, 0, 1443, 1444, 7, 23, 0, 0, 1444, 1445, 7, 14, 0, 0, 1445, 1446, 7, 14, 0, 0, 1446, 1447, 7, 11, 0, 0, 1447, 1448, 7, 8, 0, 0, 1448, 1449, 7, 17, 0, 0, 1449, 1450, 5, 95, 0, 0, 1450, 1451, 7, 15, 0, 0, 1451, 1452, 7, 6, 0, 0, 1452, 1453, 7, 17, 0, 0, 1453, 1454, 7, 6, 0, 0, 1454, 1455, 7, 7, 0, 0, 1455, 1456, 7, 20, 0, 0, 1456, 1457, 7, 24, 0, 0, 1457, 106, 1, 0, 0, 0, 1458, 1459, 7, 15, 0, 0, 1459, 1460, 7, 23, 0, 0, 1460, 1461, 7, 14, 0, 0, 1461, 1462, 7, 14, 0, 0, 1462, 1463, 7, 11, 0, 0, 1463, 1464, 7, 8, 0, 0, 1464, 1465, 7, 17, 0, 0, 1465, 1466, 5, 95, 0, 0, 1466, 1467, 7, 13, 0, 0, 1467, 1468, 7, 6, 0, 0, 1468, 1469, 7, 17, 0, 0, 1469, 1470, 7, 11, 0, 0, 1470, 108, 1, 0, 0, 0, 1471, 1472, 7, 15, 0, 0, 1472, 1473, 7, 23, 0, 0, 1473, 1474, 7, 14, 0, 0, 1474, 1475, 7, 14, 0, 0, 1475, 1476, 7, 11, 0, 0, 1476, 1477, 7, 8, 0, 0, 1477, 1478, 7, 17, 0, 0, 1478, 1479, 5, 95, 0, 0, 1479, 1480, 7, 14, 0, 0, 1480, 1481, 7, 20, 0, 0, 1481, 1482, 7, 7, 0, 0, 1482, 1483, 7, 11, 0, 0, 1483, 110, 1, 0, 0, 0, 1484, 1485, 7, 15, 0, 0, 1485, 1486, 7, 23, 0, 0, 1486, 1487, 7, 14, 0, 0, 1487, 1488, 7, 14, 0, 0, 1488, 1489, 7, 11, 0, 0, 1489, 1490, 7, 8, 0, 0, 1490, 1491, 7, 17, 0, 0, 1491, 1492, 5, 95, 0, 0, 1492, 1493, 7, 17, 0, 0, 1493, 1494, 7, 18, 0, 0, 1494, 1495, 7, 16, 0, 0, 1495, 1496, 7, 11, 0, 0, 1496, 112, 1, 0, 0, 0, 1497, 1498, 7, 15, 0, 0, 1498, 1499, 7, 23, 0, 0, 1499, 1500, 7, 14, 0, 0, 1500, 1501, 7, 14, 0, 0, 1501, 1502, 7, 11, 0, 0, 1502, 1503, 7, 8, 0, 0, 1503, 1504, 7, 17, 0, 0, 1504, 1505, 5, 95, 0, 0, 1505, 1506, 7, 17, 0, 0, 1506, 1507, 7, 18, 0, 0, 1507, 1508, 7, 16, 0, 0, 1508, 1509, 7, 11, 0, 0, 1509, 1510, 7, 10, 0, 0, 1510, 1511, 7, 17, 0, 0, 1511, 1512, 7, 6, 0, 0, 1512, 1513, 7, 16, 0, 0, 1513, 1514, 7, 25, 0, 0, 1514, 114, 1, 0, 0, 0, 1515, 1516, 7, 15, 0, 0, 1516, 1517, 7, 23, 0, 0, 1517, 1518, 7, 14, 0, 0, 1518, 1519, 7, 14, 0, 0, 1519, 1520, 7, 11, 0, 0, 1520, 1521, 7, 8, 0, 0, 1521, 1522, 7, 17, 0, 0, 1522, 1523, 5, 95, 0, 0, 1523, 1524, 7, 23, 0, 0, 1524, 1525, 7, 10, 0, 0, 1525, 1526, 7, 11, 0, 0, 1526, 1527, 7, 14, 0, 0, 1527, 116, 1, 0, 0, 0, 1528, 1529, 7, 13, 0, 0, 1529, 1530, 7, 11, 0, 0, 1530, 1531, 7, 26, 0, 0, 1531, 1532, 7, 6, 0, 0, 1532, 1533, 7, 23, 0, 0, 1533, 1534, 7, 7, 0, 0, 1534, 1535, 7, 17, 0, 0, 1535, 118, 1, 0, 0, 0, 1536, 1537, 7, 13, 0, 0, 1537, 1538, 7, 11, 0, 0, 1538, 1539, 7, 26, 0, 0, 1539, 1540, 7, 11, 0, 0, 1540, 1541, 7, 14, 0, 0, 1541, 1542, 7, 14, 0, 0, 1542, 1543, 7, 6, 0, 0, 1543, 1544, 7, 19, 0, 0, 1544, 1545, 7, 7, 0, 0, 1545, 1546, 7, 11, 0, 0, 1546, 120, 1, 0, 0, 0, 1547, 1548, 7, 13, 0, 0, 1548, 1549, 7, 11, 0, 0, 1549, 1550, 7, 10, 0, 0, 1550, 1551, 7, 15, 0, 0, 1551, 122, 1, 0, 0, 0, 1552, 1553, 7, 13, 0, 0, 1553, 1554, 7, 18, 0, 0, 1554, 1555, 7, 10, 0, 0, 1555, 1556, 7, 17, 0, 0, 1556, 1557, 7, 18, 0, 0, 1557, 1558, 7, 8, 0, 0, 1558, 1559, 7, 15, 0, 0, 1559, 1560, 7, 17, 0, 0, 1560, 124, 1, 0, 0, 0, 1561, 1562, 7, 13, 0, 0, 1562, 1563, 7, 20, 0, 0, 1563, 126, 1, 0, 0, 0, 1564, 1565, 7, 11, 0, 0, 1565, 1566, 7, 7, 0, 0, 1566, 1567, 7, 10, 0, 0, 1567, 1568, 7, 11, 0, 0, 1568, 128, 1, 0, 0, 0, 1569, 1570, 7, 11, 0, 0, 1570, 1571, 7, 27, 0, 0, 1571, 1572, 7, 15, 0, 0, 1572, 1573, 7, 11, 0, 0, 1573, 1574, 7, 25, 0, 0, 1574, 1575, 7, 17, 0, 0, 1575, 130, 1, 0, 0, 0, 1576, 1577, 7, 26, 0, 0, 1577, 1578, 7, 6, 0, 0, 1578, 1579, 7, 7, 0, 0, 1579, 1580, 7, 10, 0, 0, 1580, 1581, 7, 11, 0, 0, 1581, 132, 1, 0, 0, 0, 1582, 1583, 7, 26, 0, 0, 1583, 1584, 7, 11, 0, 0, 1584, 1585, 7, 17, 0, 0, 1585, 1586, 7, 15, 0, 0, 1586, 1587, 7, 21, 0, 0, 1587, 134, 1, 0, 0, 0, 1588, 1589, 7, 26, 0, 0, 1589, 1590, 7, 20, 0, 0, 1590, 1591, 7, 14, 0, 0, 1591, 136, 1, 0, 0, 0, 1592, 1593, 7, 26, 0, 0, 1593, 1594, 7, 20, 0, 0, 1594, 1595, 7, 14, 0, 0, 1595, 1596, 7, 11, 0, 0, 1596, 1597, 7, 18, 0, 0, 1597, 1598, 7, 24, 0, 0, 1598, 1599, 7, 8, 0, 0, 1599, 138, 1, 0, 0, 0, 1600, 1601, 7, 26, 0, 0, 1601, 1602, 7, 14, 0, 0, 1602, 1603, 7, 20, 0, 0, 1603, 1604, 7, 16, 0, 0, 1604, 140, 1, 0, 0, 0, 1605, 1606, 7, 24, 0, 0, 1606, 1607, 7, 14, 0, 0, 1607, 1608, 7, 6, 0, 0, 1608, 1609, 7, 8, 0, 0, 1609, 1610, 7, 17, 0, 0, 1610, 142, 1, 0, 0, 0, 1611, 1612, 7, 24, 0, 0, 1612, 1613, 7, 14, 0, 0, 1613, 1614, 7, 20, 0, 0, 1614, 1615, 7, 23, 0, 0, 1615, 1616, 7, 25, 0, 0, 1616, 144, 1, 0, 0, 0, 1617, 1618, 7, 21, 0, 0, 1618, 1619, 7, 6, 0, 0, 1619, 1620, 7, 28, 0, 0, 1620, 1621, 7, 18, 0, 0, 1621, 1622, 7, 8, 0, 0, 1622, 1623, 7, 24, 0, 0, 1623, 146, 1, 0, 0, 0, 1624, 1625, 7, 18, 0, 0, 1625, 1626, 7, 8, 0, 0, 1626, 148, 1, 0, 0, 0, 1627, 1628, 7, 18, 0, 0, 1628, 1629, 7, 8, 0, 0, 1629, 1630, 7, 18, 0, 0, 1630, 1631, 7, 17, 0, 0, 1631, 1632, 7, 18, 0, 0, 1632, 1633, 7, 6, 0, 0, 1633, 1634, 7, 7, 0, 0, 1634, 1635, 7, 7, 0, 0, 1635, 1636, 7, 9, 0, 0, 1636, 150, 1, 0, 0, 0, 1637, 1638, 7, 18, 0, 0, 1638, 1639, 7, 8, 0, 0, 1639, 1640, 7, 17, 0, 0, 1640, 1641, 7, 11, 0, 0, 1641, 1642, 7, 14, 0, 0, 1642, 1643, 7, 10, 0, 0, 1643, 1644, 7, 11, 0, 0, 1644, 1645, 7, 15, 0, 0, 1645, 1646, 7, 17, 0, 0, 1646, 152, 1, 0, 0, 0, 1647, 1648, 7, 18, 0, 0, 1648, 1649, 7, 8, 0, 0, 1649, 1650, 7, 17, 0, 0, 1650, 1651, 7, 20, 0, 0, 1651, 154, 1, 0, 0, 0, 1652, 1653, 7, 7, 0, 0, 1653, 1654, 7, 6, 0, 0, 1654, 1655, 7, 17, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 1657, 7, 14, 0, 0, 1657, 1658, 7, 6, 0, 0, 1658, 1659, 7, 7, 0, 0, 1659, 156, 1, 0, 0, 0, 1660, 1661, 7, 7, 0, 0, 1661, 1662, 7, 11, 0, 0, 1662, 1663, 7, 6, 0, 0, 1663, 1664, 7, 13, 0, 0, 1664, 1665, 7, 18, 0, 0, 1665, 1666, 7, 8, 0, 0, 1666, 1667, 7, 24, 0, 0, 1667, 158, 1, 0, 0, 0, 1668, 1669, 7, 7, 0, 0, 1669, 1670, 7, 18, 0, 0, 1670, 1671, 7, 16, 0, 0, 1671, 1672, 7, 18, 0, 0, 1672, 1673, 7, 17, 0, 0, 1673, 160, 1, 0, 0, 0, 1674, 1675, 7, 7, 0, 0, 1675, 1676, 7, 20, 0, 0, 1676, 1677, 7, 15, 0, 0, 1677, 1678, 7, 6, 0, 0, 1678, 1679, 7, 7, 0, 0, 1679, 1680, 7, 17, 0, 0, 1680, 1681, 7, 18, 0, 0, 1681, 1682, 7, 16, 0, 0, 1682, 1683, 7, 11, 0, 0, 1683, 162, 1, 0, 0, 0, 1684, 1685, 7, 7, 0, 0, 1685, 1686, 7, 20, 0, 0, 1686, 1687, 7, 15, 0, 0, 1687, 1688, 7, 6, 0, 0, 1688, 1689, 7, 7, 0, 0, 1689, 1690, 7, 17, 0, 0, 1690, 1691, 7, 18, 0, 0, 1691, 1692, 7, 16, 0, 0, 1692, 1693, 7, 11, 0, 0, 1693, 1694, 7, 10, 0, 0, 1694, 1695, 7, 17, 0, 0, 1695, 1696, 7, 6, 0, 0, 1696, 1697, 7, 16, 0, 0, 1697, 1698, 7, 25, 0, 0, 1698, 164, 1, 0, 0, 0, 1699, 1700, 7, 8, 0, 0, 1700, 1701, 7, 20, 0, 0, 1701, 1702, 7, 17, 0, 0, 1702, 166, 1, 0, 0, 0, 1703, 1704, 7, 8, 0, 0, 1704, 1705, 7, 23, 0, 0, 1705, 1706, 7, 7, 0, 0, 1706, 1707, 7, 7, 0, 0, 1707, 168, 1, 0, 0, 0, 1708, 1709, 7, 20, 0, 0, 1709, 1710, 7, 26, 0, 0, 1710, 1711, 7, 26, 0, 0, 1711, 1712, 7, 10, 0, 0, 1712, 1713, 7, 11, 0, 0, 1713, 1714, 7, 17, 0, 0, 1714, 170, 1, 0, 0, 0, 1715, 1716, 7, 20, 0, 0, 1716, 1717, 7, 8, 0, 0, 1717, 172, 1, 0, 0, 0, 1718, 1719, 7, 20, 0, 0, 1719, 1720, 7, 8, 0, 0, 1720, 1721, 7, 7, 0, 0, 1721, 1722, 7, 9, 0, 0, 1722, 174, 1, 0, 0, 0, 1723, 1724, 7, 20, 0, 0, 1724, 1725, 7, 14, 0, 0, 1725, 176, 1, 0, 0, 0, 1726, 1727, 7, 20, 0, 0, 1727, 1728, 7, 14, 0, 0, 1728, 1729, 7, 13, 0, 0, 1729, 1730, 7, 11, 0, 0, 1730, 1731, 7, 14, 0, 0, 1731, 178, 1, 0, 0, 0, 1732, 1733, 7, 25, 0, 0, 1733, 1734, 7, 7, 0, 0, 1734, 1735, 7, 6, 0, 0, 1735, 1736, 7, 15, 0, 0, 1736, 1737, 7, 18, 0, 0, 1737, 1738, 7, 8, 0, 0, 1738, 1739, 7, 24, 0, 0, 1739, 180, 1, 0, 0, 0, 1740, 1741, 7, 25, 0, 0, 1741, 1742, 7, 14, 0, 0, 1742, 1743, 7, 18, 0, 0, 1743, 1744, 7, 16, 0, 0, 1744, 1745, 7, 6, 0, 0, 1745, 1746, 7, 14, 0, 0, 1746, 1747, 7, 9, 0, 0, 1747, 182, 1, 0, 0, 0, 1748, 1749, 7, 14, 0, 0, 1749, 1750, 7, 11, 0, 0, 1750, 1751, 7, 26, 0, 0, 1751, 1752, 7, 11, 0, 0, 1752, 1753, 7, 14, 0, 0, 1753, 1754, 7, 11, 0, 0, 1754, 1755, 7, 8, 0, 0, 1755, 1756, 7, 15, 0, 0, 1756, 1757, 7, 11, 0, 0, 1757, 1758, 7, 10, 0, 0, 1758, 184, 1, 0, 0, 0, 1759, 1760, 7, 14, 0, 0, 1760, 1761, 7, 11, 0, 0, 1761, 1762, 7, 17, 0, 0, 1762, 1763, 7, 23, 0, 0, 1763, 1764, 7, 14, 0, 0, 1764, 1765, 7, 8, 0, 0, 1765, 1766, 7, 18, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 1768, 7, 24, 0, 0, 1768, 186, 1, 0, 0, 0, 1769, 1770, 7, 10, 0, 0, 1770, 1771, 7, 11, 0, 0, 1771, 1772, 7, 7, 0, 0, 1772, 1773, 7, 11, 0, 0, 1773, 1774, 7, 15, 0, 0, 1774, 1775, 7, 17, 0, 0, 1775, 188, 1, 0, 0, 0, 1776, 1777, 7, 10, 0, 0, 1777, 1778, 7, 11, 0, 0, 1778, 1779, 7, 10, 0, 0, 1779, 1780, 7, 10, 0, 0, 1780, 1781, 7, 18, 0, 0, 1781, 1782, 7, 20, 0, 0, 1782, 1783, 7, 8, 0, 0, 1783, 1784, 5, 95, 0, 0, 1784, 1785, 7, 23, 0, 0, 1785, 1786, 7, 10, 0, 0, 1786, 1787, 7, 11, 0, 0, 1787, 1788, 7, 14, 0, 0, 1788, 190, 1, 0, 0, 0, 1789, 1790, 7, 10, 0, 0, 1790, 1791, 7, 20, 0, 0, 1791, 1792, 7, 16, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 192, 1, 0, 0, 0, 1794, 1795, 7, 10, 0, 0, 1795, 1796, 7, 9, 0, 0, 1796, 1797, 7, 16, 0, 0, 1797, 1798, 7, 16, 0, 0, 1798, 1799, 7, 11, 0, 0, 1799, 1800, 7, 17, 0, 0, 1800, 1801, 7, 14, 0, 0, 1801, 1802, 7, 18, 0, 0, 1802, 1803, 7, 15, 0, 0, 1803, 194, 1, 0, 0, 0, 1804, 1805, 7, 17, 0, 0, 1805, 1806, 7, 6, 0, 0, 1806, 1807, 7, 19, 0, 0, 1807, 1808, 7, 7, 0, 0, 1808, 1809, 7, 11, 0, 0, 1809, 196, 1, 0, 0, 0, 1810, 1811, 7, 17, 0, 0, 1811, 1812, 7, 21, 0, 0, 1812, 1813, 7, 11, 0, 0, 1813, 1814, 7, 8, 0, 0, 1814, 198, 1, 0, 0, 0, 1815, 1816, 7, 17, 0, 0, 1816, 1817, 7, 20, 0, 0, 1817, 200, 1, 0, 0, 0, 1818, 1819, 7, 17, 0, 0, 1819, 1820, 7, 14, 0, 0, 1820, 1821, 7, 6, 0, 0, 1821, 1822, 7, 18, 0, 0, 1822, 1823, 7, 7, 0, 0, 1823, 1824, 7, 18, 0, 0, 1824, 1825, 7, 8, 0, 0, 1825, 1826, 7, 24, 0, 0, 1826, 202, 1, 0, 0, 0, 1827, 1828, 7, 17, 0, 0, 1828, 1829, 7, 14, 0, 0, 1829, 1830, 7, 23, 0, 0, 1830, 1831, 7, 11, 0, 0, 1831, 204, 1, 0, 0, 0, 1832, 1833, 7, 23, 0, 0, 1833, 1834, 7, 8, 0, 0, 1834, 1835, 7, 18, 0, 0, 1835, 1836, 7, 20, 0, 0, 1836, 1837, 7, 8, 0, 0, 1837, 206, 1, 0, 0, 0, 1838, 1839, 7, 23, 0, 0, 1839, 1840, 7, 8, 0, 0, 1840, 1841, 7, 18, 0, 0, 1841, 1842, 7, 29, 0, 0, 1842, 1843, 7, 23, 0, 0, 1843, 1844, 7, 11, 0, 0, 1844, 208, 1, 0, 0, 0, 1845, 1846, 7, 23, 0, 0, 1846, 1847, 7, 10, 0, 0, 1847, 1848, 7, 11, 0, 0, 1848, 1849, 7, 14, 0, 0, 1849, 210, 1, 0, 0, 0, 1850, 1851, 7, 23, 0, 0, 1851, 1852, 7, 10, 0, 0, 1852, 1853, 7, 18, 0, 0, 1853, 1854, 7, 8, 0, 0, 1854, 1855, 7, 24, 0, 0, 1855, 212, 1, 0, 0, 0, 1856, 1857, 7, 28, 0, 0, 1857, 1858, 7, 6, 0, 0, 1858, 1859, 7, 14, 0, 0, 1859, 1860, 7, 18, 0, 0, 1860, 1861, 7, 6, 0, 0, 1861, 1862, 7, 13, 0, 0, 1862, 1863, 7, 18, 0, 0, 1863, 1864, 7, 15, 0, 0, 1864, 214, 1, 0, 0, 0, 1865, 1866, 7, 30, 0, 0, 1866, 1867, 7, 21, 0, 0, 1867, 1868, 7, 11, 0, 0, 1868, 1869, 7, 8, 0, 0, 1869, 216, 1, 0, 0, 0, 1870, 1871, 7, 30, 0, 0, 1871, 1872, 7, 21, 0, 0, 1872, 1873, 7, 11, 0, 0, 1873, 1874, 7, 14, 0, 0, 1874, 1875, 7, 11, 0, 0, 1875, 218, 1, 0, 0, 0, 1876, 1877, 7, 30, 0, 0, 1877, 1878, 7, 18, 0, 0, 1878, 1879, 7, 8, 0, 0, 1879, 1880, 7, 13, 0, 0, 1880, 1881, 7, 20, 0, 0, 1881, 1882, 7, 30, 0, 0, 1882, 220, 1, 0, 0, 0, 1883, 1884, 7, 30, 0, 0, 1884, 1885, 7, 18, 0, 0, 1885, 1886, 7, 17, 0, 0, 1886, 1887, 7, 21, 0, 0, 1887, 222, 1, 0, 0, 0, 1888, 1889, 7, 6, 0, 0, 1889, 1890, 7, 23, 0, 0, 1890, 1891, 7, 17, 0, 0, 1891, 1892, 7, 21, 0, 0, 1892, 1893, 7, 20, 0, 0, 1893, 1894, 7, 14, 0, 0, 1894, 1895, 7, 18, 0, 0, 1895, 1896, 7, 12, 0, 0, 1896, 1897, 7, 6, 0, 0, 1897, 1898, 7, 17, 0, 0, 1898, 1899, 7, 18, 0, 0, 1899, 1900, 7, 20, 0, 0, 1900, 1901, 7, 8, 0, 0, 1901, 224, 1, 0, 0, 0, 1902, 1903, 7, 19, 0, 0, 1903, 1904, 7, 18, 0, 0, 1904, 1905, 7, 8, 0, 0, 1905, 1906, 7, 6, 0, 0, 1906, 1907, 7, 14, 0, 0, 1907, 1908, 7, 9, 0, 0, 1908, 226, 1, 0, 0, 0, 1909, 1910, 7, 15, 0, 0, 1910, 1911, 7, 20, 0, 0, 1911, 1912, 7, 7, 0, 0, 1912, 1913, 7, 7, 0, 0, 1913, 1914, 7, 6, 0, 0, 1914, 1915, 7, 17, 0, 0, 1915, 1916, 7, 18, 0, 0, 1916, 1917, 7, 20, 0, 0, 1917, 1918, 7, 8, 0, 0, 1918, 228, 1, 0, 0, 0, 1919, 1920, 7, 15, 0, 0, 1920, 1921, 7, 20, 0, 0, 1921, 1922, 7, 8, 0, 0, 1922, 1923, 7, 15, 0, 0, 1923, 1924, 7, 23, 0, 0, 1924, 1925, 7, 14, 0, 0, 1925, 1926, 7, 14, 0, 0, 1926, 1927, 7, 11, 0, 0, 1927, 1928, 7, 8, 0, 0, 1928, 1929, 7, 17, 0, 0, 1929, 1930, 7, 7, 0, 0, 1930, 1931, 7, 9, 0, 0, 1931, 230, 1, 0, 0, 0, 1932, 1933, 7, 15, 0, 0, 1933, 1934, 7, 14, 0, 0, 1934, 1935, 7, 20, 0, 0, 1935, 1936, 7, 10, 0, 0, 1936, 1937, 7, 10, 0, 0, 1937, 232, 1, 0, 0, 0, 1938, 1939, 7, 15, 0, 0, 1939, 1940, 7, 23, 0, 0, 1940, 1941, 7, 14, 0, 0, 1941, 1942, 7, 14, 0, 0, 1942, 1943, 7, 11, 0, 0, 1943, 1944, 7, 8, 0, 0, 1944, 1945, 7, 17, 0, 0, 1945, 1946, 5, 95, 0, 0, 1946, 1947, 7, 10, 0, 0, 1947, 1948, 7, 15, 0, 0, 1948, 1949, 7, 21, 0, 0, 1949, 1950, 7, 11, 0, 0, 1950, 1951, 7, 16, 0, 0, 1951, 1952, 7, 6, 0, 0, 1952, 234, 1, 0, 0, 0, 1953, 1954, 7, 26, 0, 0, 1954, 1955, 7, 14, 0, 0, 1955, 1956, 7, 11, 0, 0, 1956, 1957, 7, 11, 0, 0, 1957, 1958, 7, 12, 0, 0, 1958, 1959, 7, 11, 0, 0, 1959, 236, 1, 0, 0, 0, 1960, 1961, 7, 26, 0, 0, 1961, 1962, 7, 23, 0, 0, 1962, 1963, 7, 7, 0, 0, 1963, 1964, 7, 7, 0, 0, 1964, 238, 1, 0, 0, 0, 1965, 1966, 7, 18, 0, 0, 1966, 1967, 7, 7, 0, 0, 1967, 1968, 7, 18, 0, 0, 1968, 1969, 7, 22, 0, 0, 1969, 1970, 7, 11, 0, 0, 1970, 240, 1, 0, 0, 0, 1971, 1972, 7, 18, 0, 0, 1972, 1973, 7, 8, 0, 0, 1973, 1974, 7, 8, 0, 0, 1974, 1975, 7, 11, 0, 0, 1975, 1976, 7, 14, 0, 0, 1976, 242, 1, 0, 0, 0, 1977, 1978, 7, 18, 0, 0, 1978, 1979, 7, 10, 0, 0, 1979, 244, 1, 0, 0, 0, 1980, 1981, 7, 18, 0, 0, 1981, 1982, 7, 10, 0, 0, 1982, 1983, 7, 8, 0, 0, 1983, 1984, 7, 23, 0, 0, 1984, 1985, 7, 7, 0, 0, 1985, 1986, 7, 7, 0, 0, 1986, 246, 1, 0, 0, 0, 1987, 1988, 7, 31, 0, 0, 1988, 1989, 7, 20, 0, 0, 1989, 1990, 7, 18, 0, 0, 1990, 1991, 7, 8, 0, 0, 1991, 248, 1, 0, 0, 0, 1992, 1993, 7, 7, 0, 0, 1993, 1994, 7, 11, 0, 0, 1994, 1995, 7, 26, 0, 0, 1995, 1996, 7, 17, 0, 0, 1996, 250, 1, 0, 0, 0, 1997, 1998, 7, 7, 0, 0, 1998, 1999, 7, 18, 0, 0, 1999, 2000, 7, 22, 0, 0, 2000, 2001, 7, 11, 0, 0, 2001, 252, 1, 0, 0, 0, 2002, 2003, 7, 8, 0, 0, 2003, 2004, 7, 6, 0, 0, 2004, 2005, 7, 17, 0, 0, 2005, 2006, 7, 23, 0, 0, 2006, 2007, 7, 14, 0, 0, 2007, 2008, 7, 6, 0, 0, 2008, 2009, 7, 7, 0, 0, 2009, 254, 1, 0, 0, 0, 2010, 2011, 7, 8, 0, 0, 2011, 2012, 7, 20, 0, 0, 2012, 2013, 7, 17, 0, 0, 2013, 2014, 7, 8, 0, 0, 2014, 2015, 7, 23, 0, 0, 2015, 2016, 7, 7, 0, 0, 2016, 2017, 7, 7, 0, 0, 2017, 256, 1, 0, 0, 0, 2018, 2019, 7, 20, 0, 0, 2019, 2020, 7, 23, 0, 0, 2020, 2021, 7, 17, 0, 0, 2021, 2022, 7, 11, 0, 0, 2022, 2023, 7, 14, 0, 0, 2023, 258, 1, 0, 0, 0, 2024, 2025, 7, 20, 0, 0, 2025, 2026, 7, 28, 0, 0, 2026, 2027, 7, 11, 0, 0, 2027, 2028, 7, 14, 0, 0, 2028, 260, 1, 0, 0, 0, 2029, 2030, 7, 20, 0, 0, 2030, 2031, 7, 28, 0, 0, 2031, 2032, 7, 11, 0, 0, 2032, 2033, 7, 14, 0, 0, 2033, 2034, 7, 7, 0, 0, 2034, 2035, 7, 6, 0, 0, 2035, 2036, 7, 25, 0, 0, 2036, 2037, 7, 10, 0, 0, 2037, 262, 1, 0, 0, 0, 2038, 2039, 7, 14, 0, 0, 2039, 2040, 7, 18, 0, 0, 2040, 2041, 7, 24, 0, 0, 2041, 2042, 7, 21, 0, 0, 2042, 2043, 7, 17, 0, 0, 2043, 264, 1, 0, 0, 0, 2044, 2045, 7, 10, 0, 0, 2045, 2046, 7, 18, 0, 0, 2046, 2047, 7, 16, 0, 0, 2047, 2048, 7, 18, 0, 0, 2048, 2049, 7, 7, 0, 0, 2049, 2050, 7, 6, 0, 0, 2050, 2051, 7, 14, 0, 0, 2051, 266, 1, 0, 0, 0, 2052, 2053, 7, 28, 0, 0, 2053, 2054, 7, 11, 0, 0, 2054, 2055, 7, 14, 0, 0, 2055, 2056, 7, 19, 0, 0, 2056, 2057, 7, 20, 0, 0, 2057, 2058, 7, 10, 0, 0, 2058, 2059, 7, 11, 0, 0, 2059, 268, 1, 0, 0, 0, 2060, 2061, 7, 6, 0, 0, 2061, 2062, 7, 19, 0, 0, 2062, 2063, 7, 20, 0, 0, 2063, 2064, 7, 14, 0, 0, 2064, 2065, 7, 17, 0, 0, 2065, 270, 1, 0, 0, 0, 2066, 2067, 7, 6, 0, 0, 2067, 2068, 7, 19, 0, 0, 2068, 2069, 7, 10, 0, 0, 2069, 2070, 7, 20, 0, 0, 2070, 2071, 7, 7, 0, 0, 2071, 2072, 7, 23, 0, 0, 2072, 2073, 7, 17, 0, 0, 2073, 2074, 7, 11, 0, 0, 2074, 272, 1, 0, 0, 0, 2075, 2076, 7, 6, 0, 0, 2076, 2077, 7, 15, 0, 0, 2077, 2078, 7, 15, 0, 0, 2078, 2079, 7, 11, 0, 0, 2079, 2080, 7, 10, 0, 0, 2080, 2081, 7, 10, 0, 0, 2081, 274, 1, 0, 0, 0, 2082, 2083, 7, 6, 0, 0, 2083, 2084, 7, 15, 0, 0, 2084, 2085, 7, 17, 0, 0, 2085, 2086, 7, 18, 0, 0, 2086, 2087, 7, 20, 0, 0, 2087, 2088, 7, 8, 0, 0, 2088, 276, 1, 0, 0, 0, 2089, 2090, 7, 6, 0, 0, 2090, 2091, 7, 13, 0, 0, 2091, 2092, 7, 13, 0, 0, 2092, 278, 1, 0, 0, 0, 2093, 2094, 7, 6, 0, 0, 2094, 2095, 7, 13, 0, 0, 2095, 2096, 7, 16, 0, 0, 2096, 2097, 7, 18, 0, 0, 2097, 2098, 7, 8, 0, 0, 2098, 280, 1, 0, 0, 0, 2099, 2100, 7, 6, 0, 0, 2100, 2101, 7, 26, 0, 0, 2101, 2102, 7, 17, 0, 0, 2102, 2103, 7, 11, 0, 0, 2103, 2104, 7, 14, 0, 0, 2104, 282, 1, 0, 0, 0, 2105, 2106, 7, 6, 0, 0, 2106, 2107, 7, 24, 0, 0, 2107, 2108, 7, 24, 0, 0, 2108, 2109, 7, 14, 0, 0, 2109, 2110, 7, 11, 0, 0, 2110, 2111, 7, 24, 0, 0, 2111, 2112, 7, 6, 0, 0, 2112, 2113, 7, 17, 0, 0, 2113, 2114, 7, 11, 0, 0, 2114, 284, 1, 0, 0, 0, 2115, 2116, 7, 6, 0, 0, 2116, 2117, 7, 7, 0, 0, 2117, 2118, 7, 10, 0, 0, 2118, 2119, 7, 20, 0, 0, 2119, 286, 1, 0, 0, 0, 2120, 2121, 7, 6, 0, 0, 2121, 2122, 7, 7, 0, 0, 2122, 2123, 7, 17, 0, 0, 2123, 2124, 7, 11, 0, 0, 2124, 2125, 7, 14, 0, 0, 2125, 288, 1, 0, 0, 0, 2126, 2127, 7, 6, 0, 0, 2127, 2128, 7, 7, 0, 0, 2128, 2129, 7, 30, 0, 0, 2129, 2130, 7, 6, 0, 0, 2130, 2131, 7, 9, 0, 0, 2131, 2132, 7, 10, 0, 0, 2132, 290, 1, 0, 0, 0, 2133, 2134, 7, 6, 0, 0, 2134, 2135, 7, 10, 0, 0, 2135, 2136, 7, 10, 0, 0, 2136, 2137, 7, 11, 0, 0, 2137, 2138, 7, 14, 0, 0, 2138, 2139, 7, 17, 0, 0, 2139, 2140, 7, 18, 0, 0, 2140, 2141, 7, 20, 0, 0, 2141, 2142, 7, 8, 0, 0, 2142, 292, 1, 0, 0, 0, 2143, 2144, 7, 6, 0, 0, 2144, 2145, 7, 10, 0, 0, 2145, 2146, 7, 10, 0, 0, 2146, 2147, 7, 18, 0, 0, 2147, 2148, 7, 24, 0, 0, 2148, 2149, 7, 8, 0, 0, 2149, 2150, 7, 16, 0, 0, 2150, 2151, 7, 11, 0, 0, 2151, 2152, 7, 8, 0, 0, 2152, 2153, 7, 17, 0, 0, 2153, 294, 1, 0, 0, 0, 2154, 2155, 7, 6, 0, 0, 2155, 2156, 7, 17, 0, 0, 2156, 296, 1, 0, 0, 0, 2157, 2158, 7, 6, 0, 0, 2158, 2159, 7, 17, 0, 0, 2159, 2160, 7, 17, 0, 0, 2160, 2161, 7, 14, 0, 0, 2161, 2162, 7, 18, 0, 0, 2162, 2163, 7, 19, 0, 0, 2163, 2164, 7, 23, 0, 0, 2164, 2165, 7, 17, 0, 0, 2165, 2166, 7, 11, 0, 0, 2166, 298, 1, 0, 0, 0, 2167, 2168, 7, 19, 0, 0, 2168, 2169, 7, 6, 0, 0, 2169, 2170, 7, 15, 0, 0, 2170, 2171, 7, 22, 0, 0, 2171, 2172, 7, 30, 0, 0, 2172, 2173, 7, 6, 0, 0, 2173, 2174, 7, 14, 0, 0, 2174, 2175, 7, 13, 0, 0, 2175, 300, 1, 0, 0, 0, 2176, 2177, 7, 19, 0, 0, 2177, 2178, 7, 11, 0, 0, 2178, 2179, 7, 26, 0, 0, 2179, 2180, 7, 20, 0, 0, 2180, 2181, 7, 14, 0, 0, 2181, 2182, 7, 11, 0, 0, 2182, 302, 1, 0, 0, 0, 2183, 2184, 7, 19, 0, 0, 2184, 2185, 7, 11, 0, 0, 2185, 2186, 7, 24, 0, 0, 2186, 2187, 7, 18, 0, 0, 2187, 2188, 7, 8, 0, 0, 2188, 304, 1, 0, 0, 0, 2189, 2190, 7, 19, 0, 0, 2190, 2191, 7, 9, 0, 0, 2191, 306, 1, 0, 0, 0, 2192, 2193, 7, 15, 0, 0, 2193, 2194, 7, 6, 0, 0, 2194, 2195, 7, 15, 0, 0, 2195, 2196, 7, 21, 0, 0, 2196, 2197, 7, 11, 0, 0, 2197, 308, 1, 0, 0, 0, 2198, 2199, 7, 15, 0, 0, 2199, 2200, 7, 6, 0, 0, 2200, 2201, 7, 7, 0, 0, 2201, 2202, 7, 7, 0, 0, 2202, 2203, 7, 11, 0, 0, 2203, 2204, 7, 13, 0, 0, 2204, 310, 1, 0, 0, 0, 2205, 2206, 7, 15, 0, 0, 2206, 2207, 7, 6, 0, 0, 2207, 2208, 7, 10, 0, 0, 2208, 2209, 7, 15, 0, 0, 2209, 2210, 7, 6, 0, 0, 2210, 2211, 7, 13, 0, 0, 2211, 2212, 7, 11, 0, 0, 2212, 312, 1, 0, 0, 0, 2213, 2214, 7, 15, 0, 0, 2214, 2215, 7, 6, 0, 0, 2215, 2216, 7, 10, 0, 0, 2216, 2217, 7, 15, 0, 0, 2217, 2218, 7, 6, 0, 0, 2218, 2219, 7, 13, 0, 0, 2219, 2220, 7, 11, 0, 0, 2220, 2221, 7, 13, 0, 0, 2221, 314, 1, 0, 0, 0, 2222, 2223, 7, 15, 0, 0, 2223, 2224, 7, 6, 0, 0, 2224, 2225, 7, 17, 0, 0, 2225, 2226, 7, 6, 0, 0, 2226, 2227, 7, 7, 0, 0, 2227, 2228, 7, 20, 0, 0, 2228, 2229, 7, 24, 0, 0, 2229, 316, 1, 0, 0, 0, 2230, 2231, 7, 15, 0, 0, 2231, 2232, 7, 21, 0, 0, 2232, 2233, 7, 6, 0, 0, 2233, 2234, 7, 18, 0, 0, 2234, 2235, 7, 8, 0, 0, 2235, 318, 1, 0, 0, 0, 2236, 2237, 7, 15, 0, 0, 2237, 2238, 7, 21, 0, 0, 2238, 2239, 7, 6, 0, 0, 2239, 2240, 7, 14, 0, 0, 2240, 2241, 7, 6, 0, 0, 2241, 2242, 7, 15, 0, 0, 2242, 2243, 7, 17, 0, 0, 2243, 2244, 7, 11, 0, 0, 2244, 2245, 7, 14, 0, 0, 2245, 2246, 7, 18, 0, 0, 2246, 2247, 7, 10, 0, 0, 2247, 2248, 7, 17, 0, 0, 2248, 2249, 7, 18, 0, 0, 2249, 2250, 7, 15, 0, 0, 2250, 2251, 7, 10, 0, 0, 2251, 320, 1, 0, 0, 0, 2252, 2253, 7, 15, 0, 0, 2253, 2254, 7, 21, 0, 0, 2254, 2255, 7, 11, 0, 0, 2255, 2256, 7, 15, 0, 0, 2256, 2257, 7, 22, 0, 0, 2257, 2258, 7, 25, 0, 0, 2258, 2259, 7, 20, 0, 0, 2259, 2260, 7, 18, 0, 0, 2260, 2261, 7, 8, 0, 0, 2261, 2262, 7, 17, 0, 0, 2262, 322, 1, 0, 0, 0, 2263, 2264, 7, 15, 0, 0, 2264, 2265, 7, 7, 0, 0, 2265, 2266, 7, 6, 0, 0, 2266, 2267, 7, 10, 0, 0, 2267, 2268, 7, 10, 0, 0, 2268, 324, 1, 0, 0, 0, 2269, 2270, 7, 15, 0, 0, 2270, 2271, 7, 7, 0, 0, 2271, 2272, 7, 20, 0, 0, 2272, 2273, 7, 10, 0, 0, 2273, 2274, 7, 11, 0, 0, 2274, 326, 1, 0, 0, 0, 2275, 2276, 7, 15, 0, 0, 2276, 2277, 7, 7, 0, 0, 2277, 2278, 7, 23, 0, 0, 2278, 2279, 7, 10, 0, 0, 2279, 2280, 7, 17, 0, 0, 2280, 2281, 7, 11, 0, 0, 2281, 2282, 7, 14, 0, 0, 2282, 328, 1, 0, 0, 0, 2283, 2284, 7, 15, 0, 0, 2284, 2285, 7, 20, 0, 0, 2285, 2286, 7, 16, 0, 0, 2286, 2287, 7, 16, 0, 0, 2287, 2288, 7, 11, 0, 0, 2288, 2289, 7, 8, 0, 0, 2289, 2290, 7, 17, 0, 0, 2290, 330, 1, 0, 0, 0, 2291, 2292, 7, 15, 0, 0, 2292, 2293, 7, 20, 0, 0, 2293, 2294, 7, 16, 0, 0, 2294, 2295, 7, 16, 0, 0, 2295, 2296, 7, 11, 0, 0, 2296, 2297, 7, 8, 0, 0, 2297, 2298, 7, 17, 0, 0, 2298, 2299, 7, 10, 0, 0, 2299, 332, 1, 0, 0, 0, 2300, 2301, 7, 15, 0, 0, 2301, 2302, 7, 20, 0, 0, 2302, 2303, 7, 16, 0, 0, 2303, 2304, 7, 16, 0, 0, 2304, 2305, 7, 18, 0, 0, 2305, 2306, 7, 17, 0, 0, 2306, 334, 1, 0, 0, 0, 2307, 2308, 7, 15, 0, 0, 2308, 2309, 7, 20, 0, 0, 2309, 2310, 7, 16, 0, 0, 2310, 2311, 7, 16, 0, 0, 2311, 2312, 7, 18, 0, 0, 2312, 2313, 7, 17, 0, 0, 2313, 2314, 7, 17, 0, 0, 2314, 2315, 7, 11, 0, 0, 2315, 2316, 7, 13, 0, 0, 2316, 336, 1, 0, 0, 0, 2317, 2318, 7, 15, 0, 0, 2318, 2319, 7, 20, 0, 0, 2319, 2320, 7, 8, 0, 0, 2320, 2321, 7, 26, 0, 0, 2321, 2322, 7, 18, 0, 0, 2322, 2323, 7, 24, 0, 0, 2323, 2324, 7, 23, 0, 0, 2324, 2325, 7, 14, 0, 0, 2325, 2326, 7, 6, 0, 0, 2326, 2327, 7, 17, 0, 0, 2327, 2328, 7, 18, 0, 0, 2328, 2329, 7, 20, 0, 0, 2329, 2330, 7, 8, 0, 0, 2330, 338, 1, 0, 0, 0, 2331, 2332, 7, 15, 0, 0, 2332, 2333, 7, 20, 0, 0, 2333, 2334, 7, 8, 0, 0, 2334, 2335, 7, 8, 0, 0, 2335, 2336, 7, 11, 0, 0, 2336, 2337, 7, 15, 0, 0, 2337, 2338, 7, 17, 0, 0, 2338, 2339, 7, 18, 0, 0, 2339, 2340, 7, 20, 0, 0, 2340, 2341, 7, 8, 0, 0, 2341, 340, 1, 0, 0, 0, 2342, 2343, 7, 15, 0, 0, 2343, 2344, 7, 20, 0, 0, 2344, 2345, 7, 8, 0, 0, 2345, 2346, 7, 10, 0, 0, 2346, 2347, 7, 17, 0, 0, 2347, 2348, 7, 14, 0, 0, 2348, 2349, 7, 6, 0, 0, 2349, 2350, 7, 18, 0, 0, 2350, 2351, 7, 8, 0, 0, 2351, 2352, 7, 17, 0, 0, 2352, 2353, 7, 10, 0, 0, 2353, 342, 1, 0, 0, 0, 2354, 2355, 7, 15, 0, 0, 2355, 2356, 7, 20, 0, 0, 2356, 2357, 7, 8, 0, 0, 2357, 2358, 7, 17, 0, 0, 2358, 2359, 7, 11, 0, 0, 2359, 2360, 7, 8, 0, 0, 2360, 2361, 7, 17, 0, 0, 2361, 344, 1, 0, 0, 0, 2362, 2363, 7, 15, 0, 0, 2363, 2364, 7, 20, 0, 0, 2364, 2365, 7, 8, 0, 0, 2365, 2366, 7, 17, 0, 0, 2366, 2367, 7, 18, 0, 0, 2367, 2368, 7, 8, 0, 0, 2368, 2369, 7, 23, 0, 0, 2369, 2370, 7, 11, 0, 0, 2370, 346, 1, 0, 0, 0, 2371, 2372, 7, 15, 0, 0, 2372, 2373, 7, 20, 0, 0, 2373, 2374, 7, 8, 0, 0, 2374, 2375, 7, 28, 0, 0, 2375, 2376, 7, 11, 0, 0, 2376, 2377, 7, 14, 0, 0, 2377, 2378, 7, 10, 0, 0, 2378, 2379, 7, 18, 0, 0, 2379, 2380, 7, 20, 0, 0, 2380, 2381, 7, 8, 0, 0, 2381, 348, 1, 0, 0, 0, 2382, 2383, 7, 15, 0, 0, 2383, 2384, 7, 20, 0, 0, 2384, 2385, 7, 25, 0, 0, 2385, 2386, 7, 9, 0, 0, 2386, 350, 1, 0, 0, 0, 2387, 2388, 7, 15, 0, 0, 2388, 2389, 7, 20, 0, 0, 2389, 2390, 7, 10, 0, 0, 2390, 2391, 7, 17, 0, 0, 2391, 352, 1, 0, 0, 0, 2392, 2393, 7, 15, 0, 0, 2393, 2394, 7, 10, 0, 0, 2394, 2395, 7, 28, 0, 0, 2395, 354, 1, 0, 0, 0, 2396, 2397, 7, 15, 0, 0, 2397, 2398, 7, 23, 0, 0, 2398, 2399, 7, 14, 0, 0, 2399, 2400, 7, 10, 0, 0, 2400, 2401, 7, 20, 0, 0, 2401, 2402, 7, 14, 0, 0, 2402, 356, 1, 0, 0, 0, 2403, 2404, 7, 15, 0, 0, 2404, 2405, 7, 9, 0, 0, 2405, 2406, 7, 15, 0, 0, 2406, 2407, 7, 7, 0, 0, 2407, 2408, 7, 11, 0, 0, 2408, 358, 1, 0, 0, 0, 2409, 2410, 7, 13, 0, 0, 2410, 2411, 7, 6, 0, 0, 2411, 2412, 7, 17, 0, 0, 2412, 2413, 7, 6, 0, 0, 2413, 360, 1, 0, 0, 0, 2414, 2415, 7, 13, 0, 0, 2415, 2416, 7, 6, 0, 0, 2416, 2417, 7, 17, 0, 0, 2417, 2418, 7, 6, 0, 0, 2418, 2419, 7, 19, 0, 0, 2419, 2420, 7, 6, 0, 0, 2420, 2421, 7, 10, 0, 0, 2421, 2422, 7, 11, 0, 0, 2422, 362, 1, 0, 0, 0, 2423, 2424, 7, 13, 0, 0, 2424, 2425, 7, 6, 0, 0, 2425, 2426, 7, 9, 0, 0, 2426, 364, 1, 0, 0, 0, 2427, 2428, 7, 13, 0, 0, 2428, 2429, 7, 11, 0, 0, 2429, 2430, 7, 6, 0, 0, 2430, 2431, 7, 7, 0, 0, 2431, 2432, 7, 7, 0, 0, 2432, 2433, 7, 20, 0, 0, 2433, 2434, 7, 15, 0, 0, 2434, 2435, 7, 6, 0, 0, 2435, 2436, 7, 17, 0, 0, 2436, 2437, 7, 11, 0, 0, 2437, 366, 1, 0, 0, 0, 2438, 2439, 7, 13, 0, 0, 2439, 2440, 7, 11, 0, 0, 2440, 2441, 7, 15, 0, 0, 2441, 2442, 7, 7, 0, 0, 2442, 2443, 7, 6, 0, 0, 2443, 2444, 7, 14, 0, 0, 2444, 2445, 7, 11, 0, 0, 2445, 368, 1, 0, 0, 0, 2446, 2447, 7, 13, 0, 0, 2447, 2448, 7, 11, 0, 0, 2448, 2449, 7, 26, 0, 0, 2449, 2450, 7, 6, 0, 0, 2450, 2451, 7, 23, 0, 0, 2451, 2452, 7, 7, 0, 0, 2452, 2453, 7, 17, 0, 0, 2453, 2454, 7, 10, 0, 0, 2454, 370, 1, 0, 0, 0, 2455, 2456, 7, 13, 0, 0, 2456, 2457, 7, 11, 0, 0, 2457, 2458, 7, 26, 0, 0, 2458, 2459, 7, 11, 0, 0, 2459, 2460, 7, 14, 0, 0, 2460, 2461, 7, 14, 0, 0, 2461, 2462, 7, 11, 0, 0, 2462, 2463, 7, 13, 0, 0, 2463, 372, 1, 0, 0, 0, 2464, 2465, 7, 13, 0, 0, 2465, 2466, 7, 11, 0, 0, 2466, 2467, 7, 26, 0, 0, 2467, 2468, 7, 18, 0, 0, 2468, 2469, 7, 8, 0, 0, 2469, 2470, 7, 11, 0, 0, 2470, 2471, 7, 14, 0, 0, 2471, 374, 1, 0, 0, 0, 2472, 2473, 7, 13, 0, 0, 2473, 2474, 7, 11, 0, 0, 2474, 2475, 7, 7, 0, 0, 2475, 2476, 7, 11, 0, 0, 2476, 2477, 7, 17, 0, 0, 2477, 2478, 7, 11, 0, 0, 2478, 376, 1, 0, 0, 0, 2479, 2480, 7, 13, 0, 0, 2480, 2481, 7, 11, 0, 0, 2481, 2482, 7, 7, 0, 0, 2482, 2483, 7, 18, 0, 0, 2483, 2484, 7, 16, 0, 0, 2484, 2485, 7, 18, 0, 0, 2485, 2486, 7, 17, 0, 0, 2486, 2487, 7, 11, 0, 0, 2487, 2488, 7, 14, 0, 0, 2488, 378, 1, 0, 0, 0, 2489, 2490, 7, 13, 0, 0, 2490, 2491, 7, 11, 0, 0, 2491, 2492, 7, 7, 0, 0, 2492, 2493, 7, 18, 0, 0, 2493, 2494, 7, 16, 0, 0, 2494, 2495, 7, 18, 0, 0, 2495, 2496, 7, 17, 0, 0, 2496, 2497, 7, 11, 0, 0, 2497, 2498, 7, 14, 0, 0, 2498, 2499, 7, 10, 0, 0, 2499, 380, 1, 0, 0, 0, 2500, 2501, 7, 13, 0, 0, 2501, 2502, 7, 18, 0, 0, 2502, 2503, 7, 15, 0, 0, 2503, 2504, 7, 17, 0, 0, 2504, 2505, 7, 18, 0, 0, 2505, 2506, 7, 20, 0, 0, 2506, 2507, 7, 8, 0, 0, 2507, 2508, 7, 6, 0, 0, 2508, 2509, 7, 14, 0, 0, 2509, 2510, 7, 9, 0, 0, 2510, 382, 1, 0, 0, 0, 2511, 2512, 7, 13, 0, 0, 2512, 2513, 7, 18, 0, 0, 2513, 2514, 7, 10, 0, 0, 2514, 2515, 7, 6, 0, 0, 2515, 2516, 7, 19, 0, 0, 2516, 2517, 7, 7, 0, 0, 2517, 2518, 7, 11, 0, 0, 2518, 384, 1, 0, 0, 0, 2519, 2520, 7, 13, 0, 0, 2520, 2521, 7, 18, 0, 0, 2521, 2522, 7, 10, 0, 0, 2522, 2523, 7, 15, 0, 0, 2523, 2524, 7, 6, 0, 0, 2524, 2525, 7, 14, 0, 0, 2525, 2526, 7, 13, 0, 0, 2526, 386, 1, 0, 0, 0, 2527, 2528, 7, 13, 0, 0, 2528, 2529, 7, 20, 0, 0, 2529, 2530, 7, 15, 0, 0, 2530, 2531, 7, 23, 0, 0, 2531, 2532, 7, 16, 0, 0, 2532, 2533, 7, 11, 0, 0, 2533, 2534, 7, 8, 0, 0, 2534, 2535, 7, 17, 0, 0, 2535, 388, 1, 0, 0, 0, 2536, 2537, 7, 13, 0, 0, 2537, 2538, 7, 20, 0, 0, 2538, 2539, 7, 16, 0, 0, 2539, 2540, 7, 6, 0, 0, 2540, 2541, 7, 18, 0, 0, 2541, 2542, 7, 8, 0, 0, 2542, 390, 1, 0, 0, 0, 2543, 2544, 7, 13, 0, 0, 2544, 2545, 7, 20, 0, 0, 2545, 2546, 7, 23, 0, 0, 2546, 2547, 7, 19, 0, 0, 2547, 2548, 7, 7, 0, 0, 2548, 2549, 7, 11, 0, 0, 2549, 392, 1, 0, 0, 0, 2550, 2551, 7, 13, 0, 0, 2551, 2552, 7, 14, 0, 0, 2552, 2553, 7, 20, 0, 0, 2553, 2554, 7, 25, 0, 0, 2554, 394, 1, 0, 0, 0, 2555, 2556, 7, 11, 0, 0, 2556, 2557, 7, 6, 0, 0, 2557, 2558, 7, 15, 0, 0, 2558, 2559, 7, 21, 0, 0, 2559, 396, 1, 0, 0, 0, 2560, 2561, 7, 11, 0, 0, 2561, 2562, 7, 8, 0, 0, 2562, 2563, 7, 6, 0, 0, 2563, 2564, 7, 19, 0, 0, 2564, 2565, 7, 7, 0, 0, 2565, 2566, 7, 11, 0, 0, 2566, 398, 1, 0, 0, 0, 2567, 2568, 7, 11, 0, 0, 2568, 2569, 7, 8, 0, 0, 2569, 2570, 7, 15, 0, 0, 2570, 2571, 7, 20, 0, 0, 2571, 2572, 7, 13, 0, 0, 2572, 2573, 7, 18, 0, 0, 2573, 2574, 7, 8, 0, 0, 2574, 2575, 7, 24, 0, 0, 2575, 400, 1, 0, 0, 0, 2576, 2577, 7, 11, 0, 0, 2577, 2578, 7, 8, 0, 0, 2578, 2579, 7, 15, 0, 0, 2579, 2580, 7, 14, 0, 0, 2580, 2581, 7, 9, 0, 0, 2581, 2582, 7, 25, 0, 0, 2582, 2583, 7, 17, 0, 0, 2583, 2584, 7, 11, 0, 0, 2584, 2585, 7, 13, 0, 0, 2585, 402, 1, 0, 0, 0, 2586, 2587, 7, 11, 0, 0, 2587, 2588, 7, 8, 0, 0, 2588, 2589, 7, 23, 0, 0, 2589, 2590, 7, 16, 0, 0, 2590, 404, 1, 0, 0, 0, 2591, 2592, 7, 11, 0, 0, 2592, 2593, 7, 10, 0, 0, 2593, 2594, 7, 15, 0, 0, 2594, 2595, 7, 6, 0, 0, 2595, 2596, 7, 25, 0, 0, 2596, 2597, 7, 11, 0, 0, 2597, 406, 1, 0, 0, 0, 2598, 2599, 7, 11, 0, 0, 2599, 2600, 7, 28, 0, 0, 2600, 2601, 7, 11, 0, 0, 2601, 2602, 7, 8, 0, 0, 2602, 2603, 7, 17, 0, 0, 2603, 408, 1, 0, 0, 0, 2604, 2605, 7, 11, 0, 0, 2605, 2606, 7, 27, 0, 0, 2606, 2607, 7, 15, 0, 0, 2607, 2608, 7, 7, 0, 0, 2608, 2609, 7, 23, 0, 0, 2609, 2610, 7, 13, 0, 0, 2610, 2611, 7, 11, 0, 0, 2611, 410, 1, 0, 0, 0, 2612, 2613, 7, 11, 0, 0, 2613, 2614, 7, 27, 0, 0, 2614, 2615, 7, 15, 0, 0, 2615, 2616, 7, 7, 0, 0, 2616, 2617, 7, 23, 0, 0, 2617, 2618, 7, 13, 0, 0, 2618, 2619, 7, 18, 0, 0, 2619, 2620, 7, 8, 0, 0, 2620, 2621, 7, 24, 0, 0, 2621, 412, 1, 0, 0, 0, 2622, 2623, 7, 11, 0, 0, 2623, 2624, 7, 27, 0, 0, 2624, 2625, 7, 15, 0, 0, 2625, 2626, 7, 7, 0, 0, 2626, 2627, 7, 23, 0, 0, 2627, 2628, 7, 10, 0, 0, 2628, 2629, 7, 18, 0, 0, 2629, 2630, 7, 28, 0, 0, 2630, 2631, 7, 11, 0, 0, 2631, 414, 1, 0, 0, 0, 2632, 2633, 7, 11, 0, 0, 2633, 2634, 7, 27, 0, 0, 2634, 2635, 7, 11, 0, 0, 2635, 2636, 7, 15, 0, 0, 2636, 2637, 7, 23, 0, 0, 2637, 2638, 7, 17, 0, 0, 2638, 2639, 7, 11, 0, 0, 2639, 416, 1, 0, 0, 0, 2640, 2641, 7, 11, 0, 0, 2641, 2642, 7, 27, 0, 0, 2642, 2643, 7, 25, 0, 0, 2643, 2644, 7, 7, 0, 0, 2644, 2645, 7, 6, 0, 0, 2645, 2646, 7, 18, 0, 0, 2646, 2647, 7, 8, 0, 0, 2647, 418, 1, 0, 0, 0, 2648, 2649, 7, 11, 0, 0, 2649, 2650, 7, 27, 0, 0, 2650, 2651, 7, 17, 0, 0, 2651, 2652, 7, 11, 0, 0, 2652, 2653, 7, 8, 0, 0, 2653, 2654, 7, 10, 0, 0, 2654, 2655, 7, 18, 0, 0, 2655, 2656, 7, 20, 0, 0, 2656, 2657, 7, 8, 0, 0, 2657, 420, 1, 0, 0, 0, 2658, 2659, 7, 11, 0, 0, 2659, 2660, 7, 27, 0, 0, 2660, 2661, 7, 17, 0, 0, 2661, 2662, 7, 11, 0, 0, 2662, 2663, 7, 14, 0, 0, 2663, 2664, 7, 8, 0, 0, 2664, 2665, 7, 6, 0, 0, 2665, 2666, 7, 7, 0, 0, 2666, 422, 1, 0, 0, 0, 2667, 2668, 7, 26, 0, 0, 2668, 2669, 7, 6, 0, 0, 2669, 2670, 7, 16, 0, 0, 2670, 2671, 7, 18, 0, 0, 2671, 2672, 7, 7, 0, 0, 2672, 2673, 7, 9, 0, 0, 2673, 424, 1, 0, 0, 0, 2674, 2675, 7, 26, 0, 0, 2675, 2676, 7, 18, 0, 0, 2676, 2677, 7, 14, 0, 0, 2677, 2678, 7, 10, 0, 0, 2678, 2679, 7, 17, 0, 0, 2679, 426, 1, 0, 0, 0, 2680, 2681, 7, 26, 0, 0, 2681, 2682, 7, 20, 0, 0, 2682, 2683, 7, 7, 0, 0, 2683, 2684, 7, 7, 0, 0, 2684, 2685, 7, 20, 0, 0, 2685, 2686, 7, 30, 0, 0, 2686, 2687, 7, 18, 0, 0, 2687, 2688, 7, 8, 0, 0, 2688, 2689, 7, 24, 0, 0, 2689, 428, 1, 0, 0, 0, 2690, 2691, 7, 26, 0, 0, 2691, 2692, 7, 20, 0, 0, 2692, 2693, 7, 14, 0, 0, 2693, 2694, 7, 15, 0, 0, 2694, 2695, 7, 11, 0, 0, 2695, 430, 1, 0, 0, 0, 2696, 2697, 7, 26, 0, 0, 2697, 2698, 7, 20, 0, 0, 2698, 2699, 7, 14, 0, 0, 2699, 2700, 7, 30, 0, 0, 2700, 2701, 7, 6, 0, 0, 2701, 2702, 7, 14, 0, 0, 2702, 2703, 7, 13, 0, 0, 2703, 432, 1, 0, 0, 0, 2704, 2705, 7, 26, 0, 0, 2705, 2706, 7, 23, 0, 0, 2706, 2707, 7, 8, 0, 0, 2707, 2708, 7, 15, 0, 0, 2708, 2709, 7, 17, 0, 0, 2709, 2710, 7, 18, 0, 0, 2710, 2711, 7, 20, 0, 0, 2711, 2712, 7, 8, 0, 0, 2712, 434, 1, 0, 0, 0, 2713, 2714, 7, 26, 0, 0, 2714, 2715, 7, 23, 0, 0, 2715, 2716, 7, 8, 0, 0, 2716, 2717, 7, 15, 0, 0, 2717, 2718, 7, 17, 0, 0, 2718, 2719, 7, 18, 0, 0, 2719, 2720, 7, 20, 0, 0, 2720, 2721, 7, 8, 0, 0, 2721, 2722, 7, 10, 0, 0, 2722, 436, 1, 0, 0, 0, 2723, 2724, 7, 24, 0, 0, 2724, 2725, 7, 7, 0, 0, 2725, 2726, 7, 20, 0, 0, 2726, 2727, 7, 19, 0, 0, 2727, 2728, 7, 6, 0, 0, 2728, 2729, 7, 7, 0, 0, 2729, 438, 1, 0, 0, 0, 2730, 2731, 7, 24, 0, 0, 2731, 2732, 7, 14, 0, 0, 2732, 2733, 7, 6, 0, 0, 2733, 2734, 7, 8, 0, 0, 2734, 2735, 7, 17, 0, 0, 2735, 2736, 7, 11, 0, 0, 2736, 2737, 7, 13, 0, 0, 2737, 440, 1, 0, 0, 0, 2738, 2739, 7, 21, 0, 0, 2739, 2740, 7, 6, 0, 0, 2740, 2741, 7, 8, 0, 0, 2741, 2742, 7, 13, 0, 0, 2742, 2743, 7, 7, 0, 0, 2743, 2744, 7, 11, 0, 0, 2744, 2745, 7, 14, 0, 0, 2745, 442, 1, 0, 0, 0, 2746, 2747, 7, 21, 0, 0, 2747, 2748, 7, 11, 0, 0, 2748, 2749, 7, 6, 0, 0, 2749, 2750, 7, 13, 0, 0, 2750, 2751, 7, 11, 0, 0, 2751, 2752, 7, 14, 0, 0, 2752, 444, 1, 0, 0, 0, 2753, 2754, 7, 21, 0, 0, 2754, 2755, 7, 20, 0, 0, 2755, 2756, 7, 7, 0, 0, 2756, 2757, 7, 13, 0, 0, 2757, 446, 1, 0, 0, 0, 2758, 2759, 7, 21, 0, 0, 2759, 2760, 7, 20, 0, 0, 2760, 2761, 7, 23, 0, 0, 2761, 2762, 7, 14, 0, 0, 2762, 448, 1, 0, 0, 0, 2763, 2764, 7, 18, 0, 0, 2764, 2765, 7, 13, 0, 0, 2765, 2766, 7, 11, 0, 0, 2766, 2767, 7, 8, 0, 0, 2767, 2768, 7, 17, 0, 0, 2768, 2769, 7, 18, 0, 0, 2769, 2770, 7, 17, 0, 0, 2770, 2771, 7, 9, 0, 0, 2771, 450, 1, 0, 0, 0, 2772, 2773, 7, 18, 0, 0, 2773, 2774, 7, 26, 0, 0, 2774, 452, 1, 0, 0, 0, 2775, 2776, 7, 18, 0, 0, 2776, 2777, 7, 16, 0, 0, 2777, 2778, 7, 16, 0, 0, 2778, 2779, 7, 11, 0, 0, 2779, 2780, 7, 13, 0, 0, 2780, 2781, 7, 18, 0, 0, 2781, 2782, 7, 6, 0, 0, 2782, 2783, 7, 17, 0, 0, 2783, 2784, 7, 11, 0, 0, 2784, 454, 1, 0, 0, 0, 2785, 2786, 7, 18, 0, 0, 2786, 2787, 7, 16, 0, 0, 2787, 2788, 7, 16, 0, 0, 2788, 2789, 7, 23, 0, 0, 2789, 2790, 7, 17, 0, 0, 2790, 2791, 7, 6, 0, 0, 2791, 2792, 7, 19, 0, 0, 2792, 2793, 7, 7, 0, 0, 2793, 2794, 7, 11, 0, 0, 2794, 456, 1, 0, 0, 0, 2795, 2796, 7, 18, 0, 0, 2796, 2797, 7, 16, 0, 0, 2797, 2798, 7, 25, 0, 0, 2798, 2799, 7, 7, 0, 0, 2799, 2800, 7, 18, 0, 0, 2800, 2801, 7, 15, 0, 0, 2801, 2802, 7, 18, 0, 0, 2802, 2803, 7, 17, 0, 0, 2803, 458, 1, 0, 0, 0, 2804, 2805, 7, 18, 0, 0, 2805, 2806, 7, 8, 0, 0, 2806, 2807, 7, 15, 0, 0, 2807, 2808, 7, 7, 0, 0, 2808, 2809, 7, 23, 0, 0, 2809, 2810, 7, 13, 0, 0, 2810, 2811, 7, 18, 0, 0, 2811, 2812, 7, 8, 0, 0, 2812, 2813, 7, 24, 0, 0, 2813, 460, 1, 0, 0, 0, 2814, 2815, 7, 18, 0, 0, 2815, 2816, 7, 8, 0, 0, 2816, 2817, 7, 15, 0, 0, 2817, 2818, 7, 14, 0, 0, 2818, 2819, 7, 11, 0, 0, 2819, 2820, 7, 16, 0, 0, 2820, 2821, 7, 11, 0, 0, 2821, 2822, 7, 8, 0, 0, 2822, 2823, 7, 17, 0, 0, 2823, 462, 1, 0, 0, 0, 2824, 2825, 7, 18, 0, 0, 2825, 2826, 7, 8, 0, 0, 2826, 2827, 7, 13, 0, 0, 2827, 2828, 7, 11, 0, 0, 2828, 2829, 7, 27, 0, 0, 2829, 464, 1, 0, 0, 0, 2830, 2831, 7, 18, 0, 0, 2831, 2832, 7, 8, 0, 0, 2832, 2833, 7, 13, 0, 0, 2833, 2834, 7, 11, 0, 0, 2834, 2835, 7, 27, 0, 0, 2835, 2836, 7, 11, 0, 0, 2836, 2837, 7, 10, 0, 0, 2837, 466, 1, 0, 0, 0, 2838, 2839, 7, 18, 0, 0, 2839, 2840, 7, 8, 0, 0, 2840, 2841, 7, 21, 0, 0, 2841, 2842, 7, 11, 0, 0, 2842, 2843, 7, 14, 0, 0, 2843, 2844, 7, 18, 0, 0, 2844, 2845, 7, 17, 0, 0, 2845, 468, 1, 0, 0, 0, 2846, 2847, 7, 8, 0, 0, 2847, 2848, 7, 20, 0, 0, 2848, 2849, 7, 18, 0, 0, 2849, 2850, 7, 8, 0, 0, 2850, 2851, 7, 21, 0, 0, 2851, 2852, 7, 11, 0, 0, 2852, 2853, 7, 14, 0, 0, 2853, 2854, 7, 18, 0, 0, 2854, 2855, 7, 17, 0, 0, 2855, 470, 1, 0, 0, 0, 2856, 2857, 7, 10, 0, 0, 2857, 2858, 7, 23, 0, 0, 2858, 2859, 7, 25, 0, 0, 2859, 2860, 7, 11, 0, 0, 2860, 2861, 7, 14, 0, 0, 2861, 2862, 7, 23, 0, 0, 2862, 2863, 7, 10, 0, 0, 2863, 2864, 7, 11, 0, 0, 2864, 2865, 7, 14, 0, 0, 2865, 472, 1, 0, 0, 0, 2866, 2867, 7, 8, 0, 0, 2867, 2868, 7, 20, 0, 0, 2868, 2869, 7, 10, 0, 0, 2869, 2870, 7, 23, 0, 0, 2870, 2871, 7, 25, 0, 0, 2871, 2872, 7, 11, 0, 0, 2872, 2873, 7, 14, 0, 0, 2873, 2874, 7, 23, 0, 0, 2874, 2875, 7, 10, 0, 0, 2875, 2876, 7, 11, 0, 0, 2876, 2877, 7, 14, 0, 0, 2877, 474, 1, 0, 0, 0, 2878, 2879, 7, 15, 0, 0, 2879, 2880, 7, 14, 0, 0, 2880, 2881, 7, 11, 0, 0, 2881, 2882, 7, 6, 0, 0, 2882, 2883, 7, 17, 0, 0, 2883, 2884, 7, 11, 0, 0, 2884, 2885, 7, 13, 0, 0, 2885, 2886, 7, 19, 0, 0, 2886, 476, 1, 0, 0, 0, 2887, 2888, 7, 8, 0, 0, 2888, 2889, 7, 20, 0, 0, 2889, 2890, 7, 15, 0, 0, 2890, 2891, 7, 14, 0, 0, 2891, 2892, 7, 11, 0, 0, 2892, 2893, 7, 6, 0, 0, 2893, 2894, 7, 17, 0, 0, 2894, 2895, 7, 11, 0, 0, 2895, 2896, 7, 13, 0, 0, 2896, 2897, 7, 19, 0, 0, 2897, 478, 1, 0, 0, 0, 2898, 2899, 7, 15, 0, 0, 2899, 2900, 7, 14, 0, 0, 2900, 2901, 7, 11, 0, 0, 2901, 2902, 7, 6, 0, 0, 2902, 2903, 7, 17, 0, 0, 2903, 2904, 7, 11, 0, 0, 2904, 2905, 7, 14, 0, 0, 2905, 2906, 7, 20, 0, 0, 2906, 2907, 7, 7, 0, 0, 2907, 2908, 7, 11, 0, 0, 2908, 480, 1, 0, 0, 0, 2909, 2910, 7, 8, 0, 0, 2910, 2911, 7, 20, 0, 0, 2911, 2912, 7, 15, 0, 0, 2912, 2913, 7, 14, 0, 0, 2913, 2914, 7, 11, 0, 0, 2914, 2915, 7, 6, 0, 0, 2915, 2916, 7, 17, 0, 0, 2916, 2917, 7, 11, 0, 0, 2917, 2918, 7, 14, 0, 0, 2918, 2919, 7, 20, 0, 0, 2919, 2920, 7, 7, 0, 0, 2920, 2921, 7, 11, 0, 0, 2921, 482, 1, 0, 0, 0, 2922, 2923, 7, 15, 0, 0, 2923, 2924, 7, 14, 0, 0, 2924, 2925, 7, 11, 0, 0, 2925, 2926, 7, 6, 0, 0, 2926, 2927, 7, 17, 0, 0, 2927, 2928, 7, 11, 0, 0, 2928, 2929, 7, 23, 0, 0, 2929, 2930, 7, 10, 0, 0, 2930, 2931, 7, 11, 0, 0, 2931, 2932, 7, 14, 0, 0, 2932, 484, 1, 0, 0, 0, 2933, 2934, 7, 8, 0, 0, 2934, 2935, 7, 20, 0, 0, 2935, 2936, 7, 15, 0, 0, 2936, 2937, 7, 14, 0, 0, 2937, 2938, 7, 11, 0, 0, 2938, 2939, 7, 6, 0, 0, 2939, 2940, 7, 17, 0, 0, 2940, 2941, 7, 11, 0, 0, 2941, 2942, 7, 23, 0, 0, 2942, 2943, 7, 10, 0, 0, 2943, 2944, 7, 11, 0, 0, 2944, 2945, 7, 14, 0, 0, 2945, 486, 1, 0, 0, 0, 2946, 2947, 7, 18, 0, 0, 2947, 2948, 7, 8, 0, 0, 2948, 2949, 7, 21, 0, 0, 2949, 2950, 7, 11, 0, 0, 2950, 2951, 7, 14, 0, 0, 2951, 2952, 7, 18, 0, 0, 2952, 2953, 7, 17, 0, 0, 2953, 2954, 7, 10, 0, 0, 2954, 488, 1, 0, 0, 0, 2955, 2956, 7, 18, 0, 0, 2956, 2957, 7, 8, 0, 0, 2957, 2958, 7, 7, 0, 0, 2958, 2959, 7, 18, 0, 0, 2959, 2960, 7, 8, 0, 0, 2960, 2961, 7, 11, 0, 0, 2961, 490, 1, 0, 0, 0, 2962, 2963, 7, 18, 0, 0, 2963, 2964, 7, 8, 0, 0, 2964, 2965, 7, 10, 0, 0, 2965, 2966, 7, 11, 0, 0, 2966, 2967, 7, 8, 0, 0, 2967, 2968, 7, 10, 0, 0, 2968, 2969, 7, 18, 0, 0, 2969, 2970, 7, 17, 0, 0, 2970, 2971, 7, 18, 0, 0, 2971, 2972, 7, 28, 0, 0, 2972, 2973, 7, 11, 0, 0, 2973, 492, 1, 0, 0, 0, 2974, 2975, 7, 18, 0, 0, 2975, 2976, 7, 8, 0, 0, 2976, 2977, 7, 10, 0, 0, 2977, 2978, 7, 11, 0, 0, 2978, 2979, 7, 14, 0, 0, 2979, 2980, 7, 17, 0, 0, 2980, 494, 1, 0, 0, 0, 2981, 2982, 7, 18, 0, 0, 2982, 2983, 7, 8, 0, 0, 2983, 2984, 7, 10, 0, 0, 2984, 2985, 7, 17, 0, 0, 2985, 2986, 7, 11, 0, 0, 2986, 2987, 7, 6, 0, 0, 2987, 2988, 7, 13, 0, 0, 2988, 496, 1, 0, 0, 0, 2989, 2990, 7, 18, 0, 0, 2990, 2991, 7, 8, 0, 0, 2991, 2992, 7, 28, 0, 0, 2992, 2993, 7, 20, 0, 0, 2993, 2994, 7, 22, 0, 0, 2994, 2995, 7, 11, 0, 0, 2995, 2996, 7, 14, 0, 0, 2996, 498, 1, 0, 0, 0, 2997, 2998, 7, 18, 0, 0, 2998, 2999, 7, 10, 0, 0, 2999, 3000, 7, 20, 0, 0, 3000, 3001, 7, 7, 0, 0, 3001, 3002, 7, 6, 0, 0, 3002, 3003, 7, 17, 0, 0, 3003, 3004, 7, 18, 0, 0, 3004, 3005, 7, 20, 0, 0, 3005, 3006, 7, 8, 0, 0, 3006, 500, 1, 0, 0, 0, 3007, 3008, 7, 22, 0, 0, 3008, 3009, 7, 11, 0, 0, 3009, 3010, 7, 9, 0, 0, 3010, 502, 1, 0, 0, 0, 3011, 3012, 7, 7, 0, 0, 3012, 3013, 7, 6, 0, 0, 3013, 3014, 7, 19, 0, 0, 3014, 3015, 7, 11, 0, 0, 3015, 3016, 7, 7, 0, 0, 3016, 504, 1, 0, 0, 0, 3017, 3018, 7, 7, 0, 0, 3018, 3019, 7, 6, 0, 0, 3019, 3020, 7, 8, 0, 0, 3020, 3021, 7, 24, 0, 0, 3021, 3022, 7, 23, 0, 0, 3022, 3023, 7, 6, 0, 0, 3023, 3024, 7, 24, 0, 0, 3024, 3025, 7, 11, 0, 0, 3025, 506, 1, 0, 0, 0, 3026, 3027, 7, 7, 0, 0, 3027, 3028, 7, 6, 0, 0, 3028, 3029, 7, 14, 0, 0, 3029, 3030, 7, 24, 0, 0, 3030, 3031, 7, 11, 0, 0, 3031, 508, 1, 0, 0, 0, 3032, 3033, 7, 7, 0, 0, 3033, 3034, 7, 6, 0, 0, 3034, 3035, 7, 10, 0, 0, 3035, 3036, 7, 17, 0, 0, 3036, 510, 1, 0, 0, 0, 3037, 3038, 7, 7, 0, 0, 3038, 3039, 7, 11, 0, 0, 3039, 3040, 7, 6, 0, 0, 3040, 3041, 7, 22, 0, 0, 3041, 3042, 7, 25, 0, 0, 3042, 3043, 7, 14, 0, 0, 3043, 3044, 7, 20, 0, 0, 3044, 3045, 7, 20, 0, 0, 3045, 3046, 7, 26, 0, 0, 3046, 512, 1, 0, 0, 0, 3047, 3048, 7, 7, 0, 0, 3048, 3049, 7, 11, 0, 0, 3049, 3050, 7, 28, 0, 0, 3050, 3051, 7, 11, 0, 0, 3051, 3052, 7, 7, 0, 0, 3052, 514, 1, 0, 0, 0, 3053, 3054, 7, 7, 0, 0, 3054, 3055, 7, 18, 0, 0, 3055, 3056, 7, 10, 0, 0, 3056, 3057, 7, 17, 0, 0, 3057, 3058, 7, 11, 0, 0, 3058, 3059, 7, 8, 0, 0, 3059, 516, 1, 0, 0, 0, 3060, 3061, 7, 7, 0, 0, 3061, 3062, 7, 20, 0, 0, 3062, 3063, 7, 6, 0, 0, 3063, 3064, 7, 13, 0, 0, 3064, 518, 1, 0, 0, 0, 3065, 3066, 7, 7, 0, 0, 3066, 3067, 7, 20, 0, 0, 3067, 3068, 7, 15, 0, 0, 3068, 3069, 7, 6, 0, 0, 3069, 3070, 7, 7, 0, 0, 3070, 520, 1, 0, 0, 0, 3071, 3072, 7, 7, 0, 0, 3072, 3073, 7, 20, 0, 0, 3073, 3074, 7, 15, 0, 0, 3074, 3075, 7, 6, 0, 0, 3075, 3076, 7, 17, 0, 0, 3076, 3077, 7, 18, 0, 0, 3077, 3078, 7, 20, 0, 0, 3078, 3079, 7, 8, 0, 0, 3079, 522, 1, 0, 0, 0, 3080, 3081, 7, 7, 0, 0, 3081, 3082, 7, 20, 0, 0, 3082, 3083, 7, 15, 0, 0, 3083, 3084, 7, 22, 0, 0, 3084, 524, 1, 0, 0, 0, 3085, 3086, 7, 16, 0, 0, 3086, 3087, 7, 6, 0, 0, 3087, 3088, 7, 25, 0, 0, 3088, 3089, 7, 25, 0, 0, 3089, 3090, 7, 18, 0, 0, 3090, 3091, 7, 8, 0, 0, 3091, 3092, 7, 24, 0, 0, 3092, 526, 1, 0, 0, 0, 3093, 3094, 7, 16, 0, 0, 3094, 3095, 7, 6, 0, 0, 3095, 3096, 7, 17, 0, 0, 3096, 3097, 7, 15, 0, 0, 3097, 3098, 7, 21, 0, 0, 3098, 528, 1, 0, 0, 0, 3099, 3100, 7, 16, 0, 0, 3100, 3101, 7, 6, 0, 0, 3101, 3102, 7, 17, 0, 0, 3102, 3103, 7, 11, 0, 0, 3103, 3104, 7, 14, 0, 0, 3104, 3105, 7, 18, 0, 0, 3105, 3106, 7, 6, 0, 0, 3106, 3107, 7, 7, 0, 0, 3107, 3108, 7, 18, 0, 0, 3108, 3109, 7, 12, 0, 0, 3109, 3110, 7, 11, 0, 0, 3110, 3111, 7, 13, 0, 0, 3111, 530, 1, 0, 0, 0, 3112, 3113, 7, 16, 0, 0, 3113, 3114, 7, 6, 0, 0, 3114, 3115, 7, 27, 0, 0, 3115, 3116, 7, 28, 0, 0, 3116, 3117, 7, 6, 0, 0, 3117, 3118, 7, 7, 0, 0, 3118, 3119, 7, 23, 0, 0, 3119, 3120, 7, 11, 0, 0, 3120, 532, 1, 0, 0, 0, 3121, 3122, 7, 16, 0, 0, 3122, 3123, 7, 18, 0, 0, 3123, 3124, 7, 8, 0, 0, 3124, 3125, 7, 23, 0, 0, 3125, 3126, 7, 17, 0, 0, 3126, 3127, 7, 11, 0, 0, 3127, 534, 1, 0, 0, 0, 3128, 3129, 7, 16, 0, 0, 3129, 3130, 7, 18, 0, 0, 3130, 3131, 7, 8, 0, 0, 3131, 3132, 7, 28, 0, 0, 3132, 3133, 7, 6, 0, 0, 3133, 3134, 7, 7, 0, 0, 3134, 3135, 7, 23, 0, 0, 3135, 3136, 7, 11, 0, 0, 3136, 536, 1, 0, 0, 0, 3137, 3138, 7, 16, 0, 0, 3138, 3139, 7, 20, 0, 0, 3139, 3140, 7, 13, 0, 0, 3140, 3141, 7, 11, 0, 0, 3141, 538, 1, 0, 0, 0, 3142, 3143, 7, 16, 0, 0, 3143, 3144, 7, 20, 0, 0, 3144, 3145, 7, 8, 0, 0, 3145, 3146, 7, 17, 0, 0, 3146, 3147, 7, 21, 0, 0, 3147, 540, 1, 0, 0, 0, 3148, 3149, 7, 16, 0, 0, 3149, 3150, 7, 20, 0, 0, 3150, 3151, 7, 28, 0, 0, 3151, 3152, 7, 11, 0, 0, 3152, 542, 1, 0, 0, 0, 3153, 3154, 7, 8, 0, 0, 3154, 3155, 7, 6, 0, 0, 3155, 3156, 7, 16, 0, 0, 3156, 3157, 7, 11, 0, 0, 3157, 544, 1, 0, 0, 0, 3158, 3159, 7, 8, 0, 0, 3159, 3160, 7, 6, 0, 0, 3160, 3161, 7, 16, 0, 0, 3161, 3162, 7, 11, 0, 0, 3162, 3163, 7, 10, 0, 0, 3163, 546, 1, 0, 0, 0, 3164, 3165, 7, 8, 0, 0, 3165, 3166, 7, 11, 0, 0, 3166, 3167, 7, 27, 0, 0, 3167, 3168, 7, 17, 0, 0, 3168, 548, 1, 0, 0, 0, 3169, 3170, 7, 8, 0, 0, 3170, 3171, 7, 20, 0, 0, 3171, 550, 1, 0, 0, 0, 3172, 3173, 7, 8, 0, 0, 3173, 3174, 7, 20, 0, 0, 3174, 3175, 7, 17, 0, 0, 3175, 3176, 7, 21, 0, 0, 3176, 3177, 7, 18, 0, 0, 3177, 3178, 7, 8, 0, 0, 3178, 3179, 7, 24, 0, 0, 3179, 552, 1, 0, 0, 0, 3180, 3181, 7, 8, 0, 0, 3181, 3182, 7, 20, 0, 0, 3182, 3183, 7, 17, 0, 0, 3183, 3184, 7, 18, 0, 0, 3184, 3185, 7, 26, 0, 0, 3185, 3186, 7, 9, 0, 0, 3186, 554, 1, 0, 0, 0, 3187, 3188, 7, 8, 0, 0, 3188, 3189, 7, 20, 0, 0, 3189, 3190, 7, 30, 0, 0, 3190, 3191, 7, 6, 0, 0, 3191, 3192, 7, 18, 0, 0, 3192, 3193, 7, 17, 0, 0, 3193, 556, 1, 0, 0, 0, 3194, 3195, 7, 8, 0, 0, 3195, 3196, 7, 23, 0, 0, 3196, 3197, 7, 7, 0, 0, 3197, 3198, 7, 7, 0, 0, 3198, 3199, 7, 10, 0, 0, 3199, 558, 1, 0, 0, 0, 3200, 3201, 7, 20, 0, 0, 3201, 3202, 7, 19, 0, 0, 3202, 3203, 7, 31, 0, 0, 3203, 3204, 7, 11, 0, 0, 3204, 3205, 7, 15, 0, 0, 3205, 3206, 7, 17, 0, 0, 3206, 560, 1, 0, 0, 0, 3207, 3208, 7, 20, 0, 0, 3208, 3209, 7, 26, 0, 0, 3209, 562, 1, 0, 0, 0, 3210, 3211, 7, 20, 0, 0, 3211, 3212, 7, 26, 0, 0, 3212, 3213, 7, 26, 0, 0, 3213, 564, 1, 0, 0, 0, 3214, 3215, 7, 20, 0, 0, 3215, 3216, 7, 18, 0, 0, 3216, 3217, 7, 13, 0, 0, 3217, 3218, 7, 10, 0, 0, 3218, 566, 1, 0, 0, 0, 3219, 3220, 7, 20, 0, 0, 3220, 3221, 7, 25, 0, 0, 3221, 3222, 7, 11, 0, 0, 3222, 3223, 7, 14, 0, 0, 3223, 3224, 7, 6, 0, 0, 3224, 3225, 7, 17, 0, 0, 3225, 3226, 7, 20, 0, 0, 3226, 3227, 7, 14, 0, 0, 3227, 568, 1, 0, 0, 0, 3228, 3229, 7, 20, 0, 0, 3229, 3230, 7, 25, 0, 0, 3230, 3231, 7, 17, 0, 0, 3231, 3232, 7, 18, 0, 0, 3232, 3233, 7, 20, 0, 0, 3233, 3234, 7, 8, 0, 0, 3234, 570, 1, 0, 0, 0, 3235, 3236, 7, 20, 0, 0, 3236, 3237, 7, 25, 0, 0, 3237, 3238, 7, 17, 0, 0, 3238, 3239, 7, 18, 0, 0, 3239, 3240, 7, 20, 0, 0, 3240, 3241, 7, 8, 0, 0, 3241, 3242, 7, 10, 0, 0, 3242, 572, 1, 0, 0, 0, 3243, 3244, 7, 20, 0, 0, 3244, 3245, 7, 30, 0, 0, 3245, 3246, 7, 8, 0, 0, 3246, 3247, 7, 11, 0, 0, 3247, 3248, 7, 13, 0, 0, 3248, 574, 1, 0, 0, 0, 3249, 3250, 7, 20, 0, 0, 3250, 3251, 7, 30, 0, 0, 3251, 3252, 7, 8, 0, 0, 3252, 3253, 7, 11, 0, 0, 3253, 3254, 7, 14, 0, 0, 3254, 576, 1, 0, 0, 0, 3255, 3256, 7, 25, 0, 0, 3256, 3257, 7, 6, 0, 0, 3257, 3258, 7, 14, 0, 0, 3258, 3259, 7, 10, 0, 0, 3259, 3260, 7, 11, 0, 0, 3260, 3261, 7, 14, 0, 0, 3261, 578, 1, 0, 0, 0, 3262, 3263, 7, 25, 0, 0, 3263, 3264, 7, 6, 0, 0, 3264, 3265, 7, 14, 0, 0, 3265, 3266, 7, 17, 0, 0, 3266, 3267, 7, 18, 0, 0, 3267, 3268, 7, 6, 0, 0, 3268, 3269, 7, 7, 0, 0, 3269, 580, 1, 0, 0, 0, 3270, 3271, 7, 25, 0, 0, 3271, 3272, 7, 6, 0, 0, 3272, 3273, 7, 14, 0, 0, 3273, 3274, 7, 17, 0, 0, 3274, 3275, 7, 18, 0, 0, 3275, 3276, 7, 17, 0, 0, 3276, 3277, 7, 18, 0, 0, 3277, 3278, 7, 20, 0, 0, 3278, 3279, 7, 8, 0, 0, 3279, 582, 1, 0, 0, 0, 3280, 3281, 7, 25, 0, 0, 3281, 3282, 7, 6, 0, 0, 3282, 3283, 7, 10, 0, 0, 3283, 3284, 7, 10, 0, 0, 3284, 3285, 7, 18, 0, 0, 3285, 3286, 7, 8, 0, 0, 3286, 3287, 7, 24, 0, 0, 3287, 584, 1, 0, 0, 0, 3288, 3289, 7, 25, 0, 0, 3289, 3290, 7, 6, 0, 0, 3290, 3291, 7, 10, 0, 0, 3291, 3292, 7, 10, 0, 0, 3292, 3293, 7, 30, 0, 0, 3293, 3294, 7, 20, 0, 0, 3294, 3295, 7, 14, 0, 0, 3295, 3296, 7, 13, 0, 0, 3296, 586, 1, 0, 0, 0, 3297, 3298, 7, 25, 0, 0, 3298, 3299, 7, 7, 0, 0, 3299, 3300, 7, 6, 0, 0, 3300, 3301, 7, 8, 0, 0, 3301, 3302, 7, 10, 0, 0, 3302, 588, 1, 0, 0, 0, 3303, 3304, 7, 25, 0, 0, 3304, 3305, 7, 14, 0, 0, 3305, 3306, 7, 11, 0, 0, 3306, 3307, 7, 15, 0, 0, 3307, 3308, 7, 11, 0, 0, 3308, 3309, 7, 13, 0, 0, 3309, 3310, 7, 18, 0, 0, 3310, 3311, 7, 8, 0, 0, 3311, 3312, 7, 24, 0, 0, 3312, 590, 1, 0, 0, 0, 3313, 3314, 7, 25, 0, 0, 3314, 3315, 7, 14, 0, 0, 3315, 3316, 7, 11, 0, 0, 3316, 3317, 7, 25, 0, 0, 3317, 3318, 7, 6, 0, 0, 3318, 3319, 7, 14, 0, 0, 3319, 3320, 7, 11, 0, 0, 3320, 592, 1, 0, 0, 0, 3321, 3322, 7, 25, 0, 0, 3322, 3323, 7, 14, 0, 0, 3323, 3324, 7, 11, 0, 0, 3324, 3325, 7, 25, 0, 0, 3325, 3326, 7, 6, 0, 0, 3326, 3327, 7, 14, 0, 0, 3327, 3328, 7, 11, 0, 0, 3328, 3329, 7, 13, 0, 0, 3329, 594, 1, 0, 0, 0, 3330, 3331, 7, 25, 0, 0, 3331, 3332, 7, 14, 0, 0, 3332, 3333, 7, 11, 0, 0, 3333, 3334, 7, 10, 0, 0, 3334, 3335, 7, 11, 0, 0, 3335, 3336, 7, 14, 0, 0, 3336, 3337, 7, 28, 0, 0, 3337, 3338, 7, 11, 0, 0, 3338, 596, 1, 0, 0, 0, 3339, 3340, 7, 25, 0, 0, 3340, 3341, 7, 14, 0, 0, 3341, 3342, 7, 18, 0, 0, 3342, 3343, 7, 20, 0, 0, 3343, 3344, 7, 14, 0, 0, 3344, 598, 1, 0, 0, 0, 3345, 3346, 7, 25, 0, 0, 3346, 3347, 7, 14, 0, 0, 3347, 3348, 7, 18, 0, 0, 3348, 3349, 7, 28, 0, 0, 3349, 3350, 7, 18, 0, 0, 3350, 3351, 7, 7, 0, 0, 3351, 3352, 7, 11, 0, 0, 3352, 3353, 7, 24, 0, 0, 3353, 3354, 7, 11, 0, 0, 3354, 3355, 7, 10, 0, 0, 3355, 600, 1, 0, 0, 0, 3356, 3357, 7, 25, 0, 0, 3357, 3358, 7, 14, 0, 0, 3358, 3359, 7, 20, 0, 0, 3359, 3360, 7, 15, 0, 0, 3360, 3361, 7, 11, 0, 0, 3361, 3362, 7, 13, 0, 0, 3362, 3363, 7, 23, 0, 0, 3363, 3364, 7, 14, 0, 0, 3364, 3365, 7, 6, 0, 0, 3365, 3366, 7, 7, 0, 0, 3366, 602, 1, 0, 0, 0, 3367, 3368, 7, 25, 0, 0, 3368, 3369, 7, 14, 0, 0, 3369, 3370, 7, 20, 0, 0, 3370, 3371, 7, 15, 0, 0, 3371, 3372, 7, 11, 0, 0, 3372, 3373, 7, 13, 0, 0, 3373, 3374, 7, 23, 0, 0, 3374, 3375, 7, 14, 0, 0, 3375, 3376, 7, 11, 0, 0, 3376, 604, 1, 0, 0, 0, 3377, 3378, 7, 25, 0, 0, 3378, 3379, 7, 14, 0, 0, 3379, 3380, 7, 20, 0, 0, 3380, 3381, 7, 24, 0, 0, 3381, 3382, 7, 14, 0, 0, 3382, 3383, 7, 6, 0, 0, 3383, 3384, 7, 16, 0, 0, 3384, 606, 1, 0, 0, 0, 3385, 3386, 7, 29, 0, 0, 3386, 3387, 7, 23, 0, 0, 3387, 3388, 7, 20, 0, 0, 3388, 3389, 7, 17, 0, 0, 3389, 3390, 7, 11, 0, 0, 3390, 608, 1, 0, 0, 0, 3391, 3392, 7, 14, 0, 0, 3392, 3393, 7, 6, 0, 0, 3393, 3394, 7, 8, 0, 0, 3394, 3395, 7, 24, 0, 0, 3395, 3396, 7, 11, 0, 0, 3396, 610, 1, 0, 0, 0, 3397, 3398, 7, 14, 0, 0, 3398, 3399, 7, 11, 0, 0, 3399, 3400, 7, 6, 0, 0, 3400, 3401, 7, 13, 0, 0, 3401, 612, 1, 0, 0, 0, 3402, 3403, 7, 14, 0, 0, 3403, 3404, 7, 11, 0, 0, 3404, 3405, 7, 6, 0, 0, 3405, 3406, 7, 10, 0, 0, 3406, 3407, 7, 10, 0, 0, 3407, 3408, 7, 18, 0, 0, 3408, 3409, 7, 24, 0, 0, 3409, 3410, 7, 8, 0, 0, 3410, 614, 1, 0, 0, 0, 3411, 3412, 7, 14, 0, 0, 3412, 3413, 7, 11, 0, 0, 3413, 3414, 7, 15, 0, 0, 3414, 3415, 7, 21, 0, 0, 3415, 3416, 7, 11, 0, 0, 3416, 3417, 7, 15, 0, 0, 3417, 3418, 7, 22, 0, 0, 3418, 616, 1, 0, 0, 0, 3419, 3420, 7, 14, 0, 0, 3420, 3421, 7, 11, 0, 0, 3421, 3422, 7, 15, 0, 0, 3422, 3423, 7, 23, 0, 0, 3423, 3424, 7, 14, 0, 0, 3424, 3425, 7, 10, 0, 0, 3425, 3426, 7, 18, 0, 0, 3426, 3427, 7, 28, 0, 0, 3427, 3428, 7, 11, 0, 0, 3428, 618, 1, 0, 0, 0, 3429, 3430, 7, 14, 0, 0, 3430, 3431, 7, 11, 0, 0, 3431, 3432, 7, 26, 0, 0, 3432, 620, 1, 0, 0, 0, 3433, 3434, 7, 14, 0, 0, 3434, 3435, 7, 11, 0, 0, 3435, 3436, 7, 26, 0, 0, 3436, 3437, 7, 14, 0, 0, 3437, 3438, 7, 11, 0, 0, 3438, 3439, 7, 10, 0, 0, 3439, 3440, 7, 21, 0, 0, 3440, 622, 1, 0, 0, 0, 3441, 3442, 7, 14, 0, 0, 3442, 3443, 7, 11, 0, 0, 3443, 3444, 7, 18, 0, 0, 3444, 3445, 7, 8, 0, 0, 3445, 3446, 7, 13, 0, 0, 3446, 3447, 7, 11, 0, 0, 3447, 3448, 7, 27, 0, 0, 3448, 624, 1, 0, 0, 0, 3449, 3450, 7, 14, 0, 0, 3450, 3451, 7, 11, 0, 0, 3451, 3452, 7, 7, 0, 0, 3452, 3453, 7, 6, 0, 0, 3453, 3454, 7, 17, 0, 0, 3454, 3455, 7, 18, 0, 0, 3455, 3456, 7, 28, 0, 0, 3456, 3457, 7, 11, 0, 0, 3457, 626, 1, 0, 0, 0, 3458, 3459, 7, 14, 0, 0, 3459, 3460, 7, 11, 0, 0, 3460, 3461, 7, 7, 0, 0, 3461, 3462, 7, 11, 0, 0, 3462, 3463, 7, 6, 0, 0, 3463, 3464, 7, 10, 0, 0, 3464, 3465, 7, 11, 0, 0, 3465, 628, 1, 0, 0, 0, 3466, 3467, 7, 14, 0, 0, 3467, 3468, 7, 11, 0, 0, 3468, 3469, 7, 8, 0, 0, 3469, 3470, 7, 6, 0, 0, 3470, 3471, 7, 16, 0, 0, 3471, 3472, 7, 11, 0, 0, 3472, 630, 1, 0, 0, 0, 3473, 3474, 7, 14, 0, 0, 3474, 3475, 7, 11, 0, 0, 3475, 3476, 7, 25, 0, 0, 3476, 3477, 7, 11, 0, 0, 3477, 3478, 7, 6, 0, 0, 3478, 3479, 7, 17, 0, 0, 3479, 3480, 7, 6, 0, 0, 3480, 3481, 7, 19, 0, 0, 3481, 3482, 7, 7, 0, 0, 3482, 3483, 7, 11, 0, 0, 3483, 632, 1, 0, 0, 0, 3484, 3485, 7, 14, 0, 0, 3485, 3486, 7, 11, 0, 0, 3486, 3487, 7, 25, 0, 0, 3487, 3488, 7, 7, 0, 0, 3488, 3489, 7, 6, 0, 0, 3489, 3490, 7, 15, 0, 0, 3490, 3491, 7, 11, 0, 0, 3491, 634, 1, 0, 0, 0, 3492, 3493, 7, 14, 0, 0, 3493, 3494, 7, 11, 0, 0, 3494, 3495, 7, 25, 0, 0, 3495, 3496, 7, 7, 0, 0, 3496, 3497, 7, 18, 0, 0, 3497, 3498, 7, 15, 0, 0, 3498, 3499, 7, 6, 0, 0, 3499, 636, 1, 0, 0, 0, 3500, 3501, 7, 14, 0, 0, 3501, 3502, 7, 11, 0, 0, 3502, 3503, 7, 10, 0, 0, 3503, 3504, 7, 11, 0, 0, 3504, 3505, 7, 17, 0, 0, 3505, 638, 1, 0, 0, 0, 3506, 3507, 7, 14, 0, 0, 3507, 3508, 7, 11, 0, 0, 3508, 3509, 7, 10, 0, 0, 3509, 3510, 7, 17, 0, 0, 3510, 3511, 7, 6, 0, 0, 3511, 3512, 7, 14, 0, 0, 3512, 3513, 7, 17, 0, 0, 3513, 640, 1, 0, 0, 0, 3514, 3515, 7, 14, 0, 0, 3515, 3516, 7, 11, 0, 0, 3516, 3517, 7, 10, 0, 0, 3517, 3518, 7, 17, 0, 0, 3518, 3519, 7, 14, 0, 0, 3519, 3520, 7, 18, 0, 0, 3520, 3521, 7, 15, 0, 0, 3521, 3522, 7, 17, 0, 0, 3522, 642, 1, 0, 0, 0, 3523, 3524, 7, 14, 0, 0, 3524, 3525, 7, 11, 0, 0, 3525, 3526, 7, 17, 0, 0, 3526, 3527, 7, 23, 0, 0, 3527, 3528, 7, 14, 0, 0, 3528, 3529, 7, 8, 0, 0, 3529, 3530, 7, 10, 0, 0, 3530, 644, 1, 0, 0, 0, 3531, 3532, 7, 14, 0, 0, 3532, 3533, 7, 11, 0, 0, 3533, 3534, 7, 28, 0, 0, 3534, 3535, 7, 20, 0, 0, 3535, 3536, 7, 22, 0, 0, 3536, 3537, 7, 11, 0, 0, 3537, 646, 1, 0, 0, 0, 3538, 3539, 7, 14, 0, 0, 3539, 3540, 7, 20, 0, 0, 3540, 3541, 7, 7, 0, 0, 3541, 3542, 7, 11, 0, 0, 3542, 648, 1, 0, 0, 0, 3543, 3544, 7, 14, 0, 0, 3544, 3545, 7, 20, 0, 0, 3545, 3546, 7, 7, 0, 0, 3546, 3547, 7, 7, 0, 0, 3547, 3548, 7, 19, 0, 0, 3548, 3549, 7, 6, 0, 0, 3549, 3550, 7, 15, 0, 0, 3550, 3551, 7, 22, 0, 0, 3551, 650, 1, 0, 0, 0, 3552, 3553, 7, 14, 0, 0, 3553, 3554, 7, 20, 0, 0, 3554, 3555, 7, 30, 0, 0, 3555, 3556, 7, 10, 0, 0, 3556, 652, 1, 0, 0, 0, 3557, 3558, 7, 14, 0, 0, 3558, 3559, 7, 23, 0, 0, 3559, 3560, 7, 7, 0, 0, 3560, 3561, 7, 11, 0, 0, 3561, 654, 1, 0, 0, 0, 3562, 3563, 7, 10, 0, 0, 3563, 3564, 7, 6, 0, 0, 3564, 3565, 7, 28, 0, 0, 3565, 3566, 7, 11, 0, 0, 3566, 3567, 7, 25, 0, 0, 3567, 3568, 7, 20, 0, 0, 3568, 3569, 7, 18, 0, 0, 3569, 3570, 7, 8, 0, 0, 3570, 3571, 7, 17, 0, 0, 3571, 656, 1, 0, 0, 0, 3572, 3573, 7, 10, 0, 0, 3573, 3574, 7, 15, 0, 0, 3574, 3575, 7, 21, 0, 0, 3575, 3576, 7, 11, 0, 0, 3576, 3577, 7, 16, 0, 0, 3577, 3578, 7, 6, 0, 0, 3578, 658, 1, 0, 0, 0, 3579, 3580, 7, 10, 0, 0, 3580, 3581, 7, 15, 0, 0, 3581, 3582, 7, 14, 0, 0, 3582, 3583, 7, 20, 0, 0, 3583, 3584, 7, 7, 0, 0, 3584, 3585, 7, 7, 0, 0, 3585, 660, 1, 0, 0, 0, 3586, 3587, 7, 10, 0, 0, 3587, 3588, 7, 11, 0, 0, 3588, 3589, 7, 6, 0, 0, 3589, 3590, 7, 14, 0, 0, 3590, 3591, 7, 15, 0, 0, 3591, 3592, 7, 21, 0, 0, 3592, 662, 1, 0, 0, 0, 3593, 3594, 7, 10, 0, 0, 3594, 3595, 7, 11, 0, 0, 3595, 3596, 7, 15, 0, 0, 3596, 3597, 7, 20, 0, 0, 3597, 3598, 7, 8, 0, 0, 3598, 3599, 7, 13, 0, 0, 3599, 664, 1, 0, 0, 0, 3600, 3601, 7, 10, 0, 0, 3601, 3602, 7, 11, 0, 0, 3602, 3603, 7, 15, 0, 0, 3603, 3604, 7, 23, 0, 0, 3604, 3605, 7, 14, 0, 0, 3605, 3606, 7, 18, 0, 0, 3606, 3607, 7, 17, 0, 0, 3607, 3608, 7, 9, 0, 0, 3608, 666, 1, 0, 0, 0, 3609, 3610, 7, 10, 0, 0, 3610, 3611, 7, 11, 0, 0, 3611, 3612, 7, 29, 0, 0, 3612, 3613, 7, 23, 0, 0, 3613, 3614, 7, 11, 0, 0, 3614, 3615, 7, 8, 0, 0, 3615, 3616, 7, 15, 0, 0, 3616, 3617, 7, 11, 0, 0, 3617, 668, 1, 0, 0, 0, 3618, 3619, 7, 10, 0, 0, 3619, 3620, 7, 11, 0, 0, 3620, 3621, 7, 29, 0, 0, 3621, 3622, 7, 23, 0, 0, 3622, 3623, 7, 11, 0, 0, 3623, 3624, 7, 8, 0, 0, 3624, 3625, 7, 15, 0, 0, 3625, 3626, 7, 11, 0, 0, 3626, 3627, 7, 10, 0, 0, 3627, 670, 1, 0, 0, 0, 3628, 3629, 7, 10, 0, 0, 3629, 3630, 7, 11, 0, 0, 3630, 3631, 7, 14, 0, 0, 3631, 3632, 7, 18, 0, 0, 3632, 3633, 7, 6, 0, 0, 3633, 3634, 7, 7, 0, 0, 3634, 3635, 7, 18, 0, 0, 3635, 3636, 7, 12, 0, 0, 3636, 3637, 7, 6, 0, 0, 3637, 3638, 7, 19, 0, 0, 3638, 3639, 7, 7, 0, 0, 3639, 3640, 7, 11, 0, 0, 3640, 672, 1, 0, 0, 0, 3641, 3642, 7, 10, 0, 0, 3642, 3643, 7, 11, 0, 0, 3643, 3644, 7, 14, 0, 0, 3644, 3645, 7, 28, 0, 0, 3645, 3646, 7, 11, 0, 0, 3646, 3647, 7, 14, 0, 0, 3647, 674, 1, 0, 0, 0, 3648, 3649, 7, 10, 0, 0, 3649, 3650, 7, 11, 0, 0, 3650, 3651, 7, 10, 0, 0, 3651, 3652, 7, 10, 0, 0, 3652, 3653, 7, 18, 0, 0, 3653, 3654, 7, 20, 0, 0, 3654, 3655, 7, 8, 0, 0, 3655, 676, 1, 0, 0, 0, 3656, 3657, 7, 10, 0, 0, 3657, 3658, 7, 11, 0, 0, 3658, 3659, 7, 17, 0, 0, 3659, 678, 1, 0, 0, 0, 3660, 3661, 7, 10, 0, 0, 3661, 3662, 7, 21, 0, 0, 3662, 3663, 7, 6, 0, 0, 3663, 3664, 7, 14, 0, 0, 3664, 3665, 7, 11, 0, 0, 3665, 680, 1, 0, 0, 0, 3666, 3667, 7, 10, 0, 0, 3667, 3668, 7, 21, 0, 0, 3668, 3669, 7, 20, 0, 0, 3669, 3670, 7, 30, 0, 0, 3670, 682, 1, 0, 0, 0, 3671, 3672, 7, 10, 0, 0, 3672, 3673, 7, 18, 0, 0, 3673, 3674, 7, 16, 0, 0, 3674, 3675, 7, 25, 0, 0, 3675, 3676, 7, 7, 0, 0, 3676, 3677, 7, 11, 0, 0, 3677, 684, 1, 0, 0, 0, 3678, 3679, 7, 10, 0, 0, 3679, 3680, 7, 8, 0, 0, 3680, 3681, 7, 6, 0, 0, 3681, 3682, 7, 25, 0, 0, 3682, 3683, 7, 10, 0, 0, 3683, 3684, 7, 21, 0, 0, 3684, 3685, 7, 20, 0, 0, 3685, 3686, 7, 17, 0, 0, 3686, 686, 1, 0, 0, 0, 3687, 3688, 7, 10, 0, 0, 3688, 3689, 7, 17, 0, 0, 3689, 3690, 7, 6, 0, 0, 3690, 3691, 7, 19, 0, 0, 3691, 3692, 7, 7, 0, 0, 3692, 3693, 7, 11, 0, 0, 3693, 688, 1, 0, 0, 0, 3694, 3695, 7, 10, 0, 0, 3695, 3696, 7, 17, 0, 0, 3696, 3697, 7, 6, 0, 0, 3697, 3698, 7, 8, 0, 0, 3698, 3699, 7, 13, 0, 0, 3699, 3700, 7, 6, 0, 0, 3700, 3701, 7, 7, 0, 0, 3701, 3702, 7, 20, 0, 0, 3702, 3703, 7, 8, 0, 0, 3703, 3704, 7, 11, 0, 0, 3704, 690, 1, 0, 0, 0, 3705, 3706, 7, 10, 0, 0, 3706, 3707, 7, 17, 0, 0, 3707, 3708, 7, 6, 0, 0, 3708, 3709, 7, 14, 0, 0, 3709, 3710, 7, 17, 0, 0, 3710, 692, 1, 0, 0, 0, 3711, 3712, 7, 10, 0, 0, 3712, 3713, 7, 17, 0, 0, 3713, 3714, 7, 6, 0, 0, 3714, 3715, 7, 17, 0, 0, 3715, 3716, 7, 11, 0, 0, 3716, 3717, 7, 16, 0, 0, 3717, 3718, 7, 11, 0, 0, 3718, 3719, 7, 8, 0, 0, 3719, 3720, 7, 17, 0, 0, 3720, 694, 1, 0, 0, 0, 3721, 3722, 7, 10, 0, 0, 3722, 3723, 7, 17, 0, 0, 3723, 3724, 7, 6, 0, 0, 3724, 3725, 7, 17, 0, 0, 3725, 3726, 7, 18, 0, 0, 3726, 3727, 7, 10, 0, 0, 3727, 3728, 7, 17, 0, 0, 3728, 3729, 7, 18, 0, 0, 3729, 3730, 7, 15, 0, 0, 3730, 3731, 7, 10, 0, 0, 3731, 696, 1, 0, 0, 0, 3732, 3733, 7, 10, 0, 0, 3733, 3734, 7, 17, 0, 0, 3734, 3735, 7, 13, 0, 0, 3735, 3736, 7, 18, 0, 0, 3736, 3737, 7, 8, 0, 0, 3737, 698, 1, 0, 0, 0, 3738, 3739, 7, 10, 0, 0, 3739, 3740, 7, 17, 0, 0, 3740, 3741, 7, 13, 0, 0, 3741, 3742, 7, 20, 0, 0, 3742, 3743, 7, 23, 0, 0, 3743, 3744, 7, 17, 0, 0, 3744, 700, 1, 0, 0, 0, 3745, 3746, 7, 10, 0, 0, 3746, 3747, 7, 17, 0, 0, 3747, 3748, 7, 20, 0, 0, 3748, 3749, 7, 14, 0, 0, 3749, 3750, 7, 6, 0, 0, 3750, 3751, 7, 24, 0, 0, 3751, 3752, 7, 11, 0, 0, 3752, 702, 1, 0, 0, 0, 3753, 3754, 7, 10, 0, 0, 3754, 3755, 7, 17, 0, 0, 3755, 3756, 7, 14, 0, 0, 3756, 3757, 7, 18, 0, 0, 3757, 3758, 7, 15, 0, 0, 3758, 3759, 7, 17, 0, 0, 3759, 704, 1, 0, 0, 0, 3760, 3761, 7, 10, 0, 0, 3761, 3762, 7, 17, 0, 0, 3762, 3763, 7, 14, 0, 0, 3763, 3764, 7, 18, 0, 0, 3764, 3765, 7, 25, 0, 0, 3765, 706, 1, 0, 0, 0, 3766, 3767, 7, 10, 0, 0, 3767, 3768, 7, 9, 0, 0, 3768, 3769, 7, 10, 0, 0, 3769, 3770, 7, 18, 0, 0, 3770, 3771, 7, 13, 0, 0, 3771, 708, 1, 0, 0, 0, 3772, 3773, 7, 10, 0, 0, 3773, 3774, 7, 9, 0, 0, 3774, 3775, 7, 10, 0, 0, 3775, 3776, 7, 17, 0, 0, 3776, 3777, 7, 11, 0, 0, 3777, 3778, 7, 16, 0, 0, 3778, 710, 1, 0, 0, 0, 3779, 3780, 7, 17, 0, 0, 3780, 3781, 7, 6, 0, 0, 3781, 3782, 7, 19, 0, 0, 3782, 3783, 7, 7, 0, 0, 3783, 3784, 7, 11, 0, 0, 3784, 3785, 7, 10, 0, 0, 3785, 712, 1, 0, 0, 0, 3786, 3787, 7, 17, 0, 0, 3787, 3788, 7, 6, 0, 0, 3788, 3789, 7, 19, 0, 0, 3789, 3790, 7, 7, 0, 0, 3790, 3791, 7, 11, 0, 0, 3791, 3792, 7, 10, 0, 0, 3792, 3793, 7, 25, 0, 0, 3793, 3794, 7, 6, 0, 0, 3794, 3795, 7, 15, 0, 0, 3795, 3796, 7, 11, 0, 0, 3796, 714, 1, 0, 0, 0, 3797, 3798, 7, 17, 0, 0, 3798, 3799, 7, 11, 0, 0, 3799, 3800, 7, 16, 0, 0, 3800, 3801, 7, 25, 0, 0, 3801, 716, 1, 0, 0, 0, 3802, 3803, 7, 17, 0, 0, 3803, 3804, 7, 11, 0, 0, 3804, 3805, 7, 16, 0, 0, 3805, 3806, 7, 25, 0, 0, 3806, 3807, 7, 7, 0, 0, 3807, 3808, 7, 6, 0, 0, 3808, 3809, 7, 17, 0, 0, 3809, 3810, 7, 11, 0, 0, 3810, 718, 1, 0, 0, 0, 3811, 3812, 7, 17, 0, 0, 3812, 3813, 7, 11, 0, 0, 3813, 3814, 7, 16, 0, 0, 3814, 3815, 7, 25, 0, 0, 3815, 3816, 7, 20, 0, 0, 3816, 3817, 7, 14, 0, 0, 3817, 3818, 7, 6, 0, 0, 3818, 3819, 7, 14, 0, 0, 3819, 3820, 7, 9, 0, 0, 3820, 720, 1, 0, 0, 0, 3821, 3822, 7, 17, 0, 0, 3822, 3823, 7, 11, 0, 0, 3823, 3824, 7, 27, 0, 0, 3824, 3825, 7, 17, 0, 0, 3825, 722, 1, 0, 0, 0, 3826, 3827, 7, 17, 0, 0, 3827, 3828, 7, 14, 0, 0, 3828, 3829, 7, 6, 0, 0, 3829, 3830, 7, 8, 0, 0, 3830, 3831, 7, 10, 0, 0, 3831, 3832, 7, 6, 0, 0, 3832, 3833, 7, 15, 0, 0, 3833, 3834, 7, 17, 0, 0, 3834, 3835, 7, 18, 0, 0, 3835, 3836, 7, 20, 0, 0, 3836, 3837, 7, 8, 0, 0, 3837, 724, 1, 0, 0, 0, 3838, 3839, 7, 17, 0, 0, 3839, 3840, 7, 14, 0, 0, 3840, 3841, 7, 18, 0, 0, 3841, 3842, 7, 24, 0, 0, 3842, 3843, 7, 24, 0, 0, 3843, 3844, 7, 11, 0, 0, 3844, 3845, 7, 14, 0, 0, 3845, 726, 1, 0, 0, 0, 3846, 3847, 7, 17, 0, 0, 3847, 3848, 7, 14, 0, 0, 3848, 3849, 7, 23, 0, 0, 3849, 3850, 7, 8, 0, 0, 3850, 3851, 7, 15, 0, 0, 3851, 3852, 7, 6, 0, 0, 3852, 3853, 7, 17, 0, 0, 3853, 3854, 7, 11, 0, 0, 3854, 728, 1, 0, 0, 0, 3855, 3856, 7, 17, 0, 0, 3856, 3857, 7, 14, 0, 0, 3857, 3858, 7, 23, 0, 0, 3858, 3859, 7, 10, 0, 0, 3859, 3860, 7, 17, 0, 0, 3860, 3861, 7, 11, 0, 0, 3861, 3862, 7, 13, 0, 0, 3862, 730, 1, 0, 0, 0, 3863, 3864, 7, 17, 0, 0, 3864, 3865, 7, 9, 0, 0, 3865, 3866, 7, 25, 0, 0, 3866, 3867, 7, 11, 0, 0, 3867, 732, 1, 0, 0, 0, 3868, 3869, 7, 17, 0, 0, 3869, 3870, 7, 9, 0, 0, 3870, 3871, 7, 25, 0, 0, 3871, 3872, 7, 11, 0, 0, 3872, 3873, 7, 10, 0, 0, 3873, 734, 1, 0, 0, 0, 3874, 3875, 7, 23, 0, 0, 3875, 3876, 7, 8, 0, 0, 3876, 3877, 7, 19, 0, 0, 3877, 3878, 7, 20, 0, 0, 3878, 3879, 7, 23, 0, 0, 3879, 3880, 7, 8, 0, 0, 3880, 3881, 7, 13, 0, 0, 3881, 3882, 7, 11, 0, 0, 3882, 3883, 7, 13, 0, 0, 3883, 736, 1, 0, 0, 0, 3884, 3885, 7, 23, 0, 0, 3885, 3886, 7, 8, 0, 0, 3886, 3887, 7, 15, 0, 0, 3887, 3888, 7, 20, 0, 0, 3888, 3889, 7, 16, 0, 0, 3889, 3890, 7, 16, 0, 0, 3890, 3891, 7, 18, 0, 0, 3891, 3892, 7, 17, 0, 0, 3892, 3893, 7, 17, 0, 0, 3893, 3894, 7, 11, 0, 0, 3894, 3895, 7, 13, 0, 0, 3895, 738, 1, 0, 0, 0, 3896, 3897, 7, 23, 0, 0, 3897, 3898, 7, 8, 0, 0, 3898, 3899, 7, 11, 0, 0, 3899, 3900, 7, 8, 0, 0, 3900, 3901, 7, 15, 0, 0, 3901, 3902, 7, 14, 0, 0, 3902, 3903, 7, 9, 0, 0, 3903, 3904, 7, 25, 0, 0, 3904, 3905, 7, 17, 0, 0, 3905, 3906, 7, 11, 0, 0, 3906, 3907, 7, 13, 0, 0, 3907, 740, 1, 0, 0, 0, 3908, 3909, 7, 23, 0, 0, 3909, 3910, 7, 8, 0, 0, 3910, 3911, 7, 22, 0, 0, 3911, 3912, 7, 8, 0, 0, 3912, 3913, 7, 20, 0, 0, 3913, 3914, 7, 30, 0, 0, 3914, 3915, 7, 8, 0, 0, 3915, 742, 1, 0, 0, 0, 3916, 3917, 7, 23, 0, 0, 3917, 3918, 7, 8, 0, 0, 3918, 3919, 7, 7, 0, 0, 3919, 3920, 7, 18, 0, 0, 3920, 3921, 7, 10, 0, 0, 3921, 3922, 7, 17, 0, 0, 3922, 3923, 7, 11, 0, 0, 3923, 3924, 7, 8, 0, 0, 3924, 744, 1, 0, 0, 0, 3925, 3926, 7, 23, 0, 0, 3926, 3927, 7, 8, 0, 0, 3927, 3928, 7, 7, 0, 0, 3928, 3929, 7, 20, 0, 0, 3929, 3930, 7, 24, 0, 0, 3930, 3931, 7, 24, 0, 0, 3931, 3932, 7, 11, 0, 0, 3932, 3933, 7, 13, 0, 0, 3933, 746, 1, 0, 0, 0, 3934, 3935, 7, 23, 0, 0, 3935, 3936, 7, 8, 0, 0, 3936, 3937, 7, 17, 0, 0, 3937, 3938, 7, 18, 0, 0, 3938, 3939, 7, 7, 0, 0, 3939, 748, 1, 0, 0, 0, 3940, 3941, 7, 23, 0, 0, 3941, 3942, 7, 25, 0, 0, 3942, 3943, 7, 13, 0, 0, 3943, 3944, 7, 6, 0, 0, 3944, 3945, 7, 17, 0, 0, 3945, 3946, 7, 11, 0, 0, 3946, 750, 1, 0, 0, 0, 3947, 3948, 7, 28, 0, 0, 3948, 3949, 7, 6, 0, 0, 3949, 3950, 7, 15, 0, 0, 3950, 3951, 7, 23, 0, 0, 3951, 3952, 7, 23, 0, 0, 3952, 3953, 7, 16, 0, 0, 3953, 752, 1, 0, 0, 0, 3954, 3955, 7, 28, 0, 0, 3955, 3956, 7, 6, 0, 0, 3956, 3957, 7, 7, 0, 0, 3957, 3958, 7, 18, 0, 0, 3958, 3959, 7, 13, 0, 0, 3959, 754, 1, 0, 0, 0, 3960, 3961, 7, 28, 0, 0, 3961, 3962, 7, 6, 0, 0, 3962, 3963, 7, 7, 0, 0, 3963, 3964, 7, 18, 0, 0, 3964, 3965, 7, 13, 0, 0, 3965, 3966, 7, 6, 0, 0, 3966, 3967, 7, 17, 0, 0, 3967, 3968, 7, 11, 0, 0, 3968, 756, 1, 0, 0, 0, 3969, 3970, 7, 28, 0, 0, 3970, 3971, 7, 6, 0, 0, 3971, 3972, 7, 7, 0, 0, 3972, 3973, 7, 18, 0, 0, 3973, 3974, 7, 13, 0, 0, 3974, 3975, 7, 6, 0, 0, 3975, 3976, 7, 17, 0, 0, 3976, 3977, 7, 20, 0, 0, 3977, 3978, 7, 14, 0, 0, 3978, 758, 1, 0, 0, 0, 3979, 3980, 7, 28, 0, 0, 3980, 3981, 7, 6, 0, 0, 3981, 3982, 7, 14, 0, 0, 3982, 3983, 7, 9, 0, 0, 3983, 3984, 7, 18, 0, 0, 3984, 3985, 7, 8, 0, 0, 3985, 3986, 7, 24, 0, 0, 3986, 760, 1, 0, 0, 0, 3987, 3988, 7, 28, 0, 0, 3988, 3989, 7, 11, 0, 0, 3989, 3990, 7, 14, 0, 0, 3990, 3991, 7, 10, 0, 0, 3991, 3992, 7, 18, 0, 0, 3992, 3993, 7, 20, 0, 0, 3993, 3994, 7, 8, 0, 0, 3994, 762, 1, 0, 0, 0, 3995, 3996, 7, 28, 0, 0, 3996, 3997, 7, 18, 0, 0, 3997, 3998, 7, 11, 0, 0, 3998, 3999, 7, 30, 0, 0, 3999, 764, 1, 0, 0, 0, 4000, 4001, 7, 28, 0, 0, 4001, 4002, 7, 20, 0, 0, 4002, 4003, 7, 7, 0, 0, 4003, 4004, 7, 6, 0, 0, 4004, 4005, 7, 17, 0, 0, 4005, 4006, 7, 18, 0, 0, 4006, 4007, 7, 7, 0, 0, 4007, 4008, 7, 11, 0, 0, 4008, 766, 1, 0, 0, 0, 4009, 4010, 7, 30, 0, 0, 4010, 4011, 7, 21, 0, 0, 4011, 4012, 7, 18, 0, 0, 4012, 4013, 7, 17, 0, 0, 4013, 4014, 7, 11, 0, 0, 4014, 4015, 7, 10, 0, 0, 4015, 4016, 7, 25, 0, 0, 4016, 4017, 7, 6, 0, 0, 4017, 4018, 7, 15, 0, 0, 4018, 4019, 7, 11, 0, 0, 4019, 768, 1, 0, 0, 0, 4020, 4021, 7, 30, 0, 0, 4021, 4022, 7, 18, 0, 0, 4022, 4023, 7, 17, 0, 0, 4023, 4024, 7, 21, 0, 0, 4024, 4025, 7, 20, 0, 0, 4025, 4026, 7, 23, 0, 0, 4026, 4027, 7, 17, 0, 0, 4027, 770, 1, 0, 0, 0, 4028, 4029, 7, 30, 0, 0, 4029, 4030, 7, 20, 0, 0, 4030, 4031, 7, 14, 0, 0, 4031, 4032, 7, 22, 0, 0, 4032, 772, 1, 0, 0, 0, 4033, 4034, 7, 30, 0, 0, 4034, 4035, 7, 14, 0, 0, 4035, 4036, 7, 6, 0, 0, 4036, 4037, 7, 25, 0, 0, 4037, 4038, 7, 25, 0, 0, 4038, 4039, 7, 11, 0, 0, 4039, 4040, 7, 14, 0, 0, 4040, 774, 1, 0, 0, 0, 4041, 4042, 7, 30, 0, 0, 4042, 4043, 7, 14, 0, 0, 4043, 4044, 7, 18, 0, 0, 4044, 4045, 7, 17, 0, 0, 4045, 4046, 7, 11, 0, 0, 4046, 776, 1, 0, 0, 0, 4047, 4048, 7, 27, 0, 0, 4048, 4049, 7, 16, 0, 0, 4049, 4050, 7, 7, 0, 0, 4050, 778, 1, 0, 0, 0, 4051, 4052, 7, 9, 0, 0, 4052, 4053, 7, 11, 0, 0, 4053, 4054, 7, 6, 0, 0, 4054, 4055, 7, 14, 0, 0, 4055, 780, 1, 0, 0, 0, 4056, 4057, 7, 9, 0, 0, 4057, 4058, 7, 11, 0, 0, 4058, 4059, 7, 10, 0, 0, 4059, 782, 1, 0, 0, 0, 4060, 4061, 7, 12, 0, 0, 4061, 4062, 7, 20, 0, 0, 4062, 4063, 7, 8, 0, 0, 4063, 4064, 7, 11, 0, 0, 4064, 784, 1, 0, 0, 0, 4065, 4066, 7, 19, 0, 0, 4066, 4067, 7, 11, 0, 0, 4067, 4068, 7, 17, 0, 0, 4068, 4069, 7, 30, 0, 0, 4069, 4070, 7, 11, 0, 0, 4070, 4071, 7, 11, 0, 0, 4071, 4072, 7, 8, 0, 0, 4072, 786, 1, 0, 0, 0, 4073, 4074, 7, 19, 0, 0, 4074, 4075, 7, 18, 0, 0, 4075, 4076, 7, 24, 0, 0, 4076, 4077, 7, 18, 0, 0, 4077, 4078, 7, 8, 0, 0, 4078, 4079, 7, 17, 0, 0, 4079, 788, 1, 0, 0, 0, 4080, 4081, 7, 19, 0, 0, 4081, 4082, 7, 18, 0, 0, 4082, 4083, 7, 17, 0, 0, 4083, 790, 1, 0, 0, 0, 4084, 4085, 7, 19, 0, 0, 4085, 4086, 7, 20, 0, 0, 4086, 4087, 7, 20, 0, 0, 4087, 4088, 7, 7, 0, 0, 4088, 4089, 7, 11, 0, 0, 4089, 4090, 7, 6, 0, 0, 4090, 4091, 7, 8, 0, 0, 4091, 792, 1, 0, 0, 0, 4092, 4093, 7, 15, 0, 0, 4093, 4094, 7, 21, 0, 0, 4094, 4095, 7, 6, 0, 0, 4095, 4096, 7, 14, 0, 0, 4096, 794, 1, 0, 0, 0, 4097, 4098, 7, 15, 0, 0, 4098, 4099, 7, 21, 0, 0, 4099, 4100, 7, 6, 0, 0, 4100, 4101, 7, 14, 0, 0, 4101, 4102, 7, 6, 0, 0, 4102, 4103, 7, 15, 0, 0, 4103, 4104, 7, 17, 0, 0, 4104, 4105, 7, 11, 0, 0, 4105, 4106, 7, 14, 0, 0, 4106, 796, 1, 0, 0, 0, 4107, 4108, 7, 15, 0, 0, 4108, 4109, 7, 20, 0, 0, 4109, 4110, 7, 6, 0, 0, 4110, 4111, 7, 7, 0, 0, 4111, 4112, 7, 11, 0, 0, 4112, 4113, 7, 10, 0, 0, 4113, 4114, 7, 15, 0, 0, 4114, 4115, 7, 11, 0, 0, 4115, 798, 1, 0, 0, 0, 4116, 4117, 7, 13, 0, 0, 4117, 4118, 7, 11, 0, 0, 4118, 4119, 7, 15, 0, 0, 4119, 800, 1, 0, 0, 0, 4120, 4121, 7, 13, 0, 0, 4121, 4122, 7, 11, 0, 0, 4122, 4123, 7, 15, 0, 0, 4123, 4124, 7, 18, 0, 0, 4124, 4125, 7, 16, 0, 0, 4125, 4126, 7, 6, 0, 0, 4126, 4127, 7, 7, 0, 0, 4127, 802, 1, 0, 0, 0, 4128, 4129, 7, 11, 0, 0, 4129, 4130, 7, 27, 0, 0, 4130, 4131, 7, 18, 0, 0, 4131, 4132, 7, 10, 0, 0, 4132, 4133, 7, 17, 0, 0, 4133, 4134, 7, 10, 0, 0, 4134, 804, 1, 0, 0, 0, 4135, 4136, 7, 11, 0, 0, 4136, 4137, 7, 27, 0, 0, 4137, 4138, 7, 17, 0, 0, 4138, 4139, 7, 14, 0, 0, 4139, 4140, 7, 6, 0, 0, 4140, 4141, 7, 15, 0, 0, 4141, 4142, 7, 17, 0, 0, 4142, 806, 1, 0, 0, 0, 4143, 4144, 7, 26, 0, 0, 4144, 4145, 7, 7, 0, 0, 4145, 4146, 7, 20, 0, 0, 4146, 4147, 7, 6, 0, 0, 4147, 4148, 7, 17, 0, 0, 4148, 808, 1, 0, 0, 0, 4149, 4150, 7, 24, 0, 0, 4150, 4151, 7, 14, 0, 0, 4151, 4152, 7, 11, 0, 0, 4152, 4153, 7, 6, 0, 0, 4153, 4154, 7, 17, 0, 0, 4154, 4155, 7, 11, 0, 0, 4155, 4156, 7, 10, 0, 0, 4156, 4157, 7, 17, 0, 0, 4157, 810, 1, 0, 0, 0, 4158, 4159, 7, 18, 0, 0, 4159, 4160, 7, 8, 0, 0, 4160, 4161, 7, 20, 0, 0, 4161, 4162, 7, 23, 0, 0, 4162, 4163, 7, 17, 0, 0, 4163, 812, 1, 0, 0, 0, 4164, 4165, 7, 18, 0, 0, 4165, 4166, 7, 8, 0, 0, 4166, 4167, 7, 17, 0, 0, 4167, 814, 1, 0, 0, 0, 4168, 4169, 7, 18, 0, 0, 4169, 4170, 7, 8, 0, 0, 4170, 4171, 7, 17, 0, 0, 4171, 4172, 7, 11, 0, 0, 4172, 4173, 7, 24, 0, 0, 4173, 4174, 7, 11, 0, 0, 4174, 4175, 7, 14, 0, 0, 4175, 816, 1, 0, 0, 0, 4176, 4177, 7, 18, 0, 0, 4177, 4178, 7, 8, 0, 0, 4178, 4179, 7, 17, 0, 0, 4179, 4180, 7, 11, 0, 0, 4180, 4181, 7, 14, 0, 0, 4181, 4182, 7, 28, 0, 0, 4182, 4183, 7, 6, 0, 0, 4183, 4184, 7, 7, 0, 0, 4184, 818, 1, 0, 0, 0, 4185, 4186, 7, 7, 0, 0, 4186, 4187, 7, 11, 0, 0, 4187, 4188, 7, 6, 0, 0, 4188, 4189, 7, 10, 0, 0, 4189, 4190, 7, 17, 0, 0, 4190, 820, 1, 0, 0, 0, 4191, 4192, 7, 8, 0, 0, 4192, 4193, 7, 6, 0, 0, 4193, 4194, 7, 17, 0, 0, 4194, 4195, 7, 18, 0, 0, 4195, 4196, 7, 20, 0, 0, 4196, 4197, 7, 8, 0, 0, 4197, 4198, 7, 6, 0, 0, 4198, 4199, 7, 7, 0, 0, 4199, 822, 1, 0, 0, 0, 4200, 4201, 7, 8, 0, 0, 4201, 4202, 7, 15, 0, 0, 4202, 4203, 7, 21, 0, 0, 4203, 4204, 7, 6, 0, 0, 4204, 4205, 7, 14, 0, 0, 4205, 824, 1, 0, 0, 0, 4206, 4207, 7, 8, 0, 0, 4207, 4208, 7, 20, 0, 0, 4208, 4209, 7, 8, 0, 0, 4209, 4210, 7, 11, 0, 0, 4210, 826, 1, 0, 0, 0, 4211, 4212, 7, 8, 0, 0, 4212, 4213, 7, 23, 0, 0, 4213, 4214, 7, 7, 0, 0, 4214, 4215, 7, 7, 0, 0, 4215, 4216, 7, 18, 0, 0, 4216, 4217, 7, 26, 0, 0, 4217, 828, 1, 0, 0, 0, 4218, 4219, 7, 8, 0, 0, 4219, 4220, 7, 23, 0, 0, 4220, 4221, 7, 16, 0, 0, 4221, 4222, 7, 11, 0, 0, 4222, 4223, 7, 14, 0, 0, 4223, 4224, 7, 18, 0, 0, 4224, 4225, 7, 15, 0, 0, 4225, 830, 1, 0, 0, 0, 4226, 4227, 7, 20, 0, 0, 4227, 4228, 7, 28, 0, 0, 4228, 4229, 7, 11, 0, 0, 4229, 4230, 7, 14, 0, 0, 4230, 4231, 7, 7, 0, 0, 4231, 4232, 7, 6, 0, 0, 4232, 4233, 7, 9, 0, 0, 4233, 832, 1, 0, 0, 0, 4234, 4235, 7, 25, 0, 0, 4235, 4236, 7, 20, 0, 0, 4236, 4237, 7, 10, 0, 0, 4237, 4238, 7, 18, 0, 0, 4238, 4239, 7, 17, 0, 0, 4239, 4240, 7, 18, 0, 0, 4240, 4241, 7, 20, 0, 0, 4241, 4242, 7, 8, 0, 0, 4242, 834, 1, 0, 0, 0, 4243, 4244, 7, 25, 0, 0, 4244, 4245, 7, 14, 0, 0, 4245, 4246, 7, 11, 0, 0, 4246, 4247, 7, 15, 0, 0, 4247, 4248, 7, 18, 0, 0, 4248, 4249, 7, 10, 0, 0, 4249, 4250, 7, 18, 0, 0, 4250, 4251, 7, 20, 0, 0, 4251, 4252, 7, 8, 0, 0, 4252, 836, 1, 0, 0, 0, 4253, 4254, 7, 14, 0, 0, 4254, 4255, 7, 11, 0, 0, 4255, 4256, 7, 6, 0, 0, 4256, 4257, 7, 7, 0, 0, 4257, 838, 1, 0, 0, 0, 4258, 4259, 7, 14, 0, 0, 4259, 4260, 7, 20, 0, 0, 4260, 4261, 7, 30, 0, 0, 4261, 840, 1, 0, 0, 0, 4262, 4263, 7, 10, 0, 0, 4263, 4264, 7, 11, 0, 0, 4264, 4265, 7, 17, 0, 0, 4265, 4266, 7, 20, 0, 0, 4266, 4267, 7, 26, 0, 0, 4267, 842, 1, 0, 0, 0, 4268, 4269, 7, 10, 0, 0, 4269, 4270, 7, 16, 0, 0, 4270, 4271, 7, 6, 0, 0, 4271, 4272, 7, 7, 0, 0, 4272, 4273, 7, 7, 0, 0, 4273, 4274, 7, 18, 0, 0, 4274, 4275, 7, 8, 0, 0, 4275, 4276, 7, 17, 0, 0, 4276, 844, 1, 0, 0, 0, 4277, 4278, 7, 10, 0, 0, 4278, 4279, 7, 23, 0, 0, 4279, 4280, 7, 19, 0, 0, 4280, 4281, 7, 10, 0, 0, 4281, 4282, 7, 17, 0, 0, 4282, 4283, 7, 14, 0, 0, 4283, 4284, 7, 18, 0, 0, 4284, 4285, 7, 8, 0, 0, 4285, 4286, 7, 24, 0, 0, 4286, 846, 1, 0, 0, 0, 4287, 4288, 7, 17, 0, 0, 4288, 4289, 7, 18, 0, 0, 4289, 4290, 7, 16, 0, 0, 4290, 4291, 7, 11, 0, 0, 4291, 848, 1, 0, 0, 0, 4292, 4293, 7, 17, 0, 0, 4293, 4294, 7, 18, 0, 0, 4294, 4295, 7, 16, 0, 0, 4295, 4296, 7, 11, 0, 0, 4296, 4297, 7, 10, 0, 0, 4297, 4298, 7, 17, 0, 0, 4298, 4299, 7, 6, 0, 0, 4299, 4300, 7, 16, 0, 0, 4300, 4301, 7, 25, 0, 0, 4301, 850, 1, 0, 0, 0, 4302, 4303, 7, 17, 0, 0, 4303, 4304, 7, 14, 0, 0, 4304, 4305, 7, 11, 0, 0, 4305, 4306, 7, 6, 0, 0, 4306, 4307, 7, 17, 0, 0, 4307, 852, 1, 0, 0, 0, 4308, 4309, 7, 17, 0, 0, 4309, 4310, 7, 14, 0, 0, 4310, 4311, 7, 18, 0, 0, 4311, 4312, 7, 16, 0, 0, 4312, 854, 1, 0, 0, 0, 4313, 4314, 7, 28, 0, 0, 4314, 4315, 7, 6, 0, 0, 4315, 4316, 7, 7, 0, 0, 4316, 4317, 7, 23, 0, 0, 4317, 4318, 7, 11, 0, 0, 4318, 4319, 7, 10, 0, 0, 4319, 856, 1, 0, 0, 0, 4320, 4321, 7, 28, 0, 0, 4321, 4322, 7, 6, 0, 0, 4322, 4323, 7, 14, 0, 0, 4323, 4324, 7, 15, 0, 0, 4324, 4325, 7, 21, 0, 0, 4325, 4326, 7, 6, 0, 0, 4326, 4327, 7, 14, 0, 0, 4327, 858, 1, 0, 0, 0, 4328, 4329, 7, 27, 0, 0, 4329, 4330, 7, 16, 0, 0, 4330, 4331, 7, 7, 0, 0, 4331, 4332, 7, 6, 0, 0, 4332, 4333, 7, 17, 0, 0, 4333, 4334, 7, 17, 0, 0, 4334, 4335, 7, 14, 0, 0, 4335, 4336, 7, 18, 0, 0, 4336, 4337, 7, 19, 0, 0, 4337, 4338, 7, 23, 0, 0, 4338, 4339, 7, 17, 0, 0, 4339, 4340, 7, 11, 0, 0, 4340, 4341, 7, 10, 0, 0, 4341, 860, 1, 0, 0, 0, 4342, 4343, 7, 27, 0, 0, 4343, 4344, 7, 16, 0, 0, 4344, 4345, 7, 7, 0, 0, 4345, 4346, 7, 15, 0, 0, 4346, 4347, 7, 20, 0, 0, 4347, 4348, 7, 8, 0, 0, 4348, 4349, 7, 15, 0, 0, 4349, 4350, 7, 6, 0, 0, 4350, 4351, 7, 17, 0, 0, 4351, 862, 1, 0, 0, 0, 4352, 4353, 7, 27, 0, 0, 4353, 4354, 7, 16, 0, 0, 4354, 4355, 7, 7, 0, 0, 4355, 4356, 7, 11, 0, 0, 4356, 4357, 7, 7, 0, 0, 4357, 4358, 7, 11, 0, 0, 4358, 4359, 7, 16, 0, 0, 4359, 4360, 7, 11, 0, 0, 4360, 4361, 7, 8, 0, 0, 4361, 4362, 7, 17, 0, 0, 4362, 864, 1, 0, 0, 0, 4363, 4364, 7, 27, 0, 0, 4364, 4365, 7, 16, 0, 0, 4365, 4366, 7, 7, 0, 0, 4366, 4367, 7, 11, 0, 0, 4367, 4368, 7, 27, 0, 0, 4368, 4369, 7, 18, 0, 0, 4369, 4370, 7, 10, 0, 0, 4370, 4371, 7, 17, 0, 0, 4371, 4372, 7, 10, 0, 0, 4372, 866, 1, 0, 0, 0, 4373, 4374, 7, 27, 0, 0, 4374, 4375, 7, 16, 0, 0, 4375, 4376, 7, 7, 0, 0, 4376, 4377, 7, 26, 0, 0, 4377, 4378, 7, 20, 0, 0, 4378, 4379, 7, 14, 0, 0, 4379, 4380, 7, 11, 0, 0, 4380, 4381, 7, 10, 0, 0, 4381, 4382, 7, 17, 0, 0, 4382, 868, 1, 0, 0, 0, 4383, 4384, 7, 27, 0, 0, 4384, 4385, 7, 16, 0, 0, 4385, 4386, 7, 7, 0, 0, 4386, 4387, 7, 25, 0, 0, 4387, 4388, 7, 6, 0, 0, 4388, 4389, 7, 14, 0, 0, 4389, 4390, 7, 10, 0, 0, 4390, 4391, 7, 11, 0, 0, 4391, 870, 1, 0, 0, 0, 4392, 4393, 7, 27, 0, 0, 4393, 4394, 7, 16, 0, 0, 4394, 4395, 7, 7, 0, 0, 4395, 4396, 7, 25, 0, 0, 4396, 4397, 7, 18, 0, 0, 4397, 872, 1, 0, 0, 0, 4398, 4399, 7, 27, 0, 0, 4399, 4400, 7, 16, 0, 0, 4400, 4401, 7, 7, 0, 0, 4401, 4402, 7, 14, 0, 0, 4402, 4403, 7, 20, 0, 0, 4403, 4404, 7, 20, 0, 0, 4404, 4405, 7, 17, 0, 0, 4405, 874, 1, 0, 0, 0, 4406, 4407, 7, 27, 0, 0, 4407, 4408, 7, 16, 0, 0, 4408, 4409, 7, 7, 0, 0, 4409, 4410, 7, 10, 0, 0, 4410, 4411, 7, 11, 0, 0, 4411, 4412, 7, 14, 0, 0, 4412, 4413, 7, 18, 0, 0, 4413, 4414, 7, 6, 0, 0, 4414, 4415, 7, 7, 0, 0, 4415, 4416, 7, 18, 0, 0, 4416, 4417, 7, 12, 0, 0, 4417, 4418, 7, 11, 0, 0, 4418, 876, 1, 0, 0, 0, 4419, 4420, 7, 15, 0, 0, 4420, 4421, 7, 6, 0, 0, 4421, 4422, 7, 7, 0, 0, 4422, 4423, 7, 7, 0, 0, 4423, 878, 1, 0, 0, 0, 4424, 4425, 7, 15, 0, 0, 4425, 4426, 7, 23, 0, 0, 4426, 4427, 7, 14, 0, 0, 4427, 4428, 7, 14, 0, 0, 4428, 4429, 7, 11, 0, 0, 4429, 4430, 7, 8, 0, 0, 4430, 4431, 7, 17, 0, 0, 4431, 880, 1, 0, 0, 0, 4432, 4433, 7, 6, 0, 0, 4433, 4434, 7, 17, 0, 0, 4434, 4435, 7, 17, 0, 0, 4435, 4436, 7, 6, 0, 0, 4436, 4437, 7, 15, 0, 0, 4437, 4438, 7, 21, 0, 0, 4438, 882, 1, 0, 0, 0, 4439, 4440, 7, 13, 0, 0, 4440, 4441, 7, 11, 0, 0, 4441, 4442, 7, 17, 0, 0, 4442, 4443, 7, 6, 0, 0, 4443, 4444, 7, 15, 0, 0, 4444, 4445, 7, 21, 0, 0, 4445, 884, 1, 0, 0, 0, 4446, 4447, 7, 11, 0, 0, 4447, 4448, 7, 27, 0, 0, 4448, 4449, 7, 25, 0, 0, 4449, 4450, 7, 14, 0, 0, 4450, 4451, 7, 11, 0, 0, 4451, 4452, 7, 10, 0, 0, 4452, 4453, 7, 10, 0, 0, 4453, 4454, 7, 18, 0, 0, 4454, 4455, 7, 20, 0, 0, 4455, 4456, 7, 8, 0, 0, 4456, 886, 1, 0, 0, 0, 4457, 4458, 7, 24, 0, 0, 4458, 4459, 7, 11, 0, 0, 4459, 4460, 7, 8, 0, 0, 4460, 4461, 7, 11, 0, 0, 4461, 4462, 7, 14, 0, 0, 4462, 4463, 7, 6, 0, 0, 4463, 4464, 7, 17, 0, 0, 4464, 4465, 7, 11, 0, 0, 4465, 4466, 7, 13, 0, 0, 4466, 888, 1, 0, 0, 0, 4467, 4468, 7, 7, 0, 0, 4468, 4469, 7, 20, 0, 0, 4469, 4470, 7, 24, 0, 0, 4470, 4471, 7, 24, 0, 0, 4471, 4472, 7, 11, 0, 0, 4472, 4473, 7, 13, 0, 0, 4473, 890, 1, 0, 0, 0, 4474, 4475, 7, 10, 0, 0, 4475, 4476, 7, 17, 0, 0, 4476, 4477, 7, 20, 0, 0, 4477, 4478, 7, 14, 0, 0, 4478, 4479, 7, 11, 0, 0, 4479, 4480, 7, 13, 0, 0, 4480, 892, 1, 0, 0, 0, 4481, 4482, 7, 18, 0, 0, 4482, 4483, 7, 8, 0, 0, 4483, 4484, 7, 15, 0, 0, 4484, 4485, 7, 7, 0, 0, 4485, 4486, 7, 23, 0, 0, 4486, 4487, 7, 13, 0, 0, 4487, 4488, 7, 11, 0, 0, 4488, 894, 1, 0, 0, 0, 4489, 4490, 7, 14, 0, 0, 4490, 4491, 7, 20, 0, 0, 4491, 4492, 7, 23, 0, 0, 4492, 4493, 7, 17, 0, 0, 4493, 4494, 7, 18, 0, 0, 4494, 4495, 7, 8, 0, 0, 4495, 4496, 7, 11, 0, 0, 4496, 896, 1, 0, 0, 0, 4497, 4498, 7, 17, 0, 0, 4498, 4499, 7, 14, 0, 0, 4499, 4500, 7, 6, 0, 0, 4500, 4501, 7, 8, 0, 0, 4501, 4502, 7, 10, 0, 0, 4502, 4503, 7, 26, 0, 0, 4503, 4504, 7, 20, 0, 0, 4504, 4505, 7, 14, 0, 0, 4505, 4506, 7, 16, 0, 0, 4506, 898, 1, 0, 0, 0, 4507, 4508, 7, 18, 0, 0, 4508, 4509, 7, 16, 0, 0, 4509, 4510, 7, 25, 0, 0, 4510, 4511, 7, 20, 0, 0, 4511, 4512, 7, 14, 0, 0, 4512, 4513, 7, 17, 0, 0, 4513, 900, 1, 0, 0, 0, 4514, 4515, 7, 25, 0, 0, 4515, 4516, 7, 20, 0, 0, 4516, 4517, 7, 7, 0, 0, 4517, 4518, 7, 18, 0, 0, 4518, 4519, 7, 15, 0, 0, 4519, 4520, 7, 9, 0, 0, 4520, 902, 1, 0, 0, 0, 4521, 4522, 7, 16, 0, 0, 4522, 4523, 7, 11, 0, 0, 4523, 4524, 7, 17, 0, 0, 4524, 4525, 7, 21, 0, 0, 4525, 4526, 7, 20, 0, 0, 4526, 4527, 7, 13, 0, 0, 4527, 904, 1, 0, 0, 0, 4528, 4529, 7, 14, 0, 0, 4529, 4530, 7, 11, 0, 0, 4530, 4531, 7, 26, 0, 0, 4531, 4532, 7, 11, 0, 0, 4532, 4533, 7, 14, 0, 0, 4533, 4534, 7, 11, 0, 0, 4534, 4535, 7, 8, 0, 0, 4535, 4536, 7, 15, 0, 0, 4536, 4537, 7, 18, 0, 0, 4537, 4538, 7, 8, 0, 0, 4538, 4539, 7, 24, 0, 0, 4539, 906, 1, 0, 0, 0, 4540, 4541, 7, 8, 0, 0, 4541, 4542, 7, 11, 0, 0, 4542, 4543, 7, 30, 0, 0, 4543, 908, 1, 0, 0, 0, 4544, 4545, 7, 20, 0, 0, 4545, 4546, 7, 7, 0, 0, 4546, 4547, 7, 13, 0, 0, 4547, 910, 1, 0, 0, 0, 4548, 4549, 7, 28, 0, 0, 4549, 4550, 7, 6, 0, 0, 4550, 4551, 7, 7, 0, 0, 4551, 4552, 7, 23, 0, 0, 4552, 4553, 7, 11, 0, 0, 4553, 912, 1, 0, 0, 0, 4554, 4555, 7, 10, 0, 0, 4555, 4556, 7, 23, 0, 0, 4556, 4557, 7, 19, 0, 0, 4557, 4558, 7, 10, 0, 0, 4558, 4559, 7, 15, 0, 0, 4559, 4560, 7, 14, 0, 0, 4560, 4561, 7, 18, 0, 0, 4561, 4562, 7, 25, 0, 0, 4562, 4563, 7, 17, 0, 0, 4563, 4564, 7, 18, 0, 0, 4564, 4565, 7, 20, 0, 0, 4565, 4566, 7, 8, 0, 0, 4566, 914, 1, 0, 0, 0, 4567, 4568, 7, 25, 0, 0, 4568, 4569, 7, 23, 0, 0, 4569, 4570, 7, 19, 0, 0, 4570, 4571, 7, 7, 0, 0, 4571, 4572, 7, 18, 0, 0, 4572, 4573, 7, 15, 0, 0, 4573, 4574, 7, 6, 0, 0, 4574, 4575, 7, 17, 0, 0, 4575, 4576, 7, 18, 0, 0, 4576, 4577, 7, 20, 0, 0, 4577, 4578, 7, 8, 0, 0, 4578, 916, 1, 0, 0, 0, 4579, 4580, 7, 20, 0, 0, 4580, 4581, 7, 23, 0, 0, 4581, 4582, 7, 17, 0, 0, 4582, 918, 1, 0, 0, 0, 4583, 4584, 7, 11, 0, 0, 4584, 4585, 7, 8, 0, 0, 4585, 4586, 7, 13, 0, 0, 4586, 920, 1, 0, 0, 0, 4587, 4588, 7, 14, 0, 0, 4588, 4589, 7, 20, 0, 0, 4589, 4590, 7, 23, 0, 0, 4590, 4591, 7, 17, 0, 0, 4591, 4592, 7, 18, 0, 0, 4592, 4593, 7, 8, 0, 0, 4593, 4594, 7, 11, 0, 0, 4594, 4595, 7, 10, 0, 0, 4595, 922, 1, 0, 0, 0, 4596, 4597, 7, 10, 0, 0, 4597, 4598, 7, 15, 0, 0, 4598, 4599, 7, 21, 0, 0, 4599, 4600, 7, 11, 0, 0, 4600, 4601, 7, 16, 0, 0, 4601, 4602, 7, 6, 0, 0, 4602, 4603, 7, 10, 0, 0, 4603, 924, 1, 0, 0, 0, 4604, 4605, 7, 25, 0, 0, 4605, 4606, 7, 14, 0, 0, 4606, 4607, 7, 20, 0, 0, 4607, 4608, 7, 15, 0, 0, 4608, 4609, 7, 11, 0, 0, 4609, 4610, 7, 13, 0, 0, 4610, 4611, 7, 23, 0, 0, 4611, 4612, 7, 14, 0, 0, 4612, 4613, 7, 11, 0, 0, 4613, 4614, 7, 10, 0, 0, 4614, 926, 1, 0, 0, 0, 4615, 4616, 7, 18, 0, 0, 4616, 4617, 7, 8, 0, 0, 4617, 4618, 7, 25, 0, 0, 4618, 4619, 7, 23, 0, 0, 4619, 4620, 7, 17, 0, 0, 4620, 928, 1, 0, 0, 0, 4621, 4622, 7, 10, 0, 0, 4622, 4623, 7, 23, 0, 0, 4623, 4624, 7, 25, 0, 0, 4624, 4625, 7, 25, 0, 0, 4625, 4626, 7, 20, 0, 0, 4626, 4627, 7, 14, 0, 0, 4627, 4628, 7, 17, 0, 0, 4628, 930, 1, 0, 0, 0, 4629, 4630, 7, 25, 0, 0, 4630, 4631, 7, 6, 0, 0, 4631, 4632, 7, 14, 0, 0, 4632, 4633, 7, 6, 0, 0, 4633, 4634, 7, 7, 0, 0, 4634, 4635, 7, 7, 0, 0, 4635, 4636, 7, 11, 0, 0, 4636, 4637, 7, 7, 0, 0, 4637, 932, 1, 0, 0, 0, 4638, 4639, 7, 10, 0, 0, 4639, 4640, 7, 29, 0, 0, 4640, 4641, 7, 7, 0, 0, 4641, 934, 1, 0, 0, 0, 4642, 4643, 7, 13, 0, 0, 4643, 4644, 7, 11, 0, 0, 4644, 4645, 7, 25, 0, 0, 4645, 4646, 7, 11, 0, 0, 4646, 4647, 7, 8, 0, 0, 4647, 4648, 7, 13, 0, 0, 4648, 4649, 7, 10, 0, 0, 4649, 936, 1, 0, 0, 0, 4650, 4651, 7, 20, 0, 0, 4651, 4652, 7, 28, 0, 0, 4652, 4653, 7, 11, 0, 0, 4653, 4654, 7, 14, 0, 0, 4654, 4655, 7, 14, 0, 0, 4655, 4656, 7, 18, 0, 0, 4656, 4657, 7, 13, 0, 0, 4657, 4658, 7, 18, 0, 0, 4658, 4659, 7, 8, 0, 0, 4659, 4660, 7, 24, 0, 0, 4660, 938, 1, 0, 0, 0, 4661, 4662, 7, 15, 0, 0, 4662, 4663, 7, 20, 0, 0, 4663, 4664, 7, 8, 0, 0, 4664, 4665, 7, 26, 0, 0, 4665, 4666, 7, 7, 0, 0, 4666, 4667, 7, 18, 0, 0, 4667, 4668, 7, 15, 0, 0, 4668, 4669, 7, 17, 0, 0, 4669, 940, 1, 0, 0, 0, 4670, 4671, 7, 10, 0, 0, 4671, 4672, 7, 22, 0, 0, 4672, 4673, 7, 18, 0, 0, 4673, 4674, 7, 25, 0, 0, 4674, 942, 1, 0, 0, 0, 4675, 4676, 7, 7, 0, 0, 4676, 4677, 7, 20, 0, 0, 4677, 4678, 7, 15, 0, 0, 4678, 4679, 7, 22, 0, 0, 4679, 4680, 7, 11, 0, 0, 4680, 4681, 7, 13, 0, 0, 4681, 944, 1, 0, 0, 0, 4682, 4683, 7, 17, 0, 0, 4683, 4684, 7, 18, 0, 0, 4684, 4685, 7, 11, 0, 0, 4685, 4686, 7, 10, 0, 0, 4686, 946, 1, 0, 0, 0, 4687, 4688, 7, 14, 0, 0, 4688, 4689, 7, 20, 0, 0, 4689, 4690, 7, 7, 0, 0, 4690, 4691, 7, 7, 0, 0, 4691, 4692, 7, 23, 0, 0, 4692, 4693, 7, 25, 0, 0, 4693, 948, 1, 0, 0, 0, 4694, 4695, 7, 15, 0, 0, 4695, 4696, 7, 23, 0, 0, 4696, 4697, 7, 19, 0, 0, 4697, 4698, 7, 11, 0, 0, 4698, 950, 1, 0, 0, 0, 4699, 4700, 7, 24, 0, 0, 4700, 4701, 7, 14, 0, 0, 4701, 4702, 7, 20, 0, 0, 4702, 4703, 7, 23, 0, 0, 4703, 4704, 7, 25, 0, 0, 4704, 4705, 7, 18, 0, 0, 4705, 4706, 7, 8, 0, 0, 4706, 4707, 7, 24, 0, 0, 4707, 952, 1, 0, 0, 0, 4708, 4709, 7, 10, 0, 0, 4709, 4710, 7, 11, 0, 0, 4710, 4711, 7, 17, 0, 0, 4711, 4712, 7, 10, 0, 0, 4712, 954, 1, 0, 0, 0, 4713, 4714, 7, 17, 0, 0, 4714, 4715, 7, 6, 0, 0, 4715, 4716, 7, 19, 0, 0, 4716, 4717, 7, 7, 0, 0, 4717, 4718, 7, 11, 0, 0, 4718, 4719, 7, 10, 0, 0, 4719, 4720, 7, 6, 0, 0, 4720, 4721, 7, 16, 0, 0, 4721, 4722, 7, 25, 0, 0, 4722, 4723, 7, 7, 0, 0, 4723, 4724, 7, 11, 0, 0, 4724, 956, 1, 0, 0, 0, 4725, 4726, 7, 20, 0, 0, 4726, 4727, 7, 14, 0, 0, 4727, 4728, 7, 13, 0, 0, 4728, 4729, 7, 18, 0, 0, 4729, 4730, 7, 8, 0, 0, 4730, 4731, 7, 6, 0, 0, 4731, 4732, 7, 7, 0, 0, 4732, 4733, 7, 18, 0, 0, 4733, 4734, 7, 17, 0, 0, 4734, 4735, 7, 9, 0, 0, 4735, 958, 1, 0, 0, 0, 4736, 4737, 7, 27, 0, 0, 4737, 4738, 7, 16, 0, 0, 4738, 4739, 7, 7, 0, 0, 4739, 4740, 7, 17, 0, 0, 4740, 4741, 7, 6, 0, 0, 4741, 4742, 7, 19, 0, 0, 4742, 4743, 7, 7, 0, 0, 4743, 4744, 7, 11, 0, 0, 4744, 960, 1, 0, 0, 0, 4745, 4746, 7, 15, 0, 0, 4746, 4747, 7, 20, 0, 0, 4747, 4748, 7, 7, 0, 0, 4748, 4749, 7, 23, 0, 0, 4749, 4750, 7, 16, 0, 0, 4750, 4751, 7, 8, 0, 0, 4751, 4752, 7, 10, 0, 0, 4752, 962, 1, 0, 0, 0, 4753, 4754, 7, 27, 0, 0, 4754, 4755, 7, 16, 0, 0, 4755, 4756, 7, 7, 0, 0, 4756, 4757, 7, 8, 0, 0, 4757, 4758, 7, 6, 0, 0, 4758, 4759, 7, 16, 0, 0, 4759, 4760, 7, 11, 0, 0, 4760, 4761, 7, 10, 0, 0, 4761, 4762, 7, 25, 0, 0, 4762, 4763, 7, 6, 0, 0, 4763, 4764, 7, 15, 0, 0, 4764, 4765, 7, 11, 0, 0, 4765, 4766, 7, 10, 0, 0, 4766, 964, 1, 0, 0, 0, 4767, 4768, 7, 14, 0, 0, 4768, 4769, 7, 20, 0, 0, 4769, 4770, 7, 30, 0, 0, 4770, 4771, 7, 17, 0, 0, 4771, 4772, 7, 9, 0, 0, 4772, 4773, 7, 25, 0, 0, 4773, 4774, 7, 11, 0, 0, 4774, 966, 1, 0, 0, 0, 4775, 4776, 7, 8, 0, 0, 4776, 4777, 7, 20, 0, 0, 4777, 4778, 7, 14, 0, 0, 4778, 4779, 7, 16, 0, 0, 4779, 4780, 7, 6, 0, 0, 4780, 4781, 7, 7, 0, 0, 4781, 4782, 7, 18, 0, 0, 4782, 4783, 7, 12, 0, 0, 4783, 4784, 7, 11, 0, 0, 4784, 4785, 7, 13, 0, 0, 4785, 968, 1, 0, 0, 0, 4786, 4787, 7, 30, 0, 0, 4787, 4788, 7, 18, 0, 0, 4788, 4789, 7, 17, 0, 0, 4789, 4790, 7, 21, 0, 0, 4790, 4791, 7, 18, 0, 0, 4791, 4792, 7, 8, 0, 0, 4792, 970, 1, 0, 0, 0, 4793, 4794, 7, 26, 0, 0, 4794, 4795, 7, 18, 0, 0, 4795, 4796, 7, 7, 0, 0, 4796, 4797, 7, 17, 0, 0, 4797, 4798, 7, 11, 0, 0, 4798, 4799, 7, 14, 0, 0, 4799, 972, 1, 0, 0, 0, 4800, 4801, 7, 24, 0, 0, 4801, 4802, 7, 14, 0, 0, 4802, 4803, 7, 20, 0, 0, 4803, 4804, 7, 23, 0, 0, 4804, 4805, 7, 25, 0, 0, 4805, 4806, 7, 10, 0, 0, 4806, 974, 1, 0, 0, 0, 4807, 4808, 7, 20, 0, 0, 4808, 4809, 7, 17, 0, 0, 4809, 4810, 7, 21, 0, 0, 4810, 4811, 7, 11, 0, 0, 4811, 4812, 7, 14, 0, 0, 4812, 4813, 7, 10, 0, 0, 4813, 976, 1, 0, 0, 0, 4814, 4815, 7, 8, 0, 0, 4815, 4816, 7, 26, 0, 0, 4816, 4817, 7, 15, 0, 0, 4817, 978, 1, 0, 0, 0, 4818, 4819, 7, 8, 0, 0, 4819, 4820, 7, 26, 0, 0, 4820, 4821, 7, 13, 0, 0, 4821, 980, 1, 0, 0, 0, 4822, 4823, 7, 8, 0, 0, 4823, 4824, 7, 26, 0, 0, 4824, 4825, 7, 22, 0, 0, 4825, 4826, 7, 15, 0, 0, 4826, 982, 1, 0, 0, 0, 4827, 4828, 7, 8, 0, 0, 4828, 4829, 7, 26, 0, 0, 4829, 4830, 7, 22, 0, 0, 4830, 4831, 7, 13, 0, 0, 4831, 984, 1, 0, 0, 0, 4832, 4833, 7, 23, 0, 0, 4833, 4834, 7, 11, 0, 0, 4834, 4835, 7, 10, 0, 0, 4835, 4836, 7, 15, 0, 0, 4836, 4837, 7, 6, 0, 0, 4837, 4838, 7, 25, 0, 0, 4838, 4839, 7, 11, 0, 0, 4839, 986, 1, 0, 0, 0, 4840, 4841, 7, 28, 0, 0, 4841, 4842, 7, 18, 0, 0, 4842, 4843, 7, 11, 0, 0, 4843, 4844, 7, 30, 0, 0, 4844, 4845, 7, 10, 0, 0, 4845, 988, 1, 0, 0, 0, 4846, 4847, 7, 8, 0, 0, 4847, 4848, 7, 20, 0, 0, 4848, 4849, 7, 14, 0, 0, 4849, 4850, 7, 16, 0, 0, 4850, 4851, 7, 6, 0, 0, 4851, 4852, 7, 7, 0, 0, 4852, 4853, 7, 18, 0, 0, 4853, 4854, 7, 12, 0, 0, 4854, 4855, 7, 11, 0, 0, 4855, 990, 1, 0, 0, 0, 4856, 4857, 7, 13, 0, 0, 4857, 4858, 7, 23, 0, 0, 4858, 4859, 7, 16, 0, 0, 4859, 4860, 7, 25, 0, 0, 4860, 992, 1, 0, 0, 0, 4861, 4862, 7, 25, 0, 0, 4862, 4863, 7, 14, 0, 0, 4863, 4864, 7, 18, 0, 0, 4864, 4865, 7, 8, 0, 0, 4865, 4866, 7, 17, 0, 0, 4866, 4867, 5, 95, 0, 0, 4867, 4868, 7, 10, 0, 0, 4868, 4869, 7, 17, 0, 0, 4869, 4870, 7, 14, 0, 0, 4870, 4871, 7, 18, 0, 0, 4871, 4872, 7, 15, 0, 0, 4872, 4873, 7, 17, 0, 0, 4873, 4874, 5, 95, 0, 0, 4874, 4875, 7, 25, 0, 0, 4875, 4876, 7, 6, 0, 0, 4876, 4877, 7, 14, 0, 0, 4877, 4878, 7, 6, 0, 0, 4878, 4879, 7, 16, 0, 0, 4879, 4880, 7, 10, 0, 0, 4880, 994, 1, 0, 0, 0, 4881, 4882, 7, 28, 0, 0, 4882, 4883, 7, 6, 0, 0, 4883, 4884, 7, 14, 0, 0, 4884, 4885, 7, 18, 0, 0, 4885, 4886, 7, 6, 0, 0, 4886, 4887, 7, 19, 0, 0, 4887, 4888, 7, 7, 0, 0, 4888, 4889, 7, 11, 0, 0, 4889, 4890, 5, 95, 0, 0, 4890, 4891, 7, 15, 0, 0, 4891, 4892, 7, 20, 0, 0, 4892, 4893, 7, 8, 0, 0, 4893, 4894, 7, 26, 0, 0, 4894, 4895, 7, 7, 0, 0, 4895, 4896, 7, 18, 0, 0, 4896, 4897, 7, 15, 0, 0, 4897, 4898, 7, 17, 0, 0, 4898, 996, 1, 0, 0, 0, 4899, 4900, 7, 11, 0, 0, 4900, 4901, 7, 14, 0, 0, 4901, 4902, 7, 14, 0, 0, 4902, 4903, 7, 20, 0, 0, 4903, 4904, 7, 14, 0, 0, 4904, 998, 1, 0, 0, 0, 4905, 4906, 7, 23, 0, 0, 4906, 4907, 7, 10, 0, 0, 4907, 4908, 7, 11, 0, 0, 4908, 4909, 5, 95, 0, 0, 4909, 4910, 7, 28, 0, 0, 4910, 4911, 7, 6, 0, 0, 4911, 4912, 7, 14, 0, 0, 4912, 4913, 7, 18, 0, 0, 4913, 4914, 7, 6, 0, 0, 4914, 4915, 7, 19, 0, 0, 4915, 4916, 7, 7, 0, 0, 4916, 4917, 7, 11, 0, 0, 4917, 1000, 1, 0, 0, 0, 4918, 4919, 7, 23, 0, 0, 4919, 4920, 7, 10, 0, 0, 4920, 4921, 7, 11, 0, 0, 4921, 4922, 5, 95, 0, 0, 4922, 4923, 7, 15, 0, 0, 4923, 4924, 7, 20, 0, 0, 4924, 4925, 7, 7, 0, 0, 4925, 4926, 7, 23, 0, 0, 4926, 4927, 7, 16, 0, 0, 4927, 4928, 7, 8, 0, 0, 4928, 1002, 1, 0, 0, 0, 4929, 4930, 7, 6, 0, 0, 4930, 4931, 7, 7, 0, 0, 4931, 4932, 7, 18, 0, 0, 4932, 4933, 7, 6, 0, 0, 4933, 4934, 7, 10, 0, 0, 4934, 1004, 1, 0, 0, 0, 4935, 4936, 7, 15, 0, 0, 4936, 4937, 7, 20, 0, 0, 4937, 4938, 7, 8, 0, 0, 4938, 4939, 7, 10, 0, 0, 4939, 4940, 7, 17, 0, 0, 4940, 4941, 7, 6, 0, 0, 4941, 4942, 7, 8, 0, 0, 4942, 4943, 7, 17, 0, 0, 4943, 1006, 1, 0, 0, 0, 4944, 4945, 7, 25, 0, 0, 4945, 4946, 7, 11, 0, 0, 4946, 4947, 7, 14, 0, 0, 4947, 4948, 7, 26, 0, 0, 4948, 4949, 7, 20, 0, 0, 4949, 4950, 7, 14, 0, 0, 4950, 4951, 7, 16, 0, 0, 4951, 1008, 1, 0, 0, 0, 4952, 4953, 7, 24, 0, 0, 4953, 4954, 7, 11, 0, 0, 4954, 4955, 7, 17, 0, 0, 4955, 1010, 1, 0, 0, 0, 4956, 4957, 7, 13, 0, 0, 4957, 4958, 7, 18, 0, 0, 4958, 4959, 7, 6, 0, 0, 4959, 4960, 7, 24, 0, 0, 4960, 4961, 7, 8, 0, 0, 4961, 4962, 7, 20, 0, 0, 4962, 4963, 7, 10, 0, 0, 4963, 4964, 7, 17, 0, 0, 4964, 4965, 7, 18, 0, 0, 4965, 4966, 7, 15, 0, 0, 4966, 4967, 7, 10, 0, 0, 4967, 1012, 1, 0, 0, 0, 4968, 4969, 7, 10, 0, 0, 4969, 4970, 7, 17, 0, 0, 4970, 4971, 7, 6, 0, 0, 4971, 4972, 7, 15, 0, 0, 4972, 4973, 7, 22, 0, 0, 4973, 4974, 7, 11, 0, 0, 4974, 4975, 7, 13, 0, 0, 4975, 1014, 1, 0, 0, 0, 4976, 4977, 7, 11, 0, 0, 4977, 4978, 7, 7, 0, 0, 4978, 4979, 7, 10, 0, 0, 4979, 4980, 7, 18, 0, 0, 4980, 4981, 7, 26, 0, 0, 4981, 1016, 1, 0, 0, 0, 4982, 4983, 7, 30, 0, 0, 4983, 4984, 7, 21, 0, 0, 4984, 4985, 7, 18, 0, 0, 4985, 4986, 7, 7, 0, 0, 4986, 4987, 7, 11, 0, 0, 4987, 1018, 1, 0, 0, 0, 4988, 4989, 7, 14, 0, 0, 4989, 4990, 7, 11, 0, 0, 4990, 4991, 7, 28, 0, 0, 4991, 4992, 7, 11, 0, 0, 4992, 4993, 7, 14, 0, 0, 4993, 4994, 7, 10, 0, 0, 4994, 4995, 7, 11, 0, 0, 4995, 1020, 1, 0, 0, 0, 4996, 4997, 7, 26, 0, 0, 4997, 4998, 7, 20, 0, 0, 4998, 4999, 7, 14, 0, 0, 4999, 5000, 7, 11, 0, 0, 5000, 5001, 7, 6, 0, 0, 5001, 5002, 7, 15, 0, 0, 5002, 5003, 7, 21, 0, 0, 5003, 1022, 1, 0, 0, 0, 5004, 5005, 7, 10, 0, 0, 5005, 5006, 7, 7, 0, 0, 5006, 5007, 7, 18, 0, 0, 5007, 5008, 7, 15, 0, 0, 5008, 5009, 7, 11, 0, 0, 5009, 1024, 1, 0, 0, 0, 5010, 5011, 7, 11, 0, 0, 5011, 5012, 7, 27, 0, 0, 5012, 5013, 7, 18, 0, 0, 5013, 5014, 7, 17, 0, 0, 5014, 1026, 1, 0, 0, 0, 5015, 5016, 7, 14, 0, 0, 5016, 5017, 7, 11, 0, 0, 5017, 5018, 7, 17, 0, 0, 5018, 5019, 7, 23, 0, 0, 5019, 5020, 7, 14, 0, 0, 5020, 5021, 7, 8, 0, 0, 5021, 1028, 1, 0, 0, 0, 5022, 5023, 7, 29, 0, 0, 5023, 5024, 7, 23, 0, 0, 5024, 5025, 7, 11, 0, 0, 5025, 5026, 7, 14, 0, 0, 5026, 5027, 7, 9, 0, 0, 5027, 1030, 1, 0, 0, 0, 5028, 5029, 7, 14, 0, 0, 5029, 5030, 7, 6, 0, 0, 5030, 5031, 7, 18, 0, 0, 5031, 5032, 7, 10, 0, 0, 5032, 5033, 7, 11, 0, 0, 5033, 1032, 1, 0, 0, 0, 5034, 5035, 7, 10, 0, 0, 5035, 5036, 7, 29, 0, 0, 5036, 5037, 7, 7, 0, 0, 5037, 5038, 7, 10, 0, 0, 5038, 5039, 7, 17, 0, 0, 5039, 5040, 7, 6, 0, 0, 5040, 5041, 7, 17, 0, 0, 5041, 5042, 7, 11, 0, 0, 5042, 1034, 1, 0, 0, 0, 5043, 5044, 7, 13, 0, 0, 5044, 5045, 7, 11, 0, 0, 5045, 5046, 7, 19, 0, 0, 5046, 5047, 7, 23, 0, 0, 5047, 5048, 7, 24, 0, 0, 5048, 1036, 1, 0, 0, 0, 5049, 5050, 7, 7, 0, 0, 5050, 5051, 7, 20, 0, 0, 5051, 5052, 7, 24, 0, 0, 5052, 1038, 1, 0, 0, 0, 5053, 5054, 7, 18, 0, 0, 5054, 5055, 7, 8, 0, 0, 5055, 5056, 7, 26, 0, 0, 5056, 5057, 7, 20, 0, 0, 5057, 1040, 1, 0, 0, 0, 5058, 5059, 7, 8, 0, 0, 5059, 5060, 7, 20, 0, 0, 5060, 5061, 7, 17, 0, 0, 5061, 5062, 7, 18, 0, 0, 5062, 5063, 7, 15, 0, 0, 5063, 5064, 7, 11, 0, 0, 5064, 1042, 1, 0, 0, 0, 5065, 5066, 7, 30, 0, 0, 5066, 5067, 7, 6, 0, 0, 5067, 5068, 7, 14, 0, 0, 5068, 5069, 7, 8, 0, 0, 5069, 5070, 7, 18, 0, 0, 5070, 5071, 7, 8, 0, 0, 5071, 5072, 7, 24, 0, 0, 5072, 1044, 1, 0, 0, 0, 5073, 5074, 7, 11, 0, 0, 5074, 5075, 7, 27, 0, 0, 5075, 5076, 7, 15, 0, 0, 5076, 5077, 7, 11, 0, 0, 5077, 5078, 7, 25, 0, 0, 5078, 5079, 7, 17, 0, 0, 5079, 5080, 7, 18, 0, 0, 5080, 5081, 7, 20, 0, 0, 5081, 5082, 7, 8, 0, 0, 5082, 1046, 1, 0, 0, 0, 5083, 5084, 7, 6, 0, 0, 5084, 5085, 7, 10, 0, 0, 5085, 5086, 7, 10, 0, 0, 5086, 5087, 7, 11, 0, 0, 5087, 5088, 7, 14, 0, 0, 5088, 5089, 7, 17, 0, 0, 5089, 1048, 1, 0, 0, 0, 5090, 5091, 7, 7, 0, 0, 5091, 5092, 7, 20, 0, 0, 5092, 5093, 7, 20, 0, 0, 5093, 5094, 7, 25, 0, 0, 5094, 1050, 1, 0, 0, 0, 5095, 5096, 7, 20, 0, 0, 5096, 5097, 7, 25, 0, 0, 5097, 5098, 7, 11, 0, 0, 5098, 5099, 7, 8, 0, 0, 5099, 1052, 1, 0, 0, 0, 5100, 5101, 7, 25, 0, 0, 5101, 5102, 7, 11, 0, 0, 5102, 5103, 7, 26, 0, 0, 5103, 5104, 7, 11, 0, 0, 5104, 5105, 7, 14, 0, 0, 5105, 5106, 7, 11, 0, 0, 5106, 5107, 7, 8, 0, 0, 5107, 5108, 7, 15, 0, 0, 5108, 5109, 7, 11, 0, 0, 5109, 5110, 7, 10, 0, 0, 5110, 1054, 1, 0, 0, 0, 5111, 5112, 7, 23, 0, 0, 5112, 5113, 7, 10, 0, 0, 5113, 5114, 7, 6, 0, 0, 5114, 5115, 7, 24, 0, 0, 5115, 5116, 7, 11, 0, 0, 5116, 1056, 1, 0, 0, 0, 5117, 5118, 7, 15, 0, 0, 5118, 5119, 7, 20, 0, 0, 5119, 5120, 7, 8, 0, 0, 5120, 5121, 7, 8, 0, 0, 5121, 5122, 7, 11, 0, 0, 5122, 5123, 7, 15, 0, 0, 5123, 5124, 7, 17, 0, 0, 5124, 1058, 1, 0, 0, 0, 5125, 5126, 7, 25, 0, 0, 5126, 5127, 7, 23, 0, 0, 5127, 5128, 7, 19, 0, 0, 5128, 5129, 7, 7, 0, 0, 5129, 5130, 7, 18, 0, 0, 5130, 5131, 7, 15, 0, 0, 5131, 1060, 1, 0, 0, 0, 5132, 5133, 7, 16, 0, 0, 5133, 5134, 7, 11, 0, 0, 5134, 5135, 7, 14, 0, 0, 5135, 5136, 7, 24, 0, 0, 5136, 5137, 7, 11, 0, 0, 5137, 1062, 1, 0, 0, 0, 5138, 5139, 7, 16, 0, 0, 5139, 5140, 7, 6, 0, 0, 5140, 5141, 7, 17, 0, 0, 5141, 5142, 7, 15, 0, 0, 5142, 5143, 7, 21, 0, 0, 5143, 5144, 7, 11, 0, 0, 5144, 5145, 7, 13, 0, 0, 5145, 1064, 1, 0, 0, 0, 5146, 5147, 7, 19, 0, 0, 5147, 5148, 7, 14, 0, 0, 5148, 5149, 7, 11, 0, 0, 5149, 5150, 7, 6, 0, 0, 5150, 5151, 7, 13, 0, 0, 5151, 5152, 7, 17, 0, 0, 5152, 5153, 7, 21, 0, 0, 5153, 1066, 1, 0, 0, 0, 5154, 5155, 7, 13, 0, 0, 5155, 5156, 7, 11, 0, 0, 5156, 5157, 7, 25, 0, 0, 5157, 5158, 7, 17, 0, 0, 5158, 5159, 7, 21, 0, 0, 5159, 1068, 1, 0, 0, 0, 5160, 5161, 7, 23, 0, 0, 5161, 5162, 7, 8, 0, 0, 5162, 5163, 7, 10, 0, 0, 5163, 5164, 7, 6, 0, 0, 5164, 5165, 7, 26, 0, 0, 5165, 5166, 7, 11, 0, 0, 5166, 1070, 1, 0, 0, 0, 5167, 5168, 7, 14, 0, 0, 5168, 5169, 7, 11, 0, 0, 5169, 5170, 7, 10, 0, 0, 5170, 5171, 7, 17, 0, 0, 5171, 5172, 7, 14, 0, 0, 5172, 5173, 7, 18, 0, 0, 5173, 5174, 7, 15, 0, 0, 5174, 5175, 7, 17, 0, 0, 5175, 5176, 7, 11, 0, 0, 5176, 5177, 7, 13, 0, 0, 5177, 1072, 1, 0, 0, 0, 5178, 5179, 7, 10, 0, 0, 5179, 5180, 7, 6, 0, 0, 5180, 5181, 7, 26, 0, 0, 5181, 5182, 7, 11, 0, 0, 5182, 1074, 1, 0, 0, 0, 5183, 5184, 7, 26, 0, 0, 5184, 5185, 7, 18, 0, 0, 5185, 5186, 7, 8, 0, 0, 5186, 5187, 7, 6, 0, 0, 5187, 5188, 7, 7, 0, 0, 5188, 5189, 7, 18, 0, 0, 5189, 5190, 7, 12, 0, 0, 5190, 5191, 7, 11, 0, 0, 5191, 1076, 1, 0, 0, 0, 5192, 5193, 7, 16, 0, 0, 5193, 5194, 7, 20, 0, 0, 5194, 5195, 7, 13, 0, 0, 5195, 5196, 7, 23, 0, 0, 5196, 5197, 7, 7, 0, 0, 5197, 5198, 7, 23, 0, 0, 5198, 5199, 7, 10, 0, 0, 5199, 1078, 1, 0, 0, 0, 5200, 5201, 7, 14, 0, 0, 5201, 5202, 7, 11, 0, 0, 5202, 5203, 7, 16, 0, 0, 5203, 5204, 7, 6, 0, 0, 5204, 5205, 7, 18, 0, 0, 5205, 5206, 7, 8, 0, 0, 5206, 5207, 7, 13, 0, 0, 5207, 5208, 7, 11, 0, 0, 5208, 5209, 7, 14, 0, 0, 5209, 1080, 1, 0, 0, 0, 5210, 5211, 7, 7, 0, 0, 5211, 5212, 7, 20, 0, 0, 5212, 5213, 7, 24, 0, 0, 5213, 5214, 7, 18, 0, 0, 5214, 5215, 7, 8, 0, 0, 5215, 1082, 1, 0, 0, 0, 5216, 5217, 7, 8, 0, 0, 5217, 5218, 7, 20, 0, 0, 5218, 5219, 7, 7, 0, 0, 5219, 5220, 7, 20, 0, 0, 5220, 5221, 7, 24, 0, 0, 5221, 5222, 7, 18, 0, 0, 5222, 5223, 7, 8, 0, 0, 5223, 1084, 1, 0, 0, 0, 5224, 5225, 7, 14, 0, 0, 5225, 5226, 7, 11, 0, 0, 5226, 5227, 7, 25, 0, 0, 5227, 5228, 7, 7, 0, 0, 5228, 5229, 7, 18, 0, 0, 5229, 5230, 7, 15, 0, 0, 5230, 5231, 7, 6, 0, 0, 5231, 5232, 7, 17, 0, 0, 5232, 5233, 7, 18, 0, 0, 5233, 5234, 7, 20, 0, 0, 5234, 5235, 7, 8, 0, 0, 5235, 1086, 1, 0, 0, 0, 5236, 5237, 7, 8, 0, 0, 5237, 5238, 7, 20, 0, 0, 5238, 5239, 7, 14, 0, 0, 5239, 5240, 7, 11, 0, 0, 5240, 5241, 7, 25, 0, 0, 5241, 5242, 7, 7, 0, 0, 5242, 5243, 7, 18, 0, 0, 5243, 5244, 7, 15, 0, 0, 5244, 5245, 7, 6, 0, 0, 5245, 5246, 7, 17, 0, 0, 5246, 5247, 7, 18, 0, 0, 5247, 5248, 7, 20, 0, 0, 5248, 5249, 7, 8, 0, 0, 5249, 1088, 1, 0, 0, 0, 5250, 5251, 7, 19, 0, 0, 5251, 5252, 7, 9, 0, 0, 5252, 5253, 7, 25, 0, 0, 5253, 5254, 7, 6, 0, 0, 5254, 5255, 7, 10, 0, 0, 5255, 5256, 7, 10, 0, 0, 5256, 5257, 7, 14, 0, 0, 5257, 5258, 7, 7, 0, 0, 5258, 5259, 7, 10, 0, 0, 5259, 1090, 1, 0, 0, 0, 5260, 5261, 7, 8, 0, 0, 5261, 5262, 7, 20, 0, 0, 5262, 5263, 7, 19, 0, 0, 5263, 5264, 7, 9, 0, 0, 5264, 5265, 7, 25, 0, 0, 5265, 5266, 7, 6, 0, 0, 5266, 5267, 7, 10, 0, 0, 5267, 5268, 7, 10, 0, 0, 5268, 5269, 7, 14, 0, 0, 5269, 5270, 7, 7, 0, 0, 5270, 5271, 7, 10, 0, 0, 5271, 1092, 1, 0, 0, 0, 5272, 5273, 7, 25, 0, 0, 5273, 5274, 7, 11, 0, 0, 5274, 5275, 7, 14, 0, 0, 5275, 5276, 7, 16, 0, 0, 5276, 5277, 7, 18, 0, 0, 5277, 5278, 7, 10, 0, 0, 5278, 5279, 7, 10, 0, 0, 5279, 5280, 7, 18, 0, 0, 5280, 5281, 7, 28, 0, 0, 5281, 5282, 7, 11, 0, 0, 5282, 1094, 1, 0, 0, 0, 5283, 5284, 7, 14, 0, 0, 5284, 5285, 7, 11, 0, 0, 5285, 5286, 7, 10, 0, 0, 5286, 5287, 7, 17, 0, 0, 5287, 5288, 7, 14, 0, 0, 5288, 5289, 7, 18, 0, 0, 5289, 5290, 7, 15, 0, 0, 5290, 5291, 7, 17, 0, 0, 5291, 5292, 7, 18, 0, 0, 5292, 5293, 7, 28, 0, 0, 5293, 5294, 7, 11, 0, 0, 5294, 1096, 1, 0, 0, 0, 5295, 5296, 7, 15, 0, 0, 5296, 5297, 7, 20, 0, 0, 5297, 5298, 7, 16, 0, 0, 5298, 5299, 7, 25, 0, 0, 5299, 5300, 7, 14, 0, 0, 5300, 5301, 7, 11, 0, 0, 5301, 5302, 7, 10, 0, 0, 5302, 5303, 7, 10, 0, 0, 5303, 5304, 7, 18, 0, 0, 5304, 5305, 7, 20, 0, 0, 5305, 5306, 7, 8, 0, 0, 5306, 1098, 1, 0, 0, 0, 5307, 5308, 7, 25, 0, 0, 5308, 5309, 7, 7, 0, 0, 5309, 5310, 7, 6, 0, 0, 5310, 5311, 7, 18, 0, 0, 5311, 5312, 7, 8, 0, 0, 5312, 1100, 1, 0, 0, 0, 5313, 5314, 7, 11, 0, 0, 5314, 5315, 7, 27, 0, 0, 5315, 5316, 7, 17, 0, 0, 5316, 5317, 7, 11, 0, 0, 5317, 5318, 7, 8, 0, 0, 5318, 5319, 7, 13, 0, 0, 5319, 5320, 7, 11, 0, 0, 5320, 5321, 7, 13, 0, 0, 5321, 1102, 1, 0, 0, 0, 5322, 5323, 7, 16, 0, 0, 5323, 5324, 7, 6, 0, 0, 5324, 5325, 7, 18, 0, 0, 5325, 5326, 7, 8, 0, 0, 5326, 1104, 1, 0, 0, 0, 5327, 5328, 7, 10, 0, 0, 5328, 5329, 7, 22, 0, 0, 5329, 5330, 7, 18, 0, 0, 5330, 5331, 7, 25, 0, 0, 5331, 5332, 5, 95, 0, 0, 5332, 5333, 7, 7, 0, 0, 5333, 5334, 7, 20, 0, 0, 5334, 5335, 7, 15, 0, 0, 5335, 5336, 7, 22, 0, 0, 5336, 5337, 7, 11, 0, 0, 5337, 5338, 7, 13, 0, 0, 5338, 1106, 1, 0, 0, 0, 5339, 5340, 7, 19, 0, 0, 5340, 5341, 7, 23, 0, 0, 5341, 5342, 7, 26, 0, 0, 5342, 5343, 7, 26, 0, 0, 5343, 5344, 7, 11, 0, 0, 5344, 5345, 7, 14, 0, 0, 5345, 5346, 5, 95, 0, 0, 5346, 5347, 7, 23, 0, 0, 5347, 5348, 7, 10, 0, 0, 5348, 5349, 7, 6, 0, 0, 5349, 5350, 7, 24, 0, 0, 5350, 5351, 7, 11, 0, 0, 5351, 5352, 5, 95, 0, 0, 5352, 5353, 7, 7, 0, 0, 5353, 5354, 7, 18, 0, 0, 5354, 5355, 7, 16, 0, 0, 5355, 5356, 7, 18, 0, 0, 5356, 5357, 7, 17, 0, 0, 5357, 1108, 1, 0, 0, 0, 5358, 5359, 7, 26, 0, 0, 5359, 5360, 7, 20, 0, 0, 5360, 5361, 7, 14, 0, 0, 5361, 5362, 7, 15, 0, 0, 5362, 5363, 7, 11, 0, 0, 5363, 5364, 5, 95, 0, 0, 5364, 5365, 7, 29, 0, 0, 5365, 5366, 7, 23, 0, 0, 5366, 5367, 7, 20, 0, 0, 5367, 5368, 7, 17, 0, 0, 5368, 5369, 7, 11, 0, 0, 5369, 1110, 1, 0, 0, 0, 5370, 5371, 7, 26, 0, 0, 5371, 5372, 7, 20, 0, 0, 5372, 5373, 7, 14, 0, 0, 5373, 5374, 7, 15, 0, 0, 5374, 5375, 7, 11, 0, 0, 5375, 5376, 5, 95, 0, 0, 5376, 5377, 7, 8, 0, 0, 5377, 5378, 7, 20, 0, 0, 5378, 5379, 7, 17, 0, 0, 5379, 5380, 5, 95, 0, 0, 5380, 5381, 7, 8, 0, 0, 5381, 5382, 7, 23, 0, 0, 5382, 5383, 7, 7, 0, 0, 5383, 5384, 7, 7, 0, 0, 5384, 1112, 1, 0, 0, 0, 5385, 5386, 7, 26, 0, 0, 5386, 5387, 7, 20, 0, 0, 5387, 5388, 7, 14, 0, 0, 5388, 5389, 7, 15, 0, 0, 5389, 5390, 7, 11, 0, 0, 5390, 5391, 5, 95, 0, 0, 5391, 5392, 7, 8, 0, 0, 5392, 5393, 7, 23, 0, 0, 5393, 5394, 7, 7, 0, 0, 5394, 5395, 7, 7, 0, 0, 5395, 1114, 1, 0, 0, 0, 5396, 5400, 3, 1117, 556, 0, 5397, 5399, 3, 1119, 557, 0, 5398, 5397, 1, 0, 0, 0, 5399, 5402, 1, 0, 0, 0, 5400, 5398, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 1116, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5403, 5407, 7, 32, 0, 0, 5404, 5405, 7, 33, 0, 0, 5405, 5407, 7, 34, 0, 0, 5406, 5403, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5407, 1118, 1, 0, 0, 0, 5408, 5411, 3, 1121, 558, 0, 5409, 5411, 5, 36, 0, 0, 5410, 5408, 1, 0, 0, 0, 5410, 5409, 1, 0, 0, 0, 5411, 1120, 1, 0, 0, 0, 5412, 5415, 3, 1117, 556, 0, 5413, 5415, 7, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5414, 5413, 1, 0, 0, 0, 5415, 1122, 1, 0, 0, 0, 5416, 5417, 3, 1125, 560, 0, 5417, 5418, 5, 34, 0, 0, 5418, 1124, 1, 0, 0, 0, 5419, 5425, 5, 34, 0, 0, 5420, 5421, 5, 34, 0, 0, 5421, 5424, 5, 34, 0, 0, 5422, 5424, 8, 35, 0, 0, 5423, 5420, 1, 0, 0, 0, 5423, 5422, 1, 0, 0, 0, 5424, 5427, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 1126, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5428, 5429, 3, 1129, 562, 0, 5429, 5430, 5, 34, 0, 0, 5430, 1128, 1, 0, 0, 0, 5431, 5437, 5, 34, 0, 0, 5432, 5433, 5, 34, 0, 0, 5433, 5436, 5, 34, 0, 0, 5434, 5436, 8, 36, 0, 0, 5435, 5432, 1, 0, 0, 0, 5435, 5434, 1, 0, 0, 0, 5436, 5439, 1, 0, 0, 0, 5437, 5435, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 1130, 1, 0, 0, 0, 5439, 5437, 1, 0, 0, 0, 5440, 5441, 7, 23, 0, 0, 5441, 5442, 5, 38, 0, 0, 5442, 5443, 3, 1123, 559, 0, 5443, 1132, 1, 0, 0, 0, 5444, 5445, 7, 23, 0, 0, 5445, 5446, 5, 38, 0, 0, 5446, 5447, 3, 1125, 560, 0, 5447, 1134, 1, 0, 0, 0, 5448, 5449, 7, 23, 0, 0, 5449, 5450, 5, 38, 0, 0, 5450, 5451, 3, 1127, 561, 0, 5451, 1136, 1, 0, 0, 0, 5452, 5453, 7, 23, 0, 0, 5453, 5454, 5, 38, 0, 0, 5454, 5455, 3, 1129, 562, 0, 5455, 1138, 1, 0, 0, 0, 5456, 5457, 3, 1141, 568, 0, 5457, 5458, 5, 39, 0, 0, 5458, 1140, 1, 0, 0, 0, 5459, 5465, 5, 39, 0, 0, 5460, 5461, 5, 39, 0, 0, 5461, 5464, 5, 39, 0, 0, 5462, 5464, 8, 37, 0, 0, 5463, 5460, 1, 0, 0, 0, 5463, 5462, 1, 0, 0, 0, 5464, 5467, 1, 0, 0, 0, 5465, 5463, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 1142, 1, 0, 0, 0, 5467, 5465, 1, 0, 0, 0, 5468, 5469, 7, 11, 0, 0, 5469, 5470, 5, 39, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5472, 6, 569, 1, 0, 5472, 5473, 6, 569, 2, 0, 5473, 1144, 1, 0, 0, 0, 5474, 5475, 3, 1147, 571, 0, 5475, 5476, 5, 39, 0, 0, 5476, 1146, 1, 0, 0, 0, 5477, 5478, 7, 23, 0, 0, 5478, 5479, 5, 38, 0, 0, 5479, 5480, 3, 1141, 568, 0, 5480, 1148, 1, 0, 0, 0, 5481, 5483, 5, 36, 0, 0, 5482, 5484, 3, 1151, 573, 0, 5483, 5482, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5485, 1, 0, 0, 0, 5485, 5486, 5, 36, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 6, 572, 3, 0, 5488, 1150, 1, 0, 0, 0, 5489, 5493, 3, 1117, 556, 0, 5490, 5492, 3, 1121, 558, 0, 5491, 5490, 1, 0, 0, 0, 5492, 5495, 1, 0, 0, 0, 5493, 5491, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 1152, 1, 0, 0, 0, 5495, 5493, 1, 0, 0, 0, 5496, 5497, 3, 1155, 575, 0, 5497, 5498, 5, 39, 0, 0, 5498, 1154, 1, 0, 0, 0, 5499, 5500, 7, 19, 0, 0, 5500, 5504, 5, 39, 0, 0, 5501, 5503, 7, 38, 0, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5506, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 1156, 1, 0, 0, 0, 5506, 5504, 1, 0, 0, 0, 5507, 5508, 3, 1159, 577, 0, 5508, 5509, 5, 39, 0, 0, 5509, 1158, 1, 0, 0, 0, 5510, 5511, 7, 19, 0, 0, 5511, 5512, 3, 1141, 568, 0, 5512, 1160, 1, 0, 0, 0, 5513, 5514, 3, 1163, 579, 0, 5514, 5515, 5, 39, 0, 0, 5515, 1162, 1, 0, 0, 0, 5516, 5517, 7, 27, 0, 0, 5517, 5521, 5, 39, 0, 0, 5518, 5520, 7, 39, 0, 0, 5519, 5518, 1, 0, 0, 0, 5520, 5523, 1, 0, 0, 0, 5521, 5519, 1, 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 1164, 1, 0, 0, 0, 5523, 5521, 1, 0, 0, 0, 5524, 5525, 3, 1167, 581, 0, 5525, 5526, 5, 39, 0, 0, 5526, 1166, 1, 0, 0, 0, 5527, 5528, 7, 27, 0, 0, 5528, 5529, 3, 1141, 568, 0, 5529, 1168, 1, 0, 0, 0, 5530, 5531, 3, 1175, 585, 0, 5531, 1170, 1, 0, 0, 0, 5532, 5533, 3, 1175, 585, 0, 5533, 5534, 5, 46, 0, 0, 5534, 5535, 5, 46, 0, 0, 5535, 1172, 1, 0, 0, 0, 5536, 5537, 3, 1175, 585, 0, 5537, 5539, 5, 46, 0, 0, 5538, 5540, 3, 1175, 585, 0, 5539, 5538, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5546, 1, 0, 0, 0, 5541, 5543, 7, 11, 0, 0, 5542, 5544, 7, 1, 0, 0, 5543, 5542, 1, 0, 0, 0, 5543, 5544, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 5547, 3, 1175, 585, 0, 5546, 5541, 1, 0, 0, 0, 5546, 5547, 1, 0, 0, 0, 5547, 5565, 1, 0, 0, 0, 5548, 5549, 5, 46, 0, 0, 5549, 5555, 3, 1175, 585, 0, 5550, 5552, 7, 11, 0, 0, 5551, 5553, 7, 1, 0, 0, 5552, 5551, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5556, 3, 1175, 585, 0, 5555, 5550, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5565, 1, 0, 0, 0, 5557, 5558, 3, 1175, 585, 0, 5558, 5560, 7, 11, 0, 0, 5559, 5561, 7, 1, 0, 0, 5560, 5559, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 5562, 1, 0, 0, 0, 5562, 5563, 3, 1175, 585, 0, 5563, 5565, 1, 0, 0, 0, 5564, 5536, 1, 0, 0, 0, 5564, 5548, 1, 0, 0, 0, 5564, 5557, 1, 0, 0, 0, 5565, 1174, 1, 0, 0, 0, 5566, 5568, 7, 0, 0, 0, 5567, 5566, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 1176, 1, 0, 0, 0, 5571, 5572, 5, 58, 0, 0, 5572, 5576, 7, 40, 0, 0, 5573, 5575, 7, 41, 0, 0, 5574, 5573, 1, 0, 0, 0, 5575, 5578, 1, 0, 0, 0, 5576, 5574, 1, 0, 0, 0, 5576, 5577, 1, 0, 0, 0, 5577, 1178, 1, 0, 0, 0, 5578, 5576, 1, 0, 0, 0, 5579, 5580, 5, 58, 0, 0, 5580, 5581, 5, 34, 0, 0, 5581, 5589, 1, 0, 0, 0, 5582, 5583, 5, 92, 0, 0, 5583, 5588, 9, 0, 0, 0, 5584, 5585, 5, 34, 0, 0, 5585, 5588, 5, 34, 0, 0, 5586, 5588, 8, 42, 0, 0, 5587, 5582, 1, 0, 0, 0, 5587, 5584, 1, 0, 0, 0, 5587, 5586, 1, 0, 0, 0, 5588, 5591, 1, 0, 0, 0, 5589, 5587, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5592, 1, 0, 0, 0, 5591, 5589, 1, 0, 0, 0, 5592, 5593, 5, 34, 0, 0, 5593, 1180, 1, 0, 0, 0, 5594, 5596, 7, 43, 0, 0, 5595, 5594, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5595, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 1, 0, 0, 0, 5599, 5600, 6, 588, 4, 0, 5600, 1182, 1, 0, 0, 0, 5601, 5603, 5, 13, 0, 0, 5602, 5604, 5, 10, 0, 0, 5603, 5602, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5607, 1, 0, 0, 0, 5605, 5607, 5, 10, 0, 0, 5606, 5601, 1, 0, 0, 0, 5606, 5605, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 6, 589, 4, 0, 5609, 1184, 1, 0, 0, 0, 5610, 5611, 5, 45, 0, 0, 5611, 5612, 5, 45, 0, 0, 5612, 5616, 1, 0, 0, 0, 5613, 5615, 8, 44, 0, 0, 5614, 5613, 1, 0, 0, 0, 5615, 5618, 1, 0, 0, 0, 5616, 5614, 1, 0, 0, 0, 5616, 5617, 1, 0, 0, 0, 5617, 5619, 1, 0, 0, 0, 5618, 5616, 1, 0, 0, 0, 5619, 5620, 6, 590, 4, 0, 5620, 1186, 1, 0, 0, 0, 5621, 5622, 5, 47, 0, 0, 5622, 5623, 5, 42, 0, 0, 5623, 5646, 1, 0, 0, 0, 5624, 5626, 5, 47, 0, 0, 5625, 5624, 1, 0, 0, 0, 5626, 5629, 1, 0, 0, 0, 5627, 5625, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5630, 1, 0, 0, 0, 5629, 5627, 1, 0, 0, 0, 5630, 5645, 3, 1187, 591, 0, 5631, 5645, 8, 45, 0, 0, 5632, 5634, 5, 47, 0, 0, 5633, 5632, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5633, 1, 0, 0, 0, 5635, 5636, 1, 0, 0, 0, 5636, 5637, 1, 0, 0, 0, 5637, 5645, 8, 45, 0, 0, 5638, 5640, 5, 42, 0, 0, 5639, 5638, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5639, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5643, 1, 0, 0, 0, 5643, 5645, 8, 45, 0, 0, 5644, 5627, 1, 0, 0, 0, 5644, 5631, 1, 0, 0, 0, 5644, 5633, 1, 0, 0, 0, 5644, 5639, 1, 0, 0, 0, 5645, 5648, 1, 0, 0, 0, 5646, 5644, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5652, 1, 0, 0, 0, 5648, 5646, 1, 0, 0, 0, 5649, 5651, 5, 42, 0, 0, 5650, 5649, 1, 0, 0, 0, 5651, 5654, 1, 0, 0, 0, 5652, 5650, 1, 0, 0, 0, 5652, 5653, 1, 0, 0, 0, 5653, 5655, 1, 0, 0, 0, 5654, 5652, 1, 0, 0, 0, 5655, 5656, 5, 42, 0, 0, 5656, 5657, 5, 47, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5659, 6, 591, 4, 0, 5659, 1188, 1, 0, 0, 0, 5660, 5661, 5, 47, 0, 0, 5661, 5662, 5, 42, 0, 0, 5662, 5687, 1, 0, 0, 0, 5663, 5665, 5, 47, 0, 0, 5664, 5663, 1, 0, 0, 0, 5665, 5668, 1, 0, 0, 0, 5666, 5664, 1, 0, 0, 0, 5666, 5667, 1, 0, 0, 0, 5667, 5669, 1, 0, 0, 0, 5668, 5666, 1, 0, 0, 0, 5669, 5686, 3, 1187, 591, 0, 5670, 5686, 8, 45, 0, 0, 5671, 5673, 5, 47, 0, 0, 5672, 5671, 1, 0, 0, 0, 5673, 5674, 1, 0, 0, 0, 5674, 5672, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5676, 1, 0, 0, 0, 5676, 5684, 8, 45, 0, 0, 5677, 5679, 5, 42, 0, 0, 5678, 5677, 1, 0, 0, 0, 5679, 5680, 1, 0, 0, 0, 5680, 5678, 1, 0, 0, 0, 5680, 5681, 1, 0, 0, 0, 5681, 5682, 1, 0, 0, 0, 5682, 5684, 8, 45, 0, 0, 5683, 5672, 1, 0, 0, 0, 5683, 5678, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5666, 1, 0, 0, 0, 5685, 5670, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5686, 5689, 1, 0, 0, 0, 5687, 5685, 1, 0, 0, 0, 5687, 5688, 1, 0, 0, 0, 5688, 5707, 1, 0, 0, 0, 5689, 5687, 1, 0, 0, 0, 5690, 5692, 5, 47, 0, 0, 5691, 5690, 1, 0, 0, 0, 5692, 5693, 1, 0, 0, 0, 5693, 5691, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5708, 1, 0, 0, 0, 5695, 5697, 5, 42, 0, 0, 5696, 5695, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5696, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5708, 1, 0, 0, 0, 5700, 5702, 5, 47, 0, 0, 5701, 5700, 1, 0, 0, 0, 5702, 5705, 1, 0, 0, 0, 5703, 5701, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5706, 1, 0, 0, 0, 5705, 5703, 1, 0, 0, 0, 5706, 5708, 3, 1189, 592, 0, 5707, 5691, 1, 0, 0, 0, 5707, 5696, 1, 0, 0, 0, 5707, 5703, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 1190, 1, 0, 0, 0, 5709, 5721, 5, 92, 0, 0, 5710, 5720, 8, 46, 0, 0, 5711, 5715, 5, 34, 0, 0, 5712, 5714, 8, 47, 0, 0, 5713, 5712, 1, 0, 0, 0, 5714, 5717, 1, 0, 0, 0, 5715, 5713, 1, 0, 0, 0, 5715, 5716, 1, 0, 0, 0, 5716, 5718, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5718, 5720, 5, 34, 0, 0, 5719, 5710, 1, 0, 0, 0, 5719, 5711, 1, 0, 0, 0, 5720, 5723, 1, 0, 0, 0, 5721, 5719, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5731, 1, 0, 0, 0, 5723, 5721, 1, 0, 0, 0, 5724, 5728, 5, 34, 0, 0, 5725, 5727, 8, 47, 0, 0, 5726, 5725, 1, 0, 0, 0, 5727, 5730, 1, 0, 0, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5732, 1, 0, 0, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5724, 1, 0, 0, 0, 5731, 5732, 1, 0, 0, 0, 5732, 1192, 1, 0, 0, 0, 5733, 5734, 5, 92, 0, 0, 5734, 5735, 5, 92, 0, 0, 5735, 1194, 1, 0, 0, 0, 5736, 5737, 9, 0, 0, 0, 5737, 1196, 1, 0, 0, 0, 5738, 5739, 3, 1201, 598, 0, 5739, 5740, 5, 39, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 5742, 6, 596, 5, 0, 5742, 1198, 1, 0, 0, 0, 5743, 5745, 3, 1201, 598, 0, 5744, 5746, 5, 92, 0, 0, 5745, 5744, 1, 0, 0, 0, 5745, 5746, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5748, 5, 0, 0, 1, 5748, 1200, 1, 0, 0, 0, 5749, 5750, 5, 39, 0, 0, 5750, 5773, 5, 39, 0, 0, 5751, 5769, 5, 92, 0, 0, 5752, 5753, 7, 27, 0, 0, 5753, 5770, 7, 39, 0, 0, 5754, 5755, 7, 23, 0, 0, 5755, 5756, 7, 39, 0, 0, 5756, 5757, 7, 39, 0, 0, 5757, 5758, 7, 39, 0, 0, 5758, 5770, 7, 39, 0, 0, 5759, 5760, 7, 23, 0, 0, 5760, 5761, 7, 39, 0, 0, 5761, 5762, 7, 39, 0, 0, 5762, 5763, 7, 39, 0, 0, 5763, 5764, 7, 39, 0, 0, 5764, 5765, 7, 39, 0, 0, 5765, 5766, 7, 39, 0, 0, 5766, 5767, 7, 39, 0, 0, 5767, 5770, 7, 39, 0, 0, 5768, 5770, 8, 48, 0, 0, 5769, 5752, 1, 0, 0, 0, 5769, 5754, 1, 0, 0, 0, 5769, 5759, 1, 0, 0, 0, 5769, 5768, 1, 0, 0, 0, 5770, 5773, 1, 0, 0, 0, 5771, 5773, 8, 49, 0, 0, 5772, 5749, 1, 0, 0, 0, 5772, 5751, 1, 0, 0, 0, 5772, 5771, 1, 0, 0, 0, 5773, 5776, 1, 0, 0, 0, 5774, 5772, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 1202, 1, 0, 0, 0, 5776, 5774, 1, 0, 0, 0, 5777, 5778, 3, 1207, 601, 0, 5778, 5779, 5, 39, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5781, 6, 599, 5, 0, 5781, 1204, 1, 0, 0, 0, 5782, 5784, 3, 1207, 601, 0, 5783, 5785, 5, 92, 0, 0, 5784, 5783, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5786, 1, 0, 0, 0, 5786, 5787, 5, 0, 0, 1, 5787, 1206, 1, 0, 0, 0, 5788, 5789, 5, 39, 0, 0, 5789, 5794, 5, 39, 0, 0, 5790, 5791, 5, 92, 0, 0, 5791, 5794, 9, 0, 0, 0, 5792, 5794, 8, 49, 0, 0, 5793, 5788, 1, 0, 0, 0, 5793, 5790, 1, 0, 0, 0, 5793, 5792, 1, 0, 0, 0, 5794, 5797, 1, 0, 0, 0, 5795, 5793, 1, 0, 0, 0, 5795, 5796, 1, 0, 0, 0, 5796, 1208, 1, 0, 0, 0, 5797, 5795, 1, 0, 0, 0, 5798, 5799, 3, 1181, 588, 0, 5799, 5800, 1, 0, 0, 0, 5800, 5801, 6, 602, 6, 0, 5801, 5802, 6, 602, 4, 0, 5802, 1210, 1, 0, 0, 0, 5803, 5804, 3, 1183, 589, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5806, 6, 603, 7, 0, 5806, 5807, 6, 603, 4, 0, 5807, 5808, 6, 603, 8, 0, 5808, 1212, 1, 0, 0, 0, 5809, 5810, 3, 1181, 588, 0, 5810, 5811, 1, 0, 0, 0, 5811, 5812, 6, 604, 6, 0, 5812, 5813, 6, 604, 4, 0, 5813, 1214, 1, 0, 0, 0, 5814, 5815, 3, 1183, 589, 0, 5815, 5816, 1, 0, 0, 0, 5816, 5817, 6, 605, 7, 0, 5817, 5818, 6, 605, 4, 0, 5818, 1216, 1, 0, 0, 0, 5819, 5820, 5, 39, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5822, 6, 606, 1, 0, 5822, 5823, 6, 606, 9, 0, 5823, 1218, 1, 0, 0, 0, 5824, 5826, 8, 50, 0, 0, 5825, 5824, 1, 0, 0, 0, 5826, 5827, 1, 0, 0, 0, 5827, 5825, 1, 0, 0, 0, 5827, 5828, 1, 0, 0, 0, 5828, 5837, 1, 0, 0, 0, 5829, 5833, 5, 36, 0, 0, 5830, 5832, 8, 50, 0, 0, 5831, 5830, 1, 0, 0, 0, 5832, 5835, 1, 0, 0, 0, 5833, 5831, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5837, 1, 0, 0, 0, 5835, 5833, 1, 0, 0, 0, 5836, 5825, 1, 0, 0, 0, 5836, 5829, 1, 0, 0, 0, 5837, 1220, 1, 0, 0, 0, 5838, 5840, 5, 36, 0, 0, 5839, 5841, 3, 1151, 573, 0, 5840, 5839, 1, 0, 0, 0, 5840, 5841, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 5, 36, 0, 0, 5843, 5844, 1, 0, 0, 0, 5844, 5845, 6, 608, 10, 0, 5845, 1222, 1, 0, 0, 0, 77, 0, 1, 2, 3, 4, 1290, 1296, 1300, 1302, 1305, 1307, 1310, 1314, 1316, 1321, 1326, 5400, 5406, 5410, 5414, 5423, 5425, 5435, 5437, 5463, 5465, 5483, 5493, 5504, 5521, 5539, 5543, 5546, 5552, 5555, 5560, 5564, 5569, 5576, 5587, 5589, 5597, 5603, 5606, 5616, 5627, 5635, 5641, 5644, 5646, 5652, 5666, 5674, 5680, 5683, 5685, 5687, 5693, 5698, 5703, 5707, 5715, 5719, 5721, 5728, 5731, 5745, 5769, 5772, 5774, 5784, 5793, 5795, 5827, 5833, 5836, 5840, 11, 7, 29, 0, 3, 0, 0, 5, 1, 0, 5, 4, 0, 0, 1, 0, 2, 2, 0, 7, 579, 0, 7, 580, 0, 2, 3, 0, 2, 1, 0, 4, 0, 0] \ No newline at end of file +[4, 0, 592, 5817, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 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, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 4, 27, 1283, 8, 27, 11, 27, 12, 27, 1284, 1, 28, 1, 28, 4, 28, 1289, 8, 28, 11, 28, 12, 28, 1290, 1, 28, 1, 28, 3, 28, 1295, 8, 28, 3, 28, 1297, 8, 28, 1, 28, 4, 28, 1300, 8, 28, 11, 28, 12, 28, 1301, 1, 28, 3, 28, 1305, 8, 28, 1, 29, 1, 29, 5, 29, 1309, 8, 29, 10, 29, 12, 29, 1312, 9, 29, 1, 29, 1, 29, 3, 29, 1316, 8, 29, 1, 29, 4, 29, 1319, 8, 29, 11, 29, 12, 29, 1320, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 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, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 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, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 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, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 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, 1, 54, 1, 54, 1, 54, 1, 54, 1, 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, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 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, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 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, 62, 1, 62, 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, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 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, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 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, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 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, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 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, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 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, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 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, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 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, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 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, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 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, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 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, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 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, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 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, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 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, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 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, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 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, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 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, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 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, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 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, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 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, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 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, 291, 1, 291, 1, 291, 1, 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, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 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, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 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, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 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, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 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, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 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, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 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, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 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, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 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, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 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, 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, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 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, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 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, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 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, 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, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 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, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 514, 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, 516, 1, 516, 1, 516, 1, 516, 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, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 1, 523, 1, 523, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 524, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 526, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 555, 1, 555, 5, 555, 5393, 8, 555, 10, 555, 12, 555, 5396, 9, 555, 1, 556, 1, 556, 1, 556, 3, 556, 5401, 8, 556, 1, 557, 1, 557, 3, 557, 5405, 8, 557, 1, 558, 1, 558, 3, 558, 5409, 8, 558, 1, 559, 1, 559, 1, 559, 1, 560, 1, 560, 1, 560, 1, 560, 5, 560, 5418, 8, 560, 10, 560, 12, 560, 5421, 9, 560, 1, 561, 1, 561, 1, 561, 1, 562, 1, 562, 1, 562, 1, 562, 5, 562, 5430, 8, 562, 10, 562, 12, 562, 5433, 9, 562, 1, 563, 1, 563, 1, 563, 1, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 566, 1, 566, 1, 566, 1, 566, 1, 567, 1, 567, 1, 567, 1, 568, 1, 568, 1, 568, 1, 568, 5, 568, 5458, 8, 568, 10, 568, 12, 568, 5461, 9, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 570, 1, 570, 1, 570, 1, 571, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 3, 572, 5478, 8, 572, 1, 572, 1, 572, 1, 572, 1, 572, 1, 573, 1, 573, 5, 573, 5486, 8, 573, 10, 573, 12, 573, 5489, 9, 573, 1, 574, 1, 574, 1, 574, 1, 575, 1, 575, 1, 575, 5, 575, 5497, 8, 575, 10, 575, 12, 575, 5500, 9, 575, 1, 576, 1, 576, 1, 576, 1, 577, 1, 577, 1, 577, 1, 578, 1, 578, 1, 578, 1, 579, 1, 579, 1, 579, 5, 579, 5514, 8, 579, 10, 579, 12, 579, 5517, 9, 579, 1, 580, 1, 580, 1, 580, 1, 581, 1, 581, 1, 581, 1, 582, 1, 582, 1, 583, 1, 583, 1, 583, 1, 583, 1, 584, 1, 584, 1, 584, 3, 584, 5534, 8, 584, 1, 584, 1, 584, 3, 584, 5538, 8, 584, 1, 584, 3, 584, 5541, 8, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 5547, 8, 584, 1, 584, 3, 584, 5550, 8, 584, 1, 584, 1, 584, 1, 584, 3, 584, 5555, 8, 584, 1, 584, 1, 584, 3, 584, 5559, 8, 584, 1, 585, 4, 585, 5562, 8, 585, 11, 585, 12, 585, 5563, 1, 586, 1, 586, 1, 586, 5, 586, 5569, 8, 586, 10, 586, 12, 586, 5572, 9, 586, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 5, 587, 5582, 8, 587, 10, 587, 12, 587, 5585, 9, 587, 1, 587, 1, 587, 1, 588, 1, 588, 1, 588, 1, 588, 1, 589, 1, 589, 1, 589, 1, 589, 5, 589, 5597, 8, 589, 10, 589, 12, 589, 5600, 9, 589, 1, 589, 1, 589, 1, 590, 1, 590, 1, 590, 1, 590, 5, 590, 5608, 8, 590, 10, 590, 12, 590, 5611, 9, 590, 1, 590, 1, 590, 1, 590, 4, 590, 5616, 8, 590, 11, 590, 12, 590, 5617, 1, 590, 1, 590, 4, 590, 5622, 8, 590, 11, 590, 12, 590, 5623, 1, 590, 5, 590, 5627, 8, 590, 10, 590, 12, 590, 5630, 9, 590, 1, 590, 5, 590, 5633, 8, 590, 10, 590, 12, 590, 5636, 9, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 591, 1, 591, 1, 591, 1, 591, 5, 591, 5647, 8, 591, 10, 591, 12, 591, 5650, 9, 591, 1, 591, 1, 591, 1, 591, 4, 591, 5655, 8, 591, 11, 591, 12, 591, 5656, 1, 591, 1, 591, 4, 591, 5661, 8, 591, 11, 591, 12, 591, 5662, 1, 591, 3, 591, 5666, 8, 591, 5, 591, 5668, 8, 591, 10, 591, 12, 591, 5671, 9, 591, 1, 591, 4, 591, 5674, 8, 591, 11, 591, 12, 591, 5675, 1, 591, 4, 591, 5679, 8, 591, 11, 591, 12, 591, 5680, 1, 591, 5, 591, 5684, 8, 591, 10, 591, 12, 591, 5687, 9, 591, 1, 591, 3, 591, 5690, 8, 591, 1, 592, 1, 592, 1, 592, 1, 592, 5, 592, 5696, 8, 592, 10, 592, 12, 592, 5699, 9, 592, 1, 592, 5, 592, 5702, 8, 592, 10, 592, 12, 592, 5705, 9, 592, 1, 592, 1, 592, 5, 592, 5709, 8, 592, 10, 592, 12, 592, 5712, 9, 592, 3, 592, 5714, 8, 592, 1, 593, 1, 593, 1, 593, 1, 594, 1, 594, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 596, 1, 596, 3, 596, 5728, 8, 596, 1, 596, 1, 596, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 3, 597, 5752, 8, 597, 1, 597, 5, 597, 5755, 8, 597, 10, 597, 12, 597, 5758, 9, 597, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 599, 1, 599, 3, 599, 5767, 8, 599, 1, 599, 1, 599, 1, 600, 1, 600, 1, 600, 1, 600, 1, 600, 5, 600, 5776, 8, 600, 10, 600, 12, 600, 5779, 9, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 604, 4, 604, 5797, 8, 604, 11, 604, 12, 604, 5798, 1, 604, 1, 604, 5, 604, 5803, 8, 604, 10, 604, 12, 604, 5806, 9, 604, 3, 604, 5808, 8, 604, 1, 605, 1, 605, 3, 605, 5812, 8, 605, 1, 605, 1, 605, 1, 605, 1, 605, 0, 0, 606, 5, 1, 7, 2, 9, 3, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 9, 23, 10, 25, 11, 27, 12, 29, 13, 31, 14, 33, 15, 35, 16, 37, 17, 39, 18, 41, 19, 43, 20, 45, 21, 47, 22, 49, 23, 51, 24, 53, 25, 55, 26, 57, 27, 59, 28, 61, 29, 63, 0, 65, 0, 67, 0, 69, 0, 71, 30, 73, 31, 75, 32, 77, 33, 79, 34, 81, 35, 83, 36, 85, 37, 87, 38, 89, 39, 91, 40, 93, 41, 95, 42, 97, 43, 99, 44, 101, 45, 103, 46, 105, 47, 107, 48, 109, 49, 111, 50, 113, 51, 115, 52, 117, 53, 119, 54, 121, 55, 123, 56, 125, 57, 127, 58, 129, 59, 131, 60, 133, 61, 135, 62, 137, 63, 139, 64, 141, 65, 143, 66, 145, 67, 147, 68, 149, 69, 151, 70, 153, 71, 155, 72, 157, 73, 159, 74, 161, 75, 163, 76, 165, 77, 167, 78, 169, 79, 171, 80, 173, 81, 175, 82, 177, 83, 179, 84, 181, 85, 183, 86, 185, 87, 187, 88, 189, 89, 191, 90, 193, 91, 195, 92, 197, 93, 199, 94, 201, 95, 203, 96, 205, 97, 207, 98, 209, 99, 211, 100, 213, 101, 215, 102, 217, 103, 219, 104, 221, 105, 223, 106, 225, 107, 227, 108, 229, 109, 231, 110, 233, 111, 235, 112, 237, 113, 239, 114, 241, 115, 243, 116, 245, 117, 247, 118, 249, 119, 251, 120, 253, 121, 255, 122, 257, 123, 259, 124, 261, 125, 263, 126, 265, 127, 267, 128, 269, 129, 271, 130, 273, 131, 275, 132, 277, 133, 279, 134, 281, 135, 283, 136, 285, 137, 287, 138, 289, 139, 291, 140, 293, 141, 295, 142, 297, 143, 299, 144, 301, 145, 303, 146, 305, 147, 307, 148, 309, 149, 311, 150, 313, 151, 315, 152, 317, 153, 319, 154, 321, 155, 323, 156, 325, 157, 327, 158, 329, 159, 331, 160, 333, 161, 335, 162, 337, 163, 339, 164, 341, 165, 343, 166, 345, 167, 347, 168, 349, 169, 351, 170, 353, 171, 355, 172, 357, 173, 359, 174, 361, 175, 363, 176, 365, 177, 367, 178, 369, 179, 371, 180, 373, 181, 375, 182, 377, 183, 379, 184, 381, 185, 383, 186, 385, 187, 387, 188, 389, 189, 391, 190, 393, 191, 395, 192, 397, 193, 399, 194, 401, 195, 403, 196, 405, 197, 407, 198, 409, 199, 411, 200, 413, 201, 415, 202, 417, 203, 419, 204, 421, 205, 423, 206, 425, 207, 427, 208, 429, 209, 431, 210, 433, 211, 435, 212, 437, 213, 439, 214, 441, 215, 443, 216, 445, 217, 447, 218, 449, 219, 451, 220, 453, 221, 455, 222, 457, 223, 459, 224, 461, 225, 463, 226, 465, 227, 467, 228, 469, 229, 471, 230, 473, 231, 475, 232, 477, 233, 479, 234, 481, 235, 483, 236, 485, 237, 487, 238, 489, 239, 491, 240, 493, 241, 495, 242, 497, 243, 499, 244, 501, 245, 503, 246, 505, 247, 507, 248, 509, 249, 511, 250, 513, 251, 515, 252, 517, 253, 519, 254, 521, 255, 523, 256, 525, 257, 527, 258, 529, 259, 531, 260, 533, 261, 535, 262, 537, 263, 539, 264, 541, 265, 543, 266, 545, 267, 547, 268, 549, 269, 551, 270, 553, 271, 555, 272, 557, 273, 559, 274, 561, 275, 563, 276, 565, 277, 567, 278, 569, 279, 571, 280, 573, 281, 575, 282, 577, 283, 579, 284, 581, 285, 583, 286, 585, 287, 587, 288, 589, 289, 591, 290, 593, 291, 595, 292, 597, 293, 599, 294, 601, 295, 603, 296, 605, 297, 607, 298, 609, 299, 611, 300, 613, 301, 615, 302, 617, 303, 619, 304, 621, 305, 623, 306, 625, 307, 627, 308, 629, 309, 631, 310, 633, 311, 635, 312, 637, 313, 639, 314, 641, 315, 643, 316, 645, 317, 647, 318, 649, 319, 651, 320, 653, 321, 655, 322, 657, 323, 659, 324, 661, 325, 663, 326, 665, 327, 667, 328, 669, 329, 671, 330, 673, 331, 675, 332, 677, 333, 679, 334, 681, 335, 683, 336, 685, 337, 687, 338, 689, 339, 691, 340, 693, 341, 695, 342, 697, 343, 699, 344, 701, 345, 703, 346, 705, 347, 707, 348, 709, 349, 711, 350, 713, 351, 715, 352, 717, 353, 719, 354, 721, 355, 723, 356, 725, 357, 727, 358, 729, 359, 731, 360, 733, 361, 735, 362, 737, 363, 739, 364, 741, 365, 743, 366, 745, 367, 747, 368, 749, 369, 751, 370, 753, 371, 755, 372, 757, 373, 759, 374, 761, 375, 763, 376, 765, 377, 767, 378, 769, 379, 771, 380, 773, 381, 775, 382, 777, 383, 779, 384, 781, 385, 783, 386, 785, 387, 787, 388, 789, 389, 791, 390, 793, 391, 795, 392, 797, 393, 799, 394, 801, 395, 803, 396, 805, 397, 807, 398, 809, 399, 811, 400, 813, 401, 815, 402, 817, 403, 819, 404, 821, 405, 823, 406, 825, 407, 827, 408, 829, 409, 831, 410, 833, 411, 835, 412, 837, 413, 839, 414, 841, 415, 843, 416, 845, 417, 847, 418, 849, 419, 851, 420, 853, 421, 855, 422, 857, 423, 859, 424, 861, 425, 863, 426, 865, 427, 867, 428, 869, 429, 871, 430, 873, 431, 875, 432, 877, 433, 879, 434, 881, 435, 883, 436, 885, 437, 887, 438, 889, 439, 891, 440, 893, 441, 895, 442, 897, 443, 899, 444, 901, 445, 903, 446, 905, 447, 907, 448, 909, 449, 911, 450, 913, 451, 915, 452, 917, 453, 919, 454, 921, 455, 923, 456, 925, 457, 927, 458, 929, 459, 931, 460, 933, 461, 935, 462, 937, 463, 939, 464, 941, 465, 943, 466, 945, 467, 947, 468, 949, 469, 951, 470, 953, 471, 955, 472, 957, 473, 959, 474, 961, 475, 963, 476, 965, 477, 967, 478, 969, 479, 971, 480, 973, 481, 975, 482, 977, 483, 979, 484, 981, 485, 983, 486, 985, 487, 987, 488, 989, 489, 991, 490, 993, 491, 995, 492, 997, 493, 999, 494, 1001, 495, 1003, 496, 1005, 497, 1007, 498, 1009, 499, 1011, 500, 1013, 501, 1015, 502, 1017, 503, 1019, 504, 1021, 505, 1023, 506, 1025, 507, 1027, 508, 1029, 509, 1031, 510, 1033, 511, 1035, 512, 1037, 513, 1039, 514, 1041, 515, 1043, 516, 1045, 517, 1047, 518, 1049, 519, 1051, 520, 1053, 521, 1055, 522, 1057, 523, 1059, 524, 1061, 525, 1063, 526, 1065, 527, 1067, 528, 1069, 529, 1071, 530, 1073, 531, 1075, 532, 1077, 533, 1079, 534, 1081, 535, 1083, 536, 1085, 537, 1087, 538, 1089, 539, 1091, 540, 1093, 541, 1095, 542, 1097, 543, 1099, 544, 1101, 545, 1103, 546, 1105, 547, 1107, 548, 1109, 549, 1111, 550, 1113, 551, 1115, 552, 1117, 0, 1119, 0, 1121, 0, 1123, 553, 1125, 554, 1127, 555, 1129, 556, 1131, 557, 1133, 558, 1135, 559, 1137, 560, 1139, 561, 1141, 562, 1143, 0, 1145, 563, 1147, 564, 1149, 565, 1151, 0, 1153, 566, 1155, 567, 1157, 568, 1159, 569, 1161, 570, 1163, 571, 1165, 572, 1167, 573, 1169, 574, 1171, 575, 1173, 576, 1175, 0, 1177, 577, 1179, 578, 1181, 579, 1183, 580, 1185, 581, 1187, 582, 1189, 583, 1191, 584, 1193, 585, 1195, 586, 1197, 587, 1199, 0, 1201, 588, 1203, 589, 1205, 0, 1207, 0, 1209, 0, 1211, 592, 1213, 590, 1215, 591, 5, 0, 1, 2, 3, 4, 51, 1, 0, 48, 57, 2, 0, 43, 43, 45, 45, 2, 0, 45, 45, 47, 47, 9, 0, 33, 33, 35, 35, 37, 38, 42, 42, 60, 64, 94, 94, 96, 96, 124, 124, 126, 126, 2, 0, 42, 43, 60, 62, 8, 0, 33, 33, 35, 35, 37, 38, 63, 64, 94, 94, 96, 96, 124, 124, 126, 126, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 82, 82, 114, 114, 2, 0, 67, 67, 99, 99, 2, 0, 77, 77, 109, 109, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 66, 66, 98, 98, 2, 0, 79, 79, 111, 111, 2, 0, 72, 72, 104, 104, 2, 0, 75, 75, 107, 107, 2, 0, 85, 85, 117, 117, 2, 0, 71, 71, 103, 103, 2, 0, 80, 80, 112, 112, 2, 0, 70, 70, 102, 102, 2, 0, 88, 88, 120, 120, 2, 0, 86, 86, 118, 118, 2, 0, 81, 81, 113, 113, 2, 0, 87, 87, 119, 119, 2, 0, 74, 74, 106, 106, 10, 0, 65, 90, 95, 95, 97, 122, 170, 170, 181, 181, 186, 186, 192, 214, 224, 246, 248, 55295, 57344, 65535, 1, 0, 55296, 56319, 1, 0, 56320, 57343, 2, 0, 0, 0, 34, 34, 1, 0, 34, 34, 1, 0, 39, 39, 1, 0, 48, 49, 3, 0, 48, 57, 65, 70, 97, 102, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 34, 34, 92, 92, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 42, 42, 47, 47, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 3, 0, 10, 10, 13, 13, 34, 34, 4, 0, 85, 85, 88, 88, 117, 117, 120, 120, 2, 0, 39, 39, 92, 92, 1, 0, 36, 36, 5883, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 0, 1085, 1, 0, 0, 0, 0, 1087, 1, 0, 0, 0, 0, 1089, 1, 0, 0, 0, 0, 1091, 1, 0, 0, 0, 0, 1093, 1, 0, 0, 0, 0, 1095, 1, 0, 0, 0, 0, 1097, 1, 0, 0, 0, 0, 1099, 1, 0, 0, 0, 0, 1101, 1, 0, 0, 0, 0, 1103, 1, 0, 0, 0, 0, 1105, 1, 0, 0, 0, 0, 1107, 1, 0, 0, 0, 0, 1109, 1, 0, 0, 0, 0, 1111, 1, 0, 0, 0, 0, 1113, 1, 0, 0, 0, 0, 1115, 1, 0, 0, 0, 0, 1123, 1, 0, 0, 0, 0, 1125, 1, 0, 0, 0, 0, 1127, 1, 0, 0, 0, 0, 1129, 1, 0, 0, 0, 0, 1131, 1, 0, 0, 0, 0, 1133, 1, 0, 0, 0, 0, 1135, 1, 0, 0, 0, 0, 1137, 1, 0, 0, 0, 0, 1139, 1, 0, 0, 0, 0, 1141, 1, 0, 0, 0, 0, 1143, 1, 0, 0, 0, 0, 1145, 1, 0, 0, 0, 0, 1147, 1, 0, 0, 0, 0, 1149, 1, 0, 0, 0, 0, 1153, 1, 0, 0, 0, 0, 1155, 1, 0, 0, 0, 0, 1157, 1, 0, 0, 0, 0, 1159, 1, 0, 0, 0, 0, 1161, 1, 0, 0, 0, 0, 1163, 1, 0, 0, 0, 0, 1165, 1, 0, 0, 0, 0, 1167, 1, 0, 0, 0, 0, 1169, 1, 0, 0, 0, 0, 1171, 1, 0, 0, 0, 0, 1173, 1, 0, 0, 0, 0, 1177, 1, 0, 0, 0, 0, 1179, 1, 0, 0, 0, 0, 1181, 1, 0, 0, 0, 0, 1183, 1, 0, 0, 0, 0, 1185, 1, 0, 0, 0, 0, 1187, 1, 0, 0, 0, 0, 1189, 1, 0, 0, 0, 0, 1191, 1, 0, 0, 0, 0, 1193, 1, 0, 0, 0, 1, 1195, 1, 0, 0, 0, 1, 1197, 1, 0, 0, 0, 1, 1201, 1, 0, 0, 0, 1, 1203, 1, 0, 0, 0, 2, 1207, 1, 0, 0, 0, 3, 1209, 1, 0, 0, 0, 3, 1211, 1, 0, 0, 0, 4, 1213, 1, 0, 0, 0, 4, 1215, 1, 0, 0, 0, 5, 1217, 1, 0, 0, 0, 7, 1219, 1, 0, 0, 0, 9, 1221, 1, 0, 0, 0, 11, 1223, 1, 0, 0, 0, 13, 1225, 1, 0, 0, 0, 15, 1227, 1, 0, 0, 0, 17, 1229, 1, 0, 0, 0, 19, 1231, 1, 0, 0, 0, 21, 1233, 1, 0, 0, 0, 23, 1235, 1, 0, 0, 0, 25, 1237, 1, 0, 0, 0, 27, 1239, 1, 0, 0, 0, 29, 1241, 1, 0, 0, 0, 31, 1243, 1, 0, 0, 0, 33, 1245, 1, 0, 0, 0, 35, 1247, 1, 0, 0, 0, 37, 1249, 1, 0, 0, 0, 39, 1251, 1, 0, 0, 0, 41, 1254, 1, 0, 0, 0, 43, 1257, 1, 0, 0, 0, 45, 1260, 1, 0, 0, 0, 47, 1263, 1, 0, 0, 0, 49, 1266, 1, 0, 0, 0, 51, 1269, 1, 0, 0, 0, 53, 1272, 1, 0, 0, 0, 55, 1275, 1, 0, 0, 0, 57, 1278, 1, 0, 0, 0, 59, 1280, 1, 0, 0, 0, 61, 1304, 1, 0, 0, 0, 63, 1310, 1, 0, 0, 0, 65, 1324, 1, 0, 0, 0, 67, 1326, 1, 0, 0, 0, 69, 1328, 1, 0, 0, 0, 71, 1330, 1, 0, 0, 0, 73, 1334, 1, 0, 0, 0, 75, 1342, 1, 0, 0, 0, 77, 1350, 1, 0, 0, 0, 79, 1354, 1, 0, 0, 0, 81, 1358, 1, 0, 0, 0, 83, 1364, 1, 0, 0, 0, 85, 1367, 1, 0, 0, 0, 87, 1371, 1, 0, 0, 0, 89, 1382, 1, 0, 0, 0, 91, 1387, 1, 0, 0, 0, 93, 1392, 1, 0, 0, 0, 95, 1397, 1, 0, 0, 0, 97, 1403, 1, 0, 0, 0, 99, 1411, 1, 0, 0, 0, 101, 1418, 1, 0, 0, 0, 103, 1429, 1, 0, 0, 0, 105, 1436, 1, 0, 0, 0, 107, 1452, 1, 0, 0, 0, 109, 1465, 1, 0, 0, 0, 111, 1478, 1, 0, 0, 0, 113, 1491, 1, 0, 0, 0, 115, 1509, 1, 0, 0, 0, 117, 1522, 1, 0, 0, 0, 119, 1530, 1, 0, 0, 0, 121, 1541, 1, 0, 0, 0, 123, 1546, 1, 0, 0, 0, 125, 1555, 1, 0, 0, 0, 127, 1558, 1, 0, 0, 0, 129, 1563, 1, 0, 0, 0, 131, 1570, 1, 0, 0, 0, 133, 1576, 1, 0, 0, 0, 135, 1582, 1, 0, 0, 0, 137, 1586, 1, 0, 0, 0, 139, 1594, 1, 0, 0, 0, 141, 1599, 1, 0, 0, 0, 143, 1605, 1, 0, 0, 0, 145, 1611, 1, 0, 0, 0, 147, 1618, 1, 0, 0, 0, 149, 1621, 1, 0, 0, 0, 151, 1631, 1, 0, 0, 0, 153, 1641, 1, 0, 0, 0, 155, 1646, 1, 0, 0, 0, 157, 1654, 1, 0, 0, 0, 159, 1662, 1, 0, 0, 0, 161, 1668, 1, 0, 0, 0, 163, 1678, 1, 0, 0, 0, 165, 1693, 1, 0, 0, 0, 167, 1697, 1, 0, 0, 0, 169, 1702, 1, 0, 0, 0, 171, 1709, 1, 0, 0, 0, 173, 1712, 1, 0, 0, 0, 175, 1717, 1, 0, 0, 0, 177, 1720, 1, 0, 0, 0, 179, 1726, 1, 0, 0, 0, 181, 1734, 1, 0, 0, 0, 183, 1742, 1, 0, 0, 0, 185, 1753, 1, 0, 0, 0, 187, 1763, 1, 0, 0, 0, 189, 1770, 1, 0, 0, 0, 191, 1783, 1, 0, 0, 0, 193, 1788, 1, 0, 0, 0, 195, 1798, 1, 0, 0, 0, 197, 1804, 1, 0, 0, 0, 199, 1809, 1, 0, 0, 0, 201, 1812, 1, 0, 0, 0, 203, 1821, 1, 0, 0, 0, 205, 1826, 1, 0, 0, 0, 207, 1832, 1, 0, 0, 0, 209, 1839, 1, 0, 0, 0, 211, 1844, 1, 0, 0, 0, 213, 1850, 1, 0, 0, 0, 215, 1859, 1, 0, 0, 0, 217, 1864, 1, 0, 0, 0, 219, 1870, 1, 0, 0, 0, 221, 1877, 1, 0, 0, 0, 223, 1882, 1, 0, 0, 0, 225, 1896, 1, 0, 0, 0, 227, 1903, 1, 0, 0, 0, 229, 1913, 1, 0, 0, 0, 231, 1926, 1, 0, 0, 0, 233, 1932, 1, 0, 0, 0, 235, 1947, 1, 0, 0, 0, 237, 1954, 1, 0, 0, 0, 239, 1959, 1, 0, 0, 0, 241, 1965, 1, 0, 0, 0, 243, 1971, 1, 0, 0, 0, 245, 1974, 1, 0, 0, 0, 247, 1981, 1, 0, 0, 0, 249, 1986, 1, 0, 0, 0, 251, 1991, 1, 0, 0, 0, 253, 1996, 1, 0, 0, 0, 255, 2004, 1, 0, 0, 0, 257, 2012, 1, 0, 0, 0, 259, 2018, 1, 0, 0, 0, 261, 2023, 1, 0, 0, 0, 263, 2032, 1, 0, 0, 0, 265, 2038, 1, 0, 0, 0, 267, 2046, 1, 0, 0, 0, 269, 2054, 1, 0, 0, 0, 271, 2060, 1, 0, 0, 0, 273, 2069, 1, 0, 0, 0, 275, 2076, 1, 0, 0, 0, 277, 2083, 1, 0, 0, 0, 279, 2087, 1, 0, 0, 0, 281, 2093, 1, 0, 0, 0, 283, 2099, 1, 0, 0, 0, 285, 2109, 1, 0, 0, 0, 287, 2114, 1, 0, 0, 0, 289, 2120, 1, 0, 0, 0, 291, 2127, 1, 0, 0, 0, 293, 2137, 1, 0, 0, 0, 295, 2148, 1, 0, 0, 0, 297, 2151, 1, 0, 0, 0, 299, 2161, 1, 0, 0, 0, 301, 2170, 1, 0, 0, 0, 303, 2177, 1, 0, 0, 0, 305, 2183, 1, 0, 0, 0, 307, 2186, 1, 0, 0, 0, 309, 2192, 1, 0, 0, 0, 311, 2199, 1, 0, 0, 0, 313, 2207, 1, 0, 0, 0, 315, 2216, 1, 0, 0, 0, 317, 2224, 1, 0, 0, 0, 319, 2230, 1, 0, 0, 0, 321, 2246, 1, 0, 0, 0, 323, 2257, 1, 0, 0, 0, 325, 2263, 1, 0, 0, 0, 327, 2269, 1, 0, 0, 0, 329, 2277, 1, 0, 0, 0, 331, 2285, 1, 0, 0, 0, 333, 2294, 1, 0, 0, 0, 335, 2301, 1, 0, 0, 0, 337, 2311, 1, 0, 0, 0, 339, 2325, 1, 0, 0, 0, 341, 2336, 1, 0, 0, 0, 343, 2348, 1, 0, 0, 0, 345, 2356, 1, 0, 0, 0, 347, 2365, 1, 0, 0, 0, 349, 2376, 1, 0, 0, 0, 351, 2381, 1, 0, 0, 0, 353, 2386, 1, 0, 0, 0, 355, 2390, 1, 0, 0, 0, 357, 2397, 1, 0, 0, 0, 359, 2403, 1, 0, 0, 0, 361, 2408, 1, 0, 0, 0, 363, 2417, 1, 0, 0, 0, 365, 2421, 1, 0, 0, 0, 367, 2432, 1, 0, 0, 0, 369, 2440, 1, 0, 0, 0, 371, 2449, 1, 0, 0, 0, 373, 2458, 1, 0, 0, 0, 375, 2466, 1, 0, 0, 0, 377, 2473, 1, 0, 0, 0, 379, 2483, 1, 0, 0, 0, 381, 2494, 1, 0, 0, 0, 383, 2505, 1, 0, 0, 0, 385, 2513, 1, 0, 0, 0, 387, 2521, 1, 0, 0, 0, 389, 2530, 1, 0, 0, 0, 391, 2537, 1, 0, 0, 0, 393, 2544, 1, 0, 0, 0, 395, 2549, 1, 0, 0, 0, 397, 2554, 1, 0, 0, 0, 399, 2561, 1, 0, 0, 0, 401, 2570, 1, 0, 0, 0, 403, 2580, 1, 0, 0, 0, 405, 2585, 1, 0, 0, 0, 407, 2592, 1, 0, 0, 0, 409, 2598, 1, 0, 0, 0, 411, 2606, 1, 0, 0, 0, 413, 2616, 1, 0, 0, 0, 415, 2626, 1, 0, 0, 0, 417, 2634, 1, 0, 0, 0, 419, 2642, 1, 0, 0, 0, 421, 2652, 1, 0, 0, 0, 423, 2661, 1, 0, 0, 0, 425, 2668, 1, 0, 0, 0, 427, 2674, 1, 0, 0, 0, 429, 2684, 1, 0, 0, 0, 431, 2690, 1, 0, 0, 0, 433, 2698, 1, 0, 0, 0, 435, 2707, 1, 0, 0, 0, 437, 2717, 1, 0, 0, 0, 439, 2724, 1, 0, 0, 0, 441, 2732, 1, 0, 0, 0, 443, 2740, 1, 0, 0, 0, 445, 2747, 1, 0, 0, 0, 447, 2752, 1, 0, 0, 0, 449, 2757, 1, 0, 0, 0, 451, 2766, 1, 0, 0, 0, 453, 2769, 1, 0, 0, 0, 455, 2779, 1, 0, 0, 0, 457, 2789, 1, 0, 0, 0, 459, 2798, 1, 0, 0, 0, 461, 2808, 1, 0, 0, 0, 463, 2818, 1, 0, 0, 0, 465, 2824, 1, 0, 0, 0, 467, 2832, 1, 0, 0, 0, 469, 2840, 1, 0, 0, 0, 471, 2850, 1, 0, 0, 0, 473, 2860, 1, 0, 0, 0, 475, 2872, 1, 0, 0, 0, 477, 2881, 1, 0, 0, 0, 479, 2892, 1, 0, 0, 0, 481, 2903, 1, 0, 0, 0, 483, 2916, 1, 0, 0, 0, 485, 2927, 1, 0, 0, 0, 487, 2940, 1, 0, 0, 0, 489, 2949, 1, 0, 0, 0, 491, 2956, 1, 0, 0, 0, 493, 2968, 1, 0, 0, 0, 495, 2975, 1, 0, 0, 0, 497, 2983, 1, 0, 0, 0, 499, 2991, 1, 0, 0, 0, 501, 3001, 1, 0, 0, 0, 503, 3005, 1, 0, 0, 0, 505, 3011, 1, 0, 0, 0, 507, 3020, 1, 0, 0, 0, 509, 3026, 1, 0, 0, 0, 511, 3031, 1, 0, 0, 0, 513, 3041, 1, 0, 0, 0, 515, 3047, 1, 0, 0, 0, 517, 3054, 1, 0, 0, 0, 519, 3059, 1, 0, 0, 0, 521, 3065, 1, 0, 0, 0, 523, 3074, 1, 0, 0, 0, 525, 3079, 1, 0, 0, 0, 527, 3087, 1, 0, 0, 0, 529, 3093, 1, 0, 0, 0, 531, 3106, 1, 0, 0, 0, 533, 3115, 1, 0, 0, 0, 535, 3122, 1, 0, 0, 0, 537, 3131, 1, 0, 0, 0, 539, 3136, 1, 0, 0, 0, 541, 3142, 1, 0, 0, 0, 543, 3147, 1, 0, 0, 0, 545, 3152, 1, 0, 0, 0, 547, 3158, 1, 0, 0, 0, 549, 3163, 1, 0, 0, 0, 551, 3166, 1, 0, 0, 0, 553, 3174, 1, 0, 0, 0, 555, 3181, 1, 0, 0, 0, 557, 3188, 1, 0, 0, 0, 559, 3194, 1, 0, 0, 0, 561, 3201, 1, 0, 0, 0, 563, 3204, 1, 0, 0, 0, 565, 3208, 1, 0, 0, 0, 567, 3213, 1, 0, 0, 0, 569, 3222, 1, 0, 0, 0, 571, 3229, 1, 0, 0, 0, 573, 3237, 1, 0, 0, 0, 575, 3243, 1, 0, 0, 0, 577, 3249, 1, 0, 0, 0, 579, 3256, 1, 0, 0, 0, 581, 3264, 1, 0, 0, 0, 583, 3274, 1, 0, 0, 0, 585, 3282, 1, 0, 0, 0, 587, 3291, 1, 0, 0, 0, 589, 3297, 1, 0, 0, 0, 591, 3307, 1, 0, 0, 0, 593, 3315, 1, 0, 0, 0, 595, 3324, 1, 0, 0, 0, 597, 3333, 1, 0, 0, 0, 599, 3339, 1, 0, 0, 0, 601, 3350, 1, 0, 0, 0, 603, 3361, 1, 0, 0, 0, 605, 3371, 1, 0, 0, 0, 607, 3379, 1, 0, 0, 0, 609, 3385, 1, 0, 0, 0, 611, 3391, 1, 0, 0, 0, 613, 3396, 1, 0, 0, 0, 615, 3405, 1, 0, 0, 0, 617, 3413, 1, 0, 0, 0, 619, 3423, 1, 0, 0, 0, 621, 3427, 1, 0, 0, 0, 623, 3435, 1, 0, 0, 0, 625, 3443, 1, 0, 0, 0, 627, 3452, 1, 0, 0, 0, 629, 3460, 1, 0, 0, 0, 631, 3467, 1, 0, 0, 0, 633, 3478, 1, 0, 0, 0, 635, 3486, 1, 0, 0, 0, 637, 3494, 1, 0, 0, 0, 639, 3500, 1, 0, 0, 0, 641, 3508, 1, 0, 0, 0, 643, 3517, 1, 0, 0, 0, 645, 3525, 1, 0, 0, 0, 647, 3532, 1, 0, 0, 0, 649, 3537, 1, 0, 0, 0, 651, 3546, 1, 0, 0, 0, 653, 3551, 1, 0, 0, 0, 655, 3556, 1, 0, 0, 0, 657, 3566, 1, 0, 0, 0, 659, 3573, 1, 0, 0, 0, 661, 3580, 1, 0, 0, 0, 663, 3587, 1, 0, 0, 0, 665, 3594, 1, 0, 0, 0, 667, 3603, 1, 0, 0, 0, 669, 3612, 1, 0, 0, 0, 671, 3622, 1, 0, 0, 0, 673, 3635, 1, 0, 0, 0, 675, 3642, 1, 0, 0, 0, 677, 3650, 1, 0, 0, 0, 679, 3654, 1, 0, 0, 0, 681, 3660, 1, 0, 0, 0, 683, 3665, 1, 0, 0, 0, 685, 3672, 1, 0, 0, 0, 687, 3681, 1, 0, 0, 0, 689, 3688, 1, 0, 0, 0, 691, 3699, 1, 0, 0, 0, 693, 3705, 1, 0, 0, 0, 695, 3715, 1, 0, 0, 0, 697, 3726, 1, 0, 0, 0, 699, 3732, 1, 0, 0, 0, 701, 3739, 1, 0, 0, 0, 703, 3747, 1, 0, 0, 0, 705, 3754, 1, 0, 0, 0, 707, 3760, 1, 0, 0, 0, 709, 3766, 1, 0, 0, 0, 711, 3773, 1, 0, 0, 0, 713, 3780, 1, 0, 0, 0, 715, 3791, 1, 0, 0, 0, 717, 3796, 1, 0, 0, 0, 719, 3805, 1, 0, 0, 0, 721, 3815, 1, 0, 0, 0, 723, 3820, 1, 0, 0, 0, 725, 3832, 1, 0, 0, 0, 727, 3840, 1, 0, 0, 0, 729, 3849, 1, 0, 0, 0, 731, 3857, 1, 0, 0, 0, 733, 3862, 1, 0, 0, 0, 735, 3868, 1, 0, 0, 0, 737, 3878, 1, 0, 0, 0, 739, 3890, 1, 0, 0, 0, 741, 3902, 1, 0, 0, 0, 743, 3910, 1, 0, 0, 0, 745, 3919, 1, 0, 0, 0, 747, 3928, 1, 0, 0, 0, 749, 3934, 1, 0, 0, 0, 751, 3941, 1, 0, 0, 0, 753, 3948, 1, 0, 0, 0, 755, 3954, 1, 0, 0, 0, 757, 3963, 1, 0, 0, 0, 759, 3973, 1, 0, 0, 0, 761, 3981, 1, 0, 0, 0, 763, 3989, 1, 0, 0, 0, 765, 3994, 1, 0, 0, 0, 767, 4003, 1, 0, 0, 0, 769, 4014, 1, 0, 0, 0, 771, 4022, 1, 0, 0, 0, 773, 4027, 1, 0, 0, 0, 775, 4035, 1, 0, 0, 0, 777, 4041, 1, 0, 0, 0, 779, 4045, 1, 0, 0, 0, 781, 4050, 1, 0, 0, 0, 783, 4054, 1, 0, 0, 0, 785, 4059, 1, 0, 0, 0, 787, 4067, 1, 0, 0, 0, 789, 4074, 1, 0, 0, 0, 791, 4078, 1, 0, 0, 0, 793, 4086, 1, 0, 0, 0, 795, 4091, 1, 0, 0, 0, 797, 4101, 1, 0, 0, 0, 799, 4110, 1, 0, 0, 0, 801, 4114, 1, 0, 0, 0, 803, 4122, 1, 0, 0, 0, 805, 4129, 1, 0, 0, 0, 807, 4137, 1, 0, 0, 0, 809, 4143, 1, 0, 0, 0, 811, 4152, 1, 0, 0, 0, 813, 4158, 1, 0, 0, 0, 815, 4162, 1, 0, 0, 0, 817, 4170, 1, 0, 0, 0, 819, 4179, 1, 0, 0, 0, 821, 4185, 1, 0, 0, 0, 823, 4194, 1, 0, 0, 0, 825, 4200, 1, 0, 0, 0, 827, 4205, 1, 0, 0, 0, 829, 4212, 1, 0, 0, 0, 831, 4220, 1, 0, 0, 0, 833, 4228, 1, 0, 0, 0, 835, 4237, 1, 0, 0, 0, 837, 4247, 1, 0, 0, 0, 839, 4252, 1, 0, 0, 0, 841, 4256, 1, 0, 0, 0, 843, 4262, 1, 0, 0, 0, 845, 4271, 1, 0, 0, 0, 847, 4281, 1, 0, 0, 0, 849, 4286, 1, 0, 0, 0, 851, 4296, 1, 0, 0, 0, 853, 4302, 1, 0, 0, 0, 855, 4307, 1, 0, 0, 0, 857, 4314, 1, 0, 0, 0, 859, 4322, 1, 0, 0, 0, 861, 4336, 1, 0, 0, 0, 863, 4346, 1, 0, 0, 0, 865, 4357, 1, 0, 0, 0, 867, 4367, 1, 0, 0, 0, 869, 4377, 1, 0, 0, 0, 871, 4386, 1, 0, 0, 0, 873, 4392, 1, 0, 0, 0, 875, 4400, 1, 0, 0, 0, 877, 4413, 1, 0, 0, 0, 879, 4418, 1, 0, 0, 0, 881, 4426, 1, 0, 0, 0, 883, 4433, 1, 0, 0, 0, 885, 4440, 1, 0, 0, 0, 887, 4451, 1, 0, 0, 0, 889, 4461, 1, 0, 0, 0, 891, 4468, 1, 0, 0, 0, 893, 4475, 1, 0, 0, 0, 895, 4483, 1, 0, 0, 0, 897, 4491, 1, 0, 0, 0, 899, 4501, 1, 0, 0, 0, 901, 4508, 1, 0, 0, 0, 903, 4515, 1, 0, 0, 0, 905, 4522, 1, 0, 0, 0, 907, 4534, 1, 0, 0, 0, 909, 4538, 1, 0, 0, 0, 911, 4542, 1, 0, 0, 0, 913, 4548, 1, 0, 0, 0, 915, 4561, 1, 0, 0, 0, 917, 4573, 1, 0, 0, 0, 919, 4577, 1, 0, 0, 0, 921, 4581, 1, 0, 0, 0, 923, 4590, 1, 0, 0, 0, 925, 4598, 1, 0, 0, 0, 927, 4609, 1, 0, 0, 0, 929, 4615, 1, 0, 0, 0, 931, 4623, 1, 0, 0, 0, 933, 4632, 1, 0, 0, 0, 935, 4636, 1, 0, 0, 0, 937, 4644, 1, 0, 0, 0, 939, 4655, 1, 0, 0, 0, 941, 4664, 1, 0, 0, 0, 943, 4669, 1, 0, 0, 0, 945, 4676, 1, 0, 0, 0, 947, 4681, 1, 0, 0, 0, 949, 4688, 1, 0, 0, 0, 951, 4693, 1, 0, 0, 0, 953, 4702, 1, 0, 0, 0, 955, 4707, 1, 0, 0, 0, 957, 4719, 1, 0, 0, 0, 959, 4730, 1, 0, 0, 0, 961, 4739, 1, 0, 0, 0, 963, 4747, 1, 0, 0, 0, 965, 4761, 1, 0, 0, 0, 967, 4769, 1, 0, 0, 0, 969, 4780, 1, 0, 0, 0, 971, 4787, 1, 0, 0, 0, 973, 4794, 1, 0, 0, 0, 975, 4801, 1, 0, 0, 0, 977, 4808, 1, 0, 0, 0, 979, 4812, 1, 0, 0, 0, 981, 4816, 1, 0, 0, 0, 983, 4821, 1, 0, 0, 0, 985, 4826, 1, 0, 0, 0, 987, 4834, 1, 0, 0, 0, 989, 4840, 1, 0, 0, 0, 991, 4850, 1, 0, 0, 0, 993, 4855, 1, 0, 0, 0, 995, 4875, 1, 0, 0, 0, 997, 4893, 1, 0, 0, 0, 999, 4899, 1, 0, 0, 0, 1001, 4912, 1, 0, 0, 0, 1003, 4923, 1, 0, 0, 0, 1005, 4929, 1, 0, 0, 0, 1007, 4938, 1, 0, 0, 0, 1009, 4946, 1, 0, 0, 0, 1011, 4950, 1, 0, 0, 0, 1013, 4962, 1, 0, 0, 0, 1015, 4970, 1, 0, 0, 0, 1017, 4976, 1, 0, 0, 0, 1019, 4982, 1, 0, 0, 0, 1021, 4990, 1, 0, 0, 0, 1023, 4998, 1, 0, 0, 0, 1025, 5004, 1, 0, 0, 0, 1027, 5009, 1, 0, 0, 0, 1029, 5016, 1, 0, 0, 0, 1031, 5022, 1, 0, 0, 0, 1033, 5028, 1, 0, 0, 0, 1035, 5037, 1, 0, 0, 0, 1037, 5043, 1, 0, 0, 0, 1039, 5047, 1, 0, 0, 0, 1041, 5052, 1, 0, 0, 0, 1043, 5059, 1, 0, 0, 0, 1045, 5067, 1, 0, 0, 0, 1047, 5077, 1, 0, 0, 0, 1049, 5084, 1, 0, 0, 0, 1051, 5089, 1, 0, 0, 0, 1053, 5094, 1, 0, 0, 0, 1055, 5105, 1, 0, 0, 0, 1057, 5111, 1, 0, 0, 0, 1059, 5119, 1, 0, 0, 0, 1061, 5126, 1, 0, 0, 0, 1063, 5132, 1, 0, 0, 0, 1065, 5140, 1, 0, 0, 0, 1067, 5148, 1, 0, 0, 0, 1069, 5154, 1, 0, 0, 0, 1071, 5161, 1, 0, 0, 0, 1073, 5172, 1, 0, 0, 0, 1075, 5177, 1, 0, 0, 0, 1077, 5186, 1, 0, 0, 0, 1079, 5194, 1, 0, 0, 0, 1081, 5204, 1, 0, 0, 0, 1083, 5210, 1, 0, 0, 0, 1085, 5218, 1, 0, 0, 0, 1087, 5230, 1, 0, 0, 0, 1089, 5244, 1, 0, 0, 0, 1091, 5254, 1, 0, 0, 0, 1093, 5266, 1, 0, 0, 0, 1095, 5277, 1, 0, 0, 0, 1097, 5289, 1, 0, 0, 0, 1099, 5301, 1, 0, 0, 0, 1101, 5307, 1, 0, 0, 0, 1103, 5316, 1, 0, 0, 0, 1105, 5321, 1, 0, 0, 0, 1107, 5333, 1, 0, 0, 0, 1109, 5352, 1, 0, 0, 0, 1111, 5364, 1, 0, 0, 0, 1113, 5379, 1, 0, 0, 0, 1115, 5390, 1, 0, 0, 0, 1117, 5400, 1, 0, 0, 0, 1119, 5404, 1, 0, 0, 0, 1121, 5408, 1, 0, 0, 0, 1123, 5410, 1, 0, 0, 0, 1125, 5413, 1, 0, 0, 0, 1127, 5422, 1, 0, 0, 0, 1129, 5425, 1, 0, 0, 0, 1131, 5434, 1, 0, 0, 0, 1133, 5438, 1, 0, 0, 0, 1135, 5442, 1, 0, 0, 0, 1137, 5446, 1, 0, 0, 0, 1139, 5450, 1, 0, 0, 0, 1141, 5453, 1, 0, 0, 0, 1143, 5462, 1, 0, 0, 0, 1145, 5468, 1, 0, 0, 0, 1147, 5471, 1, 0, 0, 0, 1149, 5475, 1, 0, 0, 0, 1151, 5483, 1, 0, 0, 0, 1153, 5490, 1, 0, 0, 0, 1155, 5493, 1, 0, 0, 0, 1157, 5501, 1, 0, 0, 0, 1159, 5504, 1, 0, 0, 0, 1161, 5507, 1, 0, 0, 0, 1163, 5510, 1, 0, 0, 0, 1165, 5518, 1, 0, 0, 0, 1167, 5521, 1, 0, 0, 0, 1169, 5524, 1, 0, 0, 0, 1171, 5526, 1, 0, 0, 0, 1173, 5558, 1, 0, 0, 0, 1175, 5561, 1, 0, 0, 0, 1177, 5565, 1, 0, 0, 0, 1179, 5573, 1, 0, 0, 0, 1181, 5588, 1, 0, 0, 0, 1183, 5592, 1, 0, 0, 0, 1185, 5603, 1, 0, 0, 0, 1187, 5642, 1, 0, 0, 0, 1189, 5691, 1, 0, 0, 0, 1191, 5715, 1, 0, 0, 0, 1193, 5718, 1, 0, 0, 0, 1195, 5720, 1, 0, 0, 0, 1197, 5725, 1, 0, 0, 0, 1199, 5756, 1, 0, 0, 0, 1201, 5759, 1, 0, 0, 0, 1203, 5764, 1, 0, 0, 0, 1205, 5777, 1, 0, 0, 0, 1207, 5780, 1, 0, 0, 0, 1209, 5785, 1, 0, 0, 0, 1211, 5790, 1, 0, 0, 0, 1213, 5807, 1, 0, 0, 0, 1215, 5809, 1, 0, 0, 0, 1217, 1218, 5, 36, 0, 0, 1218, 6, 1, 0, 0, 0, 1219, 1220, 5, 40, 0, 0, 1220, 8, 1, 0, 0, 0, 1221, 1222, 5, 41, 0, 0, 1222, 10, 1, 0, 0, 0, 1223, 1224, 5, 91, 0, 0, 1224, 12, 1, 0, 0, 0, 1225, 1226, 5, 93, 0, 0, 1226, 14, 1, 0, 0, 0, 1227, 1228, 5, 44, 0, 0, 1228, 16, 1, 0, 0, 0, 1229, 1230, 5, 59, 0, 0, 1230, 18, 1, 0, 0, 0, 1231, 1232, 5, 58, 0, 0, 1232, 20, 1, 0, 0, 0, 1233, 1234, 5, 42, 0, 0, 1234, 22, 1, 0, 0, 0, 1235, 1236, 5, 61, 0, 0, 1236, 24, 1, 0, 0, 0, 1237, 1238, 5, 46, 0, 0, 1238, 26, 1, 0, 0, 0, 1239, 1240, 5, 43, 0, 0, 1240, 28, 1, 0, 0, 0, 1241, 1242, 5, 45, 0, 0, 1242, 30, 1, 0, 0, 0, 1243, 1244, 5, 47, 0, 0, 1244, 32, 1, 0, 0, 0, 1245, 1246, 5, 94, 0, 0, 1246, 34, 1, 0, 0, 0, 1247, 1248, 5, 60, 0, 0, 1248, 36, 1, 0, 0, 0, 1249, 1250, 5, 62, 0, 0, 1250, 38, 1, 0, 0, 0, 1251, 1252, 5, 60, 0, 0, 1252, 1253, 5, 60, 0, 0, 1253, 40, 1, 0, 0, 0, 1254, 1255, 5, 62, 0, 0, 1255, 1256, 5, 62, 0, 0, 1256, 42, 1, 0, 0, 0, 1257, 1258, 5, 58, 0, 0, 1258, 1259, 5, 61, 0, 0, 1259, 44, 1, 0, 0, 0, 1260, 1261, 5, 60, 0, 0, 1261, 1262, 5, 61, 0, 0, 1262, 46, 1, 0, 0, 0, 1263, 1264, 5, 61, 0, 0, 1264, 1265, 5, 62, 0, 0, 1265, 48, 1, 0, 0, 0, 1266, 1267, 5, 62, 0, 0, 1267, 1268, 5, 61, 0, 0, 1268, 50, 1, 0, 0, 0, 1269, 1270, 5, 46, 0, 0, 1270, 1271, 5, 46, 0, 0, 1271, 52, 1, 0, 0, 0, 1272, 1273, 5, 60, 0, 0, 1273, 1274, 5, 62, 0, 0, 1274, 54, 1, 0, 0, 0, 1275, 1276, 5, 58, 0, 0, 1276, 1277, 5, 58, 0, 0, 1277, 56, 1, 0, 0, 0, 1278, 1279, 5, 37, 0, 0, 1279, 58, 1, 0, 0, 0, 1280, 1282, 5, 36, 0, 0, 1281, 1283, 7, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 60, 1, 0, 0, 0, 1286, 1300, 3, 65, 30, 0, 1287, 1289, 7, 1, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1296, 1, 0, 0, 0, 1292, 1297, 3, 65, 30, 0, 1293, 1295, 5, 47, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1292, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1300, 5, 47, 0, 0, 1299, 1286, 1, 0, 0, 0, 1299, 1288, 1, 0, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1305, 1, 0, 0, 0, 1303, 1305, 7, 1, 0, 0, 1304, 1299, 1, 0, 0, 0, 1304, 1303, 1, 0, 0, 0, 1305, 62, 1, 0, 0, 0, 1306, 1309, 3, 67, 31, 0, 1307, 1309, 7, 2, 0, 0, 1308, 1306, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 1312, 1, 0, 0, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1310, 1, 0, 0, 0, 1313, 1315, 3, 69, 32, 0, 1314, 1316, 3, 61, 28, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1319, 7, 1, 0, 0, 1318, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 6, 29, 0, 0, 1323, 64, 1, 0, 0, 0, 1324, 1325, 7, 3, 0, 0, 1325, 66, 1, 0, 0, 0, 1326, 1327, 7, 4, 0, 0, 1327, 68, 1, 0, 0, 0, 1328, 1329, 7, 5, 0, 0, 1329, 70, 1, 0, 0, 0, 1330, 1331, 7, 6, 0, 0, 1331, 1332, 7, 7, 0, 0, 1332, 1333, 7, 7, 0, 0, 1333, 72, 1, 0, 0, 0, 1334, 1335, 7, 6, 0, 0, 1335, 1336, 7, 8, 0, 0, 1336, 1337, 7, 6, 0, 0, 1337, 1338, 7, 7, 0, 0, 1338, 1339, 7, 9, 0, 0, 1339, 1340, 7, 10, 0, 0, 1340, 1341, 7, 11, 0, 0, 1341, 74, 1, 0, 0, 0, 1342, 1343, 7, 6, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1345, 7, 6, 0, 0, 1345, 1346, 7, 7, 0, 0, 1346, 1347, 7, 9, 0, 0, 1347, 1348, 7, 12, 0, 0, 1348, 1349, 7, 11, 0, 0, 1349, 76, 1, 0, 0, 0, 1350, 1351, 7, 6, 0, 0, 1351, 1352, 7, 8, 0, 0, 1352, 1353, 7, 13, 0, 0, 1353, 78, 1, 0, 0, 0, 1354, 1355, 7, 6, 0, 0, 1355, 1356, 7, 8, 0, 0, 1356, 1357, 7, 9, 0, 0, 1357, 80, 1, 0, 0, 0, 1358, 1359, 7, 6, 0, 0, 1359, 1360, 7, 14, 0, 0, 1360, 1361, 7, 14, 0, 0, 1361, 1362, 7, 6, 0, 0, 1362, 1363, 7, 9, 0, 0, 1363, 82, 1, 0, 0, 0, 1364, 1365, 7, 6, 0, 0, 1365, 1366, 7, 10, 0, 0, 1366, 84, 1, 0, 0, 0, 1367, 1368, 7, 6, 0, 0, 1368, 1369, 7, 10, 0, 0, 1369, 1370, 7, 15, 0, 0, 1370, 86, 1, 0, 0, 0, 1371, 1372, 7, 6, 0, 0, 1372, 1373, 7, 10, 0, 0, 1373, 1374, 7, 9, 0, 0, 1374, 1375, 7, 16, 0, 0, 1375, 1376, 7, 16, 0, 0, 1376, 1377, 7, 11, 0, 0, 1377, 1378, 7, 17, 0, 0, 1378, 1379, 7, 14, 0, 0, 1379, 1380, 7, 18, 0, 0, 1380, 1381, 7, 15, 0, 0, 1381, 88, 1, 0, 0, 0, 1382, 1383, 7, 19, 0, 0, 1383, 1384, 7, 20, 0, 0, 1384, 1385, 7, 17, 0, 0, 1385, 1386, 7, 21, 0, 0, 1386, 90, 1, 0, 0, 0, 1387, 1388, 7, 15, 0, 0, 1388, 1389, 7, 6, 0, 0, 1389, 1390, 7, 10, 0, 0, 1390, 1391, 7, 11, 0, 0, 1391, 92, 1, 0, 0, 0, 1392, 1393, 7, 15, 0, 0, 1393, 1394, 7, 6, 0, 0, 1394, 1395, 7, 10, 0, 0, 1395, 1396, 7, 17, 0, 0, 1396, 94, 1, 0, 0, 0, 1397, 1398, 7, 15, 0, 0, 1398, 1399, 7, 21, 0, 0, 1399, 1400, 7, 11, 0, 0, 1400, 1401, 7, 15, 0, 0, 1401, 1402, 7, 22, 0, 0, 1402, 96, 1, 0, 0, 0, 1403, 1404, 7, 15, 0, 0, 1404, 1405, 7, 20, 0, 0, 1405, 1406, 7, 7, 0, 0, 1406, 1407, 7, 7, 0, 0, 1407, 1408, 7, 6, 0, 0, 1408, 1409, 7, 17, 0, 0, 1409, 1410, 7, 11, 0, 0, 1410, 98, 1, 0, 0, 0, 1411, 1412, 7, 15, 0, 0, 1412, 1413, 7, 20, 0, 0, 1413, 1414, 7, 7, 0, 0, 1414, 1415, 7, 23, 0, 0, 1415, 1416, 7, 16, 0, 0, 1416, 1417, 7, 8, 0, 0, 1417, 100, 1, 0, 0, 0, 1418, 1419, 7, 15, 0, 0, 1419, 1420, 7, 20, 0, 0, 1420, 1421, 7, 8, 0, 0, 1421, 1422, 7, 10, 0, 0, 1422, 1423, 7, 17, 0, 0, 1423, 1424, 7, 14, 0, 0, 1424, 1425, 7, 6, 0, 0, 1425, 1426, 7, 18, 0, 0, 1426, 1427, 7, 8, 0, 0, 1427, 1428, 7, 17, 0, 0, 1428, 102, 1, 0, 0, 0, 1429, 1430, 7, 15, 0, 0, 1430, 1431, 7, 14, 0, 0, 1431, 1432, 7, 11, 0, 0, 1432, 1433, 7, 6, 0, 0, 1433, 1434, 7, 17, 0, 0, 1434, 1435, 7, 11, 0, 0, 1435, 104, 1, 0, 0, 0, 1436, 1437, 7, 15, 0, 0, 1437, 1438, 7, 23, 0, 0, 1438, 1439, 7, 14, 0, 0, 1439, 1440, 7, 14, 0, 0, 1440, 1441, 7, 11, 0, 0, 1441, 1442, 7, 8, 0, 0, 1442, 1443, 7, 17, 0, 0, 1443, 1444, 5, 95, 0, 0, 1444, 1445, 7, 15, 0, 0, 1445, 1446, 7, 6, 0, 0, 1446, 1447, 7, 17, 0, 0, 1447, 1448, 7, 6, 0, 0, 1448, 1449, 7, 7, 0, 0, 1449, 1450, 7, 20, 0, 0, 1450, 1451, 7, 24, 0, 0, 1451, 106, 1, 0, 0, 0, 1452, 1453, 7, 15, 0, 0, 1453, 1454, 7, 23, 0, 0, 1454, 1455, 7, 14, 0, 0, 1455, 1456, 7, 14, 0, 0, 1456, 1457, 7, 11, 0, 0, 1457, 1458, 7, 8, 0, 0, 1458, 1459, 7, 17, 0, 0, 1459, 1460, 5, 95, 0, 0, 1460, 1461, 7, 13, 0, 0, 1461, 1462, 7, 6, 0, 0, 1462, 1463, 7, 17, 0, 0, 1463, 1464, 7, 11, 0, 0, 1464, 108, 1, 0, 0, 0, 1465, 1466, 7, 15, 0, 0, 1466, 1467, 7, 23, 0, 0, 1467, 1468, 7, 14, 0, 0, 1468, 1469, 7, 14, 0, 0, 1469, 1470, 7, 11, 0, 0, 1470, 1471, 7, 8, 0, 0, 1471, 1472, 7, 17, 0, 0, 1472, 1473, 5, 95, 0, 0, 1473, 1474, 7, 14, 0, 0, 1474, 1475, 7, 20, 0, 0, 1475, 1476, 7, 7, 0, 0, 1476, 1477, 7, 11, 0, 0, 1477, 110, 1, 0, 0, 0, 1478, 1479, 7, 15, 0, 0, 1479, 1480, 7, 23, 0, 0, 1480, 1481, 7, 14, 0, 0, 1481, 1482, 7, 14, 0, 0, 1482, 1483, 7, 11, 0, 0, 1483, 1484, 7, 8, 0, 0, 1484, 1485, 7, 17, 0, 0, 1485, 1486, 5, 95, 0, 0, 1486, 1487, 7, 17, 0, 0, 1487, 1488, 7, 18, 0, 0, 1488, 1489, 7, 16, 0, 0, 1489, 1490, 7, 11, 0, 0, 1490, 112, 1, 0, 0, 0, 1491, 1492, 7, 15, 0, 0, 1492, 1493, 7, 23, 0, 0, 1493, 1494, 7, 14, 0, 0, 1494, 1495, 7, 14, 0, 0, 1495, 1496, 7, 11, 0, 0, 1496, 1497, 7, 8, 0, 0, 1497, 1498, 7, 17, 0, 0, 1498, 1499, 5, 95, 0, 0, 1499, 1500, 7, 17, 0, 0, 1500, 1501, 7, 18, 0, 0, 1501, 1502, 7, 16, 0, 0, 1502, 1503, 7, 11, 0, 0, 1503, 1504, 7, 10, 0, 0, 1504, 1505, 7, 17, 0, 0, 1505, 1506, 7, 6, 0, 0, 1506, 1507, 7, 16, 0, 0, 1507, 1508, 7, 25, 0, 0, 1508, 114, 1, 0, 0, 0, 1509, 1510, 7, 15, 0, 0, 1510, 1511, 7, 23, 0, 0, 1511, 1512, 7, 14, 0, 0, 1512, 1513, 7, 14, 0, 0, 1513, 1514, 7, 11, 0, 0, 1514, 1515, 7, 8, 0, 0, 1515, 1516, 7, 17, 0, 0, 1516, 1517, 5, 95, 0, 0, 1517, 1518, 7, 23, 0, 0, 1518, 1519, 7, 10, 0, 0, 1519, 1520, 7, 11, 0, 0, 1520, 1521, 7, 14, 0, 0, 1521, 116, 1, 0, 0, 0, 1522, 1523, 7, 13, 0, 0, 1523, 1524, 7, 11, 0, 0, 1524, 1525, 7, 26, 0, 0, 1525, 1526, 7, 6, 0, 0, 1526, 1527, 7, 23, 0, 0, 1527, 1528, 7, 7, 0, 0, 1528, 1529, 7, 17, 0, 0, 1529, 118, 1, 0, 0, 0, 1530, 1531, 7, 13, 0, 0, 1531, 1532, 7, 11, 0, 0, 1532, 1533, 7, 26, 0, 0, 1533, 1534, 7, 11, 0, 0, 1534, 1535, 7, 14, 0, 0, 1535, 1536, 7, 14, 0, 0, 1536, 1537, 7, 6, 0, 0, 1537, 1538, 7, 19, 0, 0, 1538, 1539, 7, 7, 0, 0, 1539, 1540, 7, 11, 0, 0, 1540, 120, 1, 0, 0, 0, 1541, 1542, 7, 13, 0, 0, 1542, 1543, 7, 11, 0, 0, 1543, 1544, 7, 10, 0, 0, 1544, 1545, 7, 15, 0, 0, 1545, 122, 1, 0, 0, 0, 1546, 1547, 7, 13, 0, 0, 1547, 1548, 7, 18, 0, 0, 1548, 1549, 7, 10, 0, 0, 1549, 1550, 7, 17, 0, 0, 1550, 1551, 7, 18, 0, 0, 1551, 1552, 7, 8, 0, 0, 1552, 1553, 7, 15, 0, 0, 1553, 1554, 7, 17, 0, 0, 1554, 124, 1, 0, 0, 0, 1555, 1556, 7, 13, 0, 0, 1556, 1557, 7, 20, 0, 0, 1557, 126, 1, 0, 0, 0, 1558, 1559, 7, 11, 0, 0, 1559, 1560, 7, 7, 0, 0, 1560, 1561, 7, 10, 0, 0, 1561, 1562, 7, 11, 0, 0, 1562, 128, 1, 0, 0, 0, 1563, 1564, 7, 11, 0, 0, 1564, 1565, 7, 27, 0, 0, 1565, 1566, 7, 15, 0, 0, 1566, 1567, 7, 11, 0, 0, 1567, 1568, 7, 25, 0, 0, 1568, 1569, 7, 17, 0, 0, 1569, 130, 1, 0, 0, 0, 1570, 1571, 7, 26, 0, 0, 1571, 1572, 7, 6, 0, 0, 1572, 1573, 7, 7, 0, 0, 1573, 1574, 7, 10, 0, 0, 1574, 1575, 7, 11, 0, 0, 1575, 132, 1, 0, 0, 0, 1576, 1577, 7, 26, 0, 0, 1577, 1578, 7, 11, 0, 0, 1578, 1579, 7, 17, 0, 0, 1579, 1580, 7, 15, 0, 0, 1580, 1581, 7, 21, 0, 0, 1581, 134, 1, 0, 0, 0, 1582, 1583, 7, 26, 0, 0, 1583, 1584, 7, 20, 0, 0, 1584, 1585, 7, 14, 0, 0, 1585, 136, 1, 0, 0, 0, 1586, 1587, 7, 26, 0, 0, 1587, 1588, 7, 20, 0, 0, 1588, 1589, 7, 14, 0, 0, 1589, 1590, 7, 11, 0, 0, 1590, 1591, 7, 18, 0, 0, 1591, 1592, 7, 24, 0, 0, 1592, 1593, 7, 8, 0, 0, 1593, 138, 1, 0, 0, 0, 1594, 1595, 7, 26, 0, 0, 1595, 1596, 7, 14, 0, 0, 1596, 1597, 7, 20, 0, 0, 1597, 1598, 7, 16, 0, 0, 1598, 140, 1, 0, 0, 0, 1599, 1600, 7, 24, 0, 0, 1600, 1601, 7, 14, 0, 0, 1601, 1602, 7, 6, 0, 0, 1602, 1603, 7, 8, 0, 0, 1603, 1604, 7, 17, 0, 0, 1604, 142, 1, 0, 0, 0, 1605, 1606, 7, 24, 0, 0, 1606, 1607, 7, 14, 0, 0, 1607, 1608, 7, 20, 0, 0, 1608, 1609, 7, 23, 0, 0, 1609, 1610, 7, 25, 0, 0, 1610, 144, 1, 0, 0, 0, 1611, 1612, 7, 21, 0, 0, 1612, 1613, 7, 6, 0, 0, 1613, 1614, 7, 28, 0, 0, 1614, 1615, 7, 18, 0, 0, 1615, 1616, 7, 8, 0, 0, 1616, 1617, 7, 24, 0, 0, 1617, 146, 1, 0, 0, 0, 1618, 1619, 7, 18, 0, 0, 1619, 1620, 7, 8, 0, 0, 1620, 148, 1, 0, 0, 0, 1621, 1622, 7, 18, 0, 0, 1622, 1623, 7, 8, 0, 0, 1623, 1624, 7, 18, 0, 0, 1624, 1625, 7, 17, 0, 0, 1625, 1626, 7, 18, 0, 0, 1626, 1627, 7, 6, 0, 0, 1627, 1628, 7, 7, 0, 0, 1628, 1629, 7, 7, 0, 0, 1629, 1630, 7, 9, 0, 0, 1630, 150, 1, 0, 0, 0, 1631, 1632, 7, 18, 0, 0, 1632, 1633, 7, 8, 0, 0, 1633, 1634, 7, 17, 0, 0, 1634, 1635, 7, 11, 0, 0, 1635, 1636, 7, 14, 0, 0, 1636, 1637, 7, 10, 0, 0, 1637, 1638, 7, 11, 0, 0, 1638, 1639, 7, 15, 0, 0, 1639, 1640, 7, 17, 0, 0, 1640, 152, 1, 0, 0, 0, 1641, 1642, 7, 18, 0, 0, 1642, 1643, 7, 8, 0, 0, 1643, 1644, 7, 17, 0, 0, 1644, 1645, 7, 20, 0, 0, 1645, 154, 1, 0, 0, 0, 1646, 1647, 7, 7, 0, 0, 1647, 1648, 7, 6, 0, 0, 1648, 1649, 7, 17, 0, 0, 1649, 1650, 7, 11, 0, 0, 1650, 1651, 7, 14, 0, 0, 1651, 1652, 7, 6, 0, 0, 1652, 1653, 7, 7, 0, 0, 1653, 156, 1, 0, 0, 0, 1654, 1655, 7, 7, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 1657, 7, 6, 0, 0, 1657, 1658, 7, 13, 0, 0, 1658, 1659, 7, 18, 0, 0, 1659, 1660, 7, 8, 0, 0, 1660, 1661, 7, 24, 0, 0, 1661, 158, 1, 0, 0, 0, 1662, 1663, 7, 7, 0, 0, 1663, 1664, 7, 18, 0, 0, 1664, 1665, 7, 16, 0, 0, 1665, 1666, 7, 18, 0, 0, 1666, 1667, 7, 17, 0, 0, 1667, 160, 1, 0, 0, 0, 1668, 1669, 7, 7, 0, 0, 1669, 1670, 7, 20, 0, 0, 1670, 1671, 7, 15, 0, 0, 1671, 1672, 7, 6, 0, 0, 1672, 1673, 7, 7, 0, 0, 1673, 1674, 7, 17, 0, 0, 1674, 1675, 7, 18, 0, 0, 1675, 1676, 7, 16, 0, 0, 1676, 1677, 7, 11, 0, 0, 1677, 162, 1, 0, 0, 0, 1678, 1679, 7, 7, 0, 0, 1679, 1680, 7, 20, 0, 0, 1680, 1681, 7, 15, 0, 0, 1681, 1682, 7, 6, 0, 0, 1682, 1683, 7, 7, 0, 0, 1683, 1684, 7, 17, 0, 0, 1684, 1685, 7, 18, 0, 0, 1685, 1686, 7, 16, 0, 0, 1686, 1687, 7, 11, 0, 0, 1687, 1688, 7, 10, 0, 0, 1688, 1689, 7, 17, 0, 0, 1689, 1690, 7, 6, 0, 0, 1690, 1691, 7, 16, 0, 0, 1691, 1692, 7, 25, 0, 0, 1692, 164, 1, 0, 0, 0, 1693, 1694, 7, 8, 0, 0, 1694, 1695, 7, 20, 0, 0, 1695, 1696, 7, 17, 0, 0, 1696, 166, 1, 0, 0, 0, 1697, 1698, 7, 8, 0, 0, 1698, 1699, 7, 23, 0, 0, 1699, 1700, 7, 7, 0, 0, 1700, 1701, 7, 7, 0, 0, 1701, 168, 1, 0, 0, 0, 1702, 1703, 7, 20, 0, 0, 1703, 1704, 7, 26, 0, 0, 1704, 1705, 7, 26, 0, 0, 1705, 1706, 7, 10, 0, 0, 1706, 1707, 7, 11, 0, 0, 1707, 1708, 7, 17, 0, 0, 1708, 170, 1, 0, 0, 0, 1709, 1710, 7, 20, 0, 0, 1710, 1711, 7, 8, 0, 0, 1711, 172, 1, 0, 0, 0, 1712, 1713, 7, 20, 0, 0, 1713, 1714, 7, 8, 0, 0, 1714, 1715, 7, 7, 0, 0, 1715, 1716, 7, 9, 0, 0, 1716, 174, 1, 0, 0, 0, 1717, 1718, 7, 20, 0, 0, 1718, 1719, 7, 14, 0, 0, 1719, 176, 1, 0, 0, 0, 1720, 1721, 7, 20, 0, 0, 1721, 1722, 7, 14, 0, 0, 1722, 1723, 7, 13, 0, 0, 1723, 1724, 7, 11, 0, 0, 1724, 1725, 7, 14, 0, 0, 1725, 178, 1, 0, 0, 0, 1726, 1727, 7, 25, 0, 0, 1727, 1728, 7, 7, 0, 0, 1728, 1729, 7, 6, 0, 0, 1729, 1730, 7, 15, 0, 0, 1730, 1731, 7, 18, 0, 0, 1731, 1732, 7, 8, 0, 0, 1732, 1733, 7, 24, 0, 0, 1733, 180, 1, 0, 0, 0, 1734, 1735, 7, 25, 0, 0, 1735, 1736, 7, 14, 0, 0, 1736, 1737, 7, 18, 0, 0, 1737, 1738, 7, 16, 0, 0, 1738, 1739, 7, 6, 0, 0, 1739, 1740, 7, 14, 0, 0, 1740, 1741, 7, 9, 0, 0, 1741, 182, 1, 0, 0, 0, 1742, 1743, 7, 14, 0, 0, 1743, 1744, 7, 11, 0, 0, 1744, 1745, 7, 26, 0, 0, 1745, 1746, 7, 11, 0, 0, 1746, 1747, 7, 14, 0, 0, 1747, 1748, 7, 11, 0, 0, 1748, 1749, 7, 8, 0, 0, 1749, 1750, 7, 15, 0, 0, 1750, 1751, 7, 11, 0, 0, 1751, 1752, 7, 10, 0, 0, 1752, 184, 1, 0, 0, 0, 1753, 1754, 7, 14, 0, 0, 1754, 1755, 7, 11, 0, 0, 1755, 1756, 7, 17, 0, 0, 1756, 1757, 7, 23, 0, 0, 1757, 1758, 7, 14, 0, 0, 1758, 1759, 7, 8, 0, 0, 1759, 1760, 7, 18, 0, 0, 1760, 1761, 7, 8, 0, 0, 1761, 1762, 7, 24, 0, 0, 1762, 186, 1, 0, 0, 0, 1763, 1764, 7, 10, 0, 0, 1764, 1765, 7, 11, 0, 0, 1765, 1766, 7, 7, 0, 0, 1766, 1767, 7, 11, 0, 0, 1767, 1768, 7, 15, 0, 0, 1768, 1769, 7, 17, 0, 0, 1769, 188, 1, 0, 0, 0, 1770, 1771, 7, 10, 0, 0, 1771, 1772, 7, 11, 0, 0, 1772, 1773, 7, 10, 0, 0, 1773, 1774, 7, 10, 0, 0, 1774, 1775, 7, 18, 0, 0, 1775, 1776, 7, 20, 0, 0, 1776, 1777, 7, 8, 0, 0, 1777, 1778, 5, 95, 0, 0, 1778, 1779, 7, 23, 0, 0, 1779, 1780, 7, 10, 0, 0, 1780, 1781, 7, 11, 0, 0, 1781, 1782, 7, 14, 0, 0, 1782, 190, 1, 0, 0, 0, 1783, 1784, 7, 10, 0, 0, 1784, 1785, 7, 20, 0, 0, 1785, 1786, 7, 16, 0, 0, 1786, 1787, 7, 11, 0, 0, 1787, 192, 1, 0, 0, 0, 1788, 1789, 7, 10, 0, 0, 1789, 1790, 7, 9, 0, 0, 1790, 1791, 7, 16, 0, 0, 1791, 1792, 7, 16, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 17, 0, 0, 1794, 1795, 7, 14, 0, 0, 1795, 1796, 7, 18, 0, 0, 1796, 1797, 7, 15, 0, 0, 1797, 194, 1, 0, 0, 0, 1798, 1799, 7, 17, 0, 0, 1799, 1800, 7, 6, 0, 0, 1800, 1801, 7, 19, 0, 0, 1801, 1802, 7, 7, 0, 0, 1802, 1803, 7, 11, 0, 0, 1803, 196, 1, 0, 0, 0, 1804, 1805, 7, 17, 0, 0, 1805, 1806, 7, 21, 0, 0, 1806, 1807, 7, 11, 0, 0, 1807, 1808, 7, 8, 0, 0, 1808, 198, 1, 0, 0, 0, 1809, 1810, 7, 17, 0, 0, 1810, 1811, 7, 20, 0, 0, 1811, 200, 1, 0, 0, 0, 1812, 1813, 7, 17, 0, 0, 1813, 1814, 7, 14, 0, 0, 1814, 1815, 7, 6, 0, 0, 1815, 1816, 7, 18, 0, 0, 1816, 1817, 7, 7, 0, 0, 1817, 1818, 7, 18, 0, 0, 1818, 1819, 7, 8, 0, 0, 1819, 1820, 7, 24, 0, 0, 1820, 202, 1, 0, 0, 0, 1821, 1822, 7, 17, 0, 0, 1822, 1823, 7, 14, 0, 0, 1823, 1824, 7, 23, 0, 0, 1824, 1825, 7, 11, 0, 0, 1825, 204, 1, 0, 0, 0, 1826, 1827, 7, 23, 0, 0, 1827, 1828, 7, 8, 0, 0, 1828, 1829, 7, 18, 0, 0, 1829, 1830, 7, 20, 0, 0, 1830, 1831, 7, 8, 0, 0, 1831, 206, 1, 0, 0, 0, 1832, 1833, 7, 23, 0, 0, 1833, 1834, 7, 8, 0, 0, 1834, 1835, 7, 18, 0, 0, 1835, 1836, 7, 29, 0, 0, 1836, 1837, 7, 23, 0, 0, 1837, 1838, 7, 11, 0, 0, 1838, 208, 1, 0, 0, 0, 1839, 1840, 7, 23, 0, 0, 1840, 1841, 7, 10, 0, 0, 1841, 1842, 7, 11, 0, 0, 1842, 1843, 7, 14, 0, 0, 1843, 210, 1, 0, 0, 0, 1844, 1845, 7, 23, 0, 0, 1845, 1846, 7, 10, 0, 0, 1846, 1847, 7, 18, 0, 0, 1847, 1848, 7, 8, 0, 0, 1848, 1849, 7, 24, 0, 0, 1849, 212, 1, 0, 0, 0, 1850, 1851, 7, 28, 0, 0, 1851, 1852, 7, 6, 0, 0, 1852, 1853, 7, 14, 0, 0, 1853, 1854, 7, 18, 0, 0, 1854, 1855, 7, 6, 0, 0, 1855, 1856, 7, 13, 0, 0, 1856, 1857, 7, 18, 0, 0, 1857, 1858, 7, 15, 0, 0, 1858, 214, 1, 0, 0, 0, 1859, 1860, 7, 30, 0, 0, 1860, 1861, 7, 21, 0, 0, 1861, 1862, 7, 11, 0, 0, 1862, 1863, 7, 8, 0, 0, 1863, 216, 1, 0, 0, 0, 1864, 1865, 7, 30, 0, 0, 1865, 1866, 7, 21, 0, 0, 1866, 1867, 7, 11, 0, 0, 1867, 1868, 7, 14, 0, 0, 1868, 1869, 7, 11, 0, 0, 1869, 218, 1, 0, 0, 0, 1870, 1871, 7, 30, 0, 0, 1871, 1872, 7, 18, 0, 0, 1872, 1873, 7, 8, 0, 0, 1873, 1874, 7, 13, 0, 0, 1874, 1875, 7, 20, 0, 0, 1875, 1876, 7, 30, 0, 0, 1876, 220, 1, 0, 0, 0, 1877, 1878, 7, 30, 0, 0, 1878, 1879, 7, 18, 0, 0, 1879, 1880, 7, 17, 0, 0, 1880, 1881, 7, 21, 0, 0, 1881, 222, 1, 0, 0, 0, 1882, 1883, 7, 6, 0, 0, 1883, 1884, 7, 23, 0, 0, 1884, 1885, 7, 17, 0, 0, 1885, 1886, 7, 21, 0, 0, 1886, 1887, 7, 20, 0, 0, 1887, 1888, 7, 14, 0, 0, 1888, 1889, 7, 18, 0, 0, 1889, 1890, 7, 12, 0, 0, 1890, 1891, 7, 6, 0, 0, 1891, 1892, 7, 17, 0, 0, 1892, 1893, 7, 18, 0, 0, 1893, 1894, 7, 20, 0, 0, 1894, 1895, 7, 8, 0, 0, 1895, 224, 1, 0, 0, 0, 1896, 1897, 7, 19, 0, 0, 1897, 1898, 7, 18, 0, 0, 1898, 1899, 7, 8, 0, 0, 1899, 1900, 7, 6, 0, 0, 1900, 1901, 7, 14, 0, 0, 1901, 1902, 7, 9, 0, 0, 1902, 226, 1, 0, 0, 0, 1903, 1904, 7, 15, 0, 0, 1904, 1905, 7, 20, 0, 0, 1905, 1906, 7, 7, 0, 0, 1906, 1907, 7, 7, 0, 0, 1907, 1908, 7, 6, 0, 0, 1908, 1909, 7, 17, 0, 0, 1909, 1910, 7, 18, 0, 0, 1910, 1911, 7, 20, 0, 0, 1911, 1912, 7, 8, 0, 0, 1912, 228, 1, 0, 0, 0, 1913, 1914, 7, 15, 0, 0, 1914, 1915, 7, 20, 0, 0, 1915, 1916, 7, 8, 0, 0, 1916, 1917, 7, 15, 0, 0, 1917, 1918, 7, 23, 0, 0, 1918, 1919, 7, 14, 0, 0, 1919, 1920, 7, 14, 0, 0, 1920, 1921, 7, 11, 0, 0, 1921, 1922, 7, 8, 0, 0, 1922, 1923, 7, 17, 0, 0, 1923, 1924, 7, 7, 0, 0, 1924, 1925, 7, 9, 0, 0, 1925, 230, 1, 0, 0, 0, 1926, 1927, 7, 15, 0, 0, 1927, 1928, 7, 14, 0, 0, 1928, 1929, 7, 20, 0, 0, 1929, 1930, 7, 10, 0, 0, 1930, 1931, 7, 10, 0, 0, 1931, 232, 1, 0, 0, 0, 1932, 1933, 7, 15, 0, 0, 1933, 1934, 7, 23, 0, 0, 1934, 1935, 7, 14, 0, 0, 1935, 1936, 7, 14, 0, 0, 1936, 1937, 7, 11, 0, 0, 1937, 1938, 7, 8, 0, 0, 1938, 1939, 7, 17, 0, 0, 1939, 1940, 5, 95, 0, 0, 1940, 1941, 7, 10, 0, 0, 1941, 1942, 7, 15, 0, 0, 1942, 1943, 7, 21, 0, 0, 1943, 1944, 7, 11, 0, 0, 1944, 1945, 7, 16, 0, 0, 1945, 1946, 7, 6, 0, 0, 1946, 234, 1, 0, 0, 0, 1947, 1948, 7, 26, 0, 0, 1948, 1949, 7, 14, 0, 0, 1949, 1950, 7, 11, 0, 0, 1950, 1951, 7, 11, 0, 0, 1951, 1952, 7, 12, 0, 0, 1952, 1953, 7, 11, 0, 0, 1953, 236, 1, 0, 0, 0, 1954, 1955, 7, 26, 0, 0, 1955, 1956, 7, 23, 0, 0, 1956, 1957, 7, 7, 0, 0, 1957, 1958, 7, 7, 0, 0, 1958, 238, 1, 0, 0, 0, 1959, 1960, 7, 18, 0, 0, 1960, 1961, 7, 7, 0, 0, 1961, 1962, 7, 18, 0, 0, 1962, 1963, 7, 22, 0, 0, 1963, 1964, 7, 11, 0, 0, 1964, 240, 1, 0, 0, 0, 1965, 1966, 7, 18, 0, 0, 1966, 1967, 7, 8, 0, 0, 1967, 1968, 7, 8, 0, 0, 1968, 1969, 7, 11, 0, 0, 1969, 1970, 7, 14, 0, 0, 1970, 242, 1, 0, 0, 0, 1971, 1972, 7, 18, 0, 0, 1972, 1973, 7, 10, 0, 0, 1973, 244, 1, 0, 0, 0, 1974, 1975, 7, 18, 0, 0, 1975, 1976, 7, 10, 0, 0, 1976, 1977, 7, 8, 0, 0, 1977, 1978, 7, 23, 0, 0, 1978, 1979, 7, 7, 0, 0, 1979, 1980, 7, 7, 0, 0, 1980, 246, 1, 0, 0, 0, 1981, 1982, 7, 31, 0, 0, 1982, 1983, 7, 20, 0, 0, 1983, 1984, 7, 18, 0, 0, 1984, 1985, 7, 8, 0, 0, 1985, 248, 1, 0, 0, 0, 1986, 1987, 7, 7, 0, 0, 1987, 1988, 7, 11, 0, 0, 1988, 1989, 7, 26, 0, 0, 1989, 1990, 7, 17, 0, 0, 1990, 250, 1, 0, 0, 0, 1991, 1992, 7, 7, 0, 0, 1992, 1993, 7, 18, 0, 0, 1993, 1994, 7, 22, 0, 0, 1994, 1995, 7, 11, 0, 0, 1995, 252, 1, 0, 0, 0, 1996, 1997, 7, 8, 0, 0, 1997, 1998, 7, 6, 0, 0, 1998, 1999, 7, 17, 0, 0, 1999, 2000, 7, 23, 0, 0, 2000, 2001, 7, 14, 0, 0, 2001, 2002, 7, 6, 0, 0, 2002, 2003, 7, 7, 0, 0, 2003, 254, 1, 0, 0, 0, 2004, 2005, 7, 8, 0, 0, 2005, 2006, 7, 20, 0, 0, 2006, 2007, 7, 17, 0, 0, 2007, 2008, 7, 8, 0, 0, 2008, 2009, 7, 23, 0, 0, 2009, 2010, 7, 7, 0, 0, 2010, 2011, 7, 7, 0, 0, 2011, 256, 1, 0, 0, 0, 2012, 2013, 7, 20, 0, 0, 2013, 2014, 7, 23, 0, 0, 2014, 2015, 7, 17, 0, 0, 2015, 2016, 7, 11, 0, 0, 2016, 2017, 7, 14, 0, 0, 2017, 258, 1, 0, 0, 0, 2018, 2019, 7, 20, 0, 0, 2019, 2020, 7, 28, 0, 0, 2020, 2021, 7, 11, 0, 0, 2021, 2022, 7, 14, 0, 0, 2022, 260, 1, 0, 0, 0, 2023, 2024, 7, 20, 0, 0, 2024, 2025, 7, 28, 0, 0, 2025, 2026, 7, 11, 0, 0, 2026, 2027, 7, 14, 0, 0, 2027, 2028, 7, 7, 0, 0, 2028, 2029, 7, 6, 0, 0, 2029, 2030, 7, 25, 0, 0, 2030, 2031, 7, 10, 0, 0, 2031, 262, 1, 0, 0, 0, 2032, 2033, 7, 14, 0, 0, 2033, 2034, 7, 18, 0, 0, 2034, 2035, 7, 24, 0, 0, 2035, 2036, 7, 21, 0, 0, 2036, 2037, 7, 17, 0, 0, 2037, 264, 1, 0, 0, 0, 2038, 2039, 7, 10, 0, 0, 2039, 2040, 7, 18, 0, 0, 2040, 2041, 7, 16, 0, 0, 2041, 2042, 7, 18, 0, 0, 2042, 2043, 7, 7, 0, 0, 2043, 2044, 7, 6, 0, 0, 2044, 2045, 7, 14, 0, 0, 2045, 266, 1, 0, 0, 0, 2046, 2047, 7, 28, 0, 0, 2047, 2048, 7, 11, 0, 0, 2048, 2049, 7, 14, 0, 0, 2049, 2050, 7, 19, 0, 0, 2050, 2051, 7, 20, 0, 0, 2051, 2052, 7, 10, 0, 0, 2052, 2053, 7, 11, 0, 0, 2053, 268, 1, 0, 0, 0, 2054, 2055, 7, 6, 0, 0, 2055, 2056, 7, 19, 0, 0, 2056, 2057, 7, 20, 0, 0, 2057, 2058, 7, 14, 0, 0, 2058, 2059, 7, 17, 0, 0, 2059, 270, 1, 0, 0, 0, 2060, 2061, 7, 6, 0, 0, 2061, 2062, 7, 19, 0, 0, 2062, 2063, 7, 10, 0, 0, 2063, 2064, 7, 20, 0, 0, 2064, 2065, 7, 7, 0, 0, 2065, 2066, 7, 23, 0, 0, 2066, 2067, 7, 17, 0, 0, 2067, 2068, 7, 11, 0, 0, 2068, 272, 1, 0, 0, 0, 2069, 2070, 7, 6, 0, 0, 2070, 2071, 7, 15, 0, 0, 2071, 2072, 7, 15, 0, 0, 2072, 2073, 7, 11, 0, 0, 2073, 2074, 7, 10, 0, 0, 2074, 2075, 7, 10, 0, 0, 2075, 274, 1, 0, 0, 0, 2076, 2077, 7, 6, 0, 0, 2077, 2078, 7, 15, 0, 0, 2078, 2079, 7, 17, 0, 0, 2079, 2080, 7, 18, 0, 0, 2080, 2081, 7, 20, 0, 0, 2081, 2082, 7, 8, 0, 0, 2082, 276, 1, 0, 0, 0, 2083, 2084, 7, 6, 0, 0, 2084, 2085, 7, 13, 0, 0, 2085, 2086, 7, 13, 0, 0, 2086, 278, 1, 0, 0, 0, 2087, 2088, 7, 6, 0, 0, 2088, 2089, 7, 13, 0, 0, 2089, 2090, 7, 16, 0, 0, 2090, 2091, 7, 18, 0, 0, 2091, 2092, 7, 8, 0, 0, 2092, 280, 1, 0, 0, 0, 2093, 2094, 7, 6, 0, 0, 2094, 2095, 7, 26, 0, 0, 2095, 2096, 7, 17, 0, 0, 2096, 2097, 7, 11, 0, 0, 2097, 2098, 7, 14, 0, 0, 2098, 282, 1, 0, 0, 0, 2099, 2100, 7, 6, 0, 0, 2100, 2101, 7, 24, 0, 0, 2101, 2102, 7, 24, 0, 0, 2102, 2103, 7, 14, 0, 0, 2103, 2104, 7, 11, 0, 0, 2104, 2105, 7, 24, 0, 0, 2105, 2106, 7, 6, 0, 0, 2106, 2107, 7, 17, 0, 0, 2107, 2108, 7, 11, 0, 0, 2108, 284, 1, 0, 0, 0, 2109, 2110, 7, 6, 0, 0, 2110, 2111, 7, 7, 0, 0, 2111, 2112, 7, 10, 0, 0, 2112, 2113, 7, 20, 0, 0, 2113, 286, 1, 0, 0, 0, 2114, 2115, 7, 6, 0, 0, 2115, 2116, 7, 7, 0, 0, 2116, 2117, 7, 17, 0, 0, 2117, 2118, 7, 11, 0, 0, 2118, 2119, 7, 14, 0, 0, 2119, 288, 1, 0, 0, 0, 2120, 2121, 7, 6, 0, 0, 2121, 2122, 7, 7, 0, 0, 2122, 2123, 7, 30, 0, 0, 2123, 2124, 7, 6, 0, 0, 2124, 2125, 7, 9, 0, 0, 2125, 2126, 7, 10, 0, 0, 2126, 290, 1, 0, 0, 0, 2127, 2128, 7, 6, 0, 0, 2128, 2129, 7, 10, 0, 0, 2129, 2130, 7, 10, 0, 0, 2130, 2131, 7, 11, 0, 0, 2131, 2132, 7, 14, 0, 0, 2132, 2133, 7, 17, 0, 0, 2133, 2134, 7, 18, 0, 0, 2134, 2135, 7, 20, 0, 0, 2135, 2136, 7, 8, 0, 0, 2136, 292, 1, 0, 0, 0, 2137, 2138, 7, 6, 0, 0, 2138, 2139, 7, 10, 0, 0, 2139, 2140, 7, 10, 0, 0, 2140, 2141, 7, 18, 0, 0, 2141, 2142, 7, 24, 0, 0, 2142, 2143, 7, 8, 0, 0, 2143, 2144, 7, 16, 0, 0, 2144, 2145, 7, 11, 0, 0, 2145, 2146, 7, 8, 0, 0, 2146, 2147, 7, 17, 0, 0, 2147, 294, 1, 0, 0, 0, 2148, 2149, 7, 6, 0, 0, 2149, 2150, 7, 17, 0, 0, 2150, 296, 1, 0, 0, 0, 2151, 2152, 7, 6, 0, 0, 2152, 2153, 7, 17, 0, 0, 2153, 2154, 7, 17, 0, 0, 2154, 2155, 7, 14, 0, 0, 2155, 2156, 7, 18, 0, 0, 2156, 2157, 7, 19, 0, 0, 2157, 2158, 7, 23, 0, 0, 2158, 2159, 7, 17, 0, 0, 2159, 2160, 7, 11, 0, 0, 2160, 298, 1, 0, 0, 0, 2161, 2162, 7, 19, 0, 0, 2162, 2163, 7, 6, 0, 0, 2163, 2164, 7, 15, 0, 0, 2164, 2165, 7, 22, 0, 0, 2165, 2166, 7, 30, 0, 0, 2166, 2167, 7, 6, 0, 0, 2167, 2168, 7, 14, 0, 0, 2168, 2169, 7, 13, 0, 0, 2169, 300, 1, 0, 0, 0, 2170, 2171, 7, 19, 0, 0, 2171, 2172, 7, 11, 0, 0, 2172, 2173, 7, 26, 0, 0, 2173, 2174, 7, 20, 0, 0, 2174, 2175, 7, 14, 0, 0, 2175, 2176, 7, 11, 0, 0, 2176, 302, 1, 0, 0, 0, 2177, 2178, 7, 19, 0, 0, 2178, 2179, 7, 11, 0, 0, 2179, 2180, 7, 24, 0, 0, 2180, 2181, 7, 18, 0, 0, 2181, 2182, 7, 8, 0, 0, 2182, 304, 1, 0, 0, 0, 2183, 2184, 7, 19, 0, 0, 2184, 2185, 7, 9, 0, 0, 2185, 306, 1, 0, 0, 0, 2186, 2187, 7, 15, 0, 0, 2187, 2188, 7, 6, 0, 0, 2188, 2189, 7, 15, 0, 0, 2189, 2190, 7, 21, 0, 0, 2190, 2191, 7, 11, 0, 0, 2191, 308, 1, 0, 0, 0, 2192, 2193, 7, 15, 0, 0, 2193, 2194, 7, 6, 0, 0, 2194, 2195, 7, 7, 0, 0, 2195, 2196, 7, 7, 0, 0, 2196, 2197, 7, 11, 0, 0, 2197, 2198, 7, 13, 0, 0, 2198, 310, 1, 0, 0, 0, 2199, 2200, 7, 15, 0, 0, 2200, 2201, 7, 6, 0, 0, 2201, 2202, 7, 10, 0, 0, 2202, 2203, 7, 15, 0, 0, 2203, 2204, 7, 6, 0, 0, 2204, 2205, 7, 13, 0, 0, 2205, 2206, 7, 11, 0, 0, 2206, 312, 1, 0, 0, 0, 2207, 2208, 7, 15, 0, 0, 2208, 2209, 7, 6, 0, 0, 2209, 2210, 7, 10, 0, 0, 2210, 2211, 7, 15, 0, 0, 2211, 2212, 7, 6, 0, 0, 2212, 2213, 7, 13, 0, 0, 2213, 2214, 7, 11, 0, 0, 2214, 2215, 7, 13, 0, 0, 2215, 314, 1, 0, 0, 0, 2216, 2217, 7, 15, 0, 0, 2217, 2218, 7, 6, 0, 0, 2218, 2219, 7, 17, 0, 0, 2219, 2220, 7, 6, 0, 0, 2220, 2221, 7, 7, 0, 0, 2221, 2222, 7, 20, 0, 0, 2222, 2223, 7, 24, 0, 0, 2223, 316, 1, 0, 0, 0, 2224, 2225, 7, 15, 0, 0, 2225, 2226, 7, 21, 0, 0, 2226, 2227, 7, 6, 0, 0, 2227, 2228, 7, 18, 0, 0, 2228, 2229, 7, 8, 0, 0, 2229, 318, 1, 0, 0, 0, 2230, 2231, 7, 15, 0, 0, 2231, 2232, 7, 21, 0, 0, 2232, 2233, 7, 6, 0, 0, 2233, 2234, 7, 14, 0, 0, 2234, 2235, 7, 6, 0, 0, 2235, 2236, 7, 15, 0, 0, 2236, 2237, 7, 17, 0, 0, 2237, 2238, 7, 11, 0, 0, 2238, 2239, 7, 14, 0, 0, 2239, 2240, 7, 18, 0, 0, 2240, 2241, 7, 10, 0, 0, 2241, 2242, 7, 17, 0, 0, 2242, 2243, 7, 18, 0, 0, 2243, 2244, 7, 15, 0, 0, 2244, 2245, 7, 10, 0, 0, 2245, 320, 1, 0, 0, 0, 2246, 2247, 7, 15, 0, 0, 2247, 2248, 7, 21, 0, 0, 2248, 2249, 7, 11, 0, 0, 2249, 2250, 7, 15, 0, 0, 2250, 2251, 7, 22, 0, 0, 2251, 2252, 7, 25, 0, 0, 2252, 2253, 7, 20, 0, 0, 2253, 2254, 7, 18, 0, 0, 2254, 2255, 7, 8, 0, 0, 2255, 2256, 7, 17, 0, 0, 2256, 322, 1, 0, 0, 0, 2257, 2258, 7, 15, 0, 0, 2258, 2259, 7, 7, 0, 0, 2259, 2260, 7, 6, 0, 0, 2260, 2261, 7, 10, 0, 0, 2261, 2262, 7, 10, 0, 0, 2262, 324, 1, 0, 0, 0, 2263, 2264, 7, 15, 0, 0, 2264, 2265, 7, 7, 0, 0, 2265, 2266, 7, 20, 0, 0, 2266, 2267, 7, 10, 0, 0, 2267, 2268, 7, 11, 0, 0, 2268, 326, 1, 0, 0, 0, 2269, 2270, 7, 15, 0, 0, 2270, 2271, 7, 7, 0, 0, 2271, 2272, 7, 23, 0, 0, 2272, 2273, 7, 10, 0, 0, 2273, 2274, 7, 17, 0, 0, 2274, 2275, 7, 11, 0, 0, 2275, 2276, 7, 14, 0, 0, 2276, 328, 1, 0, 0, 0, 2277, 2278, 7, 15, 0, 0, 2278, 2279, 7, 20, 0, 0, 2279, 2280, 7, 16, 0, 0, 2280, 2281, 7, 16, 0, 0, 2281, 2282, 7, 11, 0, 0, 2282, 2283, 7, 8, 0, 0, 2283, 2284, 7, 17, 0, 0, 2284, 330, 1, 0, 0, 0, 2285, 2286, 7, 15, 0, 0, 2286, 2287, 7, 20, 0, 0, 2287, 2288, 7, 16, 0, 0, 2288, 2289, 7, 16, 0, 0, 2289, 2290, 7, 11, 0, 0, 2290, 2291, 7, 8, 0, 0, 2291, 2292, 7, 17, 0, 0, 2292, 2293, 7, 10, 0, 0, 2293, 332, 1, 0, 0, 0, 2294, 2295, 7, 15, 0, 0, 2295, 2296, 7, 20, 0, 0, 2296, 2297, 7, 16, 0, 0, 2297, 2298, 7, 16, 0, 0, 2298, 2299, 7, 18, 0, 0, 2299, 2300, 7, 17, 0, 0, 2300, 334, 1, 0, 0, 0, 2301, 2302, 7, 15, 0, 0, 2302, 2303, 7, 20, 0, 0, 2303, 2304, 7, 16, 0, 0, 2304, 2305, 7, 16, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2307, 7, 17, 0, 0, 2307, 2308, 7, 17, 0, 0, 2308, 2309, 7, 11, 0, 0, 2309, 2310, 7, 13, 0, 0, 2310, 336, 1, 0, 0, 0, 2311, 2312, 7, 15, 0, 0, 2312, 2313, 7, 20, 0, 0, 2313, 2314, 7, 8, 0, 0, 2314, 2315, 7, 26, 0, 0, 2315, 2316, 7, 18, 0, 0, 2316, 2317, 7, 24, 0, 0, 2317, 2318, 7, 23, 0, 0, 2318, 2319, 7, 14, 0, 0, 2319, 2320, 7, 6, 0, 0, 2320, 2321, 7, 17, 0, 0, 2321, 2322, 7, 18, 0, 0, 2322, 2323, 7, 20, 0, 0, 2323, 2324, 7, 8, 0, 0, 2324, 338, 1, 0, 0, 0, 2325, 2326, 7, 15, 0, 0, 2326, 2327, 7, 20, 0, 0, 2327, 2328, 7, 8, 0, 0, 2328, 2329, 7, 8, 0, 0, 2329, 2330, 7, 11, 0, 0, 2330, 2331, 7, 15, 0, 0, 2331, 2332, 7, 17, 0, 0, 2332, 2333, 7, 18, 0, 0, 2333, 2334, 7, 20, 0, 0, 2334, 2335, 7, 8, 0, 0, 2335, 340, 1, 0, 0, 0, 2336, 2337, 7, 15, 0, 0, 2337, 2338, 7, 20, 0, 0, 2338, 2339, 7, 8, 0, 0, 2339, 2340, 7, 10, 0, 0, 2340, 2341, 7, 17, 0, 0, 2341, 2342, 7, 14, 0, 0, 2342, 2343, 7, 6, 0, 0, 2343, 2344, 7, 18, 0, 0, 2344, 2345, 7, 8, 0, 0, 2345, 2346, 7, 17, 0, 0, 2346, 2347, 7, 10, 0, 0, 2347, 342, 1, 0, 0, 0, 2348, 2349, 7, 15, 0, 0, 2349, 2350, 7, 20, 0, 0, 2350, 2351, 7, 8, 0, 0, 2351, 2352, 7, 17, 0, 0, 2352, 2353, 7, 11, 0, 0, 2353, 2354, 7, 8, 0, 0, 2354, 2355, 7, 17, 0, 0, 2355, 344, 1, 0, 0, 0, 2356, 2357, 7, 15, 0, 0, 2357, 2358, 7, 20, 0, 0, 2358, 2359, 7, 8, 0, 0, 2359, 2360, 7, 17, 0, 0, 2360, 2361, 7, 18, 0, 0, 2361, 2362, 7, 8, 0, 0, 2362, 2363, 7, 23, 0, 0, 2363, 2364, 7, 11, 0, 0, 2364, 346, 1, 0, 0, 0, 2365, 2366, 7, 15, 0, 0, 2366, 2367, 7, 20, 0, 0, 2367, 2368, 7, 8, 0, 0, 2368, 2369, 7, 28, 0, 0, 2369, 2370, 7, 11, 0, 0, 2370, 2371, 7, 14, 0, 0, 2371, 2372, 7, 10, 0, 0, 2372, 2373, 7, 18, 0, 0, 2373, 2374, 7, 20, 0, 0, 2374, 2375, 7, 8, 0, 0, 2375, 348, 1, 0, 0, 0, 2376, 2377, 7, 15, 0, 0, 2377, 2378, 7, 20, 0, 0, 2378, 2379, 7, 25, 0, 0, 2379, 2380, 7, 9, 0, 0, 2380, 350, 1, 0, 0, 0, 2381, 2382, 7, 15, 0, 0, 2382, 2383, 7, 20, 0, 0, 2383, 2384, 7, 10, 0, 0, 2384, 2385, 7, 17, 0, 0, 2385, 352, 1, 0, 0, 0, 2386, 2387, 7, 15, 0, 0, 2387, 2388, 7, 10, 0, 0, 2388, 2389, 7, 28, 0, 0, 2389, 354, 1, 0, 0, 0, 2390, 2391, 7, 15, 0, 0, 2391, 2392, 7, 23, 0, 0, 2392, 2393, 7, 14, 0, 0, 2393, 2394, 7, 10, 0, 0, 2394, 2395, 7, 20, 0, 0, 2395, 2396, 7, 14, 0, 0, 2396, 356, 1, 0, 0, 0, 2397, 2398, 7, 15, 0, 0, 2398, 2399, 7, 9, 0, 0, 2399, 2400, 7, 15, 0, 0, 2400, 2401, 7, 7, 0, 0, 2401, 2402, 7, 11, 0, 0, 2402, 358, 1, 0, 0, 0, 2403, 2404, 7, 13, 0, 0, 2404, 2405, 7, 6, 0, 0, 2405, 2406, 7, 17, 0, 0, 2406, 2407, 7, 6, 0, 0, 2407, 360, 1, 0, 0, 0, 2408, 2409, 7, 13, 0, 0, 2409, 2410, 7, 6, 0, 0, 2410, 2411, 7, 17, 0, 0, 2411, 2412, 7, 6, 0, 0, 2412, 2413, 7, 19, 0, 0, 2413, 2414, 7, 6, 0, 0, 2414, 2415, 7, 10, 0, 0, 2415, 2416, 7, 11, 0, 0, 2416, 362, 1, 0, 0, 0, 2417, 2418, 7, 13, 0, 0, 2418, 2419, 7, 6, 0, 0, 2419, 2420, 7, 9, 0, 0, 2420, 364, 1, 0, 0, 0, 2421, 2422, 7, 13, 0, 0, 2422, 2423, 7, 11, 0, 0, 2423, 2424, 7, 6, 0, 0, 2424, 2425, 7, 7, 0, 0, 2425, 2426, 7, 7, 0, 0, 2426, 2427, 7, 20, 0, 0, 2427, 2428, 7, 15, 0, 0, 2428, 2429, 7, 6, 0, 0, 2429, 2430, 7, 17, 0, 0, 2430, 2431, 7, 11, 0, 0, 2431, 366, 1, 0, 0, 0, 2432, 2433, 7, 13, 0, 0, 2433, 2434, 7, 11, 0, 0, 2434, 2435, 7, 15, 0, 0, 2435, 2436, 7, 7, 0, 0, 2436, 2437, 7, 6, 0, 0, 2437, 2438, 7, 14, 0, 0, 2438, 2439, 7, 11, 0, 0, 2439, 368, 1, 0, 0, 0, 2440, 2441, 7, 13, 0, 0, 2441, 2442, 7, 11, 0, 0, 2442, 2443, 7, 26, 0, 0, 2443, 2444, 7, 6, 0, 0, 2444, 2445, 7, 23, 0, 0, 2445, 2446, 7, 7, 0, 0, 2446, 2447, 7, 17, 0, 0, 2447, 2448, 7, 10, 0, 0, 2448, 370, 1, 0, 0, 0, 2449, 2450, 7, 13, 0, 0, 2450, 2451, 7, 11, 0, 0, 2451, 2452, 7, 26, 0, 0, 2452, 2453, 7, 11, 0, 0, 2453, 2454, 7, 14, 0, 0, 2454, 2455, 7, 14, 0, 0, 2455, 2456, 7, 11, 0, 0, 2456, 2457, 7, 13, 0, 0, 2457, 372, 1, 0, 0, 0, 2458, 2459, 7, 13, 0, 0, 2459, 2460, 7, 11, 0, 0, 2460, 2461, 7, 26, 0, 0, 2461, 2462, 7, 18, 0, 0, 2462, 2463, 7, 8, 0, 0, 2463, 2464, 7, 11, 0, 0, 2464, 2465, 7, 14, 0, 0, 2465, 374, 1, 0, 0, 0, 2466, 2467, 7, 13, 0, 0, 2467, 2468, 7, 11, 0, 0, 2468, 2469, 7, 7, 0, 0, 2469, 2470, 7, 11, 0, 0, 2470, 2471, 7, 17, 0, 0, 2471, 2472, 7, 11, 0, 0, 2472, 376, 1, 0, 0, 0, 2473, 2474, 7, 13, 0, 0, 2474, 2475, 7, 11, 0, 0, 2475, 2476, 7, 7, 0, 0, 2476, 2477, 7, 18, 0, 0, 2477, 2478, 7, 16, 0, 0, 2478, 2479, 7, 18, 0, 0, 2479, 2480, 7, 17, 0, 0, 2480, 2481, 7, 11, 0, 0, 2481, 2482, 7, 14, 0, 0, 2482, 378, 1, 0, 0, 0, 2483, 2484, 7, 13, 0, 0, 2484, 2485, 7, 11, 0, 0, 2485, 2486, 7, 7, 0, 0, 2486, 2487, 7, 18, 0, 0, 2487, 2488, 7, 16, 0, 0, 2488, 2489, 7, 18, 0, 0, 2489, 2490, 7, 17, 0, 0, 2490, 2491, 7, 11, 0, 0, 2491, 2492, 7, 14, 0, 0, 2492, 2493, 7, 10, 0, 0, 2493, 380, 1, 0, 0, 0, 2494, 2495, 7, 13, 0, 0, 2495, 2496, 7, 18, 0, 0, 2496, 2497, 7, 15, 0, 0, 2497, 2498, 7, 17, 0, 0, 2498, 2499, 7, 18, 0, 0, 2499, 2500, 7, 20, 0, 0, 2500, 2501, 7, 8, 0, 0, 2501, 2502, 7, 6, 0, 0, 2502, 2503, 7, 14, 0, 0, 2503, 2504, 7, 9, 0, 0, 2504, 382, 1, 0, 0, 0, 2505, 2506, 7, 13, 0, 0, 2506, 2507, 7, 18, 0, 0, 2507, 2508, 7, 10, 0, 0, 2508, 2509, 7, 6, 0, 0, 2509, 2510, 7, 19, 0, 0, 2510, 2511, 7, 7, 0, 0, 2511, 2512, 7, 11, 0, 0, 2512, 384, 1, 0, 0, 0, 2513, 2514, 7, 13, 0, 0, 2514, 2515, 7, 18, 0, 0, 2515, 2516, 7, 10, 0, 0, 2516, 2517, 7, 15, 0, 0, 2517, 2518, 7, 6, 0, 0, 2518, 2519, 7, 14, 0, 0, 2519, 2520, 7, 13, 0, 0, 2520, 386, 1, 0, 0, 0, 2521, 2522, 7, 13, 0, 0, 2522, 2523, 7, 20, 0, 0, 2523, 2524, 7, 15, 0, 0, 2524, 2525, 7, 23, 0, 0, 2525, 2526, 7, 16, 0, 0, 2526, 2527, 7, 11, 0, 0, 2527, 2528, 7, 8, 0, 0, 2528, 2529, 7, 17, 0, 0, 2529, 388, 1, 0, 0, 0, 2530, 2531, 7, 13, 0, 0, 2531, 2532, 7, 20, 0, 0, 2532, 2533, 7, 16, 0, 0, 2533, 2534, 7, 6, 0, 0, 2534, 2535, 7, 18, 0, 0, 2535, 2536, 7, 8, 0, 0, 2536, 390, 1, 0, 0, 0, 2537, 2538, 7, 13, 0, 0, 2538, 2539, 7, 20, 0, 0, 2539, 2540, 7, 23, 0, 0, 2540, 2541, 7, 19, 0, 0, 2541, 2542, 7, 7, 0, 0, 2542, 2543, 7, 11, 0, 0, 2543, 392, 1, 0, 0, 0, 2544, 2545, 7, 13, 0, 0, 2545, 2546, 7, 14, 0, 0, 2546, 2547, 7, 20, 0, 0, 2547, 2548, 7, 25, 0, 0, 2548, 394, 1, 0, 0, 0, 2549, 2550, 7, 11, 0, 0, 2550, 2551, 7, 6, 0, 0, 2551, 2552, 7, 15, 0, 0, 2552, 2553, 7, 21, 0, 0, 2553, 396, 1, 0, 0, 0, 2554, 2555, 7, 11, 0, 0, 2555, 2556, 7, 8, 0, 0, 2556, 2557, 7, 6, 0, 0, 2557, 2558, 7, 19, 0, 0, 2558, 2559, 7, 7, 0, 0, 2559, 2560, 7, 11, 0, 0, 2560, 398, 1, 0, 0, 0, 2561, 2562, 7, 11, 0, 0, 2562, 2563, 7, 8, 0, 0, 2563, 2564, 7, 15, 0, 0, 2564, 2565, 7, 20, 0, 0, 2565, 2566, 7, 13, 0, 0, 2566, 2567, 7, 18, 0, 0, 2567, 2568, 7, 8, 0, 0, 2568, 2569, 7, 24, 0, 0, 2569, 400, 1, 0, 0, 0, 2570, 2571, 7, 11, 0, 0, 2571, 2572, 7, 8, 0, 0, 2572, 2573, 7, 15, 0, 0, 2573, 2574, 7, 14, 0, 0, 2574, 2575, 7, 9, 0, 0, 2575, 2576, 7, 25, 0, 0, 2576, 2577, 7, 17, 0, 0, 2577, 2578, 7, 11, 0, 0, 2578, 2579, 7, 13, 0, 0, 2579, 402, 1, 0, 0, 0, 2580, 2581, 7, 11, 0, 0, 2581, 2582, 7, 8, 0, 0, 2582, 2583, 7, 23, 0, 0, 2583, 2584, 7, 16, 0, 0, 2584, 404, 1, 0, 0, 0, 2585, 2586, 7, 11, 0, 0, 2586, 2587, 7, 10, 0, 0, 2587, 2588, 7, 15, 0, 0, 2588, 2589, 7, 6, 0, 0, 2589, 2590, 7, 25, 0, 0, 2590, 2591, 7, 11, 0, 0, 2591, 406, 1, 0, 0, 0, 2592, 2593, 7, 11, 0, 0, 2593, 2594, 7, 28, 0, 0, 2594, 2595, 7, 11, 0, 0, 2595, 2596, 7, 8, 0, 0, 2596, 2597, 7, 17, 0, 0, 2597, 408, 1, 0, 0, 0, 2598, 2599, 7, 11, 0, 0, 2599, 2600, 7, 27, 0, 0, 2600, 2601, 7, 15, 0, 0, 2601, 2602, 7, 7, 0, 0, 2602, 2603, 7, 23, 0, 0, 2603, 2604, 7, 13, 0, 0, 2604, 2605, 7, 11, 0, 0, 2605, 410, 1, 0, 0, 0, 2606, 2607, 7, 11, 0, 0, 2607, 2608, 7, 27, 0, 0, 2608, 2609, 7, 15, 0, 0, 2609, 2610, 7, 7, 0, 0, 2610, 2611, 7, 23, 0, 0, 2611, 2612, 7, 13, 0, 0, 2612, 2613, 7, 18, 0, 0, 2613, 2614, 7, 8, 0, 0, 2614, 2615, 7, 24, 0, 0, 2615, 412, 1, 0, 0, 0, 2616, 2617, 7, 11, 0, 0, 2617, 2618, 7, 27, 0, 0, 2618, 2619, 7, 15, 0, 0, 2619, 2620, 7, 7, 0, 0, 2620, 2621, 7, 23, 0, 0, 2621, 2622, 7, 10, 0, 0, 2622, 2623, 7, 18, 0, 0, 2623, 2624, 7, 28, 0, 0, 2624, 2625, 7, 11, 0, 0, 2625, 414, 1, 0, 0, 0, 2626, 2627, 7, 11, 0, 0, 2627, 2628, 7, 27, 0, 0, 2628, 2629, 7, 11, 0, 0, 2629, 2630, 7, 15, 0, 0, 2630, 2631, 7, 23, 0, 0, 2631, 2632, 7, 17, 0, 0, 2632, 2633, 7, 11, 0, 0, 2633, 416, 1, 0, 0, 0, 2634, 2635, 7, 11, 0, 0, 2635, 2636, 7, 27, 0, 0, 2636, 2637, 7, 25, 0, 0, 2637, 2638, 7, 7, 0, 0, 2638, 2639, 7, 6, 0, 0, 2639, 2640, 7, 18, 0, 0, 2640, 2641, 7, 8, 0, 0, 2641, 418, 1, 0, 0, 0, 2642, 2643, 7, 11, 0, 0, 2643, 2644, 7, 27, 0, 0, 2644, 2645, 7, 17, 0, 0, 2645, 2646, 7, 11, 0, 0, 2646, 2647, 7, 8, 0, 0, 2647, 2648, 7, 10, 0, 0, 2648, 2649, 7, 18, 0, 0, 2649, 2650, 7, 20, 0, 0, 2650, 2651, 7, 8, 0, 0, 2651, 420, 1, 0, 0, 0, 2652, 2653, 7, 11, 0, 0, 2653, 2654, 7, 27, 0, 0, 2654, 2655, 7, 17, 0, 0, 2655, 2656, 7, 11, 0, 0, 2656, 2657, 7, 14, 0, 0, 2657, 2658, 7, 8, 0, 0, 2658, 2659, 7, 6, 0, 0, 2659, 2660, 7, 7, 0, 0, 2660, 422, 1, 0, 0, 0, 2661, 2662, 7, 26, 0, 0, 2662, 2663, 7, 6, 0, 0, 2663, 2664, 7, 16, 0, 0, 2664, 2665, 7, 18, 0, 0, 2665, 2666, 7, 7, 0, 0, 2666, 2667, 7, 9, 0, 0, 2667, 424, 1, 0, 0, 0, 2668, 2669, 7, 26, 0, 0, 2669, 2670, 7, 18, 0, 0, 2670, 2671, 7, 14, 0, 0, 2671, 2672, 7, 10, 0, 0, 2672, 2673, 7, 17, 0, 0, 2673, 426, 1, 0, 0, 0, 2674, 2675, 7, 26, 0, 0, 2675, 2676, 7, 20, 0, 0, 2676, 2677, 7, 7, 0, 0, 2677, 2678, 7, 7, 0, 0, 2678, 2679, 7, 20, 0, 0, 2679, 2680, 7, 30, 0, 0, 2680, 2681, 7, 18, 0, 0, 2681, 2682, 7, 8, 0, 0, 2682, 2683, 7, 24, 0, 0, 2683, 428, 1, 0, 0, 0, 2684, 2685, 7, 26, 0, 0, 2685, 2686, 7, 20, 0, 0, 2686, 2687, 7, 14, 0, 0, 2687, 2688, 7, 15, 0, 0, 2688, 2689, 7, 11, 0, 0, 2689, 430, 1, 0, 0, 0, 2690, 2691, 7, 26, 0, 0, 2691, 2692, 7, 20, 0, 0, 2692, 2693, 7, 14, 0, 0, 2693, 2694, 7, 30, 0, 0, 2694, 2695, 7, 6, 0, 0, 2695, 2696, 7, 14, 0, 0, 2696, 2697, 7, 13, 0, 0, 2697, 432, 1, 0, 0, 0, 2698, 2699, 7, 26, 0, 0, 2699, 2700, 7, 23, 0, 0, 2700, 2701, 7, 8, 0, 0, 2701, 2702, 7, 15, 0, 0, 2702, 2703, 7, 17, 0, 0, 2703, 2704, 7, 18, 0, 0, 2704, 2705, 7, 20, 0, 0, 2705, 2706, 7, 8, 0, 0, 2706, 434, 1, 0, 0, 0, 2707, 2708, 7, 26, 0, 0, 2708, 2709, 7, 23, 0, 0, 2709, 2710, 7, 8, 0, 0, 2710, 2711, 7, 15, 0, 0, 2711, 2712, 7, 17, 0, 0, 2712, 2713, 7, 18, 0, 0, 2713, 2714, 7, 20, 0, 0, 2714, 2715, 7, 8, 0, 0, 2715, 2716, 7, 10, 0, 0, 2716, 436, 1, 0, 0, 0, 2717, 2718, 7, 24, 0, 0, 2718, 2719, 7, 7, 0, 0, 2719, 2720, 7, 20, 0, 0, 2720, 2721, 7, 19, 0, 0, 2721, 2722, 7, 6, 0, 0, 2722, 2723, 7, 7, 0, 0, 2723, 438, 1, 0, 0, 0, 2724, 2725, 7, 24, 0, 0, 2725, 2726, 7, 14, 0, 0, 2726, 2727, 7, 6, 0, 0, 2727, 2728, 7, 8, 0, 0, 2728, 2729, 7, 17, 0, 0, 2729, 2730, 7, 11, 0, 0, 2730, 2731, 7, 13, 0, 0, 2731, 440, 1, 0, 0, 0, 2732, 2733, 7, 21, 0, 0, 2733, 2734, 7, 6, 0, 0, 2734, 2735, 7, 8, 0, 0, 2735, 2736, 7, 13, 0, 0, 2736, 2737, 7, 7, 0, 0, 2737, 2738, 7, 11, 0, 0, 2738, 2739, 7, 14, 0, 0, 2739, 442, 1, 0, 0, 0, 2740, 2741, 7, 21, 0, 0, 2741, 2742, 7, 11, 0, 0, 2742, 2743, 7, 6, 0, 0, 2743, 2744, 7, 13, 0, 0, 2744, 2745, 7, 11, 0, 0, 2745, 2746, 7, 14, 0, 0, 2746, 444, 1, 0, 0, 0, 2747, 2748, 7, 21, 0, 0, 2748, 2749, 7, 20, 0, 0, 2749, 2750, 7, 7, 0, 0, 2750, 2751, 7, 13, 0, 0, 2751, 446, 1, 0, 0, 0, 2752, 2753, 7, 21, 0, 0, 2753, 2754, 7, 20, 0, 0, 2754, 2755, 7, 23, 0, 0, 2755, 2756, 7, 14, 0, 0, 2756, 448, 1, 0, 0, 0, 2757, 2758, 7, 18, 0, 0, 2758, 2759, 7, 13, 0, 0, 2759, 2760, 7, 11, 0, 0, 2760, 2761, 7, 8, 0, 0, 2761, 2762, 7, 17, 0, 0, 2762, 2763, 7, 18, 0, 0, 2763, 2764, 7, 17, 0, 0, 2764, 2765, 7, 9, 0, 0, 2765, 450, 1, 0, 0, 0, 2766, 2767, 7, 18, 0, 0, 2767, 2768, 7, 26, 0, 0, 2768, 452, 1, 0, 0, 0, 2769, 2770, 7, 18, 0, 0, 2770, 2771, 7, 16, 0, 0, 2771, 2772, 7, 16, 0, 0, 2772, 2773, 7, 11, 0, 0, 2773, 2774, 7, 13, 0, 0, 2774, 2775, 7, 18, 0, 0, 2775, 2776, 7, 6, 0, 0, 2776, 2777, 7, 17, 0, 0, 2777, 2778, 7, 11, 0, 0, 2778, 454, 1, 0, 0, 0, 2779, 2780, 7, 18, 0, 0, 2780, 2781, 7, 16, 0, 0, 2781, 2782, 7, 16, 0, 0, 2782, 2783, 7, 23, 0, 0, 2783, 2784, 7, 17, 0, 0, 2784, 2785, 7, 6, 0, 0, 2785, 2786, 7, 19, 0, 0, 2786, 2787, 7, 7, 0, 0, 2787, 2788, 7, 11, 0, 0, 2788, 456, 1, 0, 0, 0, 2789, 2790, 7, 18, 0, 0, 2790, 2791, 7, 16, 0, 0, 2791, 2792, 7, 25, 0, 0, 2792, 2793, 7, 7, 0, 0, 2793, 2794, 7, 18, 0, 0, 2794, 2795, 7, 15, 0, 0, 2795, 2796, 7, 18, 0, 0, 2796, 2797, 7, 17, 0, 0, 2797, 458, 1, 0, 0, 0, 2798, 2799, 7, 18, 0, 0, 2799, 2800, 7, 8, 0, 0, 2800, 2801, 7, 15, 0, 0, 2801, 2802, 7, 7, 0, 0, 2802, 2803, 7, 23, 0, 0, 2803, 2804, 7, 13, 0, 0, 2804, 2805, 7, 18, 0, 0, 2805, 2806, 7, 8, 0, 0, 2806, 2807, 7, 24, 0, 0, 2807, 460, 1, 0, 0, 0, 2808, 2809, 7, 18, 0, 0, 2809, 2810, 7, 8, 0, 0, 2810, 2811, 7, 15, 0, 0, 2811, 2812, 7, 14, 0, 0, 2812, 2813, 7, 11, 0, 0, 2813, 2814, 7, 16, 0, 0, 2814, 2815, 7, 11, 0, 0, 2815, 2816, 7, 8, 0, 0, 2816, 2817, 7, 17, 0, 0, 2817, 462, 1, 0, 0, 0, 2818, 2819, 7, 18, 0, 0, 2819, 2820, 7, 8, 0, 0, 2820, 2821, 7, 13, 0, 0, 2821, 2822, 7, 11, 0, 0, 2822, 2823, 7, 27, 0, 0, 2823, 464, 1, 0, 0, 0, 2824, 2825, 7, 18, 0, 0, 2825, 2826, 7, 8, 0, 0, 2826, 2827, 7, 13, 0, 0, 2827, 2828, 7, 11, 0, 0, 2828, 2829, 7, 27, 0, 0, 2829, 2830, 7, 11, 0, 0, 2830, 2831, 7, 10, 0, 0, 2831, 466, 1, 0, 0, 0, 2832, 2833, 7, 18, 0, 0, 2833, 2834, 7, 8, 0, 0, 2834, 2835, 7, 21, 0, 0, 2835, 2836, 7, 11, 0, 0, 2836, 2837, 7, 14, 0, 0, 2837, 2838, 7, 18, 0, 0, 2838, 2839, 7, 17, 0, 0, 2839, 468, 1, 0, 0, 0, 2840, 2841, 7, 8, 0, 0, 2841, 2842, 7, 20, 0, 0, 2842, 2843, 7, 18, 0, 0, 2843, 2844, 7, 8, 0, 0, 2844, 2845, 7, 21, 0, 0, 2845, 2846, 7, 11, 0, 0, 2846, 2847, 7, 14, 0, 0, 2847, 2848, 7, 18, 0, 0, 2848, 2849, 7, 17, 0, 0, 2849, 470, 1, 0, 0, 0, 2850, 2851, 7, 10, 0, 0, 2851, 2852, 7, 23, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2854, 7, 11, 0, 0, 2854, 2855, 7, 14, 0, 0, 2855, 2856, 7, 23, 0, 0, 2856, 2857, 7, 10, 0, 0, 2857, 2858, 7, 11, 0, 0, 2858, 2859, 7, 14, 0, 0, 2859, 472, 1, 0, 0, 0, 2860, 2861, 7, 8, 0, 0, 2861, 2862, 7, 20, 0, 0, 2862, 2863, 7, 10, 0, 0, 2863, 2864, 7, 23, 0, 0, 2864, 2865, 7, 25, 0, 0, 2865, 2866, 7, 11, 0, 0, 2866, 2867, 7, 14, 0, 0, 2867, 2868, 7, 23, 0, 0, 2868, 2869, 7, 10, 0, 0, 2869, 2870, 7, 11, 0, 0, 2870, 2871, 7, 14, 0, 0, 2871, 474, 1, 0, 0, 0, 2872, 2873, 7, 15, 0, 0, 2873, 2874, 7, 14, 0, 0, 2874, 2875, 7, 11, 0, 0, 2875, 2876, 7, 6, 0, 0, 2876, 2877, 7, 17, 0, 0, 2877, 2878, 7, 11, 0, 0, 2878, 2879, 7, 13, 0, 0, 2879, 2880, 7, 19, 0, 0, 2880, 476, 1, 0, 0, 0, 2881, 2882, 7, 8, 0, 0, 2882, 2883, 7, 20, 0, 0, 2883, 2884, 7, 15, 0, 0, 2884, 2885, 7, 14, 0, 0, 2885, 2886, 7, 11, 0, 0, 2886, 2887, 7, 6, 0, 0, 2887, 2888, 7, 17, 0, 0, 2888, 2889, 7, 11, 0, 0, 2889, 2890, 7, 13, 0, 0, 2890, 2891, 7, 19, 0, 0, 2891, 478, 1, 0, 0, 0, 2892, 2893, 7, 15, 0, 0, 2893, 2894, 7, 14, 0, 0, 2894, 2895, 7, 11, 0, 0, 2895, 2896, 7, 6, 0, 0, 2896, 2897, 7, 17, 0, 0, 2897, 2898, 7, 11, 0, 0, 2898, 2899, 7, 14, 0, 0, 2899, 2900, 7, 20, 0, 0, 2900, 2901, 7, 7, 0, 0, 2901, 2902, 7, 11, 0, 0, 2902, 480, 1, 0, 0, 0, 2903, 2904, 7, 8, 0, 0, 2904, 2905, 7, 20, 0, 0, 2905, 2906, 7, 15, 0, 0, 2906, 2907, 7, 14, 0, 0, 2907, 2908, 7, 11, 0, 0, 2908, 2909, 7, 6, 0, 0, 2909, 2910, 7, 17, 0, 0, 2910, 2911, 7, 11, 0, 0, 2911, 2912, 7, 14, 0, 0, 2912, 2913, 7, 20, 0, 0, 2913, 2914, 7, 7, 0, 0, 2914, 2915, 7, 11, 0, 0, 2915, 482, 1, 0, 0, 0, 2916, 2917, 7, 15, 0, 0, 2917, 2918, 7, 14, 0, 0, 2918, 2919, 7, 11, 0, 0, 2919, 2920, 7, 6, 0, 0, 2920, 2921, 7, 17, 0, 0, 2921, 2922, 7, 11, 0, 0, 2922, 2923, 7, 23, 0, 0, 2923, 2924, 7, 10, 0, 0, 2924, 2925, 7, 11, 0, 0, 2925, 2926, 7, 14, 0, 0, 2926, 484, 1, 0, 0, 0, 2927, 2928, 7, 8, 0, 0, 2928, 2929, 7, 20, 0, 0, 2929, 2930, 7, 15, 0, 0, 2930, 2931, 7, 14, 0, 0, 2931, 2932, 7, 11, 0, 0, 2932, 2933, 7, 6, 0, 0, 2933, 2934, 7, 17, 0, 0, 2934, 2935, 7, 11, 0, 0, 2935, 2936, 7, 23, 0, 0, 2936, 2937, 7, 10, 0, 0, 2937, 2938, 7, 11, 0, 0, 2938, 2939, 7, 14, 0, 0, 2939, 486, 1, 0, 0, 0, 2940, 2941, 7, 18, 0, 0, 2941, 2942, 7, 8, 0, 0, 2942, 2943, 7, 21, 0, 0, 2943, 2944, 7, 11, 0, 0, 2944, 2945, 7, 14, 0, 0, 2945, 2946, 7, 18, 0, 0, 2946, 2947, 7, 17, 0, 0, 2947, 2948, 7, 10, 0, 0, 2948, 488, 1, 0, 0, 0, 2949, 2950, 7, 18, 0, 0, 2950, 2951, 7, 8, 0, 0, 2951, 2952, 7, 7, 0, 0, 2952, 2953, 7, 18, 0, 0, 2953, 2954, 7, 8, 0, 0, 2954, 2955, 7, 11, 0, 0, 2955, 490, 1, 0, 0, 0, 2956, 2957, 7, 18, 0, 0, 2957, 2958, 7, 8, 0, 0, 2958, 2959, 7, 10, 0, 0, 2959, 2960, 7, 11, 0, 0, 2960, 2961, 7, 8, 0, 0, 2961, 2962, 7, 10, 0, 0, 2962, 2963, 7, 18, 0, 0, 2963, 2964, 7, 17, 0, 0, 2964, 2965, 7, 18, 0, 0, 2965, 2966, 7, 28, 0, 0, 2966, 2967, 7, 11, 0, 0, 2967, 492, 1, 0, 0, 0, 2968, 2969, 7, 18, 0, 0, 2969, 2970, 7, 8, 0, 0, 2970, 2971, 7, 10, 0, 0, 2971, 2972, 7, 11, 0, 0, 2972, 2973, 7, 14, 0, 0, 2973, 2974, 7, 17, 0, 0, 2974, 494, 1, 0, 0, 0, 2975, 2976, 7, 18, 0, 0, 2976, 2977, 7, 8, 0, 0, 2977, 2978, 7, 10, 0, 0, 2978, 2979, 7, 17, 0, 0, 2979, 2980, 7, 11, 0, 0, 2980, 2981, 7, 6, 0, 0, 2981, 2982, 7, 13, 0, 0, 2982, 496, 1, 0, 0, 0, 2983, 2984, 7, 18, 0, 0, 2984, 2985, 7, 8, 0, 0, 2985, 2986, 7, 28, 0, 0, 2986, 2987, 7, 20, 0, 0, 2987, 2988, 7, 22, 0, 0, 2988, 2989, 7, 11, 0, 0, 2989, 2990, 7, 14, 0, 0, 2990, 498, 1, 0, 0, 0, 2991, 2992, 7, 18, 0, 0, 2992, 2993, 7, 10, 0, 0, 2993, 2994, 7, 20, 0, 0, 2994, 2995, 7, 7, 0, 0, 2995, 2996, 7, 6, 0, 0, 2996, 2997, 7, 17, 0, 0, 2997, 2998, 7, 18, 0, 0, 2998, 2999, 7, 20, 0, 0, 2999, 3000, 7, 8, 0, 0, 3000, 500, 1, 0, 0, 0, 3001, 3002, 7, 22, 0, 0, 3002, 3003, 7, 11, 0, 0, 3003, 3004, 7, 9, 0, 0, 3004, 502, 1, 0, 0, 0, 3005, 3006, 7, 7, 0, 0, 3006, 3007, 7, 6, 0, 0, 3007, 3008, 7, 19, 0, 0, 3008, 3009, 7, 11, 0, 0, 3009, 3010, 7, 7, 0, 0, 3010, 504, 1, 0, 0, 0, 3011, 3012, 7, 7, 0, 0, 3012, 3013, 7, 6, 0, 0, 3013, 3014, 7, 8, 0, 0, 3014, 3015, 7, 24, 0, 0, 3015, 3016, 7, 23, 0, 0, 3016, 3017, 7, 6, 0, 0, 3017, 3018, 7, 24, 0, 0, 3018, 3019, 7, 11, 0, 0, 3019, 506, 1, 0, 0, 0, 3020, 3021, 7, 7, 0, 0, 3021, 3022, 7, 6, 0, 0, 3022, 3023, 7, 14, 0, 0, 3023, 3024, 7, 24, 0, 0, 3024, 3025, 7, 11, 0, 0, 3025, 508, 1, 0, 0, 0, 3026, 3027, 7, 7, 0, 0, 3027, 3028, 7, 6, 0, 0, 3028, 3029, 7, 10, 0, 0, 3029, 3030, 7, 17, 0, 0, 3030, 510, 1, 0, 0, 0, 3031, 3032, 7, 7, 0, 0, 3032, 3033, 7, 11, 0, 0, 3033, 3034, 7, 6, 0, 0, 3034, 3035, 7, 22, 0, 0, 3035, 3036, 7, 25, 0, 0, 3036, 3037, 7, 14, 0, 0, 3037, 3038, 7, 20, 0, 0, 3038, 3039, 7, 20, 0, 0, 3039, 3040, 7, 26, 0, 0, 3040, 512, 1, 0, 0, 0, 3041, 3042, 7, 7, 0, 0, 3042, 3043, 7, 11, 0, 0, 3043, 3044, 7, 28, 0, 0, 3044, 3045, 7, 11, 0, 0, 3045, 3046, 7, 7, 0, 0, 3046, 514, 1, 0, 0, 0, 3047, 3048, 7, 7, 0, 0, 3048, 3049, 7, 18, 0, 0, 3049, 3050, 7, 10, 0, 0, 3050, 3051, 7, 17, 0, 0, 3051, 3052, 7, 11, 0, 0, 3052, 3053, 7, 8, 0, 0, 3053, 516, 1, 0, 0, 0, 3054, 3055, 7, 7, 0, 0, 3055, 3056, 7, 20, 0, 0, 3056, 3057, 7, 6, 0, 0, 3057, 3058, 7, 13, 0, 0, 3058, 518, 1, 0, 0, 0, 3059, 3060, 7, 7, 0, 0, 3060, 3061, 7, 20, 0, 0, 3061, 3062, 7, 15, 0, 0, 3062, 3063, 7, 6, 0, 0, 3063, 3064, 7, 7, 0, 0, 3064, 520, 1, 0, 0, 0, 3065, 3066, 7, 7, 0, 0, 3066, 3067, 7, 20, 0, 0, 3067, 3068, 7, 15, 0, 0, 3068, 3069, 7, 6, 0, 0, 3069, 3070, 7, 17, 0, 0, 3070, 3071, 7, 18, 0, 0, 3071, 3072, 7, 20, 0, 0, 3072, 3073, 7, 8, 0, 0, 3073, 522, 1, 0, 0, 0, 3074, 3075, 7, 7, 0, 0, 3075, 3076, 7, 20, 0, 0, 3076, 3077, 7, 15, 0, 0, 3077, 3078, 7, 22, 0, 0, 3078, 524, 1, 0, 0, 0, 3079, 3080, 7, 16, 0, 0, 3080, 3081, 7, 6, 0, 0, 3081, 3082, 7, 25, 0, 0, 3082, 3083, 7, 25, 0, 0, 3083, 3084, 7, 18, 0, 0, 3084, 3085, 7, 8, 0, 0, 3085, 3086, 7, 24, 0, 0, 3086, 526, 1, 0, 0, 0, 3087, 3088, 7, 16, 0, 0, 3088, 3089, 7, 6, 0, 0, 3089, 3090, 7, 17, 0, 0, 3090, 3091, 7, 15, 0, 0, 3091, 3092, 7, 21, 0, 0, 3092, 528, 1, 0, 0, 0, 3093, 3094, 7, 16, 0, 0, 3094, 3095, 7, 6, 0, 0, 3095, 3096, 7, 17, 0, 0, 3096, 3097, 7, 11, 0, 0, 3097, 3098, 7, 14, 0, 0, 3098, 3099, 7, 18, 0, 0, 3099, 3100, 7, 6, 0, 0, 3100, 3101, 7, 7, 0, 0, 3101, 3102, 7, 18, 0, 0, 3102, 3103, 7, 12, 0, 0, 3103, 3104, 7, 11, 0, 0, 3104, 3105, 7, 13, 0, 0, 3105, 530, 1, 0, 0, 0, 3106, 3107, 7, 16, 0, 0, 3107, 3108, 7, 6, 0, 0, 3108, 3109, 7, 27, 0, 0, 3109, 3110, 7, 28, 0, 0, 3110, 3111, 7, 6, 0, 0, 3111, 3112, 7, 7, 0, 0, 3112, 3113, 7, 23, 0, 0, 3113, 3114, 7, 11, 0, 0, 3114, 532, 1, 0, 0, 0, 3115, 3116, 7, 16, 0, 0, 3116, 3117, 7, 18, 0, 0, 3117, 3118, 7, 8, 0, 0, 3118, 3119, 7, 23, 0, 0, 3119, 3120, 7, 17, 0, 0, 3120, 3121, 7, 11, 0, 0, 3121, 534, 1, 0, 0, 0, 3122, 3123, 7, 16, 0, 0, 3123, 3124, 7, 18, 0, 0, 3124, 3125, 7, 8, 0, 0, 3125, 3126, 7, 28, 0, 0, 3126, 3127, 7, 6, 0, 0, 3127, 3128, 7, 7, 0, 0, 3128, 3129, 7, 23, 0, 0, 3129, 3130, 7, 11, 0, 0, 3130, 536, 1, 0, 0, 0, 3131, 3132, 7, 16, 0, 0, 3132, 3133, 7, 20, 0, 0, 3133, 3134, 7, 13, 0, 0, 3134, 3135, 7, 11, 0, 0, 3135, 538, 1, 0, 0, 0, 3136, 3137, 7, 16, 0, 0, 3137, 3138, 7, 20, 0, 0, 3138, 3139, 7, 8, 0, 0, 3139, 3140, 7, 17, 0, 0, 3140, 3141, 7, 21, 0, 0, 3141, 540, 1, 0, 0, 0, 3142, 3143, 7, 16, 0, 0, 3143, 3144, 7, 20, 0, 0, 3144, 3145, 7, 28, 0, 0, 3145, 3146, 7, 11, 0, 0, 3146, 542, 1, 0, 0, 0, 3147, 3148, 7, 8, 0, 0, 3148, 3149, 7, 6, 0, 0, 3149, 3150, 7, 16, 0, 0, 3150, 3151, 7, 11, 0, 0, 3151, 544, 1, 0, 0, 0, 3152, 3153, 7, 8, 0, 0, 3153, 3154, 7, 6, 0, 0, 3154, 3155, 7, 16, 0, 0, 3155, 3156, 7, 11, 0, 0, 3156, 3157, 7, 10, 0, 0, 3157, 546, 1, 0, 0, 0, 3158, 3159, 7, 8, 0, 0, 3159, 3160, 7, 11, 0, 0, 3160, 3161, 7, 27, 0, 0, 3161, 3162, 7, 17, 0, 0, 3162, 548, 1, 0, 0, 0, 3163, 3164, 7, 8, 0, 0, 3164, 3165, 7, 20, 0, 0, 3165, 550, 1, 0, 0, 0, 3166, 3167, 7, 8, 0, 0, 3167, 3168, 7, 20, 0, 0, 3168, 3169, 7, 17, 0, 0, 3169, 3170, 7, 21, 0, 0, 3170, 3171, 7, 18, 0, 0, 3171, 3172, 7, 8, 0, 0, 3172, 3173, 7, 24, 0, 0, 3173, 552, 1, 0, 0, 0, 3174, 3175, 7, 8, 0, 0, 3175, 3176, 7, 20, 0, 0, 3176, 3177, 7, 17, 0, 0, 3177, 3178, 7, 18, 0, 0, 3178, 3179, 7, 26, 0, 0, 3179, 3180, 7, 9, 0, 0, 3180, 554, 1, 0, 0, 0, 3181, 3182, 7, 8, 0, 0, 3182, 3183, 7, 20, 0, 0, 3183, 3184, 7, 30, 0, 0, 3184, 3185, 7, 6, 0, 0, 3185, 3186, 7, 18, 0, 0, 3186, 3187, 7, 17, 0, 0, 3187, 556, 1, 0, 0, 0, 3188, 3189, 7, 8, 0, 0, 3189, 3190, 7, 23, 0, 0, 3190, 3191, 7, 7, 0, 0, 3191, 3192, 7, 7, 0, 0, 3192, 3193, 7, 10, 0, 0, 3193, 558, 1, 0, 0, 0, 3194, 3195, 7, 20, 0, 0, 3195, 3196, 7, 19, 0, 0, 3196, 3197, 7, 31, 0, 0, 3197, 3198, 7, 11, 0, 0, 3198, 3199, 7, 15, 0, 0, 3199, 3200, 7, 17, 0, 0, 3200, 560, 1, 0, 0, 0, 3201, 3202, 7, 20, 0, 0, 3202, 3203, 7, 26, 0, 0, 3203, 562, 1, 0, 0, 0, 3204, 3205, 7, 20, 0, 0, 3205, 3206, 7, 26, 0, 0, 3206, 3207, 7, 26, 0, 0, 3207, 564, 1, 0, 0, 0, 3208, 3209, 7, 20, 0, 0, 3209, 3210, 7, 18, 0, 0, 3210, 3211, 7, 13, 0, 0, 3211, 3212, 7, 10, 0, 0, 3212, 566, 1, 0, 0, 0, 3213, 3214, 7, 20, 0, 0, 3214, 3215, 7, 25, 0, 0, 3215, 3216, 7, 11, 0, 0, 3216, 3217, 7, 14, 0, 0, 3217, 3218, 7, 6, 0, 0, 3218, 3219, 7, 17, 0, 0, 3219, 3220, 7, 20, 0, 0, 3220, 3221, 7, 14, 0, 0, 3221, 568, 1, 0, 0, 0, 3222, 3223, 7, 20, 0, 0, 3223, 3224, 7, 25, 0, 0, 3224, 3225, 7, 17, 0, 0, 3225, 3226, 7, 18, 0, 0, 3226, 3227, 7, 20, 0, 0, 3227, 3228, 7, 8, 0, 0, 3228, 570, 1, 0, 0, 0, 3229, 3230, 7, 20, 0, 0, 3230, 3231, 7, 25, 0, 0, 3231, 3232, 7, 17, 0, 0, 3232, 3233, 7, 18, 0, 0, 3233, 3234, 7, 20, 0, 0, 3234, 3235, 7, 8, 0, 0, 3235, 3236, 7, 10, 0, 0, 3236, 572, 1, 0, 0, 0, 3237, 3238, 7, 20, 0, 0, 3238, 3239, 7, 30, 0, 0, 3239, 3240, 7, 8, 0, 0, 3240, 3241, 7, 11, 0, 0, 3241, 3242, 7, 13, 0, 0, 3242, 574, 1, 0, 0, 0, 3243, 3244, 7, 20, 0, 0, 3244, 3245, 7, 30, 0, 0, 3245, 3246, 7, 8, 0, 0, 3246, 3247, 7, 11, 0, 0, 3247, 3248, 7, 14, 0, 0, 3248, 576, 1, 0, 0, 0, 3249, 3250, 7, 25, 0, 0, 3250, 3251, 7, 6, 0, 0, 3251, 3252, 7, 14, 0, 0, 3252, 3253, 7, 10, 0, 0, 3253, 3254, 7, 11, 0, 0, 3254, 3255, 7, 14, 0, 0, 3255, 578, 1, 0, 0, 0, 3256, 3257, 7, 25, 0, 0, 3257, 3258, 7, 6, 0, 0, 3258, 3259, 7, 14, 0, 0, 3259, 3260, 7, 17, 0, 0, 3260, 3261, 7, 18, 0, 0, 3261, 3262, 7, 6, 0, 0, 3262, 3263, 7, 7, 0, 0, 3263, 580, 1, 0, 0, 0, 3264, 3265, 7, 25, 0, 0, 3265, 3266, 7, 6, 0, 0, 3266, 3267, 7, 14, 0, 0, 3267, 3268, 7, 17, 0, 0, 3268, 3269, 7, 18, 0, 0, 3269, 3270, 7, 17, 0, 0, 3270, 3271, 7, 18, 0, 0, 3271, 3272, 7, 20, 0, 0, 3272, 3273, 7, 8, 0, 0, 3273, 582, 1, 0, 0, 0, 3274, 3275, 7, 25, 0, 0, 3275, 3276, 7, 6, 0, 0, 3276, 3277, 7, 10, 0, 0, 3277, 3278, 7, 10, 0, 0, 3278, 3279, 7, 18, 0, 0, 3279, 3280, 7, 8, 0, 0, 3280, 3281, 7, 24, 0, 0, 3281, 584, 1, 0, 0, 0, 3282, 3283, 7, 25, 0, 0, 3283, 3284, 7, 6, 0, 0, 3284, 3285, 7, 10, 0, 0, 3285, 3286, 7, 10, 0, 0, 3286, 3287, 7, 30, 0, 0, 3287, 3288, 7, 20, 0, 0, 3288, 3289, 7, 14, 0, 0, 3289, 3290, 7, 13, 0, 0, 3290, 586, 1, 0, 0, 0, 3291, 3292, 7, 25, 0, 0, 3292, 3293, 7, 7, 0, 0, 3293, 3294, 7, 6, 0, 0, 3294, 3295, 7, 8, 0, 0, 3295, 3296, 7, 10, 0, 0, 3296, 588, 1, 0, 0, 0, 3297, 3298, 7, 25, 0, 0, 3298, 3299, 7, 14, 0, 0, 3299, 3300, 7, 11, 0, 0, 3300, 3301, 7, 15, 0, 0, 3301, 3302, 7, 11, 0, 0, 3302, 3303, 7, 13, 0, 0, 3303, 3304, 7, 18, 0, 0, 3304, 3305, 7, 8, 0, 0, 3305, 3306, 7, 24, 0, 0, 3306, 590, 1, 0, 0, 0, 3307, 3308, 7, 25, 0, 0, 3308, 3309, 7, 14, 0, 0, 3309, 3310, 7, 11, 0, 0, 3310, 3311, 7, 25, 0, 0, 3311, 3312, 7, 6, 0, 0, 3312, 3313, 7, 14, 0, 0, 3313, 3314, 7, 11, 0, 0, 3314, 592, 1, 0, 0, 0, 3315, 3316, 7, 25, 0, 0, 3316, 3317, 7, 14, 0, 0, 3317, 3318, 7, 11, 0, 0, 3318, 3319, 7, 25, 0, 0, 3319, 3320, 7, 6, 0, 0, 3320, 3321, 7, 14, 0, 0, 3321, 3322, 7, 11, 0, 0, 3322, 3323, 7, 13, 0, 0, 3323, 594, 1, 0, 0, 0, 3324, 3325, 7, 25, 0, 0, 3325, 3326, 7, 14, 0, 0, 3326, 3327, 7, 11, 0, 0, 3327, 3328, 7, 10, 0, 0, 3328, 3329, 7, 11, 0, 0, 3329, 3330, 7, 14, 0, 0, 3330, 3331, 7, 28, 0, 0, 3331, 3332, 7, 11, 0, 0, 3332, 596, 1, 0, 0, 0, 3333, 3334, 7, 25, 0, 0, 3334, 3335, 7, 14, 0, 0, 3335, 3336, 7, 18, 0, 0, 3336, 3337, 7, 20, 0, 0, 3337, 3338, 7, 14, 0, 0, 3338, 598, 1, 0, 0, 0, 3339, 3340, 7, 25, 0, 0, 3340, 3341, 7, 14, 0, 0, 3341, 3342, 7, 18, 0, 0, 3342, 3343, 7, 28, 0, 0, 3343, 3344, 7, 18, 0, 0, 3344, 3345, 7, 7, 0, 0, 3345, 3346, 7, 11, 0, 0, 3346, 3347, 7, 24, 0, 0, 3347, 3348, 7, 11, 0, 0, 3348, 3349, 7, 10, 0, 0, 3349, 600, 1, 0, 0, 0, 3350, 3351, 7, 25, 0, 0, 3351, 3352, 7, 14, 0, 0, 3352, 3353, 7, 20, 0, 0, 3353, 3354, 7, 15, 0, 0, 3354, 3355, 7, 11, 0, 0, 3355, 3356, 7, 13, 0, 0, 3356, 3357, 7, 23, 0, 0, 3357, 3358, 7, 14, 0, 0, 3358, 3359, 7, 6, 0, 0, 3359, 3360, 7, 7, 0, 0, 3360, 602, 1, 0, 0, 0, 3361, 3362, 7, 25, 0, 0, 3362, 3363, 7, 14, 0, 0, 3363, 3364, 7, 20, 0, 0, 3364, 3365, 7, 15, 0, 0, 3365, 3366, 7, 11, 0, 0, 3366, 3367, 7, 13, 0, 0, 3367, 3368, 7, 23, 0, 0, 3368, 3369, 7, 14, 0, 0, 3369, 3370, 7, 11, 0, 0, 3370, 604, 1, 0, 0, 0, 3371, 3372, 7, 25, 0, 0, 3372, 3373, 7, 14, 0, 0, 3373, 3374, 7, 20, 0, 0, 3374, 3375, 7, 24, 0, 0, 3375, 3376, 7, 14, 0, 0, 3376, 3377, 7, 6, 0, 0, 3377, 3378, 7, 16, 0, 0, 3378, 606, 1, 0, 0, 0, 3379, 3380, 7, 29, 0, 0, 3380, 3381, 7, 23, 0, 0, 3381, 3382, 7, 20, 0, 0, 3382, 3383, 7, 17, 0, 0, 3383, 3384, 7, 11, 0, 0, 3384, 608, 1, 0, 0, 0, 3385, 3386, 7, 14, 0, 0, 3386, 3387, 7, 6, 0, 0, 3387, 3388, 7, 8, 0, 0, 3388, 3389, 7, 24, 0, 0, 3389, 3390, 7, 11, 0, 0, 3390, 610, 1, 0, 0, 0, 3391, 3392, 7, 14, 0, 0, 3392, 3393, 7, 11, 0, 0, 3393, 3394, 7, 6, 0, 0, 3394, 3395, 7, 13, 0, 0, 3395, 612, 1, 0, 0, 0, 3396, 3397, 7, 14, 0, 0, 3397, 3398, 7, 11, 0, 0, 3398, 3399, 7, 6, 0, 0, 3399, 3400, 7, 10, 0, 0, 3400, 3401, 7, 10, 0, 0, 3401, 3402, 7, 18, 0, 0, 3402, 3403, 7, 24, 0, 0, 3403, 3404, 7, 8, 0, 0, 3404, 614, 1, 0, 0, 0, 3405, 3406, 7, 14, 0, 0, 3406, 3407, 7, 11, 0, 0, 3407, 3408, 7, 15, 0, 0, 3408, 3409, 7, 21, 0, 0, 3409, 3410, 7, 11, 0, 0, 3410, 3411, 7, 15, 0, 0, 3411, 3412, 7, 22, 0, 0, 3412, 616, 1, 0, 0, 0, 3413, 3414, 7, 14, 0, 0, 3414, 3415, 7, 11, 0, 0, 3415, 3416, 7, 15, 0, 0, 3416, 3417, 7, 23, 0, 0, 3417, 3418, 7, 14, 0, 0, 3418, 3419, 7, 10, 0, 0, 3419, 3420, 7, 18, 0, 0, 3420, 3421, 7, 28, 0, 0, 3421, 3422, 7, 11, 0, 0, 3422, 618, 1, 0, 0, 0, 3423, 3424, 7, 14, 0, 0, 3424, 3425, 7, 11, 0, 0, 3425, 3426, 7, 26, 0, 0, 3426, 620, 1, 0, 0, 0, 3427, 3428, 7, 14, 0, 0, 3428, 3429, 7, 11, 0, 0, 3429, 3430, 7, 26, 0, 0, 3430, 3431, 7, 14, 0, 0, 3431, 3432, 7, 11, 0, 0, 3432, 3433, 7, 10, 0, 0, 3433, 3434, 7, 21, 0, 0, 3434, 622, 1, 0, 0, 0, 3435, 3436, 7, 14, 0, 0, 3436, 3437, 7, 11, 0, 0, 3437, 3438, 7, 18, 0, 0, 3438, 3439, 7, 8, 0, 0, 3439, 3440, 7, 13, 0, 0, 3440, 3441, 7, 11, 0, 0, 3441, 3442, 7, 27, 0, 0, 3442, 624, 1, 0, 0, 0, 3443, 3444, 7, 14, 0, 0, 3444, 3445, 7, 11, 0, 0, 3445, 3446, 7, 7, 0, 0, 3446, 3447, 7, 6, 0, 0, 3447, 3448, 7, 17, 0, 0, 3448, 3449, 7, 18, 0, 0, 3449, 3450, 7, 28, 0, 0, 3450, 3451, 7, 11, 0, 0, 3451, 626, 1, 0, 0, 0, 3452, 3453, 7, 14, 0, 0, 3453, 3454, 7, 11, 0, 0, 3454, 3455, 7, 7, 0, 0, 3455, 3456, 7, 11, 0, 0, 3456, 3457, 7, 6, 0, 0, 3457, 3458, 7, 10, 0, 0, 3458, 3459, 7, 11, 0, 0, 3459, 628, 1, 0, 0, 0, 3460, 3461, 7, 14, 0, 0, 3461, 3462, 7, 11, 0, 0, 3462, 3463, 7, 8, 0, 0, 3463, 3464, 7, 6, 0, 0, 3464, 3465, 7, 16, 0, 0, 3465, 3466, 7, 11, 0, 0, 3466, 630, 1, 0, 0, 0, 3467, 3468, 7, 14, 0, 0, 3468, 3469, 7, 11, 0, 0, 3469, 3470, 7, 25, 0, 0, 3470, 3471, 7, 11, 0, 0, 3471, 3472, 7, 6, 0, 0, 3472, 3473, 7, 17, 0, 0, 3473, 3474, 7, 6, 0, 0, 3474, 3475, 7, 19, 0, 0, 3475, 3476, 7, 7, 0, 0, 3476, 3477, 7, 11, 0, 0, 3477, 632, 1, 0, 0, 0, 3478, 3479, 7, 14, 0, 0, 3479, 3480, 7, 11, 0, 0, 3480, 3481, 7, 25, 0, 0, 3481, 3482, 7, 7, 0, 0, 3482, 3483, 7, 6, 0, 0, 3483, 3484, 7, 15, 0, 0, 3484, 3485, 7, 11, 0, 0, 3485, 634, 1, 0, 0, 0, 3486, 3487, 7, 14, 0, 0, 3487, 3488, 7, 11, 0, 0, 3488, 3489, 7, 25, 0, 0, 3489, 3490, 7, 7, 0, 0, 3490, 3491, 7, 18, 0, 0, 3491, 3492, 7, 15, 0, 0, 3492, 3493, 7, 6, 0, 0, 3493, 636, 1, 0, 0, 0, 3494, 3495, 7, 14, 0, 0, 3495, 3496, 7, 11, 0, 0, 3496, 3497, 7, 10, 0, 0, 3497, 3498, 7, 11, 0, 0, 3498, 3499, 7, 17, 0, 0, 3499, 638, 1, 0, 0, 0, 3500, 3501, 7, 14, 0, 0, 3501, 3502, 7, 11, 0, 0, 3502, 3503, 7, 10, 0, 0, 3503, 3504, 7, 17, 0, 0, 3504, 3505, 7, 6, 0, 0, 3505, 3506, 7, 14, 0, 0, 3506, 3507, 7, 17, 0, 0, 3507, 640, 1, 0, 0, 0, 3508, 3509, 7, 14, 0, 0, 3509, 3510, 7, 11, 0, 0, 3510, 3511, 7, 10, 0, 0, 3511, 3512, 7, 17, 0, 0, 3512, 3513, 7, 14, 0, 0, 3513, 3514, 7, 18, 0, 0, 3514, 3515, 7, 15, 0, 0, 3515, 3516, 7, 17, 0, 0, 3516, 642, 1, 0, 0, 0, 3517, 3518, 7, 14, 0, 0, 3518, 3519, 7, 11, 0, 0, 3519, 3520, 7, 17, 0, 0, 3520, 3521, 7, 23, 0, 0, 3521, 3522, 7, 14, 0, 0, 3522, 3523, 7, 8, 0, 0, 3523, 3524, 7, 10, 0, 0, 3524, 644, 1, 0, 0, 0, 3525, 3526, 7, 14, 0, 0, 3526, 3527, 7, 11, 0, 0, 3527, 3528, 7, 28, 0, 0, 3528, 3529, 7, 20, 0, 0, 3529, 3530, 7, 22, 0, 0, 3530, 3531, 7, 11, 0, 0, 3531, 646, 1, 0, 0, 0, 3532, 3533, 7, 14, 0, 0, 3533, 3534, 7, 20, 0, 0, 3534, 3535, 7, 7, 0, 0, 3535, 3536, 7, 11, 0, 0, 3536, 648, 1, 0, 0, 0, 3537, 3538, 7, 14, 0, 0, 3538, 3539, 7, 20, 0, 0, 3539, 3540, 7, 7, 0, 0, 3540, 3541, 7, 7, 0, 0, 3541, 3542, 7, 19, 0, 0, 3542, 3543, 7, 6, 0, 0, 3543, 3544, 7, 15, 0, 0, 3544, 3545, 7, 22, 0, 0, 3545, 650, 1, 0, 0, 0, 3546, 3547, 7, 14, 0, 0, 3547, 3548, 7, 20, 0, 0, 3548, 3549, 7, 30, 0, 0, 3549, 3550, 7, 10, 0, 0, 3550, 652, 1, 0, 0, 0, 3551, 3552, 7, 14, 0, 0, 3552, 3553, 7, 23, 0, 0, 3553, 3554, 7, 7, 0, 0, 3554, 3555, 7, 11, 0, 0, 3555, 654, 1, 0, 0, 0, 3556, 3557, 7, 10, 0, 0, 3557, 3558, 7, 6, 0, 0, 3558, 3559, 7, 28, 0, 0, 3559, 3560, 7, 11, 0, 0, 3560, 3561, 7, 25, 0, 0, 3561, 3562, 7, 20, 0, 0, 3562, 3563, 7, 18, 0, 0, 3563, 3564, 7, 8, 0, 0, 3564, 3565, 7, 17, 0, 0, 3565, 656, 1, 0, 0, 0, 3566, 3567, 7, 10, 0, 0, 3567, 3568, 7, 15, 0, 0, 3568, 3569, 7, 21, 0, 0, 3569, 3570, 7, 11, 0, 0, 3570, 3571, 7, 16, 0, 0, 3571, 3572, 7, 6, 0, 0, 3572, 658, 1, 0, 0, 0, 3573, 3574, 7, 10, 0, 0, 3574, 3575, 7, 15, 0, 0, 3575, 3576, 7, 14, 0, 0, 3576, 3577, 7, 20, 0, 0, 3577, 3578, 7, 7, 0, 0, 3578, 3579, 7, 7, 0, 0, 3579, 660, 1, 0, 0, 0, 3580, 3581, 7, 10, 0, 0, 3581, 3582, 7, 11, 0, 0, 3582, 3583, 7, 6, 0, 0, 3583, 3584, 7, 14, 0, 0, 3584, 3585, 7, 15, 0, 0, 3585, 3586, 7, 21, 0, 0, 3586, 662, 1, 0, 0, 0, 3587, 3588, 7, 10, 0, 0, 3588, 3589, 7, 11, 0, 0, 3589, 3590, 7, 15, 0, 0, 3590, 3591, 7, 20, 0, 0, 3591, 3592, 7, 8, 0, 0, 3592, 3593, 7, 13, 0, 0, 3593, 664, 1, 0, 0, 0, 3594, 3595, 7, 10, 0, 0, 3595, 3596, 7, 11, 0, 0, 3596, 3597, 7, 15, 0, 0, 3597, 3598, 7, 23, 0, 0, 3598, 3599, 7, 14, 0, 0, 3599, 3600, 7, 18, 0, 0, 3600, 3601, 7, 17, 0, 0, 3601, 3602, 7, 9, 0, 0, 3602, 666, 1, 0, 0, 0, 3603, 3604, 7, 10, 0, 0, 3604, 3605, 7, 11, 0, 0, 3605, 3606, 7, 29, 0, 0, 3606, 3607, 7, 23, 0, 0, 3607, 3608, 7, 11, 0, 0, 3608, 3609, 7, 8, 0, 0, 3609, 3610, 7, 15, 0, 0, 3610, 3611, 7, 11, 0, 0, 3611, 668, 1, 0, 0, 0, 3612, 3613, 7, 10, 0, 0, 3613, 3614, 7, 11, 0, 0, 3614, 3615, 7, 29, 0, 0, 3615, 3616, 7, 23, 0, 0, 3616, 3617, 7, 11, 0, 0, 3617, 3618, 7, 8, 0, 0, 3618, 3619, 7, 15, 0, 0, 3619, 3620, 7, 11, 0, 0, 3620, 3621, 7, 10, 0, 0, 3621, 670, 1, 0, 0, 0, 3622, 3623, 7, 10, 0, 0, 3623, 3624, 7, 11, 0, 0, 3624, 3625, 7, 14, 0, 0, 3625, 3626, 7, 18, 0, 0, 3626, 3627, 7, 6, 0, 0, 3627, 3628, 7, 7, 0, 0, 3628, 3629, 7, 18, 0, 0, 3629, 3630, 7, 12, 0, 0, 3630, 3631, 7, 6, 0, 0, 3631, 3632, 7, 19, 0, 0, 3632, 3633, 7, 7, 0, 0, 3633, 3634, 7, 11, 0, 0, 3634, 672, 1, 0, 0, 0, 3635, 3636, 7, 10, 0, 0, 3636, 3637, 7, 11, 0, 0, 3637, 3638, 7, 14, 0, 0, 3638, 3639, 7, 28, 0, 0, 3639, 3640, 7, 11, 0, 0, 3640, 3641, 7, 14, 0, 0, 3641, 674, 1, 0, 0, 0, 3642, 3643, 7, 10, 0, 0, 3643, 3644, 7, 11, 0, 0, 3644, 3645, 7, 10, 0, 0, 3645, 3646, 7, 10, 0, 0, 3646, 3647, 7, 18, 0, 0, 3647, 3648, 7, 20, 0, 0, 3648, 3649, 7, 8, 0, 0, 3649, 676, 1, 0, 0, 0, 3650, 3651, 7, 10, 0, 0, 3651, 3652, 7, 11, 0, 0, 3652, 3653, 7, 17, 0, 0, 3653, 678, 1, 0, 0, 0, 3654, 3655, 7, 10, 0, 0, 3655, 3656, 7, 21, 0, 0, 3656, 3657, 7, 6, 0, 0, 3657, 3658, 7, 14, 0, 0, 3658, 3659, 7, 11, 0, 0, 3659, 680, 1, 0, 0, 0, 3660, 3661, 7, 10, 0, 0, 3661, 3662, 7, 21, 0, 0, 3662, 3663, 7, 20, 0, 0, 3663, 3664, 7, 30, 0, 0, 3664, 682, 1, 0, 0, 0, 3665, 3666, 7, 10, 0, 0, 3666, 3667, 7, 18, 0, 0, 3667, 3668, 7, 16, 0, 0, 3668, 3669, 7, 25, 0, 0, 3669, 3670, 7, 7, 0, 0, 3670, 3671, 7, 11, 0, 0, 3671, 684, 1, 0, 0, 0, 3672, 3673, 7, 10, 0, 0, 3673, 3674, 7, 8, 0, 0, 3674, 3675, 7, 6, 0, 0, 3675, 3676, 7, 25, 0, 0, 3676, 3677, 7, 10, 0, 0, 3677, 3678, 7, 21, 0, 0, 3678, 3679, 7, 20, 0, 0, 3679, 3680, 7, 17, 0, 0, 3680, 686, 1, 0, 0, 0, 3681, 3682, 7, 10, 0, 0, 3682, 3683, 7, 17, 0, 0, 3683, 3684, 7, 6, 0, 0, 3684, 3685, 7, 19, 0, 0, 3685, 3686, 7, 7, 0, 0, 3686, 3687, 7, 11, 0, 0, 3687, 688, 1, 0, 0, 0, 3688, 3689, 7, 10, 0, 0, 3689, 3690, 7, 17, 0, 0, 3690, 3691, 7, 6, 0, 0, 3691, 3692, 7, 8, 0, 0, 3692, 3693, 7, 13, 0, 0, 3693, 3694, 7, 6, 0, 0, 3694, 3695, 7, 7, 0, 0, 3695, 3696, 7, 20, 0, 0, 3696, 3697, 7, 8, 0, 0, 3697, 3698, 7, 11, 0, 0, 3698, 690, 1, 0, 0, 0, 3699, 3700, 7, 10, 0, 0, 3700, 3701, 7, 17, 0, 0, 3701, 3702, 7, 6, 0, 0, 3702, 3703, 7, 14, 0, 0, 3703, 3704, 7, 17, 0, 0, 3704, 692, 1, 0, 0, 0, 3705, 3706, 7, 10, 0, 0, 3706, 3707, 7, 17, 0, 0, 3707, 3708, 7, 6, 0, 0, 3708, 3709, 7, 17, 0, 0, 3709, 3710, 7, 11, 0, 0, 3710, 3711, 7, 16, 0, 0, 3711, 3712, 7, 11, 0, 0, 3712, 3713, 7, 8, 0, 0, 3713, 3714, 7, 17, 0, 0, 3714, 694, 1, 0, 0, 0, 3715, 3716, 7, 10, 0, 0, 3716, 3717, 7, 17, 0, 0, 3717, 3718, 7, 6, 0, 0, 3718, 3719, 7, 17, 0, 0, 3719, 3720, 7, 18, 0, 0, 3720, 3721, 7, 10, 0, 0, 3721, 3722, 7, 17, 0, 0, 3722, 3723, 7, 18, 0, 0, 3723, 3724, 7, 15, 0, 0, 3724, 3725, 7, 10, 0, 0, 3725, 696, 1, 0, 0, 0, 3726, 3727, 7, 10, 0, 0, 3727, 3728, 7, 17, 0, 0, 3728, 3729, 7, 13, 0, 0, 3729, 3730, 7, 18, 0, 0, 3730, 3731, 7, 8, 0, 0, 3731, 698, 1, 0, 0, 0, 3732, 3733, 7, 10, 0, 0, 3733, 3734, 7, 17, 0, 0, 3734, 3735, 7, 13, 0, 0, 3735, 3736, 7, 20, 0, 0, 3736, 3737, 7, 23, 0, 0, 3737, 3738, 7, 17, 0, 0, 3738, 700, 1, 0, 0, 0, 3739, 3740, 7, 10, 0, 0, 3740, 3741, 7, 17, 0, 0, 3741, 3742, 7, 20, 0, 0, 3742, 3743, 7, 14, 0, 0, 3743, 3744, 7, 6, 0, 0, 3744, 3745, 7, 24, 0, 0, 3745, 3746, 7, 11, 0, 0, 3746, 702, 1, 0, 0, 0, 3747, 3748, 7, 10, 0, 0, 3748, 3749, 7, 17, 0, 0, 3749, 3750, 7, 14, 0, 0, 3750, 3751, 7, 18, 0, 0, 3751, 3752, 7, 15, 0, 0, 3752, 3753, 7, 17, 0, 0, 3753, 704, 1, 0, 0, 0, 3754, 3755, 7, 10, 0, 0, 3755, 3756, 7, 17, 0, 0, 3756, 3757, 7, 14, 0, 0, 3757, 3758, 7, 18, 0, 0, 3758, 3759, 7, 25, 0, 0, 3759, 706, 1, 0, 0, 0, 3760, 3761, 7, 10, 0, 0, 3761, 3762, 7, 9, 0, 0, 3762, 3763, 7, 10, 0, 0, 3763, 3764, 7, 18, 0, 0, 3764, 3765, 7, 13, 0, 0, 3765, 708, 1, 0, 0, 0, 3766, 3767, 7, 10, 0, 0, 3767, 3768, 7, 9, 0, 0, 3768, 3769, 7, 10, 0, 0, 3769, 3770, 7, 17, 0, 0, 3770, 3771, 7, 11, 0, 0, 3771, 3772, 7, 16, 0, 0, 3772, 710, 1, 0, 0, 0, 3773, 3774, 7, 17, 0, 0, 3774, 3775, 7, 6, 0, 0, 3775, 3776, 7, 19, 0, 0, 3776, 3777, 7, 7, 0, 0, 3777, 3778, 7, 11, 0, 0, 3778, 3779, 7, 10, 0, 0, 3779, 712, 1, 0, 0, 0, 3780, 3781, 7, 17, 0, 0, 3781, 3782, 7, 6, 0, 0, 3782, 3783, 7, 19, 0, 0, 3783, 3784, 7, 7, 0, 0, 3784, 3785, 7, 11, 0, 0, 3785, 3786, 7, 10, 0, 0, 3786, 3787, 7, 25, 0, 0, 3787, 3788, 7, 6, 0, 0, 3788, 3789, 7, 15, 0, 0, 3789, 3790, 7, 11, 0, 0, 3790, 714, 1, 0, 0, 0, 3791, 3792, 7, 17, 0, 0, 3792, 3793, 7, 11, 0, 0, 3793, 3794, 7, 16, 0, 0, 3794, 3795, 7, 25, 0, 0, 3795, 716, 1, 0, 0, 0, 3796, 3797, 7, 17, 0, 0, 3797, 3798, 7, 11, 0, 0, 3798, 3799, 7, 16, 0, 0, 3799, 3800, 7, 25, 0, 0, 3800, 3801, 7, 7, 0, 0, 3801, 3802, 7, 6, 0, 0, 3802, 3803, 7, 17, 0, 0, 3803, 3804, 7, 11, 0, 0, 3804, 718, 1, 0, 0, 0, 3805, 3806, 7, 17, 0, 0, 3806, 3807, 7, 11, 0, 0, 3807, 3808, 7, 16, 0, 0, 3808, 3809, 7, 25, 0, 0, 3809, 3810, 7, 20, 0, 0, 3810, 3811, 7, 14, 0, 0, 3811, 3812, 7, 6, 0, 0, 3812, 3813, 7, 14, 0, 0, 3813, 3814, 7, 9, 0, 0, 3814, 720, 1, 0, 0, 0, 3815, 3816, 7, 17, 0, 0, 3816, 3817, 7, 11, 0, 0, 3817, 3818, 7, 27, 0, 0, 3818, 3819, 7, 17, 0, 0, 3819, 722, 1, 0, 0, 0, 3820, 3821, 7, 17, 0, 0, 3821, 3822, 7, 14, 0, 0, 3822, 3823, 7, 6, 0, 0, 3823, 3824, 7, 8, 0, 0, 3824, 3825, 7, 10, 0, 0, 3825, 3826, 7, 6, 0, 0, 3826, 3827, 7, 15, 0, 0, 3827, 3828, 7, 17, 0, 0, 3828, 3829, 7, 18, 0, 0, 3829, 3830, 7, 20, 0, 0, 3830, 3831, 7, 8, 0, 0, 3831, 724, 1, 0, 0, 0, 3832, 3833, 7, 17, 0, 0, 3833, 3834, 7, 14, 0, 0, 3834, 3835, 7, 18, 0, 0, 3835, 3836, 7, 24, 0, 0, 3836, 3837, 7, 24, 0, 0, 3837, 3838, 7, 11, 0, 0, 3838, 3839, 7, 14, 0, 0, 3839, 726, 1, 0, 0, 0, 3840, 3841, 7, 17, 0, 0, 3841, 3842, 7, 14, 0, 0, 3842, 3843, 7, 23, 0, 0, 3843, 3844, 7, 8, 0, 0, 3844, 3845, 7, 15, 0, 0, 3845, 3846, 7, 6, 0, 0, 3846, 3847, 7, 17, 0, 0, 3847, 3848, 7, 11, 0, 0, 3848, 728, 1, 0, 0, 0, 3849, 3850, 7, 17, 0, 0, 3850, 3851, 7, 14, 0, 0, 3851, 3852, 7, 23, 0, 0, 3852, 3853, 7, 10, 0, 0, 3853, 3854, 7, 17, 0, 0, 3854, 3855, 7, 11, 0, 0, 3855, 3856, 7, 13, 0, 0, 3856, 730, 1, 0, 0, 0, 3857, 3858, 7, 17, 0, 0, 3858, 3859, 7, 9, 0, 0, 3859, 3860, 7, 25, 0, 0, 3860, 3861, 7, 11, 0, 0, 3861, 732, 1, 0, 0, 0, 3862, 3863, 7, 17, 0, 0, 3863, 3864, 7, 9, 0, 0, 3864, 3865, 7, 25, 0, 0, 3865, 3866, 7, 11, 0, 0, 3866, 3867, 7, 10, 0, 0, 3867, 734, 1, 0, 0, 0, 3868, 3869, 7, 23, 0, 0, 3869, 3870, 7, 8, 0, 0, 3870, 3871, 7, 19, 0, 0, 3871, 3872, 7, 20, 0, 0, 3872, 3873, 7, 23, 0, 0, 3873, 3874, 7, 8, 0, 0, 3874, 3875, 7, 13, 0, 0, 3875, 3876, 7, 11, 0, 0, 3876, 3877, 7, 13, 0, 0, 3877, 736, 1, 0, 0, 0, 3878, 3879, 7, 23, 0, 0, 3879, 3880, 7, 8, 0, 0, 3880, 3881, 7, 15, 0, 0, 3881, 3882, 7, 20, 0, 0, 3882, 3883, 7, 16, 0, 0, 3883, 3884, 7, 16, 0, 0, 3884, 3885, 7, 18, 0, 0, 3885, 3886, 7, 17, 0, 0, 3886, 3887, 7, 17, 0, 0, 3887, 3888, 7, 11, 0, 0, 3888, 3889, 7, 13, 0, 0, 3889, 738, 1, 0, 0, 0, 3890, 3891, 7, 23, 0, 0, 3891, 3892, 7, 8, 0, 0, 3892, 3893, 7, 11, 0, 0, 3893, 3894, 7, 8, 0, 0, 3894, 3895, 7, 15, 0, 0, 3895, 3896, 7, 14, 0, 0, 3896, 3897, 7, 9, 0, 0, 3897, 3898, 7, 25, 0, 0, 3898, 3899, 7, 17, 0, 0, 3899, 3900, 7, 11, 0, 0, 3900, 3901, 7, 13, 0, 0, 3901, 740, 1, 0, 0, 0, 3902, 3903, 7, 23, 0, 0, 3903, 3904, 7, 8, 0, 0, 3904, 3905, 7, 22, 0, 0, 3905, 3906, 7, 8, 0, 0, 3906, 3907, 7, 20, 0, 0, 3907, 3908, 7, 30, 0, 0, 3908, 3909, 7, 8, 0, 0, 3909, 742, 1, 0, 0, 0, 3910, 3911, 7, 23, 0, 0, 3911, 3912, 7, 8, 0, 0, 3912, 3913, 7, 7, 0, 0, 3913, 3914, 7, 18, 0, 0, 3914, 3915, 7, 10, 0, 0, 3915, 3916, 7, 17, 0, 0, 3916, 3917, 7, 11, 0, 0, 3917, 3918, 7, 8, 0, 0, 3918, 744, 1, 0, 0, 0, 3919, 3920, 7, 23, 0, 0, 3920, 3921, 7, 8, 0, 0, 3921, 3922, 7, 7, 0, 0, 3922, 3923, 7, 20, 0, 0, 3923, 3924, 7, 24, 0, 0, 3924, 3925, 7, 24, 0, 0, 3925, 3926, 7, 11, 0, 0, 3926, 3927, 7, 13, 0, 0, 3927, 746, 1, 0, 0, 0, 3928, 3929, 7, 23, 0, 0, 3929, 3930, 7, 8, 0, 0, 3930, 3931, 7, 17, 0, 0, 3931, 3932, 7, 18, 0, 0, 3932, 3933, 7, 7, 0, 0, 3933, 748, 1, 0, 0, 0, 3934, 3935, 7, 23, 0, 0, 3935, 3936, 7, 25, 0, 0, 3936, 3937, 7, 13, 0, 0, 3937, 3938, 7, 6, 0, 0, 3938, 3939, 7, 17, 0, 0, 3939, 3940, 7, 11, 0, 0, 3940, 750, 1, 0, 0, 0, 3941, 3942, 7, 28, 0, 0, 3942, 3943, 7, 6, 0, 0, 3943, 3944, 7, 15, 0, 0, 3944, 3945, 7, 23, 0, 0, 3945, 3946, 7, 23, 0, 0, 3946, 3947, 7, 16, 0, 0, 3947, 752, 1, 0, 0, 0, 3948, 3949, 7, 28, 0, 0, 3949, 3950, 7, 6, 0, 0, 3950, 3951, 7, 7, 0, 0, 3951, 3952, 7, 18, 0, 0, 3952, 3953, 7, 13, 0, 0, 3953, 754, 1, 0, 0, 0, 3954, 3955, 7, 28, 0, 0, 3955, 3956, 7, 6, 0, 0, 3956, 3957, 7, 7, 0, 0, 3957, 3958, 7, 18, 0, 0, 3958, 3959, 7, 13, 0, 0, 3959, 3960, 7, 6, 0, 0, 3960, 3961, 7, 17, 0, 0, 3961, 3962, 7, 11, 0, 0, 3962, 756, 1, 0, 0, 0, 3963, 3964, 7, 28, 0, 0, 3964, 3965, 7, 6, 0, 0, 3965, 3966, 7, 7, 0, 0, 3966, 3967, 7, 18, 0, 0, 3967, 3968, 7, 13, 0, 0, 3968, 3969, 7, 6, 0, 0, 3969, 3970, 7, 17, 0, 0, 3970, 3971, 7, 20, 0, 0, 3971, 3972, 7, 14, 0, 0, 3972, 758, 1, 0, 0, 0, 3973, 3974, 7, 28, 0, 0, 3974, 3975, 7, 6, 0, 0, 3975, 3976, 7, 14, 0, 0, 3976, 3977, 7, 9, 0, 0, 3977, 3978, 7, 18, 0, 0, 3978, 3979, 7, 8, 0, 0, 3979, 3980, 7, 24, 0, 0, 3980, 760, 1, 0, 0, 0, 3981, 3982, 7, 28, 0, 0, 3982, 3983, 7, 11, 0, 0, 3983, 3984, 7, 14, 0, 0, 3984, 3985, 7, 10, 0, 0, 3985, 3986, 7, 18, 0, 0, 3986, 3987, 7, 20, 0, 0, 3987, 3988, 7, 8, 0, 0, 3988, 762, 1, 0, 0, 0, 3989, 3990, 7, 28, 0, 0, 3990, 3991, 7, 18, 0, 0, 3991, 3992, 7, 11, 0, 0, 3992, 3993, 7, 30, 0, 0, 3993, 764, 1, 0, 0, 0, 3994, 3995, 7, 28, 0, 0, 3995, 3996, 7, 20, 0, 0, 3996, 3997, 7, 7, 0, 0, 3997, 3998, 7, 6, 0, 0, 3998, 3999, 7, 17, 0, 0, 3999, 4000, 7, 18, 0, 0, 4000, 4001, 7, 7, 0, 0, 4001, 4002, 7, 11, 0, 0, 4002, 766, 1, 0, 0, 0, 4003, 4004, 7, 30, 0, 0, 4004, 4005, 7, 21, 0, 0, 4005, 4006, 7, 18, 0, 0, 4006, 4007, 7, 17, 0, 0, 4007, 4008, 7, 11, 0, 0, 4008, 4009, 7, 10, 0, 0, 4009, 4010, 7, 25, 0, 0, 4010, 4011, 7, 6, 0, 0, 4011, 4012, 7, 15, 0, 0, 4012, 4013, 7, 11, 0, 0, 4013, 768, 1, 0, 0, 0, 4014, 4015, 7, 30, 0, 0, 4015, 4016, 7, 18, 0, 0, 4016, 4017, 7, 17, 0, 0, 4017, 4018, 7, 21, 0, 0, 4018, 4019, 7, 20, 0, 0, 4019, 4020, 7, 23, 0, 0, 4020, 4021, 7, 17, 0, 0, 4021, 770, 1, 0, 0, 0, 4022, 4023, 7, 30, 0, 0, 4023, 4024, 7, 20, 0, 0, 4024, 4025, 7, 14, 0, 0, 4025, 4026, 7, 22, 0, 0, 4026, 772, 1, 0, 0, 0, 4027, 4028, 7, 30, 0, 0, 4028, 4029, 7, 14, 0, 0, 4029, 4030, 7, 6, 0, 0, 4030, 4031, 7, 25, 0, 0, 4031, 4032, 7, 25, 0, 0, 4032, 4033, 7, 11, 0, 0, 4033, 4034, 7, 14, 0, 0, 4034, 774, 1, 0, 0, 0, 4035, 4036, 7, 30, 0, 0, 4036, 4037, 7, 14, 0, 0, 4037, 4038, 7, 18, 0, 0, 4038, 4039, 7, 17, 0, 0, 4039, 4040, 7, 11, 0, 0, 4040, 776, 1, 0, 0, 0, 4041, 4042, 7, 27, 0, 0, 4042, 4043, 7, 16, 0, 0, 4043, 4044, 7, 7, 0, 0, 4044, 778, 1, 0, 0, 0, 4045, 4046, 7, 9, 0, 0, 4046, 4047, 7, 11, 0, 0, 4047, 4048, 7, 6, 0, 0, 4048, 4049, 7, 14, 0, 0, 4049, 780, 1, 0, 0, 0, 4050, 4051, 7, 9, 0, 0, 4051, 4052, 7, 11, 0, 0, 4052, 4053, 7, 10, 0, 0, 4053, 782, 1, 0, 0, 0, 4054, 4055, 7, 12, 0, 0, 4055, 4056, 7, 20, 0, 0, 4056, 4057, 7, 8, 0, 0, 4057, 4058, 7, 11, 0, 0, 4058, 784, 1, 0, 0, 0, 4059, 4060, 7, 19, 0, 0, 4060, 4061, 7, 11, 0, 0, 4061, 4062, 7, 17, 0, 0, 4062, 4063, 7, 30, 0, 0, 4063, 4064, 7, 11, 0, 0, 4064, 4065, 7, 11, 0, 0, 4065, 4066, 7, 8, 0, 0, 4066, 786, 1, 0, 0, 0, 4067, 4068, 7, 19, 0, 0, 4068, 4069, 7, 18, 0, 0, 4069, 4070, 7, 24, 0, 0, 4070, 4071, 7, 18, 0, 0, 4071, 4072, 7, 8, 0, 0, 4072, 4073, 7, 17, 0, 0, 4073, 788, 1, 0, 0, 0, 4074, 4075, 7, 19, 0, 0, 4075, 4076, 7, 18, 0, 0, 4076, 4077, 7, 17, 0, 0, 4077, 790, 1, 0, 0, 0, 4078, 4079, 7, 19, 0, 0, 4079, 4080, 7, 20, 0, 0, 4080, 4081, 7, 20, 0, 0, 4081, 4082, 7, 7, 0, 0, 4082, 4083, 7, 11, 0, 0, 4083, 4084, 7, 6, 0, 0, 4084, 4085, 7, 8, 0, 0, 4085, 792, 1, 0, 0, 0, 4086, 4087, 7, 15, 0, 0, 4087, 4088, 7, 21, 0, 0, 4088, 4089, 7, 6, 0, 0, 4089, 4090, 7, 14, 0, 0, 4090, 794, 1, 0, 0, 0, 4091, 4092, 7, 15, 0, 0, 4092, 4093, 7, 21, 0, 0, 4093, 4094, 7, 6, 0, 0, 4094, 4095, 7, 14, 0, 0, 4095, 4096, 7, 6, 0, 0, 4096, 4097, 7, 15, 0, 0, 4097, 4098, 7, 17, 0, 0, 4098, 4099, 7, 11, 0, 0, 4099, 4100, 7, 14, 0, 0, 4100, 796, 1, 0, 0, 0, 4101, 4102, 7, 15, 0, 0, 4102, 4103, 7, 20, 0, 0, 4103, 4104, 7, 6, 0, 0, 4104, 4105, 7, 7, 0, 0, 4105, 4106, 7, 11, 0, 0, 4106, 4107, 7, 10, 0, 0, 4107, 4108, 7, 15, 0, 0, 4108, 4109, 7, 11, 0, 0, 4109, 798, 1, 0, 0, 0, 4110, 4111, 7, 13, 0, 0, 4111, 4112, 7, 11, 0, 0, 4112, 4113, 7, 15, 0, 0, 4113, 800, 1, 0, 0, 0, 4114, 4115, 7, 13, 0, 0, 4115, 4116, 7, 11, 0, 0, 4116, 4117, 7, 15, 0, 0, 4117, 4118, 7, 18, 0, 0, 4118, 4119, 7, 16, 0, 0, 4119, 4120, 7, 6, 0, 0, 4120, 4121, 7, 7, 0, 0, 4121, 802, 1, 0, 0, 0, 4122, 4123, 7, 11, 0, 0, 4123, 4124, 7, 27, 0, 0, 4124, 4125, 7, 18, 0, 0, 4125, 4126, 7, 10, 0, 0, 4126, 4127, 7, 17, 0, 0, 4127, 4128, 7, 10, 0, 0, 4128, 804, 1, 0, 0, 0, 4129, 4130, 7, 11, 0, 0, 4130, 4131, 7, 27, 0, 0, 4131, 4132, 7, 17, 0, 0, 4132, 4133, 7, 14, 0, 0, 4133, 4134, 7, 6, 0, 0, 4134, 4135, 7, 15, 0, 0, 4135, 4136, 7, 17, 0, 0, 4136, 806, 1, 0, 0, 0, 4137, 4138, 7, 26, 0, 0, 4138, 4139, 7, 7, 0, 0, 4139, 4140, 7, 20, 0, 0, 4140, 4141, 7, 6, 0, 0, 4141, 4142, 7, 17, 0, 0, 4142, 808, 1, 0, 0, 0, 4143, 4144, 7, 24, 0, 0, 4144, 4145, 7, 14, 0, 0, 4145, 4146, 7, 11, 0, 0, 4146, 4147, 7, 6, 0, 0, 4147, 4148, 7, 17, 0, 0, 4148, 4149, 7, 11, 0, 0, 4149, 4150, 7, 10, 0, 0, 4150, 4151, 7, 17, 0, 0, 4151, 810, 1, 0, 0, 0, 4152, 4153, 7, 18, 0, 0, 4153, 4154, 7, 8, 0, 0, 4154, 4155, 7, 20, 0, 0, 4155, 4156, 7, 23, 0, 0, 4156, 4157, 7, 17, 0, 0, 4157, 812, 1, 0, 0, 0, 4158, 4159, 7, 18, 0, 0, 4159, 4160, 7, 8, 0, 0, 4160, 4161, 7, 17, 0, 0, 4161, 814, 1, 0, 0, 0, 4162, 4163, 7, 18, 0, 0, 4163, 4164, 7, 8, 0, 0, 4164, 4165, 7, 17, 0, 0, 4165, 4166, 7, 11, 0, 0, 4166, 4167, 7, 24, 0, 0, 4167, 4168, 7, 11, 0, 0, 4168, 4169, 7, 14, 0, 0, 4169, 816, 1, 0, 0, 0, 4170, 4171, 7, 18, 0, 0, 4171, 4172, 7, 8, 0, 0, 4172, 4173, 7, 17, 0, 0, 4173, 4174, 7, 11, 0, 0, 4174, 4175, 7, 14, 0, 0, 4175, 4176, 7, 28, 0, 0, 4176, 4177, 7, 6, 0, 0, 4177, 4178, 7, 7, 0, 0, 4178, 818, 1, 0, 0, 0, 4179, 4180, 7, 7, 0, 0, 4180, 4181, 7, 11, 0, 0, 4181, 4182, 7, 6, 0, 0, 4182, 4183, 7, 10, 0, 0, 4183, 4184, 7, 17, 0, 0, 4184, 820, 1, 0, 0, 0, 4185, 4186, 7, 8, 0, 0, 4186, 4187, 7, 6, 0, 0, 4187, 4188, 7, 17, 0, 0, 4188, 4189, 7, 18, 0, 0, 4189, 4190, 7, 20, 0, 0, 4190, 4191, 7, 8, 0, 0, 4191, 4192, 7, 6, 0, 0, 4192, 4193, 7, 7, 0, 0, 4193, 822, 1, 0, 0, 0, 4194, 4195, 7, 8, 0, 0, 4195, 4196, 7, 15, 0, 0, 4196, 4197, 7, 21, 0, 0, 4197, 4198, 7, 6, 0, 0, 4198, 4199, 7, 14, 0, 0, 4199, 824, 1, 0, 0, 0, 4200, 4201, 7, 8, 0, 0, 4201, 4202, 7, 20, 0, 0, 4202, 4203, 7, 8, 0, 0, 4203, 4204, 7, 11, 0, 0, 4204, 826, 1, 0, 0, 0, 4205, 4206, 7, 8, 0, 0, 4206, 4207, 7, 23, 0, 0, 4207, 4208, 7, 7, 0, 0, 4208, 4209, 7, 7, 0, 0, 4209, 4210, 7, 18, 0, 0, 4210, 4211, 7, 26, 0, 0, 4211, 828, 1, 0, 0, 0, 4212, 4213, 7, 8, 0, 0, 4213, 4214, 7, 23, 0, 0, 4214, 4215, 7, 16, 0, 0, 4215, 4216, 7, 11, 0, 0, 4216, 4217, 7, 14, 0, 0, 4217, 4218, 7, 18, 0, 0, 4218, 4219, 7, 15, 0, 0, 4219, 830, 1, 0, 0, 0, 4220, 4221, 7, 20, 0, 0, 4221, 4222, 7, 28, 0, 0, 4222, 4223, 7, 11, 0, 0, 4223, 4224, 7, 14, 0, 0, 4224, 4225, 7, 7, 0, 0, 4225, 4226, 7, 6, 0, 0, 4226, 4227, 7, 9, 0, 0, 4227, 832, 1, 0, 0, 0, 4228, 4229, 7, 25, 0, 0, 4229, 4230, 7, 20, 0, 0, 4230, 4231, 7, 10, 0, 0, 4231, 4232, 7, 18, 0, 0, 4232, 4233, 7, 17, 0, 0, 4233, 4234, 7, 18, 0, 0, 4234, 4235, 7, 20, 0, 0, 4235, 4236, 7, 8, 0, 0, 4236, 834, 1, 0, 0, 0, 4237, 4238, 7, 25, 0, 0, 4238, 4239, 7, 14, 0, 0, 4239, 4240, 7, 11, 0, 0, 4240, 4241, 7, 15, 0, 0, 4241, 4242, 7, 18, 0, 0, 4242, 4243, 7, 10, 0, 0, 4243, 4244, 7, 18, 0, 0, 4244, 4245, 7, 20, 0, 0, 4245, 4246, 7, 8, 0, 0, 4246, 836, 1, 0, 0, 0, 4247, 4248, 7, 14, 0, 0, 4248, 4249, 7, 11, 0, 0, 4249, 4250, 7, 6, 0, 0, 4250, 4251, 7, 7, 0, 0, 4251, 838, 1, 0, 0, 0, 4252, 4253, 7, 14, 0, 0, 4253, 4254, 7, 20, 0, 0, 4254, 4255, 7, 30, 0, 0, 4255, 840, 1, 0, 0, 0, 4256, 4257, 7, 10, 0, 0, 4257, 4258, 7, 11, 0, 0, 4258, 4259, 7, 17, 0, 0, 4259, 4260, 7, 20, 0, 0, 4260, 4261, 7, 26, 0, 0, 4261, 842, 1, 0, 0, 0, 4262, 4263, 7, 10, 0, 0, 4263, 4264, 7, 16, 0, 0, 4264, 4265, 7, 6, 0, 0, 4265, 4266, 7, 7, 0, 0, 4266, 4267, 7, 7, 0, 0, 4267, 4268, 7, 18, 0, 0, 4268, 4269, 7, 8, 0, 0, 4269, 4270, 7, 17, 0, 0, 4270, 844, 1, 0, 0, 0, 4271, 4272, 7, 10, 0, 0, 4272, 4273, 7, 23, 0, 0, 4273, 4274, 7, 19, 0, 0, 4274, 4275, 7, 10, 0, 0, 4275, 4276, 7, 17, 0, 0, 4276, 4277, 7, 14, 0, 0, 4277, 4278, 7, 18, 0, 0, 4278, 4279, 7, 8, 0, 0, 4279, 4280, 7, 24, 0, 0, 4280, 846, 1, 0, 0, 0, 4281, 4282, 7, 17, 0, 0, 4282, 4283, 7, 18, 0, 0, 4283, 4284, 7, 16, 0, 0, 4284, 4285, 7, 11, 0, 0, 4285, 848, 1, 0, 0, 0, 4286, 4287, 7, 17, 0, 0, 4287, 4288, 7, 18, 0, 0, 4288, 4289, 7, 16, 0, 0, 4289, 4290, 7, 11, 0, 0, 4290, 4291, 7, 10, 0, 0, 4291, 4292, 7, 17, 0, 0, 4292, 4293, 7, 6, 0, 0, 4293, 4294, 7, 16, 0, 0, 4294, 4295, 7, 25, 0, 0, 4295, 850, 1, 0, 0, 0, 4296, 4297, 7, 17, 0, 0, 4297, 4298, 7, 14, 0, 0, 4298, 4299, 7, 11, 0, 0, 4299, 4300, 7, 6, 0, 0, 4300, 4301, 7, 17, 0, 0, 4301, 852, 1, 0, 0, 0, 4302, 4303, 7, 17, 0, 0, 4303, 4304, 7, 14, 0, 0, 4304, 4305, 7, 18, 0, 0, 4305, 4306, 7, 16, 0, 0, 4306, 854, 1, 0, 0, 0, 4307, 4308, 7, 28, 0, 0, 4308, 4309, 7, 6, 0, 0, 4309, 4310, 7, 7, 0, 0, 4310, 4311, 7, 23, 0, 0, 4311, 4312, 7, 11, 0, 0, 4312, 4313, 7, 10, 0, 0, 4313, 856, 1, 0, 0, 0, 4314, 4315, 7, 28, 0, 0, 4315, 4316, 7, 6, 0, 0, 4316, 4317, 7, 14, 0, 0, 4317, 4318, 7, 15, 0, 0, 4318, 4319, 7, 21, 0, 0, 4319, 4320, 7, 6, 0, 0, 4320, 4321, 7, 14, 0, 0, 4321, 858, 1, 0, 0, 0, 4322, 4323, 7, 27, 0, 0, 4323, 4324, 7, 16, 0, 0, 4324, 4325, 7, 7, 0, 0, 4325, 4326, 7, 6, 0, 0, 4326, 4327, 7, 17, 0, 0, 4327, 4328, 7, 17, 0, 0, 4328, 4329, 7, 14, 0, 0, 4329, 4330, 7, 18, 0, 0, 4330, 4331, 7, 19, 0, 0, 4331, 4332, 7, 23, 0, 0, 4332, 4333, 7, 17, 0, 0, 4333, 4334, 7, 11, 0, 0, 4334, 4335, 7, 10, 0, 0, 4335, 860, 1, 0, 0, 0, 4336, 4337, 7, 27, 0, 0, 4337, 4338, 7, 16, 0, 0, 4338, 4339, 7, 7, 0, 0, 4339, 4340, 7, 15, 0, 0, 4340, 4341, 7, 20, 0, 0, 4341, 4342, 7, 8, 0, 0, 4342, 4343, 7, 15, 0, 0, 4343, 4344, 7, 6, 0, 0, 4344, 4345, 7, 17, 0, 0, 4345, 862, 1, 0, 0, 0, 4346, 4347, 7, 27, 0, 0, 4347, 4348, 7, 16, 0, 0, 4348, 4349, 7, 7, 0, 0, 4349, 4350, 7, 11, 0, 0, 4350, 4351, 7, 7, 0, 0, 4351, 4352, 7, 11, 0, 0, 4352, 4353, 7, 16, 0, 0, 4353, 4354, 7, 11, 0, 0, 4354, 4355, 7, 8, 0, 0, 4355, 4356, 7, 17, 0, 0, 4356, 864, 1, 0, 0, 0, 4357, 4358, 7, 27, 0, 0, 4358, 4359, 7, 16, 0, 0, 4359, 4360, 7, 7, 0, 0, 4360, 4361, 7, 11, 0, 0, 4361, 4362, 7, 27, 0, 0, 4362, 4363, 7, 18, 0, 0, 4363, 4364, 7, 10, 0, 0, 4364, 4365, 7, 17, 0, 0, 4365, 4366, 7, 10, 0, 0, 4366, 866, 1, 0, 0, 0, 4367, 4368, 7, 27, 0, 0, 4368, 4369, 7, 16, 0, 0, 4369, 4370, 7, 7, 0, 0, 4370, 4371, 7, 26, 0, 0, 4371, 4372, 7, 20, 0, 0, 4372, 4373, 7, 14, 0, 0, 4373, 4374, 7, 11, 0, 0, 4374, 4375, 7, 10, 0, 0, 4375, 4376, 7, 17, 0, 0, 4376, 868, 1, 0, 0, 0, 4377, 4378, 7, 27, 0, 0, 4378, 4379, 7, 16, 0, 0, 4379, 4380, 7, 7, 0, 0, 4380, 4381, 7, 25, 0, 0, 4381, 4382, 7, 6, 0, 0, 4382, 4383, 7, 14, 0, 0, 4383, 4384, 7, 10, 0, 0, 4384, 4385, 7, 11, 0, 0, 4385, 870, 1, 0, 0, 0, 4386, 4387, 7, 27, 0, 0, 4387, 4388, 7, 16, 0, 0, 4388, 4389, 7, 7, 0, 0, 4389, 4390, 7, 25, 0, 0, 4390, 4391, 7, 18, 0, 0, 4391, 872, 1, 0, 0, 0, 4392, 4393, 7, 27, 0, 0, 4393, 4394, 7, 16, 0, 0, 4394, 4395, 7, 7, 0, 0, 4395, 4396, 7, 14, 0, 0, 4396, 4397, 7, 20, 0, 0, 4397, 4398, 7, 20, 0, 0, 4398, 4399, 7, 17, 0, 0, 4399, 874, 1, 0, 0, 0, 4400, 4401, 7, 27, 0, 0, 4401, 4402, 7, 16, 0, 0, 4402, 4403, 7, 7, 0, 0, 4403, 4404, 7, 10, 0, 0, 4404, 4405, 7, 11, 0, 0, 4405, 4406, 7, 14, 0, 0, 4406, 4407, 7, 18, 0, 0, 4407, 4408, 7, 6, 0, 0, 4408, 4409, 7, 7, 0, 0, 4409, 4410, 7, 18, 0, 0, 4410, 4411, 7, 12, 0, 0, 4411, 4412, 7, 11, 0, 0, 4412, 876, 1, 0, 0, 0, 4413, 4414, 7, 15, 0, 0, 4414, 4415, 7, 6, 0, 0, 4415, 4416, 7, 7, 0, 0, 4416, 4417, 7, 7, 0, 0, 4417, 878, 1, 0, 0, 0, 4418, 4419, 7, 15, 0, 0, 4419, 4420, 7, 23, 0, 0, 4420, 4421, 7, 14, 0, 0, 4421, 4422, 7, 14, 0, 0, 4422, 4423, 7, 11, 0, 0, 4423, 4424, 7, 8, 0, 0, 4424, 4425, 7, 17, 0, 0, 4425, 880, 1, 0, 0, 0, 4426, 4427, 7, 6, 0, 0, 4427, 4428, 7, 17, 0, 0, 4428, 4429, 7, 17, 0, 0, 4429, 4430, 7, 6, 0, 0, 4430, 4431, 7, 15, 0, 0, 4431, 4432, 7, 21, 0, 0, 4432, 882, 1, 0, 0, 0, 4433, 4434, 7, 13, 0, 0, 4434, 4435, 7, 11, 0, 0, 4435, 4436, 7, 17, 0, 0, 4436, 4437, 7, 6, 0, 0, 4437, 4438, 7, 15, 0, 0, 4438, 4439, 7, 21, 0, 0, 4439, 884, 1, 0, 0, 0, 4440, 4441, 7, 11, 0, 0, 4441, 4442, 7, 27, 0, 0, 4442, 4443, 7, 25, 0, 0, 4443, 4444, 7, 14, 0, 0, 4444, 4445, 7, 11, 0, 0, 4445, 4446, 7, 10, 0, 0, 4446, 4447, 7, 10, 0, 0, 4447, 4448, 7, 18, 0, 0, 4448, 4449, 7, 20, 0, 0, 4449, 4450, 7, 8, 0, 0, 4450, 886, 1, 0, 0, 0, 4451, 4452, 7, 24, 0, 0, 4452, 4453, 7, 11, 0, 0, 4453, 4454, 7, 8, 0, 0, 4454, 4455, 7, 11, 0, 0, 4455, 4456, 7, 14, 0, 0, 4456, 4457, 7, 6, 0, 0, 4457, 4458, 7, 17, 0, 0, 4458, 4459, 7, 11, 0, 0, 4459, 4460, 7, 13, 0, 0, 4460, 888, 1, 0, 0, 0, 4461, 4462, 7, 7, 0, 0, 4462, 4463, 7, 20, 0, 0, 4463, 4464, 7, 24, 0, 0, 4464, 4465, 7, 24, 0, 0, 4465, 4466, 7, 11, 0, 0, 4466, 4467, 7, 13, 0, 0, 4467, 890, 1, 0, 0, 0, 4468, 4469, 7, 10, 0, 0, 4469, 4470, 7, 17, 0, 0, 4470, 4471, 7, 20, 0, 0, 4471, 4472, 7, 14, 0, 0, 4472, 4473, 7, 11, 0, 0, 4473, 4474, 7, 13, 0, 0, 4474, 892, 1, 0, 0, 0, 4475, 4476, 7, 18, 0, 0, 4476, 4477, 7, 8, 0, 0, 4477, 4478, 7, 15, 0, 0, 4478, 4479, 7, 7, 0, 0, 4479, 4480, 7, 23, 0, 0, 4480, 4481, 7, 13, 0, 0, 4481, 4482, 7, 11, 0, 0, 4482, 894, 1, 0, 0, 0, 4483, 4484, 7, 14, 0, 0, 4484, 4485, 7, 20, 0, 0, 4485, 4486, 7, 23, 0, 0, 4486, 4487, 7, 17, 0, 0, 4487, 4488, 7, 18, 0, 0, 4488, 4489, 7, 8, 0, 0, 4489, 4490, 7, 11, 0, 0, 4490, 896, 1, 0, 0, 0, 4491, 4492, 7, 17, 0, 0, 4492, 4493, 7, 14, 0, 0, 4493, 4494, 7, 6, 0, 0, 4494, 4495, 7, 8, 0, 0, 4495, 4496, 7, 10, 0, 0, 4496, 4497, 7, 26, 0, 0, 4497, 4498, 7, 20, 0, 0, 4498, 4499, 7, 14, 0, 0, 4499, 4500, 7, 16, 0, 0, 4500, 898, 1, 0, 0, 0, 4501, 4502, 7, 18, 0, 0, 4502, 4503, 7, 16, 0, 0, 4503, 4504, 7, 25, 0, 0, 4504, 4505, 7, 20, 0, 0, 4505, 4506, 7, 14, 0, 0, 4506, 4507, 7, 17, 0, 0, 4507, 900, 1, 0, 0, 0, 4508, 4509, 7, 25, 0, 0, 4509, 4510, 7, 20, 0, 0, 4510, 4511, 7, 7, 0, 0, 4511, 4512, 7, 18, 0, 0, 4512, 4513, 7, 15, 0, 0, 4513, 4514, 7, 9, 0, 0, 4514, 902, 1, 0, 0, 0, 4515, 4516, 7, 16, 0, 0, 4516, 4517, 7, 11, 0, 0, 4517, 4518, 7, 17, 0, 0, 4518, 4519, 7, 21, 0, 0, 4519, 4520, 7, 20, 0, 0, 4520, 4521, 7, 13, 0, 0, 4521, 904, 1, 0, 0, 0, 4522, 4523, 7, 14, 0, 0, 4523, 4524, 7, 11, 0, 0, 4524, 4525, 7, 26, 0, 0, 4525, 4526, 7, 11, 0, 0, 4526, 4527, 7, 14, 0, 0, 4527, 4528, 7, 11, 0, 0, 4528, 4529, 7, 8, 0, 0, 4529, 4530, 7, 15, 0, 0, 4530, 4531, 7, 18, 0, 0, 4531, 4532, 7, 8, 0, 0, 4532, 4533, 7, 24, 0, 0, 4533, 906, 1, 0, 0, 0, 4534, 4535, 7, 8, 0, 0, 4535, 4536, 7, 11, 0, 0, 4536, 4537, 7, 30, 0, 0, 4537, 908, 1, 0, 0, 0, 4538, 4539, 7, 20, 0, 0, 4539, 4540, 7, 7, 0, 0, 4540, 4541, 7, 13, 0, 0, 4541, 910, 1, 0, 0, 0, 4542, 4543, 7, 28, 0, 0, 4543, 4544, 7, 6, 0, 0, 4544, 4545, 7, 7, 0, 0, 4545, 4546, 7, 23, 0, 0, 4546, 4547, 7, 11, 0, 0, 4547, 912, 1, 0, 0, 0, 4548, 4549, 7, 10, 0, 0, 4549, 4550, 7, 23, 0, 0, 4550, 4551, 7, 19, 0, 0, 4551, 4552, 7, 10, 0, 0, 4552, 4553, 7, 15, 0, 0, 4553, 4554, 7, 14, 0, 0, 4554, 4555, 7, 18, 0, 0, 4555, 4556, 7, 25, 0, 0, 4556, 4557, 7, 17, 0, 0, 4557, 4558, 7, 18, 0, 0, 4558, 4559, 7, 20, 0, 0, 4559, 4560, 7, 8, 0, 0, 4560, 914, 1, 0, 0, 0, 4561, 4562, 7, 25, 0, 0, 4562, 4563, 7, 23, 0, 0, 4563, 4564, 7, 19, 0, 0, 4564, 4565, 7, 7, 0, 0, 4565, 4566, 7, 18, 0, 0, 4566, 4567, 7, 15, 0, 0, 4567, 4568, 7, 6, 0, 0, 4568, 4569, 7, 17, 0, 0, 4569, 4570, 7, 18, 0, 0, 4570, 4571, 7, 20, 0, 0, 4571, 4572, 7, 8, 0, 0, 4572, 916, 1, 0, 0, 0, 4573, 4574, 7, 20, 0, 0, 4574, 4575, 7, 23, 0, 0, 4575, 4576, 7, 17, 0, 0, 4576, 918, 1, 0, 0, 0, 4577, 4578, 7, 11, 0, 0, 4578, 4579, 7, 8, 0, 0, 4579, 4580, 7, 13, 0, 0, 4580, 920, 1, 0, 0, 0, 4581, 4582, 7, 14, 0, 0, 4582, 4583, 7, 20, 0, 0, 4583, 4584, 7, 23, 0, 0, 4584, 4585, 7, 17, 0, 0, 4585, 4586, 7, 18, 0, 0, 4586, 4587, 7, 8, 0, 0, 4587, 4588, 7, 11, 0, 0, 4588, 4589, 7, 10, 0, 0, 4589, 922, 1, 0, 0, 0, 4590, 4591, 7, 10, 0, 0, 4591, 4592, 7, 15, 0, 0, 4592, 4593, 7, 21, 0, 0, 4593, 4594, 7, 11, 0, 0, 4594, 4595, 7, 16, 0, 0, 4595, 4596, 7, 6, 0, 0, 4596, 4597, 7, 10, 0, 0, 4597, 924, 1, 0, 0, 0, 4598, 4599, 7, 25, 0, 0, 4599, 4600, 7, 14, 0, 0, 4600, 4601, 7, 20, 0, 0, 4601, 4602, 7, 15, 0, 0, 4602, 4603, 7, 11, 0, 0, 4603, 4604, 7, 13, 0, 0, 4604, 4605, 7, 23, 0, 0, 4605, 4606, 7, 14, 0, 0, 4606, 4607, 7, 11, 0, 0, 4607, 4608, 7, 10, 0, 0, 4608, 926, 1, 0, 0, 0, 4609, 4610, 7, 18, 0, 0, 4610, 4611, 7, 8, 0, 0, 4611, 4612, 7, 25, 0, 0, 4612, 4613, 7, 23, 0, 0, 4613, 4614, 7, 17, 0, 0, 4614, 928, 1, 0, 0, 0, 4615, 4616, 7, 10, 0, 0, 4616, 4617, 7, 23, 0, 0, 4617, 4618, 7, 25, 0, 0, 4618, 4619, 7, 25, 0, 0, 4619, 4620, 7, 20, 0, 0, 4620, 4621, 7, 14, 0, 0, 4621, 4622, 7, 17, 0, 0, 4622, 930, 1, 0, 0, 0, 4623, 4624, 7, 25, 0, 0, 4624, 4625, 7, 6, 0, 0, 4625, 4626, 7, 14, 0, 0, 4626, 4627, 7, 6, 0, 0, 4627, 4628, 7, 7, 0, 0, 4628, 4629, 7, 7, 0, 0, 4629, 4630, 7, 11, 0, 0, 4630, 4631, 7, 7, 0, 0, 4631, 932, 1, 0, 0, 0, 4632, 4633, 7, 10, 0, 0, 4633, 4634, 7, 29, 0, 0, 4634, 4635, 7, 7, 0, 0, 4635, 934, 1, 0, 0, 0, 4636, 4637, 7, 13, 0, 0, 4637, 4638, 7, 11, 0, 0, 4638, 4639, 7, 25, 0, 0, 4639, 4640, 7, 11, 0, 0, 4640, 4641, 7, 8, 0, 0, 4641, 4642, 7, 13, 0, 0, 4642, 4643, 7, 10, 0, 0, 4643, 936, 1, 0, 0, 0, 4644, 4645, 7, 20, 0, 0, 4645, 4646, 7, 28, 0, 0, 4646, 4647, 7, 11, 0, 0, 4647, 4648, 7, 14, 0, 0, 4648, 4649, 7, 14, 0, 0, 4649, 4650, 7, 18, 0, 0, 4650, 4651, 7, 13, 0, 0, 4651, 4652, 7, 18, 0, 0, 4652, 4653, 7, 8, 0, 0, 4653, 4654, 7, 24, 0, 0, 4654, 938, 1, 0, 0, 0, 4655, 4656, 7, 15, 0, 0, 4656, 4657, 7, 20, 0, 0, 4657, 4658, 7, 8, 0, 0, 4658, 4659, 7, 26, 0, 0, 4659, 4660, 7, 7, 0, 0, 4660, 4661, 7, 18, 0, 0, 4661, 4662, 7, 15, 0, 0, 4662, 4663, 7, 17, 0, 0, 4663, 940, 1, 0, 0, 0, 4664, 4665, 7, 10, 0, 0, 4665, 4666, 7, 22, 0, 0, 4666, 4667, 7, 18, 0, 0, 4667, 4668, 7, 25, 0, 0, 4668, 942, 1, 0, 0, 0, 4669, 4670, 7, 7, 0, 0, 4670, 4671, 7, 20, 0, 0, 4671, 4672, 7, 15, 0, 0, 4672, 4673, 7, 22, 0, 0, 4673, 4674, 7, 11, 0, 0, 4674, 4675, 7, 13, 0, 0, 4675, 944, 1, 0, 0, 0, 4676, 4677, 7, 17, 0, 0, 4677, 4678, 7, 18, 0, 0, 4678, 4679, 7, 11, 0, 0, 4679, 4680, 7, 10, 0, 0, 4680, 946, 1, 0, 0, 0, 4681, 4682, 7, 14, 0, 0, 4682, 4683, 7, 20, 0, 0, 4683, 4684, 7, 7, 0, 0, 4684, 4685, 7, 7, 0, 0, 4685, 4686, 7, 23, 0, 0, 4686, 4687, 7, 25, 0, 0, 4687, 948, 1, 0, 0, 0, 4688, 4689, 7, 15, 0, 0, 4689, 4690, 7, 23, 0, 0, 4690, 4691, 7, 19, 0, 0, 4691, 4692, 7, 11, 0, 0, 4692, 950, 1, 0, 0, 0, 4693, 4694, 7, 24, 0, 0, 4694, 4695, 7, 14, 0, 0, 4695, 4696, 7, 20, 0, 0, 4696, 4697, 7, 23, 0, 0, 4697, 4698, 7, 25, 0, 0, 4698, 4699, 7, 18, 0, 0, 4699, 4700, 7, 8, 0, 0, 4700, 4701, 7, 24, 0, 0, 4701, 952, 1, 0, 0, 0, 4702, 4703, 7, 10, 0, 0, 4703, 4704, 7, 11, 0, 0, 4704, 4705, 7, 17, 0, 0, 4705, 4706, 7, 10, 0, 0, 4706, 954, 1, 0, 0, 0, 4707, 4708, 7, 17, 0, 0, 4708, 4709, 7, 6, 0, 0, 4709, 4710, 7, 19, 0, 0, 4710, 4711, 7, 7, 0, 0, 4711, 4712, 7, 11, 0, 0, 4712, 4713, 7, 10, 0, 0, 4713, 4714, 7, 6, 0, 0, 4714, 4715, 7, 16, 0, 0, 4715, 4716, 7, 25, 0, 0, 4716, 4717, 7, 7, 0, 0, 4717, 4718, 7, 11, 0, 0, 4718, 956, 1, 0, 0, 0, 4719, 4720, 7, 20, 0, 0, 4720, 4721, 7, 14, 0, 0, 4721, 4722, 7, 13, 0, 0, 4722, 4723, 7, 18, 0, 0, 4723, 4724, 7, 8, 0, 0, 4724, 4725, 7, 6, 0, 0, 4725, 4726, 7, 7, 0, 0, 4726, 4727, 7, 18, 0, 0, 4727, 4728, 7, 17, 0, 0, 4728, 4729, 7, 9, 0, 0, 4729, 958, 1, 0, 0, 0, 4730, 4731, 7, 27, 0, 0, 4731, 4732, 7, 16, 0, 0, 4732, 4733, 7, 7, 0, 0, 4733, 4734, 7, 17, 0, 0, 4734, 4735, 7, 6, 0, 0, 4735, 4736, 7, 19, 0, 0, 4736, 4737, 7, 7, 0, 0, 4737, 4738, 7, 11, 0, 0, 4738, 960, 1, 0, 0, 0, 4739, 4740, 7, 15, 0, 0, 4740, 4741, 7, 20, 0, 0, 4741, 4742, 7, 7, 0, 0, 4742, 4743, 7, 23, 0, 0, 4743, 4744, 7, 16, 0, 0, 4744, 4745, 7, 8, 0, 0, 4745, 4746, 7, 10, 0, 0, 4746, 962, 1, 0, 0, 0, 4747, 4748, 7, 27, 0, 0, 4748, 4749, 7, 16, 0, 0, 4749, 4750, 7, 7, 0, 0, 4750, 4751, 7, 8, 0, 0, 4751, 4752, 7, 6, 0, 0, 4752, 4753, 7, 16, 0, 0, 4753, 4754, 7, 11, 0, 0, 4754, 4755, 7, 10, 0, 0, 4755, 4756, 7, 25, 0, 0, 4756, 4757, 7, 6, 0, 0, 4757, 4758, 7, 15, 0, 0, 4758, 4759, 7, 11, 0, 0, 4759, 4760, 7, 10, 0, 0, 4760, 964, 1, 0, 0, 0, 4761, 4762, 7, 14, 0, 0, 4762, 4763, 7, 20, 0, 0, 4763, 4764, 7, 30, 0, 0, 4764, 4765, 7, 17, 0, 0, 4765, 4766, 7, 9, 0, 0, 4766, 4767, 7, 25, 0, 0, 4767, 4768, 7, 11, 0, 0, 4768, 966, 1, 0, 0, 0, 4769, 4770, 7, 8, 0, 0, 4770, 4771, 7, 20, 0, 0, 4771, 4772, 7, 14, 0, 0, 4772, 4773, 7, 16, 0, 0, 4773, 4774, 7, 6, 0, 0, 4774, 4775, 7, 7, 0, 0, 4775, 4776, 7, 18, 0, 0, 4776, 4777, 7, 12, 0, 0, 4777, 4778, 7, 11, 0, 0, 4778, 4779, 7, 13, 0, 0, 4779, 968, 1, 0, 0, 0, 4780, 4781, 7, 30, 0, 0, 4781, 4782, 7, 18, 0, 0, 4782, 4783, 7, 17, 0, 0, 4783, 4784, 7, 21, 0, 0, 4784, 4785, 7, 18, 0, 0, 4785, 4786, 7, 8, 0, 0, 4786, 970, 1, 0, 0, 0, 4787, 4788, 7, 26, 0, 0, 4788, 4789, 7, 18, 0, 0, 4789, 4790, 7, 7, 0, 0, 4790, 4791, 7, 17, 0, 0, 4791, 4792, 7, 11, 0, 0, 4792, 4793, 7, 14, 0, 0, 4793, 972, 1, 0, 0, 0, 4794, 4795, 7, 24, 0, 0, 4795, 4796, 7, 14, 0, 0, 4796, 4797, 7, 20, 0, 0, 4797, 4798, 7, 23, 0, 0, 4798, 4799, 7, 25, 0, 0, 4799, 4800, 7, 10, 0, 0, 4800, 974, 1, 0, 0, 0, 4801, 4802, 7, 20, 0, 0, 4802, 4803, 7, 17, 0, 0, 4803, 4804, 7, 21, 0, 0, 4804, 4805, 7, 11, 0, 0, 4805, 4806, 7, 14, 0, 0, 4806, 4807, 7, 10, 0, 0, 4807, 976, 1, 0, 0, 0, 4808, 4809, 7, 8, 0, 0, 4809, 4810, 7, 26, 0, 0, 4810, 4811, 7, 15, 0, 0, 4811, 978, 1, 0, 0, 0, 4812, 4813, 7, 8, 0, 0, 4813, 4814, 7, 26, 0, 0, 4814, 4815, 7, 13, 0, 0, 4815, 980, 1, 0, 0, 0, 4816, 4817, 7, 8, 0, 0, 4817, 4818, 7, 26, 0, 0, 4818, 4819, 7, 22, 0, 0, 4819, 4820, 7, 15, 0, 0, 4820, 982, 1, 0, 0, 0, 4821, 4822, 7, 8, 0, 0, 4822, 4823, 7, 26, 0, 0, 4823, 4824, 7, 22, 0, 0, 4824, 4825, 7, 13, 0, 0, 4825, 984, 1, 0, 0, 0, 4826, 4827, 7, 23, 0, 0, 4827, 4828, 7, 11, 0, 0, 4828, 4829, 7, 10, 0, 0, 4829, 4830, 7, 15, 0, 0, 4830, 4831, 7, 6, 0, 0, 4831, 4832, 7, 25, 0, 0, 4832, 4833, 7, 11, 0, 0, 4833, 986, 1, 0, 0, 0, 4834, 4835, 7, 28, 0, 0, 4835, 4836, 7, 18, 0, 0, 4836, 4837, 7, 11, 0, 0, 4837, 4838, 7, 30, 0, 0, 4838, 4839, 7, 10, 0, 0, 4839, 988, 1, 0, 0, 0, 4840, 4841, 7, 8, 0, 0, 4841, 4842, 7, 20, 0, 0, 4842, 4843, 7, 14, 0, 0, 4843, 4844, 7, 16, 0, 0, 4844, 4845, 7, 6, 0, 0, 4845, 4846, 7, 7, 0, 0, 4846, 4847, 7, 18, 0, 0, 4847, 4848, 7, 12, 0, 0, 4848, 4849, 7, 11, 0, 0, 4849, 990, 1, 0, 0, 0, 4850, 4851, 7, 13, 0, 0, 4851, 4852, 7, 23, 0, 0, 4852, 4853, 7, 16, 0, 0, 4853, 4854, 7, 25, 0, 0, 4854, 992, 1, 0, 0, 0, 4855, 4856, 7, 25, 0, 0, 4856, 4857, 7, 14, 0, 0, 4857, 4858, 7, 18, 0, 0, 4858, 4859, 7, 8, 0, 0, 4859, 4860, 7, 17, 0, 0, 4860, 4861, 5, 95, 0, 0, 4861, 4862, 7, 10, 0, 0, 4862, 4863, 7, 17, 0, 0, 4863, 4864, 7, 14, 0, 0, 4864, 4865, 7, 18, 0, 0, 4865, 4866, 7, 15, 0, 0, 4866, 4867, 7, 17, 0, 0, 4867, 4868, 5, 95, 0, 0, 4868, 4869, 7, 25, 0, 0, 4869, 4870, 7, 6, 0, 0, 4870, 4871, 7, 14, 0, 0, 4871, 4872, 7, 6, 0, 0, 4872, 4873, 7, 16, 0, 0, 4873, 4874, 7, 10, 0, 0, 4874, 994, 1, 0, 0, 0, 4875, 4876, 7, 28, 0, 0, 4876, 4877, 7, 6, 0, 0, 4877, 4878, 7, 14, 0, 0, 4878, 4879, 7, 18, 0, 0, 4879, 4880, 7, 6, 0, 0, 4880, 4881, 7, 19, 0, 0, 4881, 4882, 7, 7, 0, 0, 4882, 4883, 7, 11, 0, 0, 4883, 4884, 5, 95, 0, 0, 4884, 4885, 7, 15, 0, 0, 4885, 4886, 7, 20, 0, 0, 4886, 4887, 7, 8, 0, 0, 4887, 4888, 7, 26, 0, 0, 4888, 4889, 7, 7, 0, 0, 4889, 4890, 7, 18, 0, 0, 4890, 4891, 7, 15, 0, 0, 4891, 4892, 7, 17, 0, 0, 4892, 996, 1, 0, 0, 0, 4893, 4894, 7, 11, 0, 0, 4894, 4895, 7, 14, 0, 0, 4895, 4896, 7, 14, 0, 0, 4896, 4897, 7, 20, 0, 0, 4897, 4898, 7, 14, 0, 0, 4898, 998, 1, 0, 0, 0, 4899, 4900, 7, 23, 0, 0, 4900, 4901, 7, 10, 0, 0, 4901, 4902, 7, 11, 0, 0, 4902, 4903, 5, 95, 0, 0, 4903, 4904, 7, 28, 0, 0, 4904, 4905, 7, 6, 0, 0, 4905, 4906, 7, 14, 0, 0, 4906, 4907, 7, 18, 0, 0, 4907, 4908, 7, 6, 0, 0, 4908, 4909, 7, 19, 0, 0, 4909, 4910, 7, 7, 0, 0, 4910, 4911, 7, 11, 0, 0, 4911, 1000, 1, 0, 0, 0, 4912, 4913, 7, 23, 0, 0, 4913, 4914, 7, 10, 0, 0, 4914, 4915, 7, 11, 0, 0, 4915, 4916, 5, 95, 0, 0, 4916, 4917, 7, 15, 0, 0, 4917, 4918, 7, 20, 0, 0, 4918, 4919, 7, 7, 0, 0, 4919, 4920, 7, 23, 0, 0, 4920, 4921, 7, 16, 0, 0, 4921, 4922, 7, 8, 0, 0, 4922, 1002, 1, 0, 0, 0, 4923, 4924, 7, 6, 0, 0, 4924, 4925, 7, 7, 0, 0, 4925, 4926, 7, 18, 0, 0, 4926, 4927, 7, 6, 0, 0, 4927, 4928, 7, 10, 0, 0, 4928, 1004, 1, 0, 0, 0, 4929, 4930, 7, 15, 0, 0, 4930, 4931, 7, 20, 0, 0, 4931, 4932, 7, 8, 0, 0, 4932, 4933, 7, 10, 0, 0, 4933, 4934, 7, 17, 0, 0, 4934, 4935, 7, 6, 0, 0, 4935, 4936, 7, 8, 0, 0, 4936, 4937, 7, 17, 0, 0, 4937, 1006, 1, 0, 0, 0, 4938, 4939, 7, 25, 0, 0, 4939, 4940, 7, 11, 0, 0, 4940, 4941, 7, 14, 0, 0, 4941, 4942, 7, 26, 0, 0, 4942, 4943, 7, 20, 0, 0, 4943, 4944, 7, 14, 0, 0, 4944, 4945, 7, 16, 0, 0, 4945, 1008, 1, 0, 0, 0, 4946, 4947, 7, 24, 0, 0, 4947, 4948, 7, 11, 0, 0, 4948, 4949, 7, 17, 0, 0, 4949, 1010, 1, 0, 0, 0, 4950, 4951, 7, 13, 0, 0, 4951, 4952, 7, 18, 0, 0, 4952, 4953, 7, 6, 0, 0, 4953, 4954, 7, 24, 0, 0, 4954, 4955, 7, 8, 0, 0, 4955, 4956, 7, 20, 0, 0, 4956, 4957, 7, 10, 0, 0, 4957, 4958, 7, 17, 0, 0, 4958, 4959, 7, 18, 0, 0, 4959, 4960, 7, 15, 0, 0, 4960, 4961, 7, 10, 0, 0, 4961, 1012, 1, 0, 0, 0, 4962, 4963, 7, 10, 0, 0, 4963, 4964, 7, 17, 0, 0, 4964, 4965, 7, 6, 0, 0, 4965, 4966, 7, 15, 0, 0, 4966, 4967, 7, 22, 0, 0, 4967, 4968, 7, 11, 0, 0, 4968, 4969, 7, 13, 0, 0, 4969, 1014, 1, 0, 0, 0, 4970, 4971, 7, 11, 0, 0, 4971, 4972, 7, 7, 0, 0, 4972, 4973, 7, 10, 0, 0, 4973, 4974, 7, 18, 0, 0, 4974, 4975, 7, 26, 0, 0, 4975, 1016, 1, 0, 0, 0, 4976, 4977, 7, 30, 0, 0, 4977, 4978, 7, 21, 0, 0, 4978, 4979, 7, 18, 0, 0, 4979, 4980, 7, 7, 0, 0, 4980, 4981, 7, 11, 0, 0, 4981, 1018, 1, 0, 0, 0, 4982, 4983, 7, 14, 0, 0, 4983, 4984, 7, 11, 0, 0, 4984, 4985, 7, 28, 0, 0, 4985, 4986, 7, 11, 0, 0, 4986, 4987, 7, 14, 0, 0, 4987, 4988, 7, 10, 0, 0, 4988, 4989, 7, 11, 0, 0, 4989, 1020, 1, 0, 0, 0, 4990, 4991, 7, 26, 0, 0, 4991, 4992, 7, 20, 0, 0, 4992, 4993, 7, 14, 0, 0, 4993, 4994, 7, 11, 0, 0, 4994, 4995, 7, 6, 0, 0, 4995, 4996, 7, 15, 0, 0, 4996, 4997, 7, 21, 0, 0, 4997, 1022, 1, 0, 0, 0, 4998, 4999, 7, 10, 0, 0, 4999, 5000, 7, 7, 0, 0, 5000, 5001, 7, 18, 0, 0, 5001, 5002, 7, 15, 0, 0, 5002, 5003, 7, 11, 0, 0, 5003, 1024, 1, 0, 0, 0, 5004, 5005, 7, 11, 0, 0, 5005, 5006, 7, 27, 0, 0, 5006, 5007, 7, 18, 0, 0, 5007, 5008, 7, 17, 0, 0, 5008, 1026, 1, 0, 0, 0, 5009, 5010, 7, 14, 0, 0, 5010, 5011, 7, 11, 0, 0, 5011, 5012, 7, 17, 0, 0, 5012, 5013, 7, 23, 0, 0, 5013, 5014, 7, 14, 0, 0, 5014, 5015, 7, 8, 0, 0, 5015, 1028, 1, 0, 0, 0, 5016, 5017, 7, 29, 0, 0, 5017, 5018, 7, 23, 0, 0, 5018, 5019, 7, 11, 0, 0, 5019, 5020, 7, 14, 0, 0, 5020, 5021, 7, 9, 0, 0, 5021, 1030, 1, 0, 0, 0, 5022, 5023, 7, 14, 0, 0, 5023, 5024, 7, 6, 0, 0, 5024, 5025, 7, 18, 0, 0, 5025, 5026, 7, 10, 0, 0, 5026, 5027, 7, 11, 0, 0, 5027, 1032, 1, 0, 0, 0, 5028, 5029, 7, 10, 0, 0, 5029, 5030, 7, 29, 0, 0, 5030, 5031, 7, 7, 0, 0, 5031, 5032, 7, 10, 0, 0, 5032, 5033, 7, 17, 0, 0, 5033, 5034, 7, 6, 0, 0, 5034, 5035, 7, 17, 0, 0, 5035, 5036, 7, 11, 0, 0, 5036, 1034, 1, 0, 0, 0, 5037, 5038, 7, 13, 0, 0, 5038, 5039, 7, 11, 0, 0, 5039, 5040, 7, 19, 0, 0, 5040, 5041, 7, 23, 0, 0, 5041, 5042, 7, 24, 0, 0, 5042, 1036, 1, 0, 0, 0, 5043, 5044, 7, 7, 0, 0, 5044, 5045, 7, 20, 0, 0, 5045, 5046, 7, 24, 0, 0, 5046, 1038, 1, 0, 0, 0, 5047, 5048, 7, 18, 0, 0, 5048, 5049, 7, 8, 0, 0, 5049, 5050, 7, 26, 0, 0, 5050, 5051, 7, 20, 0, 0, 5051, 1040, 1, 0, 0, 0, 5052, 5053, 7, 8, 0, 0, 5053, 5054, 7, 20, 0, 0, 5054, 5055, 7, 17, 0, 0, 5055, 5056, 7, 18, 0, 0, 5056, 5057, 7, 15, 0, 0, 5057, 5058, 7, 11, 0, 0, 5058, 1042, 1, 0, 0, 0, 5059, 5060, 7, 30, 0, 0, 5060, 5061, 7, 6, 0, 0, 5061, 5062, 7, 14, 0, 0, 5062, 5063, 7, 8, 0, 0, 5063, 5064, 7, 18, 0, 0, 5064, 5065, 7, 8, 0, 0, 5065, 5066, 7, 24, 0, 0, 5066, 1044, 1, 0, 0, 0, 5067, 5068, 7, 11, 0, 0, 5068, 5069, 7, 27, 0, 0, 5069, 5070, 7, 15, 0, 0, 5070, 5071, 7, 11, 0, 0, 5071, 5072, 7, 25, 0, 0, 5072, 5073, 7, 17, 0, 0, 5073, 5074, 7, 18, 0, 0, 5074, 5075, 7, 20, 0, 0, 5075, 5076, 7, 8, 0, 0, 5076, 1046, 1, 0, 0, 0, 5077, 5078, 7, 6, 0, 0, 5078, 5079, 7, 10, 0, 0, 5079, 5080, 7, 10, 0, 0, 5080, 5081, 7, 11, 0, 0, 5081, 5082, 7, 14, 0, 0, 5082, 5083, 7, 17, 0, 0, 5083, 1048, 1, 0, 0, 0, 5084, 5085, 7, 7, 0, 0, 5085, 5086, 7, 20, 0, 0, 5086, 5087, 7, 20, 0, 0, 5087, 5088, 7, 25, 0, 0, 5088, 1050, 1, 0, 0, 0, 5089, 5090, 7, 20, 0, 0, 5090, 5091, 7, 25, 0, 0, 5091, 5092, 7, 11, 0, 0, 5092, 5093, 7, 8, 0, 0, 5093, 1052, 1, 0, 0, 0, 5094, 5095, 7, 25, 0, 0, 5095, 5096, 7, 11, 0, 0, 5096, 5097, 7, 26, 0, 0, 5097, 5098, 7, 11, 0, 0, 5098, 5099, 7, 14, 0, 0, 5099, 5100, 7, 11, 0, 0, 5100, 5101, 7, 8, 0, 0, 5101, 5102, 7, 15, 0, 0, 5102, 5103, 7, 11, 0, 0, 5103, 5104, 7, 10, 0, 0, 5104, 1054, 1, 0, 0, 0, 5105, 5106, 7, 23, 0, 0, 5106, 5107, 7, 10, 0, 0, 5107, 5108, 7, 6, 0, 0, 5108, 5109, 7, 24, 0, 0, 5109, 5110, 7, 11, 0, 0, 5110, 1056, 1, 0, 0, 0, 5111, 5112, 7, 15, 0, 0, 5112, 5113, 7, 20, 0, 0, 5113, 5114, 7, 8, 0, 0, 5114, 5115, 7, 8, 0, 0, 5115, 5116, 7, 11, 0, 0, 5116, 5117, 7, 15, 0, 0, 5117, 5118, 7, 17, 0, 0, 5118, 1058, 1, 0, 0, 0, 5119, 5120, 7, 25, 0, 0, 5120, 5121, 7, 23, 0, 0, 5121, 5122, 7, 19, 0, 0, 5122, 5123, 7, 7, 0, 0, 5123, 5124, 7, 18, 0, 0, 5124, 5125, 7, 15, 0, 0, 5125, 1060, 1, 0, 0, 0, 5126, 5127, 7, 16, 0, 0, 5127, 5128, 7, 11, 0, 0, 5128, 5129, 7, 14, 0, 0, 5129, 5130, 7, 24, 0, 0, 5130, 5131, 7, 11, 0, 0, 5131, 1062, 1, 0, 0, 0, 5132, 5133, 7, 16, 0, 0, 5133, 5134, 7, 6, 0, 0, 5134, 5135, 7, 17, 0, 0, 5135, 5136, 7, 15, 0, 0, 5136, 5137, 7, 21, 0, 0, 5137, 5138, 7, 11, 0, 0, 5138, 5139, 7, 13, 0, 0, 5139, 1064, 1, 0, 0, 0, 5140, 5141, 7, 19, 0, 0, 5141, 5142, 7, 14, 0, 0, 5142, 5143, 7, 11, 0, 0, 5143, 5144, 7, 6, 0, 0, 5144, 5145, 7, 13, 0, 0, 5145, 5146, 7, 17, 0, 0, 5146, 5147, 7, 21, 0, 0, 5147, 1066, 1, 0, 0, 0, 5148, 5149, 7, 13, 0, 0, 5149, 5150, 7, 11, 0, 0, 5150, 5151, 7, 25, 0, 0, 5151, 5152, 7, 17, 0, 0, 5152, 5153, 7, 21, 0, 0, 5153, 1068, 1, 0, 0, 0, 5154, 5155, 7, 23, 0, 0, 5155, 5156, 7, 8, 0, 0, 5156, 5157, 7, 10, 0, 0, 5157, 5158, 7, 6, 0, 0, 5158, 5159, 7, 26, 0, 0, 5159, 5160, 7, 11, 0, 0, 5160, 1070, 1, 0, 0, 0, 5161, 5162, 7, 14, 0, 0, 5162, 5163, 7, 11, 0, 0, 5163, 5164, 7, 10, 0, 0, 5164, 5165, 7, 17, 0, 0, 5165, 5166, 7, 14, 0, 0, 5166, 5167, 7, 18, 0, 0, 5167, 5168, 7, 15, 0, 0, 5168, 5169, 7, 17, 0, 0, 5169, 5170, 7, 11, 0, 0, 5170, 5171, 7, 13, 0, 0, 5171, 1072, 1, 0, 0, 0, 5172, 5173, 7, 10, 0, 0, 5173, 5174, 7, 6, 0, 0, 5174, 5175, 7, 26, 0, 0, 5175, 5176, 7, 11, 0, 0, 5176, 1074, 1, 0, 0, 0, 5177, 5178, 7, 26, 0, 0, 5178, 5179, 7, 18, 0, 0, 5179, 5180, 7, 8, 0, 0, 5180, 5181, 7, 6, 0, 0, 5181, 5182, 7, 7, 0, 0, 5182, 5183, 7, 18, 0, 0, 5183, 5184, 7, 12, 0, 0, 5184, 5185, 7, 11, 0, 0, 5185, 1076, 1, 0, 0, 0, 5186, 5187, 7, 16, 0, 0, 5187, 5188, 7, 20, 0, 0, 5188, 5189, 7, 13, 0, 0, 5189, 5190, 7, 23, 0, 0, 5190, 5191, 7, 7, 0, 0, 5191, 5192, 7, 23, 0, 0, 5192, 5193, 7, 10, 0, 0, 5193, 1078, 1, 0, 0, 0, 5194, 5195, 7, 14, 0, 0, 5195, 5196, 7, 11, 0, 0, 5196, 5197, 7, 16, 0, 0, 5197, 5198, 7, 6, 0, 0, 5198, 5199, 7, 18, 0, 0, 5199, 5200, 7, 8, 0, 0, 5200, 5201, 7, 13, 0, 0, 5201, 5202, 7, 11, 0, 0, 5202, 5203, 7, 14, 0, 0, 5203, 1080, 1, 0, 0, 0, 5204, 5205, 7, 7, 0, 0, 5205, 5206, 7, 20, 0, 0, 5206, 5207, 7, 24, 0, 0, 5207, 5208, 7, 18, 0, 0, 5208, 5209, 7, 8, 0, 0, 5209, 1082, 1, 0, 0, 0, 5210, 5211, 7, 8, 0, 0, 5211, 5212, 7, 20, 0, 0, 5212, 5213, 7, 7, 0, 0, 5213, 5214, 7, 20, 0, 0, 5214, 5215, 7, 24, 0, 0, 5215, 5216, 7, 18, 0, 0, 5216, 5217, 7, 8, 0, 0, 5217, 1084, 1, 0, 0, 0, 5218, 5219, 7, 14, 0, 0, 5219, 5220, 7, 11, 0, 0, 5220, 5221, 7, 25, 0, 0, 5221, 5222, 7, 7, 0, 0, 5222, 5223, 7, 18, 0, 0, 5223, 5224, 7, 15, 0, 0, 5224, 5225, 7, 6, 0, 0, 5225, 5226, 7, 17, 0, 0, 5226, 5227, 7, 18, 0, 0, 5227, 5228, 7, 20, 0, 0, 5228, 5229, 7, 8, 0, 0, 5229, 1086, 1, 0, 0, 0, 5230, 5231, 7, 8, 0, 0, 5231, 5232, 7, 20, 0, 0, 5232, 5233, 7, 14, 0, 0, 5233, 5234, 7, 11, 0, 0, 5234, 5235, 7, 25, 0, 0, 5235, 5236, 7, 7, 0, 0, 5236, 5237, 7, 18, 0, 0, 5237, 5238, 7, 15, 0, 0, 5238, 5239, 7, 6, 0, 0, 5239, 5240, 7, 17, 0, 0, 5240, 5241, 7, 18, 0, 0, 5241, 5242, 7, 20, 0, 0, 5242, 5243, 7, 8, 0, 0, 5243, 1088, 1, 0, 0, 0, 5244, 5245, 7, 19, 0, 0, 5245, 5246, 7, 9, 0, 0, 5246, 5247, 7, 25, 0, 0, 5247, 5248, 7, 6, 0, 0, 5248, 5249, 7, 10, 0, 0, 5249, 5250, 7, 10, 0, 0, 5250, 5251, 7, 14, 0, 0, 5251, 5252, 7, 7, 0, 0, 5252, 5253, 7, 10, 0, 0, 5253, 1090, 1, 0, 0, 0, 5254, 5255, 7, 8, 0, 0, 5255, 5256, 7, 20, 0, 0, 5256, 5257, 7, 19, 0, 0, 5257, 5258, 7, 9, 0, 0, 5258, 5259, 7, 25, 0, 0, 5259, 5260, 7, 6, 0, 0, 5260, 5261, 7, 10, 0, 0, 5261, 5262, 7, 10, 0, 0, 5262, 5263, 7, 14, 0, 0, 5263, 5264, 7, 7, 0, 0, 5264, 5265, 7, 10, 0, 0, 5265, 1092, 1, 0, 0, 0, 5266, 5267, 7, 25, 0, 0, 5267, 5268, 7, 11, 0, 0, 5268, 5269, 7, 14, 0, 0, 5269, 5270, 7, 16, 0, 0, 5270, 5271, 7, 18, 0, 0, 5271, 5272, 7, 10, 0, 0, 5272, 5273, 7, 10, 0, 0, 5273, 5274, 7, 18, 0, 0, 5274, 5275, 7, 28, 0, 0, 5275, 5276, 7, 11, 0, 0, 5276, 1094, 1, 0, 0, 0, 5277, 5278, 7, 14, 0, 0, 5278, 5279, 7, 11, 0, 0, 5279, 5280, 7, 10, 0, 0, 5280, 5281, 7, 17, 0, 0, 5281, 5282, 7, 14, 0, 0, 5282, 5283, 7, 18, 0, 0, 5283, 5284, 7, 15, 0, 0, 5284, 5285, 7, 17, 0, 0, 5285, 5286, 7, 18, 0, 0, 5286, 5287, 7, 28, 0, 0, 5287, 5288, 7, 11, 0, 0, 5288, 1096, 1, 0, 0, 0, 5289, 5290, 7, 15, 0, 0, 5290, 5291, 7, 20, 0, 0, 5291, 5292, 7, 16, 0, 0, 5292, 5293, 7, 25, 0, 0, 5293, 5294, 7, 14, 0, 0, 5294, 5295, 7, 11, 0, 0, 5295, 5296, 7, 10, 0, 0, 5296, 5297, 7, 10, 0, 0, 5297, 5298, 7, 18, 0, 0, 5298, 5299, 7, 20, 0, 0, 5299, 5300, 7, 8, 0, 0, 5300, 1098, 1, 0, 0, 0, 5301, 5302, 7, 25, 0, 0, 5302, 5303, 7, 7, 0, 0, 5303, 5304, 7, 6, 0, 0, 5304, 5305, 7, 18, 0, 0, 5305, 5306, 7, 8, 0, 0, 5306, 1100, 1, 0, 0, 0, 5307, 5308, 7, 11, 0, 0, 5308, 5309, 7, 27, 0, 0, 5309, 5310, 7, 17, 0, 0, 5310, 5311, 7, 11, 0, 0, 5311, 5312, 7, 8, 0, 0, 5312, 5313, 7, 13, 0, 0, 5313, 5314, 7, 11, 0, 0, 5314, 5315, 7, 13, 0, 0, 5315, 1102, 1, 0, 0, 0, 5316, 5317, 7, 16, 0, 0, 5317, 5318, 7, 6, 0, 0, 5318, 5319, 7, 18, 0, 0, 5319, 5320, 7, 8, 0, 0, 5320, 1104, 1, 0, 0, 0, 5321, 5322, 7, 10, 0, 0, 5322, 5323, 7, 22, 0, 0, 5323, 5324, 7, 18, 0, 0, 5324, 5325, 7, 25, 0, 0, 5325, 5326, 5, 95, 0, 0, 5326, 5327, 7, 7, 0, 0, 5327, 5328, 7, 20, 0, 0, 5328, 5329, 7, 15, 0, 0, 5329, 5330, 7, 22, 0, 0, 5330, 5331, 7, 11, 0, 0, 5331, 5332, 7, 13, 0, 0, 5332, 1106, 1, 0, 0, 0, 5333, 5334, 7, 19, 0, 0, 5334, 5335, 7, 23, 0, 0, 5335, 5336, 7, 26, 0, 0, 5336, 5337, 7, 26, 0, 0, 5337, 5338, 7, 11, 0, 0, 5338, 5339, 7, 14, 0, 0, 5339, 5340, 5, 95, 0, 0, 5340, 5341, 7, 23, 0, 0, 5341, 5342, 7, 10, 0, 0, 5342, 5343, 7, 6, 0, 0, 5343, 5344, 7, 24, 0, 0, 5344, 5345, 7, 11, 0, 0, 5345, 5346, 5, 95, 0, 0, 5346, 5347, 7, 7, 0, 0, 5347, 5348, 7, 18, 0, 0, 5348, 5349, 7, 16, 0, 0, 5349, 5350, 7, 18, 0, 0, 5350, 5351, 7, 17, 0, 0, 5351, 1108, 1, 0, 0, 0, 5352, 5353, 7, 26, 0, 0, 5353, 5354, 7, 20, 0, 0, 5354, 5355, 7, 14, 0, 0, 5355, 5356, 7, 15, 0, 0, 5356, 5357, 7, 11, 0, 0, 5357, 5358, 5, 95, 0, 0, 5358, 5359, 7, 29, 0, 0, 5359, 5360, 7, 23, 0, 0, 5360, 5361, 7, 20, 0, 0, 5361, 5362, 7, 17, 0, 0, 5362, 5363, 7, 11, 0, 0, 5363, 1110, 1, 0, 0, 0, 5364, 5365, 7, 26, 0, 0, 5365, 5366, 7, 20, 0, 0, 5366, 5367, 7, 14, 0, 0, 5367, 5368, 7, 15, 0, 0, 5368, 5369, 7, 11, 0, 0, 5369, 5370, 5, 95, 0, 0, 5370, 5371, 7, 8, 0, 0, 5371, 5372, 7, 20, 0, 0, 5372, 5373, 7, 17, 0, 0, 5373, 5374, 5, 95, 0, 0, 5374, 5375, 7, 8, 0, 0, 5375, 5376, 7, 23, 0, 0, 5376, 5377, 7, 7, 0, 0, 5377, 5378, 7, 7, 0, 0, 5378, 1112, 1, 0, 0, 0, 5379, 5380, 7, 26, 0, 0, 5380, 5381, 7, 20, 0, 0, 5381, 5382, 7, 14, 0, 0, 5382, 5383, 7, 15, 0, 0, 5383, 5384, 7, 11, 0, 0, 5384, 5385, 5, 95, 0, 0, 5385, 5386, 7, 8, 0, 0, 5386, 5387, 7, 23, 0, 0, 5387, 5388, 7, 7, 0, 0, 5388, 5389, 7, 7, 0, 0, 5389, 1114, 1, 0, 0, 0, 5390, 5394, 3, 1117, 556, 0, 5391, 5393, 3, 1119, 557, 0, 5392, 5391, 1, 0, 0, 0, 5393, 5396, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 1116, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5397, 5401, 7, 32, 0, 0, 5398, 5399, 7, 33, 0, 0, 5399, 5401, 7, 34, 0, 0, 5400, 5397, 1, 0, 0, 0, 5400, 5398, 1, 0, 0, 0, 5401, 1118, 1, 0, 0, 0, 5402, 5405, 3, 1121, 558, 0, 5403, 5405, 5, 36, 0, 0, 5404, 5402, 1, 0, 0, 0, 5404, 5403, 1, 0, 0, 0, 5405, 1120, 1, 0, 0, 0, 5406, 5409, 3, 1117, 556, 0, 5407, 5409, 7, 0, 0, 0, 5408, 5406, 1, 0, 0, 0, 5408, 5407, 1, 0, 0, 0, 5409, 1122, 1, 0, 0, 0, 5410, 5411, 3, 1125, 560, 0, 5411, 5412, 5, 34, 0, 0, 5412, 1124, 1, 0, 0, 0, 5413, 5419, 5, 34, 0, 0, 5414, 5415, 5, 34, 0, 0, 5415, 5418, 5, 34, 0, 0, 5416, 5418, 8, 35, 0, 0, 5417, 5414, 1, 0, 0, 0, 5417, 5416, 1, 0, 0, 0, 5418, 5421, 1, 0, 0, 0, 5419, 5417, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 1126, 1, 0, 0, 0, 5421, 5419, 1, 0, 0, 0, 5422, 5423, 3, 1129, 562, 0, 5423, 5424, 5, 34, 0, 0, 5424, 1128, 1, 0, 0, 0, 5425, 5431, 5, 34, 0, 0, 5426, 5427, 5, 34, 0, 0, 5427, 5430, 5, 34, 0, 0, 5428, 5430, 8, 36, 0, 0, 5429, 5426, 1, 0, 0, 0, 5429, 5428, 1, 0, 0, 0, 5430, 5433, 1, 0, 0, 0, 5431, 5429, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 1130, 1, 0, 0, 0, 5433, 5431, 1, 0, 0, 0, 5434, 5435, 7, 23, 0, 0, 5435, 5436, 5, 38, 0, 0, 5436, 5437, 3, 1123, 559, 0, 5437, 1132, 1, 0, 0, 0, 5438, 5439, 7, 23, 0, 0, 5439, 5440, 5, 38, 0, 0, 5440, 5441, 3, 1125, 560, 0, 5441, 1134, 1, 0, 0, 0, 5442, 5443, 7, 23, 0, 0, 5443, 5444, 5, 38, 0, 0, 5444, 5445, 3, 1127, 561, 0, 5445, 1136, 1, 0, 0, 0, 5446, 5447, 7, 23, 0, 0, 5447, 5448, 5, 38, 0, 0, 5448, 5449, 3, 1129, 562, 0, 5449, 1138, 1, 0, 0, 0, 5450, 5451, 3, 1141, 568, 0, 5451, 5452, 5, 39, 0, 0, 5452, 1140, 1, 0, 0, 0, 5453, 5459, 5, 39, 0, 0, 5454, 5455, 5, 39, 0, 0, 5455, 5458, 5, 39, 0, 0, 5456, 5458, 8, 37, 0, 0, 5457, 5454, 1, 0, 0, 0, 5457, 5456, 1, 0, 0, 0, 5458, 5461, 1, 0, 0, 0, 5459, 5457, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 1142, 1, 0, 0, 0, 5461, 5459, 1, 0, 0, 0, 5462, 5463, 7, 11, 0, 0, 5463, 5464, 5, 39, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5466, 6, 569, 1, 0, 5466, 5467, 6, 569, 2, 0, 5467, 1144, 1, 0, 0, 0, 5468, 5469, 3, 1147, 571, 0, 5469, 5470, 5, 39, 0, 0, 5470, 1146, 1, 0, 0, 0, 5471, 5472, 7, 23, 0, 0, 5472, 5473, 5, 38, 0, 0, 5473, 5474, 3, 1141, 568, 0, 5474, 1148, 1, 0, 0, 0, 5475, 5477, 5, 36, 0, 0, 5476, 5478, 3, 1151, 573, 0, 5477, 5476, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5480, 5, 36, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 6, 572, 3, 0, 5482, 1150, 1, 0, 0, 0, 5483, 5487, 3, 1117, 556, 0, 5484, 5486, 3, 1121, 558, 0, 5485, 5484, 1, 0, 0, 0, 5486, 5489, 1, 0, 0, 0, 5487, 5485, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 1152, 1, 0, 0, 0, 5489, 5487, 1, 0, 0, 0, 5490, 5491, 3, 1155, 575, 0, 5491, 5492, 5, 39, 0, 0, 5492, 1154, 1, 0, 0, 0, 5493, 5494, 7, 19, 0, 0, 5494, 5498, 5, 39, 0, 0, 5495, 5497, 7, 38, 0, 0, 5496, 5495, 1, 0, 0, 0, 5497, 5500, 1, 0, 0, 0, 5498, 5496, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 1156, 1, 0, 0, 0, 5500, 5498, 1, 0, 0, 0, 5501, 5502, 3, 1159, 577, 0, 5502, 5503, 5, 39, 0, 0, 5503, 1158, 1, 0, 0, 0, 5504, 5505, 7, 19, 0, 0, 5505, 5506, 3, 1141, 568, 0, 5506, 1160, 1, 0, 0, 0, 5507, 5508, 3, 1163, 579, 0, 5508, 5509, 5, 39, 0, 0, 5509, 1162, 1, 0, 0, 0, 5510, 5511, 7, 27, 0, 0, 5511, 5515, 5, 39, 0, 0, 5512, 5514, 7, 39, 0, 0, 5513, 5512, 1, 0, 0, 0, 5514, 5517, 1, 0, 0, 0, 5515, 5513, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 1164, 1, 0, 0, 0, 5517, 5515, 1, 0, 0, 0, 5518, 5519, 3, 1167, 581, 0, 5519, 5520, 5, 39, 0, 0, 5520, 1166, 1, 0, 0, 0, 5521, 5522, 7, 27, 0, 0, 5522, 5523, 3, 1141, 568, 0, 5523, 1168, 1, 0, 0, 0, 5524, 5525, 3, 1175, 585, 0, 5525, 1170, 1, 0, 0, 0, 5526, 5527, 3, 1175, 585, 0, 5527, 5528, 5, 46, 0, 0, 5528, 5529, 5, 46, 0, 0, 5529, 1172, 1, 0, 0, 0, 5530, 5531, 3, 1175, 585, 0, 5531, 5533, 5, 46, 0, 0, 5532, 5534, 3, 1175, 585, 0, 5533, 5532, 1, 0, 0, 0, 5533, 5534, 1, 0, 0, 0, 5534, 5540, 1, 0, 0, 0, 5535, 5537, 7, 11, 0, 0, 5536, 5538, 7, 1, 0, 0, 5537, 5536, 1, 0, 0, 0, 5537, 5538, 1, 0, 0, 0, 5538, 5539, 1, 0, 0, 0, 5539, 5541, 3, 1175, 585, 0, 5540, 5535, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5559, 1, 0, 0, 0, 5542, 5543, 5, 46, 0, 0, 5543, 5549, 3, 1175, 585, 0, 5544, 5546, 7, 11, 0, 0, 5545, 5547, 7, 1, 0, 0, 5546, 5545, 1, 0, 0, 0, 5546, 5547, 1, 0, 0, 0, 5547, 5548, 1, 0, 0, 0, 5548, 5550, 3, 1175, 585, 0, 5549, 5544, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5559, 1, 0, 0, 0, 5551, 5552, 3, 1175, 585, 0, 5552, 5554, 7, 11, 0, 0, 5553, 5555, 7, 1, 0, 0, 5554, 5553, 1, 0, 0, 0, 5554, 5555, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5557, 3, 1175, 585, 0, 5557, 5559, 1, 0, 0, 0, 5558, 5530, 1, 0, 0, 0, 5558, 5542, 1, 0, 0, 0, 5558, 5551, 1, 0, 0, 0, 5559, 1174, 1, 0, 0, 0, 5560, 5562, 7, 0, 0, 0, 5561, 5560, 1, 0, 0, 0, 5562, 5563, 1, 0, 0, 0, 5563, 5561, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 1176, 1, 0, 0, 0, 5565, 5566, 5, 58, 0, 0, 5566, 5570, 7, 40, 0, 0, 5567, 5569, 7, 41, 0, 0, 5568, 5567, 1, 0, 0, 0, 5569, 5572, 1, 0, 0, 0, 5570, 5568, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 1178, 1, 0, 0, 0, 5572, 5570, 1, 0, 0, 0, 5573, 5574, 5, 58, 0, 0, 5574, 5575, 5, 34, 0, 0, 5575, 5583, 1, 0, 0, 0, 5576, 5577, 5, 92, 0, 0, 5577, 5582, 9, 0, 0, 0, 5578, 5579, 5, 34, 0, 0, 5579, 5582, 5, 34, 0, 0, 5580, 5582, 8, 42, 0, 0, 5581, 5576, 1, 0, 0, 0, 5581, 5578, 1, 0, 0, 0, 5581, 5580, 1, 0, 0, 0, 5582, 5585, 1, 0, 0, 0, 5583, 5581, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5586, 1, 0, 0, 0, 5585, 5583, 1, 0, 0, 0, 5586, 5587, 5, 34, 0, 0, 5587, 1180, 1, 0, 0, 0, 5588, 5589, 7, 43, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5591, 6, 588, 4, 0, 5591, 1182, 1, 0, 0, 0, 5592, 5593, 5, 45, 0, 0, 5593, 5594, 5, 45, 0, 0, 5594, 5598, 1, 0, 0, 0, 5595, 5597, 8, 44, 0, 0, 5596, 5595, 1, 0, 0, 0, 5597, 5600, 1, 0, 0, 0, 5598, 5596, 1, 0, 0, 0, 5598, 5599, 1, 0, 0, 0, 5599, 5601, 1, 0, 0, 0, 5600, 5598, 1, 0, 0, 0, 5601, 5602, 6, 589, 4, 0, 5602, 1184, 1, 0, 0, 0, 5603, 5604, 5, 47, 0, 0, 5604, 5605, 5, 42, 0, 0, 5605, 5628, 1, 0, 0, 0, 5606, 5608, 5, 47, 0, 0, 5607, 5606, 1, 0, 0, 0, 5608, 5611, 1, 0, 0, 0, 5609, 5607, 1, 0, 0, 0, 5609, 5610, 1, 0, 0, 0, 5610, 5612, 1, 0, 0, 0, 5611, 5609, 1, 0, 0, 0, 5612, 5627, 3, 1185, 590, 0, 5613, 5627, 8, 45, 0, 0, 5614, 5616, 5, 47, 0, 0, 5615, 5614, 1, 0, 0, 0, 5616, 5617, 1, 0, 0, 0, 5617, 5615, 1, 0, 0, 0, 5617, 5618, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5627, 8, 45, 0, 0, 5620, 5622, 5, 42, 0, 0, 5621, 5620, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5621, 1, 0, 0, 0, 5623, 5624, 1, 0, 0, 0, 5624, 5625, 1, 0, 0, 0, 5625, 5627, 8, 45, 0, 0, 5626, 5609, 1, 0, 0, 0, 5626, 5613, 1, 0, 0, 0, 5626, 5615, 1, 0, 0, 0, 5626, 5621, 1, 0, 0, 0, 5627, 5630, 1, 0, 0, 0, 5628, 5626, 1, 0, 0, 0, 5628, 5629, 1, 0, 0, 0, 5629, 5634, 1, 0, 0, 0, 5630, 5628, 1, 0, 0, 0, 5631, 5633, 5, 42, 0, 0, 5632, 5631, 1, 0, 0, 0, 5633, 5636, 1, 0, 0, 0, 5634, 5632, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5637, 1, 0, 0, 0, 5636, 5634, 1, 0, 0, 0, 5637, 5638, 5, 42, 0, 0, 5638, 5639, 5, 47, 0, 0, 5639, 5640, 1, 0, 0, 0, 5640, 5641, 6, 590, 4, 0, 5641, 1186, 1, 0, 0, 0, 5642, 5643, 5, 47, 0, 0, 5643, 5644, 5, 42, 0, 0, 5644, 5669, 1, 0, 0, 0, 5645, 5647, 5, 47, 0, 0, 5646, 5645, 1, 0, 0, 0, 5647, 5650, 1, 0, 0, 0, 5648, 5646, 1, 0, 0, 0, 5648, 5649, 1, 0, 0, 0, 5649, 5651, 1, 0, 0, 0, 5650, 5648, 1, 0, 0, 0, 5651, 5668, 3, 1185, 590, 0, 5652, 5668, 8, 45, 0, 0, 5653, 5655, 5, 47, 0, 0, 5654, 5653, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5654, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5666, 8, 45, 0, 0, 5659, 5661, 5, 42, 0, 0, 5660, 5659, 1, 0, 0, 0, 5661, 5662, 1, 0, 0, 0, 5662, 5660, 1, 0, 0, 0, 5662, 5663, 1, 0, 0, 0, 5663, 5664, 1, 0, 0, 0, 5664, 5666, 8, 45, 0, 0, 5665, 5654, 1, 0, 0, 0, 5665, 5660, 1, 0, 0, 0, 5666, 5668, 1, 0, 0, 0, 5667, 5648, 1, 0, 0, 0, 5667, 5652, 1, 0, 0, 0, 5667, 5665, 1, 0, 0, 0, 5668, 5671, 1, 0, 0, 0, 5669, 5667, 1, 0, 0, 0, 5669, 5670, 1, 0, 0, 0, 5670, 5689, 1, 0, 0, 0, 5671, 5669, 1, 0, 0, 0, 5672, 5674, 5, 47, 0, 0, 5673, 5672, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5673, 1, 0, 0, 0, 5675, 5676, 1, 0, 0, 0, 5676, 5690, 1, 0, 0, 0, 5677, 5679, 5, 42, 0, 0, 5678, 5677, 1, 0, 0, 0, 5679, 5680, 1, 0, 0, 0, 5680, 5678, 1, 0, 0, 0, 5680, 5681, 1, 0, 0, 0, 5681, 5690, 1, 0, 0, 0, 5682, 5684, 5, 47, 0, 0, 5683, 5682, 1, 0, 0, 0, 5684, 5687, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5685, 5686, 1, 0, 0, 0, 5686, 5688, 1, 0, 0, 0, 5687, 5685, 1, 0, 0, 0, 5688, 5690, 3, 1187, 591, 0, 5689, 5673, 1, 0, 0, 0, 5689, 5678, 1, 0, 0, 0, 5689, 5685, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 1188, 1, 0, 0, 0, 5691, 5703, 5, 92, 0, 0, 5692, 5702, 8, 46, 0, 0, 5693, 5697, 5, 34, 0, 0, 5694, 5696, 8, 47, 0, 0, 5695, 5694, 1, 0, 0, 0, 5696, 5699, 1, 0, 0, 0, 5697, 5695, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5697, 1, 0, 0, 0, 5700, 5702, 5, 34, 0, 0, 5701, 5692, 1, 0, 0, 0, 5701, 5693, 1, 0, 0, 0, 5702, 5705, 1, 0, 0, 0, 5703, 5701, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5713, 1, 0, 0, 0, 5705, 5703, 1, 0, 0, 0, 5706, 5710, 5, 34, 0, 0, 5707, 5709, 8, 47, 0, 0, 5708, 5707, 1, 0, 0, 0, 5709, 5712, 1, 0, 0, 0, 5710, 5708, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5714, 1, 0, 0, 0, 5712, 5710, 1, 0, 0, 0, 5713, 5706, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 1190, 1, 0, 0, 0, 5715, 5716, 5, 92, 0, 0, 5716, 5717, 5, 92, 0, 0, 5717, 1192, 1, 0, 0, 0, 5718, 5719, 9, 0, 0, 0, 5719, 1194, 1, 0, 0, 0, 5720, 5721, 3, 1199, 597, 0, 5721, 5722, 5, 39, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 5724, 6, 595, 5, 0, 5724, 1196, 1, 0, 0, 0, 5725, 5727, 3, 1199, 597, 0, 5726, 5728, 5, 92, 0, 0, 5727, 5726, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5730, 5, 0, 0, 1, 5730, 1198, 1, 0, 0, 0, 5731, 5732, 5, 39, 0, 0, 5732, 5755, 5, 39, 0, 0, 5733, 5751, 5, 92, 0, 0, 5734, 5735, 7, 27, 0, 0, 5735, 5752, 7, 39, 0, 0, 5736, 5737, 7, 23, 0, 0, 5737, 5738, 7, 39, 0, 0, 5738, 5739, 7, 39, 0, 0, 5739, 5740, 7, 39, 0, 0, 5740, 5752, 7, 39, 0, 0, 5741, 5742, 7, 23, 0, 0, 5742, 5743, 7, 39, 0, 0, 5743, 5744, 7, 39, 0, 0, 5744, 5745, 7, 39, 0, 0, 5745, 5746, 7, 39, 0, 0, 5746, 5747, 7, 39, 0, 0, 5747, 5748, 7, 39, 0, 0, 5748, 5749, 7, 39, 0, 0, 5749, 5752, 7, 39, 0, 0, 5750, 5752, 8, 48, 0, 0, 5751, 5734, 1, 0, 0, 0, 5751, 5736, 1, 0, 0, 0, 5751, 5741, 1, 0, 0, 0, 5751, 5750, 1, 0, 0, 0, 5752, 5755, 1, 0, 0, 0, 5753, 5755, 8, 49, 0, 0, 5754, 5731, 1, 0, 0, 0, 5754, 5733, 1, 0, 0, 0, 5754, 5753, 1, 0, 0, 0, 5755, 5758, 1, 0, 0, 0, 5756, 5754, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 1200, 1, 0, 0, 0, 5758, 5756, 1, 0, 0, 0, 5759, 5760, 3, 1205, 600, 0, 5760, 5761, 5, 39, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 5763, 6, 598, 5, 0, 5763, 1202, 1, 0, 0, 0, 5764, 5766, 3, 1205, 600, 0, 5765, 5767, 5, 92, 0, 0, 5766, 5765, 1, 0, 0, 0, 5766, 5767, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5769, 5, 0, 0, 1, 5769, 1204, 1, 0, 0, 0, 5770, 5771, 5, 39, 0, 0, 5771, 5776, 5, 39, 0, 0, 5772, 5773, 5, 92, 0, 0, 5773, 5776, 9, 0, 0, 0, 5774, 5776, 8, 49, 0, 0, 5775, 5770, 1, 0, 0, 0, 5775, 5772, 1, 0, 0, 0, 5775, 5774, 1, 0, 0, 0, 5776, 5779, 1, 0, 0, 0, 5777, 5775, 1, 0, 0, 0, 5777, 5778, 1, 0, 0, 0, 5778, 1206, 1, 0, 0, 0, 5779, 5777, 1, 0, 0, 0, 5780, 5781, 3, 1181, 588, 0, 5781, 5782, 1, 0, 0, 0, 5782, 5783, 6, 601, 6, 0, 5783, 5784, 6, 601, 4, 0, 5784, 1208, 1, 0, 0, 0, 5785, 5786, 3, 1181, 588, 0, 5786, 5787, 1, 0, 0, 0, 5787, 5788, 6, 602, 6, 0, 5788, 5789, 6, 602, 4, 0, 5789, 1210, 1, 0, 0, 0, 5790, 5791, 5, 39, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5793, 6, 603, 1, 0, 5793, 5794, 6, 603, 7, 0, 5794, 1212, 1, 0, 0, 0, 5795, 5797, 8, 50, 0, 0, 5796, 5795, 1, 0, 0, 0, 5797, 5798, 1, 0, 0, 0, 5798, 5796, 1, 0, 0, 0, 5798, 5799, 1, 0, 0, 0, 5799, 5808, 1, 0, 0, 0, 5800, 5804, 5, 36, 0, 0, 5801, 5803, 8, 50, 0, 0, 5802, 5801, 1, 0, 0, 0, 5803, 5806, 1, 0, 0, 0, 5804, 5802, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5808, 1, 0, 0, 0, 5806, 5804, 1, 0, 0, 0, 5807, 5796, 1, 0, 0, 0, 5807, 5800, 1, 0, 0, 0, 5808, 1214, 1, 0, 0, 0, 5809, 5811, 5, 36, 0, 0, 5810, 5812, 3, 1151, 573, 0, 5811, 5810, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5813, 1, 0, 0, 0, 5813, 5814, 5, 36, 0, 0, 5814, 5815, 1, 0, 0, 0, 5815, 5816, 6, 605, 8, 0, 5816, 1216, 1, 0, 0, 0, 74, 0, 1, 2, 3, 4, 1284, 1290, 1294, 1296, 1299, 1301, 1304, 1308, 1310, 1315, 1320, 5394, 5400, 5404, 5408, 5417, 5419, 5429, 5431, 5457, 5459, 5477, 5487, 5498, 5515, 5533, 5537, 5540, 5546, 5549, 5554, 5558, 5563, 5570, 5581, 5583, 5598, 5609, 5617, 5623, 5626, 5628, 5634, 5648, 5656, 5662, 5665, 5667, 5669, 5675, 5680, 5685, 5689, 5697, 5701, 5703, 5710, 5713, 5727, 5751, 5754, 5756, 5766, 5775, 5777, 5798, 5804, 5807, 5811, 9, 7, 29, 0, 3, 0, 0, 5, 1, 0, 5, 4, 0, 0, 1, 0, 2, 2, 0, 7, 579, 0, 2, 1, 0, 4, 0, 0] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlLexer.tokens b/src/lib/postgresql/PostgreSqlLexer.tokens index 28a887ae7..33d304d07 100644 --- a/src/lib/postgresql/PostgreSqlLexer.tokens +++ b/src/lib/postgresql/PostgreSqlLexer.tokens @@ -576,21 +576,20 @@ NumericFail=575 Numeric=576 PLSQLVARIABLENAME=577 PLSQLIDENTIFIER=578 -Whitespace=579 -Newline=580 -LineComment=581 -BlockComment=582 -UnterminatedBlockComment=583 -MetaCommand=584 -EndMetaCommand=585 -ErrorCharacter=586 -EscapeStringConstant=587 -UnterminatedEscapeStringConstant=588 -InvalidEscapeStringConstant=589 -InvalidUnterminatedEscapeStringConstant=590 -DollarText=591 -EndDollarStringConstant=592 -AfterEscapeStringConstantWithNewlineMode_Continued=593 +WHITE_SPACE=579 +LINE_COMMENT=580 +BRACKETED_COMMENT=581 +UnterminatedBlockComment=582 +MetaCommand=583 +EndMetaCommand=584 +ErrorCharacter=585 +EscapeStringConstant=586 +UnterminatedEscapeStringConstant=587 +InvalidEscapeStringConstant=588 +InvalidUnterminatedEscapeStringConstant=589 +DollarText=590 +EndDollarStringConstant=591 +AfterEscapeStringConstantWithNewlineMode_Continued=592 '$'=1 '('=2 ')'=3 @@ -1140,5 +1139,5 @@ AfterEscapeStringConstantWithNewlineMode_Continued=593 'FORCE_QUOTE'=549 'FORCE_NOT_NULL'=550 'FORCE_NULL'=551 -'\\\\'=585 -'\''=593 +'\\\\'=584 +'\''=592 diff --git a/src/lib/postgresql/PostgreSqlLexer.ts b/src/lib/postgresql/PostgreSqlLexer.ts index 1a15c55e1..54c06103e 100644 --- a/src/lib/postgresql/PostgreSqlLexer.ts +++ b/src/lib/postgresql/PostgreSqlLexer.ts @@ -585,21 +585,20 @@ export class PostgreSqlLexer extends antlr.Lexer { public static readonly Numeric = 576; public static readonly PLSQLVARIABLENAME = 577; public static readonly PLSQLIDENTIFIER = 578; - public static readonly Whitespace = 579; - public static readonly Newline = 580; - public static readonly LineComment = 581; - public static readonly BlockComment = 582; - public static readonly UnterminatedBlockComment = 583; - public static readonly MetaCommand = 584; - public static readonly EndMetaCommand = 585; - public static readonly ErrorCharacter = 586; - public static readonly EscapeStringConstant = 587; - public static readonly UnterminatedEscapeStringConstant = 588; - public static readonly InvalidEscapeStringConstant = 589; - public static readonly InvalidUnterminatedEscapeStringConstant = 590; - public static readonly DollarText = 591; - public static readonly EndDollarStringConstant = 592; - public static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 593; + public static readonly WHITE_SPACE = 579; + public static readonly LINE_COMMENT = 580; + public static readonly BRACKETED_COMMENT = 581; + public static readonly UnterminatedBlockComment = 582; + public static readonly MetaCommand = 583; + public static readonly EndMetaCommand = 584; + public static readonly ErrorCharacter = 585; + public static readonly EscapeStringConstant = 586; + public static readonly UnterminatedEscapeStringConstant = 587; + public static readonly InvalidEscapeStringConstant = 588; + public static readonly InvalidUnterminatedEscapeStringConstant = 589; + public static readonly DollarText = 590; + public static readonly EndDollarStringConstant = 591; + public static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 592; public static readonly EscapeStringConstantMode = 1; public static readonly AfterEscapeStringConstantMode = 2; public static readonly AfterEscapeStringConstantWithNewlineMode = 3; @@ -710,8 +709,8 @@ export class PostgreSqlLexer extends antlr.Lexer { "'BUFFER_USAGE_LIMIT'", "'FORCE_QUOTE'", "'FORCE_NOT_NULL'", "'FORCE_NULL'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, null, null, null, - "'\\\\'", null, null, null, null, null, null, null, "'''" + null, null, null, null, null, null, null, null, null, null, "'\\\\'", + null, null, null, null, null, null, null, "'''" ]; public static readonly symbolicNames = [ @@ -831,8 +830,8 @@ export class PostgreSqlLexer extends antlr.Lexer { "InvalidUnterminatedBinaryStringConstant", "HexadecimalStringConstant", "UnterminatedHexadecimalStringConstant", "InvalidHexadecimalStringConstant", "InvalidUnterminatedHexadecimalStringConstant", "Integral", "NumericFail", - "Numeric", "PLSQLVARIABLENAME", "PLSQLIDENTIFIER", "Whitespace", - "Newline", "LineComment", "BlockComment", "UnterminatedBlockComment", + "Numeric", "PLSQLVARIABLENAME", "PLSQLIDENTIFIER", "WHITE_SPACE", + "LINE_COMMENT", "BRACKETED_COMMENT", "UnterminatedBlockComment", "MetaCommand", "EndMetaCommand", "ErrorCharacter", "EscapeStringConstant", "UnterminatedEscapeStringConstant", "InvalidEscapeStringConstant", "InvalidUnterminatedEscapeStringConstant", "DollarText", "EndDollarStringConstant", @@ -965,13 +964,12 @@ export class PostgreSqlLexer extends antlr.Lexer { "HexadecimalStringConstant", "UnterminatedHexadecimalStringConstant", "InvalidHexadecimalStringConstant", "InvalidUnterminatedHexadecimalStringConstant", "Integral", "NumericFail", "Numeric", "Digits", "PLSQLVARIABLENAME", - "PLSQLIDENTIFIER", "Whitespace", "Newline", "LineComment", "BlockComment", + "PLSQLIDENTIFIER", "WHITE_SPACE", "LINE_COMMENT", "BRACKETED_COMMENT", "UnterminatedBlockComment", "MetaCommand", "EndMetaCommand", "ErrorCharacter", "EscapeStringConstant", "UnterminatedEscapeStringConstant", "EscapeStringText", "InvalidEscapeStringConstant", "InvalidUnterminatedEscapeStringConstant", "InvalidEscapeStringText", "AfterEscapeStringConstantMode_Whitespace", - "AfterEscapeStringConstantMode_Newline", "AfterEscapeStringConstantWithNewlineMode_Whitespace", - "AfterEscapeStringConstantWithNewlineMode_Newline", "AfterEscapeStringConstantWithNewlineMode_Continued", + "AfterEscapeStringConstantWithNewlineMode_Whitespace", "AfterEscapeStringConstantWithNewlineMode_Continued", "DollarText", "EndDollarStringConstant", ]; @@ -994,7 +992,7 @@ export class PostgreSqlLexer extends antlr.Lexer { public get modeNames(): string[] { return PostgreSqlLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4,0,593,5846,6,-1,6,-1,6,-1,6,-1,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2, + 4,0,592,5817,6,-1,6,-1,6,-1,6,-1,6,-1,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, @@ -1101,428 +1099,425 @@ export class PostgreSqlLexer extends antlr.Lexer { 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,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4,1,5,1, - 5,1,6,1,6,1,7,1,7,1,8,1,8,1,9,1,9,1,10,1,10,1,11,1,11,1,12,1,12, - 1,13,1,13,1,14,1,14,1,15,1,15,1,16,1,16,1,17,1,17,1,17,1,18,1,18, - 1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,21,1,21,1,21,1,22,1,22,1,22, - 1,23,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,1,26,1,26,1,27,1,27, - 4,27,1289,8,27,11,27,12,27,1290,1,28,1,28,4,28,1295,8,28,11,28,12, - 28,1296,1,28,1,28,3,28,1301,8,28,3,28,1303,8,28,1,28,4,28,1306,8, - 28,11,28,12,28,1307,1,28,3,28,1311,8,28,1,29,1,29,5,29,1315,8,29, - 10,29,12,29,1318,9,29,1,29,1,29,3,29,1322,8,29,1,29,4,29,1325,8, - 29,11,29,12,29,1326,1,29,1,29,1,30,1,30,1,31,1,31,1,32,1,32,1,33, - 1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,37,1,37,1,37, - 1,37,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,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,1,41,1,41,1,42, - 1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44, - 1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,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,1,50,1,50, - 1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,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,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,1,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,1,54,1,54,1,54,1,54,1,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,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,57,1,57,1,57,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,59,1,59,1,59,1,59,1,59,1,59, - 1,59,1,59,1,59,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,62,1,62,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,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66, - 1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68, - 1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74, - 1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,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,1,79,1,79,1,79,1,79,1,80,1,80, - 1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,82, - 1,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,86, - 1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,88,1,88,1,88,1,88,1,88,1,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,90,1,90,1,90,1,90,1,90,1,90,1,90, - 1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,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,1,92,1,92,1,93,1,93,1,93, - 1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95, - 1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97, - 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99, - 1,99,1,100,1,100,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101, - 1,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,1,104,1,104,1,104, - 1,104,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108, - 1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110, - 1,110,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, - 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,112,1,112,1,113,1,113,1,113,1,113,1,113,1,113,1,114,1,114,1,114, - 1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114, - 1,114,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,116,1,116,1,116, - 1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118, - 1,118,1,118,1,118,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122, - 1,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 1,126,1,126,1,126,1,126,1,126,1,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,1,128,1,129,1,129, - 1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,130,1,131,1,131,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,133,1,133, - 1,133,1,133,1,134,1,134,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,136,1,136,1,136,1,136,1,137,1,137, - 1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138,1,139, - 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,140,1,140, - 1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,146,1,146,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,1,147,1,147,1,147,1,147,1,147, - 1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,151,1,151, - 1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,153,1,153,1,153,1,153,1,153,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,155,1,155,1,155,1,155,1,155, - 1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,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,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160, - 1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,163,1,163, - 1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164, - 1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165, - 1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,167, - 1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168, - 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,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173, - 1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,176,1,176,1,176,1,176,1,176,1,176,1,177,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,179,1,179, - 1,179,1,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180, - 1,180,1,180,1,181,1,181,1,181,1,181,1,181,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,183,1,183,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184, - 1,184,1,184,1,184,1,185,1,185,1,185,1,185,1,185,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,187,1,187, - 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, - 1,191,1,192,1,192,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, - 1,195,1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,197, - 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,198,1,198,1,198, - 1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199, - 1,199,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,201,1,201,1,201, - 1,201,1,201,1,201,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,1,203,1,203,1,203,1,203,1,204, - 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,205,1,205, - 1,205,1,205,1,205,1,205,1,205,1,205,1,206,1,206,1,206,1,206,1,206, - 1,206,1,206,1,206,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,209,1,209,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,211,1,211,1,211,1,211,1,211,1,211, - 1,211,1,212,1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1,214,1,214,1,214, - 1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218, - 1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220, - 1,220,1,220,1,220,1,221,1,221,1,221,1,221,1,221,1,222,1,222,1,222, - 1,222,1,222,1,222,1,222,1,222,1,222,1,223,1,223,1,223,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,225,1,225,1,225, - 1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226,1,226,1,226, - 1,226,1,226,1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,227,1,227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,229,1,229,1,229,1,229,1,229,1,229,1,230,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,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, - 1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, - 1,233,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234, - 1,234,1,234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, - 1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236, - 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,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,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 1,239,1,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,241,1,241,1,241,1,241,1,241,1,241,1,241, - 1,241,1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,243,1,243, - 1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,245,1,245,1,245,1,245,1,245, - 1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248, - 1,248,1,248,1,248,1,249,1,249,1,249,1,249,1,249,1,249,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,251,1,251,1,251,1,251, - 1,251,1,251,1,252,1,252,1,252,1,252,1,252,1,253,1,253,1,253,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,1,254,1,254,1,254,1,254,1,254, - 1,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,256,1,256,1,256, - 1,256,1,256,1,257,1,257,1,257,1,257,1,257,1,257,1,258,1,258,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259, - 1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,261,1,261,1,261, - 1,261,1,261,1,261,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262, - 1,262,1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,263, - 1,263,1,263,1,263,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,265, - 1,265,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,267,1,267,1,267,1,267,1,267,1,267,1,268,1,268,1,268, - 1,268,1,268,1,269,1,269,1,269,1,269,1,269,1,270,1,270,1,270,1,270, - 1,270,1,270,1,271,1,271,1,271,1,271,1,271,1,272,1,272,1,272,1,273, - 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274, - 1,274,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,276, - 1,276,1,276,1,276,1,276,1,276,1,277,1,277,1,277,1,277,1,277,1,277, - 1,277,1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,280,1,280,1,280, - 1,280,1,280,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281, - 1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,284,1,284,1,284,1,284,1,284,1,284,1,285, - 1,285,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,288,1,288, - 1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,289,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,291,1,291,1,291,1,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,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, - 1,295,1,296,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,1,297,1,297,1,298,1,298,1,298,1,298, - 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,1,302,1,302, - 1,302,1,302,1,302,1,302,1,303,1,303,1,303,1,303,1,303,1,304,1,304, - 1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,305,1,305,1,305,1,305, - 1,305,1,305,1,305,1,305,1,306,1,306,1,306,1,306,1,306,1,306,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,308,1,308,1,309,1,309,1,309,1,309,1,309,1,309,1,309, - 1,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,311, - 1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,312,1,312,1,312,1,312, - 1,312,1,312,1,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,313, - 1,313,1,313,1,313,1,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314, - 1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,316,1,316,1,316, - 1,316,1,316,1,316,1,317,1,317,1,317,1,317,1,317,1,317,1,317,1,317, - 1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,319,1,319, - 1,319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320,1,320,1,320, - 1,320,1,320,1,321,1,321,1,321,1,321,1,321,1,322,1,322,1,322,1,322, - 1,322,1,322,1,322,1,322,1,322,1,323,1,323,1,323,1,323,1,323,1,324, - 1,324,1,324,1,324,1,324,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,328,1,328,1,328,1,328,1,328, - 1,328,1,328,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,330,1,330, - 1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,336, - 1,336,1,336,1,336,1,337,1,337,1,337,1,337,1,337,1,337,1,338,1,338, - 1,338,1,338,1,338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,340, - 1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,341,1,341,1,341, - 1,341,1,341,1,341,1,341,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,343,1,343,1,343,1,343,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,345,1,345, - 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,346,1,346, - 1,346,1,346,1,346,1,346,1,347,1,347,1,347,1,347,1,347,1,347,1,347, - 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,349,1,349,1,349, - 1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,1,350,1,350,1,351, - 1,351,1,351,1,351,1,351,1,351,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,355,1,355,1,355, - 1,355,1,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356, - 1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,358, - 1,358,1,358,1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359,1,359, - 1,359,1,359,1,359,1,359,1,359,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361,1,361,1,361,1,361, - 1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,363,1,363,1,363, - 1,363,1,363,1,364,1,364,1,364,1,364,1,364,1,364,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,366,1,366,1,366,1,366, - 1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,367,1,367,1,367, - 1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,368,1,368, - 1,368,1,368,1,368,1,368,1,368,1,368,1,369,1,369,1,369,1,369,1,369, - 1,369,1,369,1,369,1,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370, - 1,370,1,370,1,371,1,371,1,371,1,371,1,371,1,371,1,372,1,372,1,372, - 1,372,1,372,1,372,1,372,1,373,1,373,1,373,1,373,1,373,1,373,1,373, - 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,376,1,376,1,376,1,376,1,376,1,376,1,376, - 1,376,1,376,1,376,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377, - 1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,379,1,379,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,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,383,1,383,1,383, - 1,383,1,383,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,385, - 1,385,1,385,1,385,1,385,1,385,1,386,1,386,1,386,1,386,1,387,1,387, - 1,387,1,387,1,387,1,388,1,388,1,388,1,388,1,389,1,389,1,389,1,389, - 1,389,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,391,1,391, - 1,391,1,391,1,391,1,391,1,391,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,394,1,394,1,394,1,394,1,394, - 1,395,1,395,1,395,1,395,1,395,1,395,1,395,1,395,1,395,1,395,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,397,1,397,1,397, - 1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,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,1,401,1,401,1,401,1,401,1,401,1,401,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,403,1,403,1,403,1,403,1,403, - 1,403,1,404,1,404,1,404,1,404,1,405,1,405,1,405,1,405,1,405,1,405, - 1,405,1,405,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406, - 1,407,1,407,1,407,1,407,1,407,1,407,1,408,1,408,1,408,1,408,1,408, - 1,408,1,408,1,408,1,408,1,409,1,409,1,409,1,409,1,409,1,409,1,410, - 1,410,1,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411,1,411,1,411, - 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,413,1,413,1,413, - 1,413,1,413,1,413,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,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,416,1,416,1,416,1,416,1,416,1,417,1,417,1,417,1,417, - 1,418,1,418,1,418,1,418,1,418,1,418,1,419,1,419,1,419,1,419,1,419, - 1,419,1,419,1,419,1,419,1,420,1,420,1,420,1,420,1,420,1,420,1,420, - 1,420,1,420,1,420,1,421,1,421,1,421,1,421,1,421,1,422,1,422,1,422, - 1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,423,1,423,1,423,1,423, - 1,423,1,423,1,424,1,424,1,424,1,424,1,424,1,425,1,425,1,425,1,425, - 1,425,1,425,1,425,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426, - 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427, - 1,427,1,427,1,427,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428, - 1,428,1,428,1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,429, - 1,429,1,429,1,430,1,430,1,430,1,430,1,430,1,430,1,430,1,430,1,430, - 1,430,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431, - 1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,433,1,433, - 1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,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,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,438,1,438,1,438,1,438,1,438,1,438, - 1,438,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,440,1,440,1,440, - 1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,441,1,441,1,441, - 1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,442,1,442,1,442,1,442, - 1,442,1,442,1,442,1,443,1,443,1,443,1,443,1,443,1,443,1,443,1,444, - 1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,445,1,445,1,445,1,445, - 1,445,1,445,1,445,1,445,1,446,1,446,1,446,1,446,1,446,1,446,1,446, - 1,446,1,446,1,446,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,448, - 1,448,1,448,1,448,1,448,1,448,1,448,1,449,1,449,1,449,1,449,1,449, - 1,449,1,449,1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,450, - 1,450,1,450,1,450,1,451,1,451,1,451,1,451,1,452,1,452,1,452,1,452, - 1,453,1,453,1,453,1,453,1,453,1,453,1,454,1,454,1,454,1,454,1,454, - 1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,455,1,455,1,455, - 1,455,1,455,1,455,1,455,1,455,1,455,1,455,1,455,1,455,1,456,1,456, - 1,456,1,456,1,457,1,457,1,457,1,457,1,458,1,458,1,458,1,458,1,458, - 1,458,1,458,1,458,1,458,1,459,1,459,1,459,1,459,1,459,1,459,1,459, - 1,459,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460, - 1,460,1,461,1,461,1,461,1,461,1,461,1,461,1,462,1,462,1,462,1,462, - 1,462,1,462,1,462,1,462,1,463,1,463,1,463,1,463,1,463,1,463,1,463, - 1,463,1,463,1,464,1,464,1,464,1,464,1,465,1,465,1,465,1,465,1,465, - 1,465,1,465,1,465,1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466, - 1,466,1,466,1,466,1,467,1,467,1,467,1,467,1,467,1,467,1,467,1,467, - 1,467,1,468,1,468,1,468,1,468,1,468,1,469,1,469,1,469,1,469,1,469, - 1,469,1,469,1,470,1,470,1,470,1,470,1,470,1,471,1,471,1,471,1,471, - 1,471,1,471,1,471,1,472,1,472,1,472,1,472,1,472,1,473,1,473,1,473, - 1,473,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,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475, - 1,475,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476, - 1,476,1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,478, - 1,478,1,478,1,478,1,478,1,478,1,478,1,478,1,479,1,479,1,479,1,479, - 1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,480, - 1,480,1,480,1,480,1,480,1,480,1,480,1,480,1,481,1,481,1,481,1,481, - 1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,482,1,482,1,482,1,482, - 1,482,1,482,1,482,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,484, - 1,484,1,484,1,484,1,484,1,484,1,484,1,485,1,485,1,485,1,485,1,485, - 1,485,1,485,1,486,1,486,1,486,1,486,1,487,1,487,1,487,1,487,1,488, - 1,488,1,488,1,488,1,488,1,489,1,489,1,489,1,489,1,489,1,490,1,490, - 1,490,1,490,1,490,1,490,1,490,1,490,1,491,1,491,1,491,1,491,1,491, - 1,491,1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492, - 1,493,1,493,1,493,1,493,1,493,1,494,1,494,1,494,1,494,1,494,1,494, + 2,602,7,602,2,603,7,603,2,604,7,604,2,605,7,605,1,0,1,0,1,1,1,1, + 1,2,1,2,1,3,1,3,1,4,1,4,1,5,1,5,1,6,1,6,1,7,1,7,1,8,1,8,1,9,1,9, + 1,10,1,10,1,11,1,11,1,12,1,12,1,13,1,13,1,14,1,14,1,15,1,15,1,16, + 1,16,1,17,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20, + 1,21,1,21,1,21,1,22,1,22,1,22,1,23,1,23,1,23,1,24,1,24,1,24,1,25, + 1,25,1,25,1,26,1,26,1,27,1,27,4,27,1283,8,27,11,27,12,27,1284,1, + 28,1,28,4,28,1289,8,28,11,28,12,28,1290,1,28,1,28,3,28,1295,8,28, + 3,28,1297,8,28,1,28,4,28,1300,8,28,11,28,12,28,1301,1,28,3,28,1305, + 8,28,1,29,1,29,5,29,1309,8,29,10,29,12,29,1312,9,29,1,29,1,29,3, + 29,1316,8,29,1,29,4,29,1319,8,29,11,29,12,29,1320,1,29,1,29,1,30, + 1,30,1,31,1,31,1,32,1,32,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34, + 1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,36, + 1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38,1,38, + 1,39,1,39,1,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,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43, + 1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,1,45, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48, + 1,49,1,49,1,49,1,49,1,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,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51, + 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,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,1,53,1,53,1,53, + 1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,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,1,54,1,54,1,54, + 1,54,1,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,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57, + 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,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,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,62,1,62,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,65,1,65,1,65, + 1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67, + 1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,72,1,72,1,72, + 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,77, + 1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 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, + 1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81, + 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,84,1,84,1,84, + 1,84,1,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87, + 1,87,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,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,90, + 1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91, + 1,91,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,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94, + 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,96,1,96, + 1,96,1,96,1,96,1,97,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100, + 1,100,1,101,1,101,1,101,1,101,1,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,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105, + 1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107, + 1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,110, + 1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113, + 1,113,1,113,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115, + 1,115,1,115,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117, + 1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,119,1,119,1,119, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121, + 1,121,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,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,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131,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,133,1,133,1,133,1,133,1,134,1,134,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,136, + 1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138, + 1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141, + 1,141,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,144,1,144, + 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145, + 1,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149, + 1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,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,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,156,1,156,1,156, + 1,156,1,156,1,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,158,1,158,1,158, + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159, + 1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, + 1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165, + 1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,167, + 1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,168, + 1,168,1,168,1,168,1,168,1,168,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,1,169,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171, + 1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172,1,172,1,172, + 1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176, + 1,177,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,179,1,179,1,179,1,179,1,180,1,180,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181,1,181,1,181,1,181, + 1,181,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,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185, + 1,185,1,185,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,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187, + 1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, + 1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191, + 1,191,1,191,1,191,1,191,1,191,1,191,1,192,1,192,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,1,195,1,195,1,195,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197,1,197,1,197, + 1,197,1,197,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198, + 1,198,1,199,1,199,1,199,1,199,1,199,1,200,1,200,1,200,1,200,1,200, + 1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,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, + 1,203,1,203,1,203,1,203,1,204,1,204,1,204,1,204,1,204,1,204,1,204, + 1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205, + 1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,1,209,1,209,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,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,1,212, + 1,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,214,1,214, + 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,215,1,215,1,215,1,215, + 1,215,1,215,1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219, + 1,219,1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,221,1,221,1,221, + 1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, + 1,223,1,223,1,223,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, + 1,225,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,227, + 1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228, + 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,1,229,1,229, + 1,229,1,229,1,229,1,230,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,231,1,231,1,231,1,232,1,232,1,232, + 1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,234,1,234,1,234,1,234,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235, + 1,235,1,235,1,235,1,235,1,235,1,236,1,236,1,236,1,236,1,236,1,236, + 1,236,1,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237,1,237,1,237, + 1,237,1,237,1,237,1,237,1,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,239,1,239,1,239,1,239, + 1,239,1,239,1,239,1,239,1,239,1,239,1,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,241,1,241, + 1,241,1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242, + 1,242,1,242,1,242,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243, + 1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,248,1,248,1,248,1,248,1,249,1,249,1,249, + 1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,251,1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252, + 1,252,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253, + 1,254,1,254,1,254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255, + 1,255,1,255,1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,257, + 1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,259,1,259,1,259,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1,262,1,262,1,262, + 1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,263, + 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,264,1,264,1,264, + 1,264,1,264,1,264,1,264,1,265,1,265,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,267,1,267,1,267,1,267, + 1,267,1,267,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269,1,269, + 1,269,1,270,1,270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271, + 1,271,1,272,1,272,1,272,1,273,1,273,1,273,1,273,1,273,1,273,1,273, + 1,273,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276,1,277, + 1,277,1,277,1,277,1,277,1,277,1,277,1,278,1,278,1,278,1,279,1,279, + 1,279,1,279,1,280,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,282,1,282,1,282,1,282,1,282,1,282, + 1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,284,1,284, + 1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1,285,1,285,1,286, + 1,286,1,286,1,286,1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287, + 1,287,1,287,1,287,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, + 1,288,1,288,1,289,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,291,1,291,1,291, + 1,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,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295, + 1,295,1,295,1,295,1,295,1,295,1,295,1,296,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,1,297, + 1,297,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298, + 1,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,301,1,301,1,301, + 1,301,1,301,1,301,1,302,1,302,1,302,1,302,1,302,1,302,1,303,1,303, + 1,303,1,303,1,303,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304, + 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,306,1,306, + 1,306,1,306,1,306,1,306,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,308,1,308,1,309,1,309, + 1,309,1,309,1,309,1,309,1,309,1,309,1,310,1,310,1,310,1,310,1,310, + 1,310,1,310,1,310,1,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311, + 1,311,1,312,1,312,1,312,1,312,1,312,1,312,1,312,1,313,1,313,1,313, + 1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,314,1,314,1,314, + 1,314,1,314,1,314,1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,1,315,1,316,1,316,1,316,1,316,1,316,1,316,1,317,1,317,1,317, + 1,317,1,317,1,317,1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318, + 1,318,1,318,1,318,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319, + 1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,321,1,321,1,321,1,321, + 1,321,1,322,1,322,1,322,1,322,1,322,1,322,1,322,1,322,1,322,1,323, + 1,323,1,323,1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,325,1,325, + 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,326,1,326,1,326, + 1,326,1,326,1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330, + 1,330,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,336,1,336,1,336,1,336,1,337,1,337,1,337, + 1,337,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340, + 1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,343,1,343, + 1,343,1,343,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,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, + 1,345,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,347,1,347, + 1,347,1,347,1,347,1,347,1,347,1,348,1,348,1,348,1,348,1,348,1,348, + 1,348,1,348,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350, + 1,350,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,351,1,351,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,353,1,353,1,353,1,353,1,353, + 1,353,1,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354, + 1,354,1,354,1,355,1,355,1,355,1,355,1,355,1,356,1,356,1,356,1,356, + 1,356,1,356,1,356,1,356,1,356,1,357,1,357,1,357,1,357,1,357,1,357, + 1,357,1,357,1,357,1,357,1,358,1,358,1,358,1,358,1,358,1,359,1,359, + 1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,360, + 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,361,1,361,1,361,1,361, + 1,361,1,361,1,361,1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,362, + 1,362,1,362,1,363,1,363,1,363,1,363,1,363,1,364,1,364,1,364,1,364, + 1,364,1,364,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, + 1,365,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366, + 1,366,1,366,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367, + 1,367,1,367,1,367,1,368,1,368,1,368,1,368,1,368,1,368,1,368,1,368, + 1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,370,1,370, + 1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371,1,371,1,371,1,371, + 1,371,1,371,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,373,1,373, + 1,373,1,373,1,373,1,373,1,373,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,376,1,376, + 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,377,1,377,1,377, + 1,377,1,377,1,377,1,377,1,377,1,378,1,378,1,378,1,378,1,378,1,378, + 1,378,1,378,1,379,1,379,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,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,383,1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384, + 1,384,1,384,1,384,1,384,1,385,1,385,1,385,1,385,1,385,1,385,1,386, + 1,386,1,386,1,386,1,387,1,387,1,387,1,387,1,387,1,388,1,388,1,388, + 1,388,1,389,1,389,1,389,1,389,1,389,1,390,1,390,1,390,1,390,1,390, + 1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391,1,391,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,394,1,394,1,394,1,394,1,394,1,395,1,395,1,395,1,395,1,395,1,395, + 1,395,1,395,1,395,1,395,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,397,1,397,1,397,1,397,1,398,1,398,1,398,1,398,1,398, + 1,398,1,398,1,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,1,401,1,401,1,401,1,401, + 1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,403,1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404,1,404,1,405, + 1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,406,1,406,1,406,1,406, + 1,406,1,406,1,406,1,406,1,406,1,407,1,407,1,407,1,407,1,407,1,407, + 1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,409,1,409, + 1,409,1,409,1,409,1,409,1,410,1,410,1,410,1,410,1,410,1,411,1,411, + 1,411,1,411,1,411,1,411,1,411,1,412,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,414, + 1,414,1,414,1,414,1,414,1,414,1,414,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,416,1,416,1,416,1,416, + 1,416,1,417,1,417,1,417,1,417,1,418,1,418,1,418,1,418,1,418,1,418, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,420,1,420, + 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,421,1,421,1,421, + 1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, + 1,422,1,423,1,423,1,423,1,423,1,423,1,423,1,424,1,424,1,424,1,424, + 1,424,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,426,1,426,1,426, + 1,426,1,426,1,426,1,426,1,426,1,427,1,427,1,427,1,427,1,427,1,427, + 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,428,1,428,1,428, + 1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,429,1,429,1,429,1,429, + 1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,430,1,430,1,430,1,430, + 1,430,1,430,1,430,1,430,1,430,1,430,1,431,1,431,1,431,1,431,1,431, + 1,431,1,431,1,431,1,431,1,431,1,432,1,432,1,432,1,432,1,432,1,432, + 1,432,1,432,1,432,1,433,1,433,1,433,1,433,1,433,1,433,1,434,1,434, + 1,434,1,434,1,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,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,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,439,1,439,1,439,1,439,1,439, + 1,439,1,439,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440, + 1,440,1,440,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441, + 1,441,1,442,1,442,1,442,1,442,1,442,1,442,1,442,1,443,1,443,1,443, + 1,443,1,443,1,443,1,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444, + 1,444,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,446,1,446, + 1,446,1,446,1,446,1,446,1,446,1,446,1,446,1,446,1,447,1,447,1,447, + 1,447,1,447,1,447,1,447,1,448,1,448,1,448,1,448,1,448,1,448,1,448, + 1,449,1,449,1,449,1,449,1,449,1,449,1,449,1,450,1,450,1,450,1,450, + 1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,451,1,451,1,451, + 1,451,1,452,1,452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453, + 1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454, + 1,454,1,454,1,455,1,455,1,455,1,455,1,455,1,455,1,455,1,455,1,455, + 1,455,1,455,1,455,1,456,1,456,1,456,1,456,1,457,1,457,1,457,1,457, + 1,458,1,458,1,458,1,458,1,458,1,458,1,458,1,458,1,458,1,459,1,459, + 1,459,1,459,1,459,1,459,1,459,1,459,1,460,1,460,1,460,1,460,1,460, + 1,460,1,460,1,460,1,460,1,460,1,460,1,461,1,461,1,461,1,461,1,461, + 1,461,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,463,1,463, + 1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,464,1,464,1,464,1,464, + 1,465,1,465,1,465,1,465,1,465,1,465,1,465,1,465,1,466,1,466,1,466, + 1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,467,1,467,1,467, + 1,467,1,467,1,467,1,467,1,467,1,467,1,468,1,468,1,468,1,468,1,468, + 1,469,1,469,1,469,1,469,1,469,1,469,1,469,1,470,1,470,1,470,1,470, + 1,470,1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,472,1,472,1,472, + 1,472,1,472,1,473,1,473,1,473,1,473,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,1,475,1,475,1,475, + 1,475,1,475,1,475,1,475,1,475,1,475,1,476,1,476,1,476,1,476,1,476, + 1,476,1,476,1,476,1,476,1,476,1,476,1,477,1,477,1,477,1,477,1,477, + 1,477,1,477,1,477,1,477,1,478,1,478,1,478,1,478,1,478,1,478,1,478, + 1,478,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479, + 1,479,1,479,1,479,1,479,1,480,1,480,1,480,1,480,1,480,1,480,1,480, + 1,480,1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481, + 1,481,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,483,1,483,1,483, + 1,483,1,483,1,483,1,483,1,484,1,484,1,484,1,484,1,484,1,484,1,484, + 1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,486,1,486,1,486,1,486, + 1,487,1,487,1,487,1,487,1,488,1,488,1,488,1,488,1,488,1,489,1,489, + 1,489,1,489,1,489,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490, + 1,491,1,491,1,491,1,491,1,491,1,491,1,492,1,492,1,492,1,492,1,492, + 1,492,1,492,1,492,1,492,1,492,1,493,1,493,1,493,1,493,1,493,1,494, 1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494, - 1,494,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,1,495,1,495,1,495,1,496, - 1,496,1,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,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,499,1,499,1,499,1,499, - 1,499,1,499,1,500,1,500,1,500,1,500,1,500,1,500,1,500,1,500,1,500, - 1,501,1,501,1,501,1,501,1,501,1,501,1,501,1,501,1,502,1,502,1,502, - 1,502,1,503,1,503,1,503,1,503,1,503,1,503,1,503,1,503,1,503,1,503, - 1,503,1,503,1,504,1,504,1,504,1,504,1,504,1,504,1,504,1,504,1,505, - 1,505,1,505,1,505,1,505,1,505,1,506,1,506,1,506,1,506,1,506,1,506, - 1,507,1,507,1,507,1,507,1,507,1,507,1,507,1,507,1,508,1,508,1,508, - 1,508,1,508,1,508,1,508,1,508,1,509,1,509,1,509,1,509,1,509,1,509, - 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,512,1,512,1,512,1,512,1,512,1,512,1,513,1,513,1,513,1,513, - 1,513,1,513,1,514,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,516,1,516,1,516,1,516,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,519,1,519,1,519,1,519,1,519,1,519,1,519,1,519,1,520,1,520,1,520, - 1,520,1,520,1,520,1,520,1,520,1,520,1,520,1,521,1,521,1,521,1,521, - 1,521,1,521,1,521,1,522,1,522,1,522,1,522,1,522,1,523,1,523,1,523, - 1,523,1,523,1,524,1,524,1,524,1,524,1,524,1,524,1,524,1,524,1,524, - 1,524,1,524,1,525,1,525,1,525,1,525,1,525,1,525,1,526,1,526,1,526, - 1,526,1,526,1,526,1,526,1,526,1,527,1,527,1,527,1,527,1,527,1,527, - 1,527,1,528,1,528,1,528,1,528,1,528,1,528,1,529,1,529,1,529,1,529, - 1,529,1,529,1,529,1,529,1,530,1,530,1,530,1,530,1,530,1,530,1,530, - 1,530,1,531,1,531,1,531,1,531,1,531,1,531,1,532,1,532,1,532,1,532, - 1,532,1,532,1,532,1,533,1,533,1,533,1,533,1,533,1,533,1,533,1,533, - 1,533,1,533,1,533,1,534,1,534,1,534,1,534,1,534,1,535,1,535,1,535, - 1,535,1,535,1,535,1,535,1,535,1,535,1,536,1,536,1,536,1,536,1,536, - 1,536,1,536,1,536,1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,537, - 1,537,1,537,1,538,1,538,1,538,1,538,1,538,1,538,1,539,1,539,1,539, - 1,539,1,539,1,539,1,539,1,539,1,540,1,540,1,540,1,540,1,540,1,540, - 1,540,1,540,1,540,1,540,1,540,1,540,1,541,1,541,1,541,1,541,1,541, - 1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,542,1,542, - 1,542,1,542,1,542,1,542,1,542,1,542,1,542,1,542,1,543,1,543,1,543, - 1,543,1,543,1,543,1,543,1,543,1,543,1,543,1,543,1,543,1,544,1,544, - 1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,545,1,545, - 1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,546, - 1,546,1,546,1,546,1,546,1,546,1,546,1,546,1,546,1,546,1,546,1,546, - 1,547,1,547,1,547,1,547,1,547,1,547,1,548,1,548,1,548,1,548,1,548, - 1,548,1,548,1,548,1,548,1,549,1,549,1,549,1,549,1,549,1,550,1,550, - 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,551, + 1,494,1,494,1,494,1,494,1,494,1,494,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,1,495,1,495,1,495,1,496,1,496,1,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, + 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,499,1,499,1,499,1,499,1,499,1,499,1,500,1,500,1,500,1,500, + 1,500,1,500,1,500,1,500,1,500,1,501,1,501,1,501,1,501,1,501,1,501, + 1,501,1,501,1,502,1,502,1,502,1,502,1,503,1,503,1,503,1,503,1,503, + 1,503,1,503,1,503,1,503,1,503,1,503,1,503,1,504,1,504,1,504,1,504, + 1,504,1,504,1,504,1,504,1,505,1,505,1,505,1,505,1,505,1,505,1,506, + 1,506,1,506,1,506,1,506,1,506,1,507,1,507,1,507,1,507,1,507,1,507, + 1,507,1,507,1,508,1,508,1,508,1,508,1,508,1,508,1,508,1,508,1,509, + 1,509,1,509,1,509,1,509,1,509,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,512,1,512,1,512,1,512,1,512, + 1,512,1,513,1,513,1,513,1,513,1,513,1,513,1,514,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,516,1,516,1,516,1,516,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,519,1,519,1,519,1,519,1,519,1,519, + 1,519,1,519,1,520,1,520,1,520,1,520,1,520,1,520,1,520,1,520,1,520, + 1,520,1,521,1,521,1,521,1,521,1,521,1,521,1,521,1,522,1,522,1,522, + 1,522,1,522,1,523,1,523,1,523,1,523,1,523,1,524,1,524,1,524,1,524, + 1,524,1,524,1,524,1,524,1,524,1,524,1,524,1,525,1,525,1,525,1,525, + 1,525,1,525,1,526,1,526,1,526,1,526,1,526,1,526,1,526,1,526,1,527, + 1,527,1,527,1,527,1,527,1,527,1,527,1,528,1,528,1,528,1,528,1,528, + 1,528,1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,530,1,530, + 1,530,1,530,1,530,1,530,1,530,1,530,1,531,1,531,1,531,1,531,1,531, + 1,531,1,532,1,532,1,532,1,532,1,532,1,532,1,532,1,533,1,533,1,533, + 1,533,1,533,1,533,1,533,1,533,1,533,1,533,1,533,1,534,1,534,1,534, + 1,534,1,534,1,535,1,535,1,535,1,535,1,535,1,535,1,535,1,535,1,535, + 1,536,1,536,1,536,1,536,1,536,1,536,1,536,1,536,1,537,1,537,1,537, + 1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,538,1,538,1,538,1,538, + 1,538,1,538,1,539,1,539,1,539,1,539,1,539,1,539,1,539,1,539,1,540, + 1,540,1,540,1,540,1,540,1,540,1,540,1,540,1,540,1,540,1,540,1,540, + 1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541, + 1,541,1,541,1,541,1,542,1,542,1,542,1,542,1,542,1,542,1,542,1,542, + 1,542,1,542,1,543,1,543,1,543,1,543,1,543,1,543,1,543,1,543,1,543, + 1,543,1,543,1,543,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544, + 1,544,1,544,1,544,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545, + 1,545,1,545,1,545,1,545,1,546,1,546,1,546,1,546,1,546,1,546,1,546, + 1,546,1,546,1,546,1,546,1,546,1,547,1,547,1,547,1,547,1,547,1,547, + 1,548,1,548,1,548,1,548,1,548,1,548,1,548,1,548,1,548,1,549,1,549, + 1,549,1,549,1,549,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,551,1,551,1,551,1,551,1,551,1,551,1,551, 1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551, - 1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,552,1,552,1,552,1,552, - 1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,553,1,553,1,553, - 1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553, - 1,553,1,554,1,554,1,554,1,554,1,554,1,554,1,554,1,554,1,554,1,554, - 1,554,1,555,1,555,5,555,5399,8,555,10,555,12,555,5402,9,555,1,556, - 1,556,1,556,3,556,5407,8,556,1,557,1,557,3,557,5411,8,557,1,558, - 1,558,3,558,5415,8,558,1,559,1,559,1,559,1,560,1,560,1,560,1,560, - 5,560,5424,8,560,10,560,12,560,5427,9,560,1,561,1,561,1,561,1,562, - 1,562,1,562,1,562,5,562,5436,8,562,10,562,12,562,5439,9,562,1,563, - 1,563,1,563,1,563,1,564,1,564,1,564,1,564,1,565,1,565,1,565,1,565, - 1,566,1,566,1,566,1,566,1,567,1,567,1,567,1,568,1,568,1,568,1,568, - 5,568,5464,8,568,10,568,12,568,5467,9,568,1,569,1,569,1,569,1,569, - 1,569,1,569,1,570,1,570,1,570,1,571,1,571,1,571,1,571,1,572,1,572, - 3,572,5484,8,572,1,572,1,572,1,572,1,572,1,573,1,573,5,573,5492, - 8,573,10,573,12,573,5495,9,573,1,574,1,574,1,574,1,575,1,575,1,575, - 5,575,5503,8,575,10,575,12,575,5506,9,575,1,576,1,576,1,576,1,577, - 1,577,1,577,1,578,1,578,1,578,1,579,1,579,1,579,5,579,5520,8,579, - 10,579,12,579,5523,9,579,1,580,1,580,1,580,1,581,1,581,1,581,1,582, - 1,582,1,583,1,583,1,583,1,583,1,584,1,584,1,584,3,584,5540,8,584, - 1,584,1,584,3,584,5544,8,584,1,584,3,584,5547,8,584,1,584,1,584, - 1,584,1,584,3,584,5553,8,584,1,584,3,584,5556,8,584,1,584,1,584, - 1,584,3,584,5561,8,584,1,584,1,584,3,584,5565,8,584,1,585,4,585, - 5568,8,585,11,585,12,585,5569,1,586,1,586,1,586,5,586,5575,8,586, - 10,586,12,586,5578,9,586,1,587,1,587,1,587,1,587,1,587,1,587,1,587, - 1,587,5,587,5588,8,587,10,587,12,587,5591,9,587,1,587,1,587,1,588, - 4,588,5596,8,588,11,588,12,588,5597,1,588,1,588,1,589,1,589,3,589, - 5604,8,589,1,589,3,589,5607,8,589,1,589,1,589,1,590,1,590,1,590, - 1,590,5,590,5615,8,590,10,590,12,590,5618,9,590,1,590,1,590,1,591, - 1,591,1,591,1,591,5,591,5626,8,591,10,591,12,591,5629,9,591,1,591, - 1,591,1,591,4,591,5634,8,591,11,591,12,591,5635,1,591,1,591,4,591, - 5640,8,591,11,591,12,591,5641,1,591,5,591,5645,8,591,10,591,12,591, - 5648,9,591,1,591,5,591,5651,8,591,10,591,12,591,5654,9,591,1,591, - 1,591,1,591,1,591,1,591,1,592,1,592,1,592,1,592,5,592,5665,8,592, - 10,592,12,592,5668,9,592,1,592,1,592,1,592,4,592,5673,8,592,11,592, - 12,592,5674,1,592,1,592,4,592,5679,8,592,11,592,12,592,5680,1,592, - 3,592,5684,8,592,5,592,5686,8,592,10,592,12,592,5689,9,592,1,592, - 4,592,5692,8,592,11,592,12,592,5693,1,592,4,592,5697,8,592,11,592, - 12,592,5698,1,592,5,592,5702,8,592,10,592,12,592,5705,9,592,1,592, - 3,592,5708,8,592,1,593,1,593,1,593,1,593,5,593,5714,8,593,10,593, - 12,593,5717,9,593,1,593,5,593,5720,8,593,10,593,12,593,5723,9,593, - 1,593,1,593,5,593,5727,8,593,10,593,12,593,5730,9,593,3,593,5732, - 8,593,1,594,1,594,1,594,1,595,1,595,1,596,1,596,1,596,1,596,1,596, - 1,597,1,597,3,597,5746,8,597,1,597,1,597,1,598,1,598,1,598,1,598, - 1,598,1,598,1,598,1,598,1,598,1,598,1,598,1,598,1,598,1,598,1,598, - 1,598,1,598,1,598,1,598,1,598,3,598,5770,8,598,1,598,5,598,5773, - 8,598,10,598,12,598,5776,9,598,1,599,1,599,1,599,1,599,1,599,1,600, - 1,600,3,600,5785,8,600,1,600,1,600,1,601,1,601,1,601,1,601,1,601, - 5,601,5794,8,601,10,601,12,601,5797,9,601,1,602,1,602,1,602,1,602, - 1,602,1,603,1,603,1,603,1,603,1,603,1,603,1,604,1,604,1,604,1,604, - 1,604,1,605,1,605,1,605,1,605,1,605,1,606,1,606,1,606,1,606,1,606, - 1,607,4,607,5826,8,607,11,607,12,607,5827,1,607,1,607,5,607,5832, - 8,607,10,607,12,607,5835,9,607,3,607,5837,8,607,1,608,1,608,3,608, - 5841,8,608,1,608,1,608,1,608,1,608,0,0,609,5,1,7,2,9,3,11,4,13,5, + 1,551,1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,552, + 1,552,1,552,1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553,1,553, + 1,553,1,553,1,553,1,553,1,553,1,553,1,554,1,554,1,554,1,554,1,554, + 1,554,1,554,1,554,1,554,1,554,1,554,1,555,1,555,5,555,5393,8,555, + 10,555,12,555,5396,9,555,1,556,1,556,1,556,3,556,5401,8,556,1,557, + 1,557,3,557,5405,8,557,1,558,1,558,3,558,5409,8,558,1,559,1,559, + 1,559,1,560,1,560,1,560,1,560,5,560,5418,8,560,10,560,12,560,5421, + 9,560,1,561,1,561,1,561,1,562,1,562,1,562,1,562,5,562,5430,8,562, + 10,562,12,562,5433,9,562,1,563,1,563,1,563,1,563,1,564,1,564,1,564, + 1,564,1,565,1,565,1,565,1,565,1,566,1,566,1,566,1,566,1,567,1,567, + 1,567,1,568,1,568,1,568,1,568,5,568,5458,8,568,10,568,12,568,5461, + 9,568,1,569,1,569,1,569,1,569,1,569,1,569,1,570,1,570,1,570,1,571, + 1,571,1,571,1,571,1,572,1,572,3,572,5478,8,572,1,572,1,572,1,572, + 1,572,1,573,1,573,5,573,5486,8,573,10,573,12,573,5489,9,573,1,574, + 1,574,1,574,1,575,1,575,1,575,5,575,5497,8,575,10,575,12,575,5500, + 9,575,1,576,1,576,1,576,1,577,1,577,1,577,1,578,1,578,1,578,1,579, + 1,579,1,579,5,579,5514,8,579,10,579,12,579,5517,9,579,1,580,1,580, + 1,580,1,581,1,581,1,581,1,582,1,582,1,583,1,583,1,583,1,583,1,584, + 1,584,1,584,3,584,5534,8,584,1,584,1,584,3,584,5538,8,584,1,584, + 3,584,5541,8,584,1,584,1,584,1,584,1,584,3,584,5547,8,584,1,584, + 3,584,5550,8,584,1,584,1,584,1,584,3,584,5555,8,584,1,584,1,584, + 3,584,5559,8,584,1,585,4,585,5562,8,585,11,585,12,585,5563,1,586, + 1,586,1,586,5,586,5569,8,586,10,586,12,586,5572,9,586,1,587,1,587, + 1,587,1,587,1,587,1,587,1,587,1,587,5,587,5582,8,587,10,587,12,587, + 5585,9,587,1,587,1,587,1,588,1,588,1,588,1,588,1,589,1,589,1,589, + 1,589,5,589,5597,8,589,10,589,12,589,5600,9,589,1,589,1,589,1,590, + 1,590,1,590,1,590,5,590,5608,8,590,10,590,12,590,5611,9,590,1,590, + 1,590,1,590,4,590,5616,8,590,11,590,12,590,5617,1,590,1,590,4,590, + 5622,8,590,11,590,12,590,5623,1,590,5,590,5627,8,590,10,590,12,590, + 5630,9,590,1,590,5,590,5633,8,590,10,590,12,590,5636,9,590,1,590, + 1,590,1,590,1,590,1,590,1,591,1,591,1,591,1,591,5,591,5647,8,591, + 10,591,12,591,5650,9,591,1,591,1,591,1,591,4,591,5655,8,591,11,591, + 12,591,5656,1,591,1,591,4,591,5661,8,591,11,591,12,591,5662,1,591, + 3,591,5666,8,591,5,591,5668,8,591,10,591,12,591,5671,9,591,1,591, + 4,591,5674,8,591,11,591,12,591,5675,1,591,4,591,5679,8,591,11,591, + 12,591,5680,1,591,5,591,5684,8,591,10,591,12,591,5687,9,591,1,591, + 3,591,5690,8,591,1,592,1,592,1,592,1,592,5,592,5696,8,592,10,592, + 12,592,5699,9,592,1,592,5,592,5702,8,592,10,592,12,592,5705,9,592, + 1,592,1,592,5,592,5709,8,592,10,592,12,592,5712,9,592,3,592,5714, + 8,592,1,593,1,593,1,593,1,594,1,594,1,595,1,595,1,595,1,595,1,595, + 1,596,1,596,3,596,5728,8,596,1,596,1,596,1,597,1,597,1,597,1,597, + 1,597,1,597,1,597,1,597,1,597,1,597,1,597,1,597,1,597,1,597,1,597, + 1,597,1,597,1,597,1,597,1,597,3,597,5752,8,597,1,597,5,597,5755, + 8,597,10,597,12,597,5758,9,597,1,598,1,598,1,598,1,598,1,598,1,599, + 1,599,3,599,5767,8,599,1,599,1,599,1,600,1,600,1,600,1,600,1,600, + 5,600,5776,8,600,10,600,12,600,5779,9,600,1,601,1,601,1,601,1,601, + 1,601,1,602,1,602,1,602,1,602,1,602,1,603,1,603,1,603,1,603,1,603, + 1,604,4,604,5797,8,604,11,604,12,604,5798,1,604,1,604,5,604,5803, + 8,604,10,604,12,604,5806,9,604,3,604,5808,8,604,1,605,1,605,3,605, + 5812,8,605,1,605,1,605,1,605,1,605,0,0,606,5,1,7,2,9,3,11,4,13,5, 15,6,17,7,19,8,21,9,23,10,25,11,27,12,29,13,31,14,33,15,35,16,37, 17,39,18,41,19,43,20,45,21,47,22,49,23,51,24,53,25,55,26,57,27,59, 28,61,29,63,0,65,0,67,0,69,0,71,30,73,31,75,32,77,33,79,34,81,35, @@ -1595,1655 +1590,1645 @@ export class PostgreSqlLexer extends antlr.Lexer { 0,1153,566,1155,567,1157,568,1159,569,1161,570,1163,571,1165,572, 1167,573,1169,574,1171,575,1173,576,1175,0,1177,577,1179,578,1181, 579,1183,580,1185,581,1187,582,1189,583,1191,584,1193,585,1195,586, - 1197,587,1199,588,1201,0,1203,589,1205,590,1207,0,1209,0,1211,0, - 1213,0,1215,0,1217,593,1219,591,1221,592,5,0,1,2,3,4,51,1,0,48,57, - 2,0,43,43,45,45,2,0,45,45,47,47,9,0,33,33,35,35,37,38,42,42,60,64, - 94,94,96,96,124,124,126,126,2,0,42,43,60,62,8,0,33,33,35,35,37,38, - 63,64,94,94,96,96,124,124,126,126,2,0,65,65,97,97,2,0,76,76,108, - 108,2,0,78,78,110,110,2,0,89,89,121,121,2,0,83,83,115,115,2,0,69, - 69,101,101,2,0,90,90,122,122,2,0,68,68,100,100,2,0,82,82,114,114, - 2,0,67,67,99,99,2,0,77,77,109,109,2,0,84,84,116,116,2,0,73,73,105, - 105,2,0,66,66,98,98,2,0,79,79,111,111,2,0,72,72,104,104,2,0,75,75, - 107,107,2,0,85,85,117,117,2,0,71,71,103,103,2,0,80,80,112,112,2, - 0,70,70,102,102,2,0,88,88,120,120,2,0,86,86,118,118,2,0,81,81,113, - 113,2,0,87,87,119,119,2,0,74,74,106,106,10,0,65,90,95,95,97,122, - 170,170,181,181,186,186,192,214,224,246,248,55295,57344,65535,1, - 0,55296,56319,1,0,56320,57343,2,0,0,0,34,34,1,0,34,34,1,0,39,39, - 1,0,48,49,3,0,48,57,65,70,97,102,3,0,65,90,95,95,97,122,5,0,36,36, - 48,57,65,90,95,95,97,122,2,0,34,34,92,92,2,0,9,9,32,32,2,0,10,10, - 13,13,2,0,42,42,47,47,4,0,10,10,13,13,34,34,92,92,3,0,10,10,13,13, - 34,34,4,0,85,85,88,88,117,117,120,120,2,0,39,39,92,92,1,0,36,36, - 5915,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0, - 0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0, - 0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0, - 0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0, - 0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0, - 0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0, - 0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0, - 0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0, - 0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0, - 0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109, - 1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0, - 0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1, - 0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0, - 137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0, - 0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155, - 1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0, - 0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1, - 0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0, - 183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0, - 0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201, - 1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0, - 0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1, - 0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0, - 229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0, - 0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247, - 1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0, - 0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1, - 0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0, - 275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0, - 0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293, - 1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0, - 0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1, - 0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0, - 321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0, - 0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339, - 1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0, - 0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1, - 0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0, - 367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1,0,0,0,0,375,1,0, - 0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385, - 1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0, - 0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401,1,0,0,0,0,403,1, - 0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0,0,411,1,0,0,0,0, - 413,1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1,0,0,0,0,421,1,0, - 0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427,1,0,0,0,0,429,1,0,0,0,0,431, - 1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0,0,437,1,0,0,0,0,439,1,0,0,0, - 0,441,1,0,0,0,0,443,1,0,0,0,0,445,1,0,0,0,0,447,1,0,0,0,0,449,1, - 0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455,1,0,0,0,0,457,1,0,0,0,0, - 459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1,0,0,0,0,467,1,0, - 0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0,0,0,0,477, - 1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0,0,0, - 0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1, - 0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0, - 505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0, - 0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523, - 1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0,0,0,0,531,1,0,0,0, - 0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0,0,539,1,0,0,0,0,541,1, - 0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1,0,0,0,0,549,1,0,0,0,0, - 551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0,557,1,0,0,0,0,559,1,0, - 0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0,0,0,0,567,1,0,0,0,0,569, - 1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0,0,575,1,0,0,0,0,577,1,0,0,0, - 0,579,1,0,0,0,0,581,1,0,0,0,0,583,1,0,0,0,0,585,1,0,0,0,0,587,1, - 0,0,0,0,589,1,0,0,0,0,591,1,0,0,0,0,593,1,0,0,0,0,595,1,0,0,0,0, - 597,1,0,0,0,0,599,1,0,0,0,0,601,1,0,0,0,0,603,1,0,0,0,0,605,1,0, - 0,0,0,607,1,0,0,0,0,609,1,0,0,0,0,611,1,0,0,0,0,613,1,0,0,0,0,615, - 1,0,0,0,0,617,1,0,0,0,0,619,1,0,0,0,0,621,1,0,0,0,0,623,1,0,0,0, - 0,625,1,0,0,0,0,627,1,0,0,0,0,629,1,0,0,0,0,631,1,0,0,0,0,633,1, - 0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0,639,1,0,0,0,0,641,1,0,0,0,0, - 643,1,0,0,0,0,645,1,0,0,0,0,647,1,0,0,0,0,649,1,0,0,0,0,651,1,0, - 0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657,1,0,0,0,0,659,1,0,0,0,0,661, - 1,0,0,0,0,663,1,0,0,0,0,665,1,0,0,0,0,667,1,0,0,0,0,669,1,0,0,0, - 0,671,1,0,0,0,0,673,1,0,0,0,0,675,1,0,0,0,0,677,1,0,0,0,0,679,1, - 0,0,0,0,681,1,0,0,0,0,683,1,0,0,0,0,685,1,0,0,0,0,687,1,0,0,0,0, - 689,1,0,0,0,0,691,1,0,0,0,0,693,1,0,0,0,0,695,1,0,0,0,0,697,1,0, - 0,0,0,699,1,0,0,0,0,701,1,0,0,0,0,703,1,0,0,0,0,705,1,0,0,0,0,707, - 1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0,0,713,1,0,0,0,0,715,1,0,0,0, - 0,717,1,0,0,0,0,719,1,0,0,0,0,721,1,0,0,0,0,723,1,0,0,0,0,725,1, - 0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0,731,1,0,0,0,0,733,1,0,0,0,0, - 735,1,0,0,0,0,737,1,0,0,0,0,739,1,0,0,0,0,741,1,0,0,0,0,743,1,0, - 0,0,0,745,1,0,0,0,0,747,1,0,0,0,0,749,1,0,0,0,0,751,1,0,0,0,0,753, - 1,0,0,0,0,755,1,0,0,0,0,757,1,0,0,0,0,759,1,0,0,0,0,761,1,0,0,0, - 0,763,1,0,0,0,0,765,1,0,0,0,0,767,1,0,0,0,0,769,1,0,0,0,0,771,1, - 0,0,0,0,773,1,0,0,0,0,775,1,0,0,0,0,777,1,0,0,0,0,779,1,0,0,0,0, - 781,1,0,0,0,0,783,1,0,0,0,0,785,1,0,0,0,0,787,1,0,0,0,0,789,1,0, - 0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795,1,0,0,0,0,797,1,0,0,0,0,799, - 1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0,0,805,1,0,0,0,0,807,1,0,0,0, - 0,809,1,0,0,0,0,811,1,0,0,0,0,813,1,0,0,0,0,815,1,0,0,0,0,817,1, - 0,0,0,0,819,1,0,0,0,0,821,1,0,0,0,0,823,1,0,0,0,0,825,1,0,0,0,0, - 827,1,0,0,0,0,829,1,0,0,0,0,831,1,0,0,0,0,833,1,0,0,0,0,835,1,0, - 0,0,0,837,1,0,0,0,0,839,1,0,0,0,0,841,1,0,0,0,0,843,1,0,0,0,0,845, - 1,0,0,0,0,847,1,0,0,0,0,849,1,0,0,0,0,851,1,0,0,0,0,853,1,0,0,0, - 0,855,1,0,0,0,0,857,1,0,0,0,0,859,1,0,0,0,0,861,1,0,0,0,0,863,1, - 0,0,0,0,865,1,0,0,0,0,867,1,0,0,0,0,869,1,0,0,0,0,871,1,0,0,0,0, - 873,1,0,0,0,0,875,1,0,0,0,0,877,1,0,0,0,0,879,1,0,0,0,0,881,1,0, - 0,0,0,883,1,0,0,0,0,885,1,0,0,0,0,887,1,0,0,0,0,889,1,0,0,0,0,891, - 1,0,0,0,0,893,1,0,0,0,0,895,1,0,0,0,0,897,1,0,0,0,0,899,1,0,0,0, - 0,901,1,0,0,0,0,903,1,0,0,0,0,905,1,0,0,0,0,907,1,0,0,0,0,909,1, - 0,0,0,0,911,1,0,0,0,0,913,1,0,0,0,0,915,1,0,0,0,0,917,1,0,0,0,0, - 919,1,0,0,0,0,921,1,0,0,0,0,923,1,0,0,0,0,925,1,0,0,0,0,927,1,0, - 0,0,0,929,1,0,0,0,0,931,1,0,0,0,0,933,1,0,0,0,0,935,1,0,0,0,0,937, - 1,0,0,0,0,939,1,0,0,0,0,941,1,0,0,0,0,943,1,0,0,0,0,945,1,0,0,0, - 0,947,1,0,0,0,0,949,1,0,0,0,0,951,1,0,0,0,0,953,1,0,0,0,0,955,1, - 0,0,0,0,957,1,0,0,0,0,959,1,0,0,0,0,961,1,0,0,0,0,963,1,0,0,0,0, - 965,1,0,0,0,0,967,1,0,0,0,0,969,1,0,0,0,0,971,1,0,0,0,0,973,1,0, - 0,0,0,975,1,0,0,0,0,977,1,0,0,0,0,979,1,0,0,0,0,981,1,0,0,0,0,983, - 1,0,0,0,0,985,1,0,0,0,0,987,1,0,0,0,0,989,1,0,0,0,0,991,1,0,0,0, - 0,993,1,0,0,0,0,995,1,0,0,0,0,997,1,0,0,0,0,999,1,0,0,0,0,1001,1, - 0,0,0,0,1003,1,0,0,0,0,1005,1,0,0,0,0,1007,1,0,0,0,0,1009,1,0,0, - 0,0,1011,1,0,0,0,0,1013,1,0,0,0,0,1015,1,0,0,0,0,1017,1,0,0,0,0, - 1019,1,0,0,0,0,1021,1,0,0,0,0,1023,1,0,0,0,0,1025,1,0,0,0,0,1027, - 1,0,0,0,0,1029,1,0,0,0,0,1031,1,0,0,0,0,1033,1,0,0,0,0,1035,1,0, - 0,0,0,1037,1,0,0,0,0,1039,1,0,0,0,0,1041,1,0,0,0,0,1043,1,0,0,0, - 0,1045,1,0,0,0,0,1047,1,0,0,0,0,1049,1,0,0,0,0,1051,1,0,0,0,0,1053, - 1,0,0,0,0,1055,1,0,0,0,0,1057,1,0,0,0,0,1059,1,0,0,0,0,1061,1,0, - 0,0,0,1063,1,0,0,0,0,1065,1,0,0,0,0,1067,1,0,0,0,0,1069,1,0,0,0, - 0,1071,1,0,0,0,0,1073,1,0,0,0,0,1075,1,0,0,0,0,1077,1,0,0,0,0,1079, - 1,0,0,0,0,1081,1,0,0,0,0,1083,1,0,0,0,0,1085,1,0,0,0,0,1087,1,0, - 0,0,0,1089,1,0,0,0,0,1091,1,0,0,0,0,1093,1,0,0,0,0,1095,1,0,0,0, - 0,1097,1,0,0,0,0,1099,1,0,0,0,0,1101,1,0,0,0,0,1103,1,0,0,0,0,1105, - 1,0,0,0,0,1107,1,0,0,0,0,1109,1,0,0,0,0,1111,1,0,0,0,0,1113,1,0, - 0,0,0,1115,1,0,0,0,0,1123,1,0,0,0,0,1125,1,0,0,0,0,1127,1,0,0,0, - 0,1129,1,0,0,0,0,1131,1,0,0,0,0,1133,1,0,0,0,0,1135,1,0,0,0,0,1137, - 1,0,0,0,0,1139,1,0,0,0,0,1141,1,0,0,0,0,1143,1,0,0,0,0,1145,1,0, - 0,0,0,1147,1,0,0,0,0,1149,1,0,0,0,0,1153,1,0,0,0,0,1155,1,0,0,0, - 0,1157,1,0,0,0,0,1159,1,0,0,0,0,1161,1,0,0,0,0,1163,1,0,0,0,0,1165, - 1,0,0,0,0,1167,1,0,0,0,0,1169,1,0,0,0,0,1171,1,0,0,0,0,1173,1,0, - 0,0,0,1177,1,0,0,0,0,1179,1,0,0,0,0,1181,1,0,0,0,0,1183,1,0,0,0, - 0,1185,1,0,0,0,0,1187,1,0,0,0,0,1189,1,0,0,0,0,1191,1,0,0,0,0,1193, - 1,0,0,0,0,1195,1,0,0,0,1,1197,1,0,0,0,1,1199,1,0,0,0,1,1203,1,0, - 0,0,1,1205,1,0,0,0,2,1209,1,0,0,0,2,1211,1,0,0,0,3,1213,1,0,0,0, - 3,1215,1,0,0,0,3,1217,1,0,0,0,4,1219,1,0,0,0,4,1221,1,0,0,0,5,1223, - 1,0,0,0,7,1225,1,0,0,0,9,1227,1,0,0,0,11,1229,1,0,0,0,13,1231,1, - 0,0,0,15,1233,1,0,0,0,17,1235,1,0,0,0,19,1237,1,0,0,0,21,1239,1, - 0,0,0,23,1241,1,0,0,0,25,1243,1,0,0,0,27,1245,1,0,0,0,29,1247,1, - 0,0,0,31,1249,1,0,0,0,33,1251,1,0,0,0,35,1253,1,0,0,0,37,1255,1, - 0,0,0,39,1257,1,0,0,0,41,1260,1,0,0,0,43,1263,1,0,0,0,45,1266,1, - 0,0,0,47,1269,1,0,0,0,49,1272,1,0,0,0,51,1275,1,0,0,0,53,1278,1, - 0,0,0,55,1281,1,0,0,0,57,1284,1,0,0,0,59,1286,1,0,0,0,61,1310,1, - 0,0,0,63,1316,1,0,0,0,65,1330,1,0,0,0,67,1332,1,0,0,0,69,1334,1, - 0,0,0,71,1336,1,0,0,0,73,1340,1,0,0,0,75,1348,1,0,0,0,77,1356,1, - 0,0,0,79,1360,1,0,0,0,81,1364,1,0,0,0,83,1370,1,0,0,0,85,1373,1, - 0,0,0,87,1377,1,0,0,0,89,1388,1,0,0,0,91,1393,1,0,0,0,93,1398,1, - 0,0,0,95,1403,1,0,0,0,97,1409,1,0,0,0,99,1417,1,0,0,0,101,1424,1, - 0,0,0,103,1435,1,0,0,0,105,1442,1,0,0,0,107,1458,1,0,0,0,109,1471, - 1,0,0,0,111,1484,1,0,0,0,113,1497,1,0,0,0,115,1515,1,0,0,0,117,1528, - 1,0,0,0,119,1536,1,0,0,0,121,1547,1,0,0,0,123,1552,1,0,0,0,125,1561, - 1,0,0,0,127,1564,1,0,0,0,129,1569,1,0,0,0,131,1576,1,0,0,0,133,1582, - 1,0,0,0,135,1588,1,0,0,0,137,1592,1,0,0,0,139,1600,1,0,0,0,141,1605, - 1,0,0,0,143,1611,1,0,0,0,145,1617,1,0,0,0,147,1624,1,0,0,0,149,1627, - 1,0,0,0,151,1637,1,0,0,0,153,1647,1,0,0,0,155,1652,1,0,0,0,157,1660, - 1,0,0,0,159,1668,1,0,0,0,161,1674,1,0,0,0,163,1684,1,0,0,0,165,1699, - 1,0,0,0,167,1703,1,0,0,0,169,1708,1,0,0,0,171,1715,1,0,0,0,173,1718, - 1,0,0,0,175,1723,1,0,0,0,177,1726,1,0,0,0,179,1732,1,0,0,0,181,1740, - 1,0,0,0,183,1748,1,0,0,0,185,1759,1,0,0,0,187,1769,1,0,0,0,189,1776, - 1,0,0,0,191,1789,1,0,0,0,193,1794,1,0,0,0,195,1804,1,0,0,0,197,1810, - 1,0,0,0,199,1815,1,0,0,0,201,1818,1,0,0,0,203,1827,1,0,0,0,205,1832, - 1,0,0,0,207,1838,1,0,0,0,209,1845,1,0,0,0,211,1850,1,0,0,0,213,1856, - 1,0,0,0,215,1865,1,0,0,0,217,1870,1,0,0,0,219,1876,1,0,0,0,221,1883, - 1,0,0,0,223,1888,1,0,0,0,225,1902,1,0,0,0,227,1909,1,0,0,0,229,1919, - 1,0,0,0,231,1932,1,0,0,0,233,1938,1,0,0,0,235,1953,1,0,0,0,237,1960, - 1,0,0,0,239,1965,1,0,0,0,241,1971,1,0,0,0,243,1977,1,0,0,0,245,1980, - 1,0,0,0,247,1987,1,0,0,0,249,1992,1,0,0,0,251,1997,1,0,0,0,253,2002, - 1,0,0,0,255,2010,1,0,0,0,257,2018,1,0,0,0,259,2024,1,0,0,0,261,2029, - 1,0,0,0,263,2038,1,0,0,0,265,2044,1,0,0,0,267,2052,1,0,0,0,269,2060, - 1,0,0,0,271,2066,1,0,0,0,273,2075,1,0,0,0,275,2082,1,0,0,0,277,2089, - 1,0,0,0,279,2093,1,0,0,0,281,2099,1,0,0,0,283,2105,1,0,0,0,285,2115, - 1,0,0,0,287,2120,1,0,0,0,289,2126,1,0,0,0,291,2133,1,0,0,0,293,2143, - 1,0,0,0,295,2154,1,0,0,0,297,2157,1,0,0,0,299,2167,1,0,0,0,301,2176, - 1,0,0,0,303,2183,1,0,0,0,305,2189,1,0,0,0,307,2192,1,0,0,0,309,2198, - 1,0,0,0,311,2205,1,0,0,0,313,2213,1,0,0,0,315,2222,1,0,0,0,317,2230, - 1,0,0,0,319,2236,1,0,0,0,321,2252,1,0,0,0,323,2263,1,0,0,0,325,2269, - 1,0,0,0,327,2275,1,0,0,0,329,2283,1,0,0,0,331,2291,1,0,0,0,333,2300, - 1,0,0,0,335,2307,1,0,0,0,337,2317,1,0,0,0,339,2331,1,0,0,0,341,2342, - 1,0,0,0,343,2354,1,0,0,0,345,2362,1,0,0,0,347,2371,1,0,0,0,349,2382, - 1,0,0,0,351,2387,1,0,0,0,353,2392,1,0,0,0,355,2396,1,0,0,0,357,2403, - 1,0,0,0,359,2409,1,0,0,0,361,2414,1,0,0,0,363,2423,1,0,0,0,365,2427, - 1,0,0,0,367,2438,1,0,0,0,369,2446,1,0,0,0,371,2455,1,0,0,0,373,2464, - 1,0,0,0,375,2472,1,0,0,0,377,2479,1,0,0,0,379,2489,1,0,0,0,381,2500, - 1,0,0,0,383,2511,1,0,0,0,385,2519,1,0,0,0,387,2527,1,0,0,0,389,2536, - 1,0,0,0,391,2543,1,0,0,0,393,2550,1,0,0,0,395,2555,1,0,0,0,397,2560, - 1,0,0,0,399,2567,1,0,0,0,401,2576,1,0,0,0,403,2586,1,0,0,0,405,2591, - 1,0,0,0,407,2598,1,0,0,0,409,2604,1,0,0,0,411,2612,1,0,0,0,413,2622, - 1,0,0,0,415,2632,1,0,0,0,417,2640,1,0,0,0,419,2648,1,0,0,0,421,2658, - 1,0,0,0,423,2667,1,0,0,0,425,2674,1,0,0,0,427,2680,1,0,0,0,429,2690, - 1,0,0,0,431,2696,1,0,0,0,433,2704,1,0,0,0,435,2713,1,0,0,0,437,2723, - 1,0,0,0,439,2730,1,0,0,0,441,2738,1,0,0,0,443,2746,1,0,0,0,445,2753, - 1,0,0,0,447,2758,1,0,0,0,449,2763,1,0,0,0,451,2772,1,0,0,0,453,2775, - 1,0,0,0,455,2785,1,0,0,0,457,2795,1,0,0,0,459,2804,1,0,0,0,461,2814, - 1,0,0,0,463,2824,1,0,0,0,465,2830,1,0,0,0,467,2838,1,0,0,0,469,2846, - 1,0,0,0,471,2856,1,0,0,0,473,2866,1,0,0,0,475,2878,1,0,0,0,477,2887, - 1,0,0,0,479,2898,1,0,0,0,481,2909,1,0,0,0,483,2922,1,0,0,0,485,2933, - 1,0,0,0,487,2946,1,0,0,0,489,2955,1,0,0,0,491,2962,1,0,0,0,493,2974, - 1,0,0,0,495,2981,1,0,0,0,497,2989,1,0,0,0,499,2997,1,0,0,0,501,3007, - 1,0,0,0,503,3011,1,0,0,0,505,3017,1,0,0,0,507,3026,1,0,0,0,509,3032, - 1,0,0,0,511,3037,1,0,0,0,513,3047,1,0,0,0,515,3053,1,0,0,0,517,3060, - 1,0,0,0,519,3065,1,0,0,0,521,3071,1,0,0,0,523,3080,1,0,0,0,525,3085, - 1,0,0,0,527,3093,1,0,0,0,529,3099,1,0,0,0,531,3112,1,0,0,0,533,3121, - 1,0,0,0,535,3128,1,0,0,0,537,3137,1,0,0,0,539,3142,1,0,0,0,541,3148, - 1,0,0,0,543,3153,1,0,0,0,545,3158,1,0,0,0,547,3164,1,0,0,0,549,3169, - 1,0,0,0,551,3172,1,0,0,0,553,3180,1,0,0,0,555,3187,1,0,0,0,557,3194, - 1,0,0,0,559,3200,1,0,0,0,561,3207,1,0,0,0,563,3210,1,0,0,0,565,3214, - 1,0,0,0,567,3219,1,0,0,0,569,3228,1,0,0,0,571,3235,1,0,0,0,573,3243, - 1,0,0,0,575,3249,1,0,0,0,577,3255,1,0,0,0,579,3262,1,0,0,0,581,3270, - 1,0,0,0,583,3280,1,0,0,0,585,3288,1,0,0,0,587,3297,1,0,0,0,589,3303, - 1,0,0,0,591,3313,1,0,0,0,593,3321,1,0,0,0,595,3330,1,0,0,0,597,3339, - 1,0,0,0,599,3345,1,0,0,0,601,3356,1,0,0,0,603,3367,1,0,0,0,605,3377, - 1,0,0,0,607,3385,1,0,0,0,609,3391,1,0,0,0,611,3397,1,0,0,0,613,3402, - 1,0,0,0,615,3411,1,0,0,0,617,3419,1,0,0,0,619,3429,1,0,0,0,621,3433, - 1,0,0,0,623,3441,1,0,0,0,625,3449,1,0,0,0,627,3458,1,0,0,0,629,3466, - 1,0,0,0,631,3473,1,0,0,0,633,3484,1,0,0,0,635,3492,1,0,0,0,637,3500, - 1,0,0,0,639,3506,1,0,0,0,641,3514,1,0,0,0,643,3523,1,0,0,0,645,3531, - 1,0,0,0,647,3538,1,0,0,0,649,3543,1,0,0,0,651,3552,1,0,0,0,653,3557, - 1,0,0,0,655,3562,1,0,0,0,657,3572,1,0,0,0,659,3579,1,0,0,0,661,3586, - 1,0,0,0,663,3593,1,0,0,0,665,3600,1,0,0,0,667,3609,1,0,0,0,669,3618, - 1,0,0,0,671,3628,1,0,0,0,673,3641,1,0,0,0,675,3648,1,0,0,0,677,3656, - 1,0,0,0,679,3660,1,0,0,0,681,3666,1,0,0,0,683,3671,1,0,0,0,685,3678, - 1,0,0,0,687,3687,1,0,0,0,689,3694,1,0,0,0,691,3705,1,0,0,0,693,3711, - 1,0,0,0,695,3721,1,0,0,0,697,3732,1,0,0,0,699,3738,1,0,0,0,701,3745, - 1,0,0,0,703,3753,1,0,0,0,705,3760,1,0,0,0,707,3766,1,0,0,0,709,3772, - 1,0,0,0,711,3779,1,0,0,0,713,3786,1,0,0,0,715,3797,1,0,0,0,717,3802, - 1,0,0,0,719,3811,1,0,0,0,721,3821,1,0,0,0,723,3826,1,0,0,0,725,3838, - 1,0,0,0,727,3846,1,0,0,0,729,3855,1,0,0,0,731,3863,1,0,0,0,733,3868, - 1,0,0,0,735,3874,1,0,0,0,737,3884,1,0,0,0,739,3896,1,0,0,0,741,3908, - 1,0,0,0,743,3916,1,0,0,0,745,3925,1,0,0,0,747,3934,1,0,0,0,749,3940, - 1,0,0,0,751,3947,1,0,0,0,753,3954,1,0,0,0,755,3960,1,0,0,0,757,3969, - 1,0,0,0,759,3979,1,0,0,0,761,3987,1,0,0,0,763,3995,1,0,0,0,765,4000, - 1,0,0,0,767,4009,1,0,0,0,769,4020,1,0,0,0,771,4028,1,0,0,0,773,4033, - 1,0,0,0,775,4041,1,0,0,0,777,4047,1,0,0,0,779,4051,1,0,0,0,781,4056, - 1,0,0,0,783,4060,1,0,0,0,785,4065,1,0,0,0,787,4073,1,0,0,0,789,4080, - 1,0,0,0,791,4084,1,0,0,0,793,4092,1,0,0,0,795,4097,1,0,0,0,797,4107, - 1,0,0,0,799,4116,1,0,0,0,801,4120,1,0,0,0,803,4128,1,0,0,0,805,4135, - 1,0,0,0,807,4143,1,0,0,0,809,4149,1,0,0,0,811,4158,1,0,0,0,813,4164, - 1,0,0,0,815,4168,1,0,0,0,817,4176,1,0,0,0,819,4185,1,0,0,0,821,4191, - 1,0,0,0,823,4200,1,0,0,0,825,4206,1,0,0,0,827,4211,1,0,0,0,829,4218, - 1,0,0,0,831,4226,1,0,0,0,833,4234,1,0,0,0,835,4243,1,0,0,0,837,4253, - 1,0,0,0,839,4258,1,0,0,0,841,4262,1,0,0,0,843,4268,1,0,0,0,845,4277, - 1,0,0,0,847,4287,1,0,0,0,849,4292,1,0,0,0,851,4302,1,0,0,0,853,4308, - 1,0,0,0,855,4313,1,0,0,0,857,4320,1,0,0,0,859,4328,1,0,0,0,861,4342, - 1,0,0,0,863,4352,1,0,0,0,865,4363,1,0,0,0,867,4373,1,0,0,0,869,4383, - 1,0,0,0,871,4392,1,0,0,0,873,4398,1,0,0,0,875,4406,1,0,0,0,877,4419, - 1,0,0,0,879,4424,1,0,0,0,881,4432,1,0,0,0,883,4439,1,0,0,0,885,4446, - 1,0,0,0,887,4457,1,0,0,0,889,4467,1,0,0,0,891,4474,1,0,0,0,893,4481, - 1,0,0,0,895,4489,1,0,0,0,897,4497,1,0,0,0,899,4507,1,0,0,0,901,4514, - 1,0,0,0,903,4521,1,0,0,0,905,4528,1,0,0,0,907,4540,1,0,0,0,909,4544, - 1,0,0,0,911,4548,1,0,0,0,913,4554,1,0,0,0,915,4567,1,0,0,0,917,4579, - 1,0,0,0,919,4583,1,0,0,0,921,4587,1,0,0,0,923,4596,1,0,0,0,925,4604, - 1,0,0,0,927,4615,1,0,0,0,929,4621,1,0,0,0,931,4629,1,0,0,0,933,4638, - 1,0,0,0,935,4642,1,0,0,0,937,4650,1,0,0,0,939,4661,1,0,0,0,941,4670, - 1,0,0,0,943,4675,1,0,0,0,945,4682,1,0,0,0,947,4687,1,0,0,0,949,4694, - 1,0,0,0,951,4699,1,0,0,0,953,4708,1,0,0,0,955,4713,1,0,0,0,957,4725, - 1,0,0,0,959,4736,1,0,0,0,961,4745,1,0,0,0,963,4753,1,0,0,0,965,4767, - 1,0,0,0,967,4775,1,0,0,0,969,4786,1,0,0,0,971,4793,1,0,0,0,973,4800, - 1,0,0,0,975,4807,1,0,0,0,977,4814,1,0,0,0,979,4818,1,0,0,0,981,4822, - 1,0,0,0,983,4827,1,0,0,0,985,4832,1,0,0,0,987,4840,1,0,0,0,989,4846, - 1,0,0,0,991,4856,1,0,0,0,993,4861,1,0,0,0,995,4881,1,0,0,0,997,4899, - 1,0,0,0,999,4905,1,0,0,0,1001,4918,1,0,0,0,1003,4929,1,0,0,0,1005, - 4935,1,0,0,0,1007,4944,1,0,0,0,1009,4952,1,0,0,0,1011,4956,1,0,0, - 0,1013,4968,1,0,0,0,1015,4976,1,0,0,0,1017,4982,1,0,0,0,1019,4988, - 1,0,0,0,1021,4996,1,0,0,0,1023,5004,1,0,0,0,1025,5010,1,0,0,0,1027, - 5015,1,0,0,0,1029,5022,1,0,0,0,1031,5028,1,0,0,0,1033,5034,1,0,0, - 0,1035,5043,1,0,0,0,1037,5049,1,0,0,0,1039,5053,1,0,0,0,1041,5058, - 1,0,0,0,1043,5065,1,0,0,0,1045,5073,1,0,0,0,1047,5083,1,0,0,0,1049, - 5090,1,0,0,0,1051,5095,1,0,0,0,1053,5100,1,0,0,0,1055,5111,1,0,0, - 0,1057,5117,1,0,0,0,1059,5125,1,0,0,0,1061,5132,1,0,0,0,1063,5138, - 1,0,0,0,1065,5146,1,0,0,0,1067,5154,1,0,0,0,1069,5160,1,0,0,0,1071, - 5167,1,0,0,0,1073,5178,1,0,0,0,1075,5183,1,0,0,0,1077,5192,1,0,0, - 0,1079,5200,1,0,0,0,1081,5210,1,0,0,0,1083,5216,1,0,0,0,1085,5224, - 1,0,0,0,1087,5236,1,0,0,0,1089,5250,1,0,0,0,1091,5260,1,0,0,0,1093, - 5272,1,0,0,0,1095,5283,1,0,0,0,1097,5295,1,0,0,0,1099,5307,1,0,0, - 0,1101,5313,1,0,0,0,1103,5322,1,0,0,0,1105,5327,1,0,0,0,1107,5339, - 1,0,0,0,1109,5358,1,0,0,0,1111,5370,1,0,0,0,1113,5385,1,0,0,0,1115, - 5396,1,0,0,0,1117,5406,1,0,0,0,1119,5410,1,0,0,0,1121,5414,1,0,0, - 0,1123,5416,1,0,0,0,1125,5419,1,0,0,0,1127,5428,1,0,0,0,1129,5431, - 1,0,0,0,1131,5440,1,0,0,0,1133,5444,1,0,0,0,1135,5448,1,0,0,0,1137, - 5452,1,0,0,0,1139,5456,1,0,0,0,1141,5459,1,0,0,0,1143,5468,1,0,0, - 0,1145,5474,1,0,0,0,1147,5477,1,0,0,0,1149,5481,1,0,0,0,1151,5489, - 1,0,0,0,1153,5496,1,0,0,0,1155,5499,1,0,0,0,1157,5507,1,0,0,0,1159, - 5510,1,0,0,0,1161,5513,1,0,0,0,1163,5516,1,0,0,0,1165,5524,1,0,0, - 0,1167,5527,1,0,0,0,1169,5530,1,0,0,0,1171,5532,1,0,0,0,1173,5564, - 1,0,0,0,1175,5567,1,0,0,0,1177,5571,1,0,0,0,1179,5579,1,0,0,0,1181, - 5595,1,0,0,0,1183,5606,1,0,0,0,1185,5610,1,0,0,0,1187,5621,1,0,0, - 0,1189,5660,1,0,0,0,1191,5709,1,0,0,0,1193,5733,1,0,0,0,1195,5736, - 1,0,0,0,1197,5738,1,0,0,0,1199,5743,1,0,0,0,1201,5774,1,0,0,0,1203, - 5777,1,0,0,0,1205,5782,1,0,0,0,1207,5795,1,0,0,0,1209,5798,1,0,0, - 0,1211,5803,1,0,0,0,1213,5809,1,0,0,0,1215,5814,1,0,0,0,1217,5819, - 1,0,0,0,1219,5836,1,0,0,0,1221,5838,1,0,0,0,1223,1224,5,36,0,0,1224, - 6,1,0,0,0,1225,1226,5,40,0,0,1226,8,1,0,0,0,1227,1228,5,41,0,0,1228, - 10,1,0,0,0,1229,1230,5,91,0,0,1230,12,1,0,0,0,1231,1232,5,93,0,0, - 1232,14,1,0,0,0,1233,1234,5,44,0,0,1234,16,1,0,0,0,1235,1236,5,59, - 0,0,1236,18,1,0,0,0,1237,1238,5,58,0,0,1238,20,1,0,0,0,1239,1240, - 5,42,0,0,1240,22,1,0,0,0,1241,1242,5,61,0,0,1242,24,1,0,0,0,1243, - 1244,5,46,0,0,1244,26,1,0,0,0,1245,1246,5,43,0,0,1246,28,1,0,0,0, - 1247,1248,5,45,0,0,1248,30,1,0,0,0,1249,1250,5,47,0,0,1250,32,1, - 0,0,0,1251,1252,5,94,0,0,1252,34,1,0,0,0,1253,1254,5,60,0,0,1254, - 36,1,0,0,0,1255,1256,5,62,0,0,1256,38,1,0,0,0,1257,1258,5,60,0,0, - 1258,1259,5,60,0,0,1259,40,1,0,0,0,1260,1261,5,62,0,0,1261,1262, - 5,62,0,0,1262,42,1,0,0,0,1263,1264,5,58,0,0,1264,1265,5,61,0,0,1265, - 44,1,0,0,0,1266,1267,5,60,0,0,1267,1268,5,61,0,0,1268,46,1,0,0,0, - 1269,1270,5,61,0,0,1270,1271,5,62,0,0,1271,48,1,0,0,0,1272,1273, - 5,62,0,0,1273,1274,5,61,0,0,1274,50,1,0,0,0,1275,1276,5,46,0,0,1276, - 1277,5,46,0,0,1277,52,1,0,0,0,1278,1279,5,60,0,0,1279,1280,5,62, - 0,0,1280,54,1,0,0,0,1281,1282,5,58,0,0,1282,1283,5,58,0,0,1283,56, - 1,0,0,0,1284,1285,5,37,0,0,1285,58,1,0,0,0,1286,1288,5,36,0,0,1287, - 1289,7,0,0,0,1288,1287,1,0,0,0,1289,1290,1,0,0,0,1290,1288,1,0,0, - 0,1290,1291,1,0,0,0,1291,60,1,0,0,0,1292,1306,3,65,30,0,1293,1295, - 7,1,0,0,1294,1293,1,0,0,0,1295,1296,1,0,0,0,1296,1294,1,0,0,0,1296, - 1297,1,0,0,0,1297,1302,1,0,0,0,1298,1303,3,65,30,0,1299,1301,5,47, - 0,0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301,1303,1,0,0,0,1302,1298, - 1,0,0,0,1302,1300,1,0,0,0,1303,1306,1,0,0,0,1304,1306,5,47,0,0,1305, - 1292,1,0,0,0,1305,1294,1,0,0,0,1305,1304,1,0,0,0,1306,1307,1,0,0, - 0,1307,1305,1,0,0,0,1307,1308,1,0,0,0,1308,1311,1,0,0,0,1309,1311, - 7,1,0,0,1310,1305,1,0,0,0,1310,1309,1,0,0,0,1311,62,1,0,0,0,1312, - 1315,3,67,31,0,1313,1315,7,2,0,0,1314,1312,1,0,0,0,1314,1313,1,0, - 0,0,1315,1318,1,0,0,0,1316,1314,1,0,0,0,1316,1317,1,0,0,0,1317,1319, - 1,0,0,0,1318,1316,1,0,0,0,1319,1321,3,69,32,0,1320,1322,3,61,28, - 0,1321,1320,1,0,0,0,1321,1322,1,0,0,0,1322,1324,1,0,0,0,1323,1325, - 7,1,0,0,1324,1323,1,0,0,0,1325,1326,1,0,0,0,1326,1324,1,0,0,0,1326, - 1327,1,0,0,0,1327,1328,1,0,0,0,1328,1329,6,29,0,0,1329,64,1,0,0, - 0,1330,1331,7,3,0,0,1331,66,1,0,0,0,1332,1333,7,4,0,0,1333,68,1, - 0,0,0,1334,1335,7,5,0,0,1335,70,1,0,0,0,1336,1337,7,6,0,0,1337,1338, - 7,7,0,0,1338,1339,7,7,0,0,1339,72,1,0,0,0,1340,1341,7,6,0,0,1341, - 1342,7,8,0,0,1342,1343,7,6,0,0,1343,1344,7,7,0,0,1344,1345,7,9,0, - 0,1345,1346,7,10,0,0,1346,1347,7,11,0,0,1347,74,1,0,0,0,1348,1349, - 7,6,0,0,1349,1350,7,8,0,0,1350,1351,7,6,0,0,1351,1352,7,7,0,0,1352, - 1353,7,9,0,0,1353,1354,7,12,0,0,1354,1355,7,11,0,0,1355,76,1,0,0, - 0,1356,1357,7,6,0,0,1357,1358,7,8,0,0,1358,1359,7,13,0,0,1359,78, - 1,0,0,0,1360,1361,7,6,0,0,1361,1362,7,8,0,0,1362,1363,7,9,0,0,1363, - 80,1,0,0,0,1364,1365,7,6,0,0,1365,1366,7,14,0,0,1366,1367,7,14,0, - 0,1367,1368,7,6,0,0,1368,1369,7,9,0,0,1369,82,1,0,0,0,1370,1371, - 7,6,0,0,1371,1372,7,10,0,0,1372,84,1,0,0,0,1373,1374,7,6,0,0,1374, - 1375,7,10,0,0,1375,1376,7,15,0,0,1376,86,1,0,0,0,1377,1378,7,6,0, - 0,1378,1379,7,10,0,0,1379,1380,7,9,0,0,1380,1381,7,16,0,0,1381,1382, - 7,16,0,0,1382,1383,7,11,0,0,1383,1384,7,17,0,0,1384,1385,7,14,0, - 0,1385,1386,7,18,0,0,1386,1387,7,15,0,0,1387,88,1,0,0,0,1388,1389, - 7,19,0,0,1389,1390,7,20,0,0,1390,1391,7,17,0,0,1391,1392,7,21,0, - 0,1392,90,1,0,0,0,1393,1394,7,15,0,0,1394,1395,7,6,0,0,1395,1396, - 7,10,0,0,1396,1397,7,11,0,0,1397,92,1,0,0,0,1398,1399,7,15,0,0,1399, - 1400,7,6,0,0,1400,1401,7,10,0,0,1401,1402,7,17,0,0,1402,94,1,0,0, - 0,1403,1404,7,15,0,0,1404,1405,7,21,0,0,1405,1406,7,11,0,0,1406, - 1407,7,15,0,0,1407,1408,7,22,0,0,1408,96,1,0,0,0,1409,1410,7,15, - 0,0,1410,1411,7,20,0,0,1411,1412,7,7,0,0,1412,1413,7,7,0,0,1413, - 1414,7,6,0,0,1414,1415,7,17,0,0,1415,1416,7,11,0,0,1416,98,1,0,0, - 0,1417,1418,7,15,0,0,1418,1419,7,20,0,0,1419,1420,7,7,0,0,1420,1421, - 7,23,0,0,1421,1422,7,16,0,0,1422,1423,7,8,0,0,1423,100,1,0,0,0,1424, - 1425,7,15,0,0,1425,1426,7,20,0,0,1426,1427,7,8,0,0,1427,1428,7,10, - 0,0,1428,1429,7,17,0,0,1429,1430,7,14,0,0,1430,1431,7,6,0,0,1431, - 1432,7,18,0,0,1432,1433,7,8,0,0,1433,1434,7,17,0,0,1434,102,1,0, - 0,0,1435,1436,7,15,0,0,1436,1437,7,14,0,0,1437,1438,7,11,0,0,1438, - 1439,7,6,0,0,1439,1440,7,17,0,0,1440,1441,7,11,0,0,1441,104,1,0, - 0,0,1442,1443,7,15,0,0,1443,1444,7,23,0,0,1444,1445,7,14,0,0,1445, - 1446,7,14,0,0,1446,1447,7,11,0,0,1447,1448,7,8,0,0,1448,1449,7,17, - 0,0,1449,1450,5,95,0,0,1450,1451,7,15,0,0,1451,1452,7,6,0,0,1452, - 1453,7,17,0,0,1453,1454,7,6,0,0,1454,1455,7,7,0,0,1455,1456,7,20, - 0,0,1456,1457,7,24,0,0,1457,106,1,0,0,0,1458,1459,7,15,0,0,1459, - 1460,7,23,0,0,1460,1461,7,14,0,0,1461,1462,7,14,0,0,1462,1463,7, - 11,0,0,1463,1464,7,8,0,0,1464,1465,7,17,0,0,1465,1466,5,95,0,0,1466, - 1467,7,13,0,0,1467,1468,7,6,0,0,1468,1469,7,17,0,0,1469,1470,7,11, - 0,0,1470,108,1,0,0,0,1471,1472,7,15,0,0,1472,1473,7,23,0,0,1473, - 1474,7,14,0,0,1474,1475,7,14,0,0,1475,1476,7,11,0,0,1476,1477,7, - 8,0,0,1477,1478,7,17,0,0,1478,1479,5,95,0,0,1479,1480,7,14,0,0,1480, - 1481,7,20,0,0,1481,1482,7,7,0,0,1482,1483,7,11,0,0,1483,110,1,0, - 0,0,1484,1485,7,15,0,0,1485,1486,7,23,0,0,1486,1487,7,14,0,0,1487, - 1488,7,14,0,0,1488,1489,7,11,0,0,1489,1490,7,8,0,0,1490,1491,7,17, - 0,0,1491,1492,5,95,0,0,1492,1493,7,17,0,0,1493,1494,7,18,0,0,1494, - 1495,7,16,0,0,1495,1496,7,11,0,0,1496,112,1,0,0,0,1497,1498,7,15, - 0,0,1498,1499,7,23,0,0,1499,1500,7,14,0,0,1500,1501,7,14,0,0,1501, - 1502,7,11,0,0,1502,1503,7,8,0,0,1503,1504,7,17,0,0,1504,1505,5,95, - 0,0,1505,1506,7,17,0,0,1506,1507,7,18,0,0,1507,1508,7,16,0,0,1508, - 1509,7,11,0,0,1509,1510,7,10,0,0,1510,1511,7,17,0,0,1511,1512,7, - 6,0,0,1512,1513,7,16,0,0,1513,1514,7,25,0,0,1514,114,1,0,0,0,1515, - 1516,7,15,0,0,1516,1517,7,23,0,0,1517,1518,7,14,0,0,1518,1519,7, - 14,0,0,1519,1520,7,11,0,0,1520,1521,7,8,0,0,1521,1522,7,17,0,0,1522, - 1523,5,95,0,0,1523,1524,7,23,0,0,1524,1525,7,10,0,0,1525,1526,7, - 11,0,0,1526,1527,7,14,0,0,1527,116,1,0,0,0,1528,1529,7,13,0,0,1529, - 1530,7,11,0,0,1530,1531,7,26,0,0,1531,1532,7,6,0,0,1532,1533,7,23, - 0,0,1533,1534,7,7,0,0,1534,1535,7,17,0,0,1535,118,1,0,0,0,1536,1537, - 7,13,0,0,1537,1538,7,11,0,0,1538,1539,7,26,0,0,1539,1540,7,11,0, - 0,1540,1541,7,14,0,0,1541,1542,7,14,0,0,1542,1543,7,6,0,0,1543,1544, - 7,19,0,0,1544,1545,7,7,0,0,1545,1546,7,11,0,0,1546,120,1,0,0,0,1547, - 1548,7,13,0,0,1548,1549,7,11,0,0,1549,1550,7,10,0,0,1550,1551,7, - 15,0,0,1551,122,1,0,0,0,1552,1553,7,13,0,0,1553,1554,7,18,0,0,1554, - 1555,7,10,0,0,1555,1556,7,17,0,0,1556,1557,7,18,0,0,1557,1558,7, - 8,0,0,1558,1559,7,15,0,0,1559,1560,7,17,0,0,1560,124,1,0,0,0,1561, - 1562,7,13,0,0,1562,1563,7,20,0,0,1563,126,1,0,0,0,1564,1565,7,11, - 0,0,1565,1566,7,7,0,0,1566,1567,7,10,0,0,1567,1568,7,11,0,0,1568, - 128,1,0,0,0,1569,1570,7,11,0,0,1570,1571,7,27,0,0,1571,1572,7,15, - 0,0,1572,1573,7,11,0,0,1573,1574,7,25,0,0,1574,1575,7,17,0,0,1575, - 130,1,0,0,0,1576,1577,7,26,0,0,1577,1578,7,6,0,0,1578,1579,7,7,0, - 0,1579,1580,7,10,0,0,1580,1581,7,11,0,0,1581,132,1,0,0,0,1582,1583, - 7,26,0,0,1583,1584,7,11,0,0,1584,1585,7,17,0,0,1585,1586,7,15,0, - 0,1586,1587,7,21,0,0,1587,134,1,0,0,0,1588,1589,7,26,0,0,1589,1590, - 7,20,0,0,1590,1591,7,14,0,0,1591,136,1,0,0,0,1592,1593,7,26,0,0, - 1593,1594,7,20,0,0,1594,1595,7,14,0,0,1595,1596,7,11,0,0,1596,1597, - 7,18,0,0,1597,1598,7,24,0,0,1598,1599,7,8,0,0,1599,138,1,0,0,0,1600, - 1601,7,26,0,0,1601,1602,7,14,0,0,1602,1603,7,20,0,0,1603,1604,7, - 16,0,0,1604,140,1,0,0,0,1605,1606,7,24,0,0,1606,1607,7,14,0,0,1607, - 1608,7,6,0,0,1608,1609,7,8,0,0,1609,1610,7,17,0,0,1610,142,1,0,0, - 0,1611,1612,7,24,0,0,1612,1613,7,14,0,0,1613,1614,7,20,0,0,1614, - 1615,7,23,0,0,1615,1616,7,25,0,0,1616,144,1,0,0,0,1617,1618,7,21, - 0,0,1618,1619,7,6,0,0,1619,1620,7,28,0,0,1620,1621,7,18,0,0,1621, - 1622,7,8,0,0,1622,1623,7,24,0,0,1623,146,1,0,0,0,1624,1625,7,18, - 0,0,1625,1626,7,8,0,0,1626,148,1,0,0,0,1627,1628,7,18,0,0,1628,1629, - 7,8,0,0,1629,1630,7,18,0,0,1630,1631,7,17,0,0,1631,1632,7,18,0,0, - 1632,1633,7,6,0,0,1633,1634,7,7,0,0,1634,1635,7,7,0,0,1635,1636, - 7,9,0,0,1636,150,1,0,0,0,1637,1638,7,18,0,0,1638,1639,7,8,0,0,1639, - 1640,7,17,0,0,1640,1641,7,11,0,0,1641,1642,7,14,0,0,1642,1643,7, - 10,0,0,1643,1644,7,11,0,0,1644,1645,7,15,0,0,1645,1646,7,17,0,0, - 1646,152,1,0,0,0,1647,1648,7,18,0,0,1648,1649,7,8,0,0,1649,1650, - 7,17,0,0,1650,1651,7,20,0,0,1651,154,1,0,0,0,1652,1653,7,7,0,0,1653, - 1654,7,6,0,0,1654,1655,7,17,0,0,1655,1656,7,11,0,0,1656,1657,7,14, - 0,0,1657,1658,7,6,0,0,1658,1659,7,7,0,0,1659,156,1,0,0,0,1660,1661, - 7,7,0,0,1661,1662,7,11,0,0,1662,1663,7,6,0,0,1663,1664,7,13,0,0, - 1664,1665,7,18,0,0,1665,1666,7,8,0,0,1666,1667,7,24,0,0,1667,158, - 1,0,0,0,1668,1669,7,7,0,0,1669,1670,7,18,0,0,1670,1671,7,16,0,0, - 1671,1672,7,18,0,0,1672,1673,7,17,0,0,1673,160,1,0,0,0,1674,1675, - 7,7,0,0,1675,1676,7,20,0,0,1676,1677,7,15,0,0,1677,1678,7,6,0,0, - 1678,1679,7,7,0,0,1679,1680,7,17,0,0,1680,1681,7,18,0,0,1681,1682, - 7,16,0,0,1682,1683,7,11,0,0,1683,162,1,0,0,0,1684,1685,7,7,0,0,1685, - 1686,7,20,0,0,1686,1687,7,15,0,0,1687,1688,7,6,0,0,1688,1689,7,7, - 0,0,1689,1690,7,17,0,0,1690,1691,7,18,0,0,1691,1692,7,16,0,0,1692, - 1693,7,11,0,0,1693,1694,7,10,0,0,1694,1695,7,17,0,0,1695,1696,7, - 6,0,0,1696,1697,7,16,0,0,1697,1698,7,25,0,0,1698,164,1,0,0,0,1699, - 1700,7,8,0,0,1700,1701,7,20,0,0,1701,1702,7,17,0,0,1702,166,1,0, - 0,0,1703,1704,7,8,0,0,1704,1705,7,23,0,0,1705,1706,7,7,0,0,1706, - 1707,7,7,0,0,1707,168,1,0,0,0,1708,1709,7,20,0,0,1709,1710,7,26, - 0,0,1710,1711,7,26,0,0,1711,1712,7,10,0,0,1712,1713,7,11,0,0,1713, - 1714,7,17,0,0,1714,170,1,0,0,0,1715,1716,7,20,0,0,1716,1717,7,8, - 0,0,1717,172,1,0,0,0,1718,1719,7,20,0,0,1719,1720,7,8,0,0,1720,1721, - 7,7,0,0,1721,1722,7,9,0,0,1722,174,1,0,0,0,1723,1724,7,20,0,0,1724, - 1725,7,14,0,0,1725,176,1,0,0,0,1726,1727,7,20,0,0,1727,1728,7,14, - 0,0,1728,1729,7,13,0,0,1729,1730,7,11,0,0,1730,1731,7,14,0,0,1731, - 178,1,0,0,0,1732,1733,7,25,0,0,1733,1734,7,7,0,0,1734,1735,7,6,0, - 0,1735,1736,7,15,0,0,1736,1737,7,18,0,0,1737,1738,7,8,0,0,1738,1739, - 7,24,0,0,1739,180,1,0,0,0,1740,1741,7,25,0,0,1741,1742,7,14,0,0, - 1742,1743,7,18,0,0,1743,1744,7,16,0,0,1744,1745,7,6,0,0,1745,1746, - 7,14,0,0,1746,1747,7,9,0,0,1747,182,1,0,0,0,1748,1749,7,14,0,0,1749, - 1750,7,11,0,0,1750,1751,7,26,0,0,1751,1752,7,11,0,0,1752,1753,7, - 14,0,0,1753,1754,7,11,0,0,1754,1755,7,8,0,0,1755,1756,7,15,0,0,1756, - 1757,7,11,0,0,1757,1758,7,10,0,0,1758,184,1,0,0,0,1759,1760,7,14, - 0,0,1760,1761,7,11,0,0,1761,1762,7,17,0,0,1762,1763,7,23,0,0,1763, - 1764,7,14,0,0,1764,1765,7,8,0,0,1765,1766,7,18,0,0,1766,1767,7,8, - 0,0,1767,1768,7,24,0,0,1768,186,1,0,0,0,1769,1770,7,10,0,0,1770, - 1771,7,11,0,0,1771,1772,7,7,0,0,1772,1773,7,11,0,0,1773,1774,7,15, - 0,0,1774,1775,7,17,0,0,1775,188,1,0,0,0,1776,1777,7,10,0,0,1777, - 1778,7,11,0,0,1778,1779,7,10,0,0,1779,1780,7,10,0,0,1780,1781,7, - 18,0,0,1781,1782,7,20,0,0,1782,1783,7,8,0,0,1783,1784,5,95,0,0,1784, - 1785,7,23,0,0,1785,1786,7,10,0,0,1786,1787,7,11,0,0,1787,1788,7, - 14,0,0,1788,190,1,0,0,0,1789,1790,7,10,0,0,1790,1791,7,20,0,0,1791, - 1792,7,16,0,0,1792,1793,7,11,0,0,1793,192,1,0,0,0,1794,1795,7,10, - 0,0,1795,1796,7,9,0,0,1796,1797,7,16,0,0,1797,1798,7,16,0,0,1798, - 1799,7,11,0,0,1799,1800,7,17,0,0,1800,1801,7,14,0,0,1801,1802,7, - 18,0,0,1802,1803,7,15,0,0,1803,194,1,0,0,0,1804,1805,7,17,0,0,1805, - 1806,7,6,0,0,1806,1807,7,19,0,0,1807,1808,7,7,0,0,1808,1809,7,11, - 0,0,1809,196,1,0,0,0,1810,1811,7,17,0,0,1811,1812,7,21,0,0,1812, - 1813,7,11,0,0,1813,1814,7,8,0,0,1814,198,1,0,0,0,1815,1816,7,17, - 0,0,1816,1817,7,20,0,0,1817,200,1,0,0,0,1818,1819,7,17,0,0,1819, - 1820,7,14,0,0,1820,1821,7,6,0,0,1821,1822,7,18,0,0,1822,1823,7,7, - 0,0,1823,1824,7,18,0,0,1824,1825,7,8,0,0,1825,1826,7,24,0,0,1826, - 202,1,0,0,0,1827,1828,7,17,0,0,1828,1829,7,14,0,0,1829,1830,7,23, - 0,0,1830,1831,7,11,0,0,1831,204,1,0,0,0,1832,1833,7,23,0,0,1833, - 1834,7,8,0,0,1834,1835,7,18,0,0,1835,1836,7,20,0,0,1836,1837,7,8, - 0,0,1837,206,1,0,0,0,1838,1839,7,23,0,0,1839,1840,7,8,0,0,1840,1841, - 7,18,0,0,1841,1842,7,29,0,0,1842,1843,7,23,0,0,1843,1844,7,11,0, - 0,1844,208,1,0,0,0,1845,1846,7,23,0,0,1846,1847,7,10,0,0,1847,1848, - 7,11,0,0,1848,1849,7,14,0,0,1849,210,1,0,0,0,1850,1851,7,23,0,0, - 1851,1852,7,10,0,0,1852,1853,7,18,0,0,1853,1854,7,8,0,0,1854,1855, - 7,24,0,0,1855,212,1,0,0,0,1856,1857,7,28,0,0,1857,1858,7,6,0,0,1858, - 1859,7,14,0,0,1859,1860,7,18,0,0,1860,1861,7,6,0,0,1861,1862,7,13, - 0,0,1862,1863,7,18,0,0,1863,1864,7,15,0,0,1864,214,1,0,0,0,1865, - 1866,7,30,0,0,1866,1867,7,21,0,0,1867,1868,7,11,0,0,1868,1869,7, - 8,0,0,1869,216,1,0,0,0,1870,1871,7,30,0,0,1871,1872,7,21,0,0,1872, - 1873,7,11,0,0,1873,1874,7,14,0,0,1874,1875,7,11,0,0,1875,218,1,0, - 0,0,1876,1877,7,30,0,0,1877,1878,7,18,0,0,1878,1879,7,8,0,0,1879, - 1880,7,13,0,0,1880,1881,7,20,0,0,1881,1882,7,30,0,0,1882,220,1,0, - 0,0,1883,1884,7,30,0,0,1884,1885,7,18,0,0,1885,1886,7,17,0,0,1886, - 1887,7,21,0,0,1887,222,1,0,0,0,1888,1889,7,6,0,0,1889,1890,7,23, - 0,0,1890,1891,7,17,0,0,1891,1892,7,21,0,0,1892,1893,7,20,0,0,1893, - 1894,7,14,0,0,1894,1895,7,18,0,0,1895,1896,7,12,0,0,1896,1897,7, - 6,0,0,1897,1898,7,17,0,0,1898,1899,7,18,0,0,1899,1900,7,20,0,0,1900, - 1901,7,8,0,0,1901,224,1,0,0,0,1902,1903,7,19,0,0,1903,1904,7,18, - 0,0,1904,1905,7,8,0,0,1905,1906,7,6,0,0,1906,1907,7,14,0,0,1907, - 1908,7,9,0,0,1908,226,1,0,0,0,1909,1910,7,15,0,0,1910,1911,7,20, - 0,0,1911,1912,7,7,0,0,1912,1913,7,7,0,0,1913,1914,7,6,0,0,1914,1915, - 7,17,0,0,1915,1916,7,18,0,0,1916,1917,7,20,0,0,1917,1918,7,8,0,0, - 1918,228,1,0,0,0,1919,1920,7,15,0,0,1920,1921,7,20,0,0,1921,1922, - 7,8,0,0,1922,1923,7,15,0,0,1923,1924,7,23,0,0,1924,1925,7,14,0,0, - 1925,1926,7,14,0,0,1926,1927,7,11,0,0,1927,1928,7,8,0,0,1928,1929, - 7,17,0,0,1929,1930,7,7,0,0,1930,1931,7,9,0,0,1931,230,1,0,0,0,1932, - 1933,7,15,0,0,1933,1934,7,14,0,0,1934,1935,7,20,0,0,1935,1936,7, - 10,0,0,1936,1937,7,10,0,0,1937,232,1,0,0,0,1938,1939,7,15,0,0,1939, - 1940,7,23,0,0,1940,1941,7,14,0,0,1941,1942,7,14,0,0,1942,1943,7, - 11,0,0,1943,1944,7,8,0,0,1944,1945,7,17,0,0,1945,1946,5,95,0,0,1946, - 1947,7,10,0,0,1947,1948,7,15,0,0,1948,1949,7,21,0,0,1949,1950,7, - 11,0,0,1950,1951,7,16,0,0,1951,1952,7,6,0,0,1952,234,1,0,0,0,1953, - 1954,7,26,0,0,1954,1955,7,14,0,0,1955,1956,7,11,0,0,1956,1957,7, - 11,0,0,1957,1958,7,12,0,0,1958,1959,7,11,0,0,1959,236,1,0,0,0,1960, - 1961,7,26,0,0,1961,1962,7,23,0,0,1962,1963,7,7,0,0,1963,1964,7,7, - 0,0,1964,238,1,0,0,0,1965,1966,7,18,0,0,1966,1967,7,7,0,0,1967,1968, - 7,18,0,0,1968,1969,7,22,0,0,1969,1970,7,11,0,0,1970,240,1,0,0,0, - 1971,1972,7,18,0,0,1972,1973,7,8,0,0,1973,1974,7,8,0,0,1974,1975, - 7,11,0,0,1975,1976,7,14,0,0,1976,242,1,0,0,0,1977,1978,7,18,0,0, - 1978,1979,7,10,0,0,1979,244,1,0,0,0,1980,1981,7,18,0,0,1981,1982, - 7,10,0,0,1982,1983,7,8,0,0,1983,1984,7,23,0,0,1984,1985,7,7,0,0, - 1985,1986,7,7,0,0,1986,246,1,0,0,0,1987,1988,7,31,0,0,1988,1989, - 7,20,0,0,1989,1990,7,18,0,0,1990,1991,7,8,0,0,1991,248,1,0,0,0,1992, - 1993,7,7,0,0,1993,1994,7,11,0,0,1994,1995,7,26,0,0,1995,1996,7,17, - 0,0,1996,250,1,0,0,0,1997,1998,7,7,0,0,1998,1999,7,18,0,0,1999,2000, - 7,22,0,0,2000,2001,7,11,0,0,2001,252,1,0,0,0,2002,2003,7,8,0,0,2003, - 2004,7,6,0,0,2004,2005,7,17,0,0,2005,2006,7,23,0,0,2006,2007,7,14, - 0,0,2007,2008,7,6,0,0,2008,2009,7,7,0,0,2009,254,1,0,0,0,2010,2011, - 7,8,0,0,2011,2012,7,20,0,0,2012,2013,7,17,0,0,2013,2014,7,8,0,0, - 2014,2015,7,23,0,0,2015,2016,7,7,0,0,2016,2017,7,7,0,0,2017,256, - 1,0,0,0,2018,2019,7,20,0,0,2019,2020,7,23,0,0,2020,2021,7,17,0,0, - 2021,2022,7,11,0,0,2022,2023,7,14,0,0,2023,258,1,0,0,0,2024,2025, - 7,20,0,0,2025,2026,7,28,0,0,2026,2027,7,11,0,0,2027,2028,7,14,0, - 0,2028,260,1,0,0,0,2029,2030,7,20,0,0,2030,2031,7,28,0,0,2031,2032, - 7,11,0,0,2032,2033,7,14,0,0,2033,2034,7,7,0,0,2034,2035,7,6,0,0, - 2035,2036,7,25,0,0,2036,2037,7,10,0,0,2037,262,1,0,0,0,2038,2039, - 7,14,0,0,2039,2040,7,18,0,0,2040,2041,7,24,0,0,2041,2042,7,21,0, - 0,2042,2043,7,17,0,0,2043,264,1,0,0,0,2044,2045,7,10,0,0,2045,2046, - 7,18,0,0,2046,2047,7,16,0,0,2047,2048,7,18,0,0,2048,2049,7,7,0,0, - 2049,2050,7,6,0,0,2050,2051,7,14,0,0,2051,266,1,0,0,0,2052,2053, - 7,28,0,0,2053,2054,7,11,0,0,2054,2055,7,14,0,0,2055,2056,7,19,0, - 0,2056,2057,7,20,0,0,2057,2058,7,10,0,0,2058,2059,7,11,0,0,2059, - 268,1,0,0,0,2060,2061,7,6,0,0,2061,2062,7,19,0,0,2062,2063,7,20, - 0,0,2063,2064,7,14,0,0,2064,2065,7,17,0,0,2065,270,1,0,0,0,2066, - 2067,7,6,0,0,2067,2068,7,19,0,0,2068,2069,7,10,0,0,2069,2070,7,20, - 0,0,2070,2071,7,7,0,0,2071,2072,7,23,0,0,2072,2073,7,17,0,0,2073, - 2074,7,11,0,0,2074,272,1,0,0,0,2075,2076,7,6,0,0,2076,2077,7,15, - 0,0,2077,2078,7,15,0,0,2078,2079,7,11,0,0,2079,2080,7,10,0,0,2080, - 2081,7,10,0,0,2081,274,1,0,0,0,2082,2083,7,6,0,0,2083,2084,7,15, - 0,0,2084,2085,7,17,0,0,2085,2086,7,18,0,0,2086,2087,7,20,0,0,2087, - 2088,7,8,0,0,2088,276,1,0,0,0,2089,2090,7,6,0,0,2090,2091,7,13,0, - 0,2091,2092,7,13,0,0,2092,278,1,0,0,0,2093,2094,7,6,0,0,2094,2095, - 7,13,0,0,2095,2096,7,16,0,0,2096,2097,7,18,0,0,2097,2098,7,8,0,0, - 2098,280,1,0,0,0,2099,2100,7,6,0,0,2100,2101,7,26,0,0,2101,2102, - 7,17,0,0,2102,2103,7,11,0,0,2103,2104,7,14,0,0,2104,282,1,0,0,0, - 2105,2106,7,6,0,0,2106,2107,7,24,0,0,2107,2108,7,24,0,0,2108,2109, - 7,14,0,0,2109,2110,7,11,0,0,2110,2111,7,24,0,0,2111,2112,7,6,0,0, - 2112,2113,7,17,0,0,2113,2114,7,11,0,0,2114,284,1,0,0,0,2115,2116, - 7,6,0,0,2116,2117,7,7,0,0,2117,2118,7,10,0,0,2118,2119,7,20,0,0, - 2119,286,1,0,0,0,2120,2121,7,6,0,0,2121,2122,7,7,0,0,2122,2123,7, - 17,0,0,2123,2124,7,11,0,0,2124,2125,7,14,0,0,2125,288,1,0,0,0,2126, - 2127,7,6,0,0,2127,2128,7,7,0,0,2128,2129,7,30,0,0,2129,2130,7,6, - 0,0,2130,2131,7,9,0,0,2131,2132,7,10,0,0,2132,290,1,0,0,0,2133,2134, - 7,6,0,0,2134,2135,7,10,0,0,2135,2136,7,10,0,0,2136,2137,7,11,0,0, - 2137,2138,7,14,0,0,2138,2139,7,17,0,0,2139,2140,7,18,0,0,2140,2141, - 7,20,0,0,2141,2142,7,8,0,0,2142,292,1,0,0,0,2143,2144,7,6,0,0,2144, - 2145,7,10,0,0,2145,2146,7,10,0,0,2146,2147,7,18,0,0,2147,2148,7, - 24,0,0,2148,2149,7,8,0,0,2149,2150,7,16,0,0,2150,2151,7,11,0,0,2151, - 2152,7,8,0,0,2152,2153,7,17,0,0,2153,294,1,0,0,0,2154,2155,7,6,0, - 0,2155,2156,7,17,0,0,2156,296,1,0,0,0,2157,2158,7,6,0,0,2158,2159, - 7,17,0,0,2159,2160,7,17,0,0,2160,2161,7,14,0,0,2161,2162,7,18,0, - 0,2162,2163,7,19,0,0,2163,2164,7,23,0,0,2164,2165,7,17,0,0,2165, - 2166,7,11,0,0,2166,298,1,0,0,0,2167,2168,7,19,0,0,2168,2169,7,6, - 0,0,2169,2170,7,15,0,0,2170,2171,7,22,0,0,2171,2172,7,30,0,0,2172, - 2173,7,6,0,0,2173,2174,7,14,0,0,2174,2175,7,13,0,0,2175,300,1,0, - 0,0,2176,2177,7,19,0,0,2177,2178,7,11,0,0,2178,2179,7,26,0,0,2179, - 2180,7,20,0,0,2180,2181,7,14,0,0,2181,2182,7,11,0,0,2182,302,1,0, - 0,0,2183,2184,7,19,0,0,2184,2185,7,11,0,0,2185,2186,7,24,0,0,2186, - 2187,7,18,0,0,2187,2188,7,8,0,0,2188,304,1,0,0,0,2189,2190,7,19, - 0,0,2190,2191,7,9,0,0,2191,306,1,0,0,0,2192,2193,7,15,0,0,2193,2194, - 7,6,0,0,2194,2195,7,15,0,0,2195,2196,7,21,0,0,2196,2197,7,11,0,0, - 2197,308,1,0,0,0,2198,2199,7,15,0,0,2199,2200,7,6,0,0,2200,2201, - 7,7,0,0,2201,2202,7,7,0,0,2202,2203,7,11,0,0,2203,2204,7,13,0,0, - 2204,310,1,0,0,0,2205,2206,7,15,0,0,2206,2207,7,6,0,0,2207,2208, - 7,10,0,0,2208,2209,7,15,0,0,2209,2210,7,6,0,0,2210,2211,7,13,0,0, - 2211,2212,7,11,0,0,2212,312,1,0,0,0,2213,2214,7,15,0,0,2214,2215, - 7,6,0,0,2215,2216,7,10,0,0,2216,2217,7,15,0,0,2217,2218,7,6,0,0, - 2218,2219,7,13,0,0,2219,2220,7,11,0,0,2220,2221,7,13,0,0,2221,314, - 1,0,0,0,2222,2223,7,15,0,0,2223,2224,7,6,0,0,2224,2225,7,17,0,0, - 2225,2226,7,6,0,0,2226,2227,7,7,0,0,2227,2228,7,20,0,0,2228,2229, - 7,24,0,0,2229,316,1,0,0,0,2230,2231,7,15,0,0,2231,2232,7,21,0,0, - 2232,2233,7,6,0,0,2233,2234,7,18,0,0,2234,2235,7,8,0,0,2235,318, - 1,0,0,0,2236,2237,7,15,0,0,2237,2238,7,21,0,0,2238,2239,7,6,0,0, - 2239,2240,7,14,0,0,2240,2241,7,6,0,0,2241,2242,7,15,0,0,2242,2243, - 7,17,0,0,2243,2244,7,11,0,0,2244,2245,7,14,0,0,2245,2246,7,18,0, - 0,2246,2247,7,10,0,0,2247,2248,7,17,0,0,2248,2249,7,18,0,0,2249, - 2250,7,15,0,0,2250,2251,7,10,0,0,2251,320,1,0,0,0,2252,2253,7,15, - 0,0,2253,2254,7,21,0,0,2254,2255,7,11,0,0,2255,2256,7,15,0,0,2256, - 2257,7,22,0,0,2257,2258,7,25,0,0,2258,2259,7,20,0,0,2259,2260,7, - 18,0,0,2260,2261,7,8,0,0,2261,2262,7,17,0,0,2262,322,1,0,0,0,2263, - 2264,7,15,0,0,2264,2265,7,7,0,0,2265,2266,7,6,0,0,2266,2267,7,10, - 0,0,2267,2268,7,10,0,0,2268,324,1,0,0,0,2269,2270,7,15,0,0,2270, - 2271,7,7,0,0,2271,2272,7,20,0,0,2272,2273,7,10,0,0,2273,2274,7,11, - 0,0,2274,326,1,0,0,0,2275,2276,7,15,0,0,2276,2277,7,7,0,0,2277,2278, - 7,23,0,0,2278,2279,7,10,0,0,2279,2280,7,17,0,0,2280,2281,7,11,0, - 0,2281,2282,7,14,0,0,2282,328,1,0,0,0,2283,2284,7,15,0,0,2284,2285, - 7,20,0,0,2285,2286,7,16,0,0,2286,2287,7,16,0,0,2287,2288,7,11,0, - 0,2288,2289,7,8,0,0,2289,2290,7,17,0,0,2290,330,1,0,0,0,2291,2292, - 7,15,0,0,2292,2293,7,20,0,0,2293,2294,7,16,0,0,2294,2295,7,16,0, - 0,2295,2296,7,11,0,0,2296,2297,7,8,0,0,2297,2298,7,17,0,0,2298,2299, - 7,10,0,0,2299,332,1,0,0,0,2300,2301,7,15,0,0,2301,2302,7,20,0,0, - 2302,2303,7,16,0,0,2303,2304,7,16,0,0,2304,2305,7,18,0,0,2305,2306, - 7,17,0,0,2306,334,1,0,0,0,2307,2308,7,15,0,0,2308,2309,7,20,0,0, - 2309,2310,7,16,0,0,2310,2311,7,16,0,0,2311,2312,7,18,0,0,2312,2313, - 7,17,0,0,2313,2314,7,17,0,0,2314,2315,7,11,0,0,2315,2316,7,13,0, - 0,2316,336,1,0,0,0,2317,2318,7,15,0,0,2318,2319,7,20,0,0,2319,2320, - 7,8,0,0,2320,2321,7,26,0,0,2321,2322,7,18,0,0,2322,2323,7,24,0,0, - 2323,2324,7,23,0,0,2324,2325,7,14,0,0,2325,2326,7,6,0,0,2326,2327, - 7,17,0,0,2327,2328,7,18,0,0,2328,2329,7,20,0,0,2329,2330,7,8,0,0, - 2330,338,1,0,0,0,2331,2332,7,15,0,0,2332,2333,7,20,0,0,2333,2334, - 7,8,0,0,2334,2335,7,8,0,0,2335,2336,7,11,0,0,2336,2337,7,15,0,0, - 2337,2338,7,17,0,0,2338,2339,7,18,0,0,2339,2340,7,20,0,0,2340,2341, - 7,8,0,0,2341,340,1,0,0,0,2342,2343,7,15,0,0,2343,2344,7,20,0,0,2344, - 2345,7,8,0,0,2345,2346,7,10,0,0,2346,2347,7,17,0,0,2347,2348,7,14, - 0,0,2348,2349,7,6,0,0,2349,2350,7,18,0,0,2350,2351,7,8,0,0,2351, - 2352,7,17,0,0,2352,2353,7,10,0,0,2353,342,1,0,0,0,2354,2355,7,15, - 0,0,2355,2356,7,20,0,0,2356,2357,7,8,0,0,2357,2358,7,17,0,0,2358, - 2359,7,11,0,0,2359,2360,7,8,0,0,2360,2361,7,17,0,0,2361,344,1,0, - 0,0,2362,2363,7,15,0,0,2363,2364,7,20,0,0,2364,2365,7,8,0,0,2365, - 2366,7,17,0,0,2366,2367,7,18,0,0,2367,2368,7,8,0,0,2368,2369,7,23, - 0,0,2369,2370,7,11,0,0,2370,346,1,0,0,0,2371,2372,7,15,0,0,2372, - 2373,7,20,0,0,2373,2374,7,8,0,0,2374,2375,7,28,0,0,2375,2376,7,11, - 0,0,2376,2377,7,14,0,0,2377,2378,7,10,0,0,2378,2379,7,18,0,0,2379, - 2380,7,20,0,0,2380,2381,7,8,0,0,2381,348,1,0,0,0,2382,2383,7,15, - 0,0,2383,2384,7,20,0,0,2384,2385,7,25,0,0,2385,2386,7,9,0,0,2386, - 350,1,0,0,0,2387,2388,7,15,0,0,2388,2389,7,20,0,0,2389,2390,7,10, - 0,0,2390,2391,7,17,0,0,2391,352,1,0,0,0,2392,2393,7,15,0,0,2393, - 2394,7,10,0,0,2394,2395,7,28,0,0,2395,354,1,0,0,0,2396,2397,7,15, - 0,0,2397,2398,7,23,0,0,2398,2399,7,14,0,0,2399,2400,7,10,0,0,2400, - 2401,7,20,0,0,2401,2402,7,14,0,0,2402,356,1,0,0,0,2403,2404,7,15, - 0,0,2404,2405,7,9,0,0,2405,2406,7,15,0,0,2406,2407,7,7,0,0,2407, - 2408,7,11,0,0,2408,358,1,0,0,0,2409,2410,7,13,0,0,2410,2411,7,6, - 0,0,2411,2412,7,17,0,0,2412,2413,7,6,0,0,2413,360,1,0,0,0,2414,2415, - 7,13,0,0,2415,2416,7,6,0,0,2416,2417,7,17,0,0,2417,2418,7,6,0,0, - 2418,2419,7,19,0,0,2419,2420,7,6,0,0,2420,2421,7,10,0,0,2421,2422, - 7,11,0,0,2422,362,1,0,0,0,2423,2424,7,13,0,0,2424,2425,7,6,0,0,2425, - 2426,7,9,0,0,2426,364,1,0,0,0,2427,2428,7,13,0,0,2428,2429,7,11, - 0,0,2429,2430,7,6,0,0,2430,2431,7,7,0,0,2431,2432,7,7,0,0,2432,2433, - 7,20,0,0,2433,2434,7,15,0,0,2434,2435,7,6,0,0,2435,2436,7,17,0,0, - 2436,2437,7,11,0,0,2437,366,1,0,0,0,2438,2439,7,13,0,0,2439,2440, - 7,11,0,0,2440,2441,7,15,0,0,2441,2442,7,7,0,0,2442,2443,7,6,0,0, - 2443,2444,7,14,0,0,2444,2445,7,11,0,0,2445,368,1,0,0,0,2446,2447, - 7,13,0,0,2447,2448,7,11,0,0,2448,2449,7,26,0,0,2449,2450,7,6,0,0, - 2450,2451,7,23,0,0,2451,2452,7,7,0,0,2452,2453,7,17,0,0,2453,2454, - 7,10,0,0,2454,370,1,0,0,0,2455,2456,7,13,0,0,2456,2457,7,11,0,0, - 2457,2458,7,26,0,0,2458,2459,7,11,0,0,2459,2460,7,14,0,0,2460,2461, - 7,14,0,0,2461,2462,7,11,0,0,2462,2463,7,13,0,0,2463,372,1,0,0,0, - 2464,2465,7,13,0,0,2465,2466,7,11,0,0,2466,2467,7,26,0,0,2467,2468, - 7,18,0,0,2468,2469,7,8,0,0,2469,2470,7,11,0,0,2470,2471,7,14,0,0, - 2471,374,1,0,0,0,2472,2473,7,13,0,0,2473,2474,7,11,0,0,2474,2475, - 7,7,0,0,2475,2476,7,11,0,0,2476,2477,7,17,0,0,2477,2478,7,11,0,0, - 2478,376,1,0,0,0,2479,2480,7,13,0,0,2480,2481,7,11,0,0,2481,2482, - 7,7,0,0,2482,2483,7,18,0,0,2483,2484,7,16,0,0,2484,2485,7,18,0,0, - 2485,2486,7,17,0,0,2486,2487,7,11,0,0,2487,2488,7,14,0,0,2488,378, - 1,0,0,0,2489,2490,7,13,0,0,2490,2491,7,11,0,0,2491,2492,7,7,0,0, - 2492,2493,7,18,0,0,2493,2494,7,16,0,0,2494,2495,7,18,0,0,2495,2496, - 7,17,0,0,2496,2497,7,11,0,0,2497,2498,7,14,0,0,2498,2499,7,10,0, - 0,2499,380,1,0,0,0,2500,2501,7,13,0,0,2501,2502,7,18,0,0,2502,2503, - 7,15,0,0,2503,2504,7,17,0,0,2504,2505,7,18,0,0,2505,2506,7,20,0, - 0,2506,2507,7,8,0,0,2507,2508,7,6,0,0,2508,2509,7,14,0,0,2509,2510, - 7,9,0,0,2510,382,1,0,0,0,2511,2512,7,13,0,0,2512,2513,7,18,0,0,2513, - 2514,7,10,0,0,2514,2515,7,6,0,0,2515,2516,7,19,0,0,2516,2517,7,7, - 0,0,2517,2518,7,11,0,0,2518,384,1,0,0,0,2519,2520,7,13,0,0,2520, - 2521,7,18,0,0,2521,2522,7,10,0,0,2522,2523,7,15,0,0,2523,2524,7, - 6,0,0,2524,2525,7,14,0,0,2525,2526,7,13,0,0,2526,386,1,0,0,0,2527, - 2528,7,13,0,0,2528,2529,7,20,0,0,2529,2530,7,15,0,0,2530,2531,7, - 23,0,0,2531,2532,7,16,0,0,2532,2533,7,11,0,0,2533,2534,7,8,0,0,2534, - 2535,7,17,0,0,2535,388,1,0,0,0,2536,2537,7,13,0,0,2537,2538,7,20, - 0,0,2538,2539,7,16,0,0,2539,2540,7,6,0,0,2540,2541,7,18,0,0,2541, - 2542,7,8,0,0,2542,390,1,0,0,0,2543,2544,7,13,0,0,2544,2545,7,20, - 0,0,2545,2546,7,23,0,0,2546,2547,7,19,0,0,2547,2548,7,7,0,0,2548, - 2549,7,11,0,0,2549,392,1,0,0,0,2550,2551,7,13,0,0,2551,2552,7,14, - 0,0,2552,2553,7,20,0,0,2553,2554,7,25,0,0,2554,394,1,0,0,0,2555, - 2556,7,11,0,0,2556,2557,7,6,0,0,2557,2558,7,15,0,0,2558,2559,7,21, - 0,0,2559,396,1,0,0,0,2560,2561,7,11,0,0,2561,2562,7,8,0,0,2562,2563, - 7,6,0,0,2563,2564,7,19,0,0,2564,2565,7,7,0,0,2565,2566,7,11,0,0, - 2566,398,1,0,0,0,2567,2568,7,11,0,0,2568,2569,7,8,0,0,2569,2570, - 7,15,0,0,2570,2571,7,20,0,0,2571,2572,7,13,0,0,2572,2573,7,18,0, - 0,2573,2574,7,8,0,0,2574,2575,7,24,0,0,2575,400,1,0,0,0,2576,2577, - 7,11,0,0,2577,2578,7,8,0,0,2578,2579,7,15,0,0,2579,2580,7,14,0,0, - 2580,2581,7,9,0,0,2581,2582,7,25,0,0,2582,2583,7,17,0,0,2583,2584, - 7,11,0,0,2584,2585,7,13,0,0,2585,402,1,0,0,0,2586,2587,7,11,0,0, - 2587,2588,7,8,0,0,2588,2589,7,23,0,0,2589,2590,7,16,0,0,2590,404, - 1,0,0,0,2591,2592,7,11,0,0,2592,2593,7,10,0,0,2593,2594,7,15,0,0, - 2594,2595,7,6,0,0,2595,2596,7,25,0,0,2596,2597,7,11,0,0,2597,406, - 1,0,0,0,2598,2599,7,11,0,0,2599,2600,7,28,0,0,2600,2601,7,11,0,0, - 2601,2602,7,8,0,0,2602,2603,7,17,0,0,2603,408,1,0,0,0,2604,2605, - 7,11,0,0,2605,2606,7,27,0,0,2606,2607,7,15,0,0,2607,2608,7,7,0,0, - 2608,2609,7,23,0,0,2609,2610,7,13,0,0,2610,2611,7,11,0,0,2611,410, - 1,0,0,0,2612,2613,7,11,0,0,2613,2614,7,27,0,0,2614,2615,7,15,0,0, - 2615,2616,7,7,0,0,2616,2617,7,23,0,0,2617,2618,7,13,0,0,2618,2619, - 7,18,0,0,2619,2620,7,8,0,0,2620,2621,7,24,0,0,2621,412,1,0,0,0,2622, - 2623,7,11,0,0,2623,2624,7,27,0,0,2624,2625,7,15,0,0,2625,2626,7, - 7,0,0,2626,2627,7,23,0,0,2627,2628,7,10,0,0,2628,2629,7,18,0,0,2629, - 2630,7,28,0,0,2630,2631,7,11,0,0,2631,414,1,0,0,0,2632,2633,7,11, - 0,0,2633,2634,7,27,0,0,2634,2635,7,11,0,0,2635,2636,7,15,0,0,2636, - 2637,7,23,0,0,2637,2638,7,17,0,0,2638,2639,7,11,0,0,2639,416,1,0, - 0,0,2640,2641,7,11,0,0,2641,2642,7,27,0,0,2642,2643,7,25,0,0,2643, - 2644,7,7,0,0,2644,2645,7,6,0,0,2645,2646,7,18,0,0,2646,2647,7,8, - 0,0,2647,418,1,0,0,0,2648,2649,7,11,0,0,2649,2650,7,27,0,0,2650, - 2651,7,17,0,0,2651,2652,7,11,0,0,2652,2653,7,8,0,0,2653,2654,7,10, - 0,0,2654,2655,7,18,0,0,2655,2656,7,20,0,0,2656,2657,7,8,0,0,2657, - 420,1,0,0,0,2658,2659,7,11,0,0,2659,2660,7,27,0,0,2660,2661,7,17, - 0,0,2661,2662,7,11,0,0,2662,2663,7,14,0,0,2663,2664,7,8,0,0,2664, - 2665,7,6,0,0,2665,2666,7,7,0,0,2666,422,1,0,0,0,2667,2668,7,26,0, - 0,2668,2669,7,6,0,0,2669,2670,7,16,0,0,2670,2671,7,18,0,0,2671,2672, - 7,7,0,0,2672,2673,7,9,0,0,2673,424,1,0,0,0,2674,2675,7,26,0,0,2675, - 2676,7,18,0,0,2676,2677,7,14,0,0,2677,2678,7,10,0,0,2678,2679,7, - 17,0,0,2679,426,1,0,0,0,2680,2681,7,26,0,0,2681,2682,7,20,0,0,2682, - 2683,7,7,0,0,2683,2684,7,7,0,0,2684,2685,7,20,0,0,2685,2686,7,30, - 0,0,2686,2687,7,18,0,0,2687,2688,7,8,0,0,2688,2689,7,24,0,0,2689, - 428,1,0,0,0,2690,2691,7,26,0,0,2691,2692,7,20,0,0,2692,2693,7,14, - 0,0,2693,2694,7,15,0,0,2694,2695,7,11,0,0,2695,430,1,0,0,0,2696, - 2697,7,26,0,0,2697,2698,7,20,0,0,2698,2699,7,14,0,0,2699,2700,7, - 30,0,0,2700,2701,7,6,0,0,2701,2702,7,14,0,0,2702,2703,7,13,0,0,2703, - 432,1,0,0,0,2704,2705,7,26,0,0,2705,2706,7,23,0,0,2706,2707,7,8, - 0,0,2707,2708,7,15,0,0,2708,2709,7,17,0,0,2709,2710,7,18,0,0,2710, - 2711,7,20,0,0,2711,2712,7,8,0,0,2712,434,1,0,0,0,2713,2714,7,26, - 0,0,2714,2715,7,23,0,0,2715,2716,7,8,0,0,2716,2717,7,15,0,0,2717, - 2718,7,17,0,0,2718,2719,7,18,0,0,2719,2720,7,20,0,0,2720,2721,7, - 8,0,0,2721,2722,7,10,0,0,2722,436,1,0,0,0,2723,2724,7,24,0,0,2724, - 2725,7,7,0,0,2725,2726,7,20,0,0,2726,2727,7,19,0,0,2727,2728,7,6, - 0,0,2728,2729,7,7,0,0,2729,438,1,0,0,0,2730,2731,7,24,0,0,2731,2732, - 7,14,0,0,2732,2733,7,6,0,0,2733,2734,7,8,0,0,2734,2735,7,17,0,0, - 2735,2736,7,11,0,0,2736,2737,7,13,0,0,2737,440,1,0,0,0,2738,2739, - 7,21,0,0,2739,2740,7,6,0,0,2740,2741,7,8,0,0,2741,2742,7,13,0,0, - 2742,2743,7,7,0,0,2743,2744,7,11,0,0,2744,2745,7,14,0,0,2745,442, - 1,0,0,0,2746,2747,7,21,0,0,2747,2748,7,11,0,0,2748,2749,7,6,0,0, - 2749,2750,7,13,0,0,2750,2751,7,11,0,0,2751,2752,7,14,0,0,2752,444, - 1,0,0,0,2753,2754,7,21,0,0,2754,2755,7,20,0,0,2755,2756,7,7,0,0, - 2756,2757,7,13,0,0,2757,446,1,0,0,0,2758,2759,7,21,0,0,2759,2760, - 7,20,0,0,2760,2761,7,23,0,0,2761,2762,7,14,0,0,2762,448,1,0,0,0, - 2763,2764,7,18,0,0,2764,2765,7,13,0,0,2765,2766,7,11,0,0,2766,2767, - 7,8,0,0,2767,2768,7,17,0,0,2768,2769,7,18,0,0,2769,2770,7,17,0,0, - 2770,2771,7,9,0,0,2771,450,1,0,0,0,2772,2773,7,18,0,0,2773,2774, - 7,26,0,0,2774,452,1,0,0,0,2775,2776,7,18,0,0,2776,2777,7,16,0,0, - 2777,2778,7,16,0,0,2778,2779,7,11,0,0,2779,2780,7,13,0,0,2780,2781, - 7,18,0,0,2781,2782,7,6,0,0,2782,2783,7,17,0,0,2783,2784,7,11,0,0, - 2784,454,1,0,0,0,2785,2786,7,18,0,0,2786,2787,7,16,0,0,2787,2788, - 7,16,0,0,2788,2789,7,23,0,0,2789,2790,7,17,0,0,2790,2791,7,6,0,0, - 2791,2792,7,19,0,0,2792,2793,7,7,0,0,2793,2794,7,11,0,0,2794,456, - 1,0,0,0,2795,2796,7,18,0,0,2796,2797,7,16,0,0,2797,2798,7,25,0,0, - 2798,2799,7,7,0,0,2799,2800,7,18,0,0,2800,2801,7,15,0,0,2801,2802, - 7,18,0,0,2802,2803,7,17,0,0,2803,458,1,0,0,0,2804,2805,7,18,0,0, - 2805,2806,7,8,0,0,2806,2807,7,15,0,0,2807,2808,7,7,0,0,2808,2809, - 7,23,0,0,2809,2810,7,13,0,0,2810,2811,7,18,0,0,2811,2812,7,8,0,0, - 2812,2813,7,24,0,0,2813,460,1,0,0,0,2814,2815,7,18,0,0,2815,2816, - 7,8,0,0,2816,2817,7,15,0,0,2817,2818,7,14,0,0,2818,2819,7,11,0,0, - 2819,2820,7,16,0,0,2820,2821,7,11,0,0,2821,2822,7,8,0,0,2822,2823, - 7,17,0,0,2823,462,1,0,0,0,2824,2825,7,18,0,0,2825,2826,7,8,0,0,2826, - 2827,7,13,0,0,2827,2828,7,11,0,0,2828,2829,7,27,0,0,2829,464,1,0, - 0,0,2830,2831,7,18,0,0,2831,2832,7,8,0,0,2832,2833,7,13,0,0,2833, - 2834,7,11,0,0,2834,2835,7,27,0,0,2835,2836,7,11,0,0,2836,2837,7, - 10,0,0,2837,466,1,0,0,0,2838,2839,7,18,0,0,2839,2840,7,8,0,0,2840, - 2841,7,21,0,0,2841,2842,7,11,0,0,2842,2843,7,14,0,0,2843,2844,7, - 18,0,0,2844,2845,7,17,0,0,2845,468,1,0,0,0,2846,2847,7,8,0,0,2847, - 2848,7,20,0,0,2848,2849,7,18,0,0,2849,2850,7,8,0,0,2850,2851,7,21, - 0,0,2851,2852,7,11,0,0,2852,2853,7,14,0,0,2853,2854,7,18,0,0,2854, - 2855,7,17,0,0,2855,470,1,0,0,0,2856,2857,7,10,0,0,2857,2858,7,23, - 0,0,2858,2859,7,25,0,0,2859,2860,7,11,0,0,2860,2861,7,14,0,0,2861, - 2862,7,23,0,0,2862,2863,7,10,0,0,2863,2864,7,11,0,0,2864,2865,7, - 14,0,0,2865,472,1,0,0,0,2866,2867,7,8,0,0,2867,2868,7,20,0,0,2868, - 2869,7,10,0,0,2869,2870,7,23,0,0,2870,2871,7,25,0,0,2871,2872,7, - 11,0,0,2872,2873,7,14,0,0,2873,2874,7,23,0,0,2874,2875,7,10,0,0, - 2875,2876,7,11,0,0,2876,2877,7,14,0,0,2877,474,1,0,0,0,2878,2879, - 7,15,0,0,2879,2880,7,14,0,0,2880,2881,7,11,0,0,2881,2882,7,6,0,0, - 2882,2883,7,17,0,0,2883,2884,7,11,0,0,2884,2885,7,13,0,0,2885,2886, - 7,19,0,0,2886,476,1,0,0,0,2887,2888,7,8,0,0,2888,2889,7,20,0,0,2889, - 2890,7,15,0,0,2890,2891,7,14,0,0,2891,2892,7,11,0,0,2892,2893,7, - 6,0,0,2893,2894,7,17,0,0,2894,2895,7,11,0,0,2895,2896,7,13,0,0,2896, - 2897,7,19,0,0,2897,478,1,0,0,0,2898,2899,7,15,0,0,2899,2900,7,14, - 0,0,2900,2901,7,11,0,0,2901,2902,7,6,0,0,2902,2903,7,17,0,0,2903, - 2904,7,11,0,0,2904,2905,7,14,0,0,2905,2906,7,20,0,0,2906,2907,7, - 7,0,0,2907,2908,7,11,0,0,2908,480,1,0,0,0,2909,2910,7,8,0,0,2910, - 2911,7,20,0,0,2911,2912,7,15,0,0,2912,2913,7,14,0,0,2913,2914,7, - 11,0,0,2914,2915,7,6,0,0,2915,2916,7,17,0,0,2916,2917,7,11,0,0,2917, - 2918,7,14,0,0,2918,2919,7,20,0,0,2919,2920,7,7,0,0,2920,2921,7,11, - 0,0,2921,482,1,0,0,0,2922,2923,7,15,0,0,2923,2924,7,14,0,0,2924, - 2925,7,11,0,0,2925,2926,7,6,0,0,2926,2927,7,17,0,0,2927,2928,7,11, - 0,0,2928,2929,7,23,0,0,2929,2930,7,10,0,0,2930,2931,7,11,0,0,2931, - 2932,7,14,0,0,2932,484,1,0,0,0,2933,2934,7,8,0,0,2934,2935,7,20, - 0,0,2935,2936,7,15,0,0,2936,2937,7,14,0,0,2937,2938,7,11,0,0,2938, - 2939,7,6,0,0,2939,2940,7,17,0,0,2940,2941,7,11,0,0,2941,2942,7,23, - 0,0,2942,2943,7,10,0,0,2943,2944,7,11,0,0,2944,2945,7,14,0,0,2945, - 486,1,0,0,0,2946,2947,7,18,0,0,2947,2948,7,8,0,0,2948,2949,7,21, - 0,0,2949,2950,7,11,0,0,2950,2951,7,14,0,0,2951,2952,7,18,0,0,2952, - 2953,7,17,0,0,2953,2954,7,10,0,0,2954,488,1,0,0,0,2955,2956,7,18, - 0,0,2956,2957,7,8,0,0,2957,2958,7,7,0,0,2958,2959,7,18,0,0,2959, - 2960,7,8,0,0,2960,2961,7,11,0,0,2961,490,1,0,0,0,2962,2963,7,18, - 0,0,2963,2964,7,8,0,0,2964,2965,7,10,0,0,2965,2966,7,11,0,0,2966, - 2967,7,8,0,0,2967,2968,7,10,0,0,2968,2969,7,18,0,0,2969,2970,7,17, - 0,0,2970,2971,7,18,0,0,2971,2972,7,28,0,0,2972,2973,7,11,0,0,2973, - 492,1,0,0,0,2974,2975,7,18,0,0,2975,2976,7,8,0,0,2976,2977,7,10, - 0,0,2977,2978,7,11,0,0,2978,2979,7,14,0,0,2979,2980,7,17,0,0,2980, - 494,1,0,0,0,2981,2982,7,18,0,0,2982,2983,7,8,0,0,2983,2984,7,10, - 0,0,2984,2985,7,17,0,0,2985,2986,7,11,0,0,2986,2987,7,6,0,0,2987, - 2988,7,13,0,0,2988,496,1,0,0,0,2989,2990,7,18,0,0,2990,2991,7,8, - 0,0,2991,2992,7,28,0,0,2992,2993,7,20,0,0,2993,2994,7,22,0,0,2994, - 2995,7,11,0,0,2995,2996,7,14,0,0,2996,498,1,0,0,0,2997,2998,7,18, - 0,0,2998,2999,7,10,0,0,2999,3000,7,20,0,0,3000,3001,7,7,0,0,3001, - 3002,7,6,0,0,3002,3003,7,17,0,0,3003,3004,7,18,0,0,3004,3005,7,20, - 0,0,3005,3006,7,8,0,0,3006,500,1,0,0,0,3007,3008,7,22,0,0,3008,3009, - 7,11,0,0,3009,3010,7,9,0,0,3010,502,1,0,0,0,3011,3012,7,7,0,0,3012, - 3013,7,6,0,0,3013,3014,7,19,0,0,3014,3015,7,11,0,0,3015,3016,7,7, - 0,0,3016,504,1,0,0,0,3017,3018,7,7,0,0,3018,3019,7,6,0,0,3019,3020, - 7,8,0,0,3020,3021,7,24,0,0,3021,3022,7,23,0,0,3022,3023,7,6,0,0, - 3023,3024,7,24,0,0,3024,3025,7,11,0,0,3025,506,1,0,0,0,3026,3027, - 7,7,0,0,3027,3028,7,6,0,0,3028,3029,7,14,0,0,3029,3030,7,24,0,0, - 3030,3031,7,11,0,0,3031,508,1,0,0,0,3032,3033,7,7,0,0,3033,3034, - 7,6,0,0,3034,3035,7,10,0,0,3035,3036,7,17,0,0,3036,510,1,0,0,0,3037, - 3038,7,7,0,0,3038,3039,7,11,0,0,3039,3040,7,6,0,0,3040,3041,7,22, - 0,0,3041,3042,7,25,0,0,3042,3043,7,14,0,0,3043,3044,7,20,0,0,3044, - 3045,7,20,0,0,3045,3046,7,26,0,0,3046,512,1,0,0,0,3047,3048,7,7, - 0,0,3048,3049,7,11,0,0,3049,3050,7,28,0,0,3050,3051,7,11,0,0,3051, - 3052,7,7,0,0,3052,514,1,0,0,0,3053,3054,7,7,0,0,3054,3055,7,18,0, - 0,3055,3056,7,10,0,0,3056,3057,7,17,0,0,3057,3058,7,11,0,0,3058, - 3059,7,8,0,0,3059,516,1,0,0,0,3060,3061,7,7,0,0,3061,3062,7,20,0, - 0,3062,3063,7,6,0,0,3063,3064,7,13,0,0,3064,518,1,0,0,0,3065,3066, - 7,7,0,0,3066,3067,7,20,0,0,3067,3068,7,15,0,0,3068,3069,7,6,0,0, - 3069,3070,7,7,0,0,3070,520,1,0,0,0,3071,3072,7,7,0,0,3072,3073,7, - 20,0,0,3073,3074,7,15,0,0,3074,3075,7,6,0,0,3075,3076,7,17,0,0,3076, - 3077,7,18,0,0,3077,3078,7,20,0,0,3078,3079,7,8,0,0,3079,522,1,0, - 0,0,3080,3081,7,7,0,0,3081,3082,7,20,0,0,3082,3083,7,15,0,0,3083, - 3084,7,22,0,0,3084,524,1,0,0,0,3085,3086,7,16,0,0,3086,3087,7,6, - 0,0,3087,3088,7,25,0,0,3088,3089,7,25,0,0,3089,3090,7,18,0,0,3090, - 3091,7,8,0,0,3091,3092,7,24,0,0,3092,526,1,0,0,0,3093,3094,7,16, - 0,0,3094,3095,7,6,0,0,3095,3096,7,17,0,0,3096,3097,7,15,0,0,3097, - 3098,7,21,0,0,3098,528,1,0,0,0,3099,3100,7,16,0,0,3100,3101,7,6, - 0,0,3101,3102,7,17,0,0,3102,3103,7,11,0,0,3103,3104,7,14,0,0,3104, - 3105,7,18,0,0,3105,3106,7,6,0,0,3106,3107,7,7,0,0,3107,3108,7,18, - 0,0,3108,3109,7,12,0,0,3109,3110,7,11,0,0,3110,3111,7,13,0,0,3111, - 530,1,0,0,0,3112,3113,7,16,0,0,3113,3114,7,6,0,0,3114,3115,7,27, - 0,0,3115,3116,7,28,0,0,3116,3117,7,6,0,0,3117,3118,7,7,0,0,3118, - 3119,7,23,0,0,3119,3120,7,11,0,0,3120,532,1,0,0,0,3121,3122,7,16, - 0,0,3122,3123,7,18,0,0,3123,3124,7,8,0,0,3124,3125,7,23,0,0,3125, - 3126,7,17,0,0,3126,3127,7,11,0,0,3127,534,1,0,0,0,3128,3129,7,16, - 0,0,3129,3130,7,18,0,0,3130,3131,7,8,0,0,3131,3132,7,28,0,0,3132, - 3133,7,6,0,0,3133,3134,7,7,0,0,3134,3135,7,23,0,0,3135,3136,7,11, - 0,0,3136,536,1,0,0,0,3137,3138,7,16,0,0,3138,3139,7,20,0,0,3139, - 3140,7,13,0,0,3140,3141,7,11,0,0,3141,538,1,0,0,0,3142,3143,7,16, - 0,0,3143,3144,7,20,0,0,3144,3145,7,8,0,0,3145,3146,7,17,0,0,3146, - 3147,7,21,0,0,3147,540,1,0,0,0,3148,3149,7,16,0,0,3149,3150,7,20, - 0,0,3150,3151,7,28,0,0,3151,3152,7,11,0,0,3152,542,1,0,0,0,3153, - 3154,7,8,0,0,3154,3155,7,6,0,0,3155,3156,7,16,0,0,3156,3157,7,11, - 0,0,3157,544,1,0,0,0,3158,3159,7,8,0,0,3159,3160,7,6,0,0,3160,3161, - 7,16,0,0,3161,3162,7,11,0,0,3162,3163,7,10,0,0,3163,546,1,0,0,0, - 3164,3165,7,8,0,0,3165,3166,7,11,0,0,3166,3167,7,27,0,0,3167,3168, - 7,17,0,0,3168,548,1,0,0,0,3169,3170,7,8,0,0,3170,3171,7,20,0,0,3171, - 550,1,0,0,0,3172,3173,7,8,0,0,3173,3174,7,20,0,0,3174,3175,7,17, - 0,0,3175,3176,7,21,0,0,3176,3177,7,18,0,0,3177,3178,7,8,0,0,3178, - 3179,7,24,0,0,3179,552,1,0,0,0,3180,3181,7,8,0,0,3181,3182,7,20, - 0,0,3182,3183,7,17,0,0,3183,3184,7,18,0,0,3184,3185,7,26,0,0,3185, - 3186,7,9,0,0,3186,554,1,0,0,0,3187,3188,7,8,0,0,3188,3189,7,20,0, - 0,3189,3190,7,30,0,0,3190,3191,7,6,0,0,3191,3192,7,18,0,0,3192,3193, - 7,17,0,0,3193,556,1,0,0,0,3194,3195,7,8,0,0,3195,3196,7,23,0,0,3196, - 3197,7,7,0,0,3197,3198,7,7,0,0,3198,3199,7,10,0,0,3199,558,1,0,0, - 0,3200,3201,7,20,0,0,3201,3202,7,19,0,0,3202,3203,7,31,0,0,3203, - 3204,7,11,0,0,3204,3205,7,15,0,0,3205,3206,7,17,0,0,3206,560,1,0, - 0,0,3207,3208,7,20,0,0,3208,3209,7,26,0,0,3209,562,1,0,0,0,3210, - 3211,7,20,0,0,3211,3212,7,26,0,0,3212,3213,7,26,0,0,3213,564,1,0, - 0,0,3214,3215,7,20,0,0,3215,3216,7,18,0,0,3216,3217,7,13,0,0,3217, - 3218,7,10,0,0,3218,566,1,0,0,0,3219,3220,7,20,0,0,3220,3221,7,25, - 0,0,3221,3222,7,11,0,0,3222,3223,7,14,0,0,3223,3224,7,6,0,0,3224, - 3225,7,17,0,0,3225,3226,7,20,0,0,3226,3227,7,14,0,0,3227,568,1,0, - 0,0,3228,3229,7,20,0,0,3229,3230,7,25,0,0,3230,3231,7,17,0,0,3231, - 3232,7,18,0,0,3232,3233,7,20,0,0,3233,3234,7,8,0,0,3234,570,1,0, - 0,0,3235,3236,7,20,0,0,3236,3237,7,25,0,0,3237,3238,7,17,0,0,3238, - 3239,7,18,0,0,3239,3240,7,20,0,0,3240,3241,7,8,0,0,3241,3242,7,10, - 0,0,3242,572,1,0,0,0,3243,3244,7,20,0,0,3244,3245,7,30,0,0,3245, - 3246,7,8,0,0,3246,3247,7,11,0,0,3247,3248,7,13,0,0,3248,574,1,0, - 0,0,3249,3250,7,20,0,0,3250,3251,7,30,0,0,3251,3252,7,8,0,0,3252, - 3253,7,11,0,0,3253,3254,7,14,0,0,3254,576,1,0,0,0,3255,3256,7,25, - 0,0,3256,3257,7,6,0,0,3257,3258,7,14,0,0,3258,3259,7,10,0,0,3259, - 3260,7,11,0,0,3260,3261,7,14,0,0,3261,578,1,0,0,0,3262,3263,7,25, - 0,0,3263,3264,7,6,0,0,3264,3265,7,14,0,0,3265,3266,7,17,0,0,3266, - 3267,7,18,0,0,3267,3268,7,6,0,0,3268,3269,7,7,0,0,3269,580,1,0,0, - 0,3270,3271,7,25,0,0,3271,3272,7,6,0,0,3272,3273,7,14,0,0,3273,3274, - 7,17,0,0,3274,3275,7,18,0,0,3275,3276,7,17,0,0,3276,3277,7,18,0, - 0,3277,3278,7,20,0,0,3278,3279,7,8,0,0,3279,582,1,0,0,0,3280,3281, - 7,25,0,0,3281,3282,7,6,0,0,3282,3283,7,10,0,0,3283,3284,7,10,0,0, - 3284,3285,7,18,0,0,3285,3286,7,8,0,0,3286,3287,7,24,0,0,3287,584, - 1,0,0,0,3288,3289,7,25,0,0,3289,3290,7,6,0,0,3290,3291,7,10,0,0, - 3291,3292,7,10,0,0,3292,3293,7,30,0,0,3293,3294,7,20,0,0,3294,3295, - 7,14,0,0,3295,3296,7,13,0,0,3296,586,1,0,0,0,3297,3298,7,25,0,0, - 3298,3299,7,7,0,0,3299,3300,7,6,0,0,3300,3301,7,8,0,0,3301,3302, - 7,10,0,0,3302,588,1,0,0,0,3303,3304,7,25,0,0,3304,3305,7,14,0,0, - 3305,3306,7,11,0,0,3306,3307,7,15,0,0,3307,3308,7,11,0,0,3308,3309, - 7,13,0,0,3309,3310,7,18,0,0,3310,3311,7,8,0,0,3311,3312,7,24,0,0, - 3312,590,1,0,0,0,3313,3314,7,25,0,0,3314,3315,7,14,0,0,3315,3316, - 7,11,0,0,3316,3317,7,25,0,0,3317,3318,7,6,0,0,3318,3319,7,14,0,0, - 3319,3320,7,11,0,0,3320,592,1,0,0,0,3321,3322,7,25,0,0,3322,3323, - 7,14,0,0,3323,3324,7,11,0,0,3324,3325,7,25,0,0,3325,3326,7,6,0,0, - 3326,3327,7,14,0,0,3327,3328,7,11,0,0,3328,3329,7,13,0,0,3329,594, - 1,0,0,0,3330,3331,7,25,0,0,3331,3332,7,14,0,0,3332,3333,7,11,0,0, - 3333,3334,7,10,0,0,3334,3335,7,11,0,0,3335,3336,7,14,0,0,3336,3337, - 7,28,0,0,3337,3338,7,11,0,0,3338,596,1,0,0,0,3339,3340,7,25,0,0, - 3340,3341,7,14,0,0,3341,3342,7,18,0,0,3342,3343,7,20,0,0,3343,3344, - 7,14,0,0,3344,598,1,0,0,0,3345,3346,7,25,0,0,3346,3347,7,14,0,0, - 3347,3348,7,18,0,0,3348,3349,7,28,0,0,3349,3350,7,18,0,0,3350,3351, - 7,7,0,0,3351,3352,7,11,0,0,3352,3353,7,24,0,0,3353,3354,7,11,0,0, - 3354,3355,7,10,0,0,3355,600,1,0,0,0,3356,3357,7,25,0,0,3357,3358, - 7,14,0,0,3358,3359,7,20,0,0,3359,3360,7,15,0,0,3360,3361,7,11,0, - 0,3361,3362,7,13,0,0,3362,3363,7,23,0,0,3363,3364,7,14,0,0,3364, - 3365,7,6,0,0,3365,3366,7,7,0,0,3366,602,1,0,0,0,3367,3368,7,25,0, - 0,3368,3369,7,14,0,0,3369,3370,7,20,0,0,3370,3371,7,15,0,0,3371, - 3372,7,11,0,0,3372,3373,7,13,0,0,3373,3374,7,23,0,0,3374,3375,7, - 14,0,0,3375,3376,7,11,0,0,3376,604,1,0,0,0,3377,3378,7,25,0,0,3378, - 3379,7,14,0,0,3379,3380,7,20,0,0,3380,3381,7,24,0,0,3381,3382,7, - 14,0,0,3382,3383,7,6,0,0,3383,3384,7,16,0,0,3384,606,1,0,0,0,3385, - 3386,7,29,0,0,3386,3387,7,23,0,0,3387,3388,7,20,0,0,3388,3389,7, - 17,0,0,3389,3390,7,11,0,0,3390,608,1,0,0,0,3391,3392,7,14,0,0,3392, - 3393,7,6,0,0,3393,3394,7,8,0,0,3394,3395,7,24,0,0,3395,3396,7,11, - 0,0,3396,610,1,0,0,0,3397,3398,7,14,0,0,3398,3399,7,11,0,0,3399, - 3400,7,6,0,0,3400,3401,7,13,0,0,3401,612,1,0,0,0,3402,3403,7,14, - 0,0,3403,3404,7,11,0,0,3404,3405,7,6,0,0,3405,3406,7,10,0,0,3406, - 3407,7,10,0,0,3407,3408,7,18,0,0,3408,3409,7,24,0,0,3409,3410,7, - 8,0,0,3410,614,1,0,0,0,3411,3412,7,14,0,0,3412,3413,7,11,0,0,3413, - 3414,7,15,0,0,3414,3415,7,21,0,0,3415,3416,7,11,0,0,3416,3417,7, - 15,0,0,3417,3418,7,22,0,0,3418,616,1,0,0,0,3419,3420,7,14,0,0,3420, - 3421,7,11,0,0,3421,3422,7,15,0,0,3422,3423,7,23,0,0,3423,3424,7, - 14,0,0,3424,3425,7,10,0,0,3425,3426,7,18,0,0,3426,3427,7,28,0,0, - 3427,3428,7,11,0,0,3428,618,1,0,0,0,3429,3430,7,14,0,0,3430,3431, - 7,11,0,0,3431,3432,7,26,0,0,3432,620,1,0,0,0,3433,3434,7,14,0,0, - 3434,3435,7,11,0,0,3435,3436,7,26,0,0,3436,3437,7,14,0,0,3437,3438, - 7,11,0,0,3438,3439,7,10,0,0,3439,3440,7,21,0,0,3440,622,1,0,0,0, - 3441,3442,7,14,0,0,3442,3443,7,11,0,0,3443,3444,7,18,0,0,3444,3445, - 7,8,0,0,3445,3446,7,13,0,0,3446,3447,7,11,0,0,3447,3448,7,27,0,0, - 3448,624,1,0,0,0,3449,3450,7,14,0,0,3450,3451,7,11,0,0,3451,3452, - 7,7,0,0,3452,3453,7,6,0,0,3453,3454,7,17,0,0,3454,3455,7,18,0,0, - 3455,3456,7,28,0,0,3456,3457,7,11,0,0,3457,626,1,0,0,0,3458,3459, - 7,14,0,0,3459,3460,7,11,0,0,3460,3461,7,7,0,0,3461,3462,7,11,0,0, - 3462,3463,7,6,0,0,3463,3464,7,10,0,0,3464,3465,7,11,0,0,3465,628, - 1,0,0,0,3466,3467,7,14,0,0,3467,3468,7,11,0,0,3468,3469,7,8,0,0, - 3469,3470,7,6,0,0,3470,3471,7,16,0,0,3471,3472,7,11,0,0,3472,630, - 1,0,0,0,3473,3474,7,14,0,0,3474,3475,7,11,0,0,3475,3476,7,25,0,0, - 3476,3477,7,11,0,0,3477,3478,7,6,0,0,3478,3479,7,17,0,0,3479,3480, - 7,6,0,0,3480,3481,7,19,0,0,3481,3482,7,7,0,0,3482,3483,7,11,0,0, - 3483,632,1,0,0,0,3484,3485,7,14,0,0,3485,3486,7,11,0,0,3486,3487, - 7,25,0,0,3487,3488,7,7,0,0,3488,3489,7,6,0,0,3489,3490,7,15,0,0, - 3490,3491,7,11,0,0,3491,634,1,0,0,0,3492,3493,7,14,0,0,3493,3494, - 7,11,0,0,3494,3495,7,25,0,0,3495,3496,7,7,0,0,3496,3497,7,18,0,0, - 3497,3498,7,15,0,0,3498,3499,7,6,0,0,3499,636,1,0,0,0,3500,3501, - 7,14,0,0,3501,3502,7,11,0,0,3502,3503,7,10,0,0,3503,3504,7,11,0, - 0,3504,3505,7,17,0,0,3505,638,1,0,0,0,3506,3507,7,14,0,0,3507,3508, - 7,11,0,0,3508,3509,7,10,0,0,3509,3510,7,17,0,0,3510,3511,7,6,0,0, - 3511,3512,7,14,0,0,3512,3513,7,17,0,0,3513,640,1,0,0,0,3514,3515, - 7,14,0,0,3515,3516,7,11,0,0,3516,3517,7,10,0,0,3517,3518,7,17,0, - 0,3518,3519,7,14,0,0,3519,3520,7,18,0,0,3520,3521,7,15,0,0,3521, - 3522,7,17,0,0,3522,642,1,0,0,0,3523,3524,7,14,0,0,3524,3525,7,11, - 0,0,3525,3526,7,17,0,0,3526,3527,7,23,0,0,3527,3528,7,14,0,0,3528, - 3529,7,8,0,0,3529,3530,7,10,0,0,3530,644,1,0,0,0,3531,3532,7,14, - 0,0,3532,3533,7,11,0,0,3533,3534,7,28,0,0,3534,3535,7,20,0,0,3535, - 3536,7,22,0,0,3536,3537,7,11,0,0,3537,646,1,0,0,0,3538,3539,7,14, - 0,0,3539,3540,7,20,0,0,3540,3541,7,7,0,0,3541,3542,7,11,0,0,3542, - 648,1,0,0,0,3543,3544,7,14,0,0,3544,3545,7,20,0,0,3545,3546,7,7, - 0,0,3546,3547,7,7,0,0,3547,3548,7,19,0,0,3548,3549,7,6,0,0,3549, - 3550,7,15,0,0,3550,3551,7,22,0,0,3551,650,1,0,0,0,3552,3553,7,14, - 0,0,3553,3554,7,20,0,0,3554,3555,7,30,0,0,3555,3556,7,10,0,0,3556, - 652,1,0,0,0,3557,3558,7,14,0,0,3558,3559,7,23,0,0,3559,3560,7,7, - 0,0,3560,3561,7,11,0,0,3561,654,1,0,0,0,3562,3563,7,10,0,0,3563, - 3564,7,6,0,0,3564,3565,7,28,0,0,3565,3566,7,11,0,0,3566,3567,7,25, - 0,0,3567,3568,7,20,0,0,3568,3569,7,18,0,0,3569,3570,7,8,0,0,3570, - 3571,7,17,0,0,3571,656,1,0,0,0,3572,3573,7,10,0,0,3573,3574,7,15, - 0,0,3574,3575,7,21,0,0,3575,3576,7,11,0,0,3576,3577,7,16,0,0,3577, - 3578,7,6,0,0,3578,658,1,0,0,0,3579,3580,7,10,0,0,3580,3581,7,15, - 0,0,3581,3582,7,14,0,0,3582,3583,7,20,0,0,3583,3584,7,7,0,0,3584, - 3585,7,7,0,0,3585,660,1,0,0,0,3586,3587,7,10,0,0,3587,3588,7,11, - 0,0,3588,3589,7,6,0,0,3589,3590,7,14,0,0,3590,3591,7,15,0,0,3591, - 3592,7,21,0,0,3592,662,1,0,0,0,3593,3594,7,10,0,0,3594,3595,7,11, - 0,0,3595,3596,7,15,0,0,3596,3597,7,20,0,0,3597,3598,7,8,0,0,3598, - 3599,7,13,0,0,3599,664,1,0,0,0,3600,3601,7,10,0,0,3601,3602,7,11, - 0,0,3602,3603,7,15,0,0,3603,3604,7,23,0,0,3604,3605,7,14,0,0,3605, - 3606,7,18,0,0,3606,3607,7,17,0,0,3607,3608,7,9,0,0,3608,666,1,0, - 0,0,3609,3610,7,10,0,0,3610,3611,7,11,0,0,3611,3612,7,29,0,0,3612, - 3613,7,23,0,0,3613,3614,7,11,0,0,3614,3615,7,8,0,0,3615,3616,7,15, - 0,0,3616,3617,7,11,0,0,3617,668,1,0,0,0,3618,3619,7,10,0,0,3619, - 3620,7,11,0,0,3620,3621,7,29,0,0,3621,3622,7,23,0,0,3622,3623,7, - 11,0,0,3623,3624,7,8,0,0,3624,3625,7,15,0,0,3625,3626,7,11,0,0,3626, - 3627,7,10,0,0,3627,670,1,0,0,0,3628,3629,7,10,0,0,3629,3630,7,11, - 0,0,3630,3631,7,14,0,0,3631,3632,7,18,0,0,3632,3633,7,6,0,0,3633, - 3634,7,7,0,0,3634,3635,7,18,0,0,3635,3636,7,12,0,0,3636,3637,7,6, - 0,0,3637,3638,7,19,0,0,3638,3639,7,7,0,0,3639,3640,7,11,0,0,3640, - 672,1,0,0,0,3641,3642,7,10,0,0,3642,3643,7,11,0,0,3643,3644,7,14, - 0,0,3644,3645,7,28,0,0,3645,3646,7,11,0,0,3646,3647,7,14,0,0,3647, - 674,1,0,0,0,3648,3649,7,10,0,0,3649,3650,7,11,0,0,3650,3651,7,10, - 0,0,3651,3652,7,10,0,0,3652,3653,7,18,0,0,3653,3654,7,20,0,0,3654, - 3655,7,8,0,0,3655,676,1,0,0,0,3656,3657,7,10,0,0,3657,3658,7,11, - 0,0,3658,3659,7,17,0,0,3659,678,1,0,0,0,3660,3661,7,10,0,0,3661, - 3662,7,21,0,0,3662,3663,7,6,0,0,3663,3664,7,14,0,0,3664,3665,7,11, - 0,0,3665,680,1,0,0,0,3666,3667,7,10,0,0,3667,3668,7,21,0,0,3668, - 3669,7,20,0,0,3669,3670,7,30,0,0,3670,682,1,0,0,0,3671,3672,7,10, - 0,0,3672,3673,7,18,0,0,3673,3674,7,16,0,0,3674,3675,7,25,0,0,3675, - 3676,7,7,0,0,3676,3677,7,11,0,0,3677,684,1,0,0,0,3678,3679,7,10, - 0,0,3679,3680,7,8,0,0,3680,3681,7,6,0,0,3681,3682,7,25,0,0,3682, - 3683,7,10,0,0,3683,3684,7,21,0,0,3684,3685,7,20,0,0,3685,3686,7, - 17,0,0,3686,686,1,0,0,0,3687,3688,7,10,0,0,3688,3689,7,17,0,0,3689, - 3690,7,6,0,0,3690,3691,7,19,0,0,3691,3692,7,7,0,0,3692,3693,7,11, - 0,0,3693,688,1,0,0,0,3694,3695,7,10,0,0,3695,3696,7,17,0,0,3696, - 3697,7,6,0,0,3697,3698,7,8,0,0,3698,3699,7,13,0,0,3699,3700,7,6, - 0,0,3700,3701,7,7,0,0,3701,3702,7,20,0,0,3702,3703,7,8,0,0,3703, - 3704,7,11,0,0,3704,690,1,0,0,0,3705,3706,7,10,0,0,3706,3707,7,17, - 0,0,3707,3708,7,6,0,0,3708,3709,7,14,0,0,3709,3710,7,17,0,0,3710, - 692,1,0,0,0,3711,3712,7,10,0,0,3712,3713,7,17,0,0,3713,3714,7,6, - 0,0,3714,3715,7,17,0,0,3715,3716,7,11,0,0,3716,3717,7,16,0,0,3717, - 3718,7,11,0,0,3718,3719,7,8,0,0,3719,3720,7,17,0,0,3720,694,1,0, - 0,0,3721,3722,7,10,0,0,3722,3723,7,17,0,0,3723,3724,7,6,0,0,3724, - 3725,7,17,0,0,3725,3726,7,18,0,0,3726,3727,7,10,0,0,3727,3728,7, - 17,0,0,3728,3729,7,18,0,0,3729,3730,7,15,0,0,3730,3731,7,10,0,0, - 3731,696,1,0,0,0,3732,3733,7,10,0,0,3733,3734,7,17,0,0,3734,3735, - 7,13,0,0,3735,3736,7,18,0,0,3736,3737,7,8,0,0,3737,698,1,0,0,0,3738, - 3739,7,10,0,0,3739,3740,7,17,0,0,3740,3741,7,13,0,0,3741,3742,7, - 20,0,0,3742,3743,7,23,0,0,3743,3744,7,17,0,0,3744,700,1,0,0,0,3745, - 3746,7,10,0,0,3746,3747,7,17,0,0,3747,3748,7,20,0,0,3748,3749,7, - 14,0,0,3749,3750,7,6,0,0,3750,3751,7,24,0,0,3751,3752,7,11,0,0,3752, - 702,1,0,0,0,3753,3754,7,10,0,0,3754,3755,7,17,0,0,3755,3756,7,14, - 0,0,3756,3757,7,18,0,0,3757,3758,7,15,0,0,3758,3759,7,17,0,0,3759, - 704,1,0,0,0,3760,3761,7,10,0,0,3761,3762,7,17,0,0,3762,3763,7,14, - 0,0,3763,3764,7,18,0,0,3764,3765,7,25,0,0,3765,706,1,0,0,0,3766, - 3767,7,10,0,0,3767,3768,7,9,0,0,3768,3769,7,10,0,0,3769,3770,7,18, - 0,0,3770,3771,7,13,0,0,3771,708,1,0,0,0,3772,3773,7,10,0,0,3773, - 3774,7,9,0,0,3774,3775,7,10,0,0,3775,3776,7,17,0,0,3776,3777,7,11, - 0,0,3777,3778,7,16,0,0,3778,710,1,0,0,0,3779,3780,7,17,0,0,3780, - 3781,7,6,0,0,3781,3782,7,19,0,0,3782,3783,7,7,0,0,3783,3784,7,11, - 0,0,3784,3785,7,10,0,0,3785,712,1,0,0,0,3786,3787,7,17,0,0,3787, - 3788,7,6,0,0,3788,3789,7,19,0,0,3789,3790,7,7,0,0,3790,3791,7,11, - 0,0,3791,3792,7,10,0,0,3792,3793,7,25,0,0,3793,3794,7,6,0,0,3794, - 3795,7,15,0,0,3795,3796,7,11,0,0,3796,714,1,0,0,0,3797,3798,7,17, - 0,0,3798,3799,7,11,0,0,3799,3800,7,16,0,0,3800,3801,7,25,0,0,3801, - 716,1,0,0,0,3802,3803,7,17,0,0,3803,3804,7,11,0,0,3804,3805,7,16, - 0,0,3805,3806,7,25,0,0,3806,3807,7,7,0,0,3807,3808,7,6,0,0,3808, - 3809,7,17,0,0,3809,3810,7,11,0,0,3810,718,1,0,0,0,3811,3812,7,17, - 0,0,3812,3813,7,11,0,0,3813,3814,7,16,0,0,3814,3815,7,25,0,0,3815, - 3816,7,20,0,0,3816,3817,7,14,0,0,3817,3818,7,6,0,0,3818,3819,7,14, - 0,0,3819,3820,7,9,0,0,3820,720,1,0,0,0,3821,3822,7,17,0,0,3822,3823, - 7,11,0,0,3823,3824,7,27,0,0,3824,3825,7,17,0,0,3825,722,1,0,0,0, - 3826,3827,7,17,0,0,3827,3828,7,14,0,0,3828,3829,7,6,0,0,3829,3830, - 7,8,0,0,3830,3831,7,10,0,0,3831,3832,7,6,0,0,3832,3833,7,15,0,0, - 3833,3834,7,17,0,0,3834,3835,7,18,0,0,3835,3836,7,20,0,0,3836,3837, - 7,8,0,0,3837,724,1,0,0,0,3838,3839,7,17,0,0,3839,3840,7,14,0,0,3840, - 3841,7,18,0,0,3841,3842,7,24,0,0,3842,3843,7,24,0,0,3843,3844,7, - 11,0,0,3844,3845,7,14,0,0,3845,726,1,0,0,0,3846,3847,7,17,0,0,3847, - 3848,7,14,0,0,3848,3849,7,23,0,0,3849,3850,7,8,0,0,3850,3851,7,15, - 0,0,3851,3852,7,6,0,0,3852,3853,7,17,0,0,3853,3854,7,11,0,0,3854, - 728,1,0,0,0,3855,3856,7,17,0,0,3856,3857,7,14,0,0,3857,3858,7,23, - 0,0,3858,3859,7,10,0,0,3859,3860,7,17,0,0,3860,3861,7,11,0,0,3861, - 3862,7,13,0,0,3862,730,1,0,0,0,3863,3864,7,17,0,0,3864,3865,7,9, - 0,0,3865,3866,7,25,0,0,3866,3867,7,11,0,0,3867,732,1,0,0,0,3868, - 3869,7,17,0,0,3869,3870,7,9,0,0,3870,3871,7,25,0,0,3871,3872,7,11, - 0,0,3872,3873,7,10,0,0,3873,734,1,0,0,0,3874,3875,7,23,0,0,3875, - 3876,7,8,0,0,3876,3877,7,19,0,0,3877,3878,7,20,0,0,3878,3879,7,23, - 0,0,3879,3880,7,8,0,0,3880,3881,7,13,0,0,3881,3882,7,11,0,0,3882, - 3883,7,13,0,0,3883,736,1,0,0,0,3884,3885,7,23,0,0,3885,3886,7,8, - 0,0,3886,3887,7,15,0,0,3887,3888,7,20,0,0,3888,3889,7,16,0,0,3889, - 3890,7,16,0,0,3890,3891,7,18,0,0,3891,3892,7,17,0,0,3892,3893,7, - 17,0,0,3893,3894,7,11,0,0,3894,3895,7,13,0,0,3895,738,1,0,0,0,3896, - 3897,7,23,0,0,3897,3898,7,8,0,0,3898,3899,7,11,0,0,3899,3900,7,8, - 0,0,3900,3901,7,15,0,0,3901,3902,7,14,0,0,3902,3903,7,9,0,0,3903, - 3904,7,25,0,0,3904,3905,7,17,0,0,3905,3906,7,11,0,0,3906,3907,7, - 13,0,0,3907,740,1,0,0,0,3908,3909,7,23,0,0,3909,3910,7,8,0,0,3910, - 3911,7,22,0,0,3911,3912,7,8,0,0,3912,3913,7,20,0,0,3913,3914,7,30, - 0,0,3914,3915,7,8,0,0,3915,742,1,0,0,0,3916,3917,7,23,0,0,3917,3918, - 7,8,0,0,3918,3919,7,7,0,0,3919,3920,7,18,0,0,3920,3921,7,10,0,0, - 3921,3922,7,17,0,0,3922,3923,7,11,0,0,3923,3924,7,8,0,0,3924,744, - 1,0,0,0,3925,3926,7,23,0,0,3926,3927,7,8,0,0,3927,3928,7,7,0,0,3928, - 3929,7,20,0,0,3929,3930,7,24,0,0,3930,3931,7,24,0,0,3931,3932,7, - 11,0,0,3932,3933,7,13,0,0,3933,746,1,0,0,0,3934,3935,7,23,0,0,3935, - 3936,7,8,0,0,3936,3937,7,17,0,0,3937,3938,7,18,0,0,3938,3939,7,7, - 0,0,3939,748,1,0,0,0,3940,3941,7,23,0,0,3941,3942,7,25,0,0,3942, - 3943,7,13,0,0,3943,3944,7,6,0,0,3944,3945,7,17,0,0,3945,3946,7,11, - 0,0,3946,750,1,0,0,0,3947,3948,7,28,0,0,3948,3949,7,6,0,0,3949,3950, - 7,15,0,0,3950,3951,7,23,0,0,3951,3952,7,23,0,0,3952,3953,7,16,0, - 0,3953,752,1,0,0,0,3954,3955,7,28,0,0,3955,3956,7,6,0,0,3956,3957, - 7,7,0,0,3957,3958,7,18,0,0,3958,3959,7,13,0,0,3959,754,1,0,0,0,3960, - 3961,7,28,0,0,3961,3962,7,6,0,0,3962,3963,7,7,0,0,3963,3964,7,18, - 0,0,3964,3965,7,13,0,0,3965,3966,7,6,0,0,3966,3967,7,17,0,0,3967, - 3968,7,11,0,0,3968,756,1,0,0,0,3969,3970,7,28,0,0,3970,3971,7,6, - 0,0,3971,3972,7,7,0,0,3972,3973,7,18,0,0,3973,3974,7,13,0,0,3974, - 3975,7,6,0,0,3975,3976,7,17,0,0,3976,3977,7,20,0,0,3977,3978,7,14, - 0,0,3978,758,1,0,0,0,3979,3980,7,28,0,0,3980,3981,7,6,0,0,3981,3982, - 7,14,0,0,3982,3983,7,9,0,0,3983,3984,7,18,0,0,3984,3985,7,8,0,0, - 3985,3986,7,24,0,0,3986,760,1,0,0,0,3987,3988,7,28,0,0,3988,3989, - 7,11,0,0,3989,3990,7,14,0,0,3990,3991,7,10,0,0,3991,3992,7,18,0, - 0,3992,3993,7,20,0,0,3993,3994,7,8,0,0,3994,762,1,0,0,0,3995,3996, - 7,28,0,0,3996,3997,7,18,0,0,3997,3998,7,11,0,0,3998,3999,7,30,0, - 0,3999,764,1,0,0,0,4000,4001,7,28,0,0,4001,4002,7,20,0,0,4002,4003, - 7,7,0,0,4003,4004,7,6,0,0,4004,4005,7,17,0,0,4005,4006,7,18,0,0, - 4006,4007,7,7,0,0,4007,4008,7,11,0,0,4008,766,1,0,0,0,4009,4010, - 7,30,0,0,4010,4011,7,21,0,0,4011,4012,7,18,0,0,4012,4013,7,17,0, - 0,4013,4014,7,11,0,0,4014,4015,7,10,0,0,4015,4016,7,25,0,0,4016, - 4017,7,6,0,0,4017,4018,7,15,0,0,4018,4019,7,11,0,0,4019,768,1,0, - 0,0,4020,4021,7,30,0,0,4021,4022,7,18,0,0,4022,4023,7,17,0,0,4023, - 4024,7,21,0,0,4024,4025,7,20,0,0,4025,4026,7,23,0,0,4026,4027,7, - 17,0,0,4027,770,1,0,0,0,4028,4029,7,30,0,0,4029,4030,7,20,0,0,4030, - 4031,7,14,0,0,4031,4032,7,22,0,0,4032,772,1,0,0,0,4033,4034,7,30, - 0,0,4034,4035,7,14,0,0,4035,4036,7,6,0,0,4036,4037,7,25,0,0,4037, - 4038,7,25,0,0,4038,4039,7,11,0,0,4039,4040,7,14,0,0,4040,774,1,0, - 0,0,4041,4042,7,30,0,0,4042,4043,7,14,0,0,4043,4044,7,18,0,0,4044, - 4045,7,17,0,0,4045,4046,7,11,0,0,4046,776,1,0,0,0,4047,4048,7,27, - 0,0,4048,4049,7,16,0,0,4049,4050,7,7,0,0,4050,778,1,0,0,0,4051,4052, - 7,9,0,0,4052,4053,7,11,0,0,4053,4054,7,6,0,0,4054,4055,7,14,0,0, - 4055,780,1,0,0,0,4056,4057,7,9,0,0,4057,4058,7,11,0,0,4058,4059, - 7,10,0,0,4059,782,1,0,0,0,4060,4061,7,12,0,0,4061,4062,7,20,0,0, - 4062,4063,7,8,0,0,4063,4064,7,11,0,0,4064,784,1,0,0,0,4065,4066, - 7,19,0,0,4066,4067,7,11,0,0,4067,4068,7,17,0,0,4068,4069,7,30,0, - 0,4069,4070,7,11,0,0,4070,4071,7,11,0,0,4071,4072,7,8,0,0,4072,786, - 1,0,0,0,4073,4074,7,19,0,0,4074,4075,7,18,0,0,4075,4076,7,24,0,0, - 4076,4077,7,18,0,0,4077,4078,7,8,0,0,4078,4079,7,17,0,0,4079,788, - 1,0,0,0,4080,4081,7,19,0,0,4081,4082,7,18,0,0,4082,4083,7,17,0,0, - 4083,790,1,0,0,0,4084,4085,7,19,0,0,4085,4086,7,20,0,0,4086,4087, - 7,20,0,0,4087,4088,7,7,0,0,4088,4089,7,11,0,0,4089,4090,7,6,0,0, - 4090,4091,7,8,0,0,4091,792,1,0,0,0,4092,4093,7,15,0,0,4093,4094, - 7,21,0,0,4094,4095,7,6,0,0,4095,4096,7,14,0,0,4096,794,1,0,0,0,4097, - 4098,7,15,0,0,4098,4099,7,21,0,0,4099,4100,7,6,0,0,4100,4101,7,14, - 0,0,4101,4102,7,6,0,0,4102,4103,7,15,0,0,4103,4104,7,17,0,0,4104, - 4105,7,11,0,0,4105,4106,7,14,0,0,4106,796,1,0,0,0,4107,4108,7,15, - 0,0,4108,4109,7,20,0,0,4109,4110,7,6,0,0,4110,4111,7,7,0,0,4111, - 4112,7,11,0,0,4112,4113,7,10,0,0,4113,4114,7,15,0,0,4114,4115,7, - 11,0,0,4115,798,1,0,0,0,4116,4117,7,13,0,0,4117,4118,7,11,0,0,4118, - 4119,7,15,0,0,4119,800,1,0,0,0,4120,4121,7,13,0,0,4121,4122,7,11, - 0,0,4122,4123,7,15,0,0,4123,4124,7,18,0,0,4124,4125,7,16,0,0,4125, - 4126,7,6,0,0,4126,4127,7,7,0,0,4127,802,1,0,0,0,4128,4129,7,11,0, - 0,4129,4130,7,27,0,0,4130,4131,7,18,0,0,4131,4132,7,10,0,0,4132, - 4133,7,17,0,0,4133,4134,7,10,0,0,4134,804,1,0,0,0,4135,4136,7,11, - 0,0,4136,4137,7,27,0,0,4137,4138,7,17,0,0,4138,4139,7,14,0,0,4139, - 4140,7,6,0,0,4140,4141,7,15,0,0,4141,4142,7,17,0,0,4142,806,1,0, - 0,0,4143,4144,7,26,0,0,4144,4145,7,7,0,0,4145,4146,7,20,0,0,4146, - 4147,7,6,0,0,4147,4148,7,17,0,0,4148,808,1,0,0,0,4149,4150,7,24, - 0,0,4150,4151,7,14,0,0,4151,4152,7,11,0,0,4152,4153,7,6,0,0,4153, - 4154,7,17,0,0,4154,4155,7,11,0,0,4155,4156,7,10,0,0,4156,4157,7, - 17,0,0,4157,810,1,0,0,0,4158,4159,7,18,0,0,4159,4160,7,8,0,0,4160, - 4161,7,20,0,0,4161,4162,7,23,0,0,4162,4163,7,17,0,0,4163,812,1,0, - 0,0,4164,4165,7,18,0,0,4165,4166,7,8,0,0,4166,4167,7,17,0,0,4167, - 814,1,0,0,0,4168,4169,7,18,0,0,4169,4170,7,8,0,0,4170,4171,7,17, - 0,0,4171,4172,7,11,0,0,4172,4173,7,24,0,0,4173,4174,7,11,0,0,4174, - 4175,7,14,0,0,4175,816,1,0,0,0,4176,4177,7,18,0,0,4177,4178,7,8, - 0,0,4178,4179,7,17,0,0,4179,4180,7,11,0,0,4180,4181,7,14,0,0,4181, - 4182,7,28,0,0,4182,4183,7,6,0,0,4183,4184,7,7,0,0,4184,818,1,0,0, - 0,4185,4186,7,7,0,0,4186,4187,7,11,0,0,4187,4188,7,6,0,0,4188,4189, - 7,10,0,0,4189,4190,7,17,0,0,4190,820,1,0,0,0,4191,4192,7,8,0,0,4192, - 4193,7,6,0,0,4193,4194,7,17,0,0,4194,4195,7,18,0,0,4195,4196,7,20, - 0,0,4196,4197,7,8,0,0,4197,4198,7,6,0,0,4198,4199,7,7,0,0,4199,822, - 1,0,0,0,4200,4201,7,8,0,0,4201,4202,7,15,0,0,4202,4203,7,21,0,0, - 4203,4204,7,6,0,0,4204,4205,7,14,0,0,4205,824,1,0,0,0,4206,4207, - 7,8,0,0,4207,4208,7,20,0,0,4208,4209,7,8,0,0,4209,4210,7,11,0,0, - 4210,826,1,0,0,0,4211,4212,7,8,0,0,4212,4213,7,23,0,0,4213,4214, - 7,7,0,0,4214,4215,7,7,0,0,4215,4216,7,18,0,0,4216,4217,7,26,0,0, - 4217,828,1,0,0,0,4218,4219,7,8,0,0,4219,4220,7,23,0,0,4220,4221, - 7,16,0,0,4221,4222,7,11,0,0,4222,4223,7,14,0,0,4223,4224,7,18,0, - 0,4224,4225,7,15,0,0,4225,830,1,0,0,0,4226,4227,7,20,0,0,4227,4228, - 7,28,0,0,4228,4229,7,11,0,0,4229,4230,7,14,0,0,4230,4231,7,7,0,0, - 4231,4232,7,6,0,0,4232,4233,7,9,0,0,4233,832,1,0,0,0,4234,4235,7, - 25,0,0,4235,4236,7,20,0,0,4236,4237,7,10,0,0,4237,4238,7,18,0,0, - 4238,4239,7,17,0,0,4239,4240,7,18,0,0,4240,4241,7,20,0,0,4241,4242, - 7,8,0,0,4242,834,1,0,0,0,4243,4244,7,25,0,0,4244,4245,7,14,0,0,4245, - 4246,7,11,0,0,4246,4247,7,15,0,0,4247,4248,7,18,0,0,4248,4249,7, - 10,0,0,4249,4250,7,18,0,0,4250,4251,7,20,0,0,4251,4252,7,8,0,0,4252, - 836,1,0,0,0,4253,4254,7,14,0,0,4254,4255,7,11,0,0,4255,4256,7,6, - 0,0,4256,4257,7,7,0,0,4257,838,1,0,0,0,4258,4259,7,14,0,0,4259,4260, - 7,20,0,0,4260,4261,7,30,0,0,4261,840,1,0,0,0,4262,4263,7,10,0,0, - 4263,4264,7,11,0,0,4264,4265,7,17,0,0,4265,4266,7,20,0,0,4266,4267, - 7,26,0,0,4267,842,1,0,0,0,4268,4269,7,10,0,0,4269,4270,7,16,0,0, - 4270,4271,7,6,0,0,4271,4272,7,7,0,0,4272,4273,7,7,0,0,4273,4274, - 7,18,0,0,4274,4275,7,8,0,0,4275,4276,7,17,0,0,4276,844,1,0,0,0,4277, - 4278,7,10,0,0,4278,4279,7,23,0,0,4279,4280,7,19,0,0,4280,4281,7, - 10,0,0,4281,4282,7,17,0,0,4282,4283,7,14,0,0,4283,4284,7,18,0,0, - 4284,4285,7,8,0,0,4285,4286,7,24,0,0,4286,846,1,0,0,0,4287,4288, - 7,17,0,0,4288,4289,7,18,0,0,4289,4290,7,16,0,0,4290,4291,7,11,0, - 0,4291,848,1,0,0,0,4292,4293,7,17,0,0,4293,4294,7,18,0,0,4294,4295, - 7,16,0,0,4295,4296,7,11,0,0,4296,4297,7,10,0,0,4297,4298,7,17,0, - 0,4298,4299,7,6,0,0,4299,4300,7,16,0,0,4300,4301,7,25,0,0,4301,850, - 1,0,0,0,4302,4303,7,17,0,0,4303,4304,7,14,0,0,4304,4305,7,11,0,0, - 4305,4306,7,6,0,0,4306,4307,7,17,0,0,4307,852,1,0,0,0,4308,4309, - 7,17,0,0,4309,4310,7,14,0,0,4310,4311,7,18,0,0,4311,4312,7,16,0, - 0,4312,854,1,0,0,0,4313,4314,7,28,0,0,4314,4315,7,6,0,0,4315,4316, - 7,7,0,0,4316,4317,7,23,0,0,4317,4318,7,11,0,0,4318,4319,7,10,0,0, - 4319,856,1,0,0,0,4320,4321,7,28,0,0,4321,4322,7,6,0,0,4322,4323, - 7,14,0,0,4323,4324,7,15,0,0,4324,4325,7,21,0,0,4325,4326,7,6,0,0, - 4326,4327,7,14,0,0,4327,858,1,0,0,0,4328,4329,7,27,0,0,4329,4330, - 7,16,0,0,4330,4331,7,7,0,0,4331,4332,7,6,0,0,4332,4333,7,17,0,0, - 4333,4334,7,17,0,0,4334,4335,7,14,0,0,4335,4336,7,18,0,0,4336,4337, - 7,19,0,0,4337,4338,7,23,0,0,4338,4339,7,17,0,0,4339,4340,7,11,0, - 0,4340,4341,7,10,0,0,4341,860,1,0,0,0,4342,4343,7,27,0,0,4343,4344, - 7,16,0,0,4344,4345,7,7,0,0,4345,4346,7,15,0,0,4346,4347,7,20,0,0, - 4347,4348,7,8,0,0,4348,4349,7,15,0,0,4349,4350,7,6,0,0,4350,4351, - 7,17,0,0,4351,862,1,0,0,0,4352,4353,7,27,0,0,4353,4354,7,16,0,0, - 4354,4355,7,7,0,0,4355,4356,7,11,0,0,4356,4357,7,7,0,0,4357,4358, - 7,11,0,0,4358,4359,7,16,0,0,4359,4360,7,11,0,0,4360,4361,7,8,0,0, - 4361,4362,7,17,0,0,4362,864,1,0,0,0,4363,4364,7,27,0,0,4364,4365, - 7,16,0,0,4365,4366,7,7,0,0,4366,4367,7,11,0,0,4367,4368,7,27,0,0, - 4368,4369,7,18,0,0,4369,4370,7,10,0,0,4370,4371,7,17,0,0,4371,4372, - 7,10,0,0,4372,866,1,0,0,0,4373,4374,7,27,0,0,4374,4375,7,16,0,0, - 4375,4376,7,7,0,0,4376,4377,7,26,0,0,4377,4378,7,20,0,0,4378,4379, - 7,14,0,0,4379,4380,7,11,0,0,4380,4381,7,10,0,0,4381,4382,7,17,0, - 0,4382,868,1,0,0,0,4383,4384,7,27,0,0,4384,4385,7,16,0,0,4385,4386, - 7,7,0,0,4386,4387,7,25,0,0,4387,4388,7,6,0,0,4388,4389,7,14,0,0, - 4389,4390,7,10,0,0,4390,4391,7,11,0,0,4391,870,1,0,0,0,4392,4393, - 7,27,0,0,4393,4394,7,16,0,0,4394,4395,7,7,0,0,4395,4396,7,25,0,0, - 4396,4397,7,18,0,0,4397,872,1,0,0,0,4398,4399,7,27,0,0,4399,4400, - 7,16,0,0,4400,4401,7,7,0,0,4401,4402,7,14,0,0,4402,4403,7,20,0,0, - 4403,4404,7,20,0,0,4404,4405,7,17,0,0,4405,874,1,0,0,0,4406,4407, - 7,27,0,0,4407,4408,7,16,0,0,4408,4409,7,7,0,0,4409,4410,7,10,0,0, - 4410,4411,7,11,0,0,4411,4412,7,14,0,0,4412,4413,7,18,0,0,4413,4414, - 7,6,0,0,4414,4415,7,7,0,0,4415,4416,7,18,0,0,4416,4417,7,12,0,0, - 4417,4418,7,11,0,0,4418,876,1,0,0,0,4419,4420,7,15,0,0,4420,4421, - 7,6,0,0,4421,4422,7,7,0,0,4422,4423,7,7,0,0,4423,878,1,0,0,0,4424, - 4425,7,15,0,0,4425,4426,7,23,0,0,4426,4427,7,14,0,0,4427,4428,7, - 14,0,0,4428,4429,7,11,0,0,4429,4430,7,8,0,0,4430,4431,7,17,0,0,4431, - 880,1,0,0,0,4432,4433,7,6,0,0,4433,4434,7,17,0,0,4434,4435,7,17, - 0,0,4435,4436,7,6,0,0,4436,4437,7,15,0,0,4437,4438,7,21,0,0,4438, - 882,1,0,0,0,4439,4440,7,13,0,0,4440,4441,7,11,0,0,4441,4442,7,17, - 0,0,4442,4443,7,6,0,0,4443,4444,7,15,0,0,4444,4445,7,21,0,0,4445, - 884,1,0,0,0,4446,4447,7,11,0,0,4447,4448,7,27,0,0,4448,4449,7,25, - 0,0,4449,4450,7,14,0,0,4450,4451,7,11,0,0,4451,4452,7,10,0,0,4452, - 4453,7,10,0,0,4453,4454,7,18,0,0,4454,4455,7,20,0,0,4455,4456,7, - 8,0,0,4456,886,1,0,0,0,4457,4458,7,24,0,0,4458,4459,7,11,0,0,4459, - 4460,7,8,0,0,4460,4461,7,11,0,0,4461,4462,7,14,0,0,4462,4463,7,6, - 0,0,4463,4464,7,17,0,0,4464,4465,7,11,0,0,4465,4466,7,13,0,0,4466, - 888,1,0,0,0,4467,4468,7,7,0,0,4468,4469,7,20,0,0,4469,4470,7,24, - 0,0,4470,4471,7,24,0,0,4471,4472,7,11,0,0,4472,4473,7,13,0,0,4473, - 890,1,0,0,0,4474,4475,7,10,0,0,4475,4476,7,17,0,0,4476,4477,7,20, - 0,0,4477,4478,7,14,0,0,4478,4479,7,11,0,0,4479,4480,7,13,0,0,4480, - 892,1,0,0,0,4481,4482,7,18,0,0,4482,4483,7,8,0,0,4483,4484,7,15, - 0,0,4484,4485,7,7,0,0,4485,4486,7,23,0,0,4486,4487,7,13,0,0,4487, - 4488,7,11,0,0,4488,894,1,0,0,0,4489,4490,7,14,0,0,4490,4491,7,20, - 0,0,4491,4492,7,23,0,0,4492,4493,7,17,0,0,4493,4494,7,18,0,0,4494, - 4495,7,8,0,0,4495,4496,7,11,0,0,4496,896,1,0,0,0,4497,4498,7,17, - 0,0,4498,4499,7,14,0,0,4499,4500,7,6,0,0,4500,4501,7,8,0,0,4501, - 4502,7,10,0,0,4502,4503,7,26,0,0,4503,4504,7,20,0,0,4504,4505,7, - 14,0,0,4505,4506,7,16,0,0,4506,898,1,0,0,0,4507,4508,7,18,0,0,4508, - 4509,7,16,0,0,4509,4510,7,25,0,0,4510,4511,7,20,0,0,4511,4512,7, - 14,0,0,4512,4513,7,17,0,0,4513,900,1,0,0,0,4514,4515,7,25,0,0,4515, - 4516,7,20,0,0,4516,4517,7,7,0,0,4517,4518,7,18,0,0,4518,4519,7,15, - 0,0,4519,4520,7,9,0,0,4520,902,1,0,0,0,4521,4522,7,16,0,0,4522,4523, - 7,11,0,0,4523,4524,7,17,0,0,4524,4525,7,21,0,0,4525,4526,7,20,0, - 0,4526,4527,7,13,0,0,4527,904,1,0,0,0,4528,4529,7,14,0,0,4529,4530, - 7,11,0,0,4530,4531,7,26,0,0,4531,4532,7,11,0,0,4532,4533,7,14,0, - 0,4533,4534,7,11,0,0,4534,4535,7,8,0,0,4535,4536,7,15,0,0,4536,4537, - 7,18,0,0,4537,4538,7,8,0,0,4538,4539,7,24,0,0,4539,906,1,0,0,0,4540, - 4541,7,8,0,0,4541,4542,7,11,0,0,4542,4543,7,30,0,0,4543,908,1,0, - 0,0,4544,4545,7,20,0,0,4545,4546,7,7,0,0,4546,4547,7,13,0,0,4547, - 910,1,0,0,0,4548,4549,7,28,0,0,4549,4550,7,6,0,0,4550,4551,7,7,0, - 0,4551,4552,7,23,0,0,4552,4553,7,11,0,0,4553,912,1,0,0,0,4554,4555, - 7,10,0,0,4555,4556,7,23,0,0,4556,4557,7,19,0,0,4557,4558,7,10,0, - 0,4558,4559,7,15,0,0,4559,4560,7,14,0,0,4560,4561,7,18,0,0,4561, - 4562,7,25,0,0,4562,4563,7,17,0,0,4563,4564,7,18,0,0,4564,4565,7, - 20,0,0,4565,4566,7,8,0,0,4566,914,1,0,0,0,4567,4568,7,25,0,0,4568, - 4569,7,23,0,0,4569,4570,7,19,0,0,4570,4571,7,7,0,0,4571,4572,7,18, - 0,0,4572,4573,7,15,0,0,4573,4574,7,6,0,0,4574,4575,7,17,0,0,4575, - 4576,7,18,0,0,4576,4577,7,20,0,0,4577,4578,7,8,0,0,4578,916,1,0, - 0,0,4579,4580,7,20,0,0,4580,4581,7,23,0,0,4581,4582,7,17,0,0,4582, - 918,1,0,0,0,4583,4584,7,11,0,0,4584,4585,7,8,0,0,4585,4586,7,13, - 0,0,4586,920,1,0,0,0,4587,4588,7,14,0,0,4588,4589,7,20,0,0,4589, - 4590,7,23,0,0,4590,4591,7,17,0,0,4591,4592,7,18,0,0,4592,4593,7, - 8,0,0,4593,4594,7,11,0,0,4594,4595,7,10,0,0,4595,922,1,0,0,0,4596, - 4597,7,10,0,0,4597,4598,7,15,0,0,4598,4599,7,21,0,0,4599,4600,7, - 11,0,0,4600,4601,7,16,0,0,4601,4602,7,6,0,0,4602,4603,7,10,0,0,4603, - 924,1,0,0,0,4604,4605,7,25,0,0,4605,4606,7,14,0,0,4606,4607,7,20, - 0,0,4607,4608,7,15,0,0,4608,4609,7,11,0,0,4609,4610,7,13,0,0,4610, - 4611,7,23,0,0,4611,4612,7,14,0,0,4612,4613,7,11,0,0,4613,4614,7, - 10,0,0,4614,926,1,0,0,0,4615,4616,7,18,0,0,4616,4617,7,8,0,0,4617, - 4618,7,25,0,0,4618,4619,7,23,0,0,4619,4620,7,17,0,0,4620,928,1,0, - 0,0,4621,4622,7,10,0,0,4622,4623,7,23,0,0,4623,4624,7,25,0,0,4624, - 4625,7,25,0,0,4625,4626,7,20,0,0,4626,4627,7,14,0,0,4627,4628,7, - 17,0,0,4628,930,1,0,0,0,4629,4630,7,25,0,0,4630,4631,7,6,0,0,4631, - 4632,7,14,0,0,4632,4633,7,6,0,0,4633,4634,7,7,0,0,4634,4635,7,7, - 0,0,4635,4636,7,11,0,0,4636,4637,7,7,0,0,4637,932,1,0,0,0,4638,4639, - 7,10,0,0,4639,4640,7,29,0,0,4640,4641,7,7,0,0,4641,934,1,0,0,0,4642, - 4643,7,13,0,0,4643,4644,7,11,0,0,4644,4645,7,25,0,0,4645,4646,7, - 11,0,0,4646,4647,7,8,0,0,4647,4648,7,13,0,0,4648,4649,7,10,0,0,4649, - 936,1,0,0,0,4650,4651,7,20,0,0,4651,4652,7,28,0,0,4652,4653,7,11, - 0,0,4653,4654,7,14,0,0,4654,4655,7,14,0,0,4655,4656,7,18,0,0,4656, - 4657,7,13,0,0,4657,4658,7,18,0,0,4658,4659,7,8,0,0,4659,4660,7,24, - 0,0,4660,938,1,0,0,0,4661,4662,7,15,0,0,4662,4663,7,20,0,0,4663, - 4664,7,8,0,0,4664,4665,7,26,0,0,4665,4666,7,7,0,0,4666,4667,7,18, - 0,0,4667,4668,7,15,0,0,4668,4669,7,17,0,0,4669,940,1,0,0,0,4670, - 4671,7,10,0,0,4671,4672,7,22,0,0,4672,4673,7,18,0,0,4673,4674,7, - 25,0,0,4674,942,1,0,0,0,4675,4676,7,7,0,0,4676,4677,7,20,0,0,4677, - 4678,7,15,0,0,4678,4679,7,22,0,0,4679,4680,7,11,0,0,4680,4681,7, - 13,0,0,4681,944,1,0,0,0,4682,4683,7,17,0,0,4683,4684,7,18,0,0,4684, - 4685,7,11,0,0,4685,4686,7,10,0,0,4686,946,1,0,0,0,4687,4688,7,14, - 0,0,4688,4689,7,20,0,0,4689,4690,7,7,0,0,4690,4691,7,7,0,0,4691, - 4692,7,23,0,0,4692,4693,7,25,0,0,4693,948,1,0,0,0,4694,4695,7,15, - 0,0,4695,4696,7,23,0,0,4696,4697,7,19,0,0,4697,4698,7,11,0,0,4698, - 950,1,0,0,0,4699,4700,7,24,0,0,4700,4701,7,14,0,0,4701,4702,7,20, - 0,0,4702,4703,7,23,0,0,4703,4704,7,25,0,0,4704,4705,7,18,0,0,4705, - 4706,7,8,0,0,4706,4707,7,24,0,0,4707,952,1,0,0,0,4708,4709,7,10, - 0,0,4709,4710,7,11,0,0,4710,4711,7,17,0,0,4711,4712,7,10,0,0,4712, - 954,1,0,0,0,4713,4714,7,17,0,0,4714,4715,7,6,0,0,4715,4716,7,19, - 0,0,4716,4717,7,7,0,0,4717,4718,7,11,0,0,4718,4719,7,10,0,0,4719, - 4720,7,6,0,0,4720,4721,7,16,0,0,4721,4722,7,25,0,0,4722,4723,7,7, - 0,0,4723,4724,7,11,0,0,4724,956,1,0,0,0,4725,4726,7,20,0,0,4726, - 4727,7,14,0,0,4727,4728,7,13,0,0,4728,4729,7,18,0,0,4729,4730,7, - 8,0,0,4730,4731,7,6,0,0,4731,4732,7,7,0,0,4732,4733,7,18,0,0,4733, - 4734,7,17,0,0,4734,4735,7,9,0,0,4735,958,1,0,0,0,4736,4737,7,27, - 0,0,4737,4738,7,16,0,0,4738,4739,7,7,0,0,4739,4740,7,17,0,0,4740, - 4741,7,6,0,0,4741,4742,7,19,0,0,4742,4743,7,7,0,0,4743,4744,7,11, - 0,0,4744,960,1,0,0,0,4745,4746,7,15,0,0,4746,4747,7,20,0,0,4747, - 4748,7,7,0,0,4748,4749,7,23,0,0,4749,4750,7,16,0,0,4750,4751,7,8, - 0,0,4751,4752,7,10,0,0,4752,962,1,0,0,0,4753,4754,7,27,0,0,4754, - 4755,7,16,0,0,4755,4756,7,7,0,0,4756,4757,7,8,0,0,4757,4758,7,6, - 0,0,4758,4759,7,16,0,0,4759,4760,7,11,0,0,4760,4761,7,10,0,0,4761, - 4762,7,25,0,0,4762,4763,7,6,0,0,4763,4764,7,15,0,0,4764,4765,7,11, - 0,0,4765,4766,7,10,0,0,4766,964,1,0,0,0,4767,4768,7,14,0,0,4768, - 4769,7,20,0,0,4769,4770,7,30,0,0,4770,4771,7,17,0,0,4771,4772,7, - 9,0,0,4772,4773,7,25,0,0,4773,4774,7,11,0,0,4774,966,1,0,0,0,4775, - 4776,7,8,0,0,4776,4777,7,20,0,0,4777,4778,7,14,0,0,4778,4779,7,16, - 0,0,4779,4780,7,6,0,0,4780,4781,7,7,0,0,4781,4782,7,18,0,0,4782, - 4783,7,12,0,0,4783,4784,7,11,0,0,4784,4785,7,13,0,0,4785,968,1,0, - 0,0,4786,4787,7,30,0,0,4787,4788,7,18,0,0,4788,4789,7,17,0,0,4789, - 4790,7,21,0,0,4790,4791,7,18,0,0,4791,4792,7,8,0,0,4792,970,1,0, - 0,0,4793,4794,7,26,0,0,4794,4795,7,18,0,0,4795,4796,7,7,0,0,4796, - 4797,7,17,0,0,4797,4798,7,11,0,0,4798,4799,7,14,0,0,4799,972,1,0, - 0,0,4800,4801,7,24,0,0,4801,4802,7,14,0,0,4802,4803,7,20,0,0,4803, - 4804,7,23,0,0,4804,4805,7,25,0,0,4805,4806,7,10,0,0,4806,974,1,0, - 0,0,4807,4808,7,20,0,0,4808,4809,7,17,0,0,4809,4810,7,21,0,0,4810, - 4811,7,11,0,0,4811,4812,7,14,0,0,4812,4813,7,10,0,0,4813,976,1,0, - 0,0,4814,4815,7,8,0,0,4815,4816,7,26,0,0,4816,4817,7,15,0,0,4817, - 978,1,0,0,0,4818,4819,7,8,0,0,4819,4820,7,26,0,0,4820,4821,7,13, - 0,0,4821,980,1,0,0,0,4822,4823,7,8,0,0,4823,4824,7,26,0,0,4824,4825, - 7,22,0,0,4825,4826,7,15,0,0,4826,982,1,0,0,0,4827,4828,7,8,0,0,4828, - 4829,7,26,0,0,4829,4830,7,22,0,0,4830,4831,7,13,0,0,4831,984,1,0, - 0,0,4832,4833,7,23,0,0,4833,4834,7,11,0,0,4834,4835,7,10,0,0,4835, - 4836,7,15,0,0,4836,4837,7,6,0,0,4837,4838,7,25,0,0,4838,4839,7,11, - 0,0,4839,986,1,0,0,0,4840,4841,7,28,0,0,4841,4842,7,18,0,0,4842, - 4843,7,11,0,0,4843,4844,7,30,0,0,4844,4845,7,10,0,0,4845,988,1,0, - 0,0,4846,4847,7,8,0,0,4847,4848,7,20,0,0,4848,4849,7,14,0,0,4849, - 4850,7,16,0,0,4850,4851,7,6,0,0,4851,4852,7,7,0,0,4852,4853,7,18, - 0,0,4853,4854,7,12,0,0,4854,4855,7,11,0,0,4855,990,1,0,0,0,4856, - 4857,7,13,0,0,4857,4858,7,23,0,0,4858,4859,7,16,0,0,4859,4860,7, - 25,0,0,4860,992,1,0,0,0,4861,4862,7,25,0,0,4862,4863,7,14,0,0,4863, - 4864,7,18,0,0,4864,4865,7,8,0,0,4865,4866,7,17,0,0,4866,4867,5,95, - 0,0,4867,4868,7,10,0,0,4868,4869,7,17,0,0,4869,4870,7,14,0,0,4870, - 4871,7,18,0,0,4871,4872,7,15,0,0,4872,4873,7,17,0,0,4873,4874,5, - 95,0,0,4874,4875,7,25,0,0,4875,4876,7,6,0,0,4876,4877,7,14,0,0,4877, - 4878,7,6,0,0,4878,4879,7,16,0,0,4879,4880,7,10,0,0,4880,994,1,0, - 0,0,4881,4882,7,28,0,0,4882,4883,7,6,0,0,4883,4884,7,14,0,0,4884, - 4885,7,18,0,0,4885,4886,7,6,0,0,4886,4887,7,19,0,0,4887,4888,7,7, - 0,0,4888,4889,7,11,0,0,4889,4890,5,95,0,0,4890,4891,7,15,0,0,4891, - 4892,7,20,0,0,4892,4893,7,8,0,0,4893,4894,7,26,0,0,4894,4895,7,7, - 0,0,4895,4896,7,18,0,0,4896,4897,7,15,0,0,4897,4898,7,17,0,0,4898, - 996,1,0,0,0,4899,4900,7,11,0,0,4900,4901,7,14,0,0,4901,4902,7,14, - 0,0,4902,4903,7,20,0,0,4903,4904,7,14,0,0,4904,998,1,0,0,0,4905, - 4906,7,23,0,0,4906,4907,7,10,0,0,4907,4908,7,11,0,0,4908,4909,5, - 95,0,0,4909,4910,7,28,0,0,4910,4911,7,6,0,0,4911,4912,7,14,0,0,4912, - 4913,7,18,0,0,4913,4914,7,6,0,0,4914,4915,7,19,0,0,4915,4916,7,7, - 0,0,4916,4917,7,11,0,0,4917,1000,1,0,0,0,4918,4919,7,23,0,0,4919, - 4920,7,10,0,0,4920,4921,7,11,0,0,4921,4922,5,95,0,0,4922,4923,7, - 15,0,0,4923,4924,7,20,0,0,4924,4925,7,7,0,0,4925,4926,7,23,0,0,4926, - 4927,7,16,0,0,4927,4928,7,8,0,0,4928,1002,1,0,0,0,4929,4930,7,6, - 0,0,4930,4931,7,7,0,0,4931,4932,7,18,0,0,4932,4933,7,6,0,0,4933, - 4934,7,10,0,0,4934,1004,1,0,0,0,4935,4936,7,15,0,0,4936,4937,7,20, - 0,0,4937,4938,7,8,0,0,4938,4939,7,10,0,0,4939,4940,7,17,0,0,4940, - 4941,7,6,0,0,4941,4942,7,8,0,0,4942,4943,7,17,0,0,4943,1006,1,0, - 0,0,4944,4945,7,25,0,0,4945,4946,7,11,0,0,4946,4947,7,14,0,0,4947, - 4948,7,26,0,0,4948,4949,7,20,0,0,4949,4950,7,14,0,0,4950,4951,7, - 16,0,0,4951,1008,1,0,0,0,4952,4953,7,24,0,0,4953,4954,7,11,0,0,4954, - 4955,7,17,0,0,4955,1010,1,0,0,0,4956,4957,7,13,0,0,4957,4958,7,18, - 0,0,4958,4959,7,6,0,0,4959,4960,7,24,0,0,4960,4961,7,8,0,0,4961, - 4962,7,20,0,0,4962,4963,7,10,0,0,4963,4964,7,17,0,0,4964,4965,7, - 18,0,0,4965,4966,7,15,0,0,4966,4967,7,10,0,0,4967,1012,1,0,0,0,4968, - 4969,7,10,0,0,4969,4970,7,17,0,0,4970,4971,7,6,0,0,4971,4972,7,15, - 0,0,4972,4973,7,22,0,0,4973,4974,7,11,0,0,4974,4975,7,13,0,0,4975, - 1014,1,0,0,0,4976,4977,7,11,0,0,4977,4978,7,7,0,0,4978,4979,7,10, - 0,0,4979,4980,7,18,0,0,4980,4981,7,26,0,0,4981,1016,1,0,0,0,4982, - 4983,7,30,0,0,4983,4984,7,21,0,0,4984,4985,7,18,0,0,4985,4986,7, - 7,0,0,4986,4987,7,11,0,0,4987,1018,1,0,0,0,4988,4989,7,14,0,0,4989, - 4990,7,11,0,0,4990,4991,7,28,0,0,4991,4992,7,11,0,0,4992,4993,7, - 14,0,0,4993,4994,7,10,0,0,4994,4995,7,11,0,0,4995,1020,1,0,0,0,4996, - 4997,7,26,0,0,4997,4998,7,20,0,0,4998,4999,7,14,0,0,4999,5000,7, - 11,0,0,5000,5001,7,6,0,0,5001,5002,7,15,0,0,5002,5003,7,21,0,0,5003, - 1022,1,0,0,0,5004,5005,7,10,0,0,5005,5006,7,7,0,0,5006,5007,7,18, - 0,0,5007,5008,7,15,0,0,5008,5009,7,11,0,0,5009,1024,1,0,0,0,5010, - 5011,7,11,0,0,5011,5012,7,27,0,0,5012,5013,7,18,0,0,5013,5014,7, - 17,0,0,5014,1026,1,0,0,0,5015,5016,7,14,0,0,5016,5017,7,11,0,0,5017, - 5018,7,17,0,0,5018,5019,7,23,0,0,5019,5020,7,14,0,0,5020,5021,7, - 8,0,0,5021,1028,1,0,0,0,5022,5023,7,29,0,0,5023,5024,7,23,0,0,5024, - 5025,7,11,0,0,5025,5026,7,14,0,0,5026,5027,7,9,0,0,5027,1030,1,0, - 0,0,5028,5029,7,14,0,0,5029,5030,7,6,0,0,5030,5031,7,18,0,0,5031, - 5032,7,10,0,0,5032,5033,7,11,0,0,5033,1032,1,0,0,0,5034,5035,7,10, - 0,0,5035,5036,7,29,0,0,5036,5037,7,7,0,0,5037,5038,7,10,0,0,5038, - 5039,7,17,0,0,5039,5040,7,6,0,0,5040,5041,7,17,0,0,5041,5042,7,11, - 0,0,5042,1034,1,0,0,0,5043,5044,7,13,0,0,5044,5045,7,11,0,0,5045, - 5046,7,19,0,0,5046,5047,7,23,0,0,5047,5048,7,24,0,0,5048,1036,1, - 0,0,0,5049,5050,7,7,0,0,5050,5051,7,20,0,0,5051,5052,7,24,0,0,5052, - 1038,1,0,0,0,5053,5054,7,18,0,0,5054,5055,7,8,0,0,5055,5056,7,26, - 0,0,5056,5057,7,20,0,0,5057,1040,1,0,0,0,5058,5059,7,8,0,0,5059, - 5060,7,20,0,0,5060,5061,7,17,0,0,5061,5062,7,18,0,0,5062,5063,7, - 15,0,0,5063,5064,7,11,0,0,5064,1042,1,0,0,0,5065,5066,7,30,0,0,5066, - 5067,7,6,0,0,5067,5068,7,14,0,0,5068,5069,7,8,0,0,5069,5070,7,18, - 0,0,5070,5071,7,8,0,0,5071,5072,7,24,0,0,5072,1044,1,0,0,0,5073, - 5074,7,11,0,0,5074,5075,7,27,0,0,5075,5076,7,15,0,0,5076,5077,7, - 11,0,0,5077,5078,7,25,0,0,5078,5079,7,17,0,0,5079,5080,7,18,0,0, - 5080,5081,7,20,0,0,5081,5082,7,8,0,0,5082,1046,1,0,0,0,5083,5084, - 7,6,0,0,5084,5085,7,10,0,0,5085,5086,7,10,0,0,5086,5087,7,11,0,0, - 5087,5088,7,14,0,0,5088,5089,7,17,0,0,5089,1048,1,0,0,0,5090,5091, - 7,7,0,0,5091,5092,7,20,0,0,5092,5093,7,20,0,0,5093,5094,7,25,0,0, - 5094,1050,1,0,0,0,5095,5096,7,20,0,0,5096,5097,7,25,0,0,5097,5098, - 7,11,0,0,5098,5099,7,8,0,0,5099,1052,1,0,0,0,5100,5101,7,25,0,0, - 5101,5102,7,11,0,0,5102,5103,7,26,0,0,5103,5104,7,11,0,0,5104,5105, - 7,14,0,0,5105,5106,7,11,0,0,5106,5107,7,8,0,0,5107,5108,7,15,0,0, - 5108,5109,7,11,0,0,5109,5110,7,10,0,0,5110,1054,1,0,0,0,5111,5112, - 7,23,0,0,5112,5113,7,10,0,0,5113,5114,7,6,0,0,5114,5115,7,24,0,0, - 5115,5116,7,11,0,0,5116,1056,1,0,0,0,5117,5118,7,15,0,0,5118,5119, - 7,20,0,0,5119,5120,7,8,0,0,5120,5121,7,8,0,0,5121,5122,7,11,0,0, - 5122,5123,7,15,0,0,5123,5124,7,17,0,0,5124,1058,1,0,0,0,5125,5126, - 7,25,0,0,5126,5127,7,23,0,0,5127,5128,7,19,0,0,5128,5129,7,7,0,0, - 5129,5130,7,18,0,0,5130,5131,7,15,0,0,5131,1060,1,0,0,0,5132,5133, - 7,16,0,0,5133,5134,7,11,0,0,5134,5135,7,14,0,0,5135,5136,7,24,0, - 0,5136,5137,7,11,0,0,5137,1062,1,0,0,0,5138,5139,7,16,0,0,5139,5140, - 7,6,0,0,5140,5141,7,17,0,0,5141,5142,7,15,0,0,5142,5143,7,21,0,0, - 5143,5144,7,11,0,0,5144,5145,7,13,0,0,5145,1064,1,0,0,0,5146,5147, - 7,19,0,0,5147,5148,7,14,0,0,5148,5149,7,11,0,0,5149,5150,7,6,0,0, - 5150,5151,7,13,0,0,5151,5152,7,17,0,0,5152,5153,7,21,0,0,5153,1066, - 1,0,0,0,5154,5155,7,13,0,0,5155,5156,7,11,0,0,5156,5157,7,25,0,0, - 5157,5158,7,17,0,0,5158,5159,7,21,0,0,5159,1068,1,0,0,0,5160,5161, - 7,23,0,0,5161,5162,7,8,0,0,5162,5163,7,10,0,0,5163,5164,7,6,0,0, - 5164,5165,7,26,0,0,5165,5166,7,11,0,0,5166,1070,1,0,0,0,5167,5168, - 7,14,0,0,5168,5169,7,11,0,0,5169,5170,7,10,0,0,5170,5171,7,17,0, - 0,5171,5172,7,14,0,0,5172,5173,7,18,0,0,5173,5174,7,15,0,0,5174, - 5175,7,17,0,0,5175,5176,7,11,0,0,5176,5177,7,13,0,0,5177,1072,1, - 0,0,0,5178,5179,7,10,0,0,5179,5180,7,6,0,0,5180,5181,7,26,0,0,5181, - 5182,7,11,0,0,5182,1074,1,0,0,0,5183,5184,7,26,0,0,5184,5185,7,18, - 0,0,5185,5186,7,8,0,0,5186,5187,7,6,0,0,5187,5188,7,7,0,0,5188,5189, - 7,18,0,0,5189,5190,7,12,0,0,5190,5191,7,11,0,0,5191,1076,1,0,0,0, - 5192,5193,7,16,0,0,5193,5194,7,20,0,0,5194,5195,7,13,0,0,5195,5196, - 7,23,0,0,5196,5197,7,7,0,0,5197,5198,7,23,0,0,5198,5199,7,10,0,0, - 5199,1078,1,0,0,0,5200,5201,7,14,0,0,5201,5202,7,11,0,0,5202,5203, - 7,16,0,0,5203,5204,7,6,0,0,5204,5205,7,18,0,0,5205,5206,7,8,0,0, - 5206,5207,7,13,0,0,5207,5208,7,11,0,0,5208,5209,7,14,0,0,5209,1080, - 1,0,0,0,5210,5211,7,7,0,0,5211,5212,7,20,0,0,5212,5213,7,24,0,0, - 5213,5214,7,18,0,0,5214,5215,7,8,0,0,5215,1082,1,0,0,0,5216,5217, - 7,8,0,0,5217,5218,7,20,0,0,5218,5219,7,7,0,0,5219,5220,7,20,0,0, - 5220,5221,7,24,0,0,5221,5222,7,18,0,0,5222,5223,7,8,0,0,5223,1084, - 1,0,0,0,5224,5225,7,14,0,0,5225,5226,7,11,0,0,5226,5227,7,25,0,0, - 5227,5228,7,7,0,0,5228,5229,7,18,0,0,5229,5230,7,15,0,0,5230,5231, - 7,6,0,0,5231,5232,7,17,0,0,5232,5233,7,18,0,0,5233,5234,7,20,0,0, - 5234,5235,7,8,0,0,5235,1086,1,0,0,0,5236,5237,7,8,0,0,5237,5238, - 7,20,0,0,5238,5239,7,14,0,0,5239,5240,7,11,0,0,5240,5241,7,25,0, - 0,5241,5242,7,7,0,0,5242,5243,7,18,0,0,5243,5244,7,15,0,0,5244,5245, - 7,6,0,0,5245,5246,7,17,0,0,5246,5247,7,18,0,0,5247,5248,7,20,0,0, - 5248,5249,7,8,0,0,5249,1088,1,0,0,0,5250,5251,7,19,0,0,5251,5252, - 7,9,0,0,5252,5253,7,25,0,0,5253,5254,7,6,0,0,5254,5255,7,10,0,0, - 5255,5256,7,10,0,0,5256,5257,7,14,0,0,5257,5258,7,7,0,0,5258,5259, - 7,10,0,0,5259,1090,1,0,0,0,5260,5261,7,8,0,0,5261,5262,7,20,0,0, - 5262,5263,7,19,0,0,5263,5264,7,9,0,0,5264,5265,7,25,0,0,5265,5266, - 7,6,0,0,5266,5267,7,10,0,0,5267,5268,7,10,0,0,5268,5269,7,14,0,0, - 5269,5270,7,7,0,0,5270,5271,7,10,0,0,5271,1092,1,0,0,0,5272,5273, - 7,25,0,0,5273,5274,7,11,0,0,5274,5275,7,14,0,0,5275,5276,7,16,0, - 0,5276,5277,7,18,0,0,5277,5278,7,10,0,0,5278,5279,7,10,0,0,5279, - 5280,7,18,0,0,5280,5281,7,28,0,0,5281,5282,7,11,0,0,5282,1094,1, - 0,0,0,5283,5284,7,14,0,0,5284,5285,7,11,0,0,5285,5286,7,10,0,0,5286, - 5287,7,17,0,0,5287,5288,7,14,0,0,5288,5289,7,18,0,0,5289,5290,7, - 15,0,0,5290,5291,7,17,0,0,5291,5292,7,18,0,0,5292,5293,7,28,0,0, - 5293,5294,7,11,0,0,5294,1096,1,0,0,0,5295,5296,7,15,0,0,5296,5297, - 7,20,0,0,5297,5298,7,16,0,0,5298,5299,7,25,0,0,5299,5300,7,14,0, - 0,5300,5301,7,11,0,0,5301,5302,7,10,0,0,5302,5303,7,10,0,0,5303, - 5304,7,18,0,0,5304,5305,7,20,0,0,5305,5306,7,8,0,0,5306,1098,1,0, - 0,0,5307,5308,7,25,0,0,5308,5309,7,7,0,0,5309,5310,7,6,0,0,5310, - 5311,7,18,0,0,5311,5312,7,8,0,0,5312,1100,1,0,0,0,5313,5314,7,11, - 0,0,5314,5315,7,27,0,0,5315,5316,7,17,0,0,5316,5317,7,11,0,0,5317, - 5318,7,8,0,0,5318,5319,7,13,0,0,5319,5320,7,11,0,0,5320,5321,7,13, - 0,0,5321,1102,1,0,0,0,5322,5323,7,16,0,0,5323,5324,7,6,0,0,5324, - 5325,7,18,0,0,5325,5326,7,8,0,0,5326,1104,1,0,0,0,5327,5328,7,10, - 0,0,5328,5329,7,22,0,0,5329,5330,7,18,0,0,5330,5331,7,25,0,0,5331, - 5332,5,95,0,0,5332,5333,7,7,0,0,5333,5334,7,20,0,0,5334,5335,7,15, - 0,0,5335,5336,7,22,0,0,5336,5337,7,11,0,0,5337,5338,7,13,0,0,5338, - 1106,1,0,0,0,5339,5340,7,19,0,0,5340,5341,7,23,0,0,5341,5342,7,26, - 0,0,5342,5343,7,26,0,0,5343,5344,7,11,0,0,5344,5345,7,14,0,0,5345, - 5346,5,95,0,0,5346,5347,7,23,0,0,5347,5348,7,10,0,0,5348,5349,7, - 6,0,0,5349,5350,7,24,0,0,5350,5351,7,11,0,0,5351,5352,5,95,0,0,5352, - 5353,7,7,0,0,5353,5354,7,18,0,0,5354,5355,7,16,0,0,5355,5356,7,18, - 0,0,5356,5357,7,17,0,0,5357,1108,1,0,0,0,5358,5359,7,26,0,0,5359, - 5360,7,20,0,0,5360,5361,7,14,0,0,5361,5362,7,15,0,0,5362,5363,7, - 11,0,0,5363,5364,5,95,0,0,5364,5365,7,29,0,0,5365,5366,7,23,0,0, - 5366,5367,7,20,0,0,5367,5368,7,17,0,0,5368,5369,7,11,0,0,5369,1110, - 1,0,0,0,5370,5371,7,26,0,0,5371,5372,7,20,0,0,5372,5373,7,14,0,0, - 5373,5374,7,15,0,0,5374,5375,7,11,0,0,5375,5376,5,95,0,0,5376,5377, - 7,8,0,0,5377,5378,7,20,0,0,5378,5379,7,17,0,0,5379,5380,5,95,0,0, - 5380,5381,7,8,0,0,5381,5382,7,23,0,0,5382,5383,7,7,0,0,5383,5384, - 7,7,0,0,5384,1112,1,0,0,0,5385,5386,7,26,0,0,5386,5387,7,20,0,0, - 5387,5388,7,14,0,0,5388,5389,7,15,0,0,5389,5390,7,11,0,0,5390,5391, - 5,95,0,0,5391,5392,7,8,0,0,5392,5393,7,23,0,0,5393,5394,7,7,0,0, - 5394,5395,7,7,0,0,5395,1114,1,0,0,0,5396,5400,3,1117,556,0,5397, - 5399,3,1119,557,0,5398,5397,1,0,0,0,5399,5402,1,0,0,0,5400,5398, - 1,0,0,0,5400,5401,1,0,0,0,5401,1116,1,0,0,0,5402,5400,1,0,0,0,5403, - 5407,7,32,0,0,5404,5405,7,33,0,0,5405,5407,7,34,0,0,5406,5403,1, - 0,0,0,5406,5404,1,0,0,0,5407,1118,1,0,0,0,5408,5411,3,1121,558,0, - 5409,5411,5,36,0,0,5410,5408,1,0,0,0,5410,5409,1,0,0,0,5411,1120, - 1,0,0,0,5412,5415,3,1117,556,0,5413,5415,7,0,0,0,5414,5412,1,0,0, - 0,5414,5413,1,0,0,0,5415,1122,1,0,0,0,5416,5417,3,1125,560,0,5417, - 5418,5,34,0,0,5418,1124,1,0,0,0,5419,5425,5,34,0,0,5420,5421,5,34, - 0,0,5421,5424,5,34,0,0,5422,5424,8,35,0,0,5423,5420,1,0,0,0,5423, - 5422,1,0,0,0,5424,5427,1,0,0,0,5425,5423,1,0,0,0,5425,5426,1,0,0, - 0,5426,1126,1,0,0,0,5427,5425,1,0,0,0,5428,5429,3,1129,562,0,5429, - 5430,5,34,0,0,5430,1128,1,0,0,0,5431,5437,5,34,0,0,5432,5433,5,34, - 0,0,5433,5436,5,34,0,0,5434,5436,8,36,0,0,5435,5432,1,0,0,0,5435, - 5434,1,0,0,0,5436,5439,1,0,0,0,5437,5435,1,0,0,0,5437,5438,1,0,0, - 0,5438,1130,1,0,0,0,5439,5437,1,0,0,0,5440,5441,7,23,0,0,5441,5442, - 5,38,0,0,5442,5443,3,1123,559,0,5443,1132,1,0,0,0,5444,5445,7,23, - 0,0,5445,5446,5,38,0,0,5446,5447,3,1125,560,0,5447,1134,1,0,0,0, - 5448,5449,7,23,0,0,5449,5450,5,38,0,0,5450,5451,3,1127,561,0,5451, - 1136,1,0,0,0,5452,5453,7,23,0,0,5453,5454,5,38,0,0,5454,5455,3,1129, - 562,0,5455,1138,1,0,0,0,5456,5457,3,1141,568,0,5457,5458,5,39,0, - 0,5458,1140,1,0,0,0,5459,5465,5,39,0,0,5460,5461,5,39,0,0,5461,5464, - 5,39,0,0,5462,5464,8,37,0,0,5463,5460,1,0,0,0,5463,5462,1,0,0,0, - 5464,5467,1,0,0,0,5465,5463,1,0,0,0,5465,5466,1,0,0,0,5466,1142, - 1,0,0,0,5467,5465,1,0,0,0,5468,5469,7,11,0,0,5469,5470,5,39,0,0, - 5470,5471,1,0,0,0,5471,5472,6,569,1,0,5472,5473,6,569,2,0,5473,1144, - 1,0,0,0,5474,5475,3,1147,571,0,5475,5476,5,39,0,0,5476,1146,1,0, - 0,0,5477,5478,7,23,0,0,5478,5479,5,38,0,0,5479,5480,3,1141,568,0, - 5480,1148,1,0,0,0,5481,5483,5,36,0,0,5482,5484,3,1151,573,0,5483, - 5482,1,0,0,0,5483,5484,1,0,0,0,5484,5485,1,0,0,0,5485,5486,5,36, - 0,0,5486,5487,1,0,0,0,5487,5488,6,572,3,0,5488,1150,1,0,0,0,5489, - 5493,3,1117,556,0,5490,5492,3,1121,558,0,5491,5490,1,0,0,0,5492, - 5495,1,0,0,0,5493,5491,1,0,0,0,5493,5494,1,0,0,0,5494,1152,1,0,0, - 0,5495,5493,1,0,0,0,5496,5497,3,1155,575,0,5497,5498,5,39,0,0,5498, - 1154,1,0,0,0,5499,5500,7,19,0,0,5500,5504,5,39,0,0,5501,5503,7,38, - 0,0,5502,5501,1,0,0,0,5503,5506,1,0,0,0,5504,5502,1,0,0,0,5504,5505, - 1,0,0,0,5505,1156,1,0,0,0,5506,5504,1,0,0,0,5507,5508,3,1159,577, - 0,5508,5509,5,39,0,0,5509,1158,1,0,0,0,5510,5511,7,19,0,0,5511,5512, - 3,1141,568,0,5512,1160,1,0,0,0,5513,5514,3,1163,579,0,5514,5515, - 5,39,0,0,5515,1162,1,0,0,0,5516,5517,7,27,0,0,5517,5521,5,39,0,0, - 5518,5520,7,39,0,0,5519,5518,1,0,0,0,5520,5523,1,0,0,0,5521,5519, - 1,0,0,0,5521,5522,1,0,0,0,5522,1164,1,0,0,0,5523,5521,1,0,0,0,5524, - 5525,3,1167,581,0,5525,5526,5,39,0,0,5526,1166,1,0,0,0,5527,5528, - 7,27,0,0,5528,5529,3,1141,568,0,5529,1168,1,0,0,0,5530,5531,3,1175, - 585,0,5531,1170,1,0,0,0,5532,5533,3,1175,585,0,5533,5534,5,46,0, - 0,5534,5535,5,46,0,0,5535,1172,1,0,0,0,5536,5537,3,1175,585,0,5537, - 5539,5,46,0,0,5538,5540,3,1175,585,0,5539,5538,1,0,0,0,5539,5540, - 1,0,0,0,5540,5546,1,0,0,0,5541,5543,7,11,0,0,5542,5544,7,1,0,0,5543, - 5542,1,0,0,0,5543,5544,1,0,0,0,5544,5545,1,0,0,0,5545,5547,3,1175, - 585,0,5546,5541,1,0,0,0,5546,5547,1,0,0,0,5547,5565,1,0,0,0,5548, - 5549,5,46,0,0,5549,5555,3,1175,585,0,5550,5552,7,11,0,0,5551,5553, - 7,1,0,0,5552,5551,1,0,0,0,5552,5553,1,0,0,0,5553,5554,1,0,0,0,5554, - 5556,3,1175,585,0,5555,5550,1,0,0,0,5555,5556,1,0,0,0,5556,5565, - 1,0,0,0,5557,5558,3,1175,585,0,5558,5560,7,11,0,0,5559,5561,7,1, - 0,0,5560,5559,1,0,0,0,5560,5561,1,0,0,0,5561,5562,1,0,0,0,5562,5563, - 3,1175,585,0,5563,5565,1,0,0,0,5564,5536,1,0,0,0,5564,5548,1,0,0, - 0,5564,5557,1,0,0,0,5565,1174,1,0,0,0,5566,5568,7,0,0,0,5567,5566, - 1,0,0,0,5568,5569,1,0,0,0,5569,5567,1,0,0,0,5569,5570,1,0,0,0,5570, - 1176,1,0,0,0,5571,5572,5,58,0,0,5572,5576,7,40,0,0,5573,5575,7,41, - 0,0,5574,5573,1,0,0,0,5575,5578,1,0,0,0,5576,5574,1,0,0,0,5576,5577, - 1,0,0,0,5577,1178,1,0,0,0,5578,5576,1,0,0,0,5579,5580,5,58,0,0,5580, - 5581,5,34,0,0,5581,5589,1,0,0,0,5582,5583,5,92,0,0,5583,5588,9,0, - 0,0,5584,5585,5,34,0,0,5585,5588,5,34,0,0,5586,5588,8,42,0,0,5587, - 5582,1,0,0,0,5587,5584,1,0,0,0,5587,5586,1,0,0,0,5588,5591,1,0,0, - 0,5589,5587,1,0,0,0,5589,5590,1,0,0,0,5590,5592,1,0,0,0,5591,5589, - 1,0,0,0,5592,5593,5,34,0,0,5593,1180,1,0,0,0,5594,5596,7,43,0,0, - 5595,5594,1,0,0,0,5596,5597,1,0,0,0,5597,5595,1,0,0,0,5597,5598, - 1,0,0,0,5598,5599,1,0,0,0,5599,5600,6,588,4,0,5600,1182,1,0,0,0, - 5601,5603,5,13,0,0,5602,5604,5,10,0,0,5603,5602,1,0,0,0,5603,5604, - 1,0,0,0,5604,5607,1,0,0,0,5605,5607,5,10,0,0,5606,5601,1,0,0,0,5606, - 5605,1,0,0,0,5607,5608,1,0,0,0,5608,5609,6,589,4,0,5609,1184,1,0, - 0,0,5610,5611,5,45,0,0,5611,5612,5,45,0,0,5612,5616,1,0,0,0,5613, - 5615,8,44,0,0,5614,5613,1,0,0,0,5615,5618,1,0,0,0,5616,5614,1,0, - 0,0,5616,5617,1,0,0,0,5617,5619,1,0,0,0,5618,5616,1,0,0,0,5619,5620, - 6,590,4,0,5620,1186,1,0,0,0,5621,5622,5,47,0,0,5622,5623,5,42,0, - 0,5623,5646,1,0,0,0,5624,5626,5,47,0,0,5625,5624,1,0,0,0,5626,5629, - 1,0,0,0,5627,5625,1,0,0,0,5627,5628,1,0,0,0,5628,5630,1,0,0,0,5629, - 5627,1,0,0,0,5630,5645,3,1187,591,0,5631,5645,8,45,0,0,5632,5634, - 5,47,0,0,5633,5632,1,0,0,0,5634,5635,1,0,0,0,5635,5633,1,0,0,0,5635, - 5636,1,0,0,0,5636,5637,1,0,0,0,5637,5645,8,45,0,0,5638,5640,5,42, - 0,0,5639,5638,1,0,0,0,5640,5641,1,0,0,0,5641,5639,1,0,0,0,5641,5642, - 1,0,0,0,5642,5643,1,0,0,0,5643,5645,8,45,0,0,5644,5627,1,0,0,0,5644, - 5631,1,0,0,0,5644,5633,1,0,0,0,5644,5639,1,0,0,0,5645,5648,1,0,0, - 0,5646,5644,1,0,0,0,5646,5647,1,0,0,0,5647,5652,1,0,0,0,5648,5646, - 1,0,0,0,5649,5651,5,42,0,0,5650,5649,1,0,0,0,5651,5654,1,0,0,0,5652, - 5650,1,0,0,0,5652,5653,1,0,0,0,5653,5655,1,0,0,0,5654,5652,1,0,0, - 0,5655,5656,5,42,0,0,5656,5657,5,47,0,0,5657,5658,1,0,0,0,5658,5659, - 6,591,4,0,5659,1188,1,0,0,0,5660,5661,5,47,0,0,5661,5662,5,42,0, - 0,5662,5687,1,0,0,0,5663,5665,5,47,0,0,5664,5663,1,0,0,0,5665,5668, - 1,0,0,0,5666,5664,1,0,0,0,5666,5667,1,0,0,0,5667,5669,1,0,0,0,5668, - 5666,1,0,0,0,5669,5686,3,1187,591,0,5670,5686,8,45,0,0,5671,5673, - 5,47,0,0,5672,5671,1,0,0,0,5673,5674,1,0,0,0,5674,5672,1,0,0,0,5674, - 5675,1,0,0,0,5675,5676,1,0,0,0,5676,5684,8,45,0,0,5677,5679,5,42, - 0,0,5678,5677,1,0,0,0,5679,5680,1,0,0,0,5680,5678,1,0,0,0,5680,5681, - 1,0,0,0,5681,5682,1,0,0,0,5682,5684,8,45,0,0,5683,5672,1,0,0,0,5683, - 5678,1,0,0,0,5684,5686,1,0,0,0,5685,5666,1,0,0,0,5685,5670,1,0,0, - 0,5685,5683,1,0,0,0,5686,5689,1,0,0,0,5687,5685,1,0,0,0,5687,5688, - 1,0,0,0,5688,5707,1,0,0,0,5689,5687,1,0,0,0,5690,5692,5,47,0,0,5691, - 5690,1,0,0,0,5692,5693,1,0,0,0,5693,5691,1,0,0,0,5693,5694,1,0,0, - 0,5694,5708,1,0,0,0,5695,5697,5,42,0,0,5696,5695,1,0,0,0,5697,5698, - 1,0,0,0,5698,5696,1,0,0,0,5698,5699,1,0,0,0,5699,5708,1,0,0,0,5700, - 5702,5,47,0,0,5701,5700,1,0,0,0,5702,5705,1,0,0,0,5703,5701,1,0, - 0,0,5703,5704,1,0,0,0,5704,5706,1,0,0,0,5705,5703,1,0,0,0,5706,5708, - 3,1189,592,0,5707,5691,1,0,0,0,5707,5696,1,0,0,0,5707,5703,1,0,0, - 0,5707,5708,1,0,0,0,5708,1190,1,0,0,0,5709,5721,5,92,0,0,5710,5720, - 8,46,0,0,5711,5715,5,34,0,0,5712,5714,8,47,0,0,5713,5712,1,0,0,0, - 5714,5717,1,0,0,0,5715,5713,1,0,0,0,5715,5716,1,0,0,0,5716,5718, - 1,0,0,0,5717,5715,1,0,0,0,5718,5720,5,34,0,0,5719,5710,1,0,0,0,5719, - 5711,1,0,0,0,5720,5723,1,0,0,0,5721,5719,1,0,0,0,5721,5722,1,0,0, - 0,5722,5731,1,0,0,0,5723,5721,1,0,0,0,5724,5728,5,34,0,0,5725,5727, - 8,47,0,0,5726,5725,1,0,0,0,5727,5730,1,0,0,0,5728,5726,1,0,0,0,5728, - 5729,1,0,0,0,5729,5732,1,0,0,0,5730,5728,1,0,0,0,5731,5724,1,0,0, - 0,5731,5732,1,0,0,0,5732,1192,1,0,0,0,5733,5734,5,92,0,0,5734,5735, - 5,92,0,0,5735,1194,1,0,0,0,5736,5737,9,0,0,0,5737,1196,1,0,0,0,5738, - 5739,3,1201,598,0,5739,5740,5,39,0,0,5740,5741,1,0,0,0,5741,5742, - 6,596,5,0,5742,1198,1,0,0,0,5743,5745,3,1201,598,0,5744,5746,5,92, - 0,0,5745,5744,1,0,0,0,5745,5746,1,0,0,0,5746,5747,1,0,0,0,5747,5748, - 5,0,0,1,5748,1200,1,0,0,0,5749,5750,5,39,0,0,5750,5773,5,39,0,0, - 5751,5769,5,92,0,0,5752,5753,7,27,0,0,5753,5770,7,39,0,0,5754,5755, - 7,23,0,0,5755,5756,7,39,0,0,5756,5757,7,39,0,0,5757,5758,7,39,0, - 0,5758,5770,7,39,0,0,5759,5760,7,23,0,0,5760,5761,7,39,0,0,5761, - 5762,7,39,0,0,5762,5763,7,39,0,0,5763,5764,7,39,0,0,5764,5765,7, - 39,0,0,5765,5766,7,39,0,0,5766,5767,7,39,0,0,5767,5770,7,39,0,0, - 5768,5770,8,48,0,0,5769,5752,1,0,0,0,5769,5754,1,0,0,0,5769,5759, - 1,0,0,0,5769,5768,1,0,0,0,5770,5773,1,0,0,0,5771,5773,8,49,0,0,5772, - 5749,1,0,0,0,5772,5751,1,0,0,0,5772,5771,1,0,0,0,5773,5776,1,0,0, - 0,5774,5772,1,0,0,0,5774,5775,1,0,0,0,5775,1202,1,0,0,0,5776,5774, - 1,0,0,0,5777,5778,3,1207,601,0,5778,5779,5,39,0,0,5779,5780,1,0, - 0,0,5780,5781,6,599,5,0,5781,1204,1,0,0,0,5782,5784,3,1207,601,0, - 5783,5785,5,92,0,0,5784,5783,1,0,0,0,5784,5785,1,0,0,0,5785,5786, - 1,0,0,0,5786,5787,5,0,0,1,5787,1206,1,0,0,0,5788,5789,5,39,0,0,5789, - 5794,5,39,0,0,5790,5791,5,92,0,0,5791,5794,9,0,0,0,5792,5794,8,49, - 0,0,5793,5788,1,0,0,0,5793,5790,1,0,0,0,5793,5792,1,0,0,0,5794,5797, - 1,0,0,0,5795,5793,1,0,0,0,5795,5796,1,0,0,0,5796,1208,1,0,0,0,5797, - 5795,1,0,0,0,5798,5799,3,1181,588,0,5799,5800,1,0,0,0,5800,5801, - 6,602,6,0,5801,5802,6,602,4,0,5802,1210,1,0,0,0,5803,5804,3,1183, - 589,0,5804,5805,1,0,0,0,5805,5806,6,603,7,0,5806,5807,6,603,4,0, - 5807,5808,6,603,8,0,5808,1212,1,0,0,0,5809,5810,3,1181,588,0,5810, - 5811,1,0,0,0,5811,5812,6,604,6,0,5812,5813,6,604,4,0,5813,1214,1, - 0,0,0,5814,5815,3,1183,589,0,5815,5816,1,0,0,0,5816,5817,6,605,7, - 0,5817,5818,6,605,4,0,5818,1216,1,0,0,0,5819,5820,5,39,0,0,5820, - 5821,1,0,0,0,5821,5822,6,606,1,0,5822,5823,6,606,9,0,5823,1218,1, - 0,0,0,5824,5826,8,50,0,0,5825,5824,1,0,0,0,5826,5827,1,0,0,0,5827, - 5825,1,0,0,0,5827,5828,1,0,0,0,5828,5837,1,0,0,0,5829,5833,5,36, - 0,0,5830,5832,8,50,0,0,5831,5830,1,0,0,0,5832,5835,1,0,0,0,5833, - 5831,1,0,0,0,5833,5834,1,0,0,0,5834,5837,1,0,0,0,5835,5833,1,0,0, - 0,5836,5825,1,0,0,0,5836,5829,1,0,0,0,5837,1220,1,0,0,0,5838,5840, - 5,36,0,0,5839,5841,3,1151,573,0,5840,5839,1,0,0,0,5840,5841,1,0, - 0,0,5841,5842,1,0,0,0,5842,5843,5,36,0,0,5843,5844,1,0,0,0,5844, - 5845,6,608,10,0,5845,1222,1,0,0,0,77,0,1,2,3,4,1290,1296,1300,1302, - 1305,1307,1310,1314,1316,1321,1326,5400,5406,5410,5414,5423,5425, - 5435,5437,5463,5465,5483,5493,5504,5521,5539,5543,5546,5552,5555, - 5560,5564,5569,5576,5587,5589,5597,5603,5606,5616,5627,5635,5641, - 5644,5646,5652,5666,5674,5680,5683,5685,5687,5693,5698,5703,5707, - 5715,5719,5721,5728,5731,5745,5769,5772,5774,5784,5793,5795,5827, - 5833,5836,5840,11,7,29,0,3,0,0,5,1,0,5,4,0,0,1,0,2,2,0,7,579,0,7, - 580,0,2,3,0,2,1,0,4,0,0 + 1197,587,1199,0,1201,588,1203,589,1205,0,1207,0,1209,0,1211,592, + 1213,590,1215,591,5,0,1,2,3,4,51,1,0,48,57,2,0,43,43,45,45,2,0,45, + 45,47,47,9,0,33,33,35,35,37,38,42,42,60,64,94,94,96,96,124,124,126, + 126,2,0,42,43,60,62,8,0,33,33,35,35,37,38,63,64,94,94,96,96,124, + 124,126,126,2,0,65,65,97,97,2,0,76,76,108,108,2,0,78,78,110,110, + 2,0,89,89,121,121,2,0,83,83,115,115,2,0,69,69,101,101,2,0,90,90, + 122,122,2,0,68,68,100,100,2,0,82,82,114,114,2,0,67,67,99,99,2,0, + 77,77,109,109,2,0,84,84,116,116,2,0,73,73,105,105,2,0,66,66,98,98, + 2,0,79,79,111,111,2,0,72,72,104,104,2,0,75,75,107,107,2,0,85,85, + 117,117,2,0,71,71,103,103,2,0,80,80,112,112,2,0,70,70,102,102,2, + 0,88,88,120,120,2,0,86,86,118,118,2,0,81,81,113,113,2,0,87,87,119, + 119,2,0,74,74,106,106,10,0,65,90,95,95,97,122,170,170,181,181,186, + 186,192,214,224,246,248,55295,57344,65535,1,0,55296,56319,1,0,56320, + 57343,2,0,0,0,34,34,1,0,34,34,1,0,39,39,1,0,48,49,3,0,48,57,65,70, + 97,102,3,0,65,90,95,95,97,122,5,0,36,36,48,57,65,90,95,95,97,122, + 2,0,34,34,92,92,3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,42,42,47, + 47,4,0,10,10,13,13,34,34,92,92,3,0,10,10,13,13,34,34,4,0,85,85,88, + 88,117,117,120,120,2,0,39,39,92,92,1,0,36,36,5883,0,5,1,0,0,0,0, + 7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17, + 1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27, + 1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37, + 1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47, + 1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57, + 1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,71,1,0,0,0,0,73, + 1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83, + 1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93, + 1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103, + 1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0, + 0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1, + 0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0, + 131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0, + 0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149, + 1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0, + 0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1, + 0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0, + 177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0, + 0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195, + 1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0, + 0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1, + 0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0, + 223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0, + 0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241, + 1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0, + 0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1, + 0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0, + 269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0, + 0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287, + 1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0, + 0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1, + 0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0, + 315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0, + 0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333, + 1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0, + 0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1, + 0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0, + 361,1,0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0, + 0,0,0,371,1,0,0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379, + 1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0, + 0,389,1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1, + 0,0,0,0,399,1,0,0,0,0,401,1,0,0,0,0,403,1,0,0,0,0,405,1,0,0,0,0, + 407,1,0,0,0,0,409,1,0,0,0,0,411,1,0,0,0,0,413,1,0,0,0,0,415,1,0, + 0,0,0,417,1,0,0,0,0,419,1,0,0,0,0,421,1,0,0,0,0,423,1,0,0,0,0,425, + 1,0,0,0,0,427,1,0,0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0, + 0,435,1,0,0,0,0,437,1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1, + 0,0,0,0,445,1,0,0,0,0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0, + 453,1,0,0,0,0,455,1,0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0, + 0,0,0,463,1,0,0,0,0,465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471, + 1,0,0,0,0,473,1,0,0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0, + 0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1, + 0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0, + 499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0, + 0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517, + 1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0, + 0,527,1,0,0,0,0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1, + 0,0,0,0,537,1,0,0,0,0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0, + 545,1,0,0,0,0,547,1,0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0, + 0,0,0,555,1,0,0,0,0,557,1,0,0,0,0,559,1,0,0,0,0,561,1,0,0,0,0,563, + 1,0,0,0,0,565,1,0,0,0,0,567,1,0,0,0,0,569,1,0,0,0,0,571,1,0,0,0, + 0,573,1,0,0,0,0,575,1,0,0,0,0,577,1,0,0,0,0,579,1,0,0,0,0,581,1, + 0,0,0,0,583,1,0,0,0,0,585,1,0,0,0,0,587,1,0,0,0,0,589,1,0,0,0,0, + 591,1,0,0,0,0,593,1,0,0,0,0,595,1,0,0,0,0,597,1,0,0,0,0,599,1,0, + 0,0,0,601,1,0,0,0,0,603,1,0,0,0,0,605,1,0,0,0,0,607,1,0,0,0,0,609, + 1,0,0,0,0,611,1,0,0,0,0,613,1,0,0,0,0,615,1,0,0,0,0,617,1,0,0,0, + 0,619,1,0,0,0,0,621,1,0,0,0,0,623,1,0,0,0,0,625,1,0,0,0,0,627,1, + 0,0,0,0,629,1,0,0,0,0,631,1,0,0,0,0,633,1,0,0,0,0,635,1,0,0,0,0, + 637,1,0,0,0,0,639,1,0,0,0,0,641,1,0,0,0,0,643,1,0,0,0,0,645,1,0, + 0,0,0,647,1,0,0,0,0,649,1,0,0,0,0,651,1,0,0,0,0,653,1,0,0,0,0,655, + 1,0,0,0,0,657,1,0,0,0,0,659,1,0,0,0,0,661,1,0,0,0,0,663,1,0,0,0, + 0,665,1,0,0,0,0,667,1,0,0,0,0,669,1,0,0,0,0,671,1,0,0,0,0,673,1, + 0,0,0,0,675,1,0,0,0,0,677,1,0,0,0,0,679,1,0,0,0,0,681,1,0,0,0,0, + 683,1,0,0,0,0,685,1,0,0,0,0,687,1,0,0,0,0,689,1,0,0,0,0,691,1,0, + 0,0,0,693,1,0,0,0,0,695,1,0,0,0,0,697,1,0,0,0,0,699,1,0,0,0,0,701, + 1,0,0,0,0,703,1,0,0,0,0,705,1,0,0,0,0,707,1,0,0,0,0,709,1,0,0,0, + 0,711,1,0,0,0,0,713,1,0,0,0,0,715,1,0,0,0,0,717,1,0,0,0,0,719,1, + 0,0,0,0,721,1,0,0,0,0,723,1,0,0,0,0,725,1,0,0,0,0,727,1,0,0,0,0, + 729,1,0,0,0,0,731,1,0,0,0,0,733,1,0,0,0,0,735,1,0,0,0,0,737,1,0, + 0,0,0,739,1,0,0,0,0,741,1,0,0,0,0,743,1,0,0,0,0,745,1,0,0,0,0,747, + 1,0,0,0,0,749,1,0,0,0,0,751,1,0,0,0,0,753,1,0,0,0,0,755,1,0,0,0, + 0,757,1,0,0,0,0,759,1,0,0,0,0,761,1,0,0,0,0,763,1,0,0,0,0,765,1, + 0,0,0,0,767,1,0,0,0,0,769,1,0,0,0,0,771,1,0,0,0,0,773,1,0,0,0,0, + 775,1,0,0,0,0,777,1,0,0,0,0,779,1,0,0,0,0,781,1,0,0,0,0,783,1,0, + 0,0,0,785,1,0,0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,0,793, + 1,0,0,0,0,795,1,0,0,0,0,797,1,0,0,0,0,799,1,0,0,0,0,801,1,0,0,0, + 0,803,1,0,0,0,0,805,1,0,0,0,0,807,1,0,0,0,0,809,1,0,0,0,0,811,1, + 0,0,0,0,813,1,0,0,0,0,815,1,0,0,0,0,817,1,0,0,0,0,819,1,0,0,0,0, + 821,1,0,0,0,0,823,1,0,0,0,0,825,1,0,0,0,0,827,1,0,0,0,0,829,1,0, + 0,0,0,831,1,0,0,0,0,833,1,0,0,0,0,835,1,0,0,0,0,837,1,0,0,0,0,839, + 1,0,0,0,0,841,1,0,0,0,0,843,1,0,0,0,0,845,1,0,0,0,0,847,1,0,0,0, + 0,849,1,0,0,0,0,851,1,0,0,0,0,853,1,0,0,0,0,855,1,0,0,0,0,857,1, + 0,0,0,0,859,1,0,0,0,0,861,1,0,0,0,0,863,1,0,0,0,0,865,1,0,0,0,0, + 867,1,0,0,0,0,869,1,0,0,0,0,871,1,0,0,0,0,873,1,0,0,0,0,875,1,0, + 0,0,0,877,1,0,0,0,0,879,1,0,0,0,0,881,1,0,0,0,0,883,1,0,0,0,0,885, + 1,0,0,0,0,887,1,0,0,0,0,889,1,0,0,0,0,891,1,0,0,0,0,893,1,0,0,0, + 0,895,1,0,0,0,0,897,1,0,0,0,0,899,1,0,0,0,0,901,1,0,0,0,0,903,1, + 0,0,0,0,905,1,0,0,0,0,907,1,0,0,0,0,909,1,0,0,0,0,911,1,0,0,0,0, + 913,1,0,0,0,0,915,1,0,0,0,0,917,1,0,0,0,0,919,1,0,0,0,0,921,1,0, + 0,0,0,923,1,0,0,0,0,925,1,0,0,0,0,927,1,0,0,0,0,929,1,0,0,0,0,931, + 1,0,0,0,0,933,1,0,0,0,0,935,1,0,0,0,0,937,1,0,0,0,0,939,1,0,0,0, + 0,941,1,0,0,0,0,943,1,0,0,0,0,945,1,0,0,0,0,947,1,0,0,0,0,949,1, + 0,0,0,0,951,1,0,0,0,0,953,1,0,0,0,0,955,1,0,0,0,0,957,1,0,0,0,0, + 959,1,0,0,0,0,961,1,0,0,0,0,963,1,0,0,0,0,965,1,0,0,0,0,967,1,0, + 0,0,0,969,1,0,0,0,0,971,1,0,0,0,0,973,1,0,0,0,0,975,1,0,0,0,0,977, + 1,0,0,0,0,979,1,0,0,0,0,981,1,0,0,0,0,983,1,0,0,0,0,985,1,0,0,0, + 0,987,1,0,0,0,0,989,1,0,0,0,0,991,1,0,0,0,0,993,1,0,0,0,0,995,1, + 0,0,0,0,997,1,0,0,0,0,999,1,0,0,0,0,1001,1,0,0,0,0,1003,1,0,0,0, + 0,1005,1,0,0,0,0,1007,1,0,0,0,0,1009,1,0,0,0,0,1011,1,0,0,0,0,1013, + 1,0,0,0,0,1015,1,0,0,0,0,1017,1,0,0,0,0,1019,1,0,0,0,0,1021,1,0, + 0,0,0,1023,1,0,0,0,0,1025,1,0,0,0,0,1027,1,0,0,0,0,1029,1,0,0,0, + 0,1031,1,0,0,0,0,1033,1,0,0,0,0,1035,1,0,0,0,0,1037,1,0,0,0,0,1039, + 1,0,0,0,0,1041,1,0,0,0,0,1043,1,0,0,0,0,1045,1,0,0,0,0,1047,1,0, + 0,0,0,1049,1,0,0,0,0,1051,1,0,0,0,0,1053,1,0,0,0,0,1055,1,0,0,0, + 0,1057,1,0,0,0,0,1059,1,0,0,0,0,1061,1,0,0,0,0,1063,1,0,0,0,0,1065, + 1,0,0,0,0,1067,1,0,0,0,0,1069,1,0,0,0,0,1071,1,0,0,0,0,1073,1,0, + 0,0,0,1075,1,0,0,0,0,1077,1,0,0,0,0,1079,1,0,0,0,0,1081,1,0,0,0, + 0,1083,1,0,0,0,0,1085,1,0,0,0,0,1087,1,0,0,0,0,1089,1,0,0,0,0,1091, + 1,0,0,0,0,1093,1,0,0,0,0,1095,1,0,0,0,0,1097,1,0,0,0,0,1099,1,0, + 0,0,0,1101,1,0,0,0,0,1103,1,0,0,0,0,1105,1,0,0,0,0,1107,1,0,0,0, + 0,1109,1,0,0,0,0,1111,1,0,0,0,0,1113,1,0,0,0,0,1115,1,0,0,0,0,1123, + 1,0,0,0,0,1125,1,0,0,0,0,1127,1,0,0,0,0,1129,1,0,0,0,0,1131,1,0, + 0,0,0,1133,1,0,0,0,0,1135,1,0,0,0,0,1137,1,0,0,0,0,1139,1,0,0,0, + 0,1141,1,0,0,0,0,1143,1,0,0,0,0,1145,1,0,0,0,0,1147,1,0,0,0,0,1149, + 1,0,0,0,0,1153,1,0,0,0,0,1155,1,0,0,0,0,1157,1,0,0,0,0,1159,1,0, + 0,0,0,1161,1,0,0,0,0,1163,1,0,0,0,0,1165,1,0,0,0,0,1167,1,0,0,0, + 0,1169,1,0,0,0,0,1171,1,0,0,0,0,1173,1,0,0,0,0,1177,1,0,0,0,0,1179, + 1,0,0,0,0,1181,1,0,0,0,0,1183,1,0,0,0,0,1185,1,0,0,0,0,1187,1,0, + 0,0,0,1189,1,0,0,0,0,1191,1,0,0,0,0,1193,1,0,0,0,1,1195,1,0,0,0, + 1,1197,1,0,0,0,1,1201,1,0,0,0,1,1203,1,0,0,0,2,1207,1,0,0,0,3,1209, + 1,0,0,0,3,1211,1,0,0,0,4,1213,1,0,0,0,4,1215,1,0,0,0,5,1217,1,0, + 0,0,7,1219,1,0,0,0,9,1221,1,0,0,0,11,1223,1,0,0,0,13,1225,1,0,0, + 0,15,1227,1,0,0,0,17,1229,1,0,0,0,19,1231,1,0,0,0,21,1233,1,0,0, + 0,23,1235,1,0,0,0,25,1237,1,0,0,0,27,1239,1,0,0,0,29,1241,1,0,0, + 0,31,1243,1,0,0,0,33,1245,1,0,0,0,35,1247,1,0,0,0,37,1249,1,0,0, + 0,39,1251,1,0,0,0,41,1254,1,0,0,0,43,1257,1,0,0,0,45,1260,1,0,0, + 0,47,1263,1,0,0,0,49,1266,1,0,0,0,51,1269,1,0,0,0,53,1272,1,0,0, + 0,55,1275,1,0,0,0,57,1278,1,0,0,0,59,1280,1,0,0,0,61,1304,1,0,0, + 0,63,1310,1,0,0,0,65,1324,1,0,0,0,67,1326,1,0,0,0,69,1328,1,0,0, + 0,71,1330,1,0,0,0,73,1334,1,0,0,0,75,1342,1,0,0,0,77,1350,1,0,0, + 0,79,1354,1,0,0,0,81,1358,1,0,0,0,83,1364,1,0,0,0,85,1367,1,0,0, + 0,87,1371,1,0,0,0,89,1382,1,0,0,0,91,1387,1,0,0,0,93,1392,1,0,0, + 0,95,1397,1,0,0,0,97,1403,1,0,0,0,99,1411,1,0,0,0,101,1418,1,0,0, + 0,103,1429,1,0,0,0,105,1436,1,0,0,0,107,1452,1,0,0,0,109,1465,1, + 0,0,0,111,1478,1,0,0,0,113,1491,1,0,0,0,115,1509,1,0,0,0,117,1522, + 1,0,0,0,119,1530,1,0,0,0,121,1541,1,0,0,0,123,1546,1,0,0,0,125,1555, + 1,0,0,0,127,1558,1,0,0,0,129,1563,1,0,0,0,131,1570,1,0,0,0,133,1576, + 1,0,0,0,135,1582,1,0,0,0,137,1586,1,0,0,0,139,1594,1,0,0,0,141,1599, + 1,0,0,0,143,1605,1,0,0,0,145,1611,1,0,0,0,147,1618,1,0,0,0,149,1621, + 1,0,0,0,151,1631,1,0,0,0,153,1641,1,0,0,0,155,1646,1,0,0,0,157,1654, + 1,0,0,0,159,1662,1,0,0,0,161,1668,1,0,0,0,163,1678,1,0,0,0,165,1693, + 1,0,0,0,167,1697,1,0,0,0,169,1702,1,0,0,0,171,1709,1,0,0,0,173,1712, + 1,0,0,0,175,1717,1,0,0,0,177,1720,1,0,0,0,179,1726,1,0,0,0,181,1734, + 1,0,0,0,183,1742,1,0,0,0,185,1753,1,0,0,0,187,1763,1,0,0,0,189,1770, + 1,0,0,0,191,1783,1,0,0,0,193,1788,1,0,0,0,195,1798,1,0,0,0,197,1804, + 1,0,0,0,199,1809,1,0,0,0,201,1812,1,0,0,0,203,1821,1,0,0,0,205,1826, + 1,0,0,0,207,1832,1,0,0,0,209,1839,1,0,0,0,211,1844,1,0,0,0,213,1850, + 1,0,0,0,215,1859,1,0,0,0,217,1864,1,0,0,0,219,1870,1,0,0,0,221,1877, + 1,0,0,0,223,1882,1,0,0,0,225,1896,1,0,0,0,227,1903,1,0,0,0,229,1913, + 1,0,0,0,231,1926,1,0,0,0,233,1932,1,0,0,0,235,1947,1,0,0,0,237,1954, + 1,0,0,0,239,1959,1,0,0,0,241,1965,1,0,0,0,243,1971,1,0,0,0,245,1974, + 1,0,0,0,247,1981,1,0,0,0,249,1986,1,0,0,0,251,1991,1,0,0,0,253,1996, + 1,0,0,0,255,2004,1,0,0,0,257,2012,1,0,0,0,259,2018,1,0,0,0,261,2023, + 1,0,0,0,263,2032,1,0,0,0,265,2038,1,0,0,0,267,2046,1,0,0,0,269,2054, + 1,0,0,0,271,2060,1,0,0,0,273,2069,1,0,0,0,275,2076,1,0,0,0,277,2083, + 1,0,0,0,279,2087,1,0,0,0,281,2093,1,0,0,0,283,2099,1,0,0,0,285,2109, + 1,0,0,0,287,2114,1,0,0,0,289,2120,1,0,0,0,291,2127,1,0,0,0,293,2137, + 1,0,0,0,295,2148,1,0,0,0,297,2151,1,0,0,0,299,2161,1,0,0,0,301,2170, + 1,0,0,0,303,2177,1,0,0,0,305,2183,1,0,0,0,307,2186,1,0,0,0,309,2192, + 1,0,0,0,311,2199,1,0,0,0,313,2207,1,0,0,0,315,2216,1,0,0,0,317,2224, + 1,0,0,0,319,2230,1,0,0,0,321,2246,1,0,0,0,323,2257,1,0,0,0,325,2263, + 1,0,0,0,327,2269,1,0,0,0,329,2277,1,0,0,0,331,2285,1,0,0,0,333,2294, + 1,0,0,0,335,2301,1,0,0,0,337,2311,1,0,0,0,339,2325,1,0,0,0,341,2336, + 1,0,0,0,343,2348,1,0,0,0,345,2356,1,0,0,0,347,2365,1,0,0,0,349,2376, + 1,0,0,0,351,2381,1,0,0,0,353,2386,1,0,0,0,355,2390,1,0,0,0,357,2397, + 1,0,0,0,359,2403,1,0,0,0,361,2408,1,0,0,0,363,2417,1,0,0,0,365,2421, + 1,0,0,0,367,2432,1,0,0,0,369,2440,1,0,0,0,371,2449,1,0,0,0,373,2458, + 1,0,0,0,375,2466,1,0,0,0,377,2473,1,0,0,0,379,2483,1,0,0,0,381,2494, + 1,0,0,0,383,2505,1,0,0,0,385,2513,1,0,0,0,387,2521,1,0,0,0,389,2530, + 1,0,0,0,391,2537,1,0,0,0,393,2544,1,0,0,0,395,2549,1,0,0,0,397,2554, + 1,0,0,0,399,2561,1,0,0,0,401,2570,1,0,0,0,403,2580,1,0,0,0,405,2585, + 1,0,0,0,407,2592,1,0,0,0,409,2598,1,0,0,0,411,2606,1,0,0,0,413,2616, + 1,0,0,0,415,2626,1,0,0,0,417,2634,1,0,0,0,419,2642,1,0,0,0,421,2652, + 1,0,0,0,423,2661,1,0,0,0,425,2668,1,0,0,0,427,2674,1,0,0,0,429,2684, + 1,0,0,0,431,2690,1,0,0,0,433,2698,1,0,0,0,435,2707,1,0,0,0,437,2717, + 1,0,0,0,439,2724,1,0,0,0,441,2732,1,0,0,0,443,2740,1,0,0,0,445,2747, + 1,0,0,0,447,2752,1,0,0,0,449,2757,1,0,0,0,451,2766,1,0,0,0,453,2769, + 1,0,0,0,455,2779,1,0,0,0,457,2789,1,0,0,0,459,2798,1,0,0,0,461,2808, + 1,0,0,0,463,2818,1,0,0,0,465,2824,1,0,0,0,467,2832,1,0,0,0,469,2840, + 1,0,0,0,471,2850,1,0,0,0,473,2860,1,0,0,0,475,2872,1,0,0,0,477,2881, + 1,0,0,0,479,2892,1,0,0,0,481,2903,1,0,0,0,483,2916,1,0,0,0,485,2927, + 1,0,0,0,487,2940,1,0,0,0,489,2949,1,0,0,0,491,2956,1,0,0,0,493,2968, + 1,0,0,0,495,2975,1,0,0,0,497,2983,1,0,0,0,499,2991,1,0,0,0,501,3001, + 1,0,0,0,503,3005,1,0,0,0,505,3011,1,0,0,0,507,3020,1,0,0,0,509,3026, + 1,0,0,0,511,3031,1,0,0,0,513,3041,1,0,0,0,515,3047,1,0,0,0,517,3054, + 1,0,0,0,519,3059,1,0,0,0,521,3065,1,0,0,0,523,3074,1,0,0,0,525,3079, + 1,0,0,0,527,3087,1,0,0,0,529,3093,1,0,0,0,531,3106,1,0,0,0,533,3115, + 1,0,0,0,535,3122,1,0,0,0,537,3131,1,0,0,0,539,3136,1,0,0,0,541,3142, + 1,0,0,0,543,3147,1,0,0,0,545,3152,1,0,0,0,547,3158,1,0,0,0,549,3163, + 1,0,0,0,551,3166,1,0,0,0,553,3174,1,0,0,0,555,3181,1,0,0,0,557,3188, + 1,0,0,0,559,3194,1,0,0,0,561,3201,1,0,0,0,563,3204,1,0,0,0,565,3208, + 1,0,0,0,567,3213,1,0,0,0,569,3222,1,0,0,0,571,3229,1,0,0,0,573,3237, + 1,0,0,0,575,3243,1,0,0,0,577,3249,1,0,0,0,579,3256,1,0,0,0,581,3264, + 1,0,0,0,583,3274,1,0,0,0,585,3282,1,0,0,0,587,3291,1,0,0,0,589,3297, + 1,0,0,0,591,3307,1,0,0,0,593,3315,1,0,0,0,595,3324,1,0,0,0,597,3333, + 1,0,0,0,599,3339,1,0,0,0,601,3350,1,0,0,0,603,3361,1,0,0,0,605,3371, + 1,0,0,0,607,3379,1,0,0,0,609,3385,1,0,0,0,611,3391,1,0,0,0,613,3396, + 1,0,0,0,615,3405,1,0,0,0,617,3413,1,0,0,0,619,3423,1,0,0,0,621,3427, + 1,0,0,0,623,3435,1,0,0,0,625,3443,1,0,0,0,627,3452,1,0,0,0,629,3460, + 1,0,0,0,631,3467,1,0,0,0,633,3478,1,0,0,0,635,3486,1,0,0,0,637,3494, + 1,0,0,0,639,3500,1,0,0,0,641,3508,1,0,0,0,643,3517,1,0,0,0,645,3525, + 1,0,0,0,647,3532,1,0,0,0,649,3537,1,0,0,0,651,3546,1,0,0,0,653,3551, + 1,0,0,0,655,3556,1,0,0,0,657,3566,1,0,0,0,659,3573,1,0,0,0,661,3580, + 1,0,0,0,663,3587,1,0,0,0,665,3594,1,0,0,0,667,3603,1,0,0,0,669,3612, + 1,0,0,0,671,3622,1,0,0,0,673,3635,1,0,0,0,675,3642,1,0,0,0,677,3650, + 1,0,0,0,679,3654,1,0,0,0,681,3660,1,0,0,0,683,3665,1,0,0,0,685,3672, + 1,0,0,0,687,3681,1,0,0,0,689,3688,1,0,0,0,691,3699,1,0,0,0,693,3705, + 1,0,0,0,695,3715,1,0,0,0,697,3726,1,0,0,0,699,3732,1,0,0,0,701,3739, + 1,0,0,0,703,3747,1,0,0,0,705,3754,1,0,0,0,707,3760,1,0,0,0,709,3766, + 1,0,0,0,711,3773,1,0,0,0,713,3780,1,0,0,0,715,3791,1,0,0,0,717,3796, + 1,0,0,0,719,3805,1,0,0,0,721,3815,1,0,0,0,723,3820,1,0,0,0,725,3832, + 1,0,0,0,727,3840,1,0,0,0,729,3849,1,0,0,0,731,3857,1,0,0,0,733,3862, + 1,0,0,0,735,3868,1,0,0,0,737,3878,1,0,0,0,739,3890,1,0,0,0,741,3902, + 1,0,0,0,743,3910,1,0,0,0,745,3919,1,0,0,0,747,3928,1,0,0,0,749,3934, + 1,0,0,0,751,3941,1,0,0,0,753,3948,1,0,0,0,755,3954,1,0,0,0,757,3963, + 1,0,0,0,759,3973,1,0,0,0,761,3981,1,0,0,0,763,3989,1,0,0,0,765,3994, + 1,0,0,0,767,4003,1,0,0,0,769,4014,1,0,0,0,771,4022,1,0,0,0,773,4027, + 1,0,0,0,775,4035,1,0,0,0,777,4041,1,0,0,0,779,4045,1,0,0,0,781,4050, + 1,0,0,0,783,4054,1,0,0,0,785,4059,1,0,0,0,787,4067,1,0,0,0,789,4074, + 1,0,0,0,791,4078,1,0,0,0,793,4086,1,0,0,0,795,4091,1,0,0,0,797,4101, + 1,0,0,0,799,4110,1,0,0,0,801,4114,1,0,0,0,803,4122,1,0,0,0,805,4129, + 1,0,0,0,807,4137,1,0,0,0,809,4143,1,0,0,0,811,4152,1,0,0,0,813,4158, + 1,0,0,0,815,4162,1,0,0,0,817,4170,1,0,0,0,819,4179,1,0,0,0,821,4185, + 1,0,0,0,823,4194,1,0,0,0,825,4200,1,0,0,0,827,4205,1,0,0,0,829,4212, + 1,0,0,0,831,4220,1,0,0,0,833,4228,1,0,0,0,835,4237,1,0,0,0,837,4247, + 1,0,0,0,839,4252,1,0,0,0,841,4256,1,0,0,0,843,4262,1,0,0,0,845,4271, + 1,0,0,0,847,4281,1,0,0,0,849,4286,1,0,0,0,851,4296,1,0,0,0,853,4302, + 1,0,0,0,855,4307,1,0,0,0,857,4314,1,0,0,0,859,4322,1,0,0,0,861,4336, + 1,0,0,0,863,4346,1,0,0,0,865,4357,1,0,0,0,867,4367,1,0,0,0,869,4377, + 1,0,0,0,871,4386,1,0,0,0,873,4392,1,0,0,0,875,4400,1,0,0,0,877,4413, + 1,0,0,0,879,4418,1,0,0,0,881,4426,1,0,0,0,883,4433,1,0,0,0,885,4440, + 1,0,0,0,887,4451,1,0,0,0,889,4461,1,0,0,0,891,4468,1,0,0,0,893,4475, + 1,0,0,0,895,4483,1,0,0,0,897,4491,1,0,0,0,899,4501,1,0,0,0,901,4508, + 1,0,0,0,903,4515,1,0,0,0,905,4522,1,0,0,0,907,4534,1,0,0,0,909,4538, + 1,0,0,0,911,4542,1,0,0,0,913,4548,1,0,0,0,915,4561,1,0,0,0,917,4573, + 1,0,0,0,919,4577,1,0,0,0,921,4581,1,0,0,0,923,4590,1,0,0,0,925,4598, + 1,0,0,0,927,4609,1,0,0,0,929,4615,1,0,0,0,931,4623,1,0,0,0,933,4632, + 1,0,0,0,935,4636,1,0,0,0,937,4644,1,0,0,0,939,4655,1,0,0,0,941,4664, + 1,0,0,0,943,4669,1,0,0,0,945,4676,1,0,0,0,947,4681,1,0,0,0,949,4688, + 1,0,0,0,951,4693,1,0,0,0,953,4702,1,0,0,0,955,4707,1,0,0,0,957,4719, + 1,0,0,0,959,4730,1,0,0,0,961,4739,1,0,0,0,963,4747,1,0,0,0,965,4761, + 1,0,0,0,967,4769,1,0,0,0,969,4780,1,0,0,0,971,4787,1,0,0,0,973,4794, + 1,0,0,0,975,4801,1,0,0,0,977,4808,1,0,0,0,979,4812,1,0,0,0,981,4816, + 1,0,0,0,983,4821,1,0,0,0,985,4826,1,0,0,0,987,4834,1,0,0,0,989,4840, + 1,0,0,0,991,4850,1,0,0,0,993,4855,1,0,0,0,995,4875,1,0,0,0,997,4893, + 1,0,0,0,999,4899,1,0,0,0,1001,4912,1,0,0,0,1003,4923,1,0,0,0,1005, + 4929,1,0,0,0,1007,4938,1,0,0,0,1009,4946,1,0,0,0,1011,4950,1,0,0, + 0,1013,4962,1,0,0,0,1015,4970,1,0,0,0,1017,4976,1,0,0,0,1019,4982, + 1,0,0,0,1021,4990,1,0,0,0,1023,4998,1,0,0,0,1025,5004,1,0,0,0,1027, + 5009,1,0,0,0,1029,5016,1,0,0,0,1031,5022,1,0,0,0,1033,5028,1,0,0, + 0,1035,5037,1,0,0,0,1037,5043,1,0,0,0,1039,5047,1,0,0,0,1041,5052, + 1,0,0,0,1043,5059,1,0,0,0,1045,5067,1,0,0,0,1047,5077,1,0,0,0,1049, + 5084,1,0,0,0,1051,5089,1,0,0,0,1053,5094,1,0,0,0,1055,5105,1,0,0, + 0,1057,5111,1,0,0,0,1059,5119,1,0,0,0,1061,5126,1,0,0,0,1063,5132, + 1,0,0,0,1065,5140,1,0,0,0,1067,5148,1,0,0,0,1069,5154,1,0,0,0,1071, + 5161,1,0,0,0,1073,5172,1,0,0,0,1075,5177,1,0,0,0,1077,5186,1,0,0, + 0,1079,5194,1,0,0,0,1081,5204,1,0,0,0,1083,5210,1,0,0,0,1085,5218, + 1,0,0,0,1087,5230,1,0,0,0,1089,5244,1,0,0,0,1091,5254,1,0,0,0,1093, + 5266,1,0,0,0,1095,5277,1,0,0,0,1097,5289,1,0,0,0,1099,5301,1,0,0, + 0,1101,5307,1,0,0,0,1103,5316,1,0,0,0,1105,5321,1,0,0,0,1107,5333, + 1,0,0,0,1109,5352,1,0,0,0,1111,5364,1,0,0,0,1113,5379,1,0,0,0,1115, + 5390,1,0,0,0,1117,5400,1,0,0,0,1119,5404,1,0,0,0,1121,5408,1,0,0, + 0,1123,5410,1,0,0,0,1125,5413,1,0,0,0,1127,5422,1,0,0,0,1129,5425, + 1,0,0,0,1131,5434,1,0,0,0,1133,5438,1,0,0,0,1135,5442,1,0,0,0,1137, + 5446,1,0,0,0,1139,5450,1,0,0,0,1141,5453,1,0,0,0,1143,5462,1,0,0, + 0,1145,5468,1,0,0,0,1147,5471,1,0,0,0,1149,5475,1,0,0,0,1151,5483, + 1,0,0,0,1153,5490,1,0,0,0,1155,5493,1,0,0,0,1157,5501,1,0,0,0,1159, + 5504,1,0,0,0,1161,5507,1,0,0,0,1163,5510,1,0,0,0,1165,5518,1,0,0, + 0,1167,5521,1,0,0,0,1169,5524,1,0,0,0,1171,5526,1,0,0,0,1173,5558, + 1,0,0,0,1175,5561,1,0,0,0,1177,5565,1,0,0,0,1179,5573,1,0,0,0,1181, + 5588,1,0,0,0,1183,5592,1,0,0,0,1185,5603,1,0,0,0,1187,5642,1,0,0, + 0,1189,5691,1,0,0,0,1191,5715,1,0,0,0,1193,5718,1,0,0,0,1195,5720, + 1,0,0,0,1197,5725,1,0,0,0,1199,5756,1,0,0,0,1201,5759,1,0,0,0,1203, + 5764,1,0,0,0,1205,5777,1,0,0,0,1207,5780,1,0,0,0,1209,5785,1,0,0, + 0,1211,5790,1,0,0,0,1213,5807,1,0,0,0,1215,5809,1,0,0,0,1217,1218, + 5,36,0,0,1218,6,1,0,0,0,1219,1220,5,40,0,0,1220,8,1,0,0,0,1221,1222, + 5,41,0,0,1222,10,1,0,0,0,1223,1224,5,91,0,0,1224,12,1,0,0,0,1225, + 1226,5,93,0,0,1226,14,1,0,0,0,1227,1228,5,44,0,0,1228,16,1,0,0,0, + 1229,1230,5,59,0,0,1230,18,1,0,0,0,1231,1232,5,58,0,0,1232,20,1, + 0,0,0,1233,1234,5,42,0,0,1234,22,1,0,0,0,1235,1236,5,61,0,0,1236, + 24,1,0,0,0,1237,1238,5,46,0,0,1238,26,1,0,0,0,1239,1240,5,43,0,0, + 1240,28,1,0,0,0,1241,1242,5,45,0,0,1242,30,1,0,0,0,1243,1244,5,47, + 0,0,1244,32,1,0,0,0,1245,1246,5,94,0,0,1246,34,1,0,0,0,1247,1248, + 5,60,0,0,1248,36,1,0,0,0,1249,1250,5,62,0,0,1250,38,1,0,0,0,1251, + 1252,5,60,0,0,1252,1253,5,60,0,0,1253,40,1,0,0,0,1254,1255,5,62, + 0,0,1255,1256,5,62,0,0,1256,42,1,0,0,0,1257,1258,5,58,0,0,1258,1259, + 5,61,0,0,1259,44,1,0,0,0,1260,1261,5,60,0,0,1261,1262,5,61,0,0,1262, + 46,1,0,0,0,1263,1264,5,61,0,0,1264,1265,5,62,0,0,1265,48,1,0,0,0, + 1266,1267,5,62,0,0,1267,1268,5,61,0,0,1268,50,1,0,0,0,1269,1270, + 5,46,0,0,1270,1271,5,46,0,0,1271,52,1,0,0,0,1272,1273,5,60,0,0,1273, + 1274,5,62,0,0,1274,54,1,0,0,0,1275,1276,5,58,0,0,1276,1277,5,58, + 0,0,1277,56,1,0,0,0,1278,1279,5,37,0,0,1279,58,1,0,0,0,1280,1282, + 5,36,0,0,1281,1283,7,0,0,0,1282,1281,1,0,0,0,1283,1284,1,0,0,0,1284, + 1282,1,0,0,0,1284,1285,1,0,0,0,1285,60,1,0,0,0,1286,1300,3,65,30, + 0,1287,1289,7,1,0,0,1288,1287,1,0,0,0,1289,1290,1,0,0,0,1290,1288, + 1,0,0,0,1290,1291,1,0,0,0,1291,1296,1,0,0,0,1292,1297,3,65,30,0, + 1293,1295,5,47,0,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1297, + 1,0,0,0,1296,1292,1,0,0,0,1296,1294,1,0,0,0,1297,1300,1,0,0,0,1298, + 1300,5,47,0,0,1299,1286,1,0,0,0,1299,1288,1,0,0,0,1299,1298,1,0, + 0,0,1300,1301,1,0,0,0,1301,1299,1,0,0,0,1301,1302,1,0,0,0,1302,1305, + 1,0,0,0,1303,1305,7,1,0,0,1304,1299,1,0,0,0,1304,1303,1,0,0,0,1305, + 62,1,0,0,0,1306,1309,3,67,31,0,1307,1309,7,2,0,0,1308,1306,1,0,0, + 0,1308,1307,1,0,0,0,1309,1312,1,0,0,0,1310,1308,1,0,0,0,1310,1311, + 1,0,0,0,1311,1313,1,0,0,0,1312,1310,1,0,0,0,1313,1315,3,69,32,0, + 1314,1316,3,61,28,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1318, + 1,0,0,0,1317,1319,7,1,0,0,1318,1317,1,0,0,0,1319,1320,1,0,0,0,1320, + 1318,1,0,0,0,1320,1321,1,0,0,0,1321,1322,1,0,0,0,1322,1323,6,29, + 0,0,1323,64,1,0,0,0,1324,1325,7,3,0,0,1325,66,1,0,0,0,1326,1327, + 7,4,0,0,1327,68,1,0,0,0,1328,1329,7,5,0,0,1329,70,1,0,0,0,1330,1331, + 7,6,0,0,1331,1332,7,7,0,0,1332,1333,7,7,0,0,1333,72,1,0,0,0,1334, + 1335,7,6,0,0,1335,1336,7,8,0,0,1336,1337,7,6,0,0,1337,1338,7,7,0, + 0,1338,1339,7,9,0,0,1339,1340,7,10,0,0,1340,1341,7,11,0,0,1341,74, + 1,0,0,0,1342,1343,7,6,0,0,1343,1344,7,8,0,0,1344,1345,7,6,0,0,1345, + 1346,7,7,0,0,1346,1347,7,9,0,0,1347,1348,7,12,0,0,1348,1349,7,11, + 0,0,1349,76,1,0,0,0,1350,1351,7,6,0,0,1351,1352,7,8,0,0,1352,1353, + 7,13,0,0,1353,78,1,0,0,0,1354,1355,7,6,0,0,1355,1356,7,8,0,0,1356, + 1357,7,9,0,0,1357,80,1,0,0,0,1358,1359,7,6,0,0,1359,1360,7,14,0, + 0,1360,1361,7,14,0,0,1361,1362,7,6,0,0,1362,1363,7,9,0,0,1363,82, + 1,0,0,0,1364,1365,7,6,0,0,1365,1366,7,10,0,0,1366,84,1,0,0,0,1367, + 1368,7,6,0,0,1368,1369,7,10,0,0,1369,1370,7,15,0,0,1370,86,1,0,0, + 0,1371,1372,7,6,0,0,1372,1373,7,10,0,0,1373,1374,7,9,0,0,1374,1375, + 7,16,0,0,1375,1376,7,16,0,0,1376,1377,7,11,0,0,1377,1378,7,17,0, + 0,1378,1379,7,14,0,0,1379,1380,7,18,0,0,1380,1381,7,15,0,0,1381, + 88,1,0,0,0,1382,1383,7,19,0,0,1383,1384,7,20,0,0,1384,1385,7,17, + 0,0,1385,1386,7,21,0,0,1386,90,1,0,0,0,1387,1388,7,15,0,0,1388,1389, + 7,6,0,0,1389,1390,7,10,0,0,1390,1391,7,11,0,0,1391,92,1,0,0,0,1392, + 1393,7,15,0,0,1393,1394,7,6,0,0,1394,1395,7,10,0,0,1395,1396,7,17, + 0,0,1396,94,1,0,0,0,1397,1398,7,15,0,0,1398,1399,7,21,0,0,1399,1400, + 7,11,0,0,1400,1401,7,15,0,0,1401,1402,7,22,0,0,1402,96,1,0,0,0,1403, + 1404,7,15,0,0,1404,1405,7,20,0,0,1405,1406,7,7,0,0,1406,1407,7,7, + 0,0,1407,1408,7,6,0,0,1408,1409,7,17,0,0,1409,1410,7,11,0,0,1410, + 98,1,0,0,0,1411,1412,7,15,0,0,1412,1413,7,20,0,0,1413,1414,7,7,0, + 0,1414,1415,7,23,0,0,1415,1416,7,16,0,0,1416,1417,7,8,0,0,1417,100, + 1,0,0,0,1418,1419,7,15,0,0,1419,1420,7,20,0,0,1420,1421,7,8,0,0, + 1421,1422,7,10,0,0,1422,1423,7,17,0,0,1423,1424,7,14,0,0,1424,1425, + 7,6,0,0,1425,1426,7,18,0,0,1426,1427,7,8,0,0,1427,1428,7,17,0,0, + 1428,102,1,0,0,0,1429,1430,7,15,0,0,1430,1431,7,14,0,0,1431,1432, + 7,11,0,0,1432,1433,7,6,0,0,1433,1434,7,17,0,0,1434,1435,7,11,0,0, + 1435,104,1,0,0,0,1436,1437,7,15,0,0,1437,1438,7,23,0,0,1438,1439, + 7,14,0,0,1439,1440,7,14,0,0,1440,1441,7,11,0,0,1441,1442,7,8,0,0, + 1442,1443,7,17,0,0,1443,1444,5,95,0,0,1444,1445,7,15,0,0,1445,1446, + 7,6,0,0,1446,1447,7,17,0,0,1447,1448,7,6,0,0,1448,1449,7,7,0,0,1449, + 1450,7,20,0,0,1450,1451,7,24,0,0,1451,106,1,0,0,0,1452,1453,7,15, + 0,0,1453,1454,7,23,0,0,1454,1455,7,14,0,0,1455,1456,7,14,0,0,1456, + 1457,7,11,0,0,1457,1458,7,8,0,0,1458,1459,7,17,0,0,1459,1460,5,95, + 0,0,1460,1461,7,13,0,0,1461,1462,7,6,0,0,1462,1463,7,17,0,0,1463, + 1464,7,11,0,0,1464,108,1,0,0,0,1465,1466,7,15,0,0,1466,1467,7,23, + 0,0,1467,1468,7,14,0,0,1468,1469,7,14,0,0,1469,1470,7,11,0,0,1470, + 1471,7,8,0,0,1471,1472,7,17,0,0,1472,1473,5,95,0,0,1473,1474,7,14, + 0,0,1474,1475,7,20,0,0,1475,1476,7,7,0,0,1476,1477,7,11,0,0,1477, + 110,1,0,0,0,1478,1479,7,15,0,0,1479,1480,7,23,0,0,1480,1481,7,14, + 0,0,1481,1482,7,14,0,0,1482,1483,7,11,0,0,1483,1484,7,8,0,0,1484, + 1485,7,17,0,0,1485,1486,5,95,0,0,1486,1487,7,17,0,0,1487,1488,7, + 18,0,0,1488,1489,7,16,0,0,1489,1490,7,11,0,0,1490,112,1,0,0,0,1491, + 1492,7,15,0,0,1492,1493,7,23,0,0,1493,1494,7,14,0,0,1494,1495,7, + 14,0,0,1495,1496,7,11,0,0,1496,1497,7,8,0,0,1497,1498,7,17,0,0,1498, + 1499,5,95,0,0,1499,1500,7,17,0,0,1500,1501,7,18,0,0,1501,1502,7, + 16,0,0,1502,1503,7,11,0,0,1503,1504,7,10,0,0,1504,1505,7,17,0,0, + 1505,1506,7,6,0,0,1506,1507,7,16,0,0,1507,1508,7,25,0,0,1508,114, + 1,0,0,0,1509,1510,7,15,0,0,1510,1511,7,23,0,0,1511,1512,7,14,0,0, + 1512,1513,7,14,0,0,1513,1514,7,11,0,0,1514,1515,7,8,0,0,1515,1516, + 7,17,0,0,1516,1517,5,95,0,0,1517,1518,7,23,0,0,1518,1519,7,10,0, + 0,1519,1520,7,11,0,0,1520,1521,7,14,0,0,1521,116,1,0,0,0,1522,1523, + 7,13,0,0,1523,1524,7,11,0,0,1524,1525,7,26,0,0,1525,1526,7,6,0,0, + 1526,1527,7,23,0,0,1527,1528,7,7,0,0,1528,1529,7,17,0,0,1529,118, + 1,0,0,0,1530,1531,7,13,0,0,1531,1532,7,11,0,0,1532,1533,7,26,0,0, + 1533,1534,7,11,0,0,1534,1535,7,14,0,0,1535,1536,7,14,0,0,1536,1537, + 7,6,0,0,1537,1538,7,19,0,0,1538,1539,7,7,0,0,1539,1540,7,11,0,0, + 1540,120,1,0,0,0,1541,1542,7,13,0,0,1542,1543,7,11,0,0,1543,1544, + 7,10,0,0,1544,1545,7,15,0,0,1545,122,1,0,0,0,1546,1547,7,13,0,0, + 1547,1548,7,18,0,0,1548,1549,7,10,0,0,1549,1550,7,17,0,0,1550,1551, + 7,18,0,0,1551,1552,7,8,0,0,1552,1553,7,15,0,0,1553,1554,7,17,0,0, + 1554,124,1,0,0,0,1555,1556,7,13,0,0,1556,1557,7,20,0,0,1557,126, + 1,0,0,0,1558,1559,7,11,0,0,1559,1560,7,7,0,0,1560,1561,7,10,0,0, + 1561,1562,7,11,0,0,1562,128,1,0,0,0,1563,1564,7,11,0,0,1564,1565, + 7,27,0,0,1565,1566,7,15,0,0,1566,1567,7,11,0,0,1567,1568,7,25,0, + 0,1568,1569,7,17,0,0,1569,130,1,0,0,0,1570,1571,7,26,0,0,1571,1572, + 7,6,0,0,1572,1573,7,7,0,0,1573,1574,7,10,0,0,1574,1575,7,11,0,0, + 1575,132,1,0,0,0,1576,1577,7,26,0,0,1577,1578,7,11,0,0,1578,1579, + 7,17,0,0,1579,1580,7,15,0,0,1580,1581,7,21,0,0,1581,134,1,0,0,0, + 1582,1583,7,26,0,0,1583,1584,7,20,0,0,1584,1585,7,14,0,0,1585,136, + 1,0,0,0,1586,1587,7,26,0,0,1587,1588,7,20,0,0,1588,1589,7,14,0,0, + 1589,1590,7,11,0,0,1590,1591,7,18,0,0,1591,1592,7,24,0,0,1592,1593, + 7,8,0,0,1593,138,1,0,0,0,1594,1595,7,26,0,0,1595,1596,7,14,0,0,1596, + 1597,7,20,0,0,1597,1598,7,16,0,0,1598,140,1,0,0,0,1599,1600,7,24, + 0,0,1600,1601,7,14,0,0,1601,1602,7,6,0,0,1602,1603,7,8,0,0,1603, + 1604,7,17,0,0,1604,142,1,0,0,0,1605,1606,7,24,0,0,1606,1607,7,14, + 0,0,1607,1608,7,20,0,0,1608,1609,7,23,0,0,1609,1610,7,25,0,0,1610, + 144,1,0,0,0,1611,1612,7,21,0,0,1612,1613,7,6,0,0,1613,1614,7,28, + 0,0,1614,1615,7,18,0,0,1615,1616,7,8,0,0,1616,1617,7,24,0,0,1617, + 146,1,0,0,0,1618,1619,7,18,0,0,1619,1620,7,8,0,0,1620,148,1,0,0, + 0,1621,1622,7,18,0,0,1622,1623,7,8,0,0,1623,1624,7,18,0,0,1624,1625, + 7,17,0,0,1625,1626,7,18,0,0,1626,1627,7,6,0,0,1627,1628,7,7,0,0, + 1628,1629,7,7,0,0,1629,1630,7,9,0,0,1630,150,1,0,0,0,1631,1632,7, + 18,0,0,1632,1633,7,8,0,0,1633,1634,7,17,0,0,1634,1635,7,11,0,0,1635, + 1636,7,14,0,0,1636,1637,7,10,0,0,1637,1638,7,11,0,0,1638,1639,7, + 15,0,0,1639,1640,7,17,0,0,1640,152,1,0,0,0,1641,1642,7,18,0,0,1642, + 1643,7,8,0,0,1643,1644,7,17,0,0,1644,1645,7,20,0,0,1645,154,1,0, + 0,0,1646,1647,7,7,0,0,1647,1648,7,6,0,0,1648,1649,7,17,0,0,1649, + 1650,7,11,0,0,1650,1651,7,14,0,0,1651,1652,7,6,0,0,1652,1653,7,7, + 0,0,1653,156,1,0,0,0,1654,1655,7,7,0,0,1655,1656,7,11,0,0,1656,1657, + 7,6,0,0,1657,1658,7,13,0,0,1658,1659,7,18,0,0,1659,1660,7,8,0,0, + 1660,1661,7,24,0,0,1661,158,1,0,0,0,1662,1663,7,7,0,0,1663,1664, + 7,18,0,0,1664,1665,7,16,0,0,1665,1666,7,18,0,0,1666,1667,7,17,0, + 0,1667,160,1,0,0,0,1668,1669,7,7,0,0,1669,1670,7,20,0,0,1670,1671, + 7,15,0,0,1671,1672,7,6,0,0,1672,1673,7,7,0,0,1673,1674,7,17,0,0, + 1674,1675,7,18,0,0,1675,1676,7,16,0,0,1676,1677,7,11,0,0,1677,162, + 1,0,0,0,1678,1679,7,7,0,0,1679,1680,7,20,0,0,1680,1681,7,15,0,0, + 1681,1682,7,6,0,0,1682,1683,7,7,0,0,1683,1684,7,17,0,0,1684,1685, + 7,18,0,0,1685,1686,7,16,0,0,1686,1687,7,11,0,0,1687,1688,7,10,0, + 0,1688,1689,7,17,0,0,1689,1690,7,6,0,0,1690,1691,7,16,0,0,1691,1692, + 7,25,0,0,1692,164,1,0,0,0,1693,1694,7,8,0,0,1694,1695,7,20,0,0,1695, + 1696,7,17,0,0,1696,166,1,0,0,0,1697,1698,7,8,0,0,1698,1699,7,23, + 0,0,1699,1700,7,7,0,0,1700,1701,7,7,0,0,1701,168,1,0,0,0,1702,1703, + 7,20,0,0,1703,1704,7,26,0,0,1704,1705,7,26,0,0,1705,1706,7,10,0, + 0,1706,1707,7,11,0,0,1707,1708,7,17,0,0,1708,170,1,0,0,0,1709,1710, + 7,20,0,0,1710,1711,7,8,0,0,1711,172,1,0,0,0,1712,1713,7,20,0,0,1713, + 1714,7,8,0,0,1714,1715,7,7,0,0,1715,1716,7,9,0,0,1716,174,1,0,0, + 0,1717,1718,7,20,0,0,1718,1719,7,14,0,0,1719,176,1,0,0,0,1720,1721, + 7,20,0,0,1721,1722,7,14,0,0,1722,1723,7,13,0,0,1723,1724,7,11,0, + 0,1724,1725,7,14,0,0,1725,178,1,0,0,0,1726,1727,7,25,0,0,1727,1728, + 7,7,0,0,1728,1729,7,6,0,0,1729,1730,7,15,0,0,1730,1731,7,18,0,0, + 1731,1732,7,8,0,0,1732,1733,7,24,0,0,1733,180,1,0,0,0,1734,1735, + 7,25,0,0,1735,1736,7,14,0,0,1736,1737,7,18,0,0,1737,1738,7,16,0, + 0,1738,1739,7,6,0,0,1739,1740,7,14,0,0,1740,1741,7,9,0,0,1741,182, + 1,0,0,0,1742,1743,7,14,0,0,1743,1744,7,11,0,0,1744,1745,7,26,0,0, + 1745,1746,7,11,0,0,1746,1747,7,14,0,0,1747,1748,7,11,0,0,1748,1749, + 7,8,0,0,1749,1750,7,15,0,0,1750,1751,7,11,0,0,1751,1752,7,10,0,0, + 1752,184,1,0,0,0,1753,1754,7,14,0,0,1754,1755,7,11,0,0,1755,1756, + 7,17,0,0,1756,1757,7,23,0,0,1757,1758,7,14,0,0,1758,1759,7,8,0,0, + 1759,1760,7,18,0,0,1760,1761,7,8,0,0,1761,1762,7,24,0,0,1762,186, + 1,0,0,0,1763,1764,7,10,0,0,1764,1765,7,11,0,0,1765,1766,7,7,0,0, + 1766,1767,7,11,0,0,1767,1768,7,15,0,0,1768,1769,7,17,0,0,1769,188, + 1,0,0,0,1770,1771,7,10,0,0,1771,1772,7,11,0,0,1772,1773,7,10,0,0, + 1773,1774,7,10,0,0,1774,1775,7,18,0,0,1775,1776,7,20,0,0,1776,1777, + 7,8,0,0,1777,1778,5,95,0,0,1778,1779,7,23,0,0,1779,1780,7,10,0,0, + 1780,1781,7,11,0,0,1781,1782,7,14,0,0,1782,190,1,0,0,0,1783,1784, + 7,10,0,0,1784,1785,7,20,0,0,1785,1786,7,16,0,0,1786,1787,7,11,0, + 0,1787,192,1,0,0,0,1788,1789,7,10,0,0,1789,1790,7,9,0,0,1790,1791, + 7,16,0,0,1791,1792,7,16,0,0,1792,1793,7,11,0,0,1793,1794,7,17,0, + 0,1794,1795,7,14,0,0,1795,1796,7,18,0,0,1796,1797,7,15,0,0,1797, + 194,1,0,0,0,1798,1799,7,17,0,0,1799,1800,7,6,0,0,1800,1801,7,19, + 0,0,1801,1802,7,7,0,0,1802,1803,7,11,0,0,1803,196,1,0,0,0,1804,1805, + 7,17,0,0,1805,1806,7,21,0,0,1806,1807,7,11,0,0,1807,1808,7,8,0,0, + 1808,198,1,0,0,0,1809,1810,7,17,0,0,1810,1811,7,20,0,0,1811,200, + 1,0,0,0,1812,1813,7,17,0,0,1813,1814,7,14,0,0,1814,1815,7,6,0,0, + 1815,1816,7,18,0,0,1816,1817,7,7,0,0,1817,1818,7,18,0,0,1818,1819, + 7,8,0,0,1819,1820,7,24,0,0,1820,202,1,0,0,0,1821,1822,7,17,0,0,1822, + 1823,7,14,0,0,1823,1824,7,23,0,0,1824,1825,7,11,0,0,1825,204,1,0, + 0,0,1826,1827,7,23,0,0,1827,1828,7,8,0,0,1828,1829,7,18,0,0,1829, + 1830,7,20,0,0,1830,1831,7,8,0,0,1831,206,1,0,0,0,1832,1833,7,23, + 0,0,1833,1834,7,8,0,0,1834,1835,7,18,0,0,1835,1836,7,29,0,0,1836, + 1837,7,23,0,0,1837,1838,7,11,0,0,1838,208,1,0,0,0,1839,1840,7,23, + 0,0,1840,1841,7,10,0,0,1841,1842,7,11,0,0,1842,1843,7,14,0,0,1843, + 210,1,0,0,0,1844,1845,7,23,0,0,1845,1846,7,10,0,0,1846,1847,7,18, + 0,0,1847,1848,7,8,0,0,1848,1849,7,24,0,0,1849,212,1,0,0,0,1850,1851, + 7,28,0,0,1851,1852,7,6,0,0,1852,1853,7,14,0,0,1853,1854,7,18,0,0, + 1854,1855,7,6,0,0,1855,1856,7,13,0,0,1856,1857,7,18,0,0,1857,1858, + 7,15,0,0,1858,214,1,0,0,0,1859,1860,7,30,0,0,1860,1861,7,21,0,0, + 1861,1862,7,11,0,0,1862,1863,7,8,0,0,1863,216,1,0,0,0,1864,1865, + 7,30,0,0,1865,1866,7,21,0,0,1866,1867,7,11,0,0,1867,1868,7,14,0, + 0,1868,1869,7,11,0,0,1869,218,1,0,0,0,1870,1871,7,30,0,0,1871,1872, + 7,18,0,0,1872,1873,7,8,0,0,1873,1874,7,13,0,0,1874,1875,7,20,0,0, + 1875,1876,7,30,0,0,1876,220,1,0,0,0,1877,1878,7,30,0,0,1878,1879, + 7,18,0,0,1879,1880,7,17,0,0,1880,1881,7,21,0,0,1881,222,1,0,0,0, + 1882,1883,7,6,0,0,1883,1884,7,23,0,0,1884,1885,7,17,0,0,1885,1886, + 7,21,0,0,1886,1887,7,20,0,0,1887,1888,7,14,0,0,1888,1889,7,18,0, + 0,1889,1890,7,12,0,0,1890,1891,7,6,0,0,1891,1892,7,17,0,0,1892,1893, + 7,18,0,0,1893,1894,7,20,0,0,1894,1895,7,8,0,0,1895,224,1,0,0,0,1896, + 1897,7,19,0,0,1897,1898,7,18,0,0,1898,1899,7,8,0,0,1899,1900,7,6, + 0,0,1900,1901,7,14,0,0,1901,1902,7,9,0,0,1902,226,1,0,0,0,1903,1904, + 7,15,0,0,1904,1905,7,20,0,0,1905,1906,7,7,0,0,1906,1907,7,7,0,0, + 1907,1908,7,6,0,0,1908,1909,7,17,0,0,1909,1910,7,18,0,0,1910,1911, + 7,20,0,0,1911,1912,7,8,0,0,1912,228,1,0,0,0,1913,1914,7,15,0,0,1914, + 1915,7,20,0,0,1915,1916,7,8,0,0,1916,1917,7,15,0,0,1917,1918,7,23, + 0,0,1918,1919,7,14,0,0,1919,1920,7,14,0,0,1920,1921,7,11,0,0,1921, + 1922,7,8,0,0,1922,1923,7,17,0,0,1923,1924,7,7,0,0,1924,1925,7,9, + 0,0,1925,230,1,0,0,0,1926,1927,7,15,0,0,1927,1928,7,14,0,0,1928, + 1929,7,20,0,0,1929,1930,7,10,0,0,1930,1931,7,10,0,0,1931,232,1,0, + 0,0,1932,1933,7,15,0,0,1933,1934,7,23,0,0,1934,1935,7,14,0,0,1935, + 1936,7,14,0,0,1936,1937,7,11,0,0,1937,1938,7,8,0,0,1938,1939,7,17, + 0,0,1939,1940,5,95,0,0,1940,1941,7,10,0,0,1941,1942,7,15,0,0,1942, + 1943,7,21,0,0,1943,1944,7,11,0,0,1944,1945,7,16,0,0,1945,1946,7, + 6,0,0,1946,234,1,0,0,0,1947,1948,7,26,0,0,1948,1949,7,14,0,0,1949, + 1950,7,11,0,0,1950,1951,7,11,0,0,1951,1952,7,12,0,0,1952,1953,7, + 11,0,0,1953,236,1,0,0,0,1954,1955,7,26,0,0,1955,1956,7,23,0,0,1956, + 1957,7,7,0,0,1957,1958,7,7,0,0,1958,238,1,0,0,0,1959,1960,7,18,0, + 0,1960,1961,7,7,0,0,1961,1962,7,18,0,0,1962,1963,7,22,0,0,1963,1964, + 7,11,0,0,1964,240,1,0,0,0,1965,1966,7,18,0,0,1966,1967,7,8,0,0,1967, + 1968,7,8,0,0,1968,1969,7,11,0,0,1969,1970,7,14,0,0,1970,242,1,0, + 0,0,1971,1972,7,18,0,0,1972,1973,7,10,0,0,1973,244,1,0,0,0,1974, + 1975,7,18,0,0,1975,1976,7,10,0,0,1976,1977,7,8,0,0,1977,1978,7,23, + 0,0,1978,1979,7,7,0,0,1979,1980,7,7,0,0,1980,246,1,0,0,0,1981,1982, + 7,31,0,0,1982,1983,7,20,0,0,1983,1984,7,18,0,0,1984,1985,7,8,0,0, + 1985,248,1,0,0,0,1986,1987,7,7,0,0,1987,1988,7,11,0,0,1988,1989, + 7,26,0,0,1989,1990,7,17,0,0,1990,250,1,0,0,0,1991,1992,7,7,0,0,1992, + 1993,7,18,0,0,1993,1994,7,22,0,0,1994,1995,7,11,0,0,1995,252,1,0, + 0,0,1996,1997,7,8,0,0,1997,1998,7,6,0,0,1998,1999,7,17,0,0,1999, + 2000,7,23,0,0,2000,2001,7,14,0,0,2001,2002,7,6,0,0,2002,2003,7,7, + 0,0,2003,254,1,0,0,0,2004,2005,7,8,0,0,2005,2006,7,20,0,0,2006,2007, + 7,17,0,0,2007,2008,7,8,0,0,2008,2009,7,23,0,0,2009,2010,7,7,0,0, + 2010,2011,7,7,0,0,2011,256,1,0,0,0,2012,2013,7,20,0,0,2013,2014, + 7,23,0,0,2014,2015,7,17,0,0,2015,2016,7,11,0,0,2016,2017,7,14,0, + 0,2017,258,1,0,0,0,2018,2019,7,20,0,0,2019,2020,7,28,0,0,2020,2021, + 7,11,0,0,2021,2022,7,14,0,0,2022,260,1,0,0,0,2023,2024,7,20,0,0, + 2024,2025,7,28,0,0,2025,2026,7,11,0,0,2026,2027,7,14,0,0,2027,2028, + 7,7,0,0,2028,2029,7,6,0,0,2029,2030,7,25,0,0,2030,2031,7,10,0,0, + 2031,262,1,0,0,0,2032,2033,7,14,0,0,2033,2034,7,18,0,0,2034,2035, + 7,24,0,0,2035,2036,7,21,0,0,2036,2037,7,17,0,0,2037,264,1,0,0,0, + 2038,2039,7,10,0,0,2039,2040,7,18,0,0,2040,2041,7,16,0,0,2041,2042, + 7,18,0,0,2042,2043,7,7,0,0,2043,2044,7,6,0,0,2044,2045,7,14,0,0, + 2045,266,1,0,0,0,2046,2047,7,28,0,0,2047,2048,7,11,0,0,2048,2049, + 7,14,0,0,2049,2050,7,19,0,0,2050,2051,7,20,0,0,2051,2052,7,10,0, + 0,2052,2053,7,11,0,0,2053,268,1,0,0,0,2054,2055,7,6,0,0,2055,2056, + 7,19,0,0,2056,2057,7,20,0,0,2057,2058,7,14,0,0,2058,2059,7,17,0, + 0,2059,270,1,0,0,0,2060,2061,7,6,0,0,2061,2062,7,19,0,0,2062,2063, + 7,10,0,0,2063,2064,7,20,0,0,2064,2065,7,7,0,0,2065,2066,7,23,0,0, + 2066,2067,7,17,0,0,2067,2068,7,11,0,0,2068,272,1,0,0,0,2069,2070, + 7,6,0,0,2070,2071,7,15,0,0,2071,2072,7,15,0,0,2072,2073,7,11,0,0, + 2073,2074,7,10,0,0,2074,2075,7,10,0,0,2075,274,1,0,0,0,2076,2077, + 7,6,0,0,2077,2078,7,15,0,0,2078,2079,7,17,0,0,2079,2080,7,18,0,0, + 2080,2081,7,20,0,0,2081,2082,7,8,0,0,2082,276,1,0,0,0,2083,2084, + 7,6,0,0,2084,2085,7,13,0,0,2085,2086,7,13,0,0,2086,278,1,0,0,0,2087, + 2088,7,6,0,0,2088,2089,7,13,0,0,2089,2090,7,16,0,0,2090,2091,7,18, + 0,0,2091,2092,7,8,0,0,2092,280,1,0,0,0,2093,2094,7,6,0,0,2094,2095, + 7,26,0,0,2095,2096,7,17,0,0,2096,2097,7,11,0,0,2097,2098,7,14,0, + 0,2098,282,1,0,0,0,2099,2100,7,6,0,0,2100,2101,7,24,0,0,2101,2102, + 7,24,0,0,2102,2103,7,14,0,0,2103,2104,7,11,0,0,2104,2105,7,24,0, + 0,2105,2106,7,6,0,0,2106,2107,7,17,0,0,2107,2108,7,11,0,0,2108,284, + 1,0,0,0,2109,2110,7,6,0,0,2110,2111,7,7,0,0,2111,2112,7,10,0,0,2112, + 2113,7,20,0,0,2113,286,1,0,0,0,2114,2115,7,6,0,0,2115,2116,7,7,0, + 0,2116,2117,7,17,0,0,2117,2118,7,11,0,0,2118,2119,7,14,0,0,2119, + 288,1,0,0,0,2120,2121,7,6,0,0,2121,2122,7,7,0,0,2122,2123,7,30,0, + 0,2123,2124,7,6,0,0,2124,2125,7,9,0,0,2125,2126,7,10,0,0,2126,290, + 1,0,0,0,2127,2128,7,6,0,0,2128,2129,7,10,0,0,2129,2130,7,10,0,0, + 2130,2131,7,11,0,0,2131,2132,7,14,0,0,2132,2133,7,17,0,0,2133,2134, + 7,18,0,0,2134,2135,7,20,0,0,2135,2136,7,8,0,0,2136,292,1,0,0,0,2137, + 2138,7,6,0,0,2138,2139,7,10,0,0,2139,2140,7,10,0,0,2140,2141,7,18, + 0,0,2141,2142,7,24,0,0,2142,2143,7,8,0,0,2143,2144,7,16,0,0,2144, + 2145,7,11,0,0,2145,2146,7,8,0,0,2146,2147,7,17,0,0,2147,294,1,0, + 0,0,2148,2149,7,6,0,0,2149,2150,7,17,0,0,2150,296,1,0,0,0,2151,2152, + 7,6,0,0,2152,2153,7,17,0,0,2153,2154,7,17,0,0,2154,2155,7,14,0,0, + 2155,2156,7,18,0,0,2156,2157,7,19,0,0,2157,2158,7,23,0,0,2158,2159, + 7,17,0,0,2159,2160,7,11,0,0,2160,298,1,0,0,0,2161,2162,7,19,0,0, + 2162,2163,7,6,0,0,2163,2164,7,15,0,0,2164,2165,7,22,0,0,2165,2166, + 7,30,0,0,2166,2167,7,6,0,0,2167,2168,7,14,0,0,2168,2169,7,13,0,0, + 2169,300,1,0,0,0,2170,2171,7,19,0,0,2171,2172,7,11,0,0,2172,2173, + 7,26,0,0,2173,2174,7,20,0,0,2174,2175,7,14,0,0,2175,2176,7,11,0, + 0,2176,302,1,0,0,0,2177,2178,7,19,0,0,2178,2179,7,11,0,0,2179,2180, + 7,24,0,0,2180,2181,7,18,0,0,2181,2182,7,8,0,0,2182,304,1,0,0,0,2183, + 2184,7,19,0,0,2184,2185,7,9,0,0,2185,306,1,0,0,0,2186,2187,7,15, + 0,0,2187,2188,7,6,0,0,2188,2189,7,15,0,0,2189,2190,7,21,0,0,2190, + 2191,7,11,0,0,2191,308,1,0,0,0,2192,2193,7,15,0,0,2193,2194,7,6, + 0,0,2194,2195,7,7,0,0,2195,2196,7,7,0,0,2196,2197,7,11,0,0,2197, + 2198,7,13,0,0,2198,310,1,0,0,0,2199,2200,7,15,0,0,2200,2201,7,6, + 0,0,2201,2202,7,10,0,0,2202,2203,7,15,0,0,2203,2204,7,6,0,0,2204, + 2205,7,13,0,0,2205,2206,7,11,0,0,2206,312,1,0,0,0,2207,2208,7,15, + 0,0,2208,2209,7,6,0,0,2209,2210,7,10,0,0,2210,2211,7,15,0,0,2211, + 2212,7,6,0,0,2212,2213,7,13,0,0,2213,2214,7,11,0,0,2214,2215,7,13, + 0,0,2215,314,1,0,0,0,2216,2217,7,15,0,0,2217,2218,7,6,0,0,2218,2219, + 7,17,0,0,2219,2220,7,6,0,0,2220,2221,7,7,0,0,2221,2222,7,20,0,0, + 2222,2223,7,24,0,0,2223,316,1,0,0,0,2224,2225,7,15,0,0,2225,2226, + 7,21,0,0,2226,2227,7,6,0,0,2227,2228,7,18,0,0,2228,2229,7,8,0,0, + 2229,318,1,0,0,0,2230,2231,7,15,0,0,2231,2232,7,21,0,0,2232,2233, + 7,6,0,0,2233,2234,7,14,0,0,2234,2235,7,6,0,0,2235,2236,7,15,0,0, + 2236,2237,7,17,0,0,2237,2238,7,11,0,0,2238,2239,7,14,0,0,2239,2240, + 7,18,0,0,2240,2241,7,10,0,0,2241,2242,7,17,0,0,2242,2243,7,18,0, + 0,2243,2244,7,15,0,0,2244,2245,7,10,0,0,2245,320,1,0,0,0,2246,2247, + 7,15,0,0,2247,2248,7,21,0,0,2248,2249,7,11,0,0,2249,2250,7,15,0, + 0,2250,2251,7,22,0,0,2251,2252,7,25,0,0,2252,2253,7,20,0,0,2253, + 2254,7,18,0,0,2254,2255,7,8,0,0,2255,2256,7,17,0,0,2256,322,1,0, + 0,0,2257,2258,7,15,0,0,2258,2259,7,7,0,0,2259,2260,7,6,0,0,2260, + 2261,7,10,0,0,2261,2262,7,10,0,0,2262,324,1,0,0,0,2263,2264,7,15, + 0,0,2264,2265,7,7,0,0,2265,2266,7,20,0,0,2266,2267,7,10,0,0,2267, + 2268,7,11,0,0,2268,326,1,0,0,0,2269,2270,7,15,0,0,2270,2271,7,7, + 0,0,2271,2272,7,23,0,0,2272,2273,7,10,0,0,2273,2274,7,17,0,0,2274, + 2275,7,11,0,0,2275,2276,7,14,0,0,2276,328,1,0,0,0,2277,2278,7,15, + 0,0,2278,2279,7,20,0,0,2279,2280,7,16,0,0,2280,2281,7,16,0,0,2281, + 2282,7,11,0,0,2282,2283,7,8,0,0,2283,2284,7,17,0,0,2284,330,1,0, + 0,0,2285,2286,7,15,0,0,2286,2287,7,20,0,0,2287,2288,7,16,0,0,2288, + 2289,7,16,0,0,2289,2290,7,11,0,0,2290,2291,7,8,0,0,2291,2292,7,17, + 0,0,2292,2293,7,10,0,0,2293,332,1,0,0,0,2294,2295,7,15,0,0,2295, + 2296,7,20,0,0,2296,2297,7,16,0,0,2297,2298,7,16,0,0,2298,2299,7, + 18,0,0,2299,2300,7,17,0,0,2300,334,1,0,0,0,2301,2302,7,15,0,0,2302, + 2303,7,20,0,0,2303,2304,7,16,0,0,2304,2305,7,16,0,0,2305,2306,7, + 18,0,0,2306,2307,7,17,0,0,2307,2308,7,17,0,0,2308,2309,7,11,0,0, + 2309,2310,7,13,0,0,2310,336,1,0,0,0,2311,2312,7,15,0,0,2312,2313, + 7,20,0,0,2313,2314,7,8,0,0,2314,2315,7,26,0,0,2315,2316,7,18,0,0, + 2316,2317,7,24,0,0,2317,2318,7,23,0,0,2318,2319,7,14,0,0,2319,2320, + 7,6,0,0,2320,2321,7,17,0,0,2321,2322,7,18,0,0,2322,2323,7,20,0,0, + 2323,2324,7,8,0,0,2324,338,1,0,0,0,2325,2326,7,15,0,0,2326,2327, + 7,20,0,0,2327,2328,7,8,0,0,2328,2329,7,8,0,0,2329,2330,7,11,0,0, + 2330,2331,7,15,0,0,2331,2332,7,17,0,0,2332,2333,7,18,0,0,2333,2334, + 7,20,0,0,2334,2335,7,8,0,0,2335,340,1,0,0,0,2336,2337,7,15,0,0,2337, + 2338,7,20,0,0,2338,2339,7,8,0,0,2339,2340,7,10,0,0,2340,2341,7,17, + 0,0,2341,2342,7,14,0,0,2342,2343,7,6,0,0,2343,2344,7,18,0,0,2344, + 2345,7,8,0,0,2345,2346,7,17,0,0,2346,2347,7,10,0,0,2347,342,1,0, + 0,0,2348,2349,7,15,0,0,2349,2350,7,20,0,0,2350,2351,7,8,0,0,2351, + 2352,7,17,0,0,2352,2353,7,11,0,0,2353,2354,7,8,0,0,2354,2355,7,17, + 0,0,2355,344,1,0,0,0,2356,2357,7,15,0,0,2357,2358,7,20,0,0,2358, + 2359,7,8,0,0,2359,2360,7,17,0,0,2360,2361,7,18,0,0,2361,2362,7,8, + 0,0,2362,2363,7,23,0,0,2363,2364,7,11,0,0,2364,346,1,0,0,0,2365, + 2366,7,15,0,0,2366,2367,7,20,0,0,2367,2368,7,8,0,0,2368,2369,7,28, + 0,0,2369,2370,7,11,0,0,2370,2371,7,14,0,0,2371,2372,7,10,0,0,2372, + 2373,7,18,0,0,2373,2374,7,20,0,0,2374,2375,7,8,0,0,2375,348,1,0, + 0,0,2376,2377,7,15,0,0,2377,2378,7,20,0,0,2378,2379,7,25,0,0,2379, + 2380,7,9,0,0,2380,350,1,0,0,0,2381,2382,7,15,0,0,2382,2383,7,20, + 0,0,2383,2384,7,10,0,0,2384,2385,7,17,0,0,2385,352,1,0,0,0,2386, + 2387,7,15,0,0,2387,2388,7,10,0,0,2388,2389,7,28,0,0,2389,354,1,0, + 0,0,2390,2391,7,15,0,0,2391,2392,7,23,0,0,2392,2393,7,14,0,0,2393, + 2394,7,10,0,0,2394,2395,7,20,0,0,2395,2396,7,14,0,0,2396,356,1,0, + 0,0,2397,2398,7,15,0,0,2398,2399,7,9,0,0,2399,2400,7,15,0,0,2400, + 2401,7,7,0,0,2401,2402,7,11,0,0,2402,358,1,0,0,0,2403,2404,7,13, + 0,0,2404,2405,7,6,0,0,2405,2406,7,17,0,0,2406,2407,7,6,0,0,2407, + 360,1,0,0,0,2408,2409,7,13,0,0,2409,2410,7,6,0,0,2410,2411,7,17, + 0,0,2411,2412,7,6,0,0,2412,2413,7,19,0,0,2413,2414,7,6,0,0,2414, + 2415,7,10,0,0,2415,2416,7,11,0,0,2416,362,1,0,0,0,2417,2418,7,13, + 0,0,2418,2419,7,6,0,0,2419,2420,7,9,0,0,2420,364,1,0,0,0,2421,2422, + 7,13,0,0,2422,2423,7,11,0,0,2423,2424,7,6,0,0,2424,2425,7,7,0,0, + 2425,2426,7,7,0,0,2426,2427,7,20,0,0,2427,2428,7,15,0,0,2428,2429, + 7,6,0,0,2429,2430,7,17,0,0,2430,2431,7,11,0,0,2431,366,1,0,0,0,2432, + 2433,7,13,0,0,2433,2434,7,11,0,0,2434,2435,7,15,0,0,2435,2436,7, + 7,0,0,2436,2437,7,6,0,0,2437,2438,7,14,0,0,2438,2439,7,11,0,0,2439, + 368,1,0,0,0,2440,2441,7,13,0,0,2441,2442,7,11,0,0,2442,2443,7,26, + 0,0,2443,2444,7,6,0,0,2444,2445,7,23,0,0,2445,2446,7,7,0,0,2446, + 2447,7,17,0,0,2447,2448,7,10,0,0,2448,370,1,0,0,0,2449,2450,7,13, + 0,0,2450,2451,7,11,0,0,2451,2452,7,26,0,0,2452,2453,7,11,0,0,2453, + 2454,7,14,0,0,2454,2455,7,14,0,0,2455,2456,7,11,0,0,2456,2457,7, + 13,0,0,2457,372,1,0,0,0,2458,2459,7,13,0,0,2459,2460,7,11,0,0,2460, + 2461,7,26,0,0,2461,2462,7,18,0,0,2462,2463,7,8,0,0,2463,2464,7,11, + 0,0,2464,2465,7,14,0,0,2465,374,1,0,0,0,2466,2467,7,13,0,0,2467, + 2468,7,11,0,0,2468,2469,7,7,0,0,2469,2470,7,11,0,0,2470,2471,7,17, + 0,0,2471,2472,7,11,0,0,2472,376,1,0,0,0,2473,2474,7,13,0,0,2474, + 2475,7,11,0,0,2475,2476,7,7,0,0,2476,2477,7,18,0,0,2477,2478,7,16, + 0,0,2478,2479,7,18,0,0,2479,2480,7,17,0,0,2480,2481,7,11,0,0,2481, + 2482,7,14,0,0,2482,378,1,0,0,0,2483,2484,7,13,0,0,2484,2485,7,11, + 0,0,2485,2486,7,7,0,0,2486,2487,7,18,0,0,2487,2488,7,16,0,0,2488, + 2489,7,18,0,0,2489,2490,7,17,0,0,2490,2491,7,11,0,0,2491,2492,7, + 14,0,0,2492,2493,7,10,0,0,2493,380,1,0,0,0,2494,2495,7,13,0,0,2495, + 2496,7,18,0,0,2496,2497,7,15,0,0,2497,2498,7,17,0,0,2498,2499,7, + 18,0,0,2499,2500,7,20,0,0,2500,2501,7,8,0,0,2501,2502,7,6,0,0,2502, + 2503,7,14,0,0,2503,2504,7,9,0,0,2504,382,1,0,0,0,2505,2506,7,13, + 0,0,2506,2507,7,18,0,0,2507,2508,7,10,0,0,2508,2509,7,6,0,0,2509, + 2510,7,19,0,0,2510,2511,7,7,0,0,2511,2512,7,11,0,0,2512,384,1,0, + 0,0,2513,2514,7,13,0,0,2514,2515,7,18,0,0,2515,2516,7,10,0,0,2516, + 2517,7,15,0,0,2517,2518,7,6,0,0,2518,2519,7,14,0,0,2519,2520,7,13, + 0,0,2520,386,1,0,0,0,2521,2522,7,13,0,0,2522,2523,7,20,0,0,2523, + 2524,7,15,0,0,2524,2525,7,23,0,0,2525,2526,7,16,0,0,2526,2527,7, + 11,0,0,2527,2528,7,8,0,0,2528,2529,7,17,0,0,2529,388,1,0,0,0,2530, + 2531,7,13,0,0,2531,2532,7,20,0,0,2532,2533,7,16,0,0,2533,2534,7, + 6,0,0,2534,2535,7,18,0,0,2535,2536,7,8,0,0,2536,390,1,0,0,0,2537, + 2538,7,13,0,0,2538,2539,7,20,0,0,2539,2540,7,23,0,0,2540,2541,7, + 19,0,0,2541,2542,7,7,0,0,2542,2543,7,11,0,0,2543,392,1,0,0,0,2544, + 2545,7,13,0,0,2545,2546,7,14,0,0,2546,2547,7,20,0,0,2547,2548,7, + 25,0,0,2548,394,1,0,0,0,2549,2550,7,11,0,0,2550,2551,7,6,0,0,2551, + 2552,7,15,0,0,2552,2553,7,21,0,0,2553,396,1,0,0,0,2554,2555,7,11, + 0,0,2555,2556,7,8,0,0,2556,2557,7,6,0,0,2557,2558,7,19,0,0,2558, + 2559,7,7,0,0,2559,2560,7,11,0,0,2560,398,1,0,0,0,2561,2562,7,11, + 0,0,2562,2563,7,8,0,0,2563,2564,7,15,0,0,2564,2565,7,20,0,0,2565, + 2566,7,13,0,0,2566,2567,7,18,0,0,2567,2568,7,8,0,0,2568,2569,7,24, + 0,0,2569,400,1,0,0,0,2570,2571,7,11,0,0,2571,2572,7,8,0,0,2572,2573, + 7,15,0,0,2573,2574,7,14,0,0,2574,2575,7,9,0,0,2575,2576,7,25,0,0, + 2576,2577,7,17,0,0,2577,2578,7,11,0,0,2578,2579,7,13,0,0,2579,402, + 1,0,0,0,2580,2581,7,11,0,0,2581,2582,7,8,0,0,2582,2583,7,23,0,0, + 2583,2584,7,16,0,0,2584,404,1,0,0,0,2585,2586,7,11,0,0,2586,2587, + 7,10,0,0,2587,2588,7,15,0,0,2588,2589,7,6,0,0,2589,2590,7,25,0,0, + 2590,2591,7,11,0,0,2591,406,1,0,0,0,2592,2593,7,11,0,0,2593,2594, + 7,28,0,0,2594,2595,7,11,0,0,2595,2596,7,8,0,0,2596,2597,7,17,0,0, + 2597,408,1,0,0,0,2598,2599,7,11,0,0,2599,2600,7,27,0,0,2600,2601, + 7,15,0,0,2601,2602,7,7,0,0,2602,2603,7,23,0,0,2603,2604,7,13,0,0, + 2604,2605,7,11,0,0,2605,410,1,0,0,0,2606,2607,7,11,0,0,2607,2608, + 7,27,0,0,2608,2609,7,15,0,0,2609,2610,7,7,0,0,2610,2611,7,23,0,0, + 2611,2612,7,13,0,0,2612,2613,7,18,0,0,2613,2614,7,8,0,0,2614,2615, + 7,24,0,0,2615,412,1,0,0,0,2616,2617,7,11,0,0,2617,2618,7,27,0,0, + 2618,2619,7,15,0,0,2619,2620,7,7,0,0,2620,2621,7,23,0,0,2621,2622, + 7,10,0,0,2622,2623,7,18,0,0,2623,2624,7,28,0,0,2624,2625,7,11,0, + 0,2625,414,1,0,0,0,2626,2627,7,11,0,0,2627,2628,7,27,0,0,2628,2629, + 7,11,0,0,2629,2630,7,15,0,0,2630,2631,7,23,0,0,2631,2632,7,17,0, + 0,2632,2633,7,11,0,0,2633,416,1,0,0,0,2634,2635,7,11,0,0,2635,2636, + 7,27,0,0,2636,2637,7,25,0,0,2637,2638,7,7,0,0,2638,2639,7,6,0,0, + 2639,2640,7,18,0,0,2640,2641,7,8,0,0,2641,418,1,0,0,0,2642,2643, + 7,11,0,0,2643,2644,7,27,0,0,2644,2645,7,17,0,0,2645,2646,7,11,0, + 0,2646,2647,7,8,0,0,2647,2648,7,10,0,0,2648,2649,7,18,0,0,2649,2650, + 7,20,0,0,2650,2651,7,8,0,0,2651,420,1,0,0,0,2652,2653,7,11,0,0,2653, + 2654,7,27,0,0,2654,2655,7,17,0,0,2655,2656,7,11,0,0,2656,2657,7, + 14,0,0,2657,2658,7,8,0,0,2658,2659,7,6,0,0,2659,2660,7,7,0,0,2660, + 422,1,0,0,0,2661,2662,7,26,0,0,2662,2663,7,6,0,0,2663,2664,7,16, + 0,0,2664,2665,7,18,0,0,2665,2666,7,7,0,0,2666,2667,7,9,0,0,2667, + 424,1,0,0,0,2668,2669,7,26,0,0,2669,2670,7,18,0,0,2670,2671,7,14, + 0,0,2671,2672,7,10,0,0,2672,2673,7,17,0,0,2673,426,1,0,0,0,2674, + 2675,7,26,0,0,2675,2676,7,20,0,0,2676,2677,7,7,0,0,2677,2678,7,7, + 0,0,2678,2679,7,20,0,0,2679,2680,7,30,0,0,2680,2681,7,18,0,0,2681, + 2682,7,8,0,0,2682,2683,7,24,0,0,2683,428,1,0,0,0,2684,2685,7,26, + 0,0,2685,2686,7,20,0,0,2686,2687,7,14,0,0,2687,2688,7,15,0,0,2688, + 2689,7,11,0,0,2689,430,1,0,0,0,2690,2691,7,26,0,0,2691,2692,7,20, + 0,0,2692,2693,7,14,0,0,2693,2694,7,30,0,0,2694,2695,7,6,0,0,2695, + 2696,7,14,0,0,2696,2697,7,13,0,0,2697,432,1,0,0,0,2698,2699,7,26, + 0,0,2699,2700,7,23,0,0,2700,2701,7,8,0,0,2701,2702,7,15,0,0,2702, + 2703,7,17,0,0,2703,2704,7,18,0,0,2704,2705,7,20,0,0,2705,2706,7, + 8,0,0,2706,434,1,0,0,0,2707,2708,7,26,0,0,2708,2709,7,23,0,0,2709, + 2710,7,8,0,0,2710,2711,7,15,0,0,2711,2712,7,17,0,0,2712,2713,7,18, + 0,0,2713,2714,7,20,0,0,2714,2715,7,8,0,0,2715,2716,7,10,0,0,2716, + 436,1,0,0,0,2717,2718,7,24,0,0,2718,2719,7,7,0,0,2719,2720,7,20, + 0,0,2720,2721,7,19,0,0,2721,2722,7,6,0,0,2722,2723,7,7,0,0,2723, + 438,1,0,0,0,2724,2725,7,24,0,0,2725,2726,7,14,0,0,2726,2727,7,6, + 0,0,2727,2728,7,8,0,0,2728,2729,7,17,0,0,2729,2730,7,11,0,0,2730, + 2731,7,13,0,0,2731,440,1,0,0,0,2732,2733,7,21,0,0,2733,2734,7,6, + 0,0,2734,2735,7,8,0,0,2735,2736,7,13,0,0,2736,2737,7,7,0,0,2737, + 2738,7,11,0,0,2738,2739,7,14,0,0,2739,442,1,0,0,0,2740,2741,7,21, + 0,0,2741,2742,7,11,0,0,2742,2743,7,6,0,0,2743,2744,7,13,0,0,2744, + 2745,7,11,0,0,2745,2746,7,14,0,0,2746,444,1,0,0,0,2747,2748,7,21, + 0,0,2748,2749,7,20,0,0,2749,2750,7,7,0,0,2750,2751,7,13,0,0,2751, + 446,1,0,0,0,2752,2753,7,21,0,0,2753,2754,7,20,0,0,2754,2755,7,23, + 0,0,2755,2756,7,14,0,0,2756,448,1,0,0,0,2757,2758,7,18,0,0,2758, + 2759,7,13,0,0,2759,2760,7,11,0,0,2760,2761,7,8,0,0,2761,2762,7,17, + 0,0,2762,2763,7,18,0,0,2763,2764,7,17,0,0,2764,2765,7,9,0,0,2765, + 450,1,0,0,0,2766,2767,7,18,0,0,2767,2768,7,26,0,0,2768,452,1,0,0, + 0,2769,2770,7,18,0,0,2770,2771,7,16,0,0,2771,2772,7,16,0,0,2772, + 2773,7,11,0,0,2773,2774,7,13,0,0,2774,2775,7,18,0,0,2775,2776,7, + 6,0,0,2776,2777,7,17,0,0,2777,2778,7,11,0,0,2778,454,1,0,0,0,2779, + 2780,7,18,0,0,2780,2781,7,16,0,0,2781,2782,7,16,0,0,2782,2783,7, + 23,0,0,2783,2784,7,17,0,0,2784,2785,7,6,0,0,2785,2786,7,19,0,0,2786, + 2787,7,7,0,0,2787,2788,7,11,0,0,2788,456,1,0,0,0,2789,2790,7,18, + 0,0,2790,2791,7,16,0,0,2791,2792,7,25,0,0,2792,2793,7,7,0,0,2793, + 2794,7,18,0,0,2794,2795,7,15,0,0,2795,2796,7,18,0,0,2796,2797,7, + 17,0,0,2797,458,1,0,0,0,2798,2799,7,18,0,0,2799,2800,7,8,0,0,2800, + 2801,7,15,0,0,2801,2802,7,7,0,0,2802,2803,7,23,0,0,2803,2804,7,13, + 0,0,2804,2805,7,18,0,0,2805,2806,7,8,0,0,2806,2807,7,24,0,0,2807, + 460,1,0,0,0,2808,2809,7,18,0,0,2809,2810,7,8,0,0,2810,2811,7,15, + 0,0,2811,2812,7,14,0,0,2812,2813,7,11,0,0,2813,2814,7,16,0,0,2814, + 2815,7,11,0,0,2815,2816,7,8,0,0,2816,2817,7,17,0,0,2817,462,1,0, + 0,0,2818,2819,7,18,0,0,2819,2820,7,8,0,0,2820,2821,7,13,0,0,2821, + 2822,7,11,0,0,2822,2823,7,27,0,0,2823,464,1,0,0,0,2824,2825,7,18, + 0,0,2825,2826,7,8,0,0,2826,2827,7,13,0,0,2827,2828,7,11,0,0,2828, + 2829,7,27,0,0,2829,2830,7,11,0,0,2830,2831,7,10,0,0,2831,466,1,0, + 0,0,2832,2833,7,18,0,0,2833,2834,7,8,0,0,2834,2835,7,21,0,0,2835, + 2836,7,11,0,0,2836,2837,7,14,0,0,2837,2838,7,18,0,0,2838,2839,7, + 17,0,0,2839,468,1,0,0,0,2840,2841,7,8,0,0,2841,2842,7,20,0,0,2842, + 2843,7,18,0,0,2843,2844,7,8,0,0,2844,2845,7,21,0,0,2845,2846,7,11, + 0,0,2846,2847,7,14,0,0,2847,2848,7,18,0,0,2848,2849,7,17,0,0,2849, + 470,1,0,0,0,2850,2851,7,10,0,0,2851,2852,7,23,0,0,2852,2853,7,25, + 0,0,2853,2854,7,11,0,0,2854,2855,7,14,0,0,2855,2856,7,23,0,0,2856, + 2857,7,10,0,0,2857,2858,7,11,0,0,2858,2859,7,14,0,0,2859,472,1,0, + 0,0,2860,2861,7,8,0,0,2861,2862,7,20,0,0,2862,2863,7,10,0,0,2863, + 2864,7,23,0,0,2864,2865,7,25,0,0,2865,2866,7,11,0,0,2866,2867,7, + 14,0,0,2867,2868,7,23,0,0,2868,2869,7,10,0,0,2869,2870,7,11,0,0, + 2870,2871,7,14,0,0,2871,474,1,0,0,0,2872,2873,7,15,0,0,2873,2874, + 7,14,0,0,2874,2875,7,11,0,0,2875,2876,7,6,0,0,2876,2877,7,17,0,0, + 2877,2878,7,11,0,0,2878,2879,7,13,0,0,2879,2880,7,19,0,0,2880,476, + 1,0,0,0,2881,2882,7,8,0,0,2882,2883,7,20,0,0,2883,2884,7,15,0,0, + 2884,2885,7,14,0,0,2885,2886,7,11,0,0,2886,2887,7,6,0,0,2887,2888, + 7,17,0,0,2888,2889,7,11,0,0,2889,2890,7,13,0,0,2890,2891,7,19,0, + 0,2891,478,1,0,0,0,2892,2893,7,15,0,0,2893,2894,7,14,0,0,2894,2895, + 7,11,0,0,2895,2896,7,6,0,0,2896,2897,7,17,0,0,2897,2898,7,11,0,0, + 2898,2899,7,14,0,0,2899,2900,7,20,0,0,2900,2901,7,7,0,0,2901,2902, + 7,11,0,0,2902,480,1,0,0,0,2903,2904,7,8,0,0,2904,2905,7,20,0,0,2905, + 2906,7,15,0,0,2906,2907,7,14,0,0,2907,2908,7,11,0,0,2908,2909,7, + 6,0,0,2909,2910,7,17,0,0,2910,2911,7,11,0,0,2911,2912,7,14,0,0,2912, + 2913,7,20,0,0,2913,2914,7,7,0,0,2914,2915,7,11,0,0,2915,482,1,0, + 0,0,2916,2917,7,15,0,0,2917,2918,7,14,0,0,2918,2919,7,11,0,0,2919, + 2920,7,6,0,0,2920,2921,7,17,0,0,2921,2922,7,11,0,0,2922,2923,7,23, + 0,0,2923,2924,7,10,0,0,2924,2925,7,11,0,0,2925,2926,7,14,0,0,2926, + 484,1,0,0,0,2927,2928,7,8,0,0,2928,2929,7,20,0,0,2929,2930,7,15, + 0,0,2930,2931,7,14,0,0,2931,2932,7,11,0,0,2932,2933,7,6,0,0,2933, + 2934,7,17,0,0,2934,2935,7,11,0,0,2935,2936,7,23,0,0,2936,2937,7, + 10,0,0,2937,2938,7,11,0,0,2938,2939,7,14,0,0,2939,486,1,0,0,0,2940, + 2941,7,18,0,0,2941,2942,7,8,0,0,2942,2943,7,21,0,0,2943,2944,7,11, + 0,0,2944,2945,7,14,0,0,2945,2946,7,18,0,0,2946,2947,7,17,0,0,2947, + 2948,7,10,0,0,2948,488,1,0,0,0,2949,2950,7,18,0,0,2950,2951,7,8, + 0,0,2951,2952,7,7,0,0,2952,2953,7,18,0,0,2953,2954,7,8,0,0,2954, + 2955,7,11,0,0,2955,490,1,0,0,0,2956,2957,7,18,0,0,2957,2958,7,8, + 0,0,2958,2959,7,10,0,0,2959,2960,7,11,0,0,2960,2961,7,8,0,0,2961, + 2962,7,10,0,0,2962,2963,7,18,0,0,2963,2964,7,17,0,0,2964,2965,7, + 18,0,0,2965,2966,7,28,0,0,2966,2967,7,11,0,0,2967,492,1,0,0,0,2968, + 2969,7,18,0,0,2969,2970,7,8,0,0,2970,2971,7,10,0,0,2971,2972,7,11, + 0,0,2972,2973,7,14,0,0,2973,2974,7,17,0,0,2974,494,1,0,0,0,2975, + 2976,7,18,0,0,2976,2977,7,8,0,0,2977,2978,7,10,0,0,2978,2979,7,17, + 0,0,2979,2980,7,11,0,0,2980,2981,7,6,0,0,2981,2982,7,13,0,0,2982, + 496,1,0,0,0,2983,2984,7,18,0,0,2984,2985,7,8,0,0,2985,2986,7,28, + 0,0,2986,2987,7,20,0,0,2987,2988,7,22,0,0,2988,2989,7,11,0,0,2989, + 2990,7,14,0,0,2990,498,1,0,0,0,2991,2992,7,18,0,0,2992,2993,7,10, + 0,0,2993,2994,7,20,0,0,2994,2995,7,7,0,0,2995,2996,7,6,0,0,2996, + 2997,7,17,0,0,2997,2998,7,18,0,0,2998,2999,7,20,0,0,2999,3000,7, + 8,0,0,3000,500,1,0,0,0,3001,3002,7,22,0,0,3002,3003,7,11,0,0,3003, + 3004,7,9,0,0,3004,502,1,0,0,0,3005,3006,7,7,0,0,3006,3007,7,6,0, + 0,3007,3008,7,19,0,0,3008,3009,7,11,0,0,3009,3010,7,7,0,0,3010,504, + 1,0,0,0,3011,3012,7,7,0,0,3012,3013,7,6,0,0,3013,3014,7,8,0,0,3014, + 3015,7,24,0,0,3015,3016,7,23,0,0,3016,3017,7,6,0,0,3017,3018,7,24, + 0,0,3018,3019,7,11,0,0,3019,506,1,0,0,0,3020,3021,7,7,0,0,3021,3022, + 7,6,0,0,3022,3023,7,14,0,0,3023,3024,7,24,0,0,3024,3025,7,11,0,0, + 3025,508,1,0,0,0,3026,3027,7,7,0,0,3027,3028,7,6,0,0,3028,3029,7, + 10,0,0,3029,3030,7,17,0,0,3030,510,1,0,0,0,3031,3032,7,7,0,0,3032, + 3033,7,11,0,0,3033,3034,7,6,0,0,3034,3035,7,22,0,0,3035,3036,7,25, + 0,0,3036,3037,7,14,0,0,3037,3038,7,20,0,0,3038,3039,7,20,0,0,3039, + 3040,7,26,0,0,3040,512,1,0,0,0,3041,3042,7,7,0,0,3042,3043,7,11, + 0,0,3043,3044,7,28,0,0,3044,3045,7,11,0,0,3045,3046,7,7,0,0,3046, + 514,1,0,0,0,3047,3048,7,7,0,0,3048,3049,7,18,0,0,3049,3050,7,10, + 0,0,3050,3051,7,17,0,0,3051,3052,7,11,0,0,3052,3053,7,8,0,0,3053, + 516,1,0,0,0,3054,3055,7,7,0,0,3055,3056,7,20,0,0,3056,3057,7,6,0, + 0,3057,3058,7,13,0,0,3058,518,1,0,0,0,3059,3060,7,7,0,0,3060,3061, + 7,20,0,0,3061,3062,7,15,0,0,3062,3063,7,6,0,0,3063,3064,7,7,0,0, + 3064,520,1,0,0,0,3065,3066,7,7,0,0,3066,3067,7,20,0,0,3067,3068, + 7,15,0,0,3068,3069,7,6,0,0,3069,3070,7,17,0,0,3070,3071,7,18,0,0, + 3071,3072,7,20,0,0,3072,3073,7,8,0,0,3073,522,1,0,0,0,3074,3075, + 7,7,0,0,3075,3076,7,20,0,0,3076,3077,7,15,0,0,3077,3078,7,22,0,0, + 3078,524,1,0,0,0,3079,3080,7,16,0,0,3080,3081,7,6,0,0,3081,3082, + 7,25,0,0,3082,3083,7,25,0,0,3083,3084,7,18,0,0,3084,3085,7,8,0,0, + 3085,3086,7,24,0,0,3086,526,1,0,0,0,3087,3088,7,16,0,0,3088,3089, + 7,6,0,0,3089,3090,7,17,0,0,3090,3091,7,15,0,0,3091,3092,7,21,0,0, + 3092,528,1,0,0,0,3093,3094,7,16,0,0,3094,3095,7,6,0,0,3095,3096, + 7,17,0,0,3096,3097,7,11,0,0,3097,3098,7,14,0,0,3098,3099,7,18,0, + 0,3099,3100,7,6,0,0,3100,3101,7,7,0,0,3101,3102,7,18,0,0,3102,3103, + 7,12,0,0,3103,3104,7,11,0,0,3104,3105,7,13,0,0,3105,530,1,0,0,0, + 3106,3107,7,16,0,0,3107,3108,7,6,0,0,3108,3109,7,27,0,0,3109,3110, + 7,28,0,0,3110,3111,7,6,0,0,3111,3112,7,7,0,0,3112,3113,7,23,0,0, + 3113,3114,7,11,0,0,3114,532,1,0,0,0,3115,3116,7,16,0,0,3116,3117, + 7,18,0,0,3117,3118,7,8,0,0,3118,3119,7,23,0,0,3119,3120,7,17,0,0, + 3120,3121,7,11,0,0,3121,534,1,0,0,0,3122,3123,7,16,0,0,3123,3124, + 7,18,0,0,3124,3125,7,8,0,0,3125,3126,7,28,0,0,3126,3127,7,6,0,0, + 3127,3128,7,7,0,0,3128,3129,7,23,0,0,3129,3130,7,11,0,0,3130,536, + 1,0,0,0,3131,3132,7,16,0,0,3132,3133,7,20,0,0,3133,3134,7,13,0,0, + 3134,3135,7,11,0,0,3135,538,1,0,0,0,3136,3137,7,16,0,0,3137,3138, + 7,20,0,0,3138,3139,7,8,0,0,3139,3140,7,17,0,0,3140,3141,7,21,0,0, + 3141,540,1,0,0,0,3142,3143,7,16,0,0,3143,3144,7,20,0,0,3144,3145, + 7,28,0,0,3145,3146,7,11,0,0,3146,542,1,0,0,0,3147,3148,7,8,0,0,3148, + 3149,7,6,0,0,3149,3150,7,16,0,0,3150,3151,7,11,0,0,3151,544,1,0, + 0,0,3152,3153,7,8,0,0,3153,3154,7,6,0,0,3154,3155,7,16,0,0,3155, + 3156,7,11,0,0,3156,3157,7,10,0,0,3157,546,1,0,0,0,3158,3159,7,8, + 0,0,3159,3160,7,11,0,0,3160,3161,7,27,0,0,3161,3162,7,17,0,0,3162, + 548,1,0,0,0,3163,3164,7,8,0,0,3164,3165,7,20,0,0,3165,550,1,0,0, + 0,3166,3167,7,8,0,0,3167,3168,7,20,0,0,3168,3169,7,17,0,0,3169,3170, + 7,21,0,0,3170,3171,7,18,0,0,3171,3172,7,8,0,0,3172,3173,7,24,0,0, + 3173,552,1,0,0,0,3174,3175,7,8,0,0,3175,3176,7,20,0,0,3176,3177, + 7,17,0,0,3177,3178,7,18,0,0,3178,3179,7,26,0,0,3179,3180,7,9,0,0, + 3180,554,1,0,0,0,3181,3182,7,8,0,0,3182,3183,7,20,0,0,3183,3184, + 7,30,0,0,3184,3185,7,6,0,0,3185,3186,7,18,0,0,3186,3187,7,17,0,0, + 3187,556,1,0,0,0,3188,3189,7,8,0,0,3189,3190,7,23,0,0,3190,3191, + 7,7,0,0,3191,3192,7,7,0,0,3192,3193,7,10,0,0,3193,558,1,0,0,0,3194, + 3195,7,20,0,0,3195,3196,7,19,0,0,3196,3197,7,31,0,0,3197,3198,7, + 11,0,0,3198,3199,7,15,0,0,3199,3200,7,17,0,0,3200,560,1,0,0,0,3201, + 3202,7,20,0,0,3202,3203,7,26,0,0,3203,562,1,0,0,0,3204,3205,7,20, + 0,0,3205,3206,7,26,0,0,3206,3207,7,26,0,0,3207,564,1,0,0,0,3208, + 3209,7,20,0,0,3209,3210,7,18,0,0,3210,3211,7,13,0,0,3211,3212,7, + 10,0,0,3212,566,1,0,0,0,3213,3214,7,20,0,0,3214,3215,7,25,0,0,3215, + 3216,7,11,0,0,3216,3217,7,14,0,0,3217,3218,7,6,0,0,3218,3219,7,17, + 0,0,3219,3220,7,20,0,0,3220,3221,7,14,0,0,3221,568,1,0,0,0,3222, + 3223,7,20,0,0,3223,3224,7,25,0,0,3224,3225,7,17,0,0,3225,3226,7, + 18,0,0,3226,3227,7,20,0,0,3227,3228,7,8,0,0,3228,570,1,0,0,0,3229, + 3230,7,20,0,0,3230,3231,7,25,0,0,3231,3232,7,17,0,0,3232,3233,7, + 18,0,0,3233,3234,7,20,0,0,3234,3235,7,8,0,0,3235,3236,7,10,0,0,3236, + 572,1,0,0,0,3237,3238,7,20,0,0,3238,3239,7,30,0,0,3239,3240,7,8, + 0,0,3240,3241,7,11,0,0,3241,3242,7,13,0,0,3242,574,1,0,0,0,3243, + 3244,7,20,0,0,3244,3245,7,30,0,0,3245,3246,7,8,0,0,3246,3247,7,11, + 0,0,3247,3248,7,14,0,0,3248,576,1,0,0,0,3249,3250,7,25,0,0,3250, + 3251,7,6,0,0,3251,3252,7,14,0,0,3252,3253,7,10,0,0,3253,3254,7,11, + 0,0,3254,3255,7,14,0,0,3255,578,1,0,0,0,3256,3257,7,25,0,0,3257, + 3258,7,6,0,0,3258,3259,7,14,0,0,3259,3260,7,17,0,0,3260,3261,7,18, + 0,0,3261,3262,7,6,0,0,3262,3263,7,7,0,0,3263,580,1,0,0,0,3264,3265, + 7,25,0,0,3265,3266,7,6,0,0,3266,3267,7,14,0,0,3267,3268,7,17,0,0, + 3268,3269,7,18,0,0,3269,3270,7,17,0,0,3270,3271,7,18,0,0,3271,3272, + 7,20,0,0,3272,3273,7,8,0,0,3273,582,1,0,0,0,3274,3275,7,25,0,0,3275, + 3276,7,6,0,0,3276,3277,7,10,0,0,3277,3278,7,10,0,0,3278,3279,7,18, + 0,0,3279,3280,7,8,0,0,3280,3281,7,24,0,0,3281,584,1,0,0,0,3282,3283, + 7,25,0,0,3283,3284,7,6,0,0,3284,3285,7,10,0,0,3285,3286,7,10,0,0, + 3286,3287,7,30,0,0,3287,3288,7,20,0,0,3288,3289,7,14,0,0,3289,3290, + 7,13,0,0,3290,586,1,0,0,0,3291,3292,7,25,0,0,3292,3293,7,7,0,0,3293, + 3294,7,6,0,0,3294,3295,7,8,0,0,3295,3296,7,10,0,0,3296,588,1,0,0, + 0,3297,3298,7,25,0,0,3298,3299,7,14,0,0,3299,3300,7,11,0,0,3300, + 3301,7,15,0,0,3301,3302,7,11,0,0,3302,3303,7,13,0,0,3303,3304,7, + 18,0,0,3304,3305,7,8,0,0,3305,3306,7,24,0,0,3306,590,1,0,0,0,3307, + 3308,7,25,0,0,3308,3309,7,14,0,0,3309,3310,7,11,0,0,3310,3311,7, + 25,0,0,3311,3312,7,6,0,0,3312,3313,7,14,0,0,3313,3314,7,11,0,0,3314, + 592,1,0,0,0,3315,3316,7,25,0,0,3316,3317,7,14,0,0,3317,3318,7,11, + 0,0,3318,3319,7,25,0,0,3319,3320,7,6,0,0,3320,3321,7,14,0,0,3321, + 3322,7,11,0,0,3322,3323,7,13,0,0,3323,594,1,0,0,0,3324,3325,7,25, + 0,0,3325,3326,7,14,0,0,3326,3327,7,11,0,0,3327,3328,7,10,0,0,3328, + 3329,7,11,0,0,3329,3330,7,14,0,0,3330,3331,7,28,0,0,3331,3332,7, + 11,0,0,3332,596,1,0,0,0,3333,3334,7,25,0,0,3334,3335,7,14,0,0,3335, + 3336,7,18,0,0,3336,3337,7,20,0,0,3337,3338,7,14,0,0,3338,598,1,0, + 0,0,3339,3340,7,25,0,0,3340,3341,7,14,0,0,3341,3342,7,18,0,0,3342, + 3343,7,28,0,0,3343,3344,7,18,0,0,3344,3345,7,7,0,0,3345,3346,7,11, + 0,0,3346,3347,7,24,0,0,3347,3348,7,11,0,0,3348,3349,7,10,0,0,3349, + 600,1,0,0,0,3350,3351,7,25,0,0,3351,3352,7,14,0,0,3352,3353,7,20, + 0,0,3353,3354,7,15,0,0,3354,3355,7,11,0,0,3355,3356,7,13,0,0,3356, + 3357,7,23,0,0,3357,3358,7,14,0,0,3358,3359,7,6,0,0,3359,3360,7,7, + 0,0,3360,602,1,0,0,0,3361,3362,7,25,0,0,3362,3363,7,14,0,0,3363, + 3364,7,20,0,0,3364,3365,7,15,0,0,3365,3366,7,11,0,0,3366,3367,7, + 13,0,0,3367,3368,7,23,0,0,3368,3369,7,14,0,0,3369,3370,7,11,0,0, + 3370,604,1,0,0,0,3371,3372,7,25,0,0,3372,3373,7,14,0,0,3373,3374, + 7,20,0,0,3374,3375,7,24,0,0,3375,3376,7,14,0,0,3376,3377,7,6,0,0, + 3377,3378,7,16,0,0,3378,606,1,0,0,0,3379,3380,7,29,0,0,3380,3381, + 7,23,0,0,3381,3382,7,20,0,0,3382,3383,7,17,0,0,3383,3384,7,11,0, + 0,3384,608,1,0,0,0,3385,3386,7,14,0,0,3386,3387,7,6,0,0,3387,3388, + 7,8,0,0,3388,3389,7,24,0,0,3389,3390,7,11,0,0,3390,610,1,0,0,0,3391, + 3392,7,14,0,0,3392,3393,7,11,0,0,3393,3394,7,6,0,0,3394,3395,7,13, + 0,0,3395,612,1,0,0,0,3396,3397,7,14,0,0,3397,3398,7,11,0,0,3398, + 3399,7,6,0,0,3399,3400,7,10,0,0,3400,3401,7,10,0,0,3401,3402,7,18, + 0,0,3402,3403,7,24,0,0,3403,3404,7,8,0,0,3404,614,1,0,0,0,3405,3406, + 7,14,0,0,3406,3407,7,11,0,0,3407,3408,7,15,0,0,3408,3409,7,21,0, + 0,3409,3410,7,11,0,0,3410,3411,7,15,0,0,3411,3412,7,22,0,0,3412, + 616,1,0,0,0,3413,3414,7,14,0,0,3414,3415,7,11,0,0,3415,3416,7,15, + 0,0,3416,3417,7,23,0,0,3417,3418,7,14,0,0,3418,3419,7,10,0,0,3419, + 3420,7,18,0,0,3420,3421,7,28,0,0,3421,3422,7,11,0,0,3422,618,1,0, + 0,0,3423,3424,7,14,0,0,3424,3425,7,11,0,0,3425,3426,7,26,0,0,3426, + 620,1,0,0,0,3427,3428,7,14,0,0,3428,3429,7,11,0,0,3429,3430,7,26, + 0,0,3430,3431,7,14,0,0,3431,3432,7,11,0,0,3432,3433,7,10,0,0,3433, + 3434,7,21,0,0,3434,622,1,0,0,0,3435,3436,7,14,0,0,3436,3437,7,11, + 0,0,3437,3438,7,18,0,0,3438,3439,7,8,0,0,3439,3440,7,13,0,0,3440, + 3441,7,11,0,0,3441,3442,7,27,0,0,3442,624,1,0,0,0,3443,3444,7,14, + 0,0,3444,3445,7,11,0,0,3445,3446,7,7,0,0,3446,3447,7,6,0,0,3447, + 3448,7,17,0,0,3448,3449,7,18,0,0,3449,3450,7,28,0,0,3450,3451,7, + 11,0,0,3451,626,1,0,0,0,3452,3453,7,14,0,0,3453,3454,7,11,0,0,3454, + 3455,7,7,0,0,3455,3456,7,11,0,0,3456,3457,7,6,0,0,3457,3458,7,10, + 0,0,3458,3459,7,11,0,0,3459,628,1,0,0,0,3460,3461,7,14,0,0,3461, + 3462,7,11,0,0,3462,3463,7,8,0,0,3463,3464,7,6,0,0,3464,3465,7,16, + 0,0,3465,3466,7,11,0,0,3466,630,1,0,0,0,3467,3468,7,14,0,0,3468, + 3469,7,11,0,0,3469,3470,7,25,0,0,3470,3471,7,11,0,0,3471,3472,7, + 6,0,0,3472,3473,7,17,0,0,3473,3474,7,6,0,0,3474,3475,7,19,0,0,3475, + 3476,7,7,0,0,3476,3477,7,11,0,0,3477,632,1,0,0,0,3478,3479,7,14, + 0,0,3479,3480,7,11,0,0,3480,3481,7,25,0,0,3481,3482,7,7,0,0,3482, + 3483,7,6,0,0,3483,3484,7,15,0,0,3484,3485,7,11,0,0,3485,634,1,0, + 0,0,3486,3487,7,14,0,0,3487,3488,7,11,0,0,3488,3489,7,25,0,0,3489, + 3490,7,7,0,0,3490,3491,7,18,0,0,3491,3492,7,15,0,0,3492,3493,7,6, + 0,0,3493,636,1,0,0,0,3494,3495,7,14,0,0,3495,3496,7,11,0,0,3496, + 3497,7,10,0,0,3497,3498,7,11,0,0,3498,3499,7,17,0,0,3499,638,1,0, + 0,0,3500,3501,7,14,0,0,3501,3502,7,11,0,0,3502,3503,7,10,0,0,3503, + 3504,7,17,0,0,3504,3505,7,6,0,0,3505,3506,7,14,0,0,3506,3507,7,17, + 0,0,3507,640,1,0,0,0,3508,3509,7,14,0,0,3509,3510,7,11,0,0,3510, + 3511,7,10,0,0,3511,3512,7,17,0,0,3512,3513,7,14,0,0,3513,3514,7, + 18,0,0,3514,3515,7,15,0,0,3515,3516,7,17,0,0,3516,642,1,0,0,0,3517, + 3518,7,14,0,0,3518,3519,7,11,0,0,3519,3520,7,17,0,0,3520,3521,7, + 23,0,0,3521,3522,7,14,0,0,3522,3523,7,8,0,0,3523,3524,7,10,0,0,3524, + 644,1,0,0,0,3525,3526,7,14,0,0,3526,3527,7,11,0,0,3527,3528,7,28, + 0,0,3528,3529,7,20,0,0,3529,3530,7,22,0,0,3530,3531,7,11,0,0,3531, + 646,1,0,0,0,3532,3533,7,14,0,0,3533,3534,7,20,0,0,3534,3535,7,7, + 0,0,3535,3536,7,11,0,0,3536,648,1,0,0,0,3537,3538,7,14,0,0,3538, + 3539,7,20,0,0,3539,3540,7,7,0,0,3540,3541,7,7,0,0,3541,3542,7,19, + 0,0,3542,3543,7,6,0,0,3543,3544,7,15,0,0,3544,3545,7,22,0,0,3545, + 650,1,0,0,0,3546,3547,7,14,0,0,3547,3548,7,20,0,0,3548,3549,7,30, + 0,0,3549,3550,7,10,0,0,3550,652,1,0,0,0,3551,3552,7,14,0,0,3552, + 3553,7,23,0,0,3553,3554,7,7,0,0,3554,3555,7,11,0,0,3555,654,1,0, + 0,0,3556,3557,7,10,0,0,3557,3558,7,6,0,0,3558,3559,7,28,0,0,3559, + 3560,7,11,0,0,3560,3561,7,25,0,0,3561,3562,7,20,0,0,3562,3563,7, + 18,0,0,3563,3564,7,8,0,0,3564,3565,7,17,0,0,3565,656,1,0,0,0,3566, + 3567,7,10,0,0,3567,3568,7,15,0,0,3568,3569,7,21,0,0,3569,3570,7, + 11,0,0,3570,3571,7,16,0,0,3571,3572,7,6,0,0,3572,658,1,0,0,0,3573, + 3574,7,10,0,0,3574,3575,7,15,0,0,3575,3576,7,14,0,0,3576,3577,7, + 20,0,0,3577,3578,7,7,0,0,3578,3579,7,7,0,0,3579,660,1,0,0,0,3580, + 3581,7,10,0,0,3581,3582,7,11,0,0,3582,3583,7,6,0,0,3583,3584,7,14, + 0,0,3584,3585,7,15,0,0,3585,3586,7,21,0,0,3586,662,1,0,0,0,3587, + 3588,7,10,0,0,3588,3589,7,11,0,0,3589,3590,7,15,0,0,3590,3591,7, + 20,0,0,3591,3592,7,8,0,0,3592,3593,7,13,0,0,3593,664,1,0,0,0,3594, + 3595,7,10,0,0,3595,3596,7,11,0,0,3596,3597,7,15,0,0,3597,3598,7, + 23,0,0,3598,3599,7,14,0,0,3599,3600,7,18,0,0,3600,3601,7,17,0,0, + 3601,3602,7,9,0,0,3602,666,1,0,0,0,3603,3604,7,10,0,0,3604,3605, + 7,11,0,0,3605,3606,7,29,0,0,3606,3607,7,23,0,0,3607,3608,7,11,0, + 0,3608,3609,7,8,0,0,3609,3610,7,15,0,0,3610,3611,7,11,0,0,3611,668, + 1,0,0,0,3612,3613,7,10,0,0,3613,3614,7,11,0,0,3614,3615,7,29,0,0, + 3615,3616,7,23,0,0,3616,3617,7,11,0,0,3617,3618,7,8,0,0,3618,3619, + 7,15,0,0,3619,3620,7,11,0,0,3620,3621,7,10,0,0,3621,670,1,0,0,0, + 3622,3623,7,10,0,0,3623,3624,7,11,0,0,3624,3625,7,14,0,0,3625,3626, + 7,18,0,0,3626,3627,7,6,0,0,3627,3628,7,7,0,0,3628,3629,7,18,0,0, + 3629,3630,7,12,0,0,3630,3631,7,6,0,0,3631,3632,7,19,0,0,3632,3633, + 7,7,0,0,3633,3634,7,11,0,0,3634,672,1,0,0,0,3635,3636,7,10,0,0,3636, + 3637,7,11,0,0,3637,3638,7,14,0,0,3638,3639,7,28,0,0,3639,3640,7, + 11,0,0,3640,3641,7,14,0,0,3641,674,1,0,0,0,3642,3643,7,10,0,0,3643, + 3644,7,11,0,0,3644,3645,7,10,0,0,3645,3646,7,10,0,0,3646,3647,7, + 18,0,0,3647,3648,7,20,0,0,3648,3649,7,8,0,0,3649,676,1,0,0,0,3650, + 3651,7,10,0,0,3651,3652,7,11,0,0,3652,3653,7,17,0,0,3653,678,1,0, + 0,0,3654,3655,7,10,0,0,3655,3656,7,21,0,0,3656,3657,7,6,0,0,3657, + 3658,7,14,0,0,3658,3659,7,11,0,0,3659,680,1,0,0,0,3660,3661,7,10, + 0,0,3661,3662,7,21,0,0,3662,3663,7,20,0,0,3663,3664,7,30,0,0,3664, + 682,1,0,0,0,3665,3666,7,10,0,0,3666,3667,7,18,0,0,3667,3668,7,16, + 0,0,3668,3669,7,25,0,0,3669,3670,7,7,0,0,3670,3671,7,11,0,0,3671, + 684,1,0,0,0,3672,3673,7,10,0,0,3673,3674,7,8,0,0,3674,3675,7,6,0, + 0,3675,3676,7,25,0,0,3676,3677,7,10,0,0,3677,3678,7,21,0,0,3678, + 3679,7,20,0,0,3679,3680,7,17,0,0,3680,686,1,0,0,0,3681,3682,7,10, + 0,0,3682,3683,7,17,0,0,3683,3684,7,6,0,0,3684,3685,7,19,0,0,3685, + 3686,7,7,0,0,3686,3687,7,11,0,0,3687,688,1,0,0,0,3688,3689,7,10, + 0,0,3689,3690,7,17,0,0,3690,3691,7,6,0,0,3691,3692,7,8,0,0,3692, + 3693,7,13,0,0,3693,3694,7,6,0,0,3694,3695,7,7,0,0,3695,3696,7,20, + 0,0,3696,3697,7,8,0,0,3697,3698,7,11,0,0,3698,690,1,0,0,0,3699,3700, + 7,10,0,0,3700,3701,7,17,0,0,3701,3702,7,6,0,0,3702,3703,7,14,0,0, + 3703,3704,7,17,0,0,3704,692,1,0,0,0,3705,3706,7,10,0,0,3706,3707, + 7,17,0,0,3707,3708,7,6,0,0,3708,3709,7,17,0,0,3709,3710,7,11,0,0, + 3710,3711,7,16,0,0,3711,3712,7,11,0,0,3712,3713,7,8,0,0,3713,3714, + 7,17,0,0,3714,694,1,0,0,0,3715,3716,7,10,0,0,3716,3717,7,17,0,0, + 3717,3718,7,6,0,0,3718,3719,7,17,0,0,3719,3720,7,18,0,0,3720,3721, + 7,10,0,0,3721,3722,7,17,0,0,3722,3723,7,18,0,0,3723,3724,7,15,0, + 0,3724,3725,7,10,0,0,3725,696,1,0,0,0,3726,3727,7,10,0,0,3727,3728, + 7,17,0,0,3728,3729,7,13,0,0,3729,3730,7,18,0,0,3730,3731,7,8,0,0, + 3731,698,1,0,0,0,3732,3733,7,10,0,0,3733,3734,7,17,0,0,3734,3735, + 7,13,0,0,3735,3736,7,20,0,0,3736,3737,7,23,0,0,3737,3738,7,17,0, + 0,3738,700,1,0,0,0,3739,3740,7,10,0,0,3740,3741,7,17,0,0,3741,3742, + 7,20,0,0,3742,3743,7,14,0,0,3743,3744,7,6,0,0,3744,3745,7,24,0,0, + 3745,3746,7,11,0,0,3746,702,1,0,0,0,3747,3748,7,10,0,0,3748,3749, + 7,17,0,0,3749,3750,7,14,0,0,3750,3751,7,18,0,0,3751,3752,7,15,0, + 0,3752,3753,7,17,0,0,3753,704,1,0,0,0,3754,3755,7,10,0,0,3755,3756, + 7,17,0,0,3756,3757,7,14,0,0,3757,3758,7,18,0,0,3758,3759,7,25,0, + 0,3759,706,1,0,0,0,3760,3761,7,10,0,0,3761,3762,7,9,0,0,3762,3763, + 7,10,0,0,3763,3764,7,18,0,0,3764,3765,7,13,0,0,3765,708,1,0,0,0, + 3766,3767,7,10,0,0,3767,3768,7,9,0,0,3768,3769,7,10,0,0,3769,3770, + 7,17,0,0,3770,3771,7,11,0,0,3771,3772,7,16,0,0,3772,710,1,0,0,0, + 3773,3774,7,17,0,0,3774,3775,7,6,0,0,3775,3776,7,19,0,0,3776,3777, + 7,7,0,0,3777,3778,7,11,0,0,3778,3779,7,10,0,0,3779,712,1,0,0,0,3780, + 3781,7,17,0,0,3781,3782,7,6,0,0,3782,3783,7,19,0,0,3783,3784,7,7, + 0,0,3784,3785,7,11,0,0,3785,3786,7,10,0,0,3786,3787,7,25,0,0,3787, + 3788,7,6,0,0,3788,3789,7,15,0,0,3789,3790,7,11,0,0,3790,714,1,0, + 0,0,3791,3792,7,17,0,0,3792,3793,7,11,0,0,3793,3794,7,16,0,0,3794, + 3795,7,25,0,0,3795,716,1,0,0,0,3796,3797,7,17,0,0,3797,3798,7,11, + 0,0,3798,3799,7,16,0,0,3799,3800,7,25,0,0,3800,3801,7,7,0,0,3801, + 3802,7,6,0,0,3802,3803,7,17,0,0,3803,3804,7,11,0,0,3804,718,1,0, + 0,0,3805,3806,7,17,0,0,3806,3807,7,11,0,0,3807,3808,7,16,0,0,3808, + 3809,7,25,0,0,3809,3810,7,20,0,0,3810,3811,7,14,0,0,3811,3812,7, + 6,0,0,3812,3813,7,14,0,0,3813,3814,7,9,0,0,3814,720,1,0,0,0,3815, + 3816,7,17,0,0,3816,3817,7,11,0,0,3817,3818,7,27,0,0,3818,3819,7, + 17,0,0,3819,722,1,0,0,0,3820,3821,7,17,0,0,3821,3822,7,14,0,0,3822, + 3823,7,6,0,0,3823,3824,7,8,0,0,3824,3825,7,10,0,0,3825,3826,7,6, + 0,0,3826,3827,7,15,0,0,3827,3828,7,17,0,0,3828,3829,7,18,0,0,3829, + 3830,7,20,0,0,3830,3831,7,8,0,0,3831,724,1,0,0,0,3832,3833,7,17, + 0,0,3833,3834,7,14,0,0,3834,3835,7,18,0,0,3835,3836,7,24,0,0,3836, + 3837,7,24,0,0,3837,3838,7,11,0,0,3838,3839,7,14,0,0,3839,726,1,0, + 0,0,3840,3841,7,17,0,0,3841,3842,7,14,0,0,3842,3843,7,23,0,0,3843, + 3844,7,8,0,0,3844,3845,7,15,0,0,3845,3846,7,6,0,0,3846,3847,7,17, + 0,0,3847,3848,7,11,0,0,3848,728,1,0,0,0,3849,3850,7,17,0,0,3850, + 3851,7,14,0,0,3851,3852,7,23,0,0,3852,3853,7,10,0,0,3853,3854,7, + 17,0,0,3854,3855,7,11,0,0,3855,3856,7,13,0,0,3856,730,1,0,0,0,3857, + 3858,7,17,0,0,3858,3859,7,9,0,0,3859,3860,7,25,0,0,3860,3861,7,11, + 0,0,3861,732,1,0,0,0,3862,3863,7,17,0,0,3863,3864,7,9,0,0,3864,3865, + 7,25,0,0,3865,3866,7,11,0,0,3866,3867,7,10,0,0,3867,734,1,0,0,0, + 3868,3869,7,23,0,0,3869,3870,7,8,0,0,3870,3871,7,19,0,0,3871,3872, + 7,20,0,0,3872,3873,7,23,0,0,3873,3874,7,8,0,0,3874,3875,7,13,0,0, + 3875,3876,7,11,0,0,3876,3877,7,13,0,0,3877,736,1,0,0,0,3878,3879, + 7,23,0,0,3879,3880,7,8,0,0,3880,3881,7,15,0,0,3881,3882,7,20,0,0, + 3882,3883,7,16,0,0,3883,3884,7,16,0,0,3884,3885,7,18,0,0,3885,3886, + 7,17,0,0,3886,3887,7,17,0,0,3887,3888,7,11,0,0,3888,3889,7,13,0, + 0,3889,738,1,0,0,0,3890,3891,7,23,0,0,3891,3892,7,8,0,0,3892,3893, + 7,11,0,0,3893,3894,7,8,0,0,3894,3895,7,15,0,0,3895,3896,7,14,0,0, + 3896,3897,7,9,0,0,3897,3898,7,25,0,0,3898,3899,7,17,0,0,3899,3900, + 7,11,0,0,3900,3901,7,13,0,0,3901,740,1,0,0,0,3902,3903,7,23,0,0, + 3903,3904,7,8,0,0,3904,3905,7,22,0,0,3905,3906,7,8,0,0,3906,3907, + 7,20,0,0,3907,3908,7,30,0,0,3908,3909,7,8,0,0,3909,742,1,0,0,0,3910, + 3911,7,23,0,0,3911,3912,7,8,0,0,3912,3913,7,7,0,0,3913,3914,7,18, + 0,0,3914,3915,7,10,0,0,3915,3916,7,17,0,0,3916,3917,7,11,0,0,3917, + 3918,7,8,0,0,3918,744,1,0,0,0,3919,3920,7,23,0,0,3920,3921,7,8,0, + 0,3921,3922,7,7,0,0,3922,3923,7,20,0,0,3923,3924,7,24,0,0,3924,3925, + 7,24,0,0,3925,3926,7,11,0,0,3926,3927,7,13,0,0,3927,746,1,0,0,0, + 3928,3929,7,23,0,0,3929,3930,7,8,0,0,3930,3931,7,17,0,0,3931,3932, + 7,18,0,0,3932,3933,7,7,0,0,3933,748,1,0,0,0,3934,3935,7,23,0,0,3935, + 3936,7,25,0,0,3936,3937,7,13,0,0,3937,3938,7,6,0,0,3938,3939,7,17, + 0,0,3939,3940,7,11,0,0,3940,750,1,0,0,0,3941,3942,7,28,0,0,3942, + 3943,7,6,0,0,3943,3944,7,15,0,0,3944,3945,7,23,0,0,3945,3946,7,23, + 0,0,3946,3947,7,16,0,0,3947,752,1,0,0,0,3948,3949,7,28,0,0,3949, + 3950,7,6,0,0,3950,3951,7,7,0,0,3951,3952,7,18,0,0,3952,3953,7,13, + 0,0,3953,754,1,0,0,0,3954,3955,7,28,0,0,3955,3956,7,6,0,0,3956,3957, + 7,7,0,0,3957,3958,7,18,0,0,3958,3959,7,13,0,0,3959,3960,7,6,0,0, + 3960,3961,7,17,0,0,3961,3962,7,11,0,0,3962,756,1,0,0,0,3963,3964, + 7,28,0,0,3964,3965,7,6,0,0,3965,3966,7,7,0,0,3966,3967,7,18,0,0, + 3967,3968,7,13,0,0,3968,3969,7,6,0,0,3969,3970,7,17,0,0,3970,3971, + 7,20,0,0,3971,3972,7,14,0,0,3972,758,1,0,0,0,3973,3974,7,28,0,0, + 3974,3975,7,6,0,0,3975,3976,7,14,0,0,3976,3977,7,9,0,0,3977,3978, + 7,18,0,0,3978,3979,7,8,0,0,3979,3980,7,24,0,0,3980,760,1,0,0,0,3981, + 3982,7,28,0,0,3982,3983,7,11,0,0,3983,3984,7,14,0,0,3984,3985,7, + 10,0,0,3985,3986,7,18,0,0,3986,3987,7,20,0,0,3987,3988,7,8,0,0,3988, + 762,1,0,0,0,3989,3990,7,28,0,0,3990,3991,7,18,0,0,3991,3992,7,11, + 0,0,3992,3993,7,30,0,0,3993,764,1,0,0,0,3994,3995,7,28,0,0,3995, + 3996,7,20,0,0,3996,3997,7,7,0,0,3997,3998,7,6,0,0,3998,3999,7,17, + 0,0,3999,4000,7,18,0,0,4000,4001,7,7,0,0,4001,4002,7,11,0,0,4002, + 766,1,0,0,0,4003,4004,7,30,0,0,4004,4005,7,21,0,0,4005,4006,7,18, + 0,0,4006,4007,7,17,0,0,4007,4008,7,11,0,0,4008,4009,7,10,0,0,4009, + 4010,7,25,0,0,4010,4011,7,6,0,0,4011,4012,7,15,0,0,4012,4013,7,11, + 0,0,4013,768,1,0,0,0,4014,4015,7,30,0,0,4015,4016,7,18,0,0,4016, + 4017,7,17,0,0,4017,4018,7,21,0,0,4018,4019,7,20,0,0,4019,4020,7, + 23,0,0,4020,4021,7,17,0,0,4021,770,1,0,0,0,4022,4023,7,30,0,0,4023, + 4024,7,20,0,0,4024,4025,7,14,0,0,4025,4026,7,22,0,0,4026,772,1,0, + 0,0,4027,4028,7,30,0,0,4028,4029,7,14,0,0,4029,4030,7,6,0,0,4030, + 4031,7,25,0,0,4031,4032,7,25,0,0,4032,4033,7,11,0,0,4033,4034,7, + 14,0,0,4034,774,1,0,0,0,4035,4036,7,30,0,0,4036,4037,7,14,0,0,4037, + 4038,7,18,0,0,4038,4039,7,17,0,0,4039,4040,7,11,0,0,4040,776,1,0, + 0,0,4041,4042,7,27,0,0,4042,4043,7,16,0,0,4043,4044,7,7,0,0,4044, + 778,1,0,0,0,4045,4046,7,9,0,0,4046,4047,7,11,0,0,4047,4048,7,6,0, + 0,4048,4049,7,14,0,0,4049,780,1,0,0,0,4050,4051,7,9,0,0,4051,4052, + 7,11,0,0,4052,4053,7,10,0,0,4053,782,1,0,0,0,4054,4055,7,12,0,0, + 4055,4056,7,20,0,0,4056,4057,7,8,0,0,4057,4058,7,11,0,0,4058,784, + 1,0,0,0,4059,4060,7,19,0,0,4060,4061,7,11,0,0,4061,4062,7,17,0,0, + 4062,4063,7,30,0,0,4063,4064,7,11,0,0,4064,4065,7,11,0,0,4065,4066, + 7,8,0,0,4066,786,1,0,0,0,4067,4068,7,19,0,0,4068,4069,7,18,0,0,4069, + 4070,7,24,0,0,4070,4071,7,18,0,0,4071,4072,7,8,0,0,4072,4073,7,17, + 0,0,4073,788,1,0,0,0,4074,4075,7,19,0,0,4075,4076,7,18,0,0,4076, + 4077,7,17,0,0,4077,790,1,0,0,0,4078,4079,7,19,0,0,4079,4080,7,20, + 0,0,4080,4081,7,20,0,0,4081,4082,7,7,0,0,4082,4083,7,11,0,0,4083, + 4084,7,6,0,0,4084,4085,7,8,0,0,4085,792,1,0,0,0,4086,4087,7,15,0, + 0,4087,4088,7,21,0,0,4088,4089,7,6,0,0,4089,4090,7,14,0,0,4090,794, + 1,0,0,0,4091,4092,7,15,0,0,4092,4093,7,21,0,0,4093,4094,7,6,0,0, + 4094,4095,7,14,0,0,4095,4096,7,6,0,0,4096,4097,7,15,0,0,4097,4098, + 7,17,0,0,4098,4099,7,11,0,0,4099,4100,7,14,0,0,4100,796,1,0,0,0, + 4101,4102,7,15,0,0,4102,4103,7,20,0,0,4103,4104,7,6,0,0,4104,4105, + 7,7,0,0,4105,4106,7,11,0,0,4106,4107,7,10,0,0,4107,4108,7,15,0,0, + 4108,4109,7,11,0,0,4109,798,1,0,0,0,4110,4111,7,13,0,0,4111,4112, + 7,11,0,0,4112,4113,7,15,0,0,4113,800,1,0,0,0,4114,4115,7,13,0,0, + 4115,4116,7,11,0,0,4116,4117,7,15,0,0,4117,4118,7,18,0,0,4118,4119, + 7,16,0,0,4119,4120,7,6,0,0,4120,4121,7,7,0,0,4121,802,1,0,0,0,4122, + 4123,7,11,0,0,4123,4124,7,27,0,0,4124,4125,7,18,0,0,4125,4126,7, + 10,0,0,4126,4127,7,17,0,0,4127,4128,7,10,0,0,4128,804,1,0,0,0,4129, + 4130,7,11,0,0,4130,4131,7,27,0,0,4131,4132,7,17,0,0,4132,4133,7, + 14,0,0,4133,4134,7,6,0,0,4134,4135,7,15,0,0,4135,4136,7,17,0,0,4136, + 806,1,0,0,0,4137,4138,7,26,0,0,4138,4139,7,7,0,0,4139,4140,7,20, + 0,0,4140,4141,7,6,0,0,4141,4142,7,17,0,0,4142,808,1,0,0,0,4143,4144, + 7,24,0,0,4144,4145,7,14,0,0,4145,4146,7,11,0,0,4146,4147,7,6,0,0, + 4147,4148,7,17,0,0,4148,4149,7,11,0,0,4149,4150,7,10,0,0,4150,4151, + 7,17,0,0,4151,810,1,0,0,0,4152,4153,7,18,0,0,4153,4154,7,8,0,0,4154, + 4155,7,20,0,0,4155,4156,7,23,0,0,4156,4157,7,17,0,0,4157,812,1,0, + 0,0,4158,4159,7,18,0,0,4159,4160,7,8,0,0,4160,4161,7,17,0,0,4161, + 814,1,0,0,0,4162,4163,7,18,0,0,4163,4164,7,8,0,0,4164,4165,7,17, + 0,0,4165,4166,7,11,0,0,4166,4167,7,24,0,0,4167,4168,7,11,0,0,4168, + 4169,7,14,0,0,4169,816,1,0,0,0,4170,4171,7,18,0,0,4171,4172,7,8, + 0,0,4172,4173,7,17,0,0,4173,4174,7,11,0,0,4174,4175,7,14,0,0,4175, + 4176,7,28,0,0,4176,4177,7,6,0,0,4177,4178,7,7,0,0,4178,818,1,0,0, + 0,4179,4180,7,7,0,0,4180,4181,7,11,0,0,4181,4182,7,6,0,0,4182,4183, + 7,10,0,0,4183,4184,7,17,0,0,4184,820,1,0,0,0,4185,4186,7,8,0,0,4186, + 4187,7,6,0,0,4187,4188,7,17,0,0,4188,4189,7,18,0,0,4189,4190,7,20, + 0,0,4190,4191,7,8,0,0,4191,4192,7,6,0,0,4192,4193,7,7,0,0,4193,822, + 1,0,0,0,4194,4195,7,8,0,0,4195,4196,7,15,0,0,4196,4197,7,21,0,0, + 4197,4198,7,6,0,0,4198,4199,7,14,0,0,4199,824,1,0,0,0,4200,4201, + 7,8,0,0,4201,4202,7,20,0,0,4202,4203,7,8,0,0,4203,4204,7,11,0,0, + 4204,826,1,0,0,0,4205,4206,7,8,0,0,4206,4207,7,23,0,0,4207,4208, + 7,7,0,0,4208,4209,7,7,0,0,4209,4210,7,18,0,0,4210,4211,7,26,0,0, + 4211,828,1,0,0,0,4212,4213,7,8,0,0,4213,4214,7,23,0,0,4214,4215, + 7,16,0,0,4215,4216,7,11,0,0,4216,4217,7,14,0,0,4217,4218,7,18,0, + 0,4218,4219,7,15,0,0,4219,830,1,0,0,0,4220,4221,7,20,0,0,4221,4222, + 7,28,0,0,4222,4223,7,11,0,0,4223,4224,7,14,0,0,4224,4225,7,7,0,0, + 4225,4226,7,6,0,0,4226,4227,7,9,0,0,4227,832,1,0,0,0,4228,4229,7, + 25,0,0,4229,4230,7,20,0,0,4230,4231,7,10,0,0,4231,4232,7,18,0,0, + 4232,4233,7,17,0,0,4233,4234,7,18,0,0,4234,4235,7,20,0,0,4235,4236, + 7,8,0,0,4236,834,1,0,0,0,4237,4238,7,25,0,0,4238,4239,7,14,0,0,4239, + 4240,7,11,0,0,4240,4241,7,15,0,0,4241,4242,7,18,0,0,4242,4243,7, + 10,0,0,4243,4244,7,18,0,0,4244,4245,7,20,0,0,4245,4246,7,8,0,0,4246, + 836,1,0,0,0,4247,4248,7,14,0,0,4248,4249,7,11,0,0,4249,4250,7,6, + 0,0,4250,4251,7,7,0,0,4251,838,1,0,0,0,4252,4253,7,14,0,0,4253,4254, + 7,20,0,0,4254,4255,7,30,0,0,4255,840,1,0,0,0,4256,4257,7,10,0,0, + 4257,4258,7,11,0,0,4258,4259,7,17,0,0,4259,4260,7,20,0,0,4260,4261, + 7,26,0,0,4261,842,1,0,0,0,4262,4263,7,10,0,0,4263,4264,7,16,0,0, + 4264,4265,7,6,0,0,4265,4266,7,7,0,0,4266,4267,7,7,0,0,4267,4268, + 7,18,0,0,4268,4269,7,8,0,0,4269,4270,7,17,0,0,4270,844,1,0,0,0,4271, + 4272,7,10,0,0,4272,4273,7,23,0,0,4273,4274,7,19,0,0,4274,4275,7, + 10,0,0,4275,4276,7,17,0,0,4276,4277,7,14,0,0,4277,4278,7,18,0,0, + 4278,4279,7,8,0,0,4279,4280,7,24,0,0,4280,846,1,0,0,0,4281,4282, + 7,17,0,0,4282,4283,7,18,0,0,4283,4284,7,16,0,0,4284,4285,7,11,0, + 0,4285,848,1,0,0,0,4286,4287,7,17,0,0,4287,4288,7,18,0,0,4288,4289, + 7,16,0,0,4289,4290,7,11,0,0,4290,4291,7,10,0,0,4291,4292,7,17,0, + 0,4292,4293,7,6,0,0,4293,4294,7,16,0,0,4294,4295,7,25,0,0,4295,850, + 1,0,0,0,4296,4297,7,17,0,0,4297,4298,7,14,0,0,4298,4299,7,11,0,0, + 4299,4300,7,6,0,0,4300,4301,7,17,0,0,4301,852,1,0,0,0,4302,4303, + 7,17,0,0,4303,4304,7,14,0,0,4304,4305,7,18,0,0,4305,4306,7,16,0, + 0,4306,854,1,0,0,0,4307,4308,7,28,0,0,4308,4309,7,6,0,0,4309,4310, + 7,7,0,0,4310,4311,7,23,0,0,4311,4312,7,11,0,0,4312,4313,7,10,0,0, + 4313,856,1,0,0,0,4314,4315,7,28,0,0,4315,4316,7,6,0,0,4316,4317, + 7,14,0,0,4317,4318,7,15,0,0,4318,4319,7,21,0,0,4319,4320,7,6,0,0, + 4320,4321,7,14,0,0,4321,858,1,0,0,0,4322,4323,7,27,0,0,4323,4324, + 7,16,0,0,4324,4325,7,7,0,0,4325,4326,7,6,0,0,4326,4327,7,17,0,0, + 4327,4328,7,17,0,0,4328,4329,7,14,0,0,4329,4330,7,18,0,0,4330,4331, + 7,19,0,0,4331,4332,7,23,0,0,4332,4333,7,17,0,0,4333,4334,7,11,0, + 0,4334,4335,7,10,0,0,4335,860,1,0,0,0,4336,4337,7,27,0,0,4337,4338, + 7,16,0,0,4338,4339,7,7,0,0,4339,4340,7,15,0,0,4340,4341,7,20,0,0, + 4341,4342,7,8,0,0,4342,4343,7,15,0,0,4343,4344,7,6,0,0,4344,4345, + 7,17,0,0,4345,862,1,0,0,0,4346,4347,7,27,0,0,4347,4348,7,16,0,0, + 4348,4349,7,7,0,0,4349,4350,7,11,0,0,4350,4351,7,7,0,0,4351,4352, + 7,11,0,0,4352,4353,7,16,0,0,4353,4354,7,11,0,0,4354,4355,7,8,0,0, + 4355,4356,7,17,0,0,4356,864,1,0,0,0,4357,4358,7,27,0,0,4358,4359, + 7,16,0,0,4359,4360,7,7,0,0,4360,4361,7,11,0,0,4361,4362,7,27,0,0, + 4362,4363,7,18,0,0,4363,4364,7,10,0,0,4364,4365,7,17,0,0,4365,4366, + 7,10,0,0,4366,866,1,0,0,0,4367,4368,7,27,0,0,4368,4369,7,16,0,0, + 4369,4370,7,7,0,0,4370,4371,7,26,0,0,4371,4372,7,20,0,0,4372,4373, + 7,14,0,0,4373,4374,7,11,0,0,4374,4375,7,10,0,0,4375,4376,7,17,0, + 0,4376,868,1,0,0,0,4377,4378,7,27,0,0,4378,4379,7,16,0,0,4379,4380, + 7,7,0,0,4380,4381,7,25,0,0,4381,4382,7,6,0,0,4382,4383,7,14,0,0, + 4383,4384,7,10,0,0,4384,4385,7,11,0,0,4385,870,1,0,0,0,4386,4387, + 7,27,0,0,4387,4388,7,16,0,0,4388,4389,7,7,0,0,4389,4390,7,25,0,0, + 4390,4391,7,18,0,0,4391,872,1,0,0,0,4392,4393,7,27,0,0,4393,4394, + 7,16,0,0,4394,4395,7,7,0,0,4395,4396,7,14,0,0,4396,4397,7,20,0,0, + 4397,4398,7,20,0,0,4398,4399,7,17,0,0,4399,874,1,0,0,0,4400,4401, + 7,27,0,0,4401,4402,7,16,0,0,4402,4403,7,7,0,0,4403,4404,7,10,0,0, + 4404,4405,7,11,0,0,4405,4406,7,14,0,0,4406,4407,7,18,0,0,4407,4408, + 7,6,0,0,4408,4409,7,7,0,0,4409,4410,7,18,0,0,4410,4411,7,12,0,0, + 4411,4412,7,11,0,0,4412,876,1,0,0,0,4413,4414,7,15,0,0,4414,4415, + 7,6,0,0,4415,4416,7,7,0,0,4416,4417,7,7,0,0,4417,878,1,0,0,0,4418, + 4419,7,15,0,0,4419,4420,7,23,0,0,4420,4421,7,14,0,0,4421,4422,7, + 14,0,0,4422,4423,7,11,0,0,4423,4424,7,8,0,0,4424,4425,7,17,0,0,4425, + 880,1,0,0,0,4426,4427,7,6,0,0,4427,4428,7,17,0,0,4428,4429,7,17, + 0,0,4429,4430,7,6,0,0,4430,4431,7,15,0,0,4431,4432,7,21,0,0,4432, + 882,1,0,0,0,4433,4434,7,13,0,0,4434,4435,7,11,0,0,4435,4436,7,17, + 0,0,4436,4437,7,6,0,0,4437,4438,7,15,0,0,4438,4439,7,21,0,0,4439, + 884,1,0,0,0,4440,4441,7,11,0,0,4441,4442,7,27,0,0,4442,4443,7,25, + 0,0,4443,4444,7,14,0,0,4444,4445,7,11,0,0,4445,4446,7,10,0,0,4446, + 4447,7,10,0,0,4447,4448,7,18,0,0,4448,4449,7,20,0,0,4449,4450,7, + 8,0,0,4450,886,1,0,0,0,4451,4452,7,24,0,0,4452,4453,7,11,0,0,4453, + 4454,7,8,0,0,4454,4455,7,11,0,0,4455,4456,7,14,0,0,4456,4457,7,6, + 0,0,4457,4458,7,17,0,0,4458,4459,7,11,0,0,4459,4460,7,13,0,0,4460, + 888,1,0,0,0,4461,4462,7,7,0,0,4462,4463,7,20,0,0,4463,4464,7,24, + 0,0,4464,4465,7,24,0,0,4465,4466,7,11,0,0,4466,4467,7,13,0,0,4467, + 890,1,0,0,0,4468,4469,7,10,0,0,4469,4470,7,17,0,0,4470,4471,7,20, + 0,0,4471,4472,7,14,0,0,4472,4473,7,11,0,0,4473,4474,7,13,0,0,4474, + 892,1,0,0,0,4475,4476,7,18,0,0,4476,4477,7,8,0,0,4477,4478,7,15, + 0,0,4478,4479,7,7,0,0,4479,4480,7,23,0,0,4480,4481,7,13,0,0,4481, + 4482,7,11,0,0,4482,894,1,0,0,0,4483,4484,7,14,0,0,4484,4485,7,20, + 0,0,4485,4486,7,23,0,0,4486,4487,7,17,0,0,4487,4488,7,18,0,0,4488, + 4489,7,8,0,0,4489,4490,7,11,0,0,4490,896,1,0,0,0,4491,4492,7,17, + 0,0,4492,4493,7,14,0,0,4493,4494,7,6,0,0,4494,4495,7,8,0,0,4495, + 4496,7,10,0,0,4496,4497,7,26,0,0,4497,4498,7,20,0,0,4498,4499,7, + 14,0,0,4499,4500,7,16,0,0,4500,898,1,0,0,0,4501,4502,7,18,0,0,4502, + 4503,7,16,0,0,4503,4504,7,25,0,0,4504,4505,7,20,0,0,4505,4506,7, + 14,0,0,4506,4507,7,17,0,0,4507,900,1,0,0,0,4508,4509,7,25,0,0,4509, + 4510,7,20,0,0,4510,4511,7,7,0,0,4511,4512,7,18,0,0,4512,4513,7,15, + 0,0,4513,4514,7,9,0,0,4514,902,1,0,0,0,4515,4516,7,16,0,0,4516,4517, + 7,11,0,0,4517,4518,7,17,0,0,4518,4519,7,21,0,0,4519,4520,7,20,0, + 0,4520,4521,7,13,0,0,4521,904,1,0,0,0,4522,4523,7,14,0,0,4523,4524, + 7,11,0,0,4524,4525,7,26,0,0,4525,4526,7,11,0,0,4526,4527,7,14,0, + 0,4527,4528,7,11,0,0,4528,4529,7,8,0,0,4529,4530,7,15,0,0,4530,4531, + 7,18,0,0,4531,4532,7,8,0,0,4532,4533,7,24,0,0,4533,906,1,0,0,0,4534, + 4535,7,8,0,0,4535,4536,7,11,0,0,4536,4537,7,30,0,0,4537,908,1,0, + 0,0,4538,4539,7,20,0,0,4539,4540,7,7,0,0,4540,4541,7,13,0,0,4541, + 910,1,0,0,0,4542,4543,7,28,0,0,4543,4544,7,6,0,0,4544,4545,7,7,0, + 0,4545,4546,7,23,0,0,4546,4547,7,11,0,0,4547,912,1,0,0,0,4548,4549, + 7,10,0,0,4549,4550,7,23,0,0,4550,4551,7,19,0,0,4551,4552,7,10,0, + 0,4552,4553,7,15,0,0,4553,4554,7,14,0,0,4554,4555,7,18,0,0,4555, + 4556,7,25,0,0,4556,4557,7,17,0,0,4557,4558,7,18,0,0,4558,4559,7, + 20,0,0,4559,4560,7,8,0,0,4560,914,1,0,0,0,4561,4562,7,25,0,0,4562, + 4563,7,23,0,0,4563,4564,7,19,0,0,4564,4565,7,7,0,0,4565,4566,7,18, + 0,0,4566,4567,7,15,0,0,4567,4568,7,6,0,0,4568,4569,7,17,0,0,4569, + 4570,7,18,0,0,4570,4571,7,20,0,0,4571,4572,7,8,0,0,4572,916,1,0, + 0,0,4573,4574,7,20,0,0,4574,4575,7,23,0,0,4575,4576,7,17,0,0,4576, + 918,1,0,0,0,4577,4578,7,11,0,0,4578,4579,7,8,0,0,4579,4580,7,13, + 0,0,4580,920,1,0,0,0,4581,4582,7,14,0,0,4582,4583,7,20,0,0,4583, + 4584,7,23,0,0,4584,4585,7,17,0,0,4585,4586,7,18,0,0,4586,4587,7, + 8,0,0,4587,4588,7,11,0,0,4588,4589,7,10,0,0,4589,922,1,0,0,0,4590, + 4591,7,10,0,0,4591,4592,7,15,0,0,4592,4593,7,21,0,0,4593,4594,7, + 11,0,0,4594,4595,7,16,0,0,4595,4596,7,6,0,0,4596,4597,7,10,0,0,4597, + 924,1,0,0,0,4598,4599,7,25,0,0,4599,4600,7,14,0,0,4600,4601,7,20, + 0,0,4601,4602,7,15,0,0,4602,4603,7,11,0,0,4603,4604,7,13,0,0,4604, + 4605,7,23,0,0,4605,4606,7,14,0,0,4606,4607,7,11,0,0,4607,4608,7, + 10,0,0,4608,926,1,0,0,0,4609,4610,7,18,0,0,4610,4611,7,8,0,0,4611, + 4612,7,25,0,0,4612,4613,7,23,0,0,4613,4614,7,17,0,0,4614,928,1,0, + 0,0,4615,4616,7,10,0,0,4616,4617,7,23,0,0,4617,4618,7,25,0,0,4618, + 4619,7,25,0,0,4619,4620,7,20,0,0,4620,4621,7,14,0,0,4621,4622,7, + 17,0,0,4622,930,1,0,0,0,4623,4624,7,25,0,0,4624,4625,7,6,0,0,4625, + 4626,7,14,0,0,4626,4627,7,6,0,0,4627,4628,7,7,0,0,4628,4629,7,7, + 0,0,4629,4630,7,11,0,0,4630,4631,7,7,0,0,4631,932,1,0,0,0,4632,4633, + 7,10,0,0,4633,4634,7,29,0,0,4634,4635,7,7,0,0,4635,934,1,0,0,0,4636, + 4637,7,13,0,0,4637,4638,7,11,0,0,4638,4639,7,25,0,0,4639,4640,7, + 11,0,0,4640,4641,7,8,0,0,4641,4642,7,13,0,0,4642,4643,7,10,0,0,4643, + 936,1,0,0,0,4644,4645,7,20,0,0,4645,4646,7,28,0,0,4646,4647,7,11, + 0,0,4647,4648,7,14,0,0,4648,4649,7,14,0,0,4649,4650,7,18,0,0,4650, + 4651,7,13,0,0,4651,4652,7,18,0,0,4652,4653,7,8,0,0,4653,4654,7,24, + 0,0,4654,938,1,0,0,0,4655,4656,7,15,0,0,4656,4657,7,20,0,0,4657, + 4658,7,8,0,0,4658,4659,7,26,0,0,4659,4660,7,7,0,0,4660,4661,7,18, + 0,0,4661,4662,7,15,0,0,4662,4663,7,17,0,0,4663,940,1,0,0,0,4664, + 4665,7,10,0,0,4665,4666,7,22,0,0,4666,4667,7,18,0,0,4667,4668,7, + 25,0,0,4668,942,1,0,0,0,4669,4670,7,7,0,0,4670,4671,7,20,0,0,4671, + 4672,7,15,0,0,4672,4673,7,22,0,0,4673,4674,7,11,0,0,4674,4675,7, + 13,0,0,4675,944,1,0,0,0,4676,4677,7,17,0,0,4677,4678,7,18,0,0,4678, + 4679,7,11,0,0,4679,4680,7,10,0,0,4680,946,1,0,0,0,4681,4682,7,14, + 0,0,4682,4683,7,20,0,0,4683,4684,7,7,0,0,4684,4685,7,7,0,0,4685, + 4686,7,23,0,0,4686,4687,7,25,0,0,4687,948,1,0,0,0,4688,4689,7,15, + 0,0,4689,4690,7,23,0,0,4690,4691,7,19,0,0,4691,4692,7,11,0,0,4692, + 950,1,0,0,0,4693,4694,7,24,0,0,4694,4695,7,14,0,0,4695,4696,7,20, + 0,0,4696,4697,7,23,0,0,4697,4698,7,25,0,0,4698,4699,7,18,0,0,4699, + 4700,7,8,0,0,4700,4701,7,24,0,0,4701,952,1,0,0,0,4702,4703,7,10, + 0,0,4703,4704,7,11,0,0,4704,4705,7,17,0,0,4705,4706,7,10,0,0,4706, + 954,1,0,0,0,4707,4708,7,17,0,0,4708,4709,7,6,0,0,4709,4710,7,19, + 0,0,4710,4711,7,7,0,0,4711,4712,7,11,0,0,4712,4713,7,10,0,0,4713, + 4714,7,6,0,0,4714,4715,7,16,0,0,4715,4716,7,25,0,0,4716,4717,7,7, + 0,0,4717,4718,7,11,0,0,4718,956,1,0,0,0,4719,4720,7,20,0,0,4720, + 4721,7,14,0,0,4721,4722,7,13,0,0,4722,4723,7,18,0,0,4723,4724,7, + 8,0,0,4724,4725,7,6,0,0,4725,4726,7,7,0,0,4726,4727,7,18,0,0,4727, + 4728,7,17,0,0,4728,4729,7,9,0,0,4729,958,1,0,0,0,4730,4731,7,27, + 0,0,4731,4732,7,16,0,0,4732,4733,7,7,0,0,4733,4734,7,17,0,0,4734, + 4735,7,6,0,0,4735,4736,7,19,0,0,4736,4737,7,7,0,0,4737,4738,7,11, + 0,0,4738,960,1,0,0,0,4739,4740,7,15,0,0,4740,4741,7,20,0,0,4741, + 4742,7,7,0,0,4742,4743,7,23,0,0,4743,4744,7,16,0,0,4744,4745,7,8, + 0,0,4745,4746,7,10,0,0,4746,962,1,0,0,0,4747,4748,7,27,0,0,4748, + 4749,7,16,0,0,4749,4750,7,7,0,0,4750,4751,7,8,0,0,4751,4752,7,6, + 0,0,4752,4753,7,16,0,0,4753,4754,7,11,0,0,4754,4755,7,10,0,0,4755, + 4756,7,25,0,0,4756,4757,7,6,0,0,4757,4758,7,15,0,0,4758,4759,7,11, + 0,0,4759,4760,7,10,0,0,4760,964,1,0,0,0,4761,4762,7,14,0,0,4762, + 4763,7,20,0,0,4763,4764,7,30,0,0,4764,4765,7,17,0,0,4765,4766,7, + 9,0,0,4766,4767,7,25,0,0,4767,4768,7,11,0,0,4768,966,1,0,0,0,4769, + 4770,7,8,0,0,4770,4771,7,20,0,0,4771,4772,7,14,0,0,4772,4773,7,16, + 0,0,4773,4774,7,6,0,0,4774,4775,7,7,0,0,4775,4776,7,18,0,0,4776, + 4777,7,12,0,0,4777,4778,7,11,0,0,4778,4779,7,13,0,0,4779,968,1,0, + 0,0,4780,4781,7,30,0,0,4781,4782,7,18,0,0,4782,4783,7,17,0,0,4783, + 4784,7,21,0,0,4784,4785,7,18,0,0,4785,4786,7,8,0,0,4786,970,1,0, + 0,0,4787,4788,7,26,0,0,4788,4789,7,18,0,0,4789,4790,7,7,0,0,4790, + 4791,7,17,0,0,4791,4792,7,11,0,0,4792,4793,7,14,0,0,4793,972,1,0, + 0,0,4794,4795,7,24,0,0,4795,4796,7,14,0,0,4796,4797,7,20,0,0,4797, + 4798,7,23,0,0,4798,4799,7,25,0,0,4799,4800,7,10,0,0,4800,974,1,0, + 0,0,4801,4802,7,20,0,0,4802,4803,7,17,0,0,4803,4804,7,21,0,0,4804, + 4805,7,11,0,0,4805,4806,7,14,0,0,4806,4807,7,10,0,0,4807,976,1,0, + 0,0,4808,4809,7,8,0,0,4809,4810,7,26,0,0,4810,4811,7,15,0,0,4811, + 978,1,0,0,0,4812,4813,7,8,0,0,4813,4814,7,26,0,0,4814,4815,7,13, + 0,0,4815,980,1,0,0,0,4816,4817,7,8,0,0,4817,4818,7,26,0,0,4818,4819, + 7,22,0,0,4819,4820,7,15,0,0,4820,982,1,0,0,0,4821,4822,7,8,0,0,4822, + 4823,7,26,0,0,4823,4824,7,22,0,0,4824,4825,7,13,0,0,4825,984,1,0, + 0,0,4826,4827,7,23,0,0,4827,4828,7,11,0,0,4828,4829,7,10,0,0,4829, + 4830,7,15,0,0,4830,4831,7,6,0,0,4831,4832,7,25,0,0,4832,4833,7,11, + 0,0,4833,986,1,0,0,0,4834,4835,7,28,0,0,4835,4836,7,18,0,0,4836, + 4837,7,11,0,0,4837,4838,7,30,0,0,4838,4839,7,10,0,0,4839,988,1,0, + 0,0,4840,4841,7,8,0,0,4841,4842,7,20,0,0,4842,4843,7,14,0,0,4843, + 4844,7,16,0,0,4844,4845,7,6,0,0,4845,4846,7,7,0,0,4846,4847,7,18, + 0,0,4847,4848,7,12,0,0,4848,4849,7,11,0,0,4849,990,1,0,0,0,4850, + 4851,7,13,0,0,4851,4852,7,23,0,0,4852,4853,7,16,0,0,4853,4854,7, + 25,0,0,4854,992,1,0,0,0,4855,4856,7,25,0,0,4856,4857,7,14,0,0,4857, + 4858,7,18,0,0,4858,4859,7,8,0,0,4859,4860,7,17,0,0,4860,4861,5,95, + 0,0,4861,4862,7,10,0,0,4862,4863,7,17,0,0,4863,4864,7,14,0,0,4864, + 4865,7,18,0,0,4865,4866,7,15,0,0,4866,4867,7,17,0,0,4867,4868,5, + 95,0,0,4868,4869,7,25,0,0,4869,4870,7,6,0,0,4870,4871,7,14,0,0,4871, + 4872,7,6,0,0,4872,4873,7,16,0,0,4873,4874,7,10,0,0,4874,994,1,0, + 0,0,4875,4876,7,28,0,0,4876,4877,7,6,0,0,4877,4878,7,14,0,0,4878, + 4879,7,18,0,0,4879,4880,7,6,0,0,4880,4881,7,19,0,0,4881,4882,7,7, + 0,0,4882,4883,7,11,0,0,4883,4884,5,95,0,0,4884,4885,7,15,0,0,4885, + 4886,7,20,0,0,4886,4887,7,8,0,0,4887,4888,7,26,0,0,4888,4889,7,7, + 0,0,4889,4890,7,18,0,0,4890,4891,7,15,0,0,4891,4892,7,17,0,0,4892, + 996,1,0,0,0,4893,4894,7,11,0,0,4894,4895,7,14,0,0,4895,4896,7,14, + 0,0,4896,4897,7,20,0,0,4897,4898,7,14,0,0,4898,998,1,0,0,0,4899, + 4900,7,23,0,0,4900,4901,7,10,0,0,4901,4902,7,11,0,0,4902,4903,5, + 95,0,0,4903,4904,7,28,0,0,4904,4905,7,6,0,0,4905,4906,7,14,0,0,4906, + 4907,7,18,0,0,4907,4908,7,6,0,0,4908,4909,7,19,0,0,4909,4910,7,7, + 0,0,4910,4911,7,11,0,0,4911,1000,1,0,0,0,4912,4913,7,23,0,0,4913, + 4914,7,10,0,0,4914,4915,7,11,0,0,4915,4916,5,95,0,0,4916,4917,7, + 15,0,0,4917,4918,7,20,0,0,4918,4919,7,7,0,0,4919,4920,7,23,0,0,4920, + 4921,7,16,0,0,4921,4922,7,8,0,0,4922,1002,1,0,0,0,4923,4924,7,6, + 0,0,4924,4925,7,7,0,0,4925,4926,7,18,0,0,4926,4927,7,6,0,0,4927, + 4928,7,10,0,0,4928,1004,1,0,0,0,4929,4930,7,15,0,0,4930,4931,7,20, + 0,0,4931,4932,7,8,0,0,4932,4933,7,10,0,0,4933,4934,7,17,0,0,4934, + 4935,7,6,0,0,4935,4936,7,8,0,0,4936,4937,7,17,0,0,4937,1006,1,0, + 0,0,4938,4939,7,25,0,0,4939,4940,7,11,0,0,4940,4941,7,14,0,0,4941, + 4942,7,26,0,0,4942,4943,7,20,0,0,4943,4944,7,14,0,0,4944,4945,7, + 16,0,0,4945,1008,1,0,0,0,4946,4947,7,24,0,0,4947,4948,7,11,0,0,4948, + 4949,7,17,0,0,4949,1010,1,0,0,0,4950,4951,7,13,0,0,4951,4952,7,18, + 0,0,4952,4953,7,6,0,0,4953,4954,7,24,0,0,4954,4955,7,8,0,0,4955, + 4956,7,20,0,0,4956,4957,7,10,0,0,4957,4958,7,17,0,0,4958,4959,7, + 18,0,0,4959,4960,7,15,0,0,4960,4961,7,10,0,0,4961,1012,1,0,0,0,4962, + 4963,7,10,0,0,4963,4964,7,17,0,0,4964,4965,7,6,0,0,4965,4966,7,15, + 0,0,4966,4967,7,22,0,0,4967,4968,7,11,0,0,4968,4969,7,13,0,0,4969, + 1014,1,0,0,0,4970,4971,7,11,0,0,4971,4972,7,7,0,0,4972,4973,7,10, + 0,0,4973,4974,7,18,0,0,4974,4975,7,26,0,0,4975,1016,1,0,0,0,4976, + 4977,7,30,0,0,4977,4978,7,21,0,0,4978,4979,7,18,0,0,4979,4980,7, + 7,0,0,4980,4981,7,11,0,0,4981,1018,1,0,0,0,4982,4983,7,14,0,0,4983, + 4984,7,11,0,0,4984,4985,7,28,0,0,4985,4986,7,11,0,0,4986,4987,7, + 14,0,0,4987,4988,7,10,0,0,4988,4989,7,11,0,0,4989,1020,1,0,0,0,4990, + 4991,7,26,0,0,4991,4992,7,20,0,0,4992,4993,7,14,0,0,4993,4994,7, + 11,0,0,4994,4995,7,6,0,0,4995,4996,7,15,0,0,4996,4997,7,21,0,0,4997, + 1022,1,0,0,0,4998,4999,7,10,0,0,4999,5000,7,7,0,0,5000,5001,7,18, + 0,0,5001,5002,7,15,0,0,5002,5003,7,11,0,0,5003,1024,1,0,0,0,5004, + 5005,7,11,0,0,5005,5006,7,27,0,0,5006,5007,7,18,0,0,5007,5008,7, + 17,0,0,5008,1026,1,0,0,0,5009,5010,7,14,0,0,5010,5011,7,11,0,0,5011, + 5012,7,17,0,0,5012,5013,7,23,0,0,5013,5014,7,14,0,0,5014,5015,7, + 8,0,0,5015,1028,1,0,0,0,5016,5017,7,29,0,0,5017,5018,7,23,0,0,5018, + 5019,7,11,0,0,5019,5020,7,14,0,0,5020,5021,7,9,0,0,5021,1030,1,0, + 0,0,5022,5023,7,14,0,0,5023,5024,7,6,0,0,5024,5025,7,18,0,0,5025, + 5026,7,10,0,0,5026,5027,7,11,0,0,5027,1032,1,0,0,0,5028,5029,7,10, + 0,0,5029,5030,7,29,0,0,5030,5031,7,7,0,0,5031,5032,7,10,0,0,5032, + 5033,7,17,0,0,5033,5034,7,6,0,0,5034,5035,7,17,0,0,5035,5036,7,11, + 0,0,5036,1034,1,0,0,0,5037,5038,7,13,0,0,5038,5039,7,11,0,0,5039, + 5040,7,19,0,0,5040,5041,7,23,0,0,5041,5042,7,24,0,0,5042,1036,1, + 0,0,0,5043,5044,7,7,0,0,5044,5045,7,20,0,0,5045,5046,7,24,0,0,5046, + 1038,1,0,0,0,5047,5048,7,18,0,0,5048,5049,7,8,0,0,5049,5050,7,26, + 0,0,5050,5051,7,20,0,0,5051,1040,1,0,0,0,5052,5053,7,8,0,0,5053, + 5054,7,20,0,0,5054,5055,7,17,0,0,5055,5056,7,18,0,0,5056,5057,7, + 15,0,0,5057,5058,7,11,0,0,5058,1042,1,0,0,0,5059,5060,7,30,0,0,5060, + 5061,7,6,0,0,5061,5062,7,14,0,0,5062,5063,7,8,0,0,5063,5064,7,18, + 0,0,5064,5065,7,8,0,0,5065,5066,7,24,0,0,5066,1044,1,0,0,0,5067, + 5068,7,11,0,0,5068,5069,7,27,0,0,5069,5070,7,15,0,0,5070,5071,7, + 11,0,0,5071,5072,7,25,0,0,5072,5073,7,17,0,0,5073,5074,7,18,0,0, + 5074,5075,7,20,0,0,5075,5076,7,8,0,0,5076,1046,1,0,0,0,5077,5078, + 7,6,0,0,5078,5079,7,10,0,0,5079,5080,7,10,0,0,5080,5081,7,11,0,0, + 5081,5082,7,14,0,0,5082,5083,7,17,0,0,5083,1048,1,0,0,0,5084,5085, + 7,7,0,0,5085,5086,7,20,0,0,5086,5087,7,20,0,0,5087,5088,7,25,0,0, + 5088,1050,1,0,0,0,5089,5090,7,20,0,0,5090,5091,7,25,0,0,5091,5092, + 7,11,0,0,5092,5093,7,8,0,0,5093,1052,1,0,0,0,5094,5095,7,25,0,0, + 5095,5096,7,11,0,0,5096,5097,7,26,0,0,5097,5098,7,11,0,0,5098,5099, + 7,14,0,0,5099,5100,7,11,0,0,5100,5101,7,8,0,0,5101,5102,7,15,0,0, + 5102,5103,7,11,0,0,5103,5104,7,10,0,0,5104,1054,1,0,0,0,5105,5106, + 7,23,0,0,5106,5107,7,10,0,0,5107,5108,7,6,0,0,5108,5109,7,24,0,0, + 5109,5110,7,11,0,0,5110,1056,1,0,0,0,5111,5112,7,15,0,0,5112,5113, + 7,20,0,0,5113,5114,7,8,0,0,5114,5115,7,8,0,0,5115,5116,7,11,0,0, + 5116,5117,7,15,0,0,5117,5118,7,17,0,0,5118,1058,1,0,0,0,5119,5120, + 7,25,0,0,5120,5121,7,23,0,0,5121,5122,7,19,0,0,5122,5123,7,7,0,0, + 5123,5124,7,18,0,0,5124,5125,7,15,0,0,5125,1060,1,0,0,0,5126,5127, + 7,16,0,0,5127,5128,7,11,0,0,5128,5129,7,14,0,0,5129,5130,7,24,0, + 0,5130,5131,7,11,0,0,5131,1062,1,0,0,0,5132,5133,7,16,0,0,5133,5134, + 7,6,0,0,5134,5135,7,17,0,0,5135,5136,7,15,0,0,5136,5137,7,21,0,0, + 5137,5138,7,11,0,0,5138,5139,7,13,0,0,5139,1064,1,0,0,0,5140,5141, + 7,19,0,0,5141,5142,7,14,0,0,5142,5143,7,11,0,0,5143,5144,7,6,0,0, + 5144,5145,7,13,0,0,5145,5146,7,17,0,0,5146,5147,7,21,0,0,5147,1066, + 1,0,0,0,5148,5149,7,13,0,0,5149,5150,7,11,0,0,5150,5151,7,25,0,0, + 5151,5152,7,17,0,0,5152,5153,7,21,0,0,5153,1068,1,0,0,0,5154,5155, + 7,23,0,0,5155,5156,7,8,0,0,5156,5157,7,10,0,0,5157,5158,7,6,0,0, + 5158,5159,7,26,0,0,5159,5160,7,11,0,0,5160,1070,1,0,0,0,5161,5162, + 7,14,0,0,5162,5163,7,11,0,0,5163,5164,7,10,0,0,5164,5165,7,17,0, + 0,5165,5166,7,14,0,0,5166,5167,7,18,0,0,5167,5168,7,15,0,0,5168, + 5169,7,17,0,0,5169,5170,7,11,0,0,5170,5171,7,13,0,0,5171,1072,1, + 0,0,0,5172,5173,7,10,0,0,5173,5174,7,6,0,0,5174,5175,7,26,0,0,5175, + 5176,7,11,0,0,5176,1074,1,0,0,0,5177,5178,7,26,0,0,5178,5179,7,18, + 0,0,5179,5180,7,8,0,0,5180,5181,7,6,0,0,5181,5182,7,7,0,0,5182,5183, + 7,18,0,0,5183,5184,7,12,0,0,5184,5185,7,11,0,0,5185,1076,1,0,0,0, + 5186,5187,7,16,0,0,5187,5188,7,20,0,0,5188,5189,7,13,0,0,5189,5190, + 7,23,0,0,5190,5191,7,7,0,0,5191,5192,7,23,0,0,5192,5193,7,10,0,0, + 5193,1078,1,0,0,0,5194,5195,7,14,0,0,5195,5196,7,11,0,0,5196,5197, + 7,16,0,0,5197,5198,7,6,0,0,5198,5199,7,18,0,0,5199,5200,7,8,0,0, + 5200,5201,7,13,0,0,5201,5202,7,11,0,0,5202,5203,7,14,0,0,5203,1080, + 1,0,0,0,5204,5205,7,7,0,0,5205,5206,7,20,0,0,5206,5207,7,24,0,0, + 5207,5208,7,18,0,0,5208,5209,7,8,0,0,5209,1082,1,0,0,0,5210,5211, + 7,8,0,0,5211,5212,7,20,0,0,5212,5213,7,7,0,0,5213,5214,7,20,0,0, + 5214,5215,7,24,0,0,5215,5216,7,18,0,0,5216,5217,7,8,0,0,5217,1084, + 1,0,0,0,5218,5219,7,14,0,0,5219,5220,7,11,0,0,5220,5221,7,25,0,0, + 5221,5222,7,7,0,0,5222,5223,7,18,0,0,5223,5224,7,15,0,0,5224,5225, + 7,6,0,0,5225,5226,7,17,0,0,5226,5227,7,18,0,0,5227,5228,7,20,0,0, + 5228,5229,7,8,0,0,5229,1086,1,0,0,0,5230,5231,7,8,0,0,5231,5232, + 7,20,0,0,5232,5233,7,14,0,0,5233,5234,7,11,0,0,5234,5235,7,25,0, + 0,5235,5236,7,7,0,0,5236,5237,7,18,0,0,5237,5238,7,15,0,0,5238,5239, + 7,6,0,0,5239,5240,7,17,0,0,5240,5241,7,18,0,0,5241,5242,7,20,0,0, + 5242,5243,7,8,0,0,5243,1088,1,0,0,0,5244,5245,7,19,0,0,5245,5246, + 7,9,0,0,5246,5247,7,25,0,0,5247,5248,7,6,0,0,5248,5249,7,10,0,0, + 5249,5250,7,10,0,0,5250,5251,7,14,0,0,5251,5252,7,7,0,0,5252,5253, + 7,10,0,0,5253,1090,1,0,0,0,5254,5255,7,8,0,0,5255,5256,7,20,0,0, + 5256,5257,7,19,0,0,5257,5258,7,9,0,0,5258,5259,7,25,0,0,5259,5260, + 7,6,0,0,5260,5261,7,10,0,0,5261,5262,7,10,0,0,5262,5263,7,14,0,0, + 5263,5264,7,7,0,0,5264,5265,7,10,0,0,5265,1092,1,0,0,0,5266,5267, + 7,25,0,0,5267,5268,7,11,0,0,5268,5269,7,14,0,0,5269,5270,7,16,0, + 0,5270,5271,7,18,0,0,5271,5272,7,10,0,0,5272,5273,7,10,0,0,5273, + 5274,7,18,0,0,5274,5275,7,28,0,0,5275,5276,7,11,0,0,5276,1094,1, + 0,0,0,5277,5278,7,14,0,0,5278,5279,7,11,0,0,5279,5280,7,10,0,0,5280, + 5281,7,17,0,0,5281,5282,7,14,0,0,5282,5283,7,18,0,0,5283,5284,7, + 15,0,0,5284,5285,7,17,0,0,5285,5286,7,18,0,0,5286,5287,7,28,0,0, + 5287,5288,7,11,0,0,5288,1096,1,0,0,0,5289,5290,7,15,0,0,5290,5291, + 7,20,0,0,5291,5292,7,16,0,0,5292,5293,7,25,0,0,5293,5294,7,14,0, + 0,5294,5295,7,11,0,0,5295,5296,7,10,0,0,5296,5297,7,10,0,0,5297, + 5298,7,18,0,0,5298,5299,7,20,0,0,5299,5300,7,8,0,0,5300,1098,1,0, + 0,0,5301,5302,7,25,0,0,5302,5303,7,7,0,0,5303,5304,7,6,0,0,5304, + 5305,7,18,0,0,5305,5306,7,8,0,0,5306,1100,1,0,0,0,5307,5308,7,11, + 0,0,5308,5309,7,27,0,0,5309,5310,7,17,0,0,5310,5311,7,11,0,0,5311, + 5312,7,8,0,0,5312,5313,7,13,0,0,5313,5314,7,11,0,0,5314,5315,7,13, + 0,0,5315,1102,1,0,0,0,5316,5317,7,16,0,0,5317,5318,7,6,0,0,5318, + 5319,7,18,0,0,5319,5320,7,8,0,0,5320,1104,1,0,0,0,5321,5322,7,10, + 0,0,5322,5323,7,22,0,0,5323,5324,7,18,0,0,5324,5325,7,25,0,0,5325, + 5326,5,95,0,0,5326,5327,7,7,0,0,5327,5328,7,20,0,0,5328,5329,7,15, + 0,0,5329,5330,7,22,0,0,5330,5331,7,11,0,0,5331,5332,7,13,0,0,5332, + 1106,1,0,0,0,5333,5334,7,19,0,0,5334,5335,7,23,0,0,5335,5336,7,26, + 0,0,5336,5337,7,26,0,0,5337,5338,7,11,0,0,5338,5339,7,14,0,0,5339, + 5340,5,95,0,0,5340,5341,7,23,0,0,5341,5342,7,10,0,0,5342,5343,7, + 6,0,0,5343,5344,7,24,0,0,5344,5345,7,11,0,0,5345,5346,5,95,0,0,5346, + 5347,7,7,0,0,5347,5348,7,18,0,0,5348,5349,7,16,0,0,5349,5350,7,18, + 0,0,5350,5351,7,17,0,0,5351,1108,1,0,0,0,5352,5353,7,26,0,0,5353, + 5354,7,20,0,0,5354,5355,7,14,0,0,5355,5356,7,15,0,0,5356,5357,7, + 11,0,0,5357,5358,5,95,0,0,5358,5359,7,29,0,0,5359,5360,7,23,0,0, + 5360,5361,7,20,0,0,5361,5362,7,17,0,0,5362,5363,7,11,0,0,5363,1110, + 1,0,0,0,5364,5365,7,26,0,0,5365,5366,7,20,0,0,5366,5367,7,14,0,0, + 5367,5368,7,15,0,0,5368,5369,7,11,0,0,5369,5370,5,95,0,0,5370,5371, + 7,8,0,0,5371,5372,7,20,0,0,5372,5373,7,17,0,0,5373,5374,5,95,0,0, + 5374,5375,7,8,0,0,5375,5376,7,23,0,0,5376,5377,7,7,0,0,5377,5378, + 7,7,0,0,5378,1112,1,0,0,0,5379,5380,7,26,0,0,5380,5381,7,20,0,0, + 5381,5382,7,14,0,0,5382,5383,7,15,0,0,5383,5384,7,11,0,0,5384,5385, + 5,95,0,0,5385,5386,7,8,0,0,5386,5387,7,23,0,0,5387,5388,7,7,0,0, + 5388,5389,7,7,0,0,5389,1114,1,0,0,0,5390,5394,3,1117,556,0,5391, + 5393,3,1119,557,0,5392,5391,1,0,0,0,5393,5396,1,0,0,0,5394,5392, + 1,0,0,0,5394,5395,1,0,0,0,5395,1116,1,0,0,0,5396,5394,1,0,0,0,5397, + 5401,7,32,0,0,5398,5399,7,33,0,0,5399,5401,7,34,0,0,5400,5397,1, + 0,0,0,5400,5398,1,0,0,0,5401,1118,1,0,0,0,5402,5405,3,1121,558,0, + 5403,5405,5,36,0,0,5404,5402,1,0,0,0,5404,5403,1,0,0,0,5405,1120, + 1,0,0,0,5406,5409,3,1117,556,0,5407,5409,7,0,0,0,5408,5406,1,0,0, + 0,5408,5407,1,0,0,0,5409,1122,1,0,0,0,5410,5411,3,1125,560,0,5411, + 5412,5,34,0,0,5412,1124,1,0,0,0,5413,5419,5,34,0,0,5414,5415,5,34, + 0,0,5415,5418,5,34,0,0,5416,5418,8,35,0,0,5417,5414,1,0,0,0,5417, + 5416,1,0,0,0,5418,5421,1,0,0,0,5419,5417,1,0,0,0,5419,5420,1,0,0, + 0,5420,1126,1,0,0,0,5421,5419,1,0,0,0,5422,5423,3,1129,562,0,5423, + 5424,5,34,0,0,5424,1128,1,0,0,0,5425,5431,5,34,0,0,5426,5427,5,34, + 0,0,5427,5430,5,34,0,0,5428,5430,8,36,0,0,5429,5426,1,0,0,0,5429, + 5428,1,0,0,0,5430,5433,1,0,0,0,5431,5429,1,0,0,0,5431,5432,1,0,0, + 0,5432,1130,1,0,0,0,5433,5431,1,0,0,0,5434,5435,7,23,0,0,5435,5436, + 5,38,0,0,5436,5437,3,1123,559,0,5437,1132,1,0,0,0,5438,5439,7,23, + 0,0,5439,5440,5,38,0,0,5440,5441,3,1125,560,0,5441,1134,1,0,0,0, + 5442,5443,7,23,0,0,5443,5444,5,38,0,0,5444,5445,3,1127,561,0,5445, + 1136,1,0,0,0,5446,5447,7,23,0,0,5447,5448,5,38,0,0,5448,5449,3,1129, + 562,0,5449,1138,1,0,0,0,5450,5451,3,1141,568,0,5451,5452,5,39,0, + 0,5452,1140,1,0,0,0,5453,5459,5,39,0,0,5454,5455,5,39,0,0,5455,5458, + 5,39,0,0,5456,5458,8,37,0,0,5457,5454,1,0,0,0,5457,5456,1,0,0,0, + 5458,5461,1,0,0,0,5459,5457,1,0,0,0,5459,5460,1,0,0,0,5460,1142, + 1,0,0,0,5461,5459,1,0,0,0,5462,5463,7,11,0,0,5463,5464,5,39,0,0, + 5464,5465,1,0,0,0,5465,5466,6,569,1,0,5466,5467,6,569,2,0,5467,1144, + 1,0,0,0,5468,5469,3,1147,571,0,5469,5470,5,39,0,0,5470,1146,1,0, + 0,0,5471,5472,7,23,0,0,5472,5473,5,38,0,0,5473,5474,3,1141,568,0, + 5474,1148,1,0,0,0,5475,5477,5,36,0,0,5476,5478,3,1151,573,0,5477, + 5476,1,0,0,0,5477,5478,1,0,0,0,5478,5479,1,0,0,0,5479,5480,5,36, + 0,0,5480,5481,1,0,0,0,5481,5482,6,572,3,0,5482,1150,1,0,0,0,5483, + 5487,3,1117,556,0,5484,5486,3,1121,558,0,5485,5484,1,0,0,0,5486, + 5489,1,0,0,0,5487,5485,1,0,0,0,5487,5488,1,0,0,0,5488,1152,1,0,0, + 0,5489,5487,1,0,0,0,5490,5491,3,1155,575,0,5491,5492,5,39,0,0,5492, + 1154,1,0,0,0,5493,5494,7,19,0,0,5494,5498,5,39,0,0,5495,5497,7,38, + 0,0,5496,5495,1,0,0,0,5497,5500,1,0,0,0,5498,5496,1,0,0,0,5498,5499, + 1,0,0,0,5499,1156,1,0,0,0,5500,5498,1,0,0,0,5501,5502,3,1159,577, + 0,5502,5503,5,39,0,0,5503,1158,1,0,0,0,5504,5505,7,19,0,0,5505,5506, + 3,1141,568,0,5506,1160,1,0,0,0,5507,5508,3,1163,579,0,5508,5509, + 5,39,0,0,5509,1162,1,0,0,0,5510,5511,7,27,0,0,5511,5515,5,39,0,0, + 5512,5514,7,39,0,0,5513,5512,1,0,0,0,5514,5517,1,0,0,0,5515,5513, + 1,0,0,0,5515,5516,1,0,0,0,5516,1164,1,0,0,0,5517,5515,1,0,0,0,5518, + 5519,3,1167,581,0,5519,5520,5,39,0,0,5520,1166,1,0,0,0,5521,5522, + 7,27,0,0,5522,5523,3,1141,568,0,5523,1168,1,0,0,0,5524,5525,3,1175, + 585,0,5525,1170,1,0,0,0,5526,5527,3,1175,585,0,5527,5528,5,46,0, + 0,5528,5529,5,46,0,0,5529,1172,1,0,0,0,5530,5531,3,1175,585,0,5531, + 5533,5,46,0,0,5532,5534,3,1175,585,0,5533,5532,1,0,0,0,5533,5534, + 1,0,0,0,5534,5540,1,0,0,0,5535,5537,7,11,0,0,5536,5538,7,1,0,0,5537, + 5536,1,0,0,0,5537,5538,1,0,0,0,5538,5539,1,0,0,0,5539,5541,3,1175, + 585,0,5540,5535,1,0,0,0,5540,5541,1,0,0,0,5541,5559,1,0,0,0,5542, + 5543,5,46,0,0,5543,5549,3,1175,585,0,5544,5546,7,11,0,0,5545,5547, + 7,1,0,0,5546,5545,1,0,0,0,5546,5547,1,0,0,0,5547,5548,1,0,0,0,5548, + 5550,3,1175,585,0,5549,5544,1,0,0,0,5549,5550,1,0,0,0,5550,5559, + 1,0,0,0,5551,5552,3,1175,585,0,5552,5554,7,11,0,0,5553,5555,7,1, + 0,0,5554,5553,1,0,0,0,5554,5555,1,0,0,0,5555,5556,1,0,0,0,5556,5557, + 3,1175,585,0,5557,5559,1,0,0,0,5558,5530,1,0,0,0,5558,5542,1,0,0, + 0,5558,5551,1,0,0,0,5559,1174,1,0,0,0,5560,5562,7,0,0,0,5561,5560, + 1,0,0,0,5562,5563,1,0,0,0,5563,5561,1,0,0,0,5563,5564,1,0,0,0,5564, + 1176,1,0,0,0,5565,5566,5,58,0,0,5566,5570,7,40,0,0,5567,5569,7,41, + 0,0,5568,5567,1,0,0,0,5569,5572,1,0,0,0,5570,5568,1,0,0,0,5570,5571, + 1,0,0,0,5571,1178,1,0,0,0,5572,5570,1,0,0,0,5573,5574,5,58,0,0,5574, + 5575,5,34,0,0,5575,5583,1,0,0,0,5576,5577,5,92,0,0,5577,5582,9,0, + 0,0,5578,5579,5,34,0,0,5579,5582,5,34,0,0,5580,5582,8,42,0,0,5581, + 5576,1,0,0,0,5581,5578,1,0,0,0,5581,5580,1,0,0,0,5582,5585,1,0,0, + 0,5583,5581,1,0,0,0,5583,5584,1,0,0,0,5584,5586,1,0,0,0,5585,5583, + 1,0,0,0,5586,5587,5,34,0,0,5587,1180,1,0,0,0,5588,5589,7,43,0,0, + 5589,5590,1,0,0,0,5590,5591,6,588,4,0,5591,1182,1,0,0,0,5592,5593, + 5,45,0,0,5593,5594,5,45,0,0,5594,5598,1,0,0,0,5595,5597,8,44,0,0, + 5596,5595,1,0,0,0,5597,5600,1,0,0,0,5598,5596,1,0,0,0,5598,5599, + 1,0,0,0,5599,5601,1,0,0,0,5600,5598,1,0,0,0,5601,5602,6,589,4,0, + 5602,1184,1,0,0,0,5603,5604,5,47,0,0,5604,5605,5,42,0,0,5605,5628, + 1,0,0,0,5606,5608,5,47,0,0,5607,5606,1,0,0,0,5608,5611,1,0,0,0,5609, + 5607,1,0,0,0,5609,5610,1,0,0,0,5610,5612,1,0,0,0,5611,5609,1,0,0, + 0,5612,5627,3,1185,590,0,5613,5627,8,45,0,0,5614,5616,5,47,0,0,5615, + 5614,1,0,0,0,5616,5617,1,0,0,0,5617,5615,1,0,0,0,5617,5618,1,0,0, + 0,5618,5619,1,0,0,0,5619,5627,8,45,0,0,5620,5622,5,42,0,0,5621,5620, + 1,0,0,0,5622,5623,1,0,0,0,5623,5621,1,0,0,0,5623,5624,1,0,0,0,5624, + 5625,1,0,0,0,5625,5627,8,45,0,0,5626,5609,1,0,0,0,5626,5613,1,0, + 0,0,5626,5615,1,0,0,0,5626,5621,1,0,0,0,5627,5630,1,0,0,0,5628,5626, + 1,0,0,0,5628,5629,1,0,0,0,5629,5634,1,0,0,0,5630,5628,1,0,0,0,5631, + 5633,5,42,0,0,5632,5631,1,0,0,0,5633,5636,1,0,0,0,5634,5632,1,0, + 0,0,5634,5635,1,0,0,0,5635,5637,1,0,0,0,5636,5634,1,0,0,0,5637,5638, + 5,42,0,0,5638,5639,5,47,0,0,5639,5640,1,0,0,0,5640,5641,6,590,4, + 0,5641,1186,1,0,0,0,5642,5643,5,47,0,0,5643,5644,5,42,0,0,5644,5669, + 1,0,0,0,5645,5647,5,47,0,0,5646,5645,1,0,0,0,5647,5650,1,0,0,0,5648, + 5646,1,0,0,0,5648,5649,1,0,0,0,5649,5651,1,0,0,0,5650,5648,1,0,0, + 0,5651,5668,3,1185,590,0,5652,5668,8,45,0,0,5653,5655,5,47,0,0,5654, + 5653,1,0,0,0,5655,5656,1,0,0,0,5656,5654,1,0,0,0,5656,5657,1,0,0, + 0,5657,5658,1,0,0,0,5658,5666,8,45,0,0,5659,5661,5,42,0,0,5660,5659, + 1,0,0,0,5661,5662,1,0,0,0,5662,5660,1,0,0,0,5662,5663,1,0,0,0,5663, + 5664,1,0,0,0,5664,5666,8,45,0,0,5665,5654,1,0,0,0,5665,5660,1,0, + 0,0,5666,5668,1,0,0,0,5667,5648,1,0,0,0,5667,5652,1,0,0,0,5667,5665, + 1,0,0,0,5668,5671,1,0,0,0,5669,5667,1,0,0,0,5669,5670,1,0,0,0,5670, + 5689,1,0,0,0,5671,5669,1,0,0,0,5672,5674,5,47,0,0,5673,5672,1,0, + 0,0,5674,5675,1,0,0,0,5675,5673,1,0,0,0,5675,5676,1,0,0,0,5676,5690, + 1,0,0,0,5677,5679,5,42,0,0,5678,5677,1,0,0,0,5679,5680,1,0,0,0,5680, + 5678,1,0,0,0,5680,5681,1,0,0,0,5681,5690,1,0,0,0,5682,5684,5,47, + 0,0,5683,5682,1,0,0,0,5684,5687,1,0,0,0,5685,5683,1,0,0,0,5685,5686, + 1,0,0,0,5686,5688,1,0,0,0,5687,5685,1,0,0,0,5688,5690,3,1187,591, + 0,5689,5673,1,0,0,0,5689,5678,1,0,0,0,5689,5685,1,0,0,0,5689,5690, + 1,0,0,0,5690,1188,1,0,0,0,5691,5703,5,92,0,0,5692,5702,8,46,0,0, + 5693,5697,5,34,0,0,5694,5696,8,47,0,0,5695,5694,1,0,0,0,5696,5699, + 1,0,0,0,5697,5695,1,0,0,0,5697,5698,1,0,0,0,5698,5700,1,0,0,0,5699, + 5697,1,0,0,0,5700,5702,5,34,0,0,5701,5692,1,0,0,0,5701,5693,1,0, + 0,0,5702,5705,1,0,0,0,5703,5701,1,0,0,0,5703,5704,1,0,0,0,5704,5713, + 1,0,0,0,5705,5703,1,0,0,0,5706,5710,5,34,0,0,5707,5709,8,47,0,0, + 5708,5707,1,0,0,0,5709,5712,1,0,0,0,5710,5708,1,0,0,0,5710,5711, + 1,0,0,0,5711,5714,1,0,0,0,5712,5710,1,0,0,0,5713,5706,1,0,0,0,5713, + 5714,1,0,0,0,5714,1190,1,0,0,0,5715,5716,5,92,0,0,5716,5717,5,92, + 0,0,5717,1192,1,0,0,0,5718,5719,9,0,0,0,5719,1194,1,0,0,0,5720,5721, + 3,1199,597,0,5721,5722,5,39,0,0,5722,5723,1,0,0,0,5723,5724,6,595, + 5,0,5724,1196,1,0,0,0,5725,5727,3,1199,597,0,5726,5728,5,92,0,0, + 5727,5726,1,0,0,0,5727,5728,1,0,0,0,5728,5729,1,0,0,0,5729,5730, + 5,0,0,1,5730,1198,1,0,0,0,5731,5732,5,39,0,0,5732,5755,5,39,0,0, + 5733,5751,5,92,0,0,5734,5735,7,27,0,0,5735,5752,7,39,0,0,5736,5737, + 7,23,0,0,5737,5738,7,39,0,0,5738,5739,7,39,0,0,5739,5740,7,39,0, + 0,5740,5752,7,39,0,0,5741,5742,7,23,0,0,5742,5743,7,39,0,0,5743, + 5744,7,39,0,0,5744,5745,7,39,0,0,5745,5746,7,39,0,0,5746,5747,7, + 39,0,0,5747,5748,7,39,0,0,5748,5749,7,39,0,0,5749,5752,7,39,0,0, + 5750,5752,8,48,0,0,5751,5734,1,0,0,0,5751,5736,1,0,0,0,5751,5741, + 1,0,0,0,5751,5750,1,0,0,0,5752,5755,1,0,0,0,5753,5755,8,49,0,0,5754, + 5731,1,0,0,0,5754,5733,1,0,0,0,5754,5753,1,0,0,0,5755,5758,1,0,0, + 0,5756,5754,1,0,0,0,5756,5757,1,0,0,0,5757,1200,1,0,0,0,5758,5756, + 1,0,0,0,5759,5760,3,1205,600,0,5760,5761,5,39,0,0,5761,5762,1,0, + 0,0,5762,5763,6,598,5,0,5763,1202,1,0,0,0,5764,5766,3,1205,600,0, + 5765,5767,5,92,0,0,5766,5765,1,0,0,0,5766,5767,1,0,0,0,5767,5768, + 1,0,0,0,5768,5769,5,0,0,1,5769,1204,1,0,0,0,5770,5771,5,39,0,0,5771, + 5776,5,39,0,0,5772,5773,5,92,0,0,5773,5776,9,0,0,0,5774,5776,8,49, + 0,0,5775,5770,1,0,0,0,5775,5772,1,0,0,0,5775,5774,1,0,0,0,5776,5779, + 1,0,0,0,5777,5775,1,0,0,0,5777,5778,1,0,0,0,5778,1206,1,0,0,0,5779, + 5777,1,0,0,0,5780,5781,3,1181,588,0,5781,5782,1,0,0,0,5782,5783, + 6,601,6,0,5783,5784,6,601,4,0,5784,1208,1,0,0,0,5785,5786,3,1181, + 588,0,5786,5787,1,0,0,0,5787,5788,6,602,6,0,5788,5789,6,602,4,0, + 5789,1210,1,0,0,0,5790,5791,5,39,0,0,5791,5792,1,0,0,0,5792,5793, + 6,603,1,0,5793,5794,6,603,7,0,5794,1212,1,0,0,0,5795,5797,8,50,0, + 0,5796,5795,1,0,0,0,5797,5798,1,0,0,0,5798,5796,1,0,0,0,5798,5799, + 1,0,0,0,5799,5808,1,0,0,0,5800,5804,5,36,0,0,5801,5803,8,50,0,0, + 5802,5801,1,0,0,0,5803,5806,1,0,0,0,5804,5802,1,0,0,0,5804,5805, + 1,0,0,0,5805,5808,1,0,0,0,5806,5804,1,0,0,0,5807,5796,1,0,0,0,5807, + 5800,1,0,0,0,5808,1214,1,0,0,0,5809,5811,5,36,0,0,5810,5812,3,1151, + 573,0,5811,5810,1,0,0,0,5811,5812,1,0,0,0,5812,5813,1,0,0,0,5813, + 5814,5,36,0,0,5814,5815,1,0,0,0,5815,5816,6,605,8,0,5816,1216,1, + 0,0,0,74,0,1,2,3,4,1284,1290,1294,1296,1299,1301,1304,1308,1310, + 1315,1320,5394,5400,5404,5408,5417,5419,5429,5431,5457,5459,5477, + 5487,5498,5515,5533,5537,5540,5546,5549,5554,5558,5563,5570,5581, + 5583,5598,5609,5617,5623,5626,5628,5634,5648,5656,5662,5665,5667, + 5669,5675,5680,5685,5689,5697,5701,5703,5710,5713,5727,5751,5754, + 5756,5766,5775,5777,5798,5804,5807,5811,9,7,29,0,3,0,0,5,1,0,5,4, + 0,0,1,0,2,2,0,7,579,0,2,1,0,4,0,0 ]; private static __ATN: antlr.ATN; diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index 286970b88..bf31e0f30 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -583,7 +583,6 @@ null null null null -null '\\\\' null null @@ -1174,10 +1173,9 @@ NumericFail Numeric PLSQLVARIABLENAME PLSQLIDENTIFIER -Whitespace -Newline -LineComment -BlockComment +WHITE_SPACE +LINE_COMMENT +BRACKETED_COMMENT UnterminatedBlockComment MetaCommand EndMetaCommand @@ -1540,6 +1538,7 @@ documentOrContent xmlExistsArgument xmlPassingMech windowClause +havingClause windowDefinition over_clause windowSpecification @@ -1589,6 +1588,7 @@ routineName procedureName procedureNameCreate columnName +columnNamePath columnNameCreate functionNameCreate functionName @@ -1657,4 +1657,4 @@ sqlExpression atn: -[4, 1, 593, 8475, 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, 1, 0, 5, 0, 928, 8, 0, 10, 0, 12, 0, 931, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 937, 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, 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, 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, 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, 1, 2, 1, 2, 1, 2, 3, 2, 1057, 8, 2, 3, 2, 1059, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1068, 8, 4, 1, 4, 5, 4, 1071, 8, 4, 10, 4, 12, 4, 1074, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1079, 8, 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, 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, 1114, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1124, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1130, 8, 7, 1, 7, 5, 7, 1133, 8, 7, 10, 7, 12, 7, 1136, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1142, 8, 8, 1, 8, 5, 8, 1145, 8, 8, 10, 8, 12, 8, 1148, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1154, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1165, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1171, 8, 11, 10, 11, 12, 11, 1174, 9, 11, 1, 11, 3, 11, 1177, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1189, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1195, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1201, 8, 12, 1, 12, 1, 12, 3, 12, 1205, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1210, 8, 12, 1, 12, 1, 12, 3, 12, 1214, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1227, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1237, 8, 12, 3, 12, 1239, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1245, 8, 13, 1, 13, 5, 13, 1248, 8, 13, 10, 13, 12, 13, 1251, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1263, 8, 15, 1, 15, 3, 15, 1266, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1271, 8, 15, 1, 15, 5, 15, 1274, 8, 15, 10, 15, 12, 15, 1277, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1287, 8, 17, 1, 18, 1, 18, 3, 18, 1291, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1303, 8, 19, 1, 20, 1, 20, 3, 20, 1307, 8, 20, 1, 20, 3, 20, 1310, 8, 20, 1, 20, 1, 20, 3, 20, 1314, 8, 20, 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, 1, 21, 1, 21, 1, 21, 1, 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, 1344, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1349, 8, 22, 10, 22, 12, 22, 1352, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1357, 8, 23, 10, 23, 12, 23, 1360, 9, 23, 1, 24, 1, 24, 3, 24, 1364, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1371, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1379, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1385, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1393, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1401, 8, 28, 1, 29, 1, 29, 3, 29, 1405, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1419, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1424, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1429, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1441, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1447, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1459, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1464, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1474, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1480, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1485, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1494, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1501, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1506, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1511, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1521, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1526, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1531, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1538, 8, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 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, 1556, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1562, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1568, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1573, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1578, 8, 39, 10, 39, 12, 39, 1581, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1589, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1598, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1605, 8, 42, 10, 42, 12, 42, 1608, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1616, 8, 42, 1, 42, 1, 42, 3, 42, 1620, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1632, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1640, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1650, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1670, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1675, 8, 42, 1, 42, 3, 42, 1678, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1685, 8, 42, 1, 42, 3, 42, 1688, 8, 42, 1, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 3, 42, 1696, 8, 42, 1, 42, 3, 42, 1699, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1704, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1709, 8, 42, 1, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1722, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1728, 8, 42, 1, 42, 1, 42, 3, 42, 1732, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1741, 8, 42, 1, 42, 3, 42, 1744, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1750, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1759, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1769, 8, 42, 11, 42, 12, 42, 1770, 1, 42, 1, 42, 3, 42, 1775, 8, 42, 1, 42, 1, 42, 3, 42, 1779, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1784, 8, 42, 1, 42, 3, 42, 1787, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1793, 8, 42, 4, 42, 1795, 8, 42, 11, 42, 12, 42, 1796, 1, 42, 1, 42, 3, 42, 1801, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1807, 8, 42, 1, 42, 1, 42, 3, 42, 1811, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1816, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1821, 8, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 3, 42, 1828, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1835, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1846, 8, 46, 10, 46, 12, 46, 1849, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1861, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1886, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1894, 8, 50, 10, 50, 12, 50, 1897, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1903, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1908, 8, 51, 1, 51, 1, 51, 3, 51, 1912, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1919, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1924, 8, 51, 1, 51, 3, 51, 1927, 8, 51, 3, 51, 1929, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1934, 8, 52, 1, 53, 1, 53, 3, 53, 1938, 8, 53, 1, 53, 1, 53, 3, 53, 1942, 8, 53, 1, 53, 1, 53, 3, 53, 1946, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1951, 8, 53, 1, 53, 3, 53, 1954, 8, 53, 1, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 3, 53, 1961, 8, 53, 1, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1973, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1978, 8, 53, 1, 53, 3, 53, 1981, 8, 53, 1, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1991, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2000, 8, 54, 1, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2019, 8, 54, 5, 54, 2021, 8, 54, 10, 54, 12, 54, 2024, 9, 54, 1, 54, 3, 54, 2027, 8, 54, 5, 54, 2029, 8, 54, 10, 54, 12, 54, 2032, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2038, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2043, 8, 55, 5, 55, 2045, 8, 55, 10, 55, 12, 55, 2048, 9, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2062, 8, 56, 10, 56, 12, 56, 2065, 9, 56, 1, 56, 1, 56, 3, 56, 2069, 8, 56, 1, 57, 1, 57, 3, 57, 2073, 8, 57, 1, 57, 1, 57, 3, 57, 2077, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2082, 8, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 3, 57, 2089, 8, 57, 1, 57, 3, 57, 2092, 8, 57, 1, 57, 3, 57, 2095, 8, 57, 1, 57, 3, 57, 2098, 8, 57, 1, 57, 3, 57, 2101, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2106, 8, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 3, 57, 2112, 8, 57, 1, 57, 3, 57, 2115, 8, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 3, 57, 2134, 8, 57, 1, 57, 3, 57, 2137, 8, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 3, 57, 2145, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2152, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2158, 8, 59, 10, 59, 12, 59, 2161, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2168, 8, 60, 10, 60, 12, 60, 2171, 9, 60, 1, 61, 1, 61, 3, 61, 2175, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2183, 8, 61, 10, 61, 12, 61, 2186, 9, 61, 3, 61, 2188, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2193, 8, 62, 1, 62, 5, 62, 2196, 8, 62, 10, 62, 12, 62, 2199, 9, 62, 1, 62, 1, 62, 3, 62, 2203, 8, 62, 1, 62, 3, 62, 2206, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2211, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2220, 8, 63, 3, 63, 2222, 8, 63, 1, 63, 1, 63, 3, 63, 2226, 8, 63, 1, 63, 3, 63, 2229, 8, 63, 1, 63, 1, 63, 3, 63, 2233, 8, 63, 1, 63, 5, 63, 2236, 8, 63, 10, 63, 12, 63, 2239, 9, 63, 1, 64, 1, 64, 3, 64, 2243, 8, 64, 1, 64, 1, 64, 3, 64, 2247, 8, 64, 1, 64, 3, 64, 2250, 8, 64, 1, 64, 1, 64, 3, 64, 2254, 8, 64, 1, 65, 3, 65, 2257, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2262, 8, 65, 1, 65, 3, 65, 2265, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2270, 8, 65, 1, 65, 3, 65, 2273, 8, 65, 1, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 3, 65, 2280, 8, 65, 1, 65, 3, 65, 2283, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2288, 8, 65, 1, 65, 3, 65, 2291, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2299, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2309, 8, 65, 11, 65, 12, 65, 2310, 1, 65, 1, 65, 3, 65, 2315, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2322, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2327, 8, 65, 1, 65, 3, 65, 2330, 8, 65, 1, 65, 3, 65, 2333, 8, 65, 1, 65, 3, 65, 2336, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2341, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2350, 8, 68, 10, 68, 12, 68, 2353, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2358, 8, 68, 1, 68, 1, 68, 3, 68, 2362, 8, 68, 1, 68, 3, 68, 2365, 8, 68, 1, 68, 3, 68, 2368, 8, 68, 1, 68, 5, 68, 2371, 8, 68, 10, 68, 12, 68, 2374, 9, 68, 1, 68, 1, 68, 5, 68, 2378, 8, 68, 10, 68, 12, 68, 2381, 9, 68, 3, 68, 2383, 8, 68, 1, 68, 1, 68, 3, 68, 2387, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2393, 8, 68, 10, 68, 12, 68, 2396, 9, 68, 1, 68, 1, 68, 3, 68, 2400, 8, 68, 1, 68, 3, 68, 2403, 8, 68, 1, 68, 3, 68, 2406, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2413, 8, 68, 1, 68, 5, 68, 2416, 8, 68, 10, 68, 12, 68, 2419, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2427, 8, 68, 1, 68, 3, 68, 2430, 8, 68, 1, 68, 3, 68, 2433, 8, 68, 1, 68, 5, 68, 2436, 8, 68, 10, 68, 12, 68, 2439, 9, 68, 3, 68, 2441, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2451, 8, 70, 10, 70, 12, 70, 2454, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2461, 8, 71, 10, 71, 12, 71, 2464, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2480, 8, 74, 1, 75, 1, 75, 3, 75, 2484, 8, 75, 1, 75, 1, 75, 3, 75, 2488, 8, 75, 3, 75, 2490, 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, 78, 1, 78, 1, 78, 3, 78, 2507, 8, 78, 3, 78, 2509, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2523, 8, 80, 10, 80, 12, 80, 2526, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2536, 8, 81, 1, 81, 3, 81, 2539, 8, 81, 1, 81, 3, 81, 2542, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2551, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2560, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2576, 8, 88, 1, 88, 3, 88, 2579, 8, 88, 1, 88, 3, 88, 2582, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2588, 8, 88, 10, 88, 12, 88, 2591, 9, 88, 1, 88, 3, 88, 2594, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2601, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2610, 8, 90, 1, 90, 1, 90, 3, 90, 2614, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2620, 8, 90, 1, 91, 1, 91, 3, 91, 2624, 8, 91, 1, 91, 3, 91, 2627, 8, 91, 1, 91, 3, 91, 2630, 8, 91, 1, 91, 3, 91, 2633, 8, 91, 1, 91, 3, 91, 2636, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2642, 8, 92, 1, 93, 1, 93, 3, 93, 2646, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2651, 8, 93, 1, 93, 1, 93, 3, 93, 2655, 8, 93, 1, 93, 3, 93, 2658, 8, 93, 1, 93, 3, 93, 2661, 8, 93, 1, 93, 3, 93, 2664, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2669, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2675, 8, 94, 1, 94, 1, 94, 3, 94, 2679, 8, 94, 1, 95, 1, 95, 3, 95, 2683, 8, 95, 1, 95, 1, 95, 3, 95, 2687, 8, 95, 1, 95, 1, 95, 4, 95, 2691, 8, 95, 11, 95, 12, 95, 2692, 3, 95, 2695, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2700, 8, 96, 1, 96, 1, 96, 4, 96, 2704, 8, 96, 11, 96, 12, 96, 2705, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2712, 8, 97, 1, 97, 1, 97, 3, 97, 2716, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2731, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2736, 8, 97, 1, 97, 3, 97, 2739, 8, 97, 3, 97, 2741, 8, 97, 1, 98, 3, 98, 2744, 8, 98, 1, 98, 1, 98, 3, 98, 2748, 8, 98, 1, 99, 1, 99, 3, 99, 2752, 8, 99, 1, 99, 3, 99, 2755, 8, 99, 1, 99, 3, 99, 2758, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2766, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2772, 8, 99, 3, 99, 2774, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2780, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2785, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2790, 8, 101, 1, 101, 1, 101, 3, 101, 2794, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2801, 8, 101, 10, 101, 12, 101, 2804, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2812, 8, 102, 10, 102, 12, 102, 2815, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2853, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2861, 8, 104, 11, 104, 12, 104, 2862, 3, 104, 2865, 8, 104, 1, 104, 3, 104, 2868, 8, 104, 1, 105, 1, 105, 3, 105, 2872, 8, 105, 1, 105, 1, 105, 3, 105, 2876, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2884, 8, 106, 11, 106, 12, 106, 2885, 3, 106, 2888, 8, 106, 1, 106, 1, 106, 4, 106, 2892, 8, 106, 11, 106, 12, 106, 2893, 3, 106, 2896, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2903, 8, 107, 10, 107, 12, 107, 2906, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2915, 8, 108, 10, 108, 12, 108, 2918, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2931, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2936, 8, 111, 1, 111, 3, 111, 2939, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2946, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2951, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2959, 8, 113, 3, 113, 2961, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2967, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2972, 8, 114, 1, 114, 1, 114, 3, 114, 2976, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2981, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2987, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2994, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3000, 8, 114, 3, 114, 3002, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3011, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3017, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3025, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3031, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3036, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3041, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3049, 8, 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, 3, 118, 3064, 8, 118, 3, 118, 3066, 8, 118, 1, 118, 1, 118, 3, 118, 3070, 8, 118, 1, 118, 1, 118, 3, 118, 3074, 8, 118, 1, 118, 3, 118, 3077, 8, 118, 1, 118, 3, 118, 3080, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3089, 8, 119, 1, 119, 3, 119, 3092, 8, 119, 1, 119, 3, 119, 3095, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3101, 8, 120, 1, 120, 1, 120, 5, 120, 3105, 8, 120, 10, 120, 12, 120, 3108, 9, 120, 1, 120, 3, 120, 3111, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3123, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3129, 8, 120, 1, 121, 3, 121, 3132, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3137, 8, 121, 1, 121, 1, 121, 3, 121, 3141, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3148, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3158, 8, 121, 3, 121, 3160, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3184, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3196, 8, 125, 1, 125, 4, 125, 3199, 8, 125, 11, 125, 12, 125, 3200, 3, 125, 3203, 8, 125, 1, 125, 1, 125, 3, 125, 3207, 8, 125, 1, 125, 3, 125, 3210, 8, 125, 1, 125, 3, 125, 3213, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3223, 8, 125, 1, 125, 3, 125, 3226, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3236, 8, 125, 1, 125, 5, 125, 3239, 8, 125, 10, 125, 12, 125, 3242, 9, 125, 1, 125, 1, 125, 3, 125, 3246, 8, 125, 1, 125, 3, 125, 3249, 8, 125, 1, 125, 3, 125, 3252, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3260, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3266, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3271, 8, 127, 10, 127, 12, 127, 3274, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3281, 8, 128, 1, 128, 3, 128, 3284, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3295, 8, 130, 1, 131, 1, 131, 3, 131, 3299, 8, 131, 1, 131, 1, 131, 5, 131, 3303, 8, 131, 10, 131, 12, 131, 3306, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3312, 8, 132, 1, 133, 3, 133, 3315, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3324, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3336, 8, 134, 10, 134, 12, 134, 3339, 9, 134, 3, 134, 3341, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3353, 8, 135, 10, 135, 12, 135, 3356, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3366, 8, 136, 1, 136, 3, 136, 3369, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3379, 8, 137, 10, 137, 12, 137, 3382, 9, 137, 1, 138, 1, 138, 3, 138, 3386, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3397, 8, 138, 10, 138, 12, 138, 3400, 9, 138, 1, 138, 1, 138, 3, 138, 3404, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3417, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3424, 8, 138, 10, 138, 12, 138, 3427, 9, 138, 3, 138, 3429, 8, 138, 1, 138, 3, 138, 3432, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3439, 8, 138, 1, 138, 3, 138, 3442, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3454, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3460, 8, 138, 3, 138, 3462, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3468, 8, 139, 10, 139, 12, 139, 3471, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3478, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3486, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3498, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3503, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3514, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3525, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3533, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3539, 8, 145, 10, 145, 12, 145, 3542, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3548, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3555, 8, 146, 3, 146, 3557, 8, 146, 1, 146, 3, 146, 3560, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3565, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3570, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3587, 8, 148, 10, 148, 12, 148, 3590, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3596, 8, 148, 10, 148, 12, 148, 3599, 9, 148, 3, 148, 3601, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3628, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3637, 8, 151, 1, 151, 3, 151, 3640, 8, 151, 1, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3657, 8, 151, 10, 151, 12, 151, 3660, 9, 151, 1, 151, 3, 151, 3663, 8, 151, 1, 151, 1, 151, 3, 151, 3667, 8, 151, 1, 151, 1, 151, 3, 151, 3671, 8, 151, 1, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3680, 8, 151, 1, 151, 1, 151, 3, 151, 3684, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3689, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3695, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3700, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3705, 8, 151, 10, 151, 12, 151, 3708, 9, 151, 1, 151, 3, 151, 3711, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3717, 8, 151, 1, 151, 1, 151, 3, 151, 3721, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3726, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3734, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3740, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3745, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3752, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3757, 8, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3766, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3772, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3779, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3784, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3791, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3796, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3803, 8, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3813, 8, 151, 10, 151, 12, 151, 3816, 9, 151, 1, 151, 3, 151, 3819, 8, 151, 3, 151, 3821, 8, 151, 1, 152, 3, 152, 3824, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3829, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3839, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3854, 8, 153, 1, 153, 3, 153, 3857, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3865, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3870, 8, 154, 10, 154, 12, 154, 3873, 9, 154, 1, 155, 1, 155, 3, 155, 3877, 8, 155, 1, 156, 1, 156, 4, 156, 3881, 8, 156, 11, 156, 12, 156, 3882, 1, 157, 1, 157, 3, 157, 3887, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3892, 8, 157, 10, 157, 12, 157, 3895, 9, 157, 1, 157, 1, 157, 3, 157, 3899, 8, 157, 1, 157, 3, 157, 3902, 8, 157, 1, 158, 3, 158, 3905, 8, 158, 1, 158, 1, 158, 3, 158, 3909, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3918, 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, 1, 159, 3, 159, 3936, 8, 159, 1, 159, 3, 159, 3939, 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, 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, 3971, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3976, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3982, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4002, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4007, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4013, 8, 162, 1, 162, 3, 162, 4016, 8, 162, 1, 162, 1, 162, 3, 162, 4020, 8, 162, 1, 162, 1, 162, 3, 162, 4024, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4030, 8, 162, 1, 162, 3, 162, 4033, 8, 162, 1, 162, 1, 162, 3, 162, 4037, 8, 162, 1, 162, 1, 162, 3, 162, 4041, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4046, 8, 162, 1, 162, 3, 162, 4049, 8, 162, 1, 162, 3, 162, 4052, 8, 162, 1, 162, 3, 162, 4055, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4068, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4074, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4082, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4087, 8, 166, 10, 166, 12, 166, 4090, 9, 166, 1, 166, 1, 166, 3, 166, 4094, 8, 166, 1, 166, 3, 166, 4097, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4102, 8, 166, 10, 166, 12, 166, 4105, 9, 166, 3, 166, 4107, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4115, 8, 168, 1, 168, 3, 168, 4118, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4123, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4130, 8, 169, 1, 169, 3, 169, 4133, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4151, 8, 169, 10, 169, 12, 169, 4154, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4165, 8, 169, 1, 170, 3, 170, 4168, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4174, 8, 170, 1, 170, 5, 170, 4177, 8, 170, 10, 170, 12, 170, 4180, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4186, 8, 171, 10, 171, 12, 171, 4189, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4196, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4201, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4207, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4212, 8, 172, 10, 172, 12, 172, 4215, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4222, 8, 172, 1, 172, 3, 172, 4225, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4236, 8, 173, 10, 173, 12, 173, 4239, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4252, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4258, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4266, 8, 174, 3, 174, 4268, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4274, 8, 176, 1, 176, 1, 176, 3, 176, 4278, 8, 176, 1, 176, 3, 176, 4281, 8, 176, 1, 176, 3, 176, 4284, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4289, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4294, 8, 176, 1, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 3, 176, 4301, 8, 176, 1, 176, 3, 176, 4304, 8, 176, 1, 176, 3, 176, 4307, 8, 176, 1, 176, 3, 176, 4310, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4316, 8, 177, 10, 177, 12, 177, 4319, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4329, 8, 178, 1, 178, 3, 178, 4332, 8, 178, 1, 178, 3, 178, 4335, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4340, 8, 178, 1, 178, 3, 178, 4343, 8, 178, 1, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 179, 1, 179, 3, 179, 4351, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4357, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4363, 8, 179, 10, 179, 12, 179, 4366, 9, 179, 3, 179, 4368, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4379, 8, 179, 10, 179, 12, 179, 4382, 9, 179, 1, 179, 1, 179, 3, 179, 4386, 8, 179, 3, 179, 4388, 8, 179, 1, 179, 4, 179, 4391, 8, 179, 11, 179, 12, 179, 4392, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4400, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4407, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4414, 8, 182, 10, 182, 12, 182, 4417, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4422, 8, 183, 10, 183, 12, 183, 4425, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4432, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4437, 8, 185, 10, 185, 12, 185, 4440, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4447, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4452, 8, 187, 10, 187, 12, 187, 4455, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4462, 8, 188, 1, 189, 1, 189, 3, 189, 4466, 8, 189, 1, 189, 1, 189, 3, 189, 4470, 8, 189, 3, 189, 4472, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4478, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4483, 8, 190, 1, 191, 1, 191, 3, 191, 4487, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4494, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4499, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4504, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4509, 8, 193, 3, 193, 4511, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4521, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4531, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4547, 8, 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, 5, 196, 4563, 8, 196, 10, 196, 12, 196, 4566, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4577, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4584, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4599, 8, 199, 1, 199, 4, 199, 4602, 8, 199, 11, 199, 12, 199, 4603, 1, 199, 3, 199, 4607, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4612, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4617, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4622, 8, 200, 1, 200, 3, 200, 4625, 8, 200, 1, 200, 3, 200, 4628, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4633, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4638, 8, 201, 10, 201, 12, 201, 4641, 9, 201, 1, 201, 3, 201, 4644, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4649, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4654, 8, 202, 10, 202, 12, 202, 4657, 9, 202, 1, 202, 3, 202, 4660, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4666, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4675, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4682, 8, 204, 10, 204, 12, 204, 4685, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4696, 8, 206, 11, 206, 12, 206, 4697, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4711, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4717, 8, 207, 1, 207, 1, 207, 3, 207, 4721, 8, 207, 3, 207, 4723, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4730, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4743, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4750, 8, 209, 3, 209, 4752, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4766, 8, 211, 10, 211, 12, 211, 4769, 9, 211, 1, 211, 3, 211, 4772, 8, 211, 1, 211, 1, 211, 3, 211, 4776, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4781, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4786, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4791, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4796, 8, 211, 1, 211, 3, 211, 4799, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4811, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4864, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4873, 8, 213, 1, 213, 1, 213, 3, 213, 4877, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4886, 8, 213, 1, 213, 1, 213, 3, 213, 4890, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4899, 8, 213, 1, 213, 1, 213, 3, 213, 4903, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4908, 8, 213, 1, 213, 3, 213, 4911, 8, 213, 1, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4920, 8, 213, 3, 213, 4922, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4931, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4936, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4947, 8, 213, 1, 213, 1, 213, 3, 213, 4951, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4965, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4973, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5011, 8, 213, 3, 213, 5013, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5032, 8, 214, 1, 214, 3, 214, 5035, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5062, 8, 215, 1, 215, 1, 215, 3, 215, 5066, 8, 215, 1, 215, 1, 215, 3, 215, 5070, 8, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 3, 215, 5081, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5096, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5103, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5115, 8, 217, 10, 217, 12, 217, 5118, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5130, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5155, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5174, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5189, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5205, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5212, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5223, 8, 221, 1, 221, 3, 221, 5226, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5243, 8, 222, 10, 222, 12, 222, 5246, 9, 222, 3, 222, 5248, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5259, 8, 223, 10, 223, 12, 223, 5262, 9, 223, 1, 223, 3, 223, 5265, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5285, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5295, 8, 224, 10, 224, 12, 224, 5298, 9, 224, 1, 224, 3, 224, 5301, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5323, 8, 224, 1, 225, 1, 225, 3, 225, 5327, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5337, 8, 225, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5347, 8, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 5, 225, 5353, 8, 225, 10, 225, 12, 225, 5356, 9, 225, 1, 225, 3, 225, 5359, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5366, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5371, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5382, 8, 230, 1, 231, 1, 231, 3, 231, 5386, 8, 231, 1, 231, 3, 231, 5389, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5394, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5400, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5411, 8, 231, 1, 231, 1, 231, 3, 231, 5415, 8, 231, 1, 231, 3, 231, 5418, 8, 231, 1, 231, 1, 231, 3, 231, 5422, 8, 231, 1, 231, 1, 231, 3, 231, 5426, 8, 231, 1, 231, 3, 231, 5429, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5439, 8, 233, 1, 233, 3, 233, 5442, 8, 233, 1, 234, 1, 234, 3, 234, 5446, 8, 234, 1, 234, 5, 234, 5449, 8, 234, 10, 234, 12, 234, 5452, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5457, 8, 235, 1, 235, 3, 235, 5460, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5465, 8, 235, 1, 235, 3, 235, 5468, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5475, 8, 235, 3, 235, 5477, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5483, 8, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5496, 8, 237, 1, 237, 4, 237, 5499, 8, 237, 11, 237, 12, 237, 5500, 3, 237, 5503, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5513, 8, 238, 1, 238, 3, 238, 5516, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5521, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5529, 8, 239, 1, 239, 3, 239, 5532, 8, 239, 1, 239, 4, 239, 5535, 8, 239, 11, 239, 12, 239, 5536, 3, 239, 5539, 8, 239, 3, 239, 5541, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5547, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5564, 8, 243, 1, 243, 1, 243, 5, 243, 5568, 8, 243, 10, 243, 12, 243, 5571, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5583, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5589, 8, 244, 1, 244, 1, 244, 3, 244, 5593, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5598, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 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, 5628, 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, 3, 246, 5643, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5648, 8, 246, 1, 247, 1, 247, 3, 247, 5652, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5665, 8, 248, 1, 248, 1, 248, 3, 248, 5669, 8, 248, 3, 248, 5671, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5678, 8, 248, 10, 248, 12, 248, 5681, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5686, 8, 248, 3, 248, 5688, 8, 248, 1, 249, 1, 249, 3, 249, 5692, 8, 249, 1, 249, 3, 249, 5695, 8, 249, 1, 249, 3, 249, 5698, 8, 249, 1, 249, 3, 249, 5701, 8, 249, 1, 249, 3, 249, 5704, 8, 249, 3, 249, 5706, 8, 249, 1, 249, 3, 249, 5709, 8, 249, 1, 250, 1, 250, 3, 250, 5713, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5719, 8, 250, 10, 250, 12, 250, 5722, 9, 250, 1, 250, 1, 250, 3, 250, 5726, 8, 250, 1, 250, 3, 250, 5729, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5735, 8, 252, 1, 252, 1, 252, 3, 252, 5739, 8, 252, 1, 253, 1, 253, 3, 253, 5743, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5748, 8, 253, 3, 253, 5750, 8, 253, 1, 254, 1, 254, 3, 254, 5754, 8, 254, 1, 255, 1, 255, 3, 255, 5758, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5763, 8, 256, 10, 256, 12, 256, 5766, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5771, 8, 257, 1, 257, 1, 257, 3, 257, 5775, 8, 257, 3, 257, 5777, 8, 257, 3, 257, 5779, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5792, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5798, 8, 259, 10, 259, 12, 259, 5801, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5808, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5817, 8, 261, 10, 261, 12, 261, 5820, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5829, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5834, 8, 263, 1, 263, 1, 263, 3, 263, 5838, 8, 263, 1, 263, 1, 263, 3, 263, 5842, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5849, 8, 263, 1, 263, 3, 263, 5852, 8, 263, 3, 263, 5854, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5862, 8, 265, 1, 265, 1, 265, 3, 265, 5866, 8, 265, 1, 266, 3, 266, 5869, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5876, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5883, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5888, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5895, 8, 266, 1, 266, 3, 266, 5898, 8, 266, 3, 266, 5900, 8, 266, 1, 266, 3, 266, 5903, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5909, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5914, 8, 267, 1, 267, 1, 267, 3, 267, 5918, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5923, 8, 268, 10, 268, 12, 268, 5926, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5935, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5942, 8, 271, 1, 271, 3, 271, 5945, 8, 271, 1, 271, 3, 271, 5948, 8, 271, 1, 272, 1, 272, 3, 272, 5952, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5963, 8, 272, 1, 272, 3, 272, 5966, 8, 272, 1, 272, 3, 272, 5969, 8, 272, 1, 272, 3, 272, 5972, 8, 272, 1, 273, 3, 273, 5975, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5982, 8, 273, 1, 273, 3, 273, 5985, 8, 273, 1, 273, 3, 273, 5988, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 5993, 8, 274, 10, 274, 12, 274, 5996, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6007, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6014, 8, 275, 3, 275, 6016, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6021, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6026, 8, 276, 10, 276, 12, 276, 6029, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6034, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6041, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6046, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6051, 8, 279, 1, 279, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 3, 279, 6059, 8, 279, 1, 279, 1, 279, 3, 279, 6063, 8, 279, 3, 279, 6065, 8, 279, 1, 280, 1, 280, 3, 280, 6069, 8, 280, 1, 281, 1, 281, 3, 281, 6073, 8, 281, 1, 281, 3, 281, 6076, 8, 281, 1, 281, 3, 281, 6079, 8, 281, 3, 281, 6081, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6091, 8, 281, 3, 281, 6093, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6098, 8, 281, 5, 281, 6100, 8, 281, 10, 281, 12, 281, 6103, 9, 281, 1, 282, 1, 282, 3, 282, 6107, 8, 282, 1, 283, 1, 283, 3, 283, 6111, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6116, 8, 283, 10, 283, 12, 283, 6119, 9, 283, 1, 284, 1, 284, 3, 284, 6123, 8, 284, 1, 284, 1, 284, 3, 284, 6127, 8, 284, 1, 284, 3, 284, 6130, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6136, 8, 284, 1, 284, 3, 284, 6139, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6158, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6165, 8, 287, 1, 287, 1, 287, 3, 287, 6169, 8, 287, 1, 288, 3, 288, 6172, 8, 288, 1, 288, 1, 288, 3, 288, 6176, 8, 288, 1, 288, 1, 288, 3, 288, 6180, 8, 288, 1, 288, 3, 288, 6183, 8, 288, 1, 288, 3, 288, 6186, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6191, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6198, 8, 290, 10, 290, 12, 290, 6201, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6207, 8, 291, 1, 291, 1, 291, 3, 291, 6211, 8, 291, 1, 292, 1, 292, 3, 292, 6215, 8, 292, 1, 292, 1, 292, 3, 292, 6219, 8, 292, 1, 292, 3, 292, 6222, 8, 292, 3, 292, 6224, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6229, 8, 293, 1, 293, 1, 293, 3, 293, 6233, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6238, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6244, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6251, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6256, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6261, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6268, 8, 298, 10, 298, 12, 298, 6271, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6277, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6283, 8, 299, 10, 299, 12, 299, 6286, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6296, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6301, 8, 300, 1, 300, 1, 300, 3, 300, 6305, 8, 300, 1, 300, 3, 300, 6308, 8, 300, 1, 300, 1, 300, 3, 300, 6312, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6317, 8, 300, 4, 300, 6319, 8, 300, 11, 300, 12, 300, 6320, 1, 300, 1, 300, 1, 300, 3, 300, 6326, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6332, 8, 301, 10, 301, 12, 301, 6335, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6343, 8, 303, 10, 303, 12, 303, 6346, 9, 303, 1, 304, 1, 304, 3, 304, 6350, 8, 304, 1, 304, 1, 304, 3, 304, 6354, 8, 304, 1, 304, 3, 304, 6357, 8, 304, 1, 304, 3, 304, 6360, 8, 304, 3, 304, 6362, 8, 304, 1, 304, 3, 304, 6365, 8, 304, 1, 304, 3, 304, 6368, 8, 304, 1, 304, 3, 304, 6371, 8, 304, 1, 304, 1, 304, 3, 304, 6375, 8, 304, 1, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 1, 304, 3, 304, 6383, 8, 304, 3, 304, 6385, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6394, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6399, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6405, 8, 304, 1, 304, 1, 304, 3, 304, 6409, 8, 304, 3, 304, 6411, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6418, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6423, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6429, 8, 304, 10, 304, 12, 304, 6432, 9, 304, 1, 305, 3, 305, 6435, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6442, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6447, 8, 306, 1, 306, 3, 306, 6450, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6456, 8, 306, 1, 307, 1, 307, 3, 307, 6460, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6466, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6475, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6481, 8, 309, 3, 309, 6483, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6488, 8, 310, 1, 310, 3, 310, 6491, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6500, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6507, 8, 310, 3, 310, 6509, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 6514, 8, 311, 10, 311, 12, 311, 6517, 9, 311, 1, 312, 1, 312, 3, 312, 6521, 8, 312, 1, 312, 3, 312, 6524, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6534, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 5, 314, 6543, 8, 314, 10, 314, 12, 314, 6546, 9, 314, 1, 314, 1, 314, 3, 314, 6550, 8, 314, 1, 314, 1, 314, 3, 314, 6554, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6562, 8, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6572, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6577, 8, 318, 10, 318, 12, 318, 6580, 9, 318, 1, 319, 1, 319, 1, 319, 3, 319, 6585, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6594, 8, 320, 10, 320, 12, 320, 6597, 9, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6602, 8, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6610, 8, 320, 10, 320, 12, 320, 6613, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6621, 8, 321, 1, 321, 1, 321, 3, 321, 6625, 8, 321, 1, 321, 4, 321, 6628, 8, 321, 11, 321, 12, 321, 6629, 3, 321, 6632, 8, 321, 1, 321, 1, 321, 3, 321, 6636, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6644, 8, 322, 1, 323, 3, 323, 6647, 8, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6652, 8, 323, 1, 323, 5, 323, 6655, 8, 323, 10, 323, 12, 323, 6658, 9, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6664, 8, 323, 3, 323, 6666, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6672, 8, 323, 1, 324, 1, 324, 3, 324, 6676, 8, 324, 1, 324, 3, 324, 6679, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6684, 8, 324, 1, 324, 3, 324, 6687, 8, 324, 3, 324, 6689, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6695, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6704, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6710, 8, 326, 1, 326, 3, 326, 6713, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 6721, 8, 328, 1, 328, 3, 328, 6724, 8, 328, 1, 329, 1, 329, 3, 329, 6728, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6734, 8, 329, 3, 329, 6736, 8, 329, 1, 329, 3, 329, 6739, 8, 329, 1, 330, 1, 330, 3, 330, 6743, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6748, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6755, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6762, 8, 331, 3, 331, 6764, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6770, 8, 331, 3, 331, 6772, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6777, 8, 331, 3, 331, 6779, 8, 331, 1, 332, 1, 332, 3, 332, 6783, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 3, 335, 6792, 8, 335, 1, 335, 1, 335, 3, 335, 6796, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 6804, 8, 335, 10, 335, 12, 335, 6807, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6820, 8, 336, 1, 336, 3, 336, 6823, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6831, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6838, 8, 336, 10, 336, 12, 336, 6841, 9, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6846, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6851, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6859, 8, 336, 3, 336, 6861, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6866, 8, 336, 1, 336, 1, 336, 3, 336, 6870, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6875, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6880, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6886, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6902, 8, 337, 10, 337, 12, 337, 6905, 9, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6913, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6928, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6933, 8, 338, 1, 338, 3, 338, 6936, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6942, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6947, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6960, 8, 338, 1, 338, 4, 338, 6963, 8, 338, 11, 338, 12, 338, 6964, 1, 338, 1, 338, 3, 338, 6969, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6976, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6995, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7007, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7012, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7020, 8, 338, 5, 338, 7022, 8, 338, 10, 338, 12, 338, 7025, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7033, 8, 339, 1, 339, 3, 339, 7036, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7041, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7046, 8, 339, 1, 339, 3, 339, 7049, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7060, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7068, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7073, 8, 340, 3, 340, 7075, 8, 340, 1, 340, 3, 340, 7078, 8, 340, 1, 341, 1, 341, 3, 341, 7082, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7093, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7114, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7122, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7135, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7145, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7151, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7157, 8, 342, 1, 342, 3, 342, 7160, 8, 342, 1, 342, 3, 342, 7163, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7189, 8, 342, 3, 342, 7191, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7212, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7222, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7235, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7240, 8, 342, 1, 342, 1, 342, 3, 342, 7244, 8, 342, 3, 342, 7246, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7258, 8, 342, 1, 343, 1, 343, 1, 343, 5, 343, 7263, 8, 343, 10, 343, 12, 343, 7266, 9, 343, 1, 344, 1, 344, 1, 344, 3, 344, 7271, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 7277, 8, 346, 1, 346, 1, 346, 3, 346, 7281, 8, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 5, 348, 7290, 8, 348, 10, 348, 12, 348, 7293, 9, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 7302, 8, 350, 1, 351, 1, 351, 3, 351, 7306, 8, 351, 1, 351, 1, 351, 1, 351, 3, 351, 7311, 8, 351, 1, 351, 3, 351, 7314, 8, 351, 1, 351, 3, 351, 7317, 8, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7326, 8, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7337, 8, 352, 3, 352, 7339, 8, 352, 1, 353, 1, 353, 3, 353, 7343, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7348, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7357, 8, 354, 1, 355, 1, 355, 1, 355, 3, 355, 7362, 8, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 357, 1, 357, 3, 357, 7370, 8, 357, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 7380, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7388, 8, 360, 1, 361, 1, 361, 3, 361, 7392, 8, 361, 1, 361, 3, 361, 7395, 8, 361, 1, 362, 1, 362, 1, 362, 5, 362, 7400, 8, 362, 10, 362, 12, 362, 7403, 9, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7410, 8, 363, 1, 364, 1, 364, 3, 364, 7414, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 7419, 8, 365, 10, 365, 12, 365, 7422, 9, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7429, 8, 366, 3, 366, 7431, 8, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 5, 367, 7438, 8, 367, 10, 367, 12, 367, 7441, 9, 367, 3, 367, 7443, 8, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7455, 8, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7464, 8, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7471, 8, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7480, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 3, 372, 7490, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7495, 8, 372, 1, 372, 1, 372, 3, 372, 7499, 8, 372, 3, 372, 7501, 8, 372, 1, 372, 3, 372, 7504, 8, 372, 1, 373, 4, 373, 7507, 8, 373, 11, 373, 12, 373, 7508, 1, 374, 5, 374, 7512, 8, 374, 10, 374, 12, 374, 7515, 9, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7520, 8, 375, 10, 375, 12, 375, 7523, 9, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7530, 8, 376, 1, 376, 3, 376, 7533, 8, 376, 1, 377, 1, 377, 1, 377, 5, 377, 7538, 8, 377, 10, 377, 12, 377, 7541, 9, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7546, 8, 378, 10, 378, 12, 378, 7549, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7554, 8, 379, 10, 379, 12, 379, 7557, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7562, 8, 380, 10, 380, 12, 380, 7565, 9, 380, 1, 381, 1, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 3, 387, 7581, 8, 387, 1, 388, 1, 388, 1, 388, 5, 388, 7586, 8, 388, 10, 388, 12, 388, 7589, 9, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7594, 8, 389, 10, 389, 12, 389, 7597, 9, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7613, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7619, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7625, 8, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7633, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7639, 8, 400, 1, 401, 1, 401, 1, 401, 3, 401, 7644, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7650, 8, 402, 10, 402, 12, 402, 7653, 9, 402, 1, 402, 1, 402, 3, 402, 7657, 8, 402, 1, 403, 3, 403, 7660, 8, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7669, 8, 404, 1, 405, 1, 405, 1, 405, 5, 405, 7674, 8, 405, 10, 405, 12, 405, 7677, 9, 405, 1, 406, 1, 406, 3, 406, 7681, 8, 406, 1, 407, 1, 407, 3, 407, 7685, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7690, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7696, 8, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7701, 8, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7709, 8, 410, 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, 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, 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, 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, 7764, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 3, 415, 7771, 8, 415, 1, 415, 1, 415, 1, 415, 1, 415, 4, 415, 7777, 8, 415, 11, 415, 12, 415, 7778, 3, 415, 7781, 8, 415, 3, 415, 7783, 8, 415, 1, 415, 1, 415, 5, 415, 7787, 8, 415, 10, 415, 12, 415, 7790, 9, 415, 1, 415, 3, 415, 7793, 8, 415, 1, 415, 1, 415, 3, 415, 7797, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7808, 8, 417, 1, 417, 3, 417, 7811, 8, 417, 1, 417, 1, 417, 3, 417, 7815, 8, 417, 1, 417, 1, 417, 3, 417, 7819, 8, 417, 1, 417, 1, 417, 3, 417, 7823, 8, 417, 1, 417, 3, 417, 7826, 8, 417, 1, 417, 3, 417, 7829, 8, 417, 1, 417, 3, 417, 7832, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 5, 417, 7839, 8, 417, 10, 417, 12, 417, 7842, 9, 417, 1, 417, 1, 417, 3, 417, 7846, 8, 417, 1, 417, 1, 417, 3, 417, 7850, 8, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7883, 8, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7893, 8, 422, 1, 422, 1, 422, 3, 422, 7897, 8, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7903, 8, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7908, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 3, 424, 7917, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 7923, 8, 424, 10, 424, 12, 424, 7926, 9, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 3, 426, 7936, 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 7942, 8, 426, 10, 426, 12, 426, 7945, 9, 426, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 7951, 8, 427, 10, 427, 12, 427, 7954, 9, 427, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 7960, 8, 427, 10, 427, 12, 427, 7963, 9, 427, 5, 427, 7965, 8, 427, 10, 427, 12, 427, 7968, 9, 427, 1, 427, 3, 427, 7971, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 5, 428, 7979, 8, 428, 10, 428, 12, 428, 7982, 9, 428, 1, 429, 1, 429, 3, 429, 7986, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7992, 8, 429, 10, 429, 12, 429, 7995, 9, 429, 4, 429, 7997, 8, 429, 11, 429, 12, 429, 7998, 1, 429, 3, 429, 8002, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 3, 430, 8009, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 8015, 8, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 3, 431, 8023, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 3, 431, 8031, 8, 431, 1, 431, 3, 431, 8034, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 3, 431, 8041, 8, 431, 3, 431, 8043, 8, 431, 1, 432, 3, 432, 8046, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 8052, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 3, 433, 8061, 8, 433, 1, 433, 1, 433, 3, 433, 8065, 8, 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, 3, 434, 8079, 8, 434, 1, 434, 3, 434, 8082, 8, 434, 3, 434, 8084, 8, 434, 1, 434, 1, 434, 1, 435, 1, 435, 3, 435, 8090, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 4, 435, 8098, 8, 435, 11, 435, 12, 435, 8099, 3, 435, 8102, 8, 435, 3, 435, 8104, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8110, 8, 435, 10, 435, 12, 435, 8113, 9, 435, 3, 435, 8115, 8, 435, 1, 435, 3, 435, 8118, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8128, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 5, 438, 8134, 8, 438, 10, 438, 12, 438, 8137, 9, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8142, 8, 438, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 8148, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 3, 440, 8155, 8, 440, 1, 440, 1, 440, 3, 440, 8159, 8, 440, 1, 440, 1, 440, 3, 440, 8163, 8, 440, 1, 440, 3, 440, 8166, 8, 440, 1, 440, 3, 440, 8169, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8175, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 3, 442, 8182, 8, 442, 1, 442, 3, 442, 8185, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 8193, 8, 442, 3, 442, 8195, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 8202, 8, 442, 10, 442, 12, 442, 8205, 9, 442, 1, 442, 1, 442, 3, 442, 8209, 8, 442, 3, 442, 8211, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 3, 443, 8218, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8224, 8, 444, 1, 444, 3, 444, 8227, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8239, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8246, 8, 445, 3, 445, 8248, 8, 445, 1, 446, 1, 446, 3, 446, 8252, 8, 446, 1, 446, 1, 446, 1, 446, 1, 447, 3, 447, 8258, 8, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8263, 8, 447, 1, 447, 1, 447, 3, 447, 8267, 8, 447, 1, 447, 3, 447, 8270, 8, 447, 1, 447, 3, 447, 8273, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 4, 447, 8280, 8, 447, 11, 447, 12, 447, 8281, 1, 447, 3, 447, 8285, 8, 447, 1, 448, 3, 448, 8288, 8, 448, 1, 448, 1, 448, 3, 448, 8292, 8, 448, 1, 448, 1, 448, 3, 448, 8296, 8, 448, 3, 448, 8298, 8, 448, 1, 448, 3, 448, 8301, 8, 448, 1, 448, 3, 448, 8304, 8, 448, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8310, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8317, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8324, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8330, 8, 449, 3, 449, 8332, 8, 449, 1, 450, 1, 450, 3, 450, 8336, 8, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8341, 8, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 5, 451, 8357, 8, 451, 10, 451, 12, 451, 8360, 9, 451, 1, 451, 1, 451, 4, 451, 8364, 8, 451, 11, 451, 12, 451, 8365, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 5, 452, 8373, 8, 452, 10, 452, 12, 452, 8376, 9, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8382, 8, 452, 1, 453, 1, 453, 3, 453, 8386, 8, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 3, 456, 8398, 8, 456, 1, 456, 3, 456, 8401, 8, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8414, 8, 457, 1, 457, 3, 457, 8417, 8, 457, 1, 458, 1, 458, 3, 458, 8421, 8, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 5, 459, 8428, 8, 459, 10, 459, 12, 459, 8431, 9, 459, 1, 459, 1, 459, 5, 459, 8435, 8, 459, 10, 459, 12, 459, 8438, 9, 459, 4, 459, 8440, 8, 459, 11, 459, 12, 459, 8441, 1, 460, 1, 460, 1, 460, 3, 460, 8447, 8, 460, 1, 461, 1, 461, 3, 461, 8451, 8, 461, 1, 462, 3, 462, 8454, 8, 462, 1, 462, 3, 462, 8457, 8, 462, 1, 462, 3, 462, 8460, 8, 462, 1, 462, 3, 462, 8463, 8, 462, 1, 462, 3, 462, 8466, 8, 462, 1, 462, 1, 462, 3, 462, 8470, 8, 462, 1, 462, 3, 462, 8473, 8, 462, 1, 462, 0, 3, 670, 674, 676, 463, 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, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 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, 158, 158, 277, 277, 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, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 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, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 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, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 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, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 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, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9915, 0, 929, 1, 0, 0, 0, 2, 934, 1, 0, 0, 0, 4, 1058, 1, 0, 0, 0, 6, 1060, 1, 0, 0, 0, 8, 1063, 1, 0, 0, 0, 10, 1113, 1, 0, 0, 0, 12, 1123, 1, 0, 0, 0, 14, 1125, 1, 0, 0, 0, 16, 1137, 1, 0, 0, 0, 18, 1149, 1, 0, 0, 0, 20, 1160, 1, 0, 0, 0, 22, 1194, 1, 0, 0, 0, 24, 1238, 1, 0, 0, 0, 26, 1240, 1, 0, 0, 0, 28, 1252, 1, 0, 0, 0, 30, 1259, 1, 0, 0, 0, 32, 1278, 1, 0, 0, 0, 34, 1286, 1, 0, 0, 0, 36, 1288, 1, 0, 0, 0, 38, 1302, 1, 0, 0, 0, 40, 1306, 1, 0, 0, 0, 42, 1343, 1, 0, 0, 0, 44, 1345, 1, 0, 0, 0, 46, 1353, 1, 0, 0, 0, 48, 1363, 1, 0, 0, 0, 50, 1370, 1, 0, 0, 0, 52, 1378, 1, 0, 0, 0, 54, 1384, 1, 0, 0, 0, 56, 1400, 1, 0, 0, 0, 58, 1404, 1, 0, 0, 0, 60, 1406, 1, 0, 0, 0, 62, 1418, 1, 0, 0, 0, 64, 1423, 1, 0, 0, 0, 66, 1428, 1, 0, 0, 0, 68, 1430, 1, 0, 0, 0, 70, 1442, 1, 0, 0, 0, 72, 1450, 1, 0, 0, 0, 74, 1452, 1, 0, 0, 0, 76, 1572, 1, 0, 0, 0, 78, 1574, 1, 0, 0, 0, 80, 1588, 1, 0, 0, 0, 82, 1590, 1, 0, 0, 0, 84, 1827, 1, 0, 0, 0, 86, 1834, 1, 0, 0, 0, 88, 1836, 1, 0, 0, 0, 90, 1838, 1, 0, 0, 0, 92, 1841, 1, 0, 0, 0, 94, 1852, 1, 0, 0, 0, 96, 1855, 1, 0, 0, 0, 98, 1885, 1, 0, 0, 0, 100, 1887, 1, 0, 0, 0, 102, 1928, 1, 0, 0, 0, 104, 1930, 1, 0, 0, 0, 106, 1984, 1, 0, 0, 0, 108, 2030, 1, 0, 0, 0, 110, 2051, 1, 0, 0, 0, 112, 2053, 1, 0, 0, 0, 114, 2070, 1, 0, 0, 0, 116, 2151, 1, 0, 0, 0, 118, 2153, 1, 0, 0, 0, 120, 2164, 1, 0, 0, 0, 122, 2187, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2207, 1, 0, 0, 0, 128, 2242, 1, 0, 0, 0, 130, 2335, 1, 0, 0, 0, 132, 2340, 1, 0, 0, 0, 134, 2342, 1, 0, 0, 0, 136, 2440, 1, 0, 0, 0, 138, 2442, 1, 0, 0, 0, 140, 2446, 1, 0, 0, 0, 142, 2457, 1, 0, 0, 0, 144, 2465, 1, 0, 0, 0, 146, 2468, 1, 0, 0, 0, 148, 2471, 1, 0, 0, 0, 150, 2489, 1, 0, 0, 0, 152, 2491, 1, 0, 0, 0, 154, 2495, 1, 0, 0, 0, 156, 2508, 1, 0, 0, 0, 158, 2510, 1, 0, 0, 0, 160, 2515, 1, 0, 0, 0, 162, 2535, 1, 0, 0, 0, 164, 2543, 1, 0, 0, 0, 166, 2550, 1, 0, 0, 0, 168, 2552, 1, 0, 0, 0, 170, 2561, 1, 0, 0, 0, 172, 2564, 1, 0, 0, 0, 174, 2568, 1, 0, 0, 0, 176, 2572, 1, 0, 0, 0, 178, 2597, 1, 0, 0, 0, 180, 2607, 1, 0, 0, 0, 182, 2621, 1, 0, 0, 0, 184, 2637, 1, 0, 0, 0, 186, 2643, 1, 0, 0, 0, 188, 2670, 1, 0, 0, 0, 190, 2680, 1, 0, 0, 0, 192, 2696, 1, 0, 0, 0, 194, 2740, 1, 0, 0, 0, 196, 2747, 1, 0, 0, 0, 198, 2749, 1, 0, 0, 0, 200, 2775, 1, 0, 0, 0, 202, 2786, 1, 0, 0, 0, 204, 2805, 1, 0, 0, 0, 206, 2816, 1, 0, 0, 0, 208, 2854, 1, 0, 0, 0, 210, 2875, 1, 0, 0, 0, 212, 2877, 1, 0, 0, 0, 214, 2897, 1, 0, 0, 0, 216, 2909, 1, 0, 0, 0, 218, 2921, 1, 0, 0, 0, 220, 2924, 1, 0, 0, 0, 222, 2927, 1, 0, 0, 0, 224, 2947, 1, 0, 0, 0, 226, 2952, 1, 0, 0, 0, 228, 3001, 1, 0, 0, 0, 230, 3003, 1, 0, 0, 0, 232, 3026, 1, 0, 0, 0, 234, 3042, 1, 0, 0, 0, 236, 3054, 1, 0, 0, 0, 238, 3081, 1, 0, 0, 0, 240, 3096, 1, 0, 0, 0, 242, 3159, 1, 0, 0, 0, 244, 3161, 1, 0, 0, 0, 246, 3166, 1, 0, 0, 0, 248, 3172, 1, 0, 0, 0, 250, 3259, 1, 0, 0, 0, 252, 3265, 1, 0, 0, 0, 254, 3267, 1, 0, 0, 0, 256, 3283, 1, 0, 0, 0, 258, 3285, 1, 0, 0, 0, 260, 3294, 1, 0, 0, 0, 262, 3298, 1, 0, 0, 0, 264, 3311, 1, 0, 0, 0, 266, 3323, 1, 0, 0, 0, 268, 3325, 1, 0, 0, 0, 270, 3347, 1, 0, 0, 0, 272, 3359, 1, 0, 0, 0, 274, 3370, 1, 0, 0, 0, 276, 3461, 1, 0, 0, 0, 278, 3463, 1, 0, 0, 0, 280, 3474, 1, 0, 0, 0, 282, 3485, 1, 0, 0, 0, 284, 3487, 1, 0, 0, 0, 286, 3513, 1, 0, 0, 0, 288, 3515, 1, 0, 0, 0, 290, 3519, 1, 0, 0, 0, 292, 3569, 1, 0, 0, 0, 294, 3571, 1, 0, 0, 0, 296, 3577, 1, 0, 0, 0, 298, 3602, 1, 0, 0, 0, 300, 3606, 1, 0, 0, 0, 302, 3820, 1, 0, 0, 0, 304, 3838, 1, 0, 0, 0, 306, 3864, 1, 0, 0, 0, 308, 3866, 1, 0, 0, 0, 310, 3874, 1, 0, 0, 0, 312, 3880, 1, 0, 0, 0, 314, 3884, 1, 0, 0, 0, 316, 3904, 1, 0, 0, 0, 318, 3910, 1, 0, 0, 0, 320, 3977, 1, 0, 0, 0, 322, 4008, 1, 0, 0, 0, 324, 4054, 1, 0, 0, 0, 326, 4056, 1, 0, 0, 0, 328, 4058, 1, 0, 0, 0, 330, 4069, 1, 0, 0, 0, 332, 4106, 1, 0, 0, 0, 334, 4108, 1, 0, 0, 0, 336, 4114, 1, 0, 0, 0, 338, 4164, 1, 0, 0, 0, 340, 4167, 1, 0, 0, 0, 342, 4181, 1, 0, 0, 0, 344, 4202, 1, 0, 0, 0, 346, 4226, 1, 0, 0, 0, 348, 4267, 1, 0, 0, 0, 350, 4269, 1, 0, 0, 0, 352, 4271, 1, 0, 0, 0, 354, 4311, 1, 0, 0, 0, 356, 4328, 1, 0, 0, 0, 358, 4348, 1, 0, 0, 0, 360, 4401, 1, 0, 0, 0, 362, 4404, 1, 0, 0, 0, 364, 4410, 1, 0, 0, 0, 366, 4418, 1, 0, 0, 0, 368, 4431, 1, 0, 0, 0, 370, 4433, 1, 0, 0, 0, 372, 4446, 1, 0, 0, 0, 374, 4448, 1, 0, 0, 0, 376, 4461, 1, 0, 0, 0, 378, 4471, 1, 0, 0, 0, 380, 4482, 1, 0, 0, 0, 382, 4493, 1, 0, 0, 0, 384, 4495, 1, 0, 0, 0, 386, 4500, 1, 0, 0, 0, 388, 4514, 1, 0, 0, 0, 390, 4546, 1, 0, 0, 0, 392, 4583, 1, 0, 0, 0, 394, 4585, 1, 0, 0, 0, 396, 4588, 1, 0, 0, 0, 398, 4591, 1, 0, 0, 0, 400, 4608, 1, 0, 0, 0, 402, 4629, 1, 0, 0, 0, 404, 4645, 1, 0, 0, 0, 406, 4661, 1, 0, 0, 0, 408, 4683, 1, 0, 0, 0, 410, 4688, 1, 0, 0, 0, 412, 4691, 1, 0, 0, 0, 414, 4699, 1, 0, 0, 0, 416, 4724, 1, 0, 0, 0, 418, 4727, 1, 0, 0, 0, 420, 4755, 1, 0, 0, 0, 422, 4760, 1, 0, 0, 0, 424, 4800, 1, 0, 0, 0, 426, 5012, 1, 0, 0, 0, 428, 5014, 1, 0, 0, 0, 430, 5102, 1, 0, 0, 0, 432, 5104, 1, 0, 0, 0, 434, 5110, 1, 0, 0, 0, 436, 5121, 1, 0, 0, 0, 438, 5131, 1, 0, 0, 0, 440, 5211, 1, 0, 0, 0, 442, 5213, 1, 0, 0, 0, 444, 5227, 1, 0, 0, 0, 446, 5249, 1, 0, 0, 0, 448, 5322, 1, 0, 0, 0, 450, 5324, 1, 0, 0, 0, 452, 5365, 1, 0, 0, 0, 454, 5367, 1, 0, 0, 0, 456, 5372, 1, 0, 0, 0, 458, 5375, 1, 0, 0, 0, 460, 5378, 1, 0, 0, 0, 462, 5428, 1, 0, 0, 0, 464, 5430, 1, 0, 0, 0, 466, 5441, 1, 0, 0, 0, 468, 5443, 1, 0, 0, 0, 470, 5453, 1, 0, 0, 0, 472, 5488, 1, 0, 0, 0, 474, 5491, 1, 0, 0, 0, 476, 5512, 1, 0, 0, 0, 478, 5522, 1, 0, 0, 0, 480, 5542, 1, 0, 0, 0, 482, 5548, 1, 0, 0, 0, 484, 5554, 1, 0, 0, 0, 486, 5559, 1, 0, 0, 0, 488, 5572, 1, 0, 0, 0, 490, 5599, 1, 0, 0, 0, 492, 5647, 1, 0, 0, 0, 494, 5649, 1, 0, 0, 0, 496, 5687, 1, 0, 0, 0, 498, 5689, 1, 0, 0, 0, 500, 5710, 1, 0, 0, 0, 502, 5730, 1, 0, 0, 0, 504, 5734, 1, 0, 0, 0, 506, 5749, 1, 0, 0, 0, 508, 5751, 1, 0, 0, 0, 510, 5755, 1, 0, 0, 0, 512, 5759, 1, 0, 0, 0, 514, 5767, 1, 0, 0, 0, 516, 5791, 1, 0, 0, 0, 518, 5793, 1, 0, 0, 0, 520, 5804, 1, 0, 0, 0, 522, 5812, 1, 0, 0, 0, 524, 5828, 1, 0, 0, 0, 526, 5853, 1, 0, 0, 0, 528, 5855, 1, 0, 0, 0, 530, 5859, 1, 0, 0, 0, 532, 5868, 1, 0, 0, 0, 534, 5908, 1, 0, 0, 0, 536, 5919, 1, 0, 0, 0, 538, 5927, 1, 0, 0, 0, 540, 5930, 1, 0, 0, 0, 542, 5934, 1, 0, 0, 0, 544, 5949, 1, 0, 0, 0, 546, 5974, 1, 0, 0, 0, 548, 5989, 1, 0, 0, 0, 550, 6015, 1, 0, 0, 0, 552, 6017, 1, 0, 0, 0, 554, 6040, 1, 0, 0, 0, 556, 6042, 1, 0, 0, 0, 558, 6050, 1, 0, 0, 0, 560, 6068, 1, 0, 0, 0, 562, 6092, 1, 0, 0, 0, 564, 6104, 1, 0, 0, 0, 566, 6108, 1, 0, 0, 0, 568, 6120, 1, 0, 0, 0, 570, 6140, 1, 0, 0, 0, 572, 6148, 1, 0, 0, 0, 574, 6162, 1, 0, 0, 0, 576, 6185, 1, 0, 0, 0, 578, 6187, 1, 0, 0, 0, 580, 6192, 1, 0, 0, 0, 582, 6202, 1, 0, 0, 0, 584, 6223, 1, 0, 0, 0, 586, 6225, 1, 0, 0, 0, 588, 6234, 1, 0, 0, 0, 590, 6245, 1, 0, 0, 0, 592, 6255, 1, 0, 0, 0, 594, 6257, 1, 0, 0, 0, 596, 6264, 1, 0, 0, 0, 598, 6295, 1, 0, 0, 0, 600, 6325, 1, 0, 0, 0, 602, 6327, 1, 0, 0, 0, 604, 6336, 1, 0, 0, 0, 606, 6339, 1, 0, 0, 0, 608, 6410, 1, 0, 0, 0, 610, 6434, 1, 0, 0, 0, 612, 6455, 1, 0, 0, 0, 614, 6457, 1, 0, 0, 0, 616, 6465, 1, 0, 0, 0, 618, 6482, 1, 0, 0, 0, 620, 6508, 1, 0, 0, 0, 622, 6510, 1, 0, 0, 0, 624, 6518, 1, 0, 0, 0, 626, 6525, 1, 0, 0, 0, 628, 6549, 1, 0, 0, 0, 630, 6555, 1, 0, 0, 0, 632, 6563, 1, 0, 0, 0, 634, 6566, 1, 0, 0, 0, 636, 6573, 1, 0, 0, 0, 638, 6581, 1, 0, 0, 0, 640, 6586, 1, 0, 0, 0, 642, 6616, 1, 0, 0, 0, 644, 6643, 1, 0, 0, 0, 646, 6671, 1, 0, 0, 0, 648, 6688, 1, 0, 0, 0, 650, 6694, 1, 0, 0, 0, 652, 6712, 1, 0, 0, 0, 654, 6714, 1, 0, 0, 0, 656, 6718, 1, 0, 0, 0, 658, 6735, 1, 0, 0, 0, 660, 6740, 1, 0, 0, 0, 662, 6778, 1, 0, 0, 0, 664, 6780, 1, 0, 0, 0, 666, 6784, 1, 0, 0, 0, 668, 6786, 1, 0, 0, 0, 670, 6795, 1, 0, 0, 0, 672, 6879, 1, 0, 0, 0, 674, 6885, 1, 0, 0, 0, 676, 6994, 1, 0, 0, 0, 678, 7026, 1, 0, 0, 0, 680, 7077, 1, 0, 0, 0, 682, 7081, 1, 0, 0, 0, 684, 7257, 1, 0, 0, 0, 686, 7259, 1, 0, 0, 0, 688, 7267, 1, 0, 0, 0, 690, 7272, 1, 0, 0, 0, 692, 7274, 1, 0, 0, 0, 694, 7282, 1, 0, 0, 0, 696, 7285, 1, 0, 0, 0, 698, 7294, 1, 0, 0, 0, 700, 7298, 1, 0, 0, 0, 702, 7303, 1, 0, 0, 0, 704, 7320, 1, 0, 0, 0, 706, 7347, 1, 0, 0, 0, 708, 7356, 1, 0, 0, 0, 710, 7358, 1, 0, 0, 0, 712, 7365, 1, 0, 0, 0, 714, 7369, 1, 0, 0, 0, 716, 7371, 1, 0, 0, 0, 718, 7379, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7394, 1, 0, 0, 0, 724, 7396, 1, 0, 0, 0, 726, 7409, 1, 0, 0, 0, 728, 7413, 1, 0, 0, 0, 730, 7415, 1, 0, 0, 0, 732, 7430, 1, 0, 0, 0, 734, 7432, 1, 0, 0, 0, 736, 7454, 1, 0, 0, 0, 738, 7456, 1, 0, 0, 0, 740, 7479, 1, 0, 0, 0, 742, 7481, 1, 0, 0, 0, 744, 7503, 1, 0, 0, 0, 746, 7506, 1, 0, 0, 0, 748, 7513, 1, 0, 0, 0, 750, 7516, 1, 0, 0, 0, 752, 7532, 1, 0, 0, 0, 754, 7534, 1, 0, 0, 0, 756, 7542, 1, 0, 0, 0, 758, 7550, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7566, 1, 0, 0, 0, 764, 7568, 1, 0, 0, 0, 766, 7570, 1, 0, 0, 0, 768, 7572, 1, 0, 0, 0, 770, 7574, 1, 0, 0, 0, 772, 7576, 1, 0, 0, 0, 774, 7578, 1, 0, 0, 0, 776, 7582, 1, 0, 0, 0, 778, 7590, 1, 0, 0, 0, 780, 7598, 1, 0, 0, 0, 782, 7600, 1, 0, 0, 0, 784, 7602, 1, 0, 0, 0, 786, 7604, 1, 0, 0, 0, 788, 7606, 1, 0, 0, 0, 790, 7612, 1, 0, 0, 0, 792, 7618, 1, 0, 0, 0, 794, 7624, 1, 0, 0, 0, 796, 7626, 1, 0, 0, 0, 798, 7632, 1, 0, 0, 0, 800, 7638, 1, 0, 0, 0, 802, 7640, 1, 0, 0, 0, 804, 7656, 1, 0, 0, 0, 806, 7659, 1, 0, 0, 0, 808, 7668, 1, 0, 0, 0, 810, 7670, 1, 0, 0, 0, 812, 7680, 1, 0, 0, 0, 814, 7684, 1, 0, 0, 0, 816, 7689, 1, 0, 0, 0, 818, 7695, 1, 0, 0, 0, 820, 7708, 1, 0, 0, 0, 822, 7710, 1, 0, 0, 0, 824, 7763, 1, 0, 0, 0, 826, 7765, 1, 0, 0, 0, 828, 7767, 1, 0, 0, 0, 830, 7770, 1, 0, 0, 0, 832, 7798, 1, 0, 0, 0, 834, 7802, 1, 0, 0, 0, 836, 7853, 1, 0, 0, 0, 838, 7856, 1, 0, 0, 0, 840, 7882, 1, 0, 0, 0, 842, 7884, 1, 0, 0, 0, 844, 7907, 1, 0, 0, 0, 846, 7909, 1, 0, 0, 0, 848, 7914, 1, 0, 0, 0, 850, 7929, 1, 0, 0, 0, 852, 7935, 1, 0, 0, 0, 854, 7946, 1, 0, 0, 0, 856, 7976, 1, 0, 0, 0, 858, 7983, 1, 0, 0, 0, 860, 8008, 1, 0, 0, 0, 862, 8018, 1, 0, 0, 0, 864, 8045, 1, 0, 0, 0, 866, 8058, 1, 0, 0, 0, 868, 8068, 1, 0, 0, 0, 870, 8087, 1, 0, 0, 0, 872, 8119, 1, 0, 0, 0, 874, 8123, 1, 0, 0, 0, 876, 8131, 1, 0, 0, 0, 878, 8145, 1, 0, 0, 0, 880, 8151, 1, 0, 0, 0, 882, 8172, 1, 0, 0, 0, 884, 8178, 1, 0, 0, 0, 886, 8217, 1, 0, 0, 0, 888, 8221, 1, 0, 0, 0, 890, 8247, 1, 0, 0, 0, 892, 8249, 1, 0, 0, 0, 894, 8257, 1, 0, 0, 0, 896, 8297, 1, 0, 0, 0, 898, 8331, 1, 0, 0, 0, 900, 8333, 1, 0, 0, 0, 902, 8344, 1, 0, 0, 0, 904, 8381, 1, 0, 0, 0, 906, 8385, 1, 0, 0, 0, 908, 8387, 1, 0, 0, 0, 910, 8391, 1, 0, 0, 0, 912, 8394, 1, 0, 0, 0, 914, 8416, 1, 0, 0, 0, 916, 8420, 1, 0, 0, 0, 918, 8422, 1, 0, 0, 0, 920, 8446, 1, 0, 0, 0, 922, 8450, 1, 0, 0, 0, 924, 8453, 1, 0, 0, 0, 926, 928, 3, 2, 1, 0, 927, 926, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 0, 0, 1, 933, 1, 1, 0, 0, 0, 934, 936, 3, 4, 2, 0, 935, 937, 5, 7, 0, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 3, 1, 0, 0, 0, 938, 1059, 3, 272, 136, 0, 939, 1059, 3, 482, 241, 0, 940, 1059, 3, 478, 239, 0, 941, 1059, 3, 480, 240, 0, 942, 1059, 3, 346, 173, 0, 943, 1059, 3, 488, 244, 0, 944, 1059, 3, 286, 143, 0, 945, 1059, 3, 204, 102, 0, 946, 1059, 3, 206, 103, 0, 947, 1059, 3, 212, 106, 0, 948, 1059, 3, 226, 113, 0, 949, 1059, 3, 398, 199, 0, 950, 1059, 3, 28, 14, 0, 951, 1059, 3, 428, 214, 0, 952, 1059, 3, 430, 215, 0, 953, 1059, 3, 440, 220, 0, 954, 1059, 3, 432, 216, 0, 955, 1059, 3, 438, 219, 0, 956, 1059, 3, 238, 119, 0, 957, 1059, 3, 240, 120, 0, 958, 1059, 3, 192, 96, 0, 959, 1059, 3, 484, 242, 0, 960, 1059, 3, 76, 38, 0, 961, 1059, 3, 424, 212, 0, 962, 1059, 3, 100, 50, 0, 963, 1059, 3, 444, 222, 0, 964, 1059, 3, 18, 9, 0, 965, 1059, 3, 20, 10, 0, 966, 1059, 3, 16, 8, 0, 967, 1059, 3, 448, 224, 0, 968, 1059, 3, 178, 89, 0, 969, 1059, 3, 492, 246, 0, 970, 1059, 3, 490, 245, 0, 971, 1059, 3, 234, 117, 0, 972, 1059, 3, 500, 250, 0, 973, 1059, 3, 6, 3, 0, 974, 1059, 3, 72, 36, 0, 975, 1059, 3, 104, 52, 0, 976, 1059, 3, 496, 248, 0, 977, 1059, 3, 318, 159, 0, 978, 1059, 3, 70, 35, 0, 979, 1059, 3, 106, 53, 0, 980, 1059, 3, 248, 124, 0, 981, 1059, 3, 180, 90, 0, 982, 1059, 3, 274, 137, 0, 983, 1059, 3, 414, 207, 0, 984, 1059, 3, 494, 247, 0, 985, 1059, 3, 486, 243, 0, 986, 1059, 3, 202, 101, 0, 987, 1059, 3, 208, 104, 0, 988, 1059, 3, 222, 111, 0, 989, 1059, 3, 228, 114, 0, 990, 1059, 3, 358, 179, 0, 991, 1059, 3, 26, 13, 0, 992, 1059, 3, 186, 93, 0, 993, 1059, 3, 290, 145, 0, 994, 1059, 3, 294, 147, 0, 995, 1059, 3, 442, 221, 0, 996, 1059, 3, 296, 148, 0, 997, 1059, 3, 236, 118, 0, 998, 1059, 3, 198, 99, 0, 999, 1059, 3, 30, 15, 0, 1000, 1059, 3, 190, 95, 0, 1001, 1059, 3, 114, 57, 0, 1002, 1059, 3, 446, 223, 0, 1003, 1059, 3, 176, 88, 0, 1004, 1059, 3, 200, 100, 0, 1005, 1059, 3, 418, 209, 0, 1006, 1059, 3, 250, 125, 0, 1007, 1059, 3, 268, 134, 0, 1008, 1059, 3, 8, 4, 0, 1009, 1059, 3, 14, 7, 0, 1010, 1059, 3, 232, 116, 0, 1011, 1059, 3, 474, 237, 0, 1012, 1059, 3, 530, 265, 0, 1013, 1059, 3, 552, 276, 0, 1014, 1059, 3, 276, 138, 0, 1015, 1059, 3, 542, 271, 0, 1016, 1059, 3, 74, 37, 0, 1017, 1059, 3, 412, 206, 0, 1018, 1059, 3, 302, 151, 0, 1019, 1059, 3, 526, 263, 0, 1020, 1059, 3, 514, 257, 0, 1021, 1059, 3, 322, 161, 0, 1022, 1059, 3, 328, 164, 0, 1023, 1059, 3, 342, 171, 0, 1024, 1059, 3, 894, 447, 0, 1025, 1059, 3, 230, 115, 0, 1026, 1059, 3, 352, 176, 0, 1027, 1059, 3, 532, 266, 0, 1028, 1059, 3, 458, 229, 0, 1029, 1059, 3, 188, 94, 0, 1030, 1059, 3, 472, 236, 0, 1031, 1059, 3, 544, 272, 0, 1032, 1059, 3, 454, 227, 0, 1033, 1059, 3, 520, 260, 0, 1034, 1059, 3, 300, 150, 0, 1035, 1059, 3, 422, 211, 0, 1036, 1059, 3, 402, 201, 0, 1037, 1059, 3, 400, 200, 0, 1038, 1059, 3, 404, 202, 0, 1039, 1059, 3, 426, 213, 0, 1040, 1059, 3, 330, 165, 0, 1041, 1059, 3, 344, 172, 0, 1042, 1059, 3, 450, 225, 0, 1043, 1059, 3, 320, 160, 0, 1044, 1059, 3, 554, 277, 0, 1045, 1059, 3, 462, 231, 0, 1046, 1059, 3, 314, 157, 0, 1047, 1059, 3, 460, 230, 0, 1048, 1059, 3, 546, 273, 0, 1049, 1059, 3, 498, 249, 0, 1050, 1059, 3, 60, 30, 0, 1051, 1059, 3, 36, 18, 0, 1052, 1059, 3, 68, 34, 0, 1053, 1059, 3, 470, 235, 0, 1054, 1056, 5, 584, 0, 0, 1055, 1057, 5, 585, 0, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 1, 0, 0, 0, 1058, 938, 1, 0, 0, 0, 1058, 939, 1, 0, 0, 0, 1058, 940, 1, 0, 0, 0, 1058, 941, 1, 0, 0, 0, 1058, 942, 1, 0, 0, 0, 1058, 943, 1, 0, 0, 0, 1058, 944, 1, 0, 0, 0, 1058, 945, 1, 0, 0, 0, 1058, 946, 1, 0, 0, 0, 1058, 947, 1, 0, 0, 0, 1058, 948, 1, 0, 0, 0, 1058, 949, 1, 0, 0, 0, 1058, 950, 1, 0, 0, 0, 1058, 951, 1, 0, 0, 0, 1058, 952, 1, 0, 0, 0, 1058, 953, 1, 0, 0, 0, 1058, 954, 1, 0, 0, 0, 1058, 955, 1, 0, 0, 0, 1058, 956, 1, 0, 0, 0, 1058, 957, 1, 0, 0, 0, 1058, 958, 1, 0, 0, 0, 1058, 959, 1, 0, 0, 0, 1058, 960, 1, 0, 0, 0, 1058, 961, 1, 0, 0, 0, 1058, 962, 1, 0, 0, 0, 1058, 963, 1, 0, 0, 0, 1058, 964, 1, 0, 0, 0, 1058, 965, 1, 0, 0, 0, 1058, 966, 1, 0, 0, 0, 1058, 967, 1, 0, 0, 0, 1058, 968, 1, 0, 0, 0, 1058, 969, 1, 0, 0, 0, 1058, 970, 1, 0, 0, 0, 1058, 971, 1, 0, 0, 0, 1058, 972, 1, 0, 0, 0, 1058, 973, 1, 0, 0, 0, 1058, 974, 1, 0, 0, 0, 1058, 975, 1, 0, 0, 0, 1058, 976, 1, 0, 0, 0, 1058, 977, 1, 0, 0, 0, 1058, 978, 1, 0, 0, 0, 1058, 979, 1, 0, 0, 0, 1058, 980, 1, 0, 0, 0, 1058, 981, 1, 0, 0, 0, 1058, 982, 1, 0, 0, 0, 1058, 983, 1, 0, 0, 0, 1058, 984, 1, 0, 0, 0, 1058, 985, 1, 0, 0, 0, 1058, 986, 1, 0, 0, 0, 1058, 987, 1, 0, 0, 0, 1058, 988, 1, 0, 0, 0, 1058, 989, 1, 0, 0, 0, 1058, 990, 1, 0, 0, 0, 1058, 991, 1, 0, 0, 0, 1058, 992, 1, 0, 0, 0, 1058, 993, 1, 0, 0, 0, 1058, 994, 1, 0, 0, 0, 1058, 995, 1, 0, 0, 0, 1058, 996, 1, 0, 0, 0, 1058, 997, 1, 0, 0, 0, 1058, 998, 1, 0, 0, 0, 1058, 999, 1, 0, 0, 0, 1058, 1000, 1, 0, 0, 0, 1058, 1001, 1, 0, 0, 0, 1058, 1002, 1, 0, 0, 0, 1058, 1003, 1, 0, 0, 0, 1058, 1004, 1, 0, 0, 0, 1058, 1005, 1, 0, 0, 0, 1058, 1006, 1, 0, 0, 0, 1058, 1007, 1, 0, 0, 0, 1058, 1008, 1, 0, 0, 0, 1058, 1009, 1, 0, 0, 0, 1058, 1010, 1, 0, 0, 0, 1058, 1011, 1, 0, 0, 0, 1058, 1012, 1, 0, 0, 0, 1058, 1013, 1, 0, 0, 0, 1058, 1014, 1, 0, 0, 0, 1058, 1015, 1, 0, 0, 0, 1058, 1016, 1, 0, 0, 0, 1058, 1017, 1, 0, 0, 0, 1058, 1018, 1, 0, 0, 0, 1058, 1019, 1, 0, 0, 0, 1058, 1020, 1, 0, 0, 0, 1058, 1021, 1, 0, 0, 0, 1058, 1022, 1, 0, 0, 0, 1058, 1023, 1, 0, 0, 0, 1058, 1024, 1, 0, 0, 0, 1058, 1025, 1, 0, 0, 0, 1058, 1026, 1, 0, 0, 0, 1058, 1027, 1, 0, 0, 0, 1058, 1028, 1, 0, 0, 0, 1058, 1029, 1, 0, 0, 0, 1058, 1030, 1, 0, 0, 0, 1058, 1031, 1, 0, 0, 0, 1058, 1032, 1, 0, 0, 0, 1058, 1033, 1, 0, 0, 0, 1058, 1034, 1, 0, 0, 0, 1058, 1035, 1, 0, 0, 0, 1058, 1036, 1, 0, 0, 0, 1058, 1037, 1, 0, 0, 0, 1058, 1038, 1, 0, 0, 0, 1058, 1039, 1, 0, 0, 0, 1058, 1040, 1, 0, 0, 0, 1058, 1041, 1, 0, 0, 0, 1058, 1042, 1, 0, 0, 0, 1058, 1043, 1, 0, 0, 0, 1058, 1044, 1, 0, 0, 0, 1058, 1045, 1, 0, 0, 0, 1058, 1046, 1, 0, 0, 0, 1058, 1047, 1, 0, 0, 0, 1058, 1048, 1, 0, 0, 0, 1058, 1049, 1, 0, 0, 0, 1058, 1050, 1, 0, 0, 0, 1058, 1051, 1, 0, 0, 0, 1058, 1052, 1, 0, 0, 0, 1058, 1053, 1, 0, 0, 0, 1058, 1054, 1, 0, 0, 0, 1059, 5, 1, 0, 0, 0, 1060, 1061, 5, 433, 0, 0, 1061, 1062, 3, 678, 339, 0, 1062, 7, 1, 0, 0, 0, 1063, 1064, 5, 46, 0, 0, 1064, 1065, 5, 318, 0, 0, 1065, 1067, 3, 808, 404, 0, 1066, 1068, 5, 105, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1072, 1, 0, 0, 0, 1069, 1071, 3, 12, 6, 0, 1070, 1069, 1, 0, 0, 0, 1071, 1074, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 9, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1078, 5, 287, 0, 0, 1076, 1079, 3, 802, 401, 0, 1077, 1079, 5, 78, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1114, 1, 0, 0, 0, 1080, 1081, 7, 0, 0, 0, 1081, 1082, 5, 287, 0, 0, 1082, 1114, 3, 802, 401, 0, 1083, 1114, 5, 228, 0, 0, 1084, 1114, 5, 229, 0, 0, 1085, 1114, 5, 236, 0, 0, 1086, 1114, 5, 237, 0, 0, 1087, 1114, 5, 234, 0, 0, 1088, 1114, 5, 235, 0, 0, 1089, 1114, 5, 232, 0, 0, 1090, 1114, 5, 233, 0, 0, 1091, 1114, 5, 230, 0, 0, 1092, 1114, 5, 231, 0, 0, 1093, 1114, 5, 535, 0, 0, 1094, 1114, 5, 536, 0, 0, 1095, 1114, 5, 537, 0, 0, 1096, 1114, 5, 538, 0, 0, 1097, 1114, 5, 539, 0, 0, 1098, 1114, 5, 540, 0, 0, 1099, 1100, 5, 164, 0, 0, 1100, 1101, 5, 74, 0, 0, 1101, 1114, 3, 806, 403, 0, 1102, 1103, 5, 371, 0, 0, 1103, 1104, 5, 368, 0, 0, 1104, 1114, 3, 802, 401, 0, 1105, 1106, 5, 68, 0, 0, 1106, 1107, 7, 1, 0, 0, 1107, 1114, 3, 778, 389, 0, 1108, 1109, 7, 2, 0, 0, 1109, 1114, 3, 810, 405, 0, 1110, 1111, 5, 134, 0, 0, 1111, 1114, 3, 778, 389, 0, 1112, 1114, 3, 820, 410, 0, 1113, 1075, 1, 0, 0, 0, 1113, 1080, 1, 0, 0, 0, 1113, 1083, 1, 0, 0, 0, 1113, 1084, 1, 0, 0, 0, 1113, 1085, 1, 0, 0, 0, 1113, 1086, 1, 0, 0, 0, 1113, 1087, 1, 0, 0, 0, 1113, 1088, 1, 0, 0, 0, 1113, 1089, 1, 0, 0, 0, 1113, 1090, 1, 0, 0, 0, 1113, 1091, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1113, 1093, 1, 0, 0, 0, 1113, 1094, 1, 0, 0, 0, 1113, 1095, 1, 0, 0, 0, 1113, 1096, 1, 0, 0, 0, 1113, 1097, 1, 0, 0, 0, 1113, 1098, 1, 0, 0, 0, 1113, 1099, 1, 0, 0, 0, 1113, 1102, 1, 0, 0, 0, 1113, 1105, 1, 0, 0, 0, 1113, 1108, 1, 0, 0, 0, 1113, 1110, 1, 0, 0, 0, 1113, 1112, 1, 0, 0, 0, 1114, 11, 1, 0, 0, 0, 1115, 1124, 3, 10, 5, 0, 1116, 1117, 5, 348, 0, 0, 1117, 1124, 5, 574, 0, 0, 1118, 1119, 7, 3, 0, 0, 1119, 1124, 3, 810, 405, 0, 1120, 1121, 5, 68, 0, 0, 1121, 1122, 7, 1, 0, 0, 1122, 1124, 3, 810, 405, 0, 1123, 1115, 1, 0, 0, 0, 1123, 1116, 1, 0, 0, 0, 1123, 1118, 1, 0, 0, 0, 1123, 1120, 1, 0, 0, 0, 1124, 13, 1, 0, 0, 0, 1125, 1126, 5, 46, 0, 0, 1126, 1127, 5, 99, 0, 0, 1127, 1129, 3, 808, 404, 0, 1128, 1130, 5, 105, 0, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1134, 1, 0, 0, 0, 1131, 1133, 3, 12, 6, 0, 1132, 1131, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 15, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1138, 5, 138, 0, 0, 1138, 1139, 7, 2, 0, 0, 1139, 1141, 3, 808, 404, 0, 1140, 1142, 5, 105, 0, 0, 1141, 1140, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1146, 1, 0, 0, 0, 1143, 1145, 3, 10, 5, 0, 1144, 1143, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 17, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1150, 5, 138, 0, 0, 1150, 1153, 7, 2, 0, 0, 1151, 1154, 5, 30, 0, 0, 1152, 1154, 3, 808, 404, 0, 1153, 1151, 1, 0, 0, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 5, 68, 0, 0, 1156, 1157, 5, 175, 0, 0, 1157, 1158, 3, 782, 391, 0, 1158, 1159, 3, 64, 32, 0, 1159, 19, 1, 0, 0, 0, 1160, 1161, 5, 138, 0, 0, 1161, 1162, 5, 442, 0, 0, 1162, 1164, 3, 788, 394, 0, 1163, 1165, 3, 362, 181, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 3, 22, 11, 0, 1167, 21, 1, 0, 0, 0, 1168, 1172, 3, 24, 12, 0, 1169, 1171, 3, 24, 12, 0, 1170, 1169, 1, 0, 0, 0, 1171, 1174, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1176, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1177, 5, 315, 0, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1195, 1, 0, 0, 0, 1178, 1179, 5, 309, 0, 0, 1179, 1180, 5, 94, 0, 0, 1180, 1195, 3, 786, 393, 0, 1181, 1182, 5, 282, 0, 0, 1182, 1183, 5, 94, 0, 0, 1183, 1195, 3, 808, 404, 0, 1184, 1185, 5, 333, 0, 0, 1185, 1186, 5, 323, 0, 0, 1186, 1195, 3, 32, 16, 0, 1187, 1189, 5, 269, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 5, 462, 0, 0, 1191, 1192, 5, 80, 0, 0, 1192, 1193, 5, 204, 0, 0, 1193, 1195, 3, 812, 406, 0, 1194, 1168, 1, 0, 0, 0, 1194, 1178, 1, 0, 0, 0, 1194, 1181, 1, 0, 0, 0, 1194, 1184, 1, 0, 0, 0, 1194, 1188, 1, 0, 0, 0, 1195, 23, 1, 0, 0, 0, 1196, 1239, 5, 222, 0, 0, 1197, 1239, 5, 338, 0, 0, 1198, 1239, 5, 377, 0, 0, 1199, 1201, 5, 77, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1239, 5, 250, 0, 0, 1203, 1205, 5, 205, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 5, 327, 0, 0, 1207, 1214, 5, 243, 0, 0, 1208, 1210, 5, 205, 0, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 5, 327, 0, 0, 1212, 1214, 5, 181, 0, 0, 1213, 1204, 1, 0, 0, 0, 1213, 1209, 1, 0, 0, 0, 1214, 1239, 1, 0, 0, 0, 1215, 1216, 5, 460, 0, 0, 1216, 1239, 7, 4, 0, 0, 1217, 1218, 5, 170, 0, 0, 1218, 1239, 3, 818, 409, 0, 1219, 1220, 5, 320, 0, 0, 1220, 1239, 3, 812, 406, 0, 1221, 1222, 5, 333, 0, 0, 1222, 1223, 3, 812, 406, 0, 1223, 1226, 7, 5, 0, 0, 1224, 1227, 3, 812, 406, 0, 1225, 1227, 5, 53, 0, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1225, 1, 0, 0, 0, 1227, 1239, 1, 0, 0, 0, 1228, 1229, 5, 333, 0, 0, 1229, 1230, 3, 812, 406, 0, 1230, 1231, 5, 64, 0, 0, 1231, 1232, 5, 434, 0, 0, 1232, 1239, 1, 0, 0, 0, 1233, 1236, 5, 313, 0, 0, 1234, 1237, 3, 812, 406, 0, 1235, 1237, 5, 30, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1196, 1, 0, 0, 0, 1238, 1197, 1, 0, 0, 0, 1238, 1198, 1, 0, 0, 0, 1238, 1200, 1, 0, 0, 0, 1238, 1213, 1, 0, 0, 0, 1238, 1215, 1, 0, 0, 0, 1238, 1217, 1, 0, 0, 0, 1238, 1219, 1, 0, 0, 0, 1238, 1221, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1233, 1, 0, 0, 0, 1239, 25, 1, 0, 0, 0, 1240, 1241, 5, 46, 0, 0, 1241, 1242, 5, 66, 0, 0, 1242, 1244, 3, 808, 404, 0, 1243, 1245, 5, 105, 0, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1249, 1, 0, 0, 0, 1246, 1248, 3, 12, 6, 0, 1247, 1246, 1, 0, 0, 0, 1248, 1251, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 27, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1253, 5, 138, 0, 0, 1253, 1254, 5, 66, 0, 0, 1254, 1255, 3, 808, 404, 0, 1255, 1256, 7, 6, 0, 0, 1256, 1257, 5, 99, 0, 0, 1257, 1258, 3, 810, 405, 0, 1258, 29, 1, 0, 0, 0, 1259, 1260, 5, 46, 0, 0, 1260, 1262, 5, 323, 0, 0, 1261, 1263, 3, 288, 144, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1270, 1, 0, 0, 0, 1264, 1266, 3, 32, 16, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 5, 106, 0, 0, 1268, 1271, 3, 808, 404, 0, 1269, 1271, 3, 32, 16, 0, 1270, 1265, 1, 0, 0, 0, 1270, 1269, 1, 0, 0, 0, 1271, 1275, 1, 0, 0, 0, 1272, 1274, 3, 34, 17, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 31, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 3, 310, 155, 0, 1279, 33, 1, 0, 0, 0, 1280, 1287, 3, 114, 57, 0, 1281, 1287, 3, 352, 176, 0, 1282, 1287, 3, 190, 95, 0, 1283, 1287, 3, 250, 125, 0, 1284, 1287, 3, 328, 164, 0, 1285, 1287, 3, 470, 235, 0, 1286, 1280, 1, 0, 0, 0, 1286, 1281, 1, 0, 0, 0, 1286, 1282, 1, 0, 0, 0, 1286, 1283, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1286, 1285, 1, 0, 0, 0, 1287, 35, 1, 0, 0, 0, 1288, 1290, 5, 333, 0, 0, 1289, 1291, 7, 7, 0, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 38, 19, 0, 1293, 37, 1, 0, 0, 0, 1294, 1295, 5, 356, 0, 0, 1295, 1303, 3, 468, 234, 0, 1296, 1297, 5, 332, 0, 0, 1297, 1298, 5, 154, 0, 0, 1298, 1299, 5, 36, 0, 0, 1299, 1300, 5, 356, 0, 0, 1300, 1303, 3, 468, 234, 0, 1301, 1303, 3, 42, 21, 0, 1302, 1294, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 39, 1, 0, 0, 0, 1304, 1307, 5, 30, 0, 0, 1305, 1307, 3, 44, 22, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1310, 7, 5, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1314, 5, 53, 0, 0, 1312, 1314, 3, 46, 23, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 41, 1, 0, 0, 0, 1315, 1316, 5, 418, 0, 0, 1316, 1317, 5, 386, 0, 0, 1317, 1344, 3, 56, 28, 0, 1318, 1319, 5, 152, 0, 0, 1319, 1344, 3, 802, 401, 0, 1320, 1321, 5, 323, 0, 0, 1321, 1344, 3, 784, 392, 0, 1322, 1325, 5, 267, 0, 0, 1323, 1326, 3, 802, 401, 0, 1324, 1326, 5, 53, 0, 0, 1325, 1323, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1344, 1, 0, 0, 0, 1327, 1328, 5, 318, 0, 0, 1328, 1344, 3, 58, 29, 0, 1329, 1330, 5, 332, 0, 0, 1330, 1331, 5, 106, 0, 0, 1331, 1344, 3, 58, 29, 0, 1332, 1333, 5, 383, 0, 0, 1333, 1334, 5, 279, 0, 0, 1334, 1344, 3, 690, 345, 0, 1335, 1336, 5, 356, 0, 0, 1336, 1337, 5, 337, 0, 0, 1337, 1344, 3, 802, 401, 0, 1338, 1339, 3, 44, 22, 0, 1339, 1340, 5, 64, 0, 0, 1340, 1341, 5, 434, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1344, 3, 40, 20, 0, 1343, 1315, 1, 0, 0, 0, 1343, 1318, 1, 0, 0, 0, 1343, 1320, 1, 0, 0, 0, 1343, 1322, 1, 0, 0, 0, 1343, 1327, 1, 0, 0, 0, 1343, 1329, 1, 0, 0, 0, 1343, 1332, 1, 0, 0, 0, 1343, 1335, 1, 0, 0, 0, 1343, 1338, 1, 0, 0, 0, 1343, 1342, 1, 0, 0, 0, 1344, 43, 1, 0, 0, 0, 1345, 1350, 3, 812, 406, 0, 1346, 1347, 5, 11, 0, 0, 1347, 1349, 3, 812, 406, 0, 1348, 1346, 1, 0, 0, 0, 1349, 1352, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 45, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1358, 3, 48, 24, 0, 1354, 1355, 5, 6, 0, 0, 1355, 1357, 3, 48, 24, 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, 47, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 3, 54, 27, 0, 1362, 1364, 3, 196, 98, 0, 1363, 1361, 1, 0, 0, 0, 1363, 1362, 1, 0, 0, 0, 1364, 49, 1, 0, 0, 0, 1365, 1366, 5, 300, 0, 0, 1366, 1371, 7, 8, 0, 0, 1367, 1368, 5, 310, 0, 0, 1368, 1371, 5, 300, 0, 0, 1369, 1371, 5, 330, 0, 0, 1370, 1365, 1, 0, 0, 0, 1370, 1367, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 51, 1, 0, 0, 0, 1372, 1379, 5, 96, 0, 0, 1373, 1379, 5, 60, 0, 0, 1374, 1379, 5, 80, 0, 0, 1375, 1379, 3, 794, 397, 0, 1376, 1379, 3, 826, 413, 0, 1377, 1379, 3, 802, 401, 0, 1378, 1372, 1, 0, 0, 0, 1378, 1373, 1, 0, 0, 0, 1378, 1374, 1, 0, 0, 0, 1378, 1375, 1, 0, 0, 0, 1378, 1376, 1, 0, 0, 0, 1378, 1377, 1, 0, 0, 0, 1379, 53, 1, 0, 0, 0, 1380, 1385, 5, 96, 0, 0, 1381, 1385, 5, 60, 0, 0, 1382, 1385, 5, 80, 0, 0, 1383, 1385, 3, 58, 29, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 55, 1, 0, 0, 0, 1386, 1401, 3, 802, 401, 0, 1387, 1401, 5, 53, 0, 0, 1388, 1401, 3, 820, 410, 0, 1389, 1390, 5, 403, 0, 0, 1390, 1392, 3, 802, 401, 0, 1391, 1393, 3, 662, 331, 0, 1392, 1391, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1401, 1, 0, 0, 0, 1394, 1395, 5, 403, 0, 0, 1395, 1396, 3, 654, 327, 0, 1396, 1397, 3, 802, 401, 0, 1397, 1401, 1, 0, 0, 0, 1398, 1401, 3, 196, 98, 0, 1399, 1401, 5, 254, 0, 0, 1400, 1386, 1, 0, 0, 0, 1400, 1387, 1, 0, 0, 0, 1400, 1388, 1, 0, 0, 0, 1400, 1389, 1, 0, 0, 0, 1400, 1394, 1, 0, 0, 0, 1400, 1398, 1, 0, 0, 0, 1400, 1399, 1, 0, 0, 0, 1401, 57, 1, 0, 0, 0, 1402, 1405, 3, 816, 408, 0, 1403, 1405, 3, 802, 401, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 59, 1, 0, 0, 0, 1406, 1407, 5, 313, 0, 0, 1407, 1408, 3, 62, 31, 0, 1408, 61, 1, 0, 0, 0, 1409, 1410, 5, 418, 0, 0, 1410, 1419, 5, 386, 0, 0, 1411, 1412, 5, 356, 0, 0, 1412, 1413, 5, 244, 0, 0, 1413, 1419, 5, 251, 0, 0, 1414, 1415, 5, 332, 0, 0, 1415, 1419, 5, 106, 0, 0, 1416, 1419, 5, 30, 0, 0, 1417, 1419, 3, 44, 22, 0, 1418, 1409, 1, 0, 0, 0, 1418, 1411, 1, 0, 0, 0, 1418, 1414, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1417, 1, 0, 0, 0, 1419, 63, 1, 0, 0, 0, 1420, 1421, 5, 333, 0, 0, 1421, 1424, 3, 38, 19, 0, 1422, 1424, 3, 60, 30, 0, 1423, 1420, 1, 0, 0, 0, 1423, 1422, 1, 0, 0, 0, 1424, 65, 1, 0, 0, 0, 1425, 1426, 5, 333, 0, 0, 1426, 1429, 3, 42, 21, 0, 1427, 1429, 3, 60, 30, 0, 1428, 1425, 1, 0, 0, 0, 1428, 1427, 1, 0, 0, 0, 1429, 67, 1, 0, 0, 0, 1430, 1440, 5, 335, 0, 0, 1431, 1441, 3, 44, 22, 0, 1432, 1433, 5, 418, 0, 0, 1433, 1441, 5, 386, 0, 0, 1434, 1435, 5, 356, 0, 0, 1435, 1436, 5, 244, 0, 0, 1436, 1441, 5, 251, 0, 0, 1437, 1438, 5, 332, 0, 0, 1438, 1441, 5, 106, 0, 0, 1439, 1441, 5, 30, 0, 0, 1440, 1431, 1, 0, 0, 0, 1440, 1432, 1, 0, 0, 0, 1440, 1434, 1, 0, 0, 0, 1440, 1437, 1, 0, 0, 0, 1440, 1439, 1, 0, 0, 0, 1441, 69, 1, 0, 0, 0, 1442, 1443, 5, 333, 0, 0, 1443, 1446, 5, 165, 0, 0, 1444, 1447, 5, 30, 0, 0, 1445, 1447, 3, 754, 377, 0, 1446, 1444, 1, 0, 0, 0, 1446, 1445, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 7, 9, 0, 0, 1449, 71, 1, 0, 0, 0, 1450, 1451, 5, 155, 0, 0, 1451, 73, 1, 0, 0, 0, 1452, 1453, 5, 187, 0, 0, 1453, 1454, 7, 10, 0, 0, 1454, 75, 1, 0, 0, 0, 1455, 1456, 5, 138, 0, 0, 1456, 1458, 5, 92, 0, 0, 1457, 1459, 3, 416, 208, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1463, 3, 618, 309, 0, 1461, 1464, 3, 78, 39, 0, 1462, 1464, 3, 80, 40, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1462, 1, 0, 0, 0, 1464, 1573, 1, 0, 0, 0, 1465, 1466, 5, 138, 0, 0, 1466, 1467, 5, 92, 0, 0, 1467, 1468, 5, 30, 0, 0, 1468, 1469, 5, 68, 0, 0, 1469, 1473, 3, 170, 85, 0, 1470, 1471, 5, 281, 0, 0, 1471, 1472, 5, 147, 0, 0, 1472, 1474, 3, 810, 405, 0, 1473, 1470, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 5, 333, 0, 0, 1476, 1477, 5, 351, 0, 0, 1477, 1479, 3, 764, 382, 0, 1478, 1480, 5, 272, 0, 0, 1479, 1478, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1573, 1, 0, 0, 0, 1481, 1482, 5, 138, 0, 0, 1482, 1484, 5, 92, 0, 0, 1483, 1485, 3, 416, 208, 0, 1484, 1483, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 3, 768, 384, 0, 1487, 1488, 3, 82, 41, 0, 1488, 1489, 3, 98, 49, 0, 1489, 1573, 1, 0, 0, 0, 1490, 1491, 5, 138, 0, 0, 1491, 1493, 5, 92, 0, 0, 1492, 1494, 3, 416, 208, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 3, 768, 384, 0, 1496, 1497, 5, 436, 0, 0, 1497, 1498, 5, 285, 0, 0, 1498, 1500, 3, 774, 387, 0, 1499, 1501, 7, 11, 0, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1573, 1, 0, 0, 0, 1502, 1503, 5, 138, 0, 0, 1503, 1505, 5, 226, 0, 0, 1504, 1506, 3, 416, 208, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1510, 3, 774, 387, 0, 1508, 1511, 3, 78, 39, 0, 1509, 1511, 3, 82, 41, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1509, 1, 0, 0, 0, 1511, 1573, 1, 0, 0, 0, 1512, 1513, 5, 138, 0, 0, 1513, 1514, 5, 226, 0, 0, 1514, 1515, 5, 30, 0, 0, 1515, 1516, 5, 68, 0, 0, 1516, 1520, 3, 170, 85, 0, 1517, 1518, 5, 281, 0, 0, 1518, 1519, 5, 147, 0, 0, 1519, 1521, 3, 810, 405, 0, 1520, 1517, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 5, 333, 0, 0, 1523, 1525, 3, 170, 85, 0, 1524, 1526, 5, 272, 0, 0, 1525, 1524, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1573, 1, 0, 0, 0, 1527, 1528, 5, 138, 0, 0, 1528, 1530, 5, 328, 0, 0, 1529, 1531, 3, 416, 208, 0, 1530, 1529, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 3, 774, 387, 0, 1533, 1534, 3, 78, 39, 0, 1534, 1573, 1, 0, 0, 0, 1535, 1537, 5, 138, 0, 0, 1536, 1538, 5, 259, 0, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1541, 5, 376, 0, 0, 1540, 1542, 3, 416, 208, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 3, 772, 386, 0, 1544, 1545, 3, 78, 39, 0, 1545, 1573, 1, 0, 0, 0, 1546, 1547, 5, 138, 0, 0, 1547, 1548, 5, 259, 0, 0, 1548, 1549, 5, 376, 0, 0, 1549, 1550, 5, 30, 0, 0, 1550, 1551, 5, 68, 0, 0, 1551, 1555, 3, 170, 85, 0, 1552, 1553, 5, 281, 0, 0, 1553, 1554, 5, 147, 0, 0, 1554, 1556, 3, 810, 405, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 5, 333, 0, 0, 1558, 1559, 5, 351, 0, 0, 1559, 1561, 3, 764, 382, 0, 1560, 1562, 5, 272, 0, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1573, 1, 0, 0, 0, 1563, 1564, 5, 138, 0, 0, 1564, 1565, 5, 63, 0, 0, 1565, 1567, 5, 92, 0, 0, 1566, 1568, 3, 416, 208, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 3, 618, 309, 0, 1570, 1571, 3, 78, 39, 0, 1571, 1573, 1, 0, 0, 0, 1572, 1455, 1, 0, 0, 0, 1572, 1465, 1, 0, 0, 0, 1572, 1481, 1, 0, 0, 0, 1572, 1490, 1, 0, 0, 0, 1572, 1502, 1, 0, 0, 0, 1572, 1512, 1, 0, 0, 0, 1572, 1527, 1, 0, 0, 0, 1572, 1535, 1, 0, 0, 0, 1572, 1546, 1, 0, 0, 0, 1572, 1563, 1, 0, 0, 0, 1573, 77, 1, 0, 0, 0, 1574, 1579, 3, 84, 42, 0, 1575, 1576, 5, 6, 0, 0, 1576, 1578, 3, 84, 42, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1581, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 79, 1, 0, 0, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1583, 3, 82, 41, 0, 1583, 1584, 3, 98, 49, 0, 1584, 1589, 1, 0, 0, 0, 1585, 1586, 5, 436, 0, 0, 1586, 1587, 5, 285, 0, 0, 1587, 1589, 3, 774, 387, 0, 1588, 1582, 1, 0, 0, 0, 1588, 1585, 1, 0, 0, 0, 1589, 81, 1, 0, 0, 0, 1590, 1591, 5, 435, 0, 0, 1591, 1592, 5, 285, 0, 0, 1592, 1593, 3, 774, 387, 0, 1593, 83, 1, 0, 0, 0, 1594, 1597, 5, 133, 0, 0, 1595, 1596, 5, 45, 0, 0, 1596, 1598, 3, 812, 406, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1828, 3, 136, 68, 0, 1600, 1601, 5, 138, 0, 0, 1601, 1602, 5, 45, 0, 0, 1602, 1606, 3, 812, 406, 0, 1603, 1605, 3, 266, 133, 0, 1604, 1603, 1, 0, 0, 0, 1605, 1608, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1828, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1610, 5, 372, 0, 0, 1610, 1611, 5, 45, 0, 0, 1611, 1828, 3, 812, 406, 0, 1612, 1613, 5, 191, 0, 0, 1613, 1615, 5, 45, 0, 0, 1614, 1616, 3, 416, 208, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1619, 3, 812, 406, 0, 1618, 1620, 3, 88, 44, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1828, 1, 0, 0, 0, 1621, 1622, 5, 333, 0, 0, 1622, 1623, 5, 379, 0, 0, 1623, 1828, 7, 12, 0, 0, 1624, 1625, 5, 158, 0, 0, 1625, 1626, 5, 80, 0, 0, 1626, 1828, 3, 812, 406, 0, 1627, 1628, 5, 333, 0, 0, 1628, 1828, 7, 13, 0, 0, 1629, 1631, 5, 193, 0, 0, 1630, 1632, 7, 14, 0, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1828, 5, 357, 0, 0, 1634, 1635, 5, 186, 0, 0, 1635, 1639, 5, 357, 0, 0, 1636, 1640, 5, 30, 0, 0, 1637, 1640, 5, 99, 0, 0, 1638, 1640, 3, 812, 406, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 1828, 1, 0, 0, 0, 1641, 1642, 5, 193, 0, 0, 1642, 1643, 7, 14, 0, 0, 1643, 1644, 5, 321, 0, 0, 1644, 1828, 3, 812, 406, 0, 1645, 1646, 5, 186, 0, 0, 1646, 1647, 5, 321, 0, 0, 1647, 1828, 3, 812, 406, 0, 1648, 1650, 5, 269, 0, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 5, 228, 0, 0, 1652, 1828, 3, 774, 387, 0, 1653, 1654, 5, 275, 0, 0, 1654, 1828, 3, 310, 155, 0, 1655, 1656, 5, 77, 0, 0, 1656, 1828, 5, 275, 0, 0, 1657, 1658, 5, 282, 0, 0, 1658, 1659, 5, 94, 0, 0, 1659, 1828, 3, 808, 404, 0, 1660, 1661, 5, 333, 0, 0, 1661, 1662, 5, 351, 0, 0, 1662, 1828, 3, 764, 382, 0, 1663, 1664, 5, 312, 0, 0, 1664, 1669, 5, 219, 0, 0, 1665, 1670, 5, 270, 0, 0, 1666, 1670, 5, 113, 0, 0, 1667, 1670, 5, 53, 0, 0, 1668, 1670, 3, 174, 87, 0, 1669, 1665, 1, 0, 0, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1828, 1, 0, 0, 0, 1671, 1678, 5, 193, 0, 0, 1672, 1678, 5, 186, 0, 0, 1673, 1675, 5, 269, 0, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 5, 209, 0, 0, 1677, 1671, 1, 0, 0, 0, 1677, 1672, 1, 0, 0, 0, 1677, 1674, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 5, 414, 0, 0, 1680, 1681, 5, 251, 0, 0, 1681, 1828, 5, 327, 0, 0, 1682, 1684, 5, 191, 0, 0, 1683, 1685, 5, 44, 0, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1688, 3, 416, 208, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 3, 794, 397, 0, 1690, 1692, 3, 88, 44, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1828, 1, 0, 0, 0, 1693, 1695, 5, 133, 0, 0, 1694, 1696, 5, 44, 0, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 1, 0, 0, 0, 1697, 1699, 3, 288, 144, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1828, 3, 126, 63, 0, 1701, 1703, 5, 138, 0, 0, 1702, 1704, 5, 44, 0, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1708, 3, 794, 397, 0, 1706, 1709, 3, 86, 43, 0, 1707, 1709, 3, 216, 108, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1707, 1, 0, 0, 0, 1709, 1828, 1, 0, 0, 0, 1710, 1712, 5, 138, 0, 0, 1711, 1713, 5, 44, 0, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 3, 794, 397, 0, 1715, 1716, 7, 15, 0, 0, 1716, 1717, 5, 77, 0, 0, 1717, 1718, 5, 78, 0, 0, 1718, 1828, 1, 0, 0, 0, 1719, 1721, 5, 138, 0, 0, 1720, 1722, 5, 44, 0, 0, 1721, 1720, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 3, 794, 397, 0, 1724, 1725, 5, 191, 0, 0, 1725, 1727, 5, 437, 0, 0, 1726, 1728, 3, 416, 208, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1828, 1, 0, 0, 0, 1729, 1731, 5, 138, 0, 0, 1730, 1732, 5, 44, 0, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 3, 794, 397, 0, 1734, 1735, 5, 333, 0, 0, 1735, 1736, 5, 342, 0, 0, 1736, 1737, 3, 806, 403, 0, 1737, 1828, 1, 0, 0, 0, 1738, 1740, 5, 138, 0, 0, 1739, 1741, 5, 44, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 3, 794, 397, 0, 1743, 1738, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 7, 16, 0, 0, 1746, 1828, 3, 92, 46, 0, 1747, 1749, 5, 138, 0, 0, 1748, 1750, 5, 44, 0, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 3, 794, 397, 0, 1752, 1753, 5, 333, 0, 0, 1753, 1754, 5, 345, 0, 0, 1754, 1755, 3, 812, 406, 0, 1755, 1828, 1, 0, 0, 0, 1756, 1758, 5, 138, 0, 0, 1757, 1759, 5, 44, 0, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 3, 794, 397, 0, 1761, 1762, 5, 133, 0, 0, 1762, 1763, 5, 438, 0, 0, 1763, 1764, 3, 132, 66, 0, 1764, 1765, 5, 36, 0, 0, 1765, 1774, 5, 219, 0, 0, 1766, 1768, 5, 2, 0, 0, 1767, 1769, 3, 194, 97, 0, 1768, 1767, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1768, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 5, 3, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1766, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1828, 1, 0, 0, 0, 1776, 1778, 5, 138, 0, 0, 1777, 1779, 5, 44, 0, 0, 1778, 1777, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1794, 3, 794, 397, 0, 1781, 1786, 5, 314, 0, 0, 1782, 1784, 5, 105, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1787, 3, 196, 98, 0, 1786, 1783, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1795, 1, 0, 0, 0, 1788, 1792, 5, 333, 0, 0, 1789, 1793, 3, 194, 97, 0, 1790, 1791, 5, 438, 0, 0, 1791, 1793, 3, 132, 66, 0, 1792, 1789, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1781, 1, 0, 0, 0, 1794, 1788, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1828, 1, 0, 0, 0, 1798, 1800, 5, 138, 0, 0, 1799, 1801, 5, 44, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 3, 794, 397, 0, 1803, 1804, 5, 191, 0, 0, 1804, 1806, 5, 219, 0, 0, 1805, 1807, 3, 416, 208, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1828, 1, 0, 0, 0, 1808, 1810, 5, 138, 0, 0, 1809, 1811, 5, 44, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1815, 3, 794, 397, 0, 1813, 1814, 5, 333, 0, 0, 1814, 1816, 5, 174, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 5, 360, 0, 0, 1818, 1820, 3, 646, 323, 0, 1819, 1821, 3, 90, 45, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1824, 1, 0, 0, 0, 1822, 1823, 5, 100, 0, 0, 1823, 1825, 3, 668, 334, 0, 1824, 1822, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1828, 3, 216, 108, 0, 1827, 1594, 1, 0, 0, 0, 1827, 1600, 1, 0, 0, 0, 1827, 1609, 1, 0, 0, 0, 1827, 1612, 1, 0, 0, 0, 1827, 1621, 1, 0, 0, 0, 1827, 1624, 1, 0, 0, 0, 1827, 1627, 1, 0, 0, 0, 1827, 1629, 1, 0, 0, 0, 1827, 1634, 1, 0, 0, 0, 1827, 1641, 1, 0, 0, 0, 1827, 1645, 1, 0, 0, 0, 1827, 1649, 1, 0, 0, 0, 1827, 1653, 1, 0, 0, 0, 1827, 1655, 1, 0, 0, 0, 1827, 1657, 1, 0, 0, 0, 1827, 1660, 1, 0, 0, 0, 1827, 1663, 1, 0, 0, 0, 1827, 1677, 1, 0, 0, 0, 1827, 1682, 1, 0, 0, 0, 1827, 1693, 1, 0, 0, 0, 1827, 1701, 1, 0, 0, 0, 1827, 1710, 1, 0, 0, 0, 1827, 1719, 1, 0, 0, 0, 1827, 1729, 1, 0, 0, 0, 1827, 1743, 1, 0, 0, 0, 1827, 1747, 1, 0, 0, 0, 1827, 1756, 1, 0, 0, 0, 1827, 1776, 1, 0, 0, 0, 1827, 1798, 1, 0, 0, 0, 1827, 1808, 1, 0, 0, 0, 1827, 1826, 1, 0, 0, 0, 1828, 85, 1, 0, 0, 0, 1829, 1830, 5, 333, 0, 0, 1830, 1831, 5, 53, 0, 0, 1831, 1835, 3, 668, 334, 0, 1832, 1833, 5, 191, 0, 0, 1833, 1835, 5, 53, 0, 0, 1834, 1829, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1835, 87, 1, 0, 0, 0, 1836, 1837, 7, 17, 0, 0, 1837, 89, 1, 0, 0, 0, 1838, 1839, 5, 43, 0, 0, 1839, 1840, 3, 310, 155, 0, 1840, 91, 1, 0, 0, 0, 1841, 1842, 5, 2, 0, 0, 1842, 1847, 3, 96, 48, 0, 1843, 1844, 5, 6, 0, 0, 1844, 1846, 3, 96, 48, 0, 1845, 1843, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1850, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 5, 3, 0, 0, 1851, 93, 1, 0, 0, 0, 1852, 1853, 5, 105, 0, 0, 1853, 1854, 3, 92, 46, 0, 1854, 95, 1, 0, 0, 0, 1855, 1860, 3, 818, 409, 0, 1856, 1857, 5, 10, 0, 0, 1857, 1861, 3, 282, 141, 0, 1858, 1859, 5, 11, 0, 0, 1859, 1861, 3, 280, 140, 0, 1860, 1856, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 97, 1, 0, 0, 0, 1862, 1863, 5, 62, 0, 0, 1863, 1864, 5, 422, 0, 0, 1864, 1865, 5, 105, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 1867, 5, 533, 0, 0, 1867, 1868, 3, 196, 98, 0, 1868, 1869, 5, 6, 0, 0, 1869, 1870, 5, 534, 0, 0, 1870, 1871, 3, 196, 98, 0, 1871, 1872, 5, 3, 0, 0, 1872, 1886, 1, 0, 0, 0, 1873, 1874, 5, 62, 0, 0, 1874, 1875, 5, 422, 0, 0, 1875, 1876, 5, 68, 0, 0, 1876, 1886, 3, 528, 264, 0, 1877, 1878, 5, 62, 0, 0, 1878, 1879, 5, 422, 0, 0, 1879, 1880, 5, 64, 0, 0, 1880, 1881, 3, 528, 264, 0, 1881, 1882, 5, 94, 0, 0, 1882, 1883, 3, 528, 264, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1886, 5, 53, 0, 0, 1885, 1862, 1, 0, 0, 0, 1885, 1873, 1, 0, 0, 0, 1885, 1877, 1, 0, 0, 0, 1885, 1884, 1, 0, 0, 0, 1886, 99, 1, 0, 0, 0, 1887, 1888, 5, 138, 0, 0, 1888, 1889, 5, 360, 0, 0, 1889, 1890, 3, 310, 155, 0, 1890, 1895, 3, 102, 51, 0, 1891, 1892, 5, 6, 0, 0, 1892, 1894, 3, 102, 51, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 101, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1899, 5, 133, 0, 0, 1899, 1900, 5, 143, 0, 0, 1900, 1902, 3, 638, 319, 0, 1901, 1903, 3, 88, 44, 0, 1902, 1901, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1929, 1, 0, 0, 0, 1904, 1905, 5, 191, 0, 0, 1905, 1907, 5, 143, 0, 0, 1906, 1908, 3, 416, 208, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 3, 812, 406, 0, 1910, 1912, 3, 88, 44, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1929, 1, 0, 0, 0, 1913, 1914, 5, 138, 0, 0, 1914, 1915, 5, 143, 0, 0, 1915, 1918, 3, 812, 406, 0, 1916, 1917, 5, 333, 0, 0, 1917, 1919, 5, 174, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 5, 360, 0, 0, 1921, 1923, 3, 646, 323, 0, 1922, 1924, 3, 90, 45, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1926, 1, 0, 0, 0, 1925, 1927, 3, 88, 44, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1929, 1, 0, 0, 0, 1928, 1898, 1, 0, 0, 0, 1928, 1904, 1, 0, 0, 0, 1928, 1913, 1, 0, 0, 0, 1929, 103, 1, 0, 0, 0, 1930, 1933, 5, 157, 0, 0, 1931, 1934, 3, 812, 406, 0, 1932, 1934, 5, 30, 0, 0, 1933, 1931, 1, 0, 0, 0, 1933, 1932, 1, 0, 0, 0, 1934, 105, 1, 0, 0, 0, 1935, 1937, 5, 169, 0, 0, 1936, 1938, 5, 107, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 3, 768, 384, 0, 1940, 1942, 3, 138, 69, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 7, 18, 0, 0, 1944, 1946, 5, 297, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1950, 1, 0, 0, 0, 1947, 1951, 3, 802, 401, 0, 1948, 1951, 5, 343, 0, 0, 1949, 1951, 5, 344, 0, 0, 1950, 1947, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1949, 1, 0, 0, 0, 1951, 1957, 1, 0, 0, 0, 1952, 1954, 5, 100, 0, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 5, 184, 0, 0, 1956, 1958, 3, 802, 401, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1961, 5, 105, 0, 0, 1960, 1959, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 3, 110, 55, 0, 1963, 1965, 3, 632, 316, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1985, 1, 0, 0, 0, 1966, 1967, 5, 169, 0, 0, 1967, 1968, 5, 2, 0, 0, 1968, 1969, 3, 524, 262, 0, 1969, 1970, 5, 3, 0, 0, 1970, 1972, 5, 94, 0, 0, 1971, 1973, 5, 297, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1977, 1, 0, 0, 0, 1974, 1978, 3, 802, 401, 0, 1975, 1978, 5, 343, 0, 0, 1976, 1978, 5, 344, 0, 0, 1977, 1974, 1, 0, 0, 0, 1977, 1975, 1, 0, 0, 0, 1977, 1976, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1981, 5, 105, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 3, 110, 55, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1935, 1, 0, 0, 0, 1984, 1966, 1, 0, 0, 0, 1985, 107, 1, 0, 0, 0, 1986, 2029, 5, 107, 0, 0, 1987, 2029, 5, 112, 0, 0, 1988, 1990, 7, 19, 0, 0, 1989, 1991, 5, 36, 0, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2029, 3, 802, 401, 0, 1993, 2029, 5, 171, 0, 0, 1994, 2029, 5, 216, 0, 0, 1995, 1996, 5, 209, 0, 0, 1996, 1999, 5, 298, 0, 0, 1997, 2000, 3, 142, 71, 0, 1998, 2000, 5, 9, 0, 0, 1999, 1997, 1, 0, 0, 0, 1999, 1998, 1, 0, 0, 0, 2000, 2029, 1, 0, 0, 0, 2001, 2003, 5, 209, 0, 0, 2002, 2004, 5, 77, 0, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 78, 0, 0, 2006, 2029, 3, 142, 71, 0, 2007, 2008, 5, 194, 0, 0, 2008, 2029, 3, 802, 401, 0, 2009, 2026, 7, 20, 0, 0, 2010, 2013, 5, 2, 0, 0, 2011, 2014, 3, 142, 71, 0, 2012, 2014, 5, 9, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 2022, 1, 0, 0, 0, 2015, 2018, 5, 6, 0, 0, 2016, 2019, 3, 142, 71, 0, 2017, 2019, 5, 9, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2017, 1, 0, 0, 0, 2019, 2021, 1, 0, 0, 0, 2020, 2015, 1, 0, 0, 0, 2021, 2024, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2025, 2027, 5, 3, 0, 0, 2026, 2010, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 1986, 1, 0, 0, 0, 2028, 1987, 1, 0, 0, 0, 2028, 1988, 1, 0, 0, 0, 2028, 1993, 1, 0, 0, 0, 2028, 1994, 1, 0, 0, 0, 2028, 1995, 1, 0, 0, 0, 2028, 2001, 1, 0, 0, 0, 2028, 2007, 1, 0, 0, 0, 2028, 2009, 1, 0, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 109, 1, 0, 0, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2052, 3, 108, 54, 0, 2034, 2037, 5, 2, 0, 0, 2035, 2038, 3, 108, 54, 0, 2036, 2038, 3, 112, 56, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 2046, 1, 0, 0, 0, 2039, 2042, 5, 6, 0, 0, 2040, 2043, 3, 108, 54, 0, 2041, 2043, 3, 112, 56, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2043, 2045, 1, 0, 0, 0, 2044, 2039, 1, 0, 0, 0, 2045, 2048, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2046, 1, 0, 0, 0, 2049, 2050, 5, 3, 0, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2033, 1, 0, 0, 0, 2051, 2034, 1, 0, 0, 0, 2052, 111, 1, 0, 0, 0, 2053, 2068, 3, 818, 409, 0, 2054, 2069, 3, 54, 27, 0, 2055, 2069, 3, 196, 98, 0, 2056, 2069, 5, 9, 0, 0, 2057, 2058, 5, 2, 0, 0, 2058, 2063, 3, 52, 26, 0, 2059, 2060, 5, 6, 0, 0, 2060, 2062, 3, 52, 26, 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, 2066, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2067, 5, 3, 0, 0, 2067, 2069, 1, 0, 0, 0, 2068, 2054, 1, 0, 0, 0, 2068, 2055, 1, 0, 0, 0, 2068, 2056, 1, 0, 0, 0, 2068, 2057, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 113, 1, 0, 0, 0, 2070, 2072, 5, 46, 0, 0, 2071, 2073, 3, 116, 58, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2076, 5, 92, 0, 0, 2075, 2077, 3, 288, 144, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2144, 3, 766, 383, 0, 2079, 2081, 5, 2, 0, 0, 2080, 2082, 3, 120, 60, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2085, 5, 3, 0, 0, 2084, 2086, 3, 158, 79, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2088, 1, 0, 0, 0, 2087, 2089, 3, 160, 80, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2092, 3, 164, 82, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 166, 83, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 168, 84, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 170, 85, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2145, 1, 0, 0, 0, 2102, 2103, 5, 275, 0, 0, 2103, 2105, 3, 310, 155, 0, 2104, 2106, 3, 118, 59, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2108, 1, 0, 0, 0, 2107, 2109, 3, 160, 80, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2111, 1, 0, 0, 0, 2110, 2112, 3, 164, 82, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2115, 3, 166, 83, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2118, 3, 168, 84, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 170, 85, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2145, 1, 0, 0, 0, 2122, 2123, 5, 285, 0, 0, 2123, 2124, 5, 275, 0, 0, 2124, 2126, 3, 774, 387, 0, 2125, 2127, 3, 118, 59, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2130, 3, 98, 49, 0, 2129, 2131, 3, 160, 80, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2134, 3, 164, 82, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2137, 3, 166, 83, 0, 2136, 2135, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 2140, 3, 168, 84, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 170, 85, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2079, 1, 0, 0, 0, 2144, 2102, 1, 0, 0, 0, 2144, 2122, 1, 0, 0, 0, 2145, 115, 1, 0, 0, 0, 2146, 2152, 5, 354, 0, 0, 2147, 2152, 5, 352, 0, 0, 2148, 2149, 7, 21, 0, 0, 2149, 2152, 7, 22, 0, 0, 2150, 2152, 5, 367, 0, 0, 2151, 2146, 1, 0, 0, 0, 2151, 2147, 1, 0, 0, 0, 2151, 2148, 1, 0, 0, 0, 2151, 2150, 1, 0, 0, 0, 2152, 117, 1, 0, 0, 0, 2153, 2154, 5, 2, 0, 0, 2154, 2159, 3, 124, 62, 0, 2155, 2156, 5, 6, 0, 0, 2156, 2158, 3, 124, 62, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2161, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2163, 5, 3, 0, 0, 2163, 119, 1, 0, 0, 0, 2164, 2169, 3, 122, 61, 0, 2165, 2166, 5, 6, 0, 0, 2166, 2168, 3, 122, 61, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2171, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 121, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2173, 5, 45, 0, 0, 2173, 2175, 3, 812, 406, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2188, 3, 136, 68, 0, 2177, 2188, 3, 126, 63, 0, 2178, 2179, 5, 120, 0, 0, 2179, 2184, 3, 774, 387, 0, 2180, 2181, 7, 23, 0, 0, 2181, 2183, 3, 134, 67, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2174, 1, 0, 0, 0, 2187, 2177, 1, 0, 0, 0, 2187, 2178, 1, 0, 0, 0, 2188, 123, 1, 0, 0, 0, 2189, 2192, 3, 796, 398, 0, 2190, 2191, 5, 105, 0, 0, 2191, 2193, 5, 280, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2197, 1, 0, 0, 0, 2194, 2196, 3, 128, 64, 0, 2195, 2194, 1, 0, 0, 0, 2196, 2199, 1, 0, 0, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2206, 1, 0, 0, 0, 2199, 2197, 1, 0, 0, 0, 2200, 2201, 5, 45, 0, 0, 2201, 2203, 3, 812, 406, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2206, 3, 136, 68, 0, 2205, 2189, 1, 0, 0, 0, 2205, 2202, 1, 0, 0, 0, 2206, 125, 1, 0, 0, 0, 2207, 2208, 3, 796, 398, 0, 2208, 2210, 3, 646, 323, 0, 2209, 2211, 3, 214, 107, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2221, 1, 0, 0, 0, 2212, 2219, 5, 345, 0, 0, 2213, 2220, 5, 544, 0, 0, 2214, 2220, 5, 205, 0, 0, 2215, 2220, 5, 545, 0, 0, 2216, 2220, 5, 546, 0, 0, 2217, 2220, 5, 53, 0, 0, 2218, 2220, 3, 812, 406, 0, 2219, 2213, 1, 0, 0, 0, 2219, 2214, 1, 0, 0, 0, 2219, 2215, 1, 0, 0, 0, 2219, 2216, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2218, 1, 0, 0, 0, 2220, 2222, 1, 0, 0, 0, 2221, 2212, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2225, 1, 0, 0, 0, 2223, 2224, 5, 543, 0, 0, 2224, 2226, 3, 812, 406, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2229, 3, 90, 45, 0, 2228, 2227, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2232, 1, 0, 0, 0, 2230, 2231, 5, 105, 0, 0, 2231, 2233, 5, 280, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2237, 1, 0, 0, 0, 2234, 2236, 3, 128, 64, 0, 2235, 2234, 1, 0, 0, 0, 2236, 2239, 1, 0, 0, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 127, 1, 0, 0, 0, 2239, 2237, 1, 0, 0, 0, 2240, 2241, 5, 45, 0, 0, 2241, 2243, 3, 812, 406, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2249, 3, 130, 65, 0, 2245, 2247, 5, 77, 0, 0, 2246, 2245, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2250, 5, 54, 0, 0, 2249, 2246, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2253, 1, 0, 0, 0, 2251, 2252, 5, 69, 0, 0, 2252, 2254, 7, 9, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 129, 1, 0, 0, 0, 2255, 2257, 5, 77, 0, 0, 2256, 2255, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2336, 5, 78, 0, 0, 2259, 2261, 5, 98, 0, 0, 2260, 2262, 3, 394, 197, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2264, 1, 0, 0, 0, 2263, 2265, 3, 172, 86, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2336, 1, 0, 0, 0, 2266, 2272, 5, 98, 0, 0, 2267, 2269, 5, 273, 0, 0, 2268, 2270, 5, 77, 0, 0, 2269, 2268, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2273, 5, 56, 0, 0, 2272, 2267, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2275, 5, 441, 0, 0, 2275, 2277, 3, 354, 177, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 566, 283, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2282, 1, 0, 0, 0, 2281, 2283, 3, 172, 86, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2336, 1, 0, 0, 0, 2284, 2285, 5, 85, 0, 0, 2285, 2287, 5, 245, 0, 0, 2286, 2288, 3, 394, 197, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 1, 0, 0, 0, 2289, 2291, 3, 172, 86, 0, 2290, 2289, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2336, 1, 0, 0, 0, 2292, 2293, 5, 42, 0, 0, 2293, 2294, 5, 2, 0, 0, 2294, 2295, 3, 668, 334, 0, 2295, 2298, 5, 3, 0, 0, 2296, 2297, 5, 269, 0, 0, 2297, 2299, 5, 228, 0, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2336, 1, 0, 0, 0, 2300, 2301, 5, 53, 0, 0, 2301, 2336, 3, 676, 338, 0, 2302, 2303, 5, 438, 0, 0, 2303, 2304, 3, 132, 66, 0, 2304, 2321, 5, 36, 0, 0, 2305, 2314, 5, 219, 0, 0, 2306, 2308, 5, 2, 0, 0, 2307, 2309, 3, 194, 97, 0, 2308, 2307, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2313, 5, 3, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2306, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2322, 1, 0, 0, 0, 2316, 2317, 5, 2, 0, 0, 2317, 2318, 3, 668, 334, 0, 2318, 2319, 5, 3, 0, 0, 2319, 2320, 5, 440, 0, 0, 2320, 2322, 1, 0, 0, 0, 2321, 2305, 1, 0, 0, 0, 2321, 2316, 1, 0, 0, 0, 2322, 2336, 1, 0, 0, 0, 2323, 2324, 5, 86, 0, 0, 2324, 2326, 3, 774, 387, 0, 2325, 2327, 3, 138, 69, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2329, 1, 0, 0, 0, 2328, 2330, 3, 146, 73, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2332, 1, 0, 0, 0, 2331, 2333, 3, 150, 75, 0, 2332, 2331, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2336, 1, 0, 0, 0, 2334, 2336, 3, 90, 45, 0, 2335, 2256, 1, 0, 0, 0, 2335, 2259, 1, 0, 0, 0, 2335, 2266, 1, 0, 0, 0, 2335, 2284, 1, 0, 0, 0, 2335, 2292, 1, 0, 0, 0, 2335, 2300, 1, 0, 0, 0, 2335, 2302, 1, 0, 0, 0, 2335, 2323, 1, 0, 0, 0, 2335, 2334, 1, 0, 0, 0, 2336, 131, 1, 0, 0, 0, 2337, 2341, 5, 139, 0, 0, 2338, 2339, 5, 147, 0, 0, 2339, 2341, 5, 53, 0, 0, 2340, 2337, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 133, 1, 0, 0, 0, 2342, 2343, 7, 24, 0, 0, 2343, 135, 1, 0, 0, 0, 2344, 2345, 5, 42, 0, 0, 2345, 2346, 5, 2, 0, 0, 2346, 2347, 3, 668, 334, 0, 2347, 2351, 5, 3, 0, 0, 2348, 2350, 3, 266, 133, 0, 2349, 2348, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2441, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2358, 5, 98, 0, 0, 2355, 2356, 5, 85, 0, 0, 2356, 2358, 5, 245, 0, 0, 2357, 2354, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2382, 1, 0, 0, 0, 2359, 2361, 3, 138, 69, 0, 2360, 2362, 3, 144, 72, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2364, 1, 0, 0, 0, 2363, 2365, 3, 394, 197, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2367, 1, 0, 0, 0, 2366, 2368, 3, 172, 86, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2372, 1, 0, 0, 0, 2369, 2371, 3, 266, 133, 0, 2370, 2369, 1, 0, 0, 0, 2371, 2374, 1, 0, 0, 0, 2372, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2383, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2379, 3, 174, 87, 0, 2376, 2378, 3, 266, 133, 0, 2377, 2376, 1, 0, 0, 0, 2378, 2381, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2383, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2359, 1, 0, 0, 0, 2382, 2375, 1, 0, 0, 0, 2383, 2441, 1, 0, 0, 0, 2384, 2386, 5, 199, 0, 0, 2385, 2387, 3, 164, 82, 0, 2386, 2385, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2389, 5, 2, 0, 0, 2389, 2394, 3, 148, 74, 0, 2390, 2391, 5, 6, 0, 0, 2391, 2393, 3, 148, 74, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2396, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2397, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2399, 5, 3, 0, 0, 2398, 2400, 3, 144, 72, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2402, 1, 0, 0, 0, 2401, 2403, 3, 394, 197, 0, 2402, 2401, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2405, 1, 0, 0, 0, 2404, 2406, 3, 172, 86, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2412, 1, 0, 0, 0, 2407, 2408, 5, 103, 0, 0, 2408, 2409, 5, 2, 0, 0, 2409, 2410, 3, 668, 334, 0, 2410, 2411, 5, 3, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2407, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2417, 1, 0, 0, 0, 2414, 2416, 3, 266, 133, 0, 2415, 2414, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2441, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 63, 0, 0, 2421, 2422, 5, 245, 0, 0, 2422, 2423, 3, 138, 69, 0, 2423, 2424, 5, 86, 0, 0, 2424, 2426, 3, 774, 387, 0, 2425, 2427, 3, 138, 69, 0, 2426, 2425, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2429, 1, 0, 0, 0, 2428, 2430, 3, 146, 73, 0, 2429, 2428, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 1, 0, 0, 0, 2431, 2433, 3, 150, 75, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2437, 1, 0, 0, 0, 2434, 2436, 3, 266, 133, 0, 2435, 2434, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2435, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2437, 1, 0, 0, 0, 2440, 2344, 1, 0, 0, 0, 2440, 2357, 1, 0, 0, 0, 2440, 2384, 1, 0, 0, 0, 2440, 2420, 1, 0, 0, 0, 2441, 137, 1, 0, 0, 0, 2442, 2443, 5, 2, 0, 0, 2443, 2444, 3, 142, 71, 0, 2444, 2445, 5, 3, 0, 0, 2445, 139, 1, 0, 0, 0, 2446, 2447, 5, 2, 0, 0, 2447, 2452, 3, 796, 398, 0, 2448, 2449, 5, 6, 0, 0, 2449, 2451, 3, 796, 398, 0, 2450, 2448, 1, 0, 0, 0, 2451, 2454, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2456, 5, 3, 0, 0, 2456, 141, 1, 0, 0, 0, 2457, 2462, 3, 794, 397, 0, 2458, 2459, 5, 6, 0, 0, 2459, 2461, 3, 794, 397, 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, 143, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 441, 0, 0, 2466, 2467, 3, 138, 69, 0, 2467, 145, 1, 0, 0, 0, 2468, 2469, 5, 258, 0, 0, 2469, 2470, 7, 25, 0, 0, 2470, 147, 1, 0, 0, 0, 2471, 2472, 3, 356, 178, 0, 2472, 2479, 5, 105, 0, 0, 2473, 2480, 3, 408, 204, 0, 2474, 2475, 5, 278, 0, 0, 2475, 2476, 5, 2, 0, 0, 2476, 2477, 3, 408, 204, 0, 2477, 2478, 5, 3, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2473, 1, 0, 0, 0, 2479, 2474, 1, 0, 0, 0, 2480, 149, 1, 0, 0, 0, 2481, 2483, 3, 152, 76, 0, 2482, 2484, 3, 154, 77, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2490, 1, 0, 0, 0, 2485, 2487, 3, 154, 77, 0, 2486, 2488, 3, 152, 76, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2490, 1, 0, 0, 0, 2489, 2481, 1, 0, 0, 0, 2489, 2485, 1, 0, 0, 0, 2490, 151, 1, 0, 0, 0, 2491, 2492, 5, 80, 0, 0, 2492, 2493, 5, 369, 0, 0, 2493, 2494, 3, 156, 78, 0, 2494, 153, 1, 0, 0, 0, 2495, 2496, 5, 80, 0, 0, 2496, 2497, 5, 182, 0, 0, 2497, 2498, 3, 156, 78, 0, 2498, 155, 1, 0, 0, 0, 2499, 2500, 5, 269, 0, 0, 2500, 2509, 5, 132, 0, 0, 2501, 2509, 5, 315, 0, 0, 2502, 2509, 5, 150, 0, 0, 2503, 2504, 5, 333, 0, 0, 2504, 2506, 7, 26, 0, 0, 2505, 2507, 3, 142, 71, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2509, 1, 0, 0, 0, 2508, 2499, 1, 0, 0, 0, 2508, 2501, 1, 0, 0, 0, 2508, 2502, 1, 0, 0, 0, 2508, 2503, 1, 0, 0, 0, 2509, 157, 1, 0, 0, 0, 2510, 2511, 5, 238, 0, 0, 2511, 2512, 5, 2, 0, 0, 2512, 2513, 3, 754, 377, 0, 2513, 2514, 5, 3, 0, 0, 2514, 159, 1, 0, 0, 0, 2515, 2516, 5, 285, 0, 0, 2516, 2517, 5, 147, 0, 0, 2517, 2518, 3, 812, 406, 0, 2518, 2519, 5, 2, 0, 0, 2519, 2524, 3, 162, 81, 0, 2520, 2521, 5, 6, 0, 0, 2521, 2523, 3, 162, 81, 0, 2522, 2520, 1, 0, 0, 0, 2523, 2526, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2528, 5, 3, 0, 0, 2528, 161, 1, 0, 0, 0, 2529, 2536, 3, 794, 397, 0, 2530, 2536, 3, 682, 341, 0, 2531, 2532, 5, 2, 0, 0, 2532, 2533, 3, 668, 334, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2529, 1, 0, 0, 0, 2535, 2530, 1, 0, 0, 0, 2535, 2531, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2539, 3, 90, 45, 0, 2538, 2537, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2542, 3, 310, 155, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 163, 1, 0, 0, 0, 2543, 2544, 5, 100, 0, 0, 2544, 2545, 3, 812, 406, 0, 2545, 165, 1, 0, 0, 0, 2546, 2547, 5, 105, 0, 0, 2547, 2551, 3, 92, 46, 0, 2548, 2549, 7, 27, 0, 0, 2549, 2551, 5, 277, 0, 0, 2550, 2546, 1, 0, 0, 0, 2550, 2548, 1, 0, 0, 0, 2551, 167, 1, 0, 0, 0, 2552, 2553, 5, 80, 0, 0, 2553, 2559, 5, 161, 0, 0, 2554, 2560, 5, 191, 0, 0, 2555, 2556, 5, 182, 0, 0, 2556, 2560, 5, 320, 0, 0, 2557, 2558, 5, 292, 0, 0, 2558, 2560, 5, 320, 0, 0, 2559, 2554, 1, 0, 0, 0, 2559, 2555, 1, 0, 0, 0, 2559, 2557, 1, 0, 0, 0, 2560, 169, 1, 0, 0, 0, 2561, 2562, 5, 351, 0, 0, 2562, 2563, 3, 764, 382, 0, 2563, 171, 1, 0, 0, 0, 2564, 2565, 5, 100, 0, 0, 2565, 2566, 5, 226, 0, 0, 2566, 2567, 3, 170, 85, 0, 2567, 173, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 5, 226, 0, 0, 2570, 2571, 3, 812, 406, 0, 2571, 175, 1, 0, 0, 0, 2572, 2573, 5, 46, 0, 0, 2573, 2578, 5, 342, 0, 0, 2574, 2576, 3, 288, 144, 0, 2575, 2574, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 3, 310, 155, 0, 2578, 2575, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2581, 1, 0, 0, 0, 2580, 2582, 3, 138, 69, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2593, 5, 80, 0, 0, 2584, 2589, 3, 726, 363, 0, 2585, 2586, 5, 6, 0, 0, 2586, 2588, 3, 726, 363, 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, 2594, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2594, 3, 724, 362, 0, 2593, 2584, 1, 0, 0, 0, 2593, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 3, 604, 302, 0, 2596, 177, 1, 0, 0, 0, 2597, 2598, 5, 138, 0, 0, 2598, 2600, 5, 342, 0, 0, 2599, 2601, 3, 416, 208, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2603, 3, 310, 155, 0, 2603, 2604, 5, 333, 0, 0, 2604, 2605, 5, 342, 0, 0, 2605, 2606, 3, 806, 403, 0, 2606, 179, 1, 0, 0, 0, 2607, 2609, 5, 46, 0, 0, 2608, 2610, 3, 116, 58, 0, 2609, 2608, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 5, 92, 0, 0, 2612, 2614, 3, 288, 144, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 3, 182, 91, 0, 2616, 2617, 5, 36, 0, 0, 2617, 2619, 3, 554, 277, 0, 2618, 2620, 3, 184, 92, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 181, 1, 0, 0, 0, 2621, 2623, 3, 766, 383, 0, 2622, 2624, 3, 140, 70, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2626, 1, 0, 0, 0, 2625, 2627, 3, 164, 82, 0, 2626, 2625, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2630, 3, 166, 83, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2632, 1, 0, 0, 0, 2631, 2633, 3, 168, 84, 0, 2632, 2631, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2635, 1, 0, 0, 0, 2634, 2636, 3, 170, 85, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 183, 1, 0, 0, 0, 2637, 2641, 5, 105, 0, 0, 2638, 2642, 5, 174, 0, 0, 2639, 2640, 5, 269, 0, 0, 2640, 2642, 5, 174, 0, 0, 2641, 2638, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2642, 185, 1, 0, 0, 0, 2643, 2645, 5, 46, 0, 0, 2644, 2646, 5, 367, 0, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2648, 5, 259, 0, 0, 2648, 2650, 5, 376, 0, 0, 2649, 2651, 3, 288, 144, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 3, 770, 385, 0, 2653, 2655, 3, 140, 70, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2658, 3, 164, 82, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 1, 0, 0, 0, 2659, 2661, 3, 94, 47, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2663, 1, 0, 0, 0, 2662, 2664, 3, 170, 85, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 5, 36, 0, 0, 2666, 2668, 3, 554, 277, 0, 2667, 2669, 3, 184, 92, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 187, 1, 0, 0, 0, 2670, 2671, 5, 305, 0, 0, 2671, 2672, 5, 259, 0, 0, 2672, 2674, 5, 376, 0, 0, 2673, 2675, 5, 109, 0, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2678, 3, 772, 386, 0, 2677, 2679, 3, 184, 92, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 189, 1, 0, 0, 0, 2680, 2682, 5, 46, 0, 0, 2681, 2683, 3, 116, 58, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2686, 5, 328, 0, 0, 2685, 2687, 3, 288, 144, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2694, 3, 774, 387, 0, 2689, 2691, 3, 194, 97, 0, 2690, 2689, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2690, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2695, 1, 0, 0, 0, 2694, 2690, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 191, 1, 0, 0, 0, 2696, 2697, 5, 138, 0, 0, 2697, 2699, 5, 328, 0, 0, 2698, 2700, 3, 416, 208, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2703, 3, 774, 387, 0, 2702, 2704, 3, 194, 97, 0, 2703, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 193, 1, 0, 0, 0, 2707, 2708, 5, 36, 0, 0, 2708, 2741, 3, 648, 324, 0, 2709, 2711, 5, 148, 0, 0, 2710, 2712, 3, 196, 98, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2741, 1, 0, 0, 0, 2713, 2715, 5, 225, 0, 0, 2714, 2716, 5, 147, 0, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2741, 3, 196, 98, 0, 2718, 2719, 7, 28, 0, 0, 2719, 2741, 3, 196, 98, 0, 2720, 2721, 5, 269, 0, 0, 2721, 2741, 7, 29, 0, 0, 2722, 2723, 5, 281, 0, 0, 2723, 2724, 5, 147, 0, 0, 2724, 2741, 3, 794, 397, 0, 2725, 2726, 5, 328, 0, 0, 2726, 2727, 5, 266, 0, 0, 2727, 2741, 3, 310, 155, 0, 2728, 2730, 5, 340, 0, 0, 2729, 2731, 5, 105, 0, 0, 2730, 2729, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2741, 3, 196, 98, 0, 2733, 2735, 5, 314, 0, 0, 2734, 2736, 5, 105, 0, 0, 2735, 2734, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2739, 3, 196, 98, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2741, 1, 0, 0, 0, 2740, 2707, 1, 0, 0, 0, 2740, 2709, 1, 0, 0, 0, 2740, 2713, 1, 0, 0, 0, 2740, 2718, 1, 0, 0, 0, 2740, 2720, 1, 0, 0, 0, 2740, 2722, 1, 0, 0, 0, 2740, 2725, 1, 0, 0, 0, 2740, 2728, 1, 0, 0, 0, 2740, 2733, 1, 0, 0, 0, 2741, 195, 1, 0, 0, 0, 2742, 2744, 7, 30, 0, 0, 2743, 2742, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2748, 5, 576, 0, 0, 2746, 2748, 3, 806, 403, 0, 2747, 2743, 1, 0, 0, 0, 2747, 2746, 1, 0, 0, 0, 2748, 197, 1, 0, 0, 0, 2749, 2751, 5, 46, 0, 0, 2750, 2752, 3, 360, 180, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2755, 5, 359, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2758, 5, 295, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 5, 247, 0, 0, 2760, 2773, 3, 812, 406, 0, 2761, 2762, 5, 215, 0, 0, 2762, 2765, 3, 310, 155, 0, 2763, 2764, 5, 239, 0, 0, 2764, 2766, 3, 310, 155, 0, 2765, 2763, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2771, 1, 0, 0, 0, 2767, 2768, 5, 373, 0, 0, 2768, 2772, 3, 310, 155, 0, 2769, 2770, 5, 269, 0, 0, 2770, 2772, 5, 373, 0, 0, 2771, 2767, 1, 0, 0, 0, 2771, 2769, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2774, 1, 0, 0, 0, 2773, 2761, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 199, 1, 0, 0, 0, 2775, 2776, 5, 46, 0, 0, 2776, 2779, 3, 170, 85, 0, 2777, 2778, 5, 282, 0, 0, 2778, 2780, 3, 808, 404, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 255, 0, 0, 2782, 2784, 3, 802, 401, 0, 2783, 2785, 3, 94, 47, 0, 2784, 2783, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 201, 1, 0, 0, 0, 2786, 2787, 5, 46, 0, 0, 2787, 2789, 5, 204, 0, 0, 2788, 2790, 3, 288, 144, 0, 2789, 2788, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2793, 3, 812, 406, 0, 2792, 2794, 5, 105, 0, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2802, 1, 0, 0, 0, 2795, 2796, 5, 323, 0, 0, 2796, 2801, 3, 784, 392, 0, 2797, 2798, 7, 31, 0, 0, 2798, 2801, 3, 58, 29, 0, 2799, 2801, 5, 150, 0, 0, 2800, 2795, 1, 0, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 2804, 1, 0, 0, 0, 2802, 2800, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 203, 1, 0, 0, 0, 2804, 2802, 1, 0, 0, 0, 2805, 2806, 5, 138, 0, 0, 2806, 2807, 5, 204, 0, 0, 2807, 2808, 3, 812, 406, 0, 2808, 2813, 5, 369, 0, 0, 2809, 2810, 5, 94, 0, 0, 2810, 2812, 3, 58, 29, 0, 2811, 2809, 1, 0, 0, 0, 2812, 2815, 1, 0, 0, 0, 2813, 2811, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 205, 1, 0, 0, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2817, 5, 138, 0, 0, 2817, 2818, 5, 204, 0, 0, 2818, 2819, 3, 812, 406, 0, 2819, 2852, 7, 6, 0, 0, 2820, 2821, 5, 443, 0, 0, 2821, 2822, 5, 62, 0, 0, 2822, 2823, 3, 646, 323, 0, 2823, 2824, 5, 247, 0, 0, 2824, 2825, 3, 812, 406, 0, 2825, 2853, 1, 0, 0, 0, 2826, 2827, 5, 442, 0, 0, 2827, 2853, 3, 368, 184, 0, 2828, 2829, 5, 296, 0, 0, 2829, 2853, 3, 372, 186, 0, 2830, 2831, 5, 278, 0, 0, 2831, 2832, 7, 32, 0, 0, 2832, 2833, 3, 310, 155, 0, 2833, 2834, 3, 164, 82, 0, 2834, 2853, 1, 0, 0, 0, 2835, 2836, 5, 278, 0, 0, 2836, 2853, 3, 410, 205, 0, 2837, 2838, 5, 211, 0, 0, 2838, 2853, 3, 376, 188, 0, 2839, 2840, 7, 33, 0, 0, 2840, 2853, 3, 646, 323, 0, 2841, 2842, 5, 41, 0, 0, 2842, 2843, 5, 2, 0, 0, 2843, 2844, 3, 646, 323, 0, 2844, 2845, 5, 36, 0, 0, 2845, 2846, 3, 646, 323, 0, 2846, 2847, 5, 3, 0, 0, 2847, 2853, 1, 0, 0, 0, 2848, 2849, 5, 136, 0, 0, 2849, 2853, 3, 388, 194, 0, 2850, 2853, 3, 306, 153, 0, 2851, 2853, 3, 304, 152, 0, 2852, 2820, 1, 0, 0, 0, 2852, 2826, 1, 0, 0, 0, 2852, 2828, 1, 0, 0, 0, 2852, 2830, 1, 0, 0, 0, 2852, 2835, 1, 0, 0, 0, 2852, 2837, 1, 0, 0, 0, 2852, 2839, 1, 0, 0, 0, 2852, 2841, 1, 0, 0, 0, 2852, 2848, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2851, 1, 0, 0, 0, 2853, 207, 1, 0, 0, 0, 2854, 2855, 5, 46, 0, 0, 2855, 2856, 5, 63, 0, 0, 2856, 2857, 5, 174, 0, 0, 2857, 2858, 5, 381, 0, 0, 2858, 2864, 3, 812, 406, 0, 2859, 2861, 3, 210, 105, 0, 2860, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2865, 1, 0, 0, 0, 2864, 2860, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2867, 1, 0, 0, 0, 2866, 2868, 3, 214, 107, 0, 2867, 2866, 1, 0, 0, 0, 2867, 2868, 1, 0, 0, 0, 2868, 209, 1, 0, 0, 0, 2869, 2871, 7, 34, 0, 0, 2870, 2872, 3, 310, 155, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2876, 1, 0, 0, 0, 2873, 2874, 5, 269, 0, 0, 2874, 2876, 7, 34, 0, 0, 2875, 2869, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 211, 1, 0, 0, 0, 2877, 2878, 5, 138, 0, 0, 2878, 2879, 5, 63, 0, 0, 2879, 2880, 5, 174, 0, 0, 2880, 2881, 5, 381, 0, 0, 2881, 2895, 3, 812, 406, 0, 2882, 2884, 3, 210, 105, 0, 2883, 2882, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2883, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2883, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2896, 3, 216, 108, 0, 2890, 2892, 3, 210, 105, 0, 2891, 2890, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2891, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2896, 1, 0, 0, 0, 2895, 2887, 1, 0, 0, 0, 2895, 2891, 1, 0, 0, 0, 2896, 213, 1, 0, 0, 0, 2897, 2898, 5, 280, 0, 0, 2898, 2899, 5, 2, 0, 0, 2899, 2904, 3, 220, 110, 0, 2900, 2901, 5, 6, 0, 0, 2901, 2903, 3, 220, 110, 0, 2902, 2900, 1, 0, 0, 0, 2903, 2906, 1, 0, 0, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2907, 1, 0, 0, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2908, 5, 3, 0, 0, 2908, 215, 1, 0, 0, 0, 2909, 2910, 5, 280, 0, 0, 2910, 2911, 5, 2, 0, 0, 2911, 2916, 3, 218, 109, 0, 2912, 2913, 5, 6, 0, 0, 2913, 2915, 3, 218, 109, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2919, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2920, 5, 3, 0, 0, 2920, 217, 1, 0, 0, 0, 2921, 2922, 7, 35, 0, 0, 2922, 2923, 3, 220, 110, 0, 2923, 219, 1, 0, 0, 0, 2924, 2925, 3, 818, 409, 0, 2925, 2926, 3, 802, 401, 0, 2926, 221, 1, 0, 0, 0, 2927, 2928, 5, 46, 0, 0, 2928, 2930, 5, 331, 0, 0, 2929, 2931, 3, 288, 144, 0, 2930, 2929, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2935, 3, 812, 406, 0, 2933, 2934, 5, 360, 0, 0, 2934, 2936, 3, 802, 401, 0, 2935, 2933, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2938, 1, 0, 0, 0, 2937, 2939, 3, 224, 112, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2941, 5, 63, 0, 0, 2941, 2942, 5, 174, 0, 0, 2942, 2943, 5, 381, 0, 0, 2943, 2945, 3, 812, 406, 0, 2944, 2946, 3, 214, 107, 0, 2945, 2944, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 223, 1, 0, 0, 0, 2947, 2950, 5, 375, 0, 0, 2948, 2951, 3, 802, 401, 0, 2949, 2951, 5, 78, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2949, 1, 0, 0, 0, 2951, 225, 1, 0, 0, 0, 2952, 2953, 5, 138, 0, 0, 2953, 2954, 5, 331, 0, 0, 2954, 2960, 3, 812, 406, 0, 2955, 2961, 3, 216, 108, 0, 2956, 2958, 3, 224, 112, 0, 2957, 2959, 3, 216, 108, 0, 2958, 2957, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2955, 1, 0, 0, 0, 2960, 2956, 1, 0, 0, 0, 2961, 227, 1, 0, 0, 0, 2962, 2963, 5, 46, 0, 0, 2963, 2964, 5, 63, 0, 0, 2964, 2966, 5, 92, 0, 0, 2965, 2967, 3, 288, 144, 0, 2966, 2965, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2969, 3, 766, 383, 0, 2969, 2971, 5, 2, 0, 0, 2970, 2972, 3, 120, 60, 0, 2971, 2970, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 5, 3, 0, 0, 2974, 2976, 3, 158, 79, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2978, 5, 331, 0, 0, 2978, 2980, 3, 812, 406, 0, 2979, 2981, 3, 214, 107, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 3002, 1, 0, 0, 0, 2982, 2983, 5, 46, 0, 0, 2983, 2984, 5, 63, 0, 0, 2984, 2986, 5, 92, 0, 0, 2985, 2987, 3, 288, 144, 0, 2986, 2985, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 3, 766, 383, 0, 2989, 2990, 5, 285, 0, 0, 2990, 2991, 5, 275, 0, 0, 2991, 2993, 3, 768, 384, 0, 2992, 2994, 3, 118, 59, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 3, 98, 49, 0, 2996, 2997, 5, 331, 0, 0, 2997, 2999, 3, 812, 406, 0, 2998, 3000, 3, 214, 107, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3002, 1, 0, 0, 0, 3001, 2962, 1, 0, 0, 0, 3001, 2982, 1, 0, 0, 0, 3002, 229, 1, 0, 0, 0, 3003, 3004, 5, 444, 0, 0, 3004, 3005, 5, 63, 0, 0, 3005, 3006, 5, 323, 0, 0, 3006, 3016, 3, 784, 392, 0, 3007, 3008, 5, 74, 0, 0, 3008, 3011, 5, 94, 0, 0, 3009, 3011, 5, 59, 0, 0, 3010, 3007, 1, 0, 0, 0, 3010, 3009, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 5, 2, 0, 0, 3013, 3014, 3, 622, 311, 0, 3014, 3015, 5, 3, 0, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3010, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 5, 64, 0, 0, 3019, 3020, 5, 331, 0, 0, 3020, 3021, 3, 812, 406, 0, 3021, 3022, 5, 71, 0, 0, 3022, 3024, 3, 812, 406, 0, 3023, 3025, 3, 214, 107, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 231, 1, 0, 0, 0, 3026, 3027, 5, 46, 0, 0, 3027, 3028, 5, 99, 0, 0, 3028, 3030, 5, 257, 0, 0, 3029, 3031, 3, 288, 144, 0, 3030, 3029, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3035, 5, 62, 0, 0, 3033, 3036, 3, 808, 404, 0, 3034, 3036, 5, 99, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 5, 331, 0, 0, 3038, 3040, 3, 812, 406, 0, 3039, 3041, 3, 214, 107, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 233, 1, 0, 0, 0, 3042, 3043, 5, 138, 0, 0, 3043, 3044, 5, 99, 0, 0, 3044, 3045, 5, 257, 0, 0, 3045, 3048, 5, 62, 0, 0, 3046, 3049, 3, 808, 404, 0, 3047, 3049, 5, 99, 0, 0, 3048, 3046, 1, 0, 0, 0, 3048, 3047, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3051, 5, 331, 0, 0, 3051, 3052, 3, 812, 406, 0, 3052, 3053, 3, 216, 108, 0, 3053, 235, 1, 0, 0, 0, 3054, 3055, 5, 46, 0, 0, 3055, 3056, 5, 445, 0, 0, 3056, 3057, 3, 812, 406, 0, 3057, 3058, 5, 80, 0, 0, 3058, 3065, 3, 774, 387, 0, 3059, 3063, 5, 36, 0, 0, 3060, 3064, 5, 541, 0, 0, 3061, 3064, 5, 542, 0, 0, 3062, 3064, 3, 820, 410, 0, 3063, 3060, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 3066, 1, 0, 0, 0, 3065, 3059, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3069, 1, 0, 0, 0, 3067, 3068, 5, 62, 0, 0, 3068, 3070, 7, 36, 0, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3073, 1, 0, 0, 0, 3071, 3072, 5, 94, 0, 0, 3072, 3074, 3, 810, 405, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3076, 1, 0, 0, 0, 3075, 3077, 3, 244, 122, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3079, 1, 0, 0, 0, 3078, 3080, 3, 246, 123, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 237, 1, 0, 0, 0, 3081, 3082, 5, 138, 0, 0, 3082, 3083, 5, 445, 0, 0, 3083, 3084, 3, 812, 406, 0, 3084, 3085, 5, 80, 0, 0, 3085, 3088, 3, 774, 387, 0, 3086, 3087, 5, 94, 0, 0, 3087, 3089, 3, 810, 405, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3092, 3, 244, 122, 0, 3091, 3090, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3095, 3, 246, 123, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 239, 1, 0, 0, 0, 3096, 3097, 5, 138, 0, 0, 3097, 3098, 5, 296, 0, 0, 3098, 3100, 3, 790, 395, 0, 3099, 3101, 3, 362, 181, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3128, 1, 0, 0, 0, 3102, 3106, 3, 242, 121, 0, 3103, 3105, 3, 242, 121, 0, 3104, 3103, 1, 0, 0, 0, 3105, 3108, 1, 0, 0, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3110, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3109, 3111, 5, 315, 0, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3129, 1, 0, 0, 0, 3112, 3113, 5, 309, 0, 0, 3113, 3114, 5, 94, 0, 0, 3114, 3129, 3, 792, 396, 0, 3115, 3116, 5, 282, 0, 0, 3116, 3117, 5, 94, 0, 0, 3117, 3129, 3, 808, 404, 0, 3118, 3119, 5, 333, 0, 0, 3119, 3120, 5, 323, 0, 0, 3120, 3129, 3, 32, 16, 0, 3121, 3123, 5, 269, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 462, 0, 0, 3125, 3126, 5, 80, 0, 0, 3126, 3127, 5, 204, 0, 0, 3127, 3129, 3, 812, 406, 0, 3128, 3102, 1, 0, 0, 0, 3128, 3112, 1, 0, 0, 0, 3128, 3115, 1, 0, 0, 0, 3128, 3118, 1, 0, 0, 0, 3128, 3122, 1, 0, 0, 0, 3129, 241, 1, 0, 0, 0, 3130, 3132, 5, 205, 0, 0, 3131, 3130, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3134, 5, 327, 0, 0, 3134, 3141, 5, 243, 0, 0, 3135, 3137, 5, 205, 0, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 327, 0, 0, 3139, 3141, 5, 181, 0, 0, 3140, 3131, 1, 0, 0, 0, 3140, 3136, 1, 0, 0, 0, 3141, 3160, 1, 0, 0, 0, 3142, 3143, 5, 333, 0, 0, 3143, 3144, 3, 812, 406, 0, 3144, 3147, 7, 37, 0, 0, 3145, 3148, 3, 812, 406, 0, 3146, 3148, 5, 53, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3146, 1, 0, 0, 0, 3148, 3160, 1, 0, 0, 0, 3149, 3150, 5, 333, 0, 0, 3150, 3151, 3, 812, 406, 0, 3151, 3152, 5, 64, 0, 0, 3152, 3153, 5, 434, 0, 0, 3153, 3160, 1, 0, 0, 0, 3154, 3157, 5, 313, 0, 0, 3155, 3158, 3, 812, 406, 0, 3156, 3158, 5, 30, 0, 0, 3157, 3155, 1, 0, 0, 0, 3157, 3156, 1, 0, 0, 0, 3158, 3160, 1, 0, 0, 0, 3159, 3140, 1, 0, 0, 0, 3159, 3142, 1, 0, 0, 0, 3159, 3149, 1, 0, 0, 0, 3159, 3154, 1, 0, 0, 0, 3160, 243, 1, 0, 0, 0, 3161, 3162, 5, 100, 0, 0, 3162, 3163, 5, 2, 0, 0, 3163, 3164, 3, 668, 334, 0, 3164, 3165, 5, 3, 0, 0, 3165, 245, 1, 0, 0, 0, 3166, 3167, 5, 105, 0, 0, 3167, 3168, 5, 42, 0, 0, 3168, 3169, 5, 2, 0, 0, 3169, 3170, 3, 668, 334, 0, 3170, 3171, 5, 3, 0, 0, 3171, 247, 1, 0, 0, 0, 3172, 3173, 5, 46, 0, 0, 3173, 3174, 5, 131, 0, 0, 3174, 3175, 5, 446, 0, 0, 3175, 3176, 3, 812, 406, 0, 3176, 3177, 5, 360, 0, 0, 3177, 3178, 7, 38, 0, 0, 3178, 3179, 5, 215, 0, 0, 3179, 3180, 3, 310, 155, 0, 3180, 249, 1, 0, 0, 0, 3181, 3183, 5, 46, 0, 0, 3182, 3184, 3, 360, 180, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 3186, 5, 357, 0, 0, 3186, 3187, 3, 812, 406, 0, 3187, 3188, 3, 252, 126, 0, 3188, 3189, 3, 254, 127, 0, 3189, 3190, 5, 80, 0, 0, 3190, 3202, 3, 768, 384, 0, 3191, 3198, 5, 447, 0, 0, 3192, 3193, 7, 39, 0, 0, 3193, 3195, 7, 40, 0, 0, 3194, 3196, 5, 36, 0, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3199, 3, 812, 406, 0, 3198, 3192, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3198, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, 0, 0, 0, 3202, 3191, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3209, 1, 0, 0, 0, 3204, 3206, 5, 62, 0, 0, 3205, 3207, 5, 192, 0, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 7, 41, 0, 0, 3209, 3204, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 258, 129, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 5, 202, 0, 0, 3215, 3216, 3, 260, 130, 0, 3216, 3217, 5, 2, 0, 0, 3217, 3218, 3, 262, 131, 0, 3218, 3219, 5, 3, 0, 0, 3219, 3260, 1, 0, 0, 0, 3220, 3222, 5, 46, 0, 0, 3221, 3223, 3, 360, 180, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 5, 45, 0, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3228, 5, 357, 0, 0, 3228, 3229, 3, 812, 406, 0, 3229, 3230, 3, 252, 126, 0, 3230, 3231, 3, 254, 127, 0, 3231, 3232, 5, 80, 0, 0, 3232, 3235, 3, 768, 384, 0, 3233, 3234, 5, 64, 0, 0, 3234, 3236, 3, 774, 387, 0, 3235, 3233, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3240, 1, 0, 0, 0, 3237, 3239, 3, 266, 133, 0, 3238, 3237, 1, 0, 0, 0, 3239, 3242, 1, 0, 0, 0, 3240, 3238, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3248, 1, 0, 0, 0, 3242, 3240, 1, 0, 0, 0, 3243, 3245, 5, 62, 0, 0, 3244, 3246, 5, 192, 0, 0, 3245, 3244, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 7, 41, 0, 0, 3248, 3243, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 1, 0, 0, 0, 3250, 3252, 3, 258, 129, 0, 3251, 3250, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3254, 5, 202, 0, 0, 3254, 3255, 3, 260, 130, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3257, 3, 262, 131, 0, 3257, 3258, 5, 3, 0, 0, 3258, 3260, 1, 0, 0, 0, 3259, 3181, 1, 0, 0, 0, 3259, 3220, 1, 0, 0, 0, 3260, 251, 1, 0, 0, 0, 3261, 3266, 5, 145, 0, 0, 3262, 3266, 5, 135, 0, 0, 3263, 3264, 5, 242, 0, 0, 3264, 3266, 5, 275, 0, 0, 3265, 3261, 1, 0, 0, 0, 3265, 3262, 1, 0, 0, 0, 3265, 3263, 1, 0, 0, 0, 3266, 253, 1, 0, 0, 0, 3267, 3272, 3, 256, 128, 0, 3268, 3269, 5, 82, 0, 0, 3269, 3271, 3, 256, 128, 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, 255, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3284, 5, 241, 0, 0, 3276, 3284, 5, 182, 0, 0, 3277, 3280, 5, 369, 0, 0, 3278, 3279, 5, 275, 0, 0, 3279, 3281, 3, 142, 71, 0, 3280, 3278, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3284, 1, 0, 0, 0, 3282, 3284, 5, 358, 0, 0, 3283, 3275, 1, 0, 0, 0, 3283, 3276, 1, 0, 0, 0, 3283, 3277, 1, 0, 0, 0, 3283, 3282, 1, 0, 0, 0, 3284, 257, 1, 0, 0, 0, 3285, 3286, 5, 102, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3288, 3, 668, 334, 0, 3288, 3289, 5, 3, 0, 0, 3289, 259, 1, 0, 0, 0, 3290, 3291, 5, 211, 0, 0, 3291, 3295, 3, 800, 400, 0, 3292, 3293, 5, 296, 0, 0, 3293, 3295, 3, 790, 395, 0, 3294, 3290, 1, 0, 0, 0, 3294, 3292, 1, 0, 0, 0, 3295, 261, 1, 0, 0, 0, 3296, 3299, 3, 264, 132, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3298, 3297, 1, 0, 0, 0, 3299, 3304, 1, 0, 0, 0, 3300, 3301, 5, 6, 0, 0, 3301, 3303, 3, 264, 132, 0, 3302, 3300, 1, 0, 0, 0, 3303, 3306, 1, 0, 0, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 263, 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3312, 5, 574, 0, 0, 3308, 3312, 5, 576, 0, 0, 3309, 3312, 3, 802, 401, 0, 3310, 3312, 3, 818, 409, 0, 3311, 3307, 1, 0, 0, 0, 3311, 3308, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3311, 3310, 1, 0, 0, 0, 3312, 265, 1, 0, 0, 0, 3313, 3315, 5, 77, 0, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 3324, 5, 54, 0, 0, 3317, 3318, 5, 69, 0, 0, 3318, 3324, 7, 9, 0, 0, 3319, 3320, 5, 77, 0, 0, 3320, 3324, 5, 371, 0, 0, 3321, 3322, 5, 269, 0, 0, 3322, 3324, 5, 228, 0, 0, 3323, 3314, 1, 0, 0, 0, 3323, 3317, 1, 0, 0, 0, 3323, 3319, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3324, 267, 1, 0, 0, 0, 3325, 3326, 5, 46, 0, 0, 3326, 3327, 5, 198, 0, 0, 3327, 3328, 5, 357, 0, 0, 3328, 3329, 3, 812, 406, 0, 3329, 3330, 5, 80, 0, 0, 3330, 3340, 3, 818, 409, 0, 3331, 3332, 5, 102, 0, 0, 3332, 3337, 3, 270, 135, 0, 3333, 3334, 5, 33, 0, 0, 3334, 3336, 3, 270, 135, 0, 3335, 3333, 1, 0, 0, 0, 3336, 3339, 1, 0, 0, 0, 3337, 3335, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3341, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3331, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 5, 202, 0, 0, 3343, 3344, 3, 260, 130, 0, 3344, 3345, 5, 2, 0, 0, 3345, 3346, 5, 3, 0, 0, 3346, 269, 1, 0, 0, 0, 3347, 3348, 3, 812, 406, 0, 3348, 3349, 5, 68, 0, 0, 3349, 3350, 5, 2, 0, 0, 3350, 3354, 3, 802, 401, 0, 3351, 3353, 3, 456, 228, 0, 3352, 3351, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3357, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3358, 5, 3, 0, 0, 3358, 271, 1, 0, 0, 0, 3359, 3360, 5, 138, 0, 0, 3360, 3361, 5, 198, 0, 0, 3361, 3362, 5, 357, 0, 0, 3362, 3368, 3, 812, 406, 0, 3363, 3365, 5, 193, 0, 0, 3364, 3366, 7, 14, 0, 0, 3365, 3364, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3369, 1, 0, 0, 0, 3367, 3369, 5, 186, 0, 0, 3368, 3363, 1, 0, 0, 0, 3368, 3367, 1, 0, 0, 0, 3369, 273, 1, 0, 0, 0, 3370, 3371, 5, 46, 0, 0, 3371, 3372, 5, 140, 0, 0, 3372, 3373, 3, 310, 155, 0, 3373, 3374, 5, 42, 0, 0, 3374, 3375, 5, 2, 0, 0, 3375, 3376, 3, 668, 334, 0, 3376, 3380, 5, 3, 0, 0, 3377, 3379, 3, 266, 133, 0, 3378, 3377, 1, 0, 0, 0, 3379, 3382, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 275, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3385, 5, 46, 0, 0, 3384, 3386, 3, 360, 180, 0, 3385, 3384, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 5, 136, 0, 0, 3388, 3403, 3, 800, 400, 0, 3389, 3390, 3, 386, 193, 0, 3390, 3391, 3, 278, 139, 0, 3391, 3404, 1, 0, 0, 0, 3392, 3393, 5, 2, 0, 0, 3393, 3398, 3, 284, 142, 0, 3394, 3395, 5, 6, 0, 0, 3395, 3397, 3, 284, 142, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3401, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3402, 5, 3, 0, 0, 3402, 3404, 1, 0, 0, 0, 3403, 3389, 1, 0, 0, 0, 3403, 3392, 1, 0, 0, 0, 3404, 3462, 1, 0, 0, 0, 3405, 3406, 5, 46, 0, 0, 3406, 3407, 5, 278, 0, 0, 3407, 3408, 3, 408, 204, 0, 3408, 3409, 3, 278, 139, 0, 3409, 3462, 1, 0, 0, 0, 3410, 3411, 5, 46, 0, 0, 3411, 3412, 5, 360, 0, 0, 3412, 3413, 3, 310, 155, 0, 3413, 3431, 5, 36, 0, 0, 3414, 3416, 5, 2, 0, 0, 3415, 3417, 3, 636, 318, 0, 3416, 3415, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3432, 5, 3, 0, 0, 3419, 3420, 5, 196, 0, 0, 3420, 3428, 5, 2, 0, 0, 3421, 3425, 3, 802, 401, 0, 3422, 3424, 3, 456, 228, 0, 3423, 3422, 1, 0, 0, 0, 3424, 3427, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3429, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3421, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3432, 5, 3, 0, 0, 3431, 3414, 1, 0, 0, 0, 3431, 3419, 1, 0, 0, 0, 3432, 3462, 1, 0, 0, 0, 3433, 3434, 5, 46, 0, 0, 3434, 3435, 5, 360, 0, 0, 3435, 3441, 3, 310, 155, 0, 3436, 3437, 5, 36, 0, 0, 3437, 3439, 5, 299, 0, 0, 3438, 3436, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3442, 3, 278, 139, 0, 3441, 3438, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3462, 1, 0, 0, 0, 3443, 3444, 5, 46, 0, 0, 3444, 3445, 5, 355, 0, 0, 3445, 3446, 5, 325, 0, 0, 3446, 3447, 7, 42, 0, 0, 3447, 3448, 3, 310, 155, 0, 3448, 3449, 3, 278, 139, 0, 3449, 3462, 1, 0, 0, 0, 3450, 3451, 5, 46, 0, 0, 3451, 3453, 5, 108, 0, 0, 3452, 3454, 3, 288, 144, 0, 3453, 3452, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3459, 3, 310, 155, 0, 3456, 3460, 3, 278, 139, 0, 3457, 3458, 5, 64, 0, 0, 3458, 3460, 3, 310, 155, 0, 3459, 3456, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3462, 1, 0, 0, 0, 3461, 3383, 1, 0, 0, 0, 3461, 3405, 1, 0, 0, 0, 3461, 3410, 1, 0, 0, 0, 3461, 3433, 1, 0, 0, 0, 3461, 3443, 1, 0, 0, 0, 3461, 3450, 1, 0, 0, 0, 3462, 277, 1, 0, 0, 0, 3463, 3464, 5, 2, 0, 0, 3464, 3469, 3, 280, 140, 0, 3465, 3466, 5, 6, 0, 0, 3466, 3468, 3, 280, 140, 0, 3467, 3465, 1, 0, 0, 0, 3468, 3471, 1, 0, 0, 0, 3469, 3467, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3472, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3473, 5, 3, 0, 0, 3473, 279, 1, 0, 0, 0, 3474, 3477, 3, 818, 409, 0, 3475, 3476, 5, 10, 0, 0, 3476, 3478, 3, 282, 141, 0, 3477, 3475, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 281, 1, 0, 0, 0, 3479, 3486, 3, 382, 191, 0, 3480, 3486, 3, 828, 414, 0, 3481, 3486, 3, 720, 360, 0, 3482, 3486, 3, 196, 98, 0, 3483, 3486, 3, 802, 401, 0, 3484, 3486, 5, 407, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 283, 1, 0, 0, 0, 3487, 3488, 3, 820, 410, 0, 3488, 3489, 5, 10, 0, 0, 3489, 3490, 3, 282, 141, 0, 3490, 285, 1, 0, 0, 0, 3491, 3492, 5, 138, 0, 0, 3492, 3493, 5, 360, 0, 0, 3493, 3494, 3, 310, 155, 0, 3494, 3495, 5, 133, 0, 0, 3495, 3497, 5, 450, 0, 0, 3496, 3498, 3, 288, 144, 0, 3497, 3496, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3502, 3, 802, 401, 0, 3500, 3501, 7, 43, 0, 0, 3501, 3503, 3, 802, 401, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3514, 1, 0, 0, 0, 3504, 3505, 5, 138, 0, 0, 3505, 3506, 5, 360, 0, 0, 3506, 3507, 3, 310, 155, 0, 3507, 3508, 5, 309, 0, 0, 3508, 3509, 5, 450, 0, 0, 3509, 3510, 3, 802, 401, 0, 3510, 3511, 5, 94, 0, 0, 3511, 3512, 3, 802, 401, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3491, 1, 0, 0, 0, 3513, 3504, 1, 0, 0, 0, 3514, 287, 1, 0, 0, 0, 3515, 3516, 5, 220, 0, 0, 3516, 3517, 5, 77, 0, 0, 3517, 3518, 5, 396, 0, 0, 3518, 289, 1, 0, 0, 0, 3519, 3520, 5, 46, 0, 0, 3520, 3521, 5, 278, 0, 0, 3521, 3522, 5, 156, 0, 0, 3522, 3524, 3, 310, 155, 0, 3523, 3525, 5, 53, 0, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3527, 5, 62, 0, 0, 3527, 3528, 5, 360, 0, 0, 3528, 3529, 3, 646, 323, 0, 3529, 3532, 3, 164, 82, 0, 3530, 3531, 5, 206, 0, 0, 3531, 3533, 3, 310, 155, 0, 3532, 3530, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3535, 5, 36, 0, 0, 3535, 3540, 3, 292, 146, 0, 3536, 3537, 5, 6, 0, 0, 3537, 3539, 3, 292, 146, 0, 3538, 3536, 1, 0, 0, 0, 3539, 3542, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 291, 1, 0, 0, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3544, 5, 278, 0, 0, 3544, 3545, 5, 574, 0, 0, 3545, 3547, 3, 408, 204, 0, 3546, 3548, 3, 406, 203, 0, 3547, 3546, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3556, 1, 0, 0, 0, 3549, 3554, 5, 62, 0, 0, 3550, 3555, 5, 325, 0, 0, 3551, 3552, 5, 83, 0, 0, 3552, 3553, 5, 147, 0, 0, 3553, 3555, 3, 310, 155, 0, 3554, 3550, 1, 0, 0, 0, 3554, 3551, 1, 0, 0, 0, 3555, 3557, 1, 0, 0, 0, 3556, 3549, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 3559, 1, 0, 0, 0, 3558, 3560, 5, 302, 0, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3570, 1, 0, 0, 0, 3561, 3562, 5, 211, 0, 0, 3562, 3564, 5, 574, 0, 0, 3563, 3565, 3, 522, 261, 0, 3564, 3563, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3570, 3, 376, 188, 0, 3567, 3568, 5, 345, 0, 0, 3568, 3570, 3, 646, 323, 0, 3569, 3543, 1, 0, 0, 0, 3569, 3561, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3570, 293, 1, 0, 0, 0, 3571, 3572, 5, 46, 0, 0, 3572, 3573, 5, 278, 0, 0, 3573, 3574, 5, 206, 0, 0, 3574, 3575, 3, 310, 155, 0, 3575, 3576, 3, 164, 82, 0, 3576, 295, 1, 0, 0, 0, 3577, 3578, 5, 138, 0, 0, 3578, 3579, 5, 278, 0, 0, 3579, 3580, 5, 206, 0, 0, 3580, 3581, 3, 310, 155, 0, 3581, 3600, 3, 164, 82, 0, 3582, 3583, 5, 133, 0, 0, 3583, 3588, 3, 292, 146, 0, 3584, 3585, 5, 6, 0, 0, 3585, 3587, 3, 292, 146, 0, 3586, 3584, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3601, 1, 0, 0, 0, 3590, 3588, 1, 0, 0, 0, 3591, 3592, 5, 191, 0, 0, 3592, 3597, 3, 298, 149, 0, 3593, 3594, 5, 6, 0, 0, 3594, 3596, 3, 298, 149, 0, 3595, 3593, 1, 0, 0, 0, 3596, 3599, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 3601, 1, 0, 0, 0, 3599, 3597, 1, 0, 0, 0, 3600, 3582, 1, 0, 0, 0, 3600, 3591, 1, 0, 0, 0, 3601, 297, 1, 0, 0, 0, 3602, 3603, 7, 44, 0, 0, 3603, 3604, 5, 574, 0, 0, 3604, 3605, 3, 522, 261, 0, 3605, 299, 1, 0, 0, 0, 3606, 3607, 5, 301, 0, 0, 3607, 3608, 5, 281, 0, 0, 3608, 3609, 5, 147, 0, 0, 3609, 3610, 3, 810, 405, 0, 3610, 3611, 5, 94, 0, 0, 3611, 3612, 3, 808, 404, 0, 3612, 301, 1, 0, 0, 0, 3613, 3636, 5, 191, 0, 0, 3614, 3637, 5, 328, 0, 0, 3615, 3637, 5, 226, 0, 0, 3616, 3637, 5, 108, 0, 0, 3617, 3637, 5, 168, 0, 0, 3618, 3637, 5, 342, 0, 0, 3619, 3637, 5, 452, 0, 0, 3620, 3637, 5, 331, 0, 0, 3621, 3622, 5, 131, 0, 0, 3622, 3637, 5, 446, 0, 0, 3623, 3624, 5, 198, 0, 0, 3624, 3637, 5, 357, 0, 0, 3625, 3637, 5, 204, 0, 0, 3626, 3628, 5, 295, 0, 0, 3627, 3626, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3637, 5, 247, 0, 0, 3630, 3631, 5, 63, 0, 0, 3631, 3632, 5, 174, 0, 0, 3632, 3637, 5, 381, 0, 0, 3633, 3634, 5, 355, 0, 0, 3634, 3635, 5, 325, 0, 0, 3635, 3637, 7, 42, 0, 0, 3636, 3614, 1, 0, 0, 0, 3636, 3615, 1, 0, 0, 0, 3636, 3616, 1, 0, 0, 0, 3636, 3617, 1, 0, 0, 0, 3636, 3618, 1, 0, 0, 0, 3636, 3619, 1, 0, 0, 0, 3636, 3620, 1, 0, 0, 0, 3636, 3621, 1, 0, 0, 0, 3636, 3623, 1, 0, 0, 0, 3636, 3625, 1, 0, 0, 0, 3636, 3627, 1, 0, 0, 0, 3636, 3630, 1, 0, 0, 0, 3636, 3633, 1, 0, 0, 0, 3637, 3639, 1, 0, 0, 0, 3638, 3640, 3, 416, 208, 0, 3639, 3638, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3643, 3, 778, 389, 0, 3642, 3644, 3, 88, 44, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3821, 1, 0, 0, 0, 3645, 3647, 5, 191, 0, 0, 3646, 3648, 5, 259, 0, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3651, 5, 376, 0, 0, 3650, 3652, 3, 416, 208, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3658, 3, 772, 386, 0, 3654, 3655, 5, 6, 0, 0, 3655, 3657, 3, 772, 386, 0, 3656, 3654, 1, 0, 0, 0, 3657, 3660, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3662, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3663, 3, 88, 44, 0, 3662, 3661, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3821, 1, 0, 0, 0, 3664, 3666, 5, 191, 0, 0, 3665, 3667, 5, 63, 0, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3670, 5, 92, 0, 0, 3669, 3671, 3, 416, 208, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 3, 756, 378, 0, 3673, 3675, 3, 88, 44, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3821, 1, 0, 0, 0, 3676, 3677, 5, 191, 0, 0, 3677, 3679, 5, 323, 0, 0, 3678, 3680, 3, 416, 208, 0, 3679, 3678, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3683, 3, 758, 379, 0, 3682, 3684, 3, 88, 44, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3821, 1, 0, 0, 0, 3685, 3686, 5, 191, 0, 0, 3686, 3688, 7, 45, 0, 0, 3687, 3689, 3, 416, 208, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 3691, 3, 812, 406, 0, 3691, 3692, 5, 80, 0, 0, 3692, 3694, 3, 310, 155, 0, 3693, 3695, 3, 88, 44, 0, 3694, 3693, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3821, 1, 0, 0, 0, 3696, 3697, 5, 191, 0, 0, 3697, 3699, 7, 33, 0, 0, 3698, 3700, 3, 416, 208, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3706, 3, 646, 323, 0, 3702, 3703, 5, 6, 0, 0, 3703, 3705, 3, 646, 323, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3710, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3711, 3, 88, 44, 0, 3710, 3709, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3821, 1, 0, 0, 0, 3712, 3713, 5, 191, 0, 0, 3713, 3714, 5, 226, 0, 0, 3714, 3716, 5, 109, 0, 0, 3715, 3717, 3, 416, 208, 0, 3716, 3715, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 3, 308, 154, 0, 3719, 3721, 3, 88, 44, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3821, 1, 0, 0, 0, 3722, 3723, 5, 191, 0, 0, 3723, 3725, 5, 41, 0, 0, 3724, 3726, 3, 416, 208, 0, 3725, 3724, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 5, 2, 0, 0, 3728, 3729, 3, 646, 323, 0, 3729, 3730, 5, 36, 0, 0, 3730, 3731, 3, 646, 323, 0, 3731, 3733, 5, 3, 0, 0, 3732, 3734, 3, 88, 44, 0, 3733, 3732, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3821, 1, 0, 0, 0, 3735, 3736, 5, 191, 0, 0, 3736, 3737, 5, 278, 0, 0, 3737, 3739, 7, 32, 0, 0, 3738, 3740, 3, 416, 208, 0, 3739, 3738, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 3, 310, 155, 0, 3742, 3744, 3, 164, 82, 0, 3743, 3745, 3, 88, 44, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3821, 1, 0, 0, 0, 3746, 3747, 5, 191, 0, 0, 3747, 3748, 5, 281, 0, 0, 3748, 3749, 5, 147, 0, 0, 3749, 3751, 3, 810, 405, 0, 3750, 3752, 3, 88, 44, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3821, 1, 0, 0, 0, 3753, 3754, 5, 191, 0, 0, 3754, 3756, 5, 451, 0, 0, 3755, 3757, 3, 416, 208, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3760, 3, 812, 406, 0, 3759, 3761, 3, 88, 44, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3821, 1, 0, 0, 0, 3762, 3763, 5, 191, 0, 0, 3763, 3765, 5, 351, 0, 0, 3764, 3766, 3, 416, 208, 0, 3765, 3764, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3821, 3, 764, 382, 0, 3768, 3769, 5, 191, 0, 0, 3769, 3771, 5, 443, 0, 0, 3770, 3772, 3, 416, 208, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 5, 62, 0, 0, 3774, 3775, 3, 646, 323, 0, 3775, 3776, 5, 247, 0, 0, 3776, 3778, 3, 812, 406, 0, 3777, 3779, 3, 88, 44, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3821, 1, 0, 0, 0, 3780, 3781, 5, 191, 0, 0, 3781, 3783, 7, 46, 0, 0, 3782, 3784, 3, 416, 208, 0, 3783, 3782, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3821, 3, 810, 405, 0, 3786, 3787, 5, 191, 0, 0, 3787, 3788, 5, 99, 0, 0, 3788, 3790, 5, 257, 0, 0, 3789, 3791, 3, 416, 208, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3795, 5, 62, 0, 0, 3793, 3796, 3, 808, 404, 0, 3794, 3796, 5, 99, 0, 0, 3795, 3793, 1, 0, 0, 0, 3795, 3794, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3798, 5, 331, 0, 0, 3798, 3821, 3, 812, 406, 0, 3799, 3800, 5, 191, 0, 0, 3800, 3802, 5, 175, 0, 0, 3801, 3803, 3, 416, 208, 0, 3802, 3801, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3818, 3, 782, 391, 0, 3805, 3807, 5, 105, 0, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3809, 5, 2, 0, 0, 3809, 3814, 5, 209, 0, 0, 3810, 3811, 5, 6, 0, 0, 3811, 3813, 5, 209, 0, 0, 3812, 3810, 1, 0, 0, 0, 3813, 3816, 1, 0, 0, 0, 3814, 3812, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3817, 1, 0, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3819, 5, 3, 0, 0, 3818, 3806, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3613, 1, 0, 0, 0, 3820, 3645, 1, 0, 0, 0, 3820, 3664, 1, 0, 0, 0, 3820, 3676, 1, 0, 0, 0, 3820, 3685, 1, 0, 0, 0, 3820, 3696, 1, 0, 0, 0, 3820, 3712, 1, 0, 0, 0, 3820, 3722, 1, 0, 0, 0, 3820, 3735, 1, 0, 0, 0, 3820, 3746, 1, 0, 0, 0, 3820, 3753, 1, 0, 0, 0, 3820, 3762, 1, 0, 0, 0, 3820, 3768, 1, 0, 0, 0, 3820, 3780, 1, 0, 0, 0, 3820, 3786, 1, 0, 0, 0, 3820, 3799, 1, 0, 0, 0, 3821, 303, 1, 0, 0, 0, 3822, 3824, 5, 63, 0, 0, 3823, 3822, 1, 0, 0, 0, 3823, 3824, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3826, 5, 92, 0, 0, 3826, 3839, 3, 768, 384, 0, 3827, 3829, 5, 259, 0, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3831, 5, 376, 0, 0, 3831, 3839, 3, 772, 386, 0, 3832, 3833, 7, 47, 0, 0, 3833, 3839, 3, 310, 155, 0, 3834, 3835, 5, 355, 0, 0, 3835, 3836, 5, 325, 0, 0, 3836, 3837, 7, 42, 0, 0, 3837, 3839, 3, 310, 155, 0, 3838, 3823, 1, 0, 0, 0, 3838, 3828, 1, 0, 0, 0, 3838, 3832, 1, 0, 0, 0, 3838, 3834, 1, 0, 0, 0, 3839, 305, 1, 0, 0, 0, 3840, 3841, 5, 198, 0, 0, 3841, 3857, 5, 357, 0, 0, 3842, 3843, 5, 131, 0, 0, 3843, 3857, 5, 446, 0, 0, 3844, 3857, 5, 204, 0, 0, 3845, 3857, 5, 452, 0, 0, 3846, 3857, 5, 331, 0, 0, 3847, 3857, 5, 318, 0, 0, 3848, 3857, 5, 451, 0, 0, 3849, 3850, 5, 63, 0, 0, 3850, 3851, 5, 174, 0, 0, 3851, 3857, 5, 381, 0, 0, 3852, 3854, 5, 295, 0, 0, 3853, 3852, 1, 0, 0, 0, 3853, 3854, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 3857, 5, 247, 0, 0, 3856, 3840, 1, 0, 0, 0, 3856, 3842, 1, 0, 0, 0, 3856, 3844, 1, 0, 0, 0, 3856, 3845, 1, 0, 0, 0, 3856, 3846, 1, 0, 0, 0, 3856, 3847, 1, 0, 0, 0, 3856, 3848, 1, 0, 0, 0, 3856, 3849, 1, 0, 0, 0, 3856, 3853, 1, 0, 0, 0, 3857, 3858, 1, 0, 0, 0, 3858, 3865, 3, 812, 406, 0, 3859, 3860, 5, 323, 0, 0, 3860, 3865, 3, 784, 392, 0, 3861, 3862, 5, 175, 0, 0, 3862, 3865, 3, 782, 391, 0, 3863, 3865, 3, 170, 85, 0, 3864, 3856, 1, 0, 0, 0, 3864, 3859, 1, 0, 0, 0, 3864, 3861, 1, 0, 0, 0, 3864, 3863, 1, 0, 0, 0, 3865, 307, 1, 0, 0, 0, 3866, 3871, 3, 310, 155, 0, 3867, 3868, 5, 6, 0, 0, 3868, 3870, 3, 310, 155, 0, 3869, 3867, 1, 0, 0, 0, 3870, 3873, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 309, 1, 0, 0, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3876, 3, 812, 406, 0, 3875, 3877, 3, 312, 156, 0, 3876, 3875, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 311, 1, 0, 0, 0, 3878, 3879, 5, 11, 0, 0, 3879, 3881, 3, 818, 409, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3880, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 313, 1, 0, 0, 0, 3884, 3886, 5, 358, 0, 0, 3885, 3887, 5, 92, 0, 0, 3886, 3885, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3893, 3, 316, 158, 0, 3889, 3890, 5, 6, 0, 0, 3890, 3892, 3, 316, 158, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3895, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3898, 1, 0, 0, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3897, 7, 48, 0, 0, 3897, 3899, 5, 219, 0, 0, 3898, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3901, 1, 0, 0, 0, 3900, 3902, 3, 88, 44, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 315, 1, 0, 0, 0, 3903, 3905, 5, 81, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3908, 3, 768, 384, 0, 3907, 3909, 5, 9, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 317, 1, 0, 0, 0, 3910, 3911, 5, 159, 0, 0, 3911, 3970, 5, 80, 0, 0, 3912, 3971, 3, 304, 152, 0, 3913, 3971, 3, 306, 153, 0, 3914, 3915, 5, 44, 0, 0, 3915, 3917, 3, 812, 406, 0, 3916, 3918, 3, 312, 156, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 5, 11, 0, 0, 3920, 3921, 3, 794, 397, 0, 3921, 3971, 1, 0, 0, 0, 3922, 3923, 7, 33, 0, 0, 3923, 3971, 3, 646, 323, 0, 3924, 3925, 5, 136, 0, 0, 3925, 3971, 3, 388, 194, 0, 3926, 3927, 5, 211, 0, 0, 3927, 3971, 3, 376, 188, 0, 3928, 3929, 5, 278, 0, 0, 3929, 3971, 3, 410, 205, 0, 3930, 3931, 5, 45, 0, 0, 3931, 3932, 3, 812, 406, 0, 3932, 3938, 5, 80, 0, 0, 3933, 3939, 3, 768, 384, 0, 3934, 3936, 5, 189, 0, 0, 3935, 3934, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3939, 3, 310, 155, 0, 3938, 3933, 1, 0, 0, 0, 3938, 3935, 1, 0, 0, 0, 3939, 3971, 1, 0, 0, 0, 3940, 3941, 7, 45, 0, 0, 3941, 3942, 3, 812, 406, 0, 3942, 3943, 5, 80, 0, 0, 3943, 3944, 3, 310, 155, 0, 3944, 3971, 1, 0, 0, 0, 3945, 3946, 5, 296, 0, 0, 3946, 3971, 3, 372, 186, 0, 3947, 3948, 5, 442, 0, 0, 3948, 3971, 3, 368, 184, 0, 3949, 3950, 5, 443, 0, 0, 3950, 3951, 5, 62, 0, 0, 3951, 3952, 3, 646, 323, 0, 3952, 3953, 5, 247, 0, 0, 3953, 3954, 3, 812, 406, 0, 3954, 3971, 1, 0, 0, 0, 3955, 3956, 5, 278, 0, 0, 3956, 3957, 7, 32, 0, 0, 3957, 3958, 3, 310, 155, 0, 3958, 3959, 3, 164, 82, 0, 3959, 3971, 1, 0, 0, 0, 3960, 3961, 5, 248, 0, 0, 3961, 3962, 5, 274, 0, 0, 3962, 3971, 3, 196, 98, 0, 3963, 3964, 5, 41, 0, 0, 3964, 3965, 5, 2, 0, 0, 3965, 3966, 3, 646, 323, 0, 3966, 3967, 5, 36, 0, 0, 3967, 3968, 3, 646, 323, 0, 3968, 3969, 5, 3, 0, 0, 3969, 3971, 1, 0, 0, 0, 3970, 3912, 1, 0, 0, 0, 3970, 3913, 1, 0, 0, 0, 3970, 3914, 1, 0, 0, 0, 3970, 3922, 1, 0, 0, 0, 3970, 3924, 1, 0, 0, 0, 3970, 3926, 1, 0, 0, 0, 3970, 3928, 1, 0, 0, 0, 3970, 3930, 1, 0, 0, 0, 3970, 3940, 1, 0, 0, 0, 3970, 3945, 1, 0, 0, 0, 3970, 3947, 1, 0, 0, 0, 3970, 3949, 1, 0, 0, 0, 3970, 3955, 1, 0, 0, 0, 3970, 3960, 1, 0, 0, 0, 3970, 3963, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3975, 5, 116, 0, 0, 3973, 3976, 3, 802, 401, 0, 3974, 3976, 5, 78, 0, 0, 3975, 3973, 1, 0, 0, 0, 3975, 3974, 1, 0, 0, 0, 3976, 319, 1, 0, 0, 0, 3977, 3978, 5, 327, 0, 0, 3978, 3981, 5, 246, 0, 0, 3979, 3980, 5, 62, 0, 0, 3980, 3982, 3, 58, 29, 0, 3981, 3979, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 4001, 5, 80, 0, 0, 3984, 3985, 7, 33, 0, 0, 3985, 4002, 3, 646, 323, 0, 3986, 3987, 5, 136, 0, 0, 3987, 4002, 3, 388, 194, 0, 3988, 3989, 5, 44, 0, 0, 3989, 4002, 3, 794, 397, 0, 3990, 3991, 5, 211, 0, 0, 3991, 4002, 3, 376, 188, 0, 3992, 3993, 5, 248, 0, 0, 3993, 3994, 5, 274, 0, 0, 3994, 4002, 3, 196, 98, 0, 3995, 3996, 5, 296, 0, 0, 3996, 4002, 3, 372, 186, 0, 3997, 3998, 5, 442, 0, 0, 3998, 4002, 3, 368, 184, 0, 3999, 4002, 3, 304, 152, 0, 4000, 4002, 3, 306, 153, 0, 4001, 3984, 1, 0, 0, 0, 4001, 3986, 1, 0, 0, 0, 4001, 3988, 1, 0, 0, 0, 4001, 3990, 1, 0, 0, 0, 4001, 3992, 1, 0, 0, 0, 4001, 3995, 1, 0, 0, 0, 4001, 3997, 1, 0, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4006, 5, 116, 0, 0, 4004, 4007, 3, 802, 401, 0, 4005, 4007, 5, 78, 0, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4005, 1, 0, 0, 0, 4007, 321, 1, 0, 0, 0, 4008, 4009, 7, 49, 0, 0, 4009, 4010, 3, 324, 162, 0, 4010, 323, 1, 0, 0, 0, 4011, 4013, 7, 50, 0, 0, 4012, 4011, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 4016, 3, 326, 163, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4055, 3, 812, 406, 0, 4018, 4020, 7, 51, 0, 0, 4019, 4018, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4023, 3, 806, 403, 0, 4022, 4024, 3, 326, 163, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4026, 3, 812, 406, 0, 4026, 4055, 1, 0, 0, 0, 4027, 4029, 5, 210, 0, 0, 4028, 4030, 3, 806, 403, 0, 4029, 4028, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4032, 1, 0, 0, 0, 4031, 4033, 3, 326, 163, 0, 4032, 4031, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4055, 3, 812, 406, 0, 4035, 4037, 5, 210, 0, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4040, 5, 30, 0, 0, 4039, 4041, 3, 326, 163, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4055, 3, 812, 406, 0, 4043, 4048, 5, 144, 0, 0, 4044, 4046, 5, 30, 0, 0, 4045, 4044, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4049, 1, 0, 0, 0, 4047, 4049, 3, 806, 403, 0, 4048, 4045, 1, 0, 0, 0, 4048, 4047, 1, 0, 0, 0, 4049, 4051, 1, 0, 0, 0, 4050, 4052, 3, 326, 163, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4055, 3, 812, 406, 0, 4054, 4012, 1, 0, 0, 0, 4054, 4019, 1, 0, 0, 0, 4054, 4027, 1, 0, 0, 0, 4054, 4036, 1, 0, 0, 0, 4054, 4043, 1, 0, 0, 0, 4055, 325, 1, 0, 0, 0, 4056, 4057, 7, 52, 0, 0, 4057, 327, 1, 0, 0, 0, 4058, 4059, 5, 65, 0, 0, 4059, 4060, 3, 332, 166, 0, 4060, 4061, 5, 80, 0, 0, 4061, 4062, 3, 338, 169, 0, 4062, 4063, 5, 94, 0, 0, 4063, 4067, 3, 340, 170, 0, 4064, 4065, 5, 105, 0, 0, 4065, 4066, 5, 65, 0, 0, 4066, 4068, 5, 279, 0, 0, 4067, 4064, 1, 0, 0, 0, 4067, 4068, 1, 0, 0, 0, 4068, 329, 1, 0, 0, 0, 4069, 4073, 5, 317, 0, 0, 4070, 4071, 5, 65, 0, 0, 4071, 4072, 5, 279, 0, 0, 4072, 4074, 5, 62, 0, 0, 4073, 4070, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4076, 3, 332, 166, 0, 4076, 4077, 5, 80, 0, 0, 4077, 4078, 3, 338, 169, 0, 4078, 4079, 5, 64, 0, 0, 4079, 4081, 3, 340, 170, 0, 4080, 4082, 3, 88, 44, 0, 4081, 4080, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 331, 1, 0, 0, 0, 4083, 4088, 3, 336, 168, 0, 4084, 4085, 5, 6, 0, 0, 4085, 4087, 3, 336, 168, 0, 4086, 4084, 1, 0, 0, 0, 4087, 4090, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4107, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4093, 5, 30, 0, 0, 4092, 4094, 5, 294, 0, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4096, 1, 0, 0, 0, 4095, 4097, 3, 138, 69, 0, 4096, 4095, 1, 0, 0, 0, 4096, 4097, 1, 0, 0, 0, 4097, 4107, 1, 0, 0, 0, 4098, 4103, 3, 334, 167, 0, 4099, 4100, 5, 6, 0, 0, 4100, 4102, 3, 334, 167, 0, 4101, 4099, 1, 0, 0, 0, 4102, 4105, 1, 0, 0, 0, 4103, 4101, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4107, 1, 0, 0, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4083, 1, 0, 0, 0, 4106, 4091, 1, 0, 0, 0, 4106, 4098, 1, 0, 0, 0, 4107, 333, 1, 0, 0, 0, 4108, 4109, 7, 53, 0, 0, 4109, 335, 1, 0, 0, 0, 4110, 4115, 5, 88, 0, 0, 4111, 4115, 5, 86, 0, 0, 4112, 4115, 5, 46, 0, 0, 4113, 4115, 3, 812, 406, 0, 4114, 4110, 1, 0, 0, 0, 4114, 4111, 1, 0, 0, 0, 4114, 4112, 1, 0, 0, 0, 4114, 4113, 1, 0, 0, 0, 4115, 4117, 1, 0, 0, 0, 4116, 4118, 3, 138, 69, 0, 4117, 4116, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 337, 1, 0, 0, 0, 4119, 4120, 5, 92, 0, 0, 4120, 4165, 3, 756, 378, 0, 4121, 4123, 5, 328, 0, 0, 4122, 4121, 1, 0, 0, 0, 4122, 4123, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4165, 3, 754, 377, 0, 4125, 4129, 5, 63, 0, 0, 4126, 4127, 5, 174, 0, 0, 4127, 4130, 5, 381, 0, 0, 4128, 4130, 5, 331, 0, 0, 4129, 4126, 1, 0, 0, 0, 4129, 4128, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4133, 5, 247, 0, 0, 4132, 4125, 1, 0, 0, 0, 4132, 4131, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4165, 3, 778, 389, 0, 4135, 4136, 5, 211, 0, 0, 4136, 4165, 3, 374, 187, 0, 4137, 4138, 5, 296, 0, 0, 4138, 4165, 3, 370, 185, 0, 4139, 4140, 5, 442, 0, 0, 4140, 4165, 3, 366, 183, 0, 4141, 4142, 5, 175, 0, 0, 4142, 4165, 3, 760, 380, 0, 4143, 4144, 7, 33, 0, 0, 4144, 4165, 3, 308, 154, 0, 4145, 4146, 5, 248, 0, 0, 4146, 4147, 5, 274, 0, 0, 4147, 4152, 3, 196, 98, 0, 4148, 4149, 5, 6, 0, 0, 4149, 4151, 3, 196, 98, 0, 4150, 4148, 1, 0, 0, 0, 4151, 4154, 1, 0, 0, 0, 4152, 4150, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4165, 1, 0, 0, 0, 4154, 4152, 1, 0, 0, 0, 4155, 4156, 5, 323, 0, 0, 4156, 4165, 3, 758, 379, 0, 4157, 4158, 5, 351, 0, 0, 4158, 4165, 3, 776, 388, 0, 4159, 4160, 5, 30, 0, 0, 4160, 4161, 7, 54, 0, 0, 4161, 4162, 5, 68, 0, 0, 4162, 4163, 5, 323, 0, 0, 4163, 4165, 3, 758, 379, 0, 4164, 4119, 1, 0, 0, 0, 4164, 4122, 1, 0, 0, 0, 4164, 4132, 1, 0, 0, 0, 4164, 4135, 1, 0, 0, 0, 4164, 4137, 1, 0, 0, 0, 4164, 4139, 1, 0, 0, 0, 4164, 4141, 1, 0, 0, 0, 4164, 4143, 1, 0, 0, 0, 4164, 4145, 1, 0, 0, 0, 4164, 4155, 1, 0, 0, 0, 4164, 4157, 1, 0, 0, 0, 4164, 4159, 1, 0, 0, 0, 4165, 339, 1, 0, 0, 0, 4166, 4168, 5, 66, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 3, 808, 404, 0, 4170, 4178, 1, 0, 0, 0, 4171, 4173, 5, 6, 0, 0, 4172, 4174, 5, 66, 0, 0, 4173, 4172, 1, 0, 0, 0, 4173, 4174, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4177, 3, 808, 404, 0, 4176, 4171, 1, 0, 0, 0, 4177, 4180, 1, 0, 0, 0, 4178, 4176, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 341, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4181, 4182, 5, 65, 0, 0, 4182, 4187, 3, 336, 168, 0, 4183, 4184, 5, 6, 0, 0, 4184, 4186, 3, 336, 168, 0, 4185, 4183, 1, 0, 0, 0, 4186, 4189, 1, 0, 0, 0, 4187, 4185, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4190, 1, 0, 0, 0, 4189, 4187, 1, 0, 0, 0, 4190, 4191, 5, 94, 0, 0, 4191, 4195, 3, 810, 405, 0, 4192, 4193, 5, 105, 0, 0, 4193, 4194, 5, 134, 0, 0, 4194, 4196, 5, 279, 0, 0, 4195, 4192, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4200, 1, 0, 0, 0, 4197, 4198, 5, 214, 0, 0, 4198, 4199, 5, 147, 0, 0, 4199, 4201, 3, 808, 404, 0, 4200, 4197, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 343, 1, 0, 0, 0, 4202, 4206, 5, 317, 0, 0, 4203, 4204, 5, 134, 0, 0, 4204, 4205, 5, 279, 0, 0, 4205, 4207, 5, 62, 0, 0, 4206, 4203, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 4213, 3, 336, 168, 0, 4209, 4210, 5, 6, 0, 0, 4210, 4212, 3, 336, 168, 0, 4211, 4209, 1, 0, 0, 0, 4212, 4215, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4213, 1, 0, 0, 0, 4216, 4217, 5, 64, 0, 0, 4217, 4221, 3, 810, 405, 0, 4218, 4219, 5, 214, 0, 0, 4219, 4220, 5, 147, 0, 0, 4220, 4222, 3, 808, 404, 0, 4221, 4218, 1, 0, 0, 0, 4221, 4222, 1, 0, 0, 0, 4222, 4224, 1, 0, 0, 0, 4223, 4225, 3, 88, 44, 0, 4224, 4223, 1, 0, 0, 0, 4224, 4225, 1, 0, 0, 0, 4225, 345, 1, 0, 0, 0, 4226, 4227, 5, 138, 0, 0, 4227, 4228, 5, 53, 0, 0, 4228, 4237, 5, 294, 0, 0, 4229, 4230, 5, 68, 0, 0, 4230, 4231, 5, 323, 0, 0, 4231, 4236, 3, 758, 379, 0, 4232, 4233, 5, 62, 0, 0, 4233, 4234, 7, 2, 0, 0, 4234, 4236, 3, 810, 405, 0, 4235, 4229, 1, 0, 0, 0, 4235, 4232, 1, 0, 0, 0, 4236, 4239, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4237, 4238, 1, 0, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4237, 1, 0, 0, 0, 4240, 4241, 3, 348, 174, 0, 4241, 347, 1, 0, 0, 0, 4242, 4243, 5, 65, 0, 0, 4243, 4244, 3, 332, 166, 0, 4244, 4245, 5, 80, 0, 0, 4245, 4246, 3, 350, 175, 0, 4246, 4247, 5, 94, 0, 0, 4247, 4251, 3, 340, 170, 0, 4248, 4249, 5, 105, 0, 0, 4249, 4250, 5, 65, 0, 0, 4250, 4252, 5, 279, 0, 0, 4251, 4248, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4268, 1, 0, 0, 0, 4253, 4257, 5, 317, 0, 0, 4254, 4255, 5, 65, 0, 0, 4255, 4256, 5, 279, 0, 0, 4256, 4258, 5, 62, 0, 0, 4257, 4254, 1, 0, 0, 0, 4257, 4258, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, 4259, 4260, 3, 332, 166, 0, 4260, 4261, 5, 80, 0, 0, 4261, 4262, 3, 350, 175, 0, 4262, 4263, 5, 64, 0, 0, 4263, 4265, 3, 340, 170, 0, 4264, 4266, 3, 88, 44, 0, 4265, 4264, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 4268, 1, 0, 0, 0, 4267, 4242, 1, 0, 0, 0, 4267, 4253, 1, 0, 0, 0, 4268, 349, 1, 0, 0, 0, 4269, 4270, 7, 55, 0, 0, 4270, 351, 1, 0, 0, 0, 4271, 4273, 5, 46, 0, 0, 4272, 4274, 5, 98, 0, 0, 4273, 4272, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4277, 5, 226, 0, 0, 4276, 4278, 5, 109, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4280, 1, 0, 0, 0, 4279, 4281, 3, 288, 144, 0, 4280, 4279, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4283, 1, 0, 0, 0, 4282, 4284, 3, 812, 406, 0, 4283, 4282, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4286, 5, 80, 0, 0, 4286, 4288, 3, 618, 309, 0, 4287, 4289, 3, 164, 82, 0, 4288, 4287, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4293, 3, 354, 177, 0, 4291, 4292, 5, 441, 0, 0, 4292, 4294, 3, 354, 177, 0, 4293, 4291, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4300, 1, 0, 0, 0, 4295, 4297, 5, 273, 0, 0, 4296, 4298, 5, 77, 0, 0, 4297, 4296, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4301, 5, 56, 0, 0, 4300, 4295, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 4303, 1, 0, 0, 0, 4302, 4304, 3, 94, 47, 0, 4303, 4302, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4306, 1, 0, 0, 0, 4305, 4307, 3, 170, 85, 0, 4306, 4305, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4309, 1, 0, 0, 0, 4308, 4310, 3, 632, 316, 0, 4309, 4308, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 353, 1, 0, 0, 0, 4311, 4312, 5, 2, 0, 0, 4312, 4317, 3, 356, 178, 0, 4313, 4314, 5, 6, 0, 0, 4314, 4316, 3, 356, 178, 0, 4315, 4313, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4321, 5, 3, 0, 0, 4321, 355, 1, 0, 0, 0, 4322, 4329, 3, 794, 397, 0, 4323, 4329, 3, 682, 341, 0, 4324, 4325, 5, 2, 0, 0, 4325, 4326, 3, 668, 334, 0, 4326, 4327, 5, 3, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4322, 1, 0, 0, 0, 4328, 4323, 1, 0, 0, 0, 4328, 4324, 1, 0, 0, 0, 4329, 4331, 1, 0, 0, 0, 4330, 4332, 3, 90, 45, 0, 4331, 4330, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4339, 1, 0, 0, 0, 4333, 4335, 3, 310, 155, 0, 4334, 4333, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 4340, 1, 0, 0, 0, 4336, 4337, 3, 310, 155, 0, 4337, 4338, 3, 92, 46, 0, 4338, 4340, 1, 0, 0, 0, 4339, 4334, 1, 0, 0, 0, 4339, 4336, 1, 0, 0, 0, 4340, 4342, 1, 0, 0, 0, 4341, 4343, 7, 56, 0, 0, 4342, 4341, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4346, 1, 0, 0, 0, 4344, 4345, 5, 273, 0, 0, 4345, 4347, 7, 57, 0, 0, 4346, 4344, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 357, 1, 0, 0, 0, 4348, 4350, 5, 46, 0, 0, 4349, 4351, 3, 360, 180, 0, 4350, 4349, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4356, 1, 0, 0, 0, 4352, 4353, 5, 211, 0, 0, 4353, 4357, 3, 798, 399, 0, 4354, 4355, 5, 296, 0, 0, 4355, 4357, 3, 792, 396, 0, 4356, 4352, 1, 0, 0, 0, 4356, 4354, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 4367, 5, 2, 0, 0, 4359, 4364, 3, 384, 192, 0, 4360, 4361, 5, 6, 0, 0, 4361, 4363, 3, 384, 192, 0, 4362, 4360, 1, 0, 0, 0, 4363, 4366, 1, 0, 0, 0, 4364, 4362, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4368, 1, 0, 0, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4359, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 5, 3, 0, 0, 4370, 4387, 1, 0, 0, 0, 4371, 4385, 5, 316, 0, 0, 4372, 4386, 3, 382, 191, 0, 4373, 4374, 5, 92, 0, 0, 4374, 4375, 5, 2, 0, 0, 4375, 4380, 3, 396, 198, 0, 4376, 4377, 5, 6, 0, 0, 4377, 4379, 3, 396, 198, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4382, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4383, 1, 0, 0, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4384, 5, 3, 0, 0, 4384, 4386, 1, 0, 0, 0, 4385, 4372, 1, 0, 0, 0, 4385, 4373, 1, 0, 0, 0, 4386, 4388, 1, 0, 0, 0, 4387, 4371, 1, 0, 0, 0, 4387, 4388, 1, 0, 0, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4391, 3, 392, 196, 0, 4390, 4389, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4399, 1, 0, 0, 0, 4394, 4395, 5, 105, 0, 0, 4395, 4396, 5, 2, 0, 0, 4396, 4397, 3, 778, 389, 0, 4397, 4398, 5, 3, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4394, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 359, 1, 0, 0, 0, 4401, 4402, 5, 82, 0, 0, 4402, 4403, 5, 311, 0, 0, 4403, 361, 1, 0, 0, 0, 4404, 4406, 5, 2, 0, 0, 4405, 4407, 3, 364, 182, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4409, 5, 3, 0, 0, 4409, 363, 1, 0, 0, 0, 4410, 4415, 3, 378, 189, 0, 4411, 4412, 5, 6, 0, 0, 4412, 4414, 3, 378, 189, 0, 4413, 4411, 1, 0, 0, 0, 4414, 4417, 1, 0, 0, 0, 4415, 4413, 1, 0, 0, 0, 4415, 4416, 1, 0, 0, 0, 4416, 365, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4423, 3, 368, 184, 0, 4419, 4420, 5, 6, 0, 0, 4420, 4422, 3, 368, 184, 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, 367, 1, 0, 0, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4427, 3, 788, 394, 0, 4427, 4428, 3, 362, 181, 0, 4428, 4432, 1, 0, 0, 0, 4429, 4432, 3, 826, 413, 0, 4430, 4432, 3, 774, 387, 0, 4431, 4426, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4431, 4430, 1, 0, 0, 0, 4432, 369, 1, 0, 0, 0, 4433, 4438, 3, 372, 186, 0, 4434, 4435, 5, 6, 0, 0, 4435, 4437, 3, 372, 186, 0, 4436, 4434, 1, 0, 0, 0, 4437, 4440, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 371, 1, 0, 0, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4442, 3, 790, 395, 0, 4442, 4443, 3, 362, 181, 0, 4443, 4447, 1, 0, 0, 0, 4444, 4447, 3, 826, 413, 0, 4445, 4447, 3, 774, 387, 0, 4446, 4441, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4446, 4445, 1, 0, 0, 0, 4447, 373, 1, 0, 0, 0, 4448, 4453, 3, 376, 188, 0, 4449, 4450, 5, 6, 0, 0, 4450, 4452, 3, 376, 188, 0, 4451, 4449, 1, 0, 0, 0, 4452, 4455, 1, 0, 0, 0, 4453, 4451, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 375, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4457, 3, 800, 400, 0, 4457, 4458, 3, 362, 181, 0, 4458, 4462, 1, 0, 0, 0, 4459, 4462, 3, 826, 413, 0, 4460, 4462, 3, 774, 387, 0, 4461, 4456, 1, 0, 0, 0, 4461, 4459, 1, 0, 0, 0, 4461, 4460, 1, 0, 0, 0, 4462, 377, 1, 0, 0, 0, 4463, 4465, 3, 380, 190, 0, 4464, 4466, 3, 814, 407, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4472, 1, 0, 0, 0, 4467, 4469, 3, 814, 407, 0, 4468, 4470, 3, 380, 190, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 1, 0, 0, 0, 4471, 4463, 1, 0, 0, 0, 4471, 4467, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4474, 3, 382, 191, 0, 4474, 379, 1, 0, 0, 0, 4475, 4477, 5, 68, 0, 0, 4476, 4478, 5, 453, 0, 0, 4477, 4476, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4483, 1, 0, 0, 0, 4479, 4483, 5, 453, 0, 0, 4480, 4483, 5, 400, 0, 0, 4481, 4483, 5, 101, 0, 0, 4482, 4475, 1, 0, 0, 0, 4482, 4479, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4482, 4481, 1, 0, 0, 0, 4483, 381, 1, 0, 0, 0, 4484, 4494, 3, 646, 323, 0, 4485, 4487, 5, 415, 0, 0, 4486, 4485, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4489, 3, 814, 407, 0, 4489, 4490, 3, 312, 156, 0, 4490, 4491, 5, 27, 0, 0, 4491, 4492, 5, 360, 0, 0, 4492, 4494, 1, 0, 0, 0, 4493, 4484, 1, 0, 0, 0, 4493, 4486, 1, 0, 0, 0, 4494, 383, 1, 0, 0, 0, 4495, 4498, 3, 378, 189, 0, 4496, 4497, 7, 58, 0, 0, 4497, 4499, 3, 668, 334, 0, 4498, 4496, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 385, 1, 0, 0, 0, 4500, 4510, 5, 2, 0, 0, 4501, 4511, 5, 9, 0, 0, 4502, 4504, 3, 364, 182, 0, 4503, 4502, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4508, 1, 0, 0, 0, 4505, 4506, 5, 83, 0, 0, 4506, 4507, 5, 147, 0, 0, 4507, 4509, 3, 364, 182, 0, 4508, 4505, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 4511, 1, 0, 0, 0, 4510, 4501, 1, 0, 0, 0, 4510, 4503, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4513, 5, 3, 0, 0, 4513, 387, 1, 0, 0, 0, 4514, 4515, 3, 800, 400, 0, 4515, 4516, 3, 386, 193, 0, 4516, 389, 1, 0, 0, 0, 4517, 4518, 5, 316, 0, 0, 4518, 4521, 5, 78, 0, 0, 4519, 4521, 5, 149, 0, 0, 4520, 4517, 1, 0, 0, 0, 4520, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 4523, 5, 80, 0, 0, 4523, 4524, 5, 78, 0, 0, 4524, 4547, 5, 458, 0, 0, 4525, 4547, 5, 346, 0, 0, 4526, 4547, 5, 222, 0, 0, 4527, 4547, 5, 338, 0, 0, 4528, 4547, 5, 377, 0, 0, 4529, 4531, 5, 205, 0, 0, 4530, 4529, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 4532, 1, 0, 0, 0, 4532, 4533, 5, 327, 0, 0, 4533, 4547, 7, 59, 0, 0, 4534, 4547, 5, 250, 0, 0, 4535, 4536, 5, 77, 0, 0, 4536, 4547, 5, 250, 0, 0, 4537, 4538, 7, 60, 0, 0, 4538, 4547, 3, 196, 98, 0, 4539, 4540, 5, 459, 0, 0, 4540, 4547, 3, 310, 155, 0, 4541, 4542, 5, 333, 0, 0, 4542, 4547, 3, 42, 21, 0, 4543, 4547, 3, 60, 30, 0, 4544, 4545, 5, 460, 0, 0, 4545, 4547, 3, 812, 406, 0, 4546, 4520, 1, 0, 0, 0, 4546, 4525, 1, 0, 0, 0, 4546, 4526, 1, 0, 0, 0, 4546, 4527, 1, 0, 0, 0, 4546, 4528, 1, 0, 0, 0, 4546, 4530, 1, 0, 0, 0, 4546, 4534, 1, 0, 0, 0, 4546, 4535, 1, 0, 0, 0, 4546, 4537, 1, 0, 0, 0, 4546, 4539, 1, 0, 0, 0, 4546, 4541, 1, 0, 0, 0, 4546, 4543, 1, 0, 0, 0, 4546, 4544, 1, 0, 0, 0, 4547, 391, 1, 0, 0, 0, 4548, 4549, 5, 36, 0, 0, 4549, 4550, 3, 802, 401, 0, 4550, 4551, 3, 456, 228, 0, 4551, 4584, 1, 0, 0, 0, 4552, 4553, 5, 247, 0, 0, 4553, 4584, 3, 58, 29, 0, 4554, 4555, 5, 443, 0, 0, 4555, 4556, 5, 62, 0, 0, 4556, 4557, 5, 360, 0, 0, 4557, 4564, 3, 646, 323, 0, 4558, 4559, 5, 6, 0, 0, 4559, 4560, 5, 62, 0, 0, 4560, 4561, 5, 360, 0, 0, 4561, 4563, 3, 646, 323, 0, 4562, 4558, 1, 0, 0, 0, 4563, 4566, 1, 0, 0, 0, 4564, 4562, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4584, 1, 0, 0, 0, 4566, 4564, 1, 0, 0, 0, 4567, 4584, 5, 104, 0, 0, 4568, 4569, 5, 333, 0, 0, 4569, 4576, 3, 812, 406, 0, 4570, 4571, 5, 94, 0, 0, 4571, 4577, 3, 812, 406, 0, 4572, 4573, 5, 10, 0, 0, 4573, 4577, 3, 812, 406, 0, 4574, 4575, 5, 64, 0, 0, 4575, 4577, 5, 434, 0, 0, 4576, 4570, 1, 0, 0, 0, 4576, 4572, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4577, 4584, 1, 0, 0, 0, 4578, 4579, 5, 36, 0, 0, 4579, 4584, 3, 812, 406, 0, 4580, 4584, 3, 4, 2, 0, 4581, 4584, 3, 390, 195, 0, 4582, 4584, 3, 812, 406, 0, 4583, 4548, 1, 0, 0, 0, 4583, 4552, 1, 0, 0, 0, 4583, 4554, 1, 0, 0, 0, 4583, 4567, 1, 0, 0, 0, 4583, 4568, 1, 0, 0, 0, 4583, 4578, 1, 0, 0, 0, 4583, 4580, 1, 0, 0, 0, 4583, 4581, 1, 0, 0, 0, 4583, 4582, 1, 0, 0, 0, 4584, 393, 1, 0, 0, 0, 4585, 4586, 5, 105, 0, 0, 4586, 4587, 3, 278, 139, 0, 4587, 395, 1, 0, 0, 0, 4588, 4589, 3, 794, 397, 0, 4589, 4590, 3, 382, 191, 0, 4590, 397, 1, 0, 0, 0, 4591, 4598, 5, 138, 0, 0, 4592, 4593, 5, 211, 0, 0, 4593, 4599, 3, 376, 188, 0, 4594, 4595, 5, 296, 0, 0, 4595, 4599, 3, 372, 186, 0, 4596, 4597, 5, 442, 0, 0, 4597, 4599, 3, 368, 184, 0, 4598, 4592, 1, 0, 0, 0, 4598, 4594, 1, 0, 0, 0, 4598, 4596, 1, 0, 0, 0, 4599, 4601, 1, 0, 0, 0, 4600, 4602, 3, 390, 195, 0, 4601, 4600, 1, 0, 0, 0, 4602, 4603, 1, 0, 0, 0, 4603, 4601, 1, 0, 0, 0, 4603, 4604, 1, 0, 0, 0, 4604, 4606, 1, 0, 0, 0, 4605, 4607, 5, 315, 0, 0, 4606, 4605, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 399, 1, 0, 0, 0, 4608, 4624, 5, 191, 0, 0, 4609, 4611, 5, 211, 0, 0, 4610, 4612, 3, 416, 208, 0, 4611, 4610, 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 4613, 1, 0, 0, 0, 4613, 4625, 3, 374, 187, 0, 4614, 4616, 5, 296, 0, 0, 4615, 4617, 3, 416, 208, 0, 4616, 4615, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4625, 3, 370, 185, 0, 4619, 4621, 5, 442, 0, 0, 4620, 4622, 3, 416, 208, 0, 4621, 4620, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4625, 3, 366, 183, 0, 4624, 4609, 1, 0, 0, 0, 4624, 4614, 1, 0, 0, 0, 4624, 4619, 1, 0, 0, 0, 4625, 4627, 1, 0, 0, 0, 4626, 4628, 3, 88, 44, 0, 4627, 4626, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 401, 1, 0, 0, 0, 4629, 4630, 5, 191, 0, 0, 4630, 4632, 5, 136, 0, 0, 4631, 4633, 3, 416, 208, 0, 4632, 4631, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4639, 3, 388, 194, 0, 4635, 4636, 5, 6, 0, 0, 4636, 4638, 3, 388, 194, 0, 4637, 4635, 1, 0, 0, 0, 4638, 4641, 1, 0, 0, 0, 4639, 4637, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4644, 3, 88, 44, 0, 4643, 4642, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 403, 1, 0, 0, 0, 4645, 4646, 5, 191, 0, 0, 4646, 4648, 5, 278, 0, 0, 4647, 4649, 3, 416, 208, 0, 4648, 4647, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 4655, 3, 410, 205, 0, 4651, 4652, 5, 6, 0, 0, 4652, 4654, 3, 410, 205, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4660, 3, 88, 44, 0, 4659, 4658, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 405, 1, 0, 0, 0, 4661, 4674, 5, 2, 0, 0, 4662, 4665, 3, 646, 323, 0, 4663, 4664, 5, 6, 0, 0, 4664, 4666, 3, 646, 323, 0, 4665, 4663, 1, 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 4675, 1, 0, 0, 0, 4667, 4668, 5, 407, 0, 0, 4668, 4669, 5, 6, 0, 0, 4669, 4675, 3, 646, 323, 0, 4670, 4671, 3, 646, 323, 0, 4671, 4672, 5, 6, 0, 0, 4672, 4673, 5, 407, 0, 0, 4673, 4675, 1, 0, 0, 0, 4674, 4662, 1, 0, 0, 0, 4674, 4667, 1, 0, 0, 0, 4674, 4670, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 4677, 5, 3, 0, 0, 4677, 407, 1, 0, 0, 0, 4678, 4679, 3, 812, 406, 0, 4679, 4680, 5, 11, 0, 0, 4680, 4682, 1, 0, 0, 0, 4681, 4678, 1, 0, 0, 0, 4682, 4685, 1, 0, 0, 0, 4683, 4681, 1, 0, 0, 0, 4683, 4684, 1, 0, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4683, 1, 0, 0, 0, 4686, 4687, 3, 714, 357, 0, 4687, 409, 1, 0, 0, 0, 4688, 4689, 3, 408, 204, 0, 4689, 4690, 3, 406, 203, 0, 4690, 411, 1, 0, 0, 0, 4691, 4695, 5, 57, 0, 0, 4692, 4696, 3, 802, 401, 0, 4693, 4694, 5, 247, 0, 0, 4694, 4696, 3, 58, 29, 0, 4695, 4692, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4697, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4697, 4698, 1, 0, 0, 0, 4698, 413, 1, 0, 0, 0, 4699, 4700, 5, 46, 0, 0, 4700, 4701, 5, 41, 0, 0, 4701, 4702, 5, 2, 0, 0, 4702, 4703, 3, 646, 323, 0, 4703, 4704, 5, 36, 0, 0, 4704, 4705, 3, 646, 323, 0, 4705, 4722, 5, 3, 0, 0, 4706, 4707, 5, 379, 0, 0, 4707, 4710, 5, 211, 0, 0, 4708, 4709, 5, 36, 0, 0, 4709, 4711, 7, 61, 0, 0, 4710, 4708, 1, 0, 0, 0, 4710, 4711, 1, 0, 0, 0, 4711, 4723, 1, 0, 0, 0, 4712, 4716, 5, 105, 0, 0, 4713, 4714, 5, 211, 0, 0, 4714, 4717, 3, 376, 188, 0, 4715, 4717, 5, 400, 0, 0, 4716, 4713, 1, 0, 0, 0, 4716, 4715, 1, 0, 0, 0, 4717, 4720, 1, 0, 0, 0, 4718, 4719, 5, 36, 0, 0, 4719, 4721, 7, 61, 0, 0, 4720, 4718, 1, 0, 0, 0, 4720, 4721, 1, 0, 0, 0, 4721, 4723, 1, 0, 0, 0, 4722, 4706, 1, 0, 0, 0, 4722, 4712, 1, 0, 0, 0, 4723, 415, 1, 0, 0, 0, 4724, 4725, 5, 220, 0, 0, 4725, 4726, 5, 396, 0, 0, 4726, 417, 1, 0, 0, 0, 4727, 4729, 5, 46, 0, 0, 4728, 4730, 3, 360, 180, 0, 4729, 4728, 1, 0, 0, 0, 4729, 4730, 1, 0, 0, 0, 4730, 4731, 1, 0, 0, 0, 4731, 4732, 5, 443, 0, 0, 4732, 4733, 5, 62, 0, 0, 4733, 4734, 3, 646, 323, 0, 4734, 4735, 5, 247, 0, 0, 4735, 4736, 3, 812, 406, 0, 4736, 4751, 5, 2, 0, 0, 4737, 4738, 5, 64, 0, 0, 4738, 4742, 3, 420, 210, 0, 4739, 4740, 5, 6, 0, 0, 4740, 4741, 5, 94, 0, 0, 4741, 4743, 3, 420, 210, 0, 4742, 4739, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4752, 1, 0, 0, 0, 4744, 4745, 5, 94, 0, 0, 4745, 4749, 3, 420, 210, 0, 4746, 4747, 5, 6, 0, 0, 4747, 4748, 5, 64, 0, 0, 4748, 4750, 3, 420, 210, 0, 4749, 4746, 1, 0, 0, 0, 4749, 4750, 1, 0, 0, 0, 4750, 4752, 1, 0, 0, 0, 4751, 4737, 1, 0, 0, 0, 4751, 4744, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4754, 5, 3, 0, 0, 4754, 419, 1, 0, 0, 0, 4755, 4756, 5, 461, 0, 0, 4756, 4757, 5, 105, 0, 0, 4757, 4758, 5, 211, 0, 0, 4758, 4759, 3, 376, 188, 0, 4759, 421, 1, 0, 0, 0, 4760, 4771, 5, 306, 0, 0, 4761, 4762, 5, 2, 0, 0, 4762, 4767, 5, 128, 0, 0, 4763, 4764, 5, 6, 0, 0, 4764, 4766, 5, 128, 0, 0, 4765, 4763, 1, 0, 0, 0, 4766, 4769, 1, 0, 0, 0, 4767, 4765, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4767, 1, 0, 0, 0, 4770, 4772, 5, 3, 0, 0, 4771, 4761, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4798, 1, 0, 0, 0, 4773, 4775, 5, 226, 0, 0, 4774, 4776, 5, 109, 0, 0, 4775, 4774, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4777, 1, 0, 0, 0, 4777, 4799, 3, 774, 387, 0, 4778, 4780, 5, 92, 0, 0, 4779, 4781, 5, 109, 0, 0, 4780, 4779, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4782, 1, 0, 0, 0, 4782, 4799, 3, 768, 384, 0, 4783, 4785, 5, 323, 0, 0, 4784, 4786, 5, 109, 0, 0, 4785, 4784, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4787, 1, 0, 0, 0, 4787, 4799, 3, 784, 392, 0, 4788, 4790, 5, 349, 0, 0, 4789, 4791, 5, 109, 0, 0, 4790, 4789, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4792, 1, 0, 0, 0, 4792, 4799, 3, 812, 406, 0, 4793, 4795, 5, 175, 0, 0, 4794, 4796, 5, 109, 0, 0, 4795, 4794, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 3, 782, 391, 0, 4798, 4773, 1, 0, 0, 0, 4798, 4778, 1, 0, 0, 0, 4798, 4783, 1, 0, 0, 0, 4798, 4788, 1, 0, 0, 0, 4798, 4793, 1, 0, 0, 0, 4799, 423, 1, 0, 0, 0, 4800, 4801, 5, 138, 0, 0, 4801, 4802, 3, 170, 85, 0, 4802, 4803, 7, 16, 0, 0, 4803, 4804, 3, 92, 46, 0, 4804, 425, 1, 0, 0, 0, 4805, 4810, 5, 138, 0, 0, 4806, 4807, 5, 136, 0, 0, 4807, 4811, 3, 388, 194, 0, 4808, 4809, 5, 442, 0, 0, 4809, 4811, 3, 368, 184, 0, 4810, 4806, 1, 0, 0, 0, 4810, 4808, 1, 0, 0, 0, 4811, 4812, 1, 0, 0, 0, 4812, 4813, 5, 309, 0, 0, 4813, 4814, 5, 94, 0, 0, 4814, 4815, 3, 812, 406, 0, 4815, 5013, 1, 0, 0, 0, 4816, 4817, 5, 138, 0, 0, 4817, 4818, 5, 175, 0, 0, 4818, 4819, 3, 782, 391, 0, 4819, 4820, 5, 309, 0, 0, 4820, 4821, 5, 94, 0, 0, 4821, 4822, 3, 780, 390, 0, 4822, 5013, 1, 0, 0, 0, 4823, 4824, 5, 138, 0, 0, 4824, 4825, 7, 62, 0, 0, 4825, 4826, 3, 310, 155, 0, 4826, 4827, 5, 309, 0, 0, 4827, 4828, 5, 94, 0, 0, 4828, 4829, 3, 812, 406, 0, 4829, 5013, 1, 0, 0, 0, 4830, 4831, 5, 138, 0, 0, 4831, 4832, 5, 211, 0, 0, 4832, 4833, 3, 376, 188, 0, 4833, 4834, 5, 309, 0, 0, 4834, 4835, 5, 94, 0, 0, 4835, 4836, 3, 798, 399, 0, 4836, 5013, 1, 0, 0, 0, 4837, 4838, 5, 138, 0, 0, 4838, 4839, 5, 278, 0, 0, 4839, 4840, 7, 32, 0, 0, 4840, 4841, 3, 310, 155, 0, 4841, 4842, 3, 164, 82, 0, 4842, 4843, 5, 309, 0, 0, 4843, 4844, 5, 94, 0, 0, 4844, 4845, 3, 812, 406, 0, 4845, 5013, 1, 0, 0, 0, 4846, 4847, 5, 138, 0, 0, 4847, 4848, 5, 296, 0, 0, 4848, 4849, 3, 372, 186, 0, 4849, 4850, 5, 309, 0, 0, 4850, 4851, 5, 94, 0, 0, 4851, 4852, 3, 792, 396, 0, 4852, 5013, 1, 0, 0, 0, 4853, 4854, 5, 138, 0, 0, 4854, 4855, 5, 323, 0, 0, 4855, 4856, 3, 784, 392, 0, 4856, 4857, 5, 309, 0, 0, 4857, 4858, 5, 94, 0, 0, 4858, 4859, 3, 32, 16, 0, 4859, 5013, 1, 0, 0, 0, 4860, 4861, 5, 138, 0, 0, 4861, 4863, 7, 63, 0, 0, 4862, 4864, 3, 416, 208, 0, 4863, 4862, 1, 0, 0, 0, 4863, 4864, 1, 0, 0, 0, 4864, 4865, 1, 0, 0, 0, 4865, 4866, 3, 774, 387, 0, 4866, 4867, 5, 309, 0, 0, 4867, 4868, 5, 94, 0, 0, 4868, 4869, 3, 812, 406, 0, 4869, 5013, 1, 0, 0, 0, 4870, 4872, 5, 138, 0, 0, 4871, 4873, 5, 259, 0, 0, 4872, 4871, 1, 0, 0, 0, 4872, 4873, 1, 0, 0, 0, 4873, 4874, 1, 0, 0, 0, 4874, 4876, 5, 376, 0, 0, 4875, 4877, 3, 416, 208, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4879, 3, 772, 386, 0, 4879, 4880, 5, 309, 0, 0, 4880, 4881, 5, 94, 0, 0, 4881, 4882, 3, 770, 385, 0, 4882, 5013, 1, 0, 0, 0, 4883, 4885, 5, 138, 0, 0, 4884, 4886, 5, 63, 0, 0, 4885, 4884, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 4889, 5, 92, 0, 0, 4888, 4890, 3, 416, 208, 0, 4889, 4888, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 3, 618, 309, 0, 4892, 4893, 5, 309, 0, 0, 4893, 4894, 5, 94, 0, 0, 4894, 4895, 3, 766, 383, 0, 4895, 5013, 1, 0, 0, 0, 4896, 4921, 5, 138, 0, 0, 4897, 4899, 5, 63, 0, 0, 4898, 4897, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4902, 5, 92, 0, 0, 4901, 4903, 3, 416, 208, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4905, 3, 618, 309, 0, 4905, 4907, 5, 309, 0, 0, 4906, 4908, 5, 44, 0, 0, 4907, 4906, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4922, 1, 0, 0, 0, 4909, 4911, 5, 259, 0, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 5, 376, 0, 0, 4913, 4915, 3, 416, 208, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4917, 3, 772, 386, 0, 4917, 4919, 5, 309, 0, 0, 4918, 4920, 5, 44, 0, 0, 4919, 4918, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4922, 1, 0, 0, 0, 4921, 4898, 1, 0, 0, 0, 4921, 4910, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 4924, 3, 794, 397, 0, 4924, 4925, 5, 94, 0, 0, 4925, 4926, 3, 796, 398, 0, 4926, 5013, 1, 0, 0, 0, 4927, 4935, 5, 138, 0, 0, 4928, 4930, 5, 92, 0, 0, 4929, 4931, 3, 416, 208, 0, 4930, 4929, 1, 0, 0, 0, 4930, 4931, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 4936, 3, 618, 309, 0, 4933, 4934, 5, 189, 0, 0, 4934, 4936, 3, 310, 155, 0, 4935, 4928, 1, 0, 0, 0, 4935, 4933, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4938, 5, 309, 0, 0, 4938, 4939, 5, 45, 0, 0, 4939, 4940, 3, 812, 406, 0, 4940, 4941, 5, 94, 0, 0, 4941, 4942, 3, 812, 406, 0, 4942, 5013, 1, 0, 0, 0, 4943, 4950, 5, 138, 0, 0, 4944, 4946, 5, 445, 0, 0, 4945, 4947, 3, 416, 208, 0, 4946, 4945, 1, 0, 0, 0, 4946, 4947, 1, 0, 0, 0, 4947, 4951, 1, 0, 0, 0, 4948, 4951, 5, 321, 0, 0, 4949, 4951, 5, 357, 0, 0, 4950, 4944, 1, 0, 0, 0, 4950, 4948, 1, 0, 0, 0, 4950, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 4953, 3, 812, 406, 0, 4953, 4954, 5, 80, 0, 0, 4954, 4955, 3, 774, 387, 0, 4955, 4956, 5, 309, 0, 0, 4956, 4957, 5, 94, 0, 0, 4957, 4958, 3, 812, 406, 0, 4958, 5013, 1, 0, 0, 0, 4959, 4972, 5, 138, 0, 0, 4960, 4961, 5, 63, 0, 0, 4961, 4962, 5, 174, 0, 0, 4962, 4973, 5, 381, 0, 0, 4963, 4965, 5, 295, 0, 0, 4964, 4963, 1, 0, 0, 0, 4964, 4965, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 4973, 5, 247, 0, 0, 4967, 4973, 5, 452, 0, 0, 4968, 4973, 5, 331, 0, 0, 4969, 4973, 5, 451, 0, 0, 4970, 4971, 5, 198, 0, 0, 4971, 4973, 5, 357, 0, 0, 4972, 4960, 1, 0, 0, 0, 4972, 4964, 1, 0, 0, 0, 4972, 4967, 1, 0, 0, 0, 4972, 4968, 1, 0, 0, 0, 4972, 4969, 1, 0, 0, 0, 4972, 4970, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4975, 3, 812, 406, 0, 4975, 4976, 5, 309, 0, 0, 4976, 4977, 5, 94, 0, 0, 4977, 4978, 3, 812, 406, 0, 4978, 5013, 1, 0, 0, 0, 4979, 4980, 5, 138, 0, 0, 4980, 4981, 7, 46, 0, 0, 4981, 4982, 3, 808, 404, 0, 4982, 4983, 5, 309, 0, 0, 4983, 4984, 5, 94, 0, 0, 4984, 4985, 3, 808, 404, 0, 4985, 5013, 1, 0, 0, 0, 4986, 4987, 5, 138, 0, 0, 4987, 4988, 3, 170, 85, 0, 4988, 4989, 5, 309, 0, 0, 4989, 4990, 5, 94, 0, 0, 4990, 4991, 3, 764, 382, 0, 4991, 5013, 1, 0, 0, 0, 4992, 4993, 5, 138, 0, 0, 4993, 4994, 5, 355, 0, 0, 4994, 4995, 5, 325, 0, 0, 4995, 4996, 7, 42, 0, 0, 4996, 4997, 3, 310, 155, 0, 4997, 4998, 5, 309, 0, 0, 4998, 4999, 5, 94, 0, 0, 4999, 5000, 3, 812, 406, 0, 5000, 5013, 1, 0, 0, 0, 5001, 5002, 5, 138, 0, 0, 5002, 5003, 5, 360, 0, 0, 5003, 5004, 3, 310, 155, 0, 5004, 5005, 5, 309, 0, 0, 5005, 5006, 5, 143, 0, 0, 5006, 5007, 3, 812, 406, 0, 5007, 5008, 5, 94, 0, 0, 5008, 5010, 3, 812, 406, 0, 5009, 5011, 3, 88, 44, 0, 5010, 5009, 1, 0, 0, 0, 5010, 5011, 1, 0, 0, 0, 5011, 5013, 1, 0, 0, 0, 5012, 4805, 1, 0, 0, 0, 5012, 4816, 1, 0, 0, 0, 5012, 4823, 1, 0, 0, 0, 5012, 4830, 1, 0, 0, 0, 5012, 4837, 1, 0, 0, 0, 5012, 4846, 1, 0, 0, 0, 5012, 4853, 1, 0, 0, 0, 5012, 4860, 1, 0, 0, 0, 5012, 4870, 1, 0, 0, 0, 5012, 4883, 1, 0, 0, 0, 5012, 4896, 1, 0, 0, 0, 5012, 4927, 1, 0, 0, 0, 5012, 4943, 1, 0, 0, 0, 5012, 4959, 1, 0, 0, 0, 5012, 4979, 1, 0, 0, 0, 5012, 4986, 1, 0, 0, 0, 5012, 4992, 1, 0, 0, 0, 5012, 5001, 1, 0, 0, 0, 5013, 427, 1, 0, 0, 0, 5014, 5031, 5, 138, 0, 0, 5015, 5016, 5, 211, 0, 0, 5016, 5032, 3, 376, 188, 0, 5017, 5018, 5, 296, 0, 0, 5018, 5032, 3, 372, 186, 0, 5019, 5020, 5, 442, 0, 0, 5020, 5032, 3, 368, 184, 0, 5021, 5022, 5, 357, 0, 0, 5022, 5023, 3, 812, 406, 0, 5023, 5024, 5, 80, 0, 0, 5024, 5025, 3, 774, 387, 0, 5025, 5032, 1, 0, 0, 0, 5026, 5027, 5, 259, 0, 0, 5027, 5028, 5, 376, 0, 0, 5028, 5032, 3, 772, 386, 0, 5029, 5030, 5, 226, 0, 0, 5030, 5032, 3, 774, 387, 0, 5031, 5015, 1, 0, 0, 0, 5031, 5017, 1, 0, 0, 0, 5031, 5019, 1, 0, 0, 0, 5031, 5021, 1, 0, 0, 0, 5031, 5026, 1, 0, 0, 0, 5031, 5029, 1, 0, 0, 0, 5032, 5034, 1, 0, 0, 0, 5033, 5035, 5, 269, 0, 0, 5034, 5033, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 5, 462, 0, 0, 5037, 5038, 5, 80, 0, 0, 5038, 5039, 5, 204, 0, 0, 5039, 5040, 3, 812, 406, 0, 5040, 429, 1, 0, 0, 0, 5041, 5080, 5, 138, 0, 0, 5042, 5043, 5, 136, 0, 0, 5043, 5081, 3, 388, 194, 0, 5044, 5045, 5, 204, 0, 0, 5045, 5081, 3, 812, 406, 0, 5046, 5047, 5, 211, 0, 0, 5047, 5081, 3, 376, 188, 0, 5048, 5049, 5, 278, 0, 0, 5049, 5081, 3, 410, 205, 0, 5050, 5051, 5, 278, 0, 0, 5051, 5052, 7, 32, 0, 0, 5052, 5053, 3, 310, 155, 0, 5053, 5054, 3, 164, 82, 0, 5054, 5081, 1, 0, 0, 0, 5055, 5056, 5, 296, 0, 0, 5056, 5081, 3, 372, 186, 0, 5057, 5058, 5, 442, 0, 0, 5058, 5081, 3, 368, 184, 0, 5059, 5061, 5, 328, 0, 0, 5060, 5062, 3, 416, 208, 0, 5061, 5060, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5081, 3, 774, 387, 0, 5064, 5066, 5, 259, 0, 0, 5065, 5064, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5069, 5, 376, 0, 0, 5068, 5070, 3, 416, 208, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5081, 3, 772, 386, 0, 5072, 5074, 5, 63, 0, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5077, 5, 92, 0, 0, 5076, 5078, 3, 416, 208, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 3, 618, 309, 0, 5080, 5042, 1, 0, 0, 0, 5080, 5044, 1, 0, 0, 0, 5080, 5046, 1, 0, 0, 0, 5080, 5048, 1, 0, 0, 0, 5080, 5050, 1, 0, 0, 0, 5080, 5055, 1, 0, 0, 0, 5080, 5057, 1, 0, 0, 0, 5080, 5059, 1, 0, 0, 0, 5080, 5065, 1, 0, 0, 0, 5080, 5073, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 5, 333, 0, 0, 5083, 5084, 5, 323, 0, 0, 5084, 5085, 3, 784, 392, 0, 5085, 5103, 1, 0, 0, 0, 5086, 5095, 5, 138, 0, 0, 5087, 5088, 5, 355, 0, 0, 5088, 5089, 5, 325, 0, 0, 5089, 5096, 7, 42, 0, 0, 5090, 5096, 5, 108, 0, 0, 5091, 5096, 5, 168, 0, 0, 5092, 5096, 5, 189, 0, 0, 5093, 5096, 5, 342, 0, 0, 5094, 5096, 5, 360, 0, 0, 5095, 5087, 1, 0, 0, 0, 5095, 5090, 1, 0, 0, 0, 5095, 5091, 1, 0, 0, 0, 5095, 5092, 1, 0, 0, 0, 5095, 5093, 1, 0, 0, 0, 5095, 5094, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5098, 3, 310, 155, 0, 5098, 5099, 5, 333, 0, 0, 5099, 5100, 5, 323, 0, 0, 5100, 5101, 3, 784, 392, 0, 5101, 5103, 1, 0, 0, 0, 5102, 5041, 1, 0, 0, 0, 5102, 5086, 1, 0, 0, 0, 5103, 431, 1, 0, 0, 0, 5104, 5105, 5, 138, 0, 0, 5105, 5106, 5, 278, 0, 0, 5106, 5107, 3, 410, 205, 0, 5107, 5108, 5, 333, 0, 0, 5108, 5109, 3, 434, 217, 0, 5109, 433, 1, 0, 0, 0, 5110, 5111, 5, 2, 0, 0, 5111, 5116, 3, 436, 218, 0, 5112, 5113, 5, 6, 0, 0, 5113, 5115, 3, 436, 218, 0, 5114, 5112, 1, 0, 0, 0, 5115, 5118, 1, 0, 0, 0, 5116, 5114, 1, 0, 0, 0, 5116, 5117, 1, 0, 0, 0, 5117, 5119, 1, 0, 0, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5120, 5, 3, 0, 0, 5120, 435, 1, 0, 0, 0, 5121, 5122, 3, 818, 409, 0, 5122, 5129, 5, 10, 0, 0, 5123, 5130, 5, 407, 0, 0, 5124, 5130, 3, 382, 191, 0, 5125, 5130, 3, 828, 414, 0, 5126, 5130, 3, 720, 360, 0, 5127, 5130, 3, 196, 98, 0, 5128, 5130, 3, 802, 401, 0, 5129, 5123, 1, 0, 0, 0, 5129, 5124, 1, 0, 0, 0, 5129, 5125, 1, 0, 0, 0, 5129, 5126, 1, 0, 0, 0, 5129, 5127, 1, 0, 0, 0, 5129, 5128, 1, 0, 0, 0, 5130, 437, 1, 0, 0, 0, 5131, 5132, 5, 138, 0, 0, 5132, 5133, 5, 360, 0, 0, 5133, 5134, 3, 310, 155, 0, 5134, 5135, 5, 333, 0, 0, 5135, 5136, 3, 434, 217, 0, 5136, 439, 1, 0, 0, 0, 5137, 5138, 5, 138, 0, 0, 5138, 5139, 5, 278, 0, 0, 5139, 5140, 7, 32, 0, 0, 5140, 5141, 3, 310, 155, 0, 5141, 5142, 3, 164, 82, 0, 5142, 5143, 5, 282, 0, 0, 5143, 5144, 5, 94, 0, 0, 5144, 5145, 3, 808, 404, 0, 5145, 5212, 1, 0, 0, 0, 5146, 5173, 5, 138, 0, 0, 5147, 5148, 5, 136, 0, 0, 5148, 5174, 3, 388, 194, 0, 5149, 5150, 5, 175, 0, 0, 5150, 5174, 3, 782, 391, 0, 5151, 5152, 5, 211, 0, 0, 5152, 5174, 3, 376, 188, 0, 5153, 5155, 5, 295, 0, 0, 5154, 5153, 1, 0, 0, 0, 5154, 5155, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5157, 5, 247, 0, 0, 5157, 5174, 3, 812, 406, 0, 5158, 5159, 5, 248, 0, 0, 5159, 5160, 5, 274, 0, 0, 5160, 5174, 3, 196, 98, 0, 5161, 5162, 5, 248, 0, 0, 5162, 5163, 5, 274, 0, 0, 5163, 5174, 3, 196, 98, 0, 5164, 5165, 5, 278, 0, 0, 5165, 5174, 3, 410, 205, 0, 5166, 5167, 5, 296, 0, 0, 5167, 5174, 3, 372, 186, 0, 5168, 5169, 5, 442, 0, 0, 5169, 5174, 3, 368, 184, 0, 5170, 5171, 5, 323, 0, 0, 5171, 5174, 3, 784, 392, 0, 5172, 5174, 3, 170, 85, 0, 5173, 5147, 1, 0, 0, 0, 5173, 5149, 1, 0, 0, 0, 5173, 5151, 1, 0, 0, 0, 5173, 5154, 1, 0, 0, 0, 5173, 5158, 1, 0, 0, 0, 5173, 5161, 1, 0, 0, 0, 5173, 5164, 1, 0, 0, 0, 5173, 5166, 1, 0, 0, 0, 5173, 5168, 1, 0, 0, 0, 5173, 5170, 1, 0, 0, 0, 5173, 5172, 1, 0, 0, 0, 5174, 5175, 1, 0, 0, 0, 5175, 5176, 5, 282, 0, 0, 5176, 5177, 5, 94, 0, 0, 5177, 5178, 3, 808, 404, 0, 5178, 5212, 1, 0, 0, 0, 5179, 5188, 5, 138, 0, 0, 5180, 5181, 5, 355, 0, 0, 5181, 5182, 5, 325, 0, 0, 5182, 5189, 7, 64, 0, 0, 5183, 5189, 5, 108, 0, 0, 5184, 5189, 5, 168, 0, 0, 5185, 5189, 5, 189, 0, 0, 5186, 5189, 5, 360, 0, 0, 5187, 5189, 5, 342, 0, 0, 5188, 5180, 1, 0, 0, 0, 5188, 5183, 1, 0, 0, 0, 5188, 5184, 1, 0, 0, 0, 5188, 5185, 1, 0, 0, 0, 5188, 5186, 1, 0, 0, 0, 5188, 5187, 1, 0, 0, 0, 5189, 5190, 1, 0, 0, 0, 5190, 5191, 3, 310, 155, 0, 5191, 5192, 5, 282, 0, 0, 5192, 5193, 5, 94, 0, 0, 5193, 5194, 3, 808, 404, 0, 5194, 5212, 1, 0, 0, 0, 5195, 5204, 5, 138, 0, 0, 5196, 5205, 5, 331, 0, 0, 5197, 5198, 5, 63, 0, 0, 5198, 5199, 5, 174, 0, 0, 5199, 5205, 5, 381, 0, 0, 5200, 5201, 5, 198, 0, 0, 5201, 5205, 5, 357, 0, 0, 5202, 5205, 5, 452, 0, 0, 5203, 5205, 5, 451, 0, 0, 5204, 5196, 1, 0, 0, 0, 5204, 5197, 1, 0, 0, 0, 5204, 5200, 1, 0, 0, 0, 5204, 5202, 1, 0, 0, 0, 5204, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5207, 3, 812, 406, 0, 5207, 5208, 5, 282, 0, 0, 5208, 5209, 5, 94, 0, 0, 5209, 5210, 3, 808, 404, 0, 5210, 5212, 1, 0, 0, 0, 5211, 5137, 1, 0, 0, 0, 5211, 5146, 1, 0, 0, 0, 5211, 5179, 1, 0, 0, 0, 5211, 5195, 1, 0, 0, 0, 5212, 441, 1, 0, 0, 0, 5213, 5214, 5, 46, 0, 0, 5214, 5215, 5, 452, 0, 0, 5215, 5222, 3, 812, 406, 0, 5216, 5217, 5, 62, 0, 0, 5217, 5218, 5, 92, 0, 0, 5218, 5223, 3, 622, 311, 0, 5219, 5220, 5, 62, 0, 0, 5220, 5221, 5, 30, 0, 0, 5221, 5223, 5, 350, 0, 0, 5222, 5216, 1, 0, 0, 0, 5222, 5219, 1, 0, 0, 0, 5222, 5223, 1, 0, 0, 0, 5223, 5225, 1, 0, 0, 0, 5224, 5226, 3, 394, 197, 0, 5225, 5224, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 443, 1, 0, 0, 0, 5227, 5228, 5, 138, 0, 0, 5228, 5229, 5, 452, 0, 0, 5229, 5247, 3, 812, 406, 0, 5230, 5231, 5, 282, 0, 0, 5231, 5232, 5, 94, 0, 0, 5232, 5248, 3, 808, 404, 0, 5233, 5234, 5, 333, 0, 0, 5234, 5248, 3, 278, 139, 0, 5235, 5236, 5, 309, 0, 0, 5236, 5237, 5, 94, 0, 0, 5237, 5248, 3, 812, 406, 0, 5238, 5239, 7, 35, 0, 0, 5239, 5244, 3, 620, 310, 0, 5240, 5241, 5, 6, 0, 0, 5241, 5243, 3, 620, 310, 0, 5242, 5240, 1, 0, 0, 0, 5243, 5246, 1, 0, 0, 0, 5244, 5242, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5248, 1, 0, 0, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5230, 1, 0, 0, 0, 5247, 5233, 1, 0, 0, 0, 5247, 5235, 1, 0, 0, 0, 5247, 5238, 1, 0, 0, 0, 5248, 445, 1, 0, 0, 0, 5249, 5250, 5, 46, 0, 0, 5250, 5251, 5, 451, 0, 0, 5251, 5252, 3, 812, 406, 0, 5252, 5253, 5, 164, 0, 0, 5253, 5254, 3, 802, 401, 0, 5254, 5255, 5, 452, 0, 0, 5255, 5260, 3, 818, 409, 0, 5256, 5257, 5, 6, 0, 0, 5257, 5259, 3, 818, 409, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5262, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5264, 1, 0, 0, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5265, 3, 394, 197, 0, 5264, 5263, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 447, 1, 0, 0, 0, 5266, 5267, 5, 138, 0, 0, 5267, 5268, 5, 451, 0, 0, 5268, 5269, 3, 812, 406, 0, 5269, 5270, 5, 333, 0, 0, 5270, 5271, 3, 278, 139, 0, 5271, 5323, 1, 0, 0, 0, 5272, 5273, 5, 138, 0, 0, 5273, 5274, 5, 451, 0, 0, 5274, 5275, 3, 812, 406, 0, 5275, 5276, 5, 164, 0, 0, 5276, 5277, 3, 802, 401, 0, 5277, 5323, 1, 0, 0, 0, 5278, 5279, 5, 138, 0, 0, 5279, 5280, 5, 451, 0, 0, 5280, 5281, 3, 812, 406, 0, 5281, 5282, 5, 305, 0, 0, 5282, 5284, 5, 452, 0, 0, 5283, 5285, 3, 394, 197, 0, 5284, 5283, 1, 0, 0, 0, 5284, 5285, 1, 0, 0, 0, 5285, 5323, 1, 0, 0, 0, 5286, 5287, 5, 138, 0, 0, 5287, 5288, 5, 451, 0, 0, 5288, 5289, 3, 812, 406, 0, 5289, 5290, 7, 35, 0, 0, 5290, 5291, 5, 452, 0, 0, 5291, 5296, 3, 818, 409, 0, 5292, 5293, 5, 6, 0, 0, 5293, 5295, 3, 818, 409, 0, 5294, 5292, 1, 0, 0, 0, 5295, 5298, 1, 0, 0, 0, 5296, 5294, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5300, 1, 0, 0, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5301, 3, 394, 197, 0, 5300, 5299, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5323, 1, 0, 0, 0, 5302, 5303, 5, 138, 0, 0, 5303, 5304, 5, 451, 0, 0, 5304, 5305, 3, 812, 406, 0, 5305, 5306, 7, 65, 0, 0, 5306, 5323, 1, 0, 0, 0, 5307, 5308, 5, 138, 0, 0, 5308, 5309, 5, 451, 0, 0, 5309, 5310, 3, 812, 406, 0, 5310, 5311, 5, 465, 0, 0, 5311, 5312, 5, 2, 0, 0, 5312, 5313, 3, 284, 142, 0, 5313, 5314, 5, 3, 0, 0, 5314, 5323, 1, 0, 0, 0, 5315, 5316, 5, 138, 0, 0, 5316, 5317, 5, 451, 0, 0, 5317, 5318, 3, 812, 406, 0, 5318, 5319, 5, 282, 0, 0, 5319, 5320, 5, 94, 0, 0, 5320, 5321, 3, 808, 404, 0, 5321, 5323, 1, 0, 0, 0, 5322, 5266, 1, 0, 0, 0, 5322, 5272, 1, 0, 0, 0, 5322, 5278, 1, 0, 0, 0, 5322, 5286, 1, 0, 0, 0, 5322, 5302, 1, 0, 0, 0, 5322, 5307, 1, 0, 0, 0, 5322, 5315, 1, 0, 0, 0, 5323, 449, 1, 0, 0, 0, 5324, 5326, 5, 46, 0, 0, 5325, 5327, 3, 360, 180, 0, 5326, 5325, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5329, 5, 321, 0, 0, 5329, 5330, 3, 812, 406, 0, 5330, 5331, 5, 36, 0, 0, 5331, 5332, 5, 80, 0, 0, 5332, 5333, 7, 66, 0, 0, 5333, 5334, 5, 94, 0, 0, 5334, 5336, 3, 774, 387, 0, 5335, 5337, 3, 632, 316, 0, 5336, 5335, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 5338, 1, 0, 0, 0, 5338, 5340, 5, 57, 0, 0, 5339, 5341, 7, 67, 0, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5358, 1, 0, 0, 0, 5342, 5359, 5, 270, 0, 0, 5343, 5359, 3, 452, 226, 0, 5344, 5346, 5, 2, 0, 0, 5345, 5347, 3, 452, 226, 0, 5346, 5345, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5354, 1, 0, 0, 0, 5348, 5350, 5, 7, 0, 0, 5349, 5351, 3, 452, 226, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5353, 1, 0, 0, 0, 5352, 5348, 1, 0, 0, 0, 5353, 5356, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5357, 1, 0, 0, 0, 5356, 5354, 1, 0, 0, 0, 5357, 5359, 5, 3, 0, 0, 5358, 5342, 1, 0, 0, 0, 5358, 5343, 1, 0, 0, 0, 5358, 5344, 1, 0, 0, 0, 5359, 451, 1, 0, 0, 0, 5360, 5366, 3, 554, 277, 0, 5361, 5366, 3, 532, 266, 0, 5362, 5366, 3, 546, 273, 0, 5363, 5366, 3, 542, 271, 0, 5364, 5366, 3, 454, 227, 0, 5365, 5360, 1, 0, 0, 0, 5365, 5361, 1, 0, 0, 0, 5365, 5362, 1, 0, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5364, 1, 0, 0, 0, 5366, 453, 1, 0, 0, 0, 5367, 5368, 5, 271, 0, 0, 5368, 5370, 3, 812, 406, 0, 5369, 5371, 3, 456, 228, 0, 5370, 5369, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 455, 1, 0, 0, 0, 5372, 5373, 5, 6, 0, 0, 5373, 5374, 3, 802, 401, 0, 5374, 457, 1, 0, 0, 0, 5375, 5376, 5, 252, 0, 0, 5376, 5377, 3, 812, 406, 0, 5377, 459, 1, 0, 0, 0, 5378, 5381, 5, 366, 0, 0, 5379, 5382, 3, 812, 406, 0, 5380, 5382, 5, 9, 0, 0, 5381, 5379, 1, 0, 0, 0, 5381, 5380, 1, 0, 0, 0, 5382, 461, 1, 0, 0, 0, 5383, 5385, 5, 146, 0, 0, 5384, 5386, 3, 464, 232, 0, 5385, 5384, 1, 0, 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5388, 1, 0, 0, 0, 5387, 5389, 3, 468, 234, 0, 5388, 5387, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 5429, 1, 0, 0, 0, 5390, 5391, 5, 340, 0, 0, 5391, 5393, 5, 356, 0, 0, 5392, 5394, 3, 468, 234, 0, 5393, 5392, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5429, 1, 0, 0, 0, 5395, 5396, 5, 322, 0, 0, 5396, 5429, 3, 812, 406, 0, 5397, 5399, 5, 308, 0, 0, 5398, 5400, 5, 322, 0, 0, 5399, 5398, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5429, 3, 812, 406, 0, 5402, 5403, 5, 290, 0, 0, 5403, 5404, 5, 356, 0, 0, 5404, 5429, 3, 802, 401, 0, 5405, 5406, 7, 68, 0, 0, 5406, 5407, 5, 291, 0, 0, 5407, 5429, 3, 802, 401, 0, 5408, 5410, 7, 69, 0, 0, 5409, 5411, 3, 464, 232, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5417, 1, 0, 0, 0, 5412, 5414, 5, 33, 0, 0, 5413, 5415, 5, 269, 0, 0, 5414, 5413, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5418, 5, 153, 0, 0, 5417, 5412, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5429, 1, 0, 0, 0, 5419, 5421, 5, 319, 0, 0, 5420, 5422, 3, 464, 232, 0, 5421, 5420, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5425, 5, 94, 0, 0, 5424, 5426, 5, 322, 0, 0, 5425, 5424, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5429, 3, 812, 406, 0, 5428, 5383, 1, 0, 0, 0, 5428, 5390, 1, 0, 0, 0, 5428, 5395, 1, 0, 0, 0, 5428, 5397, 1, 0, 0, 0, 5428, 5402, 1, 0, 0, 0, 5428, 5405, 1, 0, 0, 0, 5428, 5408, 1, 0, 0, 0, 5428, 5419, 1, 0, 0, 0, 5429, 463, 1, 0, 0, 0, 5430, 5431, 7, 70, 0, 0, 5431, 465, 1, 0, 0, 0, 5432, 5433, 5, 244, 0, 0, 5433, 5434, 5, 251, 0, 0, 5434, 5442, 3, 50, 25, 0, 5435, 5436, 5, 300, 0, 0, 5436, 5442, 7, 71, 0, 0, 5437, 5439, 5, 77, 0, 0, 5438, 5437, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5442, 5, 54, 0, 0, 5441, 5432, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5438, 1, 0, 0, 0, 5442, 467, 1, 0, 0, 0, 5443, 5450, 3, 466, 233, 0, 5444, 5446, 5, 6, 0, 0, 5445, 5444, 1, 0, 0, 0, 5445, 5446, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5449, 3, 466, 233, 0, 5448, 5445, 1, 0, 0, 0, 5449, 5452, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 469, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5453, 5456, 5, 46, 0, 0, 5454, 5455, 5, 82, 0, 0, 5455, 5457, 5, 311, 0, 0, 5456, 5454, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5459, 1, 0, 0, 0, 5458, 5460, 3, 116, 58, 0, 5459, 5458, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5476, 1, 0, 0, 0, 5461, 5462, 5, 376, 0, 0, 5462, 5464, 3, 770, 385, 0, 5463, 5465, 3, 140, 70, 0, 5464, 5463, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5467, 1, 0, 0, 0, 5466, 5468, 3, 94, 47, 0, 5467, 5466, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5477, 1, 0, 0, 0, 5469, 5470, 5, 303, 0, 0, 5470, 5471, 5, 376, 0, 0, 5471, 5472, 3, 770, 385, 0, 5472, 5474, 3, 138, 69, 0, 5473, 5475, 3, 94, 47, 0, 5474, 5473, 1, 0, 0, 0, 5474, 5475, 1, 0, 0, 0, 5475, 5477, 1, 0, 0, 0, 5476, 5461, 1, 0, 0, 0, 5476, 5469, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5478, 5479, 5, 36, 0, 0, 5479, 5486, 3, 554, 277, 0, 5480, 5482, 5, 105, 0, 0, 5481, 5483, 7, 72, 0, 0, 5482, 5481, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5485, 5, 42, 0, 0, 5485, 5487, 5, 279, 0, 0, 5486, 5480, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 471, 1, 0, 0, 0, 5488, 5489, 5, 253, 0, 0, 5489, 5490, 3, 802, 401, 0, 5490, 473, 1, 0, 0, 0, 5491, 5492, 5, 46, 0, 0, 5492, 5493, 5, 175, 0, 0, 5493, 5495, 3, 780, 390, 0, 5494, 5496, 5, 105, 0, 0, 5495, 5494, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5502, 1, 0, 0, 0, 5497, 5499, 3, 476, 238, 0, 5498, 5497, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5498, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5503, 1, 0, 0, 0, 5502, 5498, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 475, 1, 0, 0, 0, 5504, 5505, 5, 164, 0, 0, 5505, 5513, 5, 74, 0, 0, 5506, 5513, 5, 194, 0, 0, 5507, 5513, 5, 255, 0, 0, 5508, 5513, 5, 282, 0, 0, 5509, 5513, 5, 351, 0, 0, 5510, 5513, 5, 353, 0, 0, 5511, 5513, 3, 820, 410, 0, 5512, 5504, 1, 0, 0, 0, 5512, 5506, 1, 0, 0, 0, 5512, 5507, 1, 0, 0, 0, 5512, 5508, 1, 0, 0, 0, 5512, 5509, 1, 0, 0, 0, 5512, 5510, 1, 0, 0, 0, 5512, 5511, 1, 0, 0, 0, 5513, 5515, 1, 0, 0, 0, 5514, 5516, 5, 10, 0, 0, 5515, 5514, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5520, 1, 0, 0, 0, 5517, 5521, 3, 806, 403, 0, 5518, 5521, 3, 54, 27, 0, 5519, 5521, 5, 53, 0, 0, 5520, 5517, 1, 0, 0, 0, 5520, 5518, 1, 0, 0, 0, 5520, 5519, 1, 0, 0, 0, 5521, 477, 1, 0, 0, 0, 5522, 5523, 5, 138, 0, 0, 5523, 5524, 5, 175, 0, 0, 5524, 5540, 3, 782, 391, 0, 5525, 5526, 5, 333, 0, 0, 5526, 5527, 5, 351, 0, 0, 5527, 5529, 3, 764, 382, 0, 5528, 5525, 1, 0, 0, 0, 5528, 5529, 1, 0, 0, 0, 5529, 5541, 1, 0, 0, 0, 5530, 5532, 5, 105, 0, 0, 5531, 5530, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5534, 1, 0, 0, 0, 5533, 5535, 3, 476, 238, 0, 5534, 5533, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5534, 1, 0, 0, 0, 5536, 5537, 1, 0, 0, 0, 5537, 5539, 1, 0, 0, 0, 5538, 5531, 1, 0, 0, 0, 5538, 5539, 1, 0, 0, 0, 5539, 5541, 1, 0, 0, 0, 5540, 5528, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5541, 479, 1, 0, 0, 0, 5542, 5543, 5, 138, 0, 0, 5543, 5544, 5, 175, 0, 0, 5544, 5546, 3, 782, 391, 0, 5545, 5547, 3, 64, 32, 0, 5546, 5545, 1, 0, 0, 0, 5546, 5547, 1, 0, 0, 0, 5547, 481, 1, 0, 0, 0, 5548, 5549, 5, 138, 0, 0, 5549, 5550, 5, 108, 0, 0, 5550, 5551, 3, 310, 155, 0, 5551, 5552, 5, 305, 0, 0, 5552, 5553, 5, 375, 0, 0, 5553, 483, 1, 0, 0, 0, 5554, 5555, 5, 138, 0, 0, 5555, 5556, 5, 349, 0, 0, 5556, 5557, 7, 16, 0, 0, 5557, 5558, 3, 40, 20, 0, 5558, 485, 1, 0, 0, 0, 5559, 5560, 5, 46, 0, 0, 5560, 5561, 5, 189, 0, 0, 5561, 5563, 3, 310, 155, 0, 5562, 5564, 5, 36, 0, 0, 5563, 5562, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 5569, 3, 646, 323, 0, 5566, 5568, 3, 128, 64, 0, 5567, 5566, 1, 0, 0, 0, 5568, 5571, 1, 0, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 487, 1, 0, 0, 0, 5571, 5569, 1, 0, 0, 0, 5572, 5573, 5, 138, 0, 0, 5573, 5574, 5, 189, 0, 0, 5574, 5597, 3, 310, 155, 0, 5575, 5598, 3, 86, 43, 0, 5576, 5577, 7, 15, 0, 0, 5577, 5578, 5, 77, 0, 0, 5578, 5598, 5, 78, 0, 0, 5579, 5582, 5, 133, 0, 0, 5580, 5581, 5, 45, 0, 0, 5581, 5583, 3, 812, 406, 0, 5582, 5580, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5598, 3, 136, 68, 0, 5585, 5586, 5, 191, 0, 0, 5586, 5588, 5, 45, 0, 0, 5587, 5589, 3, 416, 208, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5592, 3, 812, 406, 0, 5591, 5593, 3, 88, 44, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5598, 1, 0, 0, 0, 5594, 5595, 5, 372, 0, 0, 5595, 5596, 5, 45, 0, 0, 5596, 5598, 3, 812, 406, 0, 5597, 5575, 1, 0, 0, 0, 5597, 5576, 1, 0, 0, 0, 5597, 5579, 1, 0, 0, 0, 5597, 5585, 1, 0, 0, 0, 5597, 5594, 1, 0, 0, 0, 5598, 489, 1, 0, 0, 0, 5599, 5600, 5, 138, 0, 0, 5600, 5601, 5, 355, 0, 0, 5601, 5602, 5, 325, 0, 0, 5602, 5603, 5, 185, 0, 0, 5603, 5604, 3, 310, 155, 0, 5604, 5605, 3, 278, 139, 0, 5605, 491, 1, 0, 0, 0, 5606, 5607, 5, 138, 0, 0, 5607, 5608, 5, 355, 0, 0, 5608, 5609, 5, 325, 0, 0, 5609, 5610, 5, 163, 0, 0, 5610, 5611, 3, 310, 155, 0, 5611, 5612, 7, 73, 0, 0, 5612, 5613, 5, 257, 0, 0, 5613, 5614, 5, 62, 0, 0, 5614, 5615, 3, 778, 389, 0, 5615, 5616, 5, 105, 0, 0, 5616, 5617, 3, 308, 154, 0, 5617, 5648, 1, 0, 0, 0, 5618, 5619, 5, 138, 0, 0, 5619, 5620, 5, 355, 0, 0, 5620, 5621, 5, 325, 0, 0, 5621, 5622, 5, 163, 0, 0, 5622, 5623, 3, 310, 155, 0, 5623, 5624, 5, 138, 0, 0, 5624, 5627, 5, 257, 0, 0, 5625, 5626, 5, 62, 0, 0, 5626, 5628, 3, 778, 389, 0, 5627, 5625, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5629, 1, 0, 0, 0, 5629, 5630, 5, 311, 0, 0, 5630, 5631, 3, 310, 155, 0, 5631, 5632, 5, 105, 0, 0, 5632, 5633, 3, 310, 155, 0, 5633, 5648, 1, 0, 0, 0, 5634, 5635, 5, 138, 0, 0, 5635, 5636, 5, 355, 0, 0, 5636, 5637, 5, 325, 0, 0, 5637, 5638, 5, 163, 0, 0, 5638, 5639, 3, 310, 155, 0, 5639, 5640, 5, 191, 0, 0, 5640, 5642, 5, 257, 0, 0, 5641, 5643, 3, 416, 208, 0, 5642, 5641, 1, 0, 0, 0, 5642, 5643, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5645, 5, 62, 0, 0, 5645, 5646, 3, 778, 389, 0, 5646, 5648, 1, 0, 0, 0, 5647, 5606, 1, 0, 0, 0, 5647, 5618, 1, 0, 0, 0, 5647, 5634, 1, 0, 0, 0, 5648, 493, 1, 0, 0, 0, 5649, 5651, 5, 46, 0, 0, 5650, 5652, 5, 53, 0, 0, 5651, 5650, 1, 0, 0, 0, 5651, 5652, 1, 0, 0, 0, 5652, 5653, 1, 0, 0, 0, 5653, 5654, 5, 168, 0, 0, 5654, 5655, 3, 310, 155, 0, 5655, 5656, 5, 62, 0, 0, 5656, 5657, 3, 802, 401, 0, 5657, 5658, 5, 94, 0, 0, 5658, 5659, 3, 802, 401, 0, 5659, 5660, 5, 64, 0, 0, 5660, 5661, 3, 310, 155, 0, 5661, 495, 1, 0, 0, 0, 5662, 5664, 5, 158, 0, 0, 5663, 5665, 3, 508, 254, 0, 5664, 5663, 1, 0, 0, 0, 5664, 5665, 1, 0, 0, 0, 5665, 5670, 1, 0, 0, 0, 5666, 5668, 3, 768, 384, 0, 5667, 5669, 3, 164, 82, 0, 5668, 5667, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5671, 1, 0, 0, 0, 5670, 5666, 1, 0, 0, 0, 5670, 5671, 1, 0, 0, 0, 5671, 5688, 1, 0, 0, 0, 5672, 5673, 5, 158, 0, 0, 5673, 5674, 5, 2, 0, 0, 5674, 5679, 3, 508, 254, 0, 5675, 5676, 5, 6, 0, 0, 5676, 5678, 3, 508, 254, 0, 5677, 5675, 1, 0, 0, 0, 5678, 5681, 1, 0, 0, 0, 5679, 5677, 1, 0, 0, 0, 5679, 5680, 1, 0, 0, 0, 5680, 5682, 1, 0, 0, 0, 5681, 5679, 1, 0, 0, 0, 5682, 5683, 5, 3, 0, 0, 5683, 5685, 3, 768, 384, 0, 5684, 5686, 3, 164, 82, 0, 5685, 5684, 1, 0, 0, 0, 5685, 5686, 1, 0, 0, 0, 5686, 5688, 1, 0, 0, 0, 5687, 5662, 1, 0, 0, 0, 5687, 5672, 1, 0, 0, 0, 5688, 497, 1, 0, 0, 0, 5689, 5705, 5, 370, 0, 0, 5690, 5692, 5, 113, 0, 0, 5691, 5690, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5694, 1, 0, 0, 0, 5693, 5695, 5, 112, 0, 0, 5694, 5693, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5697, 1, 0, 0, 0, 5696, 5698, 3, 508, 254, 0, 5697, 5696, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5701, 3, 502, 251, 0, 5700, 5699, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 5706, 1, 0, 0, 0, 5702, 5704, 3, 518, 259, 0, 5703, 5702, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5706, 1, 0, 0, 0, 5705, 5691, 1, 0, 0, 0, 5705, 5703, 1, 0, 0, 0, 5706, 5708, 1, 0, 0, 0, 5707, 5709, 3, 512, 256, 0, 5708, 5707, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 499, 1, 0, 0, 0, 5710, 5725, 3, 502, 251, 0, 5711, 5713, 3, 508, 254, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5726, 1, 0, 0, 0, 5714, 5715, 5, 2, 0, 0, 5715, 5720, 3, 506, 253, 0, 5716, 5717, 5, 6, 0, 0, 5717, 5719, 3, 506, 253, 0, 5718, 5716, 1, 0, 0, 0, 5719, 5722, 1, 0, 0, 0, 5720, 5718, 1, 0, 0, 0, 5720, 5721, 1, 0, 0, 0, 5721, 5723, 1, 0, 0, 0, 5722, 5720, 1, 0, 0, 0, 5723, 5724, 5, 3, 0, 0, 5724, 5726, 1, 0, 0, 0, 5725, 5712, 1, 0, 0, 0, 5725, 5714, 1, 0, 0, 0, 5726, 5728, 1, 0, 0, 0, 5727, 5729, 3, 512, 256, 0, 5728, 5727, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 501, 1, 0, 0, 0, 5730, 5731, 7, 74, 0, 0, 5731, 503, 1, 0, 0, 0, 5732, 5735, 3, 816, 408, 0, 5733, 5735, 3, 502, 251, 0, 5734, 5732, 1, 0, 0, 0, 5734, 5733, 1, 0, 0, 0, 5735, 5738, 1, 0, 0, 0, 5736, 5739, 3, 54, 27, 0, 5737, 5739, 3, 196, 98, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5738, 5739, 1, 0, 0, 0, 5739, 505, 1, 0, 0, 0, 5740, 5742, 7, 75, 0, 0, 5741, 5743, 7, 76, 0, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 5750, 1, 0, 0, 0, 5744, 5747, 5, 548, 0, 0, 5745, 5748, 3, 196, 98, 0, 5746, 5748, 3, 802, 401, 0, 5747, 5745, 1, 0, 0, 0, 5747, 5746, 1, 0, 0, 0, 5748, 5750, 1, 0, 0, 0, 5749, 5740, 1, 0, 0, 0, 5749, 5744, 1, 0, 0, 0, 5750, 507, 1, 0, 0, 0, 5751, 5753, 5, 128, 0, 0, 5752, 5754, 7, 76, 0, 0, 5753, 5752, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 509, 1, 0, 0, 0, 5755, 5757, 3, 768, 384, 0, 5756, 5758, 3, 138, 69, 0, 5757, 5756, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 511, 1, 0, 0, 0, 5759, 5764, 3, 510, 255, 0, 5760, 5761, 5, 6, 0, 0, 5761, 5763, 3, 510, 255, 0, 5762, 5760, 1, 0, 0, 0, 5763, 5766, 1, 0, 0, 0, 5764, 5762, 1, 0, 0, 0, 5764, 5765, 1, 0, 0, 0, 5765, 513, 1, 0, 0, 0, 5766, 5764, 1, 0, 0, 0, 5767, 5778, 5, 203, 0, 0, 5768, 5779, 3, 518, 259, 0, 5769, 5771, 5, 128, 0, 0, 5770, 5769, 1, 0, 0, 0, 5770, 5771, 1, 0, 0, 0, 5771, 5779, 1, 0, 0, 0, 5772, 5774, 3, 502, 251, 0, 5773, 5775, 3, 508, 254, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5777, 1, 0, 0, 0, 5776, 5772, 1, 0, 0, 0, 5776, 5777, 1, 0, 0, 0, 5777, 5779, 1, 0, 0, 0, 5778, 5768, 1, 0, 0, 0, 5778, 5770, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5781, 3, 516, 258, 0, 5781, 515, 1, 0, 0, 0, 5782, 5792, 3, 554, 277, 0, 5783, 5792, 3, 532, 266, 0, 5784, 5792, 3, 546, 273, 0, 5785, 5792, 3, 542, 271, 0, 5786, 5792, 3, 552, 276, 0, 5787, 5792, 3, 180, 90, 0, 5788, 5792, 3, 186, 93, 0, 5789, 5792, 3, 188, 94, 0, 5790, 5792, 3, 526, 263, 0, 5791, 5782, 1, 0, 0, 0, 5791, 5783, 1, 0, 0, 0, 5791, 5784, 1, 0, 0, 0, 5791, 5785, 1, 0, 0, 0, 5791, 5786, 1, 0, 0, 0, 5791, 5787, 1, 0, 0, 0, 5791, 5788, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5791, 5790, 1, 0, 0, 0, 5792, 517, 1, 0, 0, 0, 5793, 5794, 5, 2, 0, 0, 5794, 5799, 3, 504, 252, 0, 5795, 5796, 5, 6, 0, 0, 5796, 5798, 3, 504, 252, 0, 5797, 5795, 1, 0, 0, 0, 5798, 5801, 1, 0, 0, 0, 5799, 5797, 1, 0, 0, 0, 5799, 5800, 1, 0, 0, 0, 5800, 5802, 1, 0, 0, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5803, 5, 3, 0, 0, 5803, 519, 1, 0, 0, 0, 5804, 5805, 5, 290, 0, 0, 5805, 5807, 3, 812, 406, 0, 5806, 5808, 3, 522, 261, 0, 5807, 5806, 1, 0, 0, 0, 5807, 5808, 1, 0, 0, 0, 5808, 5809, 1, 0, 0, 0, 5809, 5810, 5, 36, 0, 0, 5810, 5811, 3, 524, 262, 0, 5811, 521, 1, 0, 0, 0, 5812, 5813, 5, 2, 0, 0, 5813, 5818, 3, 646, 323, 0, 5814, 5815, 5, 6, 0, 0, 5815, 5817, 3, 646, 323, 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, 5821, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5822, 5, 3, 0, 0, 5822, 523, 1, 0, 0, 0, 5823, 5829, 3, 554, 277, 0, 5824, 5829, 3, 532, 266, 0, 5825, 5829, 3, 546, 273, 0, 5826, 5829, 3, 542, 271, 0, 5827, 5829, 3, 894, 447, 0, 5828, 5823, 1, 0, 0, 0, 5828, 5824, 1, 0, 0, 0, 5828, 5825, 1, 0, 0, 0, 5828, 5826, 1, 0, 0, 0, 5828, 5827, 1, 0, 0, 0, 5829, 525, 1, 0, 0, 0, 5830, 5831, 5, 202, 0, 0, 5831, 5833, 3, 812, 406, 0, 5832, 5834, 3, 528, 264, 0, 5833, 5832, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5854, 1, 0, 0, 0, 5835, 5837, 5, 46, 0, 0, 5836, 5838, 3, 116, 58, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5839, 1, 0, 0, 0, 5839, 5841, 5, 92, 0, 0, 5840, 5842, 3, 288, 144, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5844, 3, 182, 91, 0, 5844, 5845, 5, 36, 0, 0, 5845, 5846, 5, 202, 0, 0, 5846, 5848, 3, 812, 406, 0, 5847, 5849, 3, 528, 264, 0, 5848, 5847, 1, 0, 0, 0, 5848, 5849, 1, 0, 0, 0, 5849, 5851, 1, 0, 0, 0, 5850, 5852, 3, 184, 92, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5854, 1, 0, 0, 0, 5853, 5830, 1, 0, 0, 0, 5853, 5835, 1, 0, 0, 0, 5854, 527, 1, 0, 0, 0, 5855, 5856, 5, 2, 0, 0, 5856, 5857, 3, 724, 362, 0, 5857, 5858, 5, 3, 0, 0, 5858, 529, 1, 0, 0, 0, 5859, 5861, 5, 177, 0, 0, 5860, 5862, 5, 290, 0, 0, 5861, 5860, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5865, 1, 0, 0, 0, 5863, 5866, 3, 812, 406, 0, 5864, 5866, 5, 30, 0, 0, 5865, 5863, 1, 0, 0, 0, 5865, 5864, 1, 0, 0, 0, 5866, 531, 1, 0, 0, 0, 5867, 5869, 3, 566, 283, 0, 5868, 5867, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5870, 1, 0, 0, 0, 5870, 5871, 5, 241, 0, 0, 5871, 5872, 5, 71, 0, 0, 5872, 5875, 3, 768, 384, 0, 5873, 5874, 5, 36, 0, 0, 5874, 5876, 3, 812, 406, 0, 5875, 5873, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5877, 1, 0, 0, 0, 5877, 5899, 3, 534, 267, 0, 5878, 5879, 5, 80, 0, 0, 5879, 5887, 5, 464, 0, 0, 5880, 5882, 3, 354, 177, 0, 5881, 5883, 3, 632, 316, 0, 5882, 5881, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5888, 1, 0, 0, 0, 5884, 5885, 5, 80, 0, 0, 5885, 5886, 5, 45, 0, 0, 5886, 5888, 3, 812, 406, 0, 5887, 5880, 1, 0, 0, 0, 5887, 5884, 1, 0, 0, 0, 5887, 5888, 1, 0, 0, 0, 5888, 5889, 1, 0, 0, 0, 5889, 5897, 5, 57, 0, 0, 5890, 5891, 5, 369, 0, 0, 5891, 5892, 5, 333, 0, 0, 5892, 5894, 3, 548, 274, 0, 5893, 5895, 3, 632, 316, 0, 5894, 5893, 1, 0, 0, 0, 5894, 5895, 1, 0, 0, 0, 5895, 5898, 1, 0, 0, 0, 5896, 5898, 5, 270, 0, 0, 5897, 5890, 1, 0, 0, 0, 5897, 5896, 1, 0, 0, 0, 5898, 5900, 1, 0, 0, 0, 5899, 5878, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5902, 1, 0, 0, 0, 5901, 5903, 3, 540, 270, 0, 5902, 5901, 1, 0, 0, 0, 5902, 5903, 1, 0, 0, 0, 5903, 533, 1, 0, 0, 0, 5904, 5905, 5, 2, 0, 0, 5905, 5906, 3, 536, 268, 0, 5906, 5907, 5, 3, 0, 0, 5907, 5909, 1, 0, 0, 0, 5908, 5904, 1, 0, 0, 0, 5908, 5909, 1, 0, 0, 0, 5909, 5913, 1, 0, 0, 0, 5910, 5911, 5, 463, 0, 0, 5911, 5912, 7, 77, 0, 0, 5912, 5914, 5, 450, 0, 0, 5913, 5910, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 5917, 1, 0, 0, 0, 5915, 5918, 3, 904, 452, 0, 5916, 5918, 3, 554, 277, 0, 5917, 5915, 1, 0, 0, 0, 5917, 5916, 1, 0, 0, 0, 5918, 535, 1, 0, 0, 0, 5919, 5924, 3, 538, 269, 0, 5920, 5921, 5, 6, 0, 0, 5921, 5923, 3, 538, 269, 0, 5922, 5920, 1, 0, 0, 0, 5923, 5926, 1, 0, 0, 0, 5924, 5922, 1, 0, 0, 0, 5924, 5925, 1, 0, 0, 0, 5925, 537, 1, 0, 0, 0, 5926, 5924, 1, 0, 0, 0, 5927, 5928, 3, 794, 397, 0, 5928, 5929, 3, 748, 374, 0, 5929, 539, 1, 0, 0, 0, 5930, 5931, 5, 87, 0, 0, 5931, 5932, 3, 750, 375, 0, 5932, 541, 1, 0, 0, 0, 5933, 5935, 3, 566, 283, 0, 5934, 5933, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 5936, 1, 0, 0, 0, 5936, 5937, 5, 182, 0, 0, 5937, 5938, 5, 64, 0, 0, 5938, 5941, 3, 624, 312, 0, 5939, 5940, 5, 100, 0, 0, 5940, 5942, 3, 606, 303, 0, 5941, 5939, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 5944, 1, 0, 0, 0, 5943, 5945, 3, 634, 317, 0, 5944, 5943, 1, 0, 0, 0, 5944, 5945, 1, 0, 0, 0, 5945, 5947, 1, 0, 0, 0, 5946, 5948, 3, 540, 270, 0, 5947, 5946, 1, 0, 0, 0, 5947, 5948, 1, 0, 0, 0, 5948, 543, 1, 0, 0, 0, 5949, 5951, 5, 256, 0, 0, 5950, 5952, 5, 92, 0, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 5953, 1, 0, 0, 0, 5953, 5968, 3, 622, 311, 0, 5954, 5965, 5, 68, 0, 0, 5955, 5956, 7, 78, 0, 0, 5956, 5966, 7, 79, 0, 0, 5957, 5962, 5, 334, 0, 0, 5958, 5959, 5, 369, 0, 0, 5959, 5963, 5, 201, 0, 0, 5960, 5961, 5, 414, 0, 0, 5961, 5963, 5, 201, 0, 0, 5962, 5958, 1, 0, 0, 0, 5962, 5960, 1, 0, 0, 0, 5962, 5963, 1, 0, 0, 0, 5963, 5966, 1, 0, 0, 0, 5964, 5966, 5, 201, 0, 0, 5965, 5955, 1, 0, 0, 0, 5965, 5957, 1, 0, 0, 0, 5965, 5964, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5969, 5, 263, 0, 0, 5968, 5954, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 5971, 1, 0, 0, 0, 5970, 5972, 5, 272, 0, 0, 5971, 5970, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 545, 1, 0, 0, 0, 5973, 5975, 3, 566, 283, 0, 5974, 5973, 1, 0, 0, 0, 5974, 5975, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 5, 369, 0, 0, 5977, 5978, 3, 624, 312, 0, 5978, 5979, 5, 333, 0, 0, 5979, 5981, 3, 548, 274, 0, 5980, 5982, 3, 604, 302, 0, 5981, 5980, 1, 0, 0, 0, 5981, 5982, 1, 0, 0, 0, 5982, 5984, 1, 0, 0, 0, 5983, 5985, 3, 634, 317, 0, 5984, 5983, 1, 0, 0, 0, 5984, 5985, 1, 0, 0, 0, 5985, 5987, 1, 0, 0, 0, 5986, 5988, 3, 540, 270, 0, 5987, 5986, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 547, 1, 0, 0, 0, 5989, 5994, 3, 550, 275, 0, 5990, 5991, 5, 6, 0, 0, 5991, 5993, 3, 550, 275, 0, 5992, 5990, 1, 0, 0, 0, 5993, 5996, 1, 0, 0, 0, 5994, 5992, 1, 0, 0, 0, 5994, 5995, 1, 0, 0, 0, 5995, 549, 1, 0, 0, 0, 5996, 5994, 1, 0, 0, 0, 5997, 5998, 3, 538, 269, 0, 5998, 5999, 5, 10, 0, 0, 5999, 6000, 3, 668, 334, 0, 6000, 6016, 1, 0, 0, 0, 6001, 6002, 5, 2, 0, 0, 6002, 6003, 3, 536, 268, 0, 6003, 6004, 5, 3, 0, 0, 6004, 6013, 5, 10, 0, 0, 6005, 6007, 5, 414, 0, 0, 6006, 6005, 1, 0, 0, 0, 6006, 6007, 1, 0, 0, 0, 6007, 6008, 1, 0, 0, 0, 6008, 6014, 3, 668, 334, 0, 6009, 6010, 5, 2, 0, 0, 6010, 6011, 3, 560, 280, 0, 6011, 6012, 5, 3, 0, 0, 6012, 6014, 1, 0, 0, 0, 6013, 6006, 1, 0, 0, 0, 6013, 6009, 1, 0, 0, 0, 6014, 6016, 1, 0, 0, 0, 6015, 5997, 1, 0, 0, 0, 6015, 6001, 1, 0, 0, 0, 6016, 551, 1, 0, 0, 0, 6017, 6018, 5, 178, 0, 0, 6018, 6027, 3, 812, 406, 0, 6019, 6021, 5, 269, 0, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6022, 1, 0, 0, 0, 6022, 6026, 5, 324, 0, 0, 6023, 6026, 5, 107, 0, 0, 6024, 6026, 5, 240, 0, 0, 6025, 6020, 1, 0, 0, 0, 6025, 6023, 1, 0, 0, 0, 6025, 6024, 1, 0, 0, 0, 6026, 6029, 1, 0, 0, 0, 6027, 6025, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6030, 1, 0, 0, 0, 6029, 6027, 1, 0, 0, 0, 6030, 6033, 5, 172, 0, 0, 6031, 6032, 7, 27, 0, 0, 6032, 6034, 5, 217, 0, 0, 6033, 6031, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6035, 1, 0, 0, 0, 6035, 6036, 5, 62, 0, 0, 6036, 6037, 3, 554, 277, 0, 6037, 553, 1, 0, 0, 0, 6038, 6041, 3, 558, 279, 0, 6039, 6041, 3, 556, 278, 0, 6040, 6038, 1, 0, 0, 0, 6040, 6039, 1, 0, 0, 0, 6041, 555, 1, 0, 0, 0, 6042, 6045, 5, 2, 0, 0, 6043, 6046, 3, 558, 279, 0, 6044, 6046, 3, 556, 278, 0, 6045, 6043, 1, 0, 0, 0, 6045, 6044, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6048, 5, 3, 0, 0, 6048, 557, 1, 0, 0, 0, 6049, 6051, 3, 566, 283, 0, 6050, 6049, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6054, 3, 560, 280, 0, 6053, 6055, 3, 580, 290, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6064, 1, 0, 0, 0, 6056, 6058, 3, 600, 300, 0, 6057, 6059, 3, 584, 292, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6065, 1, 0, 0, 0, 6060, 6062, 3, 584, 292, 0, 6061, 6063, 3, 600, 300, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6065, 1, 0, 0, 0, 6064, 6056, 1, 0, 0, 0, 6064, 6060, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 559, 1, 0, 0, 0, 6066, 6069, 3, 562, 281, 0, 6067, 6069, 3, 556, 278, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6067, 1, 0, 0, 0, 6069, 561, 1, 0, 0, 0, 6070, 6080, 5, 88, 0, 0, 6071, 6073, 5, 30, 0, 0, 6072, 6071, 1, 0, 0, 0, 6072, 6073, 1, 0, 0, 0, 6073, 6075, 1, 0, 0, 0, 6074, 6076, 3, 574, 287, 0, 6075, 6074, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6081, 1, 0, 0, 0, 6077, 6079, 3, 578, 289, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6081, 1, 0, 0, 0, 6080, 6072, 1, 0, 0, 0, 6080, 6078, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 6093, 3, 924, 462, 0, 6083, 6093, 3, 602, 301, 0, 6084, 6085, 5, 92, 0, 0, 6085, 6093, 3, 618, 309, 0, 6086, 6087, 3, 556, 278, 0, 6087, 6090, 3, 564, 282, 0, 6088, 6091, 3, 562, 281, 0, 6089, 6091, 3, 556, 278, 0, 6090, 6088, 1, 0, 0, 0, 6090, 6089, 1, 0, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6070, 1, 0, 0, 0, 6092, 6083, 1, 0, 0, 0, 6092, 6084, 1, 0, 0, 0, 6092, 6086, 1, 0, 0, 0, 6093, 6101, 1, 0, 0, 0, 6094, 6097, 3, 564, 282, 0, 6095, 6098, 3, 562, 281, 0, 6096, 6098, 3, 556, 278, 0, 6097, 6095, 1, 0, 0, 0, 6097, 6096, 1, 0, 0, 0, 6098, 6100, 1, 0, 0, 0, 6099, 6094, 1, 0, 0, 0, 6100, 6103, 1, 0, 0, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 563, 1, 0, 0, 0, 6103, 6101, 1, 0, 0, 0, 6104, 6106, 7, 80, 0, 0, 6105, 6107, 7, 81, 0, 0, 6106, 6105, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 565, 1, 0, 0, 0, 6108, 6110, 5, 105, 0, 0, 6109, 6111, 5, 303, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6112, 1, 0, 0, 0, 6112, 6117, 3, 568, 284, 0, 6113, 6114, 5, 6, 0, 0, 6114, 6116, 3, 568, 284, 0, 6115, 6113, 1, 0, 0, 0, 6116, 6119, 1, 0, 0, 0, 6117, 6115, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 567, 1, 0, 0, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6122, 3, 812, 406, 0, 6121, 6123, 3, 138, 69, 0, 6122, 6121, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6129, 5, 36, 0, 0, 6125, 6127, 5, 77, 0, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6130, 5, 259, 0, 0, 6129, 6126, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 5, 2, 0, 0, 6132, 6133, 3, 524, 262, 0, 6133, 6135, 5, 3, 0, 0, 6134, 6136, 3, 570, 285, 0, 6135, 6134, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6138, 1, 0, 0, 0, 6137, 6139, 3, 572, 286, 0, 6138, 6137, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 569, 1, 0, 0, 0, 6140, 6141, 5, 325, 0, 0, 6141, 6142, 7, 82, 0, 0, 6142, 6143, 5, 207, 0, 0, 6143, 6144, 5, 147, 0, 0, 6144, 6145, 3, 142, 71, 0, 6145, 6146, 5, 333, 0, 0, 6146, 6147, 3, 794, 397, 0, 6147, 571, 1, 0, 0, 0, 6148, 6149, 5, 173, 0, 0, 6149, 6150, 3, 142, 71, 0, 6150, 6151, 5, 333, 0, 0, 6151, 6157, 3, 794, 397, 0, 6152, 6153, 5, 94, 0, 0, 6153, 6154, 3, 812, 406, 0, 6154, 6155, 5, 53, 0, 0, 6155, 6156, 3, 812, 406, 0, 6156, 6158, 1, 0, 0, 0, 6157, 6152, 1, 0, 0, 0, 6157, 6158, 1, 0, 0, 0, 6158, 6159, 1, 0, 0, 0, 6159, 6160, 5, 100, 0, 0, 6160, 6161, 3, 794, 397, 0, 6161, 573, 1, 0, 0, 0, 6162, 6168, 5, 71, 0, 0, 6163, 6165, 5, 346, 0, 0, 6164, 6163, 1, 0, 0, 0, 6164, 6165, 1, 0, 0, 0, 6165, 6166, 1, 0, 0, 0, 6166, 6169, 3, 576, 288, 0, 6167, 6169, 3, 724, 362, 0, 6168, 6164, 1, 0, 0, 0, 6168, 6167, 1, 0, 0, 0, 6169, 575, 1, 0, 0, 0, 6170, 6172, 7, 21, 0, 0, 6171, 6170, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 6175, 7, 22, 0, 0, 6174, 6176, 5, 92, 0, 0, 6175, 6174, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6186, 3, 766, 383, 0, 6178, 6180, 5, 367, 0, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6182, 1, 0, 0, 0, 6181, 6183, 5, 92, 0, 0, 6182, 6181, 1, 0, 0, 0, 6182, 6183, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 3, 766, 383, 0, 6185, 6171, 1, 0, 0, 0, 6185, 6179, 1, 0, 0, 0, 6186, 577, 1, 0, 0, 0, 6187, 6190, 5, 56, 0, 0, 6188, 6189, 5, 80, 0, 0, 6189, 6191, 3, 528, 264, 0, 6190, 6188, 1, 0, 0, 0, 6190, 6191, 1, 0, 0, 0, 6191, 579, 1, 0, 0, 0, 6192, 6193, 5, 83, 0, 0, 6193, 6194, 5, 147, 0, 0, 6194, 6199, 3, 582, 291, 0, 6195, 6196, 5, 6, 0, 0, 6196, 6198, 3, 582, 291, 0, 6197, 6195, 1, 0, 0, 0, 6198, 6201, 1, 0, 0, 0, 6199, 6197, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 581, 1, 0, 0, 0, 6201, 6199, 1, 0, 0, 0, 6202, 6206, 3, 728, 364, 0, 6203, 6204, 5, 100, 0, 0, 6204, 6207, 3, 720, 360, 0, 6205, 6207, 7, 56, 0, 0, 6206, 6203, 1, 0, 0, 0, 6206, 6205, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 6210, 1, 0, 0, 0, 6208, 6209, 5, 273, 0, 0, 6209, 6211, 7, 57, 0, 0, 6210, 6208, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 583, 1, 0, 0, 0, 6212, 6214, 3, 590, 295, 0, 6213, 6215, 3, 588, 294, 0, 6214, 6213, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 6224, 1, 0, 0, 0, 6216, 6219, 3, 586, 293, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6216, 1, 0, 0, 0, 6218, 6217, 1, 0, 0, 0, 6219, 6221, 1, 0, 0, 0, 6220, 6222, 3, 590, 295, 0, 6221, 6220, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6224, 1, 0, 0, 0, 6223, 6212, 1, 0, 0, 0, 6223, 6218, 1, 0, 0, 0, 6224, 585, 1, 0, 0, 0, 6225, 6228, 5, 74, 0, 0, 6226, 6229, 3, 668, 334, 0, 6227, 6229, 5, 30, 0, 0, 6228, 6226, 1, 0, 0, 0, 6228, 6227, 1, 0, 0, 0, 6229, 6232, 1, 0, 0, 0, 6230, 6231, 5, 6, 0, 0, 6231, 6233, 3, 668, 334, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6233, 1, 0, 0, 0, 6233, 587, 1, 0, 0, 0, 6234, 6235, 5, 61, 0, 0, 6235, 6237, 7, 83, 0, 0, 6236, 6238, 3, 592, 296, 0, 6237, 6236, 1, 0, 0, 0, 6237, 6238, 1, 0, 0, 0, 6238, 6239, 1, 0, 0, 0, 6239, 6243, 7, 84, 0, 0, 6240, 6244, 5, 81, 0, 0, 6241, 6242, 5, 105, 0, 0, 6242, 6244, 5, 467, 0, 0, 6243, 6240, 1, 0, 0, 0, 6243, 6241, 1, 0, 0, 0, 6244, 589, 1, 0, 0, 0, 6245, 6250, 5, 79, 0, 0, 6246, 6247, 3, 592, 296, 0, 6247, 6248, 7, 84, 0, 0, 6248, 6251, 1, 0, 0, 0, 6249, 6251, 3, 668, 334, 0, 6250, 6246, 1, 0, 0, 0, 6250, 6249, 1, 0, 0, 0, 6251, 591, 1, 0, 0, 0, 6252, 6253, 7, 30, 0, 0, 6253, 6256, 7, 85, 0, 0, 6254, 6256, 3, 676, 338, 0, 6255, 6252, 1, 0, 0, 0, 6255, 6254, 1, 0, 0, 0, 6256, 593, 1, 0, 0, 0, 6257, 6258, 5, 66, 0, 0, 6258, 6260, 5, 147, 0, 0, 6259, 6261, 7, 81, 0, 0, 6260, 6259, 1, 0, 0, 0, 6260, 6261, 1, 0, 0, 0, 6261, 6262, 1, 0, 0, 0, 6262, 6263, 3, 596, 298, 0, 6263, 595, 1, 0, 0, 0, 6264, 6269, 3, 598, 299, 0, 6265, 6266, 5, 6, 0, 0, 6266, 6268, 3, 598, 299, 0, 6267, 6265, 1, 0, 0, 0, 6268, 6271, 1, 0, 0, 0, 6269, 6267, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 597, 1, 0, 0, 0, 6271, 6269, 1, 0, 0, 0, 6272, 6296, 3, 728, 364, 0, 6273, 6274, 5, 2, 0, 0, 6274, 6296, 5, 3, 0, 0, 6275, 6277, 7, 86, 0, 0, 6276, 6275, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6279, 5, 2, 0, 0, 6279, 6284, 3, 728, 364, 0, 6280, 6281, 5, 6, 0, 0, 6281, 6283, 3, 728, 364, 0, 6282, 6280, 1, 0, 0, 0, 6283, 6286, 1, 0, 0, 0, 6284, 6282, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6284, 1, 0, 0, 0, 6287, 6288, 5, 3, 0, 0, 6288, 6296, 1, 0, 0, 0, 6289, 6290, 5, 470, 0, 0, 6290, 6291, 5, 471, 0, 0, 6291, 6292, 5, 2, 0, 0, 6292, 6293, 3, 596, 298, 0, 6293, 6294, 5, 3, 0, 0, 6294, 6296, 1, 0, 0, 0, 6295, 6272, 1, 0, 0, 0, 6295, 6273, 1, 0, 0, 0, 6295, 6276, 1, 0, 0, 0, 6295, 6289, 1, 0, 0, 0, 6296, 599, 1, 0, 0, 0, 6297, 6307, 5, 62, 0, 0, 6298, 6299, 5, 269, 0, 0, 6299, 6301, 5, 245, 0, 0, 6300, 6298, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6308, 5, 369, 0, 0, 6303, 6305, 5, 245, 0, 0, 6304, 6303, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6308, 5, 334, 0, 0, 6307, 6300, 1, 0, 0, 0, 6307, 6304, 1, 0, 0, 0, 6308, 6311, 1, 0, 0, 0, 6309, 6310, 5, 275, 0, 0, 6310, 6312, 3, 754, 377, 0, 6311, 6309, 1, 0, 0, 0, 6311, 6312, 1, 0, 0, 0, 6312, 6316, 1, 0, 0, 0, 6313, 6317, 5, 272, 0, 0, 6314, 6315, 5, 465, 0, 0, 6315, 6317, 5, 466, 0, 0, 6316, 6313, 1, 0, 0, 0, 6316, 6314, 1, 0, 0, 0, 6316, 6317, 1, 0, 0, 0, 6317, 6319, 1, 0, 0, 0, 6318, 6297, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6326, 1, 0, 0, 0, 6322, 6323, 5, 62, 0, 0, 6323, 6324, 5, 300, 0, 0, 6324, 6326, 5, 81, 0, 0, 6325, 6318, 1, 0, 0, 0, 6325, 6322, 1, 0, 0, 0, 6326, 601, 1, 0, 0, 0, 6327, 6328, 5, 422, 0, 0, 6328, 6333, 3, 528, 264, 0, 6329, 6330, 5, 6, 0, 0, 6330, 6332, 3, 528, 264, 0, 6331, 6329, 1, 0, 0, 0, 6332, 6335, 1, 0, 0, 0, 6333, 6331, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 603, 1, 0, 0, 0, 6335, 6333, 1, 0, 0, 0, 6336, 6337, 5, 64, 0, 0, 6337, 6338, 3, 606, 303, 0, 6338, 605, 1, 0, 0, 0, 6339, 6344, 3, 608, 304, 0, 6340, 6341, 5, 6, 0, 0, 6341, 6343, 3, 608, 304, 0, 6342, 6340, 1, 0, 0, 0, 6343, 6346, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6344, 6345, 1, 0, 0, 0, 6345, 607, 1, 0, 0, 0, 6346, 6344, 1, 0, 0, 0, 6347, 6362, 3, 618, 309, 0, 6348, 6350, 5, 81, 0, 0, 6349, 6348, 1, 0, 0, 0, 6349, 6350, 1, 0, 0, 0, 6350, 6351, 1, 0, 0, 0, 6351, 6353, 3, 772, 386, 0, 6352, 6354, 5, 9, 0, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6356, 1, 0, 0, 0, 6355, 6357, 3, 142, 71, 0, 6356, 6355, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 6359, 1, 0, 0, 0, 6358, 6360, 3, 632, 316, 0, 6359, 6358, 1, 0, 0, 0, 6359, 6360, 1, 0, 0, 0, 6360, 6362, 1, 0, 0, 0, 6361, 6347, 1, 0, 0, 0, 6361, 6349, 1, 0, 0, 0, 6362, 6364, 1, 0, 0, 0, 6363, 6365, 3, 610, 305, 0, 6364, 6363, 1, 0, 0, 0, 6364, 6365, 1, 0, 0, 0, 6365, 6367, 1, 0, 0, 0, 6366, 6368, 3, 626, 313, 0, 6367, 6366, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6411, 1, 0, 0, 0, 6369, 6371, 5, 72, 0, 0, 6370, 6369, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6384, 1, 0, 0, 0, 6372, 6374, 3, 640, 320, 0, 6373, 6375, 3, 610, 305, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6385, 1, 0, 0, 0, 6376, 6378, 3, 628, 314, 0, 6377, 6379, 3, 612, 306, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6385, 1, 0, 0, 0, 6380, 6382, 3, 556, 278, 0, 6381, 6383, 3, 610, 305, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6385, 1, 0, 0, 0, 6384, 6372, 1, 0, 0, 0, 6384, 6376, 1, 0, 0, 0, 6384, 6380, 1, 0, 0, 0, 6385, 6411, 1, 0, 0, 0, 6386, 6387, 5, 2, 0, 0, 6387, 6404, 3, 608, 304, 0, 6388, 6389, 5, 110, 0, 0, 6389, 6390, 5, 118, 0, 0, 6390, 6405, 3, 608, 304, 0, 6391, 6393, 5, 121, 0, 0, 6392, 6394, 3, 614, 307, 0, 6393, 6392, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6396, 5, 118, 0, 0, 6396, 6405, 3, 608, 304, 0, 6397, 6399, 3, 614, 307, 0, 6398, 6397, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6401, 5, 118, 0, 0, 6401, 6402, 3, 608, 304, 0, 6402, 6403, 3, 616, 308, 0, 6403, 6405, 1, 0, 0, 0, 6404, 6388, 1, 0, 0, 0, 6404, 6391, 1, 0, 0, 0, 6404, 6398, 1, 0, 0, 0, 6404, 6405, 1, 0, 0, 0, 6405, 6406, 1, 0, 0, 0, 6406, 6408, 5, 3, 0, 0, 6407, 6409, 3, 610, 305, 0, 6408, 6407, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6411, 1, 0, 0, 0, 6410, 6361, 1, 0, 0, 0, 6410, 6370, 1, 0, 0, 0, 6410, 6386, 1, 0, 0, 0, 6411, 6430, 1, 0, 0, 0, 6412, 6413, 5, 110, 0, 0, 6413, 6414, 5, 118, 0, 0, 6414, 6429, 3, 608, 304, 0, 6415, 6417, 5, 121, 0, 0, 6416, 6418, 3, 614, 307, 0, 6417, 6416, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6420, 5, 118, 0, 0, 6420, 6429, 3, 608, 304, 0, 6421, 6423, 3, 614, 307, 0, 6422, 6421, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 5, 118, 0, 0, 6425, 6426, 3, 608, 304, 0, 6426, 6427, 3, 616, 308, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6412, 1, 0, 0, 0, 6428, 6415, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6429, 6432, 1, 0, 0, 0, 6430, 6428, 1, 0, 0, 0, 6430, 6431, 1, 0, 0, 0, 6431, 609, 1, 0, 0, 0, 6432, 6430, 1, 0, 0, 0, 6433, 6435, 5, 36, 0, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6436, 1, 0, 0, 0, 6436, 6441, 3, 812, 406, 0, 6437, 6438, 5, 2, 0, 0, 6438, 6439, 3, 778, 389, 0, 6439, 6440, 5, 3, 0, 0, 6440, 6442, 1, 0, 0, 0, 6441, 6437, 1, 0, 0, 0, 6441, 6442, 1, 0, 0, 0, 6442, 611, 1, 0, 0, 0, 6443, 6456, 3, 610, 305, 0, 6444, 6446, 5, 36, 0, 0, 6445, 6447, 3, 812, 406, 0, 6446, 6445, 1, 0, 0, 0, 6446, 6447, 1, 0, 0, 0, 6447, 6450, 1, 0, 0, 0, 6448, 6450, 3, 812, 406, 0, 6449, 6444, 1, 0, 0, 0, 6449, 6448, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6452, 5, 2, 0, 0, 6452, 6453, 3, 636, 318, 0, 6453, 6454, 5, 3, 0, 0, 6454, 6456, 1, 0, 0, 0, 6455, 6443, 1, 0, 0, 0, 6455, 6449, 1, 0, 0, 0, 6456, 613, 1, 0, 0, 0, 6457, 6459, 7, 87, 0, 0, 6458, 6460, 5, 123, 0, 0, 6459, 6458, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 615, 1, 0, 0, 0, 6461, 6462, 5, 100, 0, 0, 6462, 6466, 3, 138, 69, 0, 6463, 6464, 5, 80, 0, 0, 6464, 6466, 3, 668, 334, 0, 6465, 6461, 1, 0, 0, 0, 6465, 6463, 1, 0, 0, 0, 6466, 617, 1, 0, 0, 0, 6467, 6483, 3, 316, 158, 0, 6468, 6474, 5, 81, 0, 0, 6469, 6475, 3, 768, 384, 0, 6470, 6471, 5, 2, 0, 0, 6471, 6472, 3, 768, 384, 0, 6472, 6473, 5, 3, 0, 0, 6473, 6475, 1, 0, 0, 0, 6474, 6469, 1, 0, 0, 0, 6474, 6470, 1, 0, 0, 0, 6475, 6483, 1, 0, 0, 0, 6476, 6477, 5, 68, 0, 0, 6477, 6480, 5, 323, 0, 0, 6478, 6481, 3, 784, 392, 0, 6479, 6481, 5, 111, 0, 0, 6480, 6478, 1, 0, 0, 0, 6480, 6479, 1, 0, 0, 0, 6481, 6483, 1, 0, 0, 0, 6482, 6467, 1, 0, 0, 0, 6482, 6468, 1, 0, 0, 0, 6482, 6476, 1, 0, 0, 0, 6483, 619, 1, 0, 0, 0, 6484, 6485, 5, 92, 0, 0, 6485, 6487, 3, 316, 158, 0, 6486, 6488, 3, 138, 69, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6490, 1, 0, 0, 0, 6489, 6491, 3, 632, 316, 0, 6490, 6489, 1, 0, 0, 0, 6490, 6491, 1, 0, 0, 0, 6491, 6509, 1, 0, 0, 0, 6492, 6493, 5, 92, 0, 0, 6493, 6499, 5, 81, 0, 0, 6494, 6500, 3, 768, 384, 0, 6495, 6496, 5, 2, 0, 0, 6496, 6497, 3, 768, 384, 0, 6497, 6498, 5, 3, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6494, 1, 0, 0, 0, 6499, 6495, 1, 0, 0, 0, 6500, 6509, 1, 0, 0, 0, 6501, 6502, 5, 350, 0, 0, 6502, 6503, 5, 68, 0, 0, 6503, 6506, 5, 323, 0, 0, 6504, 6507, 3, 784, 392, 0, 6505, 6507, 5, 111, 0, 0, 6506, 6504, 1, 0, 0, 0, 6506, 6505, 1, 0, 0, 0, 6507, 6509, 1, 0, 0, 0, 6508, 6484, 1, 0, 0, 0, 6508, 6492, 1, 0, 0, 0, 6508, 6501, 1, 0, 0, 0, 6509, 621, 1, 0, 0, 0, 6510, 6515, 3, 618, 309, 0, 6511, 6512, 5, 6, 0, 0, 6512, 6514, 3, 618, 309, 0, 6513, 6511, 1, 0, 0, 0, 6514, 6517, 1, 0, 0, 0, 6515, 6513, 1, 0, 0, 0, 6515, 6516, 1, 0, 0, 0, 6516, 623, 1, 0, 0, 0, 6517, 6515, 1, 0, 0, 0, 6518, 6523, 3, 618, 309, 0, 6519, 6521, 5, 36, 0, 0, 6520, 6519, 1, 0, 0, 0, 6520, 6521, 1, 0, 0, 0, 6521, 6522, 1, 0, 0, 0, 6522, 6524, 3, 812, 406, 0, 6523, 6520, 1, 0, 0, 0, 6523, 6524, 1, 0, 0, 0, 6524, 625, 1, 0, 0, 0, 6525, 6526, 5, 472, 0, 0, 6526, 6527, 3, 800, 400, 0, 6527, 6533, 3, 528, 264, 0, 6528, 6529, 5, 310, 0, 0, 6529, 6530, 5, 2, 0, 0, 6530, 6531, 3, 668, 334, 0, 6531, 6532, 5, 3, 0, 0, 6532, 6534, 1, 0, 0, 0, 6533, 6528, 1, 0, 0, 0, 6533, 6534, 1, 0, 0, 0, 6534, 627, 1, 0, 0, 0, 6535, 6550, 3, 682, 341, 0, 6536, 6537, 5, 320, 0, 0, 6537, 6538, 5, 64, 0, 0, 6538, 6539, 5, 2, 0, 0, 6539, 6544, 3, 630, 315, 0, 6540, 6541, 5, 6, 0, 0, 6541, 6543, 3, 630, 315, 0, 6542, 6540, 1, 0, 0, 0, 6543, 6546, 1, 0, 0, 0, 6544, 6542, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 6547, 1, 0, 0, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6548, 5, 3, 0, 0, 6548, 6550, 1, 0, 0, 0, 6549, 6535, 1, 0, 0, 0, 6549, 6536, 1, 0, 0, 0, 6550, 6553, 1, 0, 0, 0, 6551, 6552, 5, 105, 0, 0, 6552, 6554, 5, 473, 0, 0, 6553, 6551, 1, 0, 0, 0, 6553, 6554, 1, 0, 0, 0, 6554, 629, 1, 0, 0, 0, 6555, 6561, 3, 682, 341, 0, 6556, 6557, 5, 36, 0, 0, 6557, 6558, 5, 2, 0, 0, 6558, 6559, 3, 636, 318, 0, 6559, 6560, 5, 3, 0, 0, 6560, 6562, 1, 0, 0, 0, 6561, 6556, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 631, 1, 0, 0, 0, 6563, 6564, 5, 103, 0, 0, 6564, 6565, 3, 728, 364, 0, 6565, 633, 1, 0, 0, 0, 6566, 6571, 5, 103, 0, 0, 6567, 6568, 5, 434, 0, 0, 6568, 6569, 5, 275, 0, 0, 6569, 6572, 3, 812, 406, 0, 6570, 6572, 3, 668, 334, 0, 6571, 6567, 1, 0, 0, 0, 6571, 6570, 1, 0, 0, 0, 6572, 635, 1, 0, 0, 0, 6573, 6578, 3, 638, 319, 0, 6574, 6575, 5, 6, 0, 0, 6575, 6577, 3, 638, 319, 0, 6576, 6574, 1, 0, 0, 0, 6577, 6580, 1, 0, 0, 0, 6578, 6576, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 637, 1, 0, 0, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6582, 3, 812, 406, 0, 6582, 6584, 3, 646, 323, 0, 6583, 6585, 3, 90, 45, 0, 6584, 6583, 1, 0, 0, 0, 6584, 6585, 1, 0, 0, 0, 6585, 639, 1, 0, 0, 0, 6586, 6587, 5, 474, 0, 0, 6587, 6601, 5, 2, 0, 0, 6588, 6589, 5, 476, 0, 0, 6589, 6590, 5, 2, 0, 0, 6590, 6595, 3, 644, 322, 0, 6591, 6592, 5, 6, 0, 0, 6592, 6594, 3, 644, 322, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6597, 1, 0, 0, 0, 6595, 6593, 1, 0, 0, 0, 6595, 6596, 1, 0, 0, 0, 6596, 6598, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6599, 5, 3, 0, 0, 6599, 6600, 5, 6, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6588, 1, 0, 0, 0, 6601, 6602, 1, 0, 0, 0, 6602, 6603, 1, 0, 0, 0, 6603, 6604, 3, 676, 338, 0, 6604, 6605, 3, 692, 346, 0, 6605, 6606, 5, 475, 0, 0, 6606, 6611, 3, 642, 321, 0, 6607, 6608, 5, 6, 0, 0, 6608, 6610, 3, 642, 321, 0, 6609, 6607, 1, 0, 0, 0, 6610, 6613, 1, 0, 0, 0, 6611, 6609, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6614, 1, 0, 0, 0, 6613, 6611, 1, 0, 0, 0, 6614, 6615, 5, 3, 0, 0, 6615, 641, 1, 0, 0, 0, 6616, 6635, 3, 812, 406, 0, 6617, 6631, 3, 646, 323, 0, 6618, 6621, 5, 53, 0, 0, 6619, 6621, 3, 820, 410, 0, 6620, 6618, 1, 0, 0, 0, 6620, 6619, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6628, 3, 668, 334, 0, 6623, 6625, 5, 77, 0, 0, 6624, 6623, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6628, 5, 78, 0, 0, 6627, 6620, 1, 0, 0, 0, 6627, 6624, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6627, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 1, 0, 0, 0, 6631, 6627, 1, 0, 0, 0, 6631, 6632, 1, 0, 0, 0, 6632, 6636, 1, 0, 0, 0, 6633, 6634, 5, 62, 0, 0, 6634, 6636, 5, 473, 0, 0, 6635, 6617, 1, 0, 0, 0, 6635, 6633, 1, 0, 0, 0, 6636, 643, 1, 0, 0, 0, 6637, 6638, 3, 676, 338, 0, 6638, 6639, 5, 36, 0, 0, 6639, 6640, 3, 818, 409, 0, 6640, 6644, 1, 0, 0, 0, 6641, 6642, 5, 53, 0, 0, 6642, 6644, 3, 676, 338, 0, 6643, 6637, 1, 0, 0, 0, 6643, 6641, 1, 0, 0, 0, 6644, 645, 1, 0, 0, 0, 6645, 6647, 5, 415, 0, 0, 6646, 6645, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6648, 1, 0, 0, 0, 6648, 6665, 3, 648, 324, 0, 6649, 6651, 5, 4, 0, 0, 6650, 6652, 5, 574, 0, 0, 6651, 6650, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6653, 1, 0, 0, 0, 6653, 6655, 5, 5, 0, 0, 6654, 6649, 1, 0, 0, 0, 6655, 6658, 1, 0, 0, 0, 6656, 6654, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6666, 1, 0, 0, 0, 6658, 6656, 1, 0, 0, 0, 6659, 6663, 5, 35, 0, 0, 6660, 6661, 5, 4, 0, 0, 6661, 6662, 5, 574, 0, 0, 6662, 6664, 5, 5, 0, 0, 6663, 6660, 1, 0, 0, 0, 6663, 6664, 1, 0, 0, 0, 6664, 6666, 1, 0, 0, 0, 6665, 6656, 1, 0, 0, 0, 6665, 6659, 1, 0, 0, 0, 6666, 6672, 1, 0, 0, 0, 6667, 6668, 3, 774, 387, 0, 6668, 6669, 5, 27, 0, 0, 6669, 6670, 7, 88, 0, 0, 6670, 6672, 1, 0, 0, 0, 6671, 6646, 1, 0, 0, 0, 6671, 6667, 1, 0, 0, 0, 6672, 647, 1, 0, 0, 0, 6673, 6675, 3, 814, 407, 0, 6674, 6676, 3, 312, 156, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6678, 1, 0, 0, 0, 6677, 6679, 3, 528, 264, 0, 6678, 6677, 1, 0, 0, 0, 6678, 6679, 1, 0, 0, 0, 6679, 6689, 1, 0, 0, 0, 6680, 6689, 3, 650, 325, 0, 6681, 6686, 5, 403, 0, 0, 6682, 6684, 3, 662, 331, 0, 6683, 6682, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 6687, 1, 0, 0, 0, 6685, 6687, 3, 654, 327, 0, 6686, 6683, 1, 0, 0, 0, 6686, 6685, 1, 0, 0, 0, 6687, 6689, 1, 0, 0, 0, 6688, 6673, 1, 0, 0, 0, 6688, 6680, 1, 0, 0, 0, 6688, 6681, 1, 0, 0, 0, 6689, 649, 1, 0, 0, 0, 6690, 6695, 3, 652, 326, 0, 6691, 6695, 3, 656, 328, 0, 6692, 6695, 3, 658, 329, 0, 6693, 6695, 3, 660, 330, 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, 651, 1, 0, 0, 0, 6696, 6713, 5, 401, 0, 0, 6697, 6713, 5, 402, 0, 0, 6698, 6713, 5, 416, 0, 0, 6699, 6713, 5, 388, 0, 0, 6700, 6713, 5, 413, 0, 0, 6701, 6703, 5, 398, 0, 0, 6702, 6704, 3, 654, 327, 0, 6703, 6702, 1, 0, 0, 0, 6703, 6704, 1, 0, 0, 0, 6704, 6713, 1, 0, 0, 0, 6705, 6706, 5, 190, 0, 0, 6706, 6713, 5, 412, 0, 0, 6707, 6709, 7, 89, 0, 0, 6708, 6710, 3, 528, 264, 0, 6709, 6708, 1, 0, 0, 0, 6709, 6710, 1, 0, 0, 0, 6710, 6713, 1, 0, 0, 0, 6711, 6713, 5, 390, 0, 0, 6712, 6696, 1, 0, 0, 0, 6712, 6697, 1, 0, 0, 0, 6712, 6698, 1, 0, 0, 0, 6712, 6699, 1, 0, 0, 0, 6712, 6700, 1, 0, 0, 0, 6712, 6701, 1, 0, 0, 0, 6712, 6705, 1, 0, 0, 0, 6712, 6707, 1, 0, 0, 0, 6712, 6711, 1, 0, 0, 0, 6713, 653, 1, 0, 0, 0, 6714, 6715, 5, 2, 0, 0, 6715, 6716, 5, 574, 0, 0, 6716, 6717, 5, 3, 0, 0, 6717, 655, 1, 0, 0, 0, 6718, 6720, 5, 389, 0, 0, 6719, 6721, 5, 374, 0, 0, 6720, 6719, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6723, 1, 0, 0, 0, 6722, 6724, 3, 528, 264, 0, 6723, 6722, 1, 0, 0, 0, 6723, 6724, 1, 0, 0, 0, 6724, 657, 1, 0, 0, 0, 6725, 6727, 7, 90, 0, 0, 6726, 6728, 5, 374, 0, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 6736, 1, 0, 0, 0, 6729, 6736, 5, 423, 0, 0, 6730, 6731, 5, 405, 0, 0, 6731, 6733, 7, 91, 0, 0, 6732, 6734, 5, 374, 0, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6736, 1, 0, 0, 0, 6735, 6725, 1, 0, 0, 0, 6735, 6729, 1, 0, 0, 0, 6735, 6730, 1, 0, 0, 0, 6736, 6738, 1, 0, 0, 0, 6737, 6739, 3, 654, 327, 0, 6738, 6737, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 659, 1, 0, 0, 0, 6740, 6742, 7, 92, 0, 0, 6741, 6743, 3, 654, 327, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 6747, 1, 0, 0, 0, 6744, 6745, 7, 27, 0, 0, 6745, 6746, 5, 418, 0, 0, 6746, 6748, 5, 386, 0, 0, 6747, 6744, 1, 0, 0, 0, 6747, 6748, 1, 0, 0, 0, 6748, 661, 1, 0, 0, 0, 6749, 6779, 5, 264, 0, 0, 6750, 6779, 3, 664, 332, 0, 6751, 6754, 5, 384, 0, 0, 6752, 6753, 5, 94, 0, 0, 6753, 6755, 5, 264, 0, 0, 6754, 6752, 1, 0, 0, 0, 6754, 6755, 1, 0, 0, 0, 6755, 6779, 1, 0, 0, 0, 6756, 6763, 5, 176, 0, 0, 6757, 6761, 5, 94, 0, 0, 6758, 6762, 5, 218, 0, 0, 6759, 6762, 5, 261, 0, 0, 6760, 6762, 3, 664, 332, 0, 6761, 6758, 1, 0, 0, 0, 6761, 6759, 1, 0, 0, 0, 6761, 6760, 1, 0, 0, 0, 6762, 6764, 1, 0, 0, 0, 6763, 6757, 1, 0, 0, 0, 6763, 6764, 1, 0, 0, 0, 6764, 6779, 1, 0, 0, 0, 6765, 6771, 5, 218, 0, 0, 6766, 6769, 5, 94, 0, 0, 6767, 6770, 5, 261, 0, 0, 6768, 6770, 3, 664, 332, 0, 6769, 6767, 1, 0, 0, 0, 6769, 6768, 1, 0, 0, 0, 6770, 6772, 1, 0, 0, 0, 6771, 6766, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 6779, 1, 0, 0, 0, 6773, 6776, 5, 261, 0, 0, 6774, 6775, 5, 94, 0, 0, 6775, 6777, 3, 664, 332, 0, 6776, 6774, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6779, 1, 0, 0, 0, 6778, 6749, 1, 0, 0, 0, 6778, 6750, 1, 0, 0, 0, 6778, 6751, 1, 0, 0, 0, 6778, 6756, 1, 0, 0, 0, 6778, 6765, 1, 0, 0, 0, 6778, 6773, 1, 0, 0, 0, 6779, 663, 1, 0, 0, 0, 6780, 6782, 5, 326, 0, 0, 6781, 6783, 3, 654, 327, 0, 6782, 6781, 1, 0, 0, 0, 6782, 6783, 1, 0, 0, 0, 6783, 665, 1, 0, 0, 0, 6784, 6785, 7, 93, 0, 0, 6785, 667, 1, 0, 0, 0, 6786, 6787, 3, 670, 335, 0, 6787, 669, 1, 0, 0, 0, 6788, 6789, 6, 335, -1, 0, 6789, 6791, 3, 674, 337, 0, 6790, 6792, 3, 672, 336, 0, 6791, 6790, 1, 0, 0, 0, 6791, 6792, 1, 0, 0, 0, 6792, 6796, 1, 0, 0, 0, 6793, 6794, 5, 77, 0, 0, 6794, 6796, 3, 670, 335, 3, 6795, 6788, 1, 0, 0, 0, 6795, 6793, 1, 0, 0, 0, 6796, 6805, 1, 0, 0, 0, 6797, 6798, 10, 2, 0, 0, 6798, 6799, 5, 33, 0, 0, 6799, 6804, 3, 670, 335, 3, 6800, 6801, 10, 1, 0, 0, 6801, 6802, 5, 82, 0, 0, 6802, 6804, 3, 670, 335, 2, 6803, 6797, 1, 0, 0, 0, 6803, 6800, 1, 0, 0, 0, 6804, 6807, 1, 0, 0, 0, 6805, 6803, 1, 0, 0, 0, 6805, 6806, 1, 0, 0, 0, 6806, 671, 1, 0, 0, 0, 6807, 6805, 1, 0, 0, 0, 6808, 6809, 3, 666, 333, 0, 6809, 6810, 3, 674, 337, 0, 6810, 6880, 1, 0, 0, 0, 6811, 6812, 3, 666, 333, 0, 6812, 6813, 3, 722, 361, 0, 6813, 6819, 3, 712, 356, 0, 6814, 6820, 3, 556, 278, 0, 6815, 6816, 5, 2, 0, 0, 6816, 6817, 3, 668, 334, 0, 6817, 6818, 5, 3, 0, 0, 6818, 6820, 1, 0, 0, 0, 6819, 6814, 1, 0, 0, 0, 6819, 6815, 1, 0, 0, 0, 6820, 6880, 1, 0, 0, 0, 6821, 6823, 5, 77, 0, 0, 6822, 6821, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 6824, 1, 0, 0, 0, 6824, 6825, 5, 387, 0, 0, 6825, 6826, 3, 674, 337, 0, 6826, 6827, 5, 33, 0, 0, 6827, 6828, 3, 674, 337, 0, 6828, 6880, 1, 0, 0, 0, 6829, 6831, 5, 77, 0, 0, 6830, 6829, 1, 0, 0, 0, 6830, 6831, 1, 0, 0, 0, 6831, 6832, 1, 0, 0, 0, 6832, 6833, 5, 68, 0, 0, 6833, 6834, 5, 2, 0, 0, 6834, 6839, 3, 668, 334, 0, 6835, 6836, 5, 6, 0, 0, 6836, 6838, 3, 668, 334, 0, 6837, 6835, 1, 0, 0, 0, 6838, 6841, 1, 0, 0, 0, 6839, 6837, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6842, 1, 0, 0, 0, 6841, 6839, 1, 0, 0, 0, 6842, 6843, 5, 3, 0, 0, 6843, 6880, 1, 0, 0, 0, 6844, 6846, 5, 77, 0, 0, 6845, 6844, 1, 0, 0, 0, 6845, 6846, 1, 0, 0, 0, 6846, 6847, 1, 0, 0, 0, 6847, 6848, 5, 68, 0, 0, 6848, 6880, 3, 556, 278, 0, 6849, 6851, 5, 77, 0, 0, 6850, 6849, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6860, 1, 0, 0, 0, 6852, 6861, 5, 120, 0, 0, 6853, 6861, 5, 114, 0, 0, 6854, 6855, 5, 127, 0, 0, 6855, 6861, 5, 94, 0, 0, 6856, 6858, 5, 387, 0, 0, 6857, 6859, 5, 91, 0, 0, 6858, 6857, 1, 0, 0, 0, 6858, 6859, 1, 0, 0, 0, 6859, 6861, 1, 0, 0, 0, 6860, 6852, 1, 0, 0, 0, 6860, 6853, 1, 0, 0, 0, 6860, 6854, 1, 0, 0, 0, 6860, 6856, 1, 0, 0, 0, 6861, 6862, 1, 0, 0, 0, 6862, 6865, 3, 674, 337, 0, 6863, 6864, 5, 197, 0, 0, 6864, 6866, 3, 674, 337, 0, 6865, 6863, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6880, 1, 0, 0, 0, 6867, 6869, 5, 116, 0, 0, 6868, 6870, 5, 77, 0, 0, 6869, 6868, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 6880, 5, 78, 0, 0, 6872, 6874, 5, 116, 0, 0, 6873, 6875, 5, 77, 0, 0, 6874, 6873, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6876, 1, 0, 0, 0, 6876, 6877, 5, 56, 0, 0, 6877, 6878, 5, 64, 0, 0, 6878, 6880, 3, 674, 337, 0, 6879, 6808, 1, 0, 0, 0, 6879, 6811, 1, 0, 0, 0, 6879, 6822, 1, 0, 0, 0, 6879, 6830, 1, 0, 0, 0, 6879, 6845, 1, 0, 0, 0, 6879, 6850, 1, 0, 0, 0, 6879, 6867, 1, 0, 0, 0, 6879, 6872, 1, 0, 0, 0, 6880, 673, 1, 0, 0, 0, 6881, 6882, 6, 337, -1, 0, 6882, 6886, 3, 676, 338, 0, 6883, 6884, 7, 30, 0, 0, 6884, 6886, 3, 674, 337, 4, 6885, 6881, 1, 0, 0, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6903, 1, 0, 0, 0, 6887, 6888, 10, 3, 0, 0, 6888, 6889, 7, 94, 0, 0, 6889, 6902, 3, 674, 337, 4, 6890, 6891, 10, 2, 0, 0, 6891, 6892, 7, 30, 0, 0, 6892, 6902, 3, 674, 337, 3, 6893, 6894, 10, 1, 0, 0, 6894, 6895, 5, 15, 0, 0, 6895, 6902, 3, 674, 337, 2, 6896, 6897, 10, 5, 0, 0, 6897, 6898, 5, 142, 0, 0, 6898, 6899, 5, 418, 0, 0, 6899, 6900, 5, 386, 0, 0, 6900, 6902, 3, 668, 334, 0, 6901, 6887, 1, 0, 0, 0, 6901, 6890, 1, 0, 0, 0, 6901, 6893, 1, 0, 0, 0, 6901, 6896, 1, 0, 0, 0, 6902, 6905, 1, 0, 0, 0, 6903, 6901, 1, 0, 0, 0, 6903, 6904, 1, 0, 0, 0, 6904, 675, 1, 0, 0, 0, 6905, 6903, 1, 0, 0, 0, 6906, 6907, 6, 338, -1, 0, 6907, 6908, 7, 95, 0, 0, 6908, 6995, 3, 556, 278, 0, 6909, 6912, 5, 35, 0, 0, 6910, 6913, 3, 556, 278, 0, 6911, 6913, 3, 734, 367, 0, 6912, 6910, 1, 0, 0, 0, 6912, 6911, 1, 0, 0, 0, 6913, 6995, 1, 0, 0, 0, 6914, 6915, 5, 28, 0, 0, 6915, 6995, 3, 748, 374, 0, 6916, 6917, 5, 470, 0, 0, 6917, 6995, 3, 528, 264, 0, 6918, 6995, 5, 574, 0, 0, 6919, 6995, 5, 576, 0, 0, 6920, 6995, 5, 566, 0, 0, 6921, 6995, 5, 570, 0, 0, 6922, 6932, 3, 800, 400, 0, 6923, 6933, 3, 802, 401, 0, 6924, 6925, 5, 2, 0, 0, 6925, 6927, 3, 730, 365, 0, 6926, 6928, 3, 580, 290, 0, 6927, 6926, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 6930, 5, 3, 0, 0, 6930, 6931, 3, 802, 401, 0, 6931, 6933, 1, 0, 0, 0, 6932, 6923, 1, 0, 0, 0, 6932, 6924, 1, 0, 0, 0, 6933, 6995, 1, 0, 0, 0, 6934, 6936, 3, 650, 325, 0, 6935, 6934, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 6937, 1, 0, 0, 0, 6937, 6995, 3, 802, 401, 0, 6938, 6946, 5, 403, 0, 0, 6939, 6941, 3, 802, 401, 0, 6940, 6942, 3, 662, 331, 0, 6941, 6940, 1, 0, 0, 0, 6941, 6942, 1, 0, 0, 0, 6942, 6947, 1, 0, 0, 0, 6943, 6944, 3, 654, 327, 0, 6944, 6945, 3, 802, 401, 0, 6945, 6947, 1, 0, 0, 0, 6946, 6939, 1, 0, 0, 0, 6946, 6943, 1, 0, 0, 0, 6947, 6995, 1, 0, 0, 0, 6948, 6995, 5, 96, 0, 0, 6949, 6995, 5, 60, 0, 0, 6950, 6995, 5, 78, 0, 0, 6951, 6995, 5, 577, 0, 0, 6952, 6953, 5, 2, 0, 0, 6953, 6954, 3, 668, 334, 0, 6954, 6955, 5, 3, 0, 0, 6955, 6956, 3, 748, 374, 0, 6956, 6995, 1, 0, 0, 0, 6957, 6959, 5, 40, 0, 0, 6958, 6960, 3, 668, 334, 0, 6959, 6958, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6962, 1, 0, 0, 0, 6961, 6963, 3, 742, 371, 0, 6962, 6961, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6962, 1, 0, 0, 0, 6964, 6965, 1, 0, 0, 0, 6965, 6968, 1, 0, 0, 0, 6966, 6967, 5, 58, 0, 0, 6967, 6969, 3, 668, 334, 0, 6968, 6966, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6970, 1, 0, 0, 0, 6970, 6971, 5, 454, 0, 0, 6971, 6995, 1, 0, 0, 0, 6972, 6995, 3, 680, 340, 0, 6973, 6975, 3, 556, 278, 0, 6974, 6976, 3, 746, 373, 0, 6975, 6974, 1, 0, 0, 0, 6975, 6976, 1, 0, 0, 0, 6976, 6995, 1, 0, 0, 0, 6977, 6995, 3, 710, 355, 0, 6978, 6979, 5, 2, 0, 0, 6979, 6980, 3, 668, 334, 0, 6980, 6981, 5, 6, 0, 0, 6981, 6982, 3, 724, 362, 0, 6982, 6983, 5, 3, 0, 0, 6983, 6995, 1, 0, 0, 0, 6984, 6985, 3, 708, 354, 0, 6985, 6986, 5, 125, 0, 0, 6986, 6987, 3, 708, 354, 0, 6987, 6995, 1, 0, 0, 0, 6988, 6995, 3, 774, 387, 0, 6989, 6990, 7, 30, 0, 0, 6990, 6995, 3, 676, 338, 5, 6991, 6992, 3, 718, 359, 0, 6992, 6993, 3, 676, 338, 2, 6993, 6995, 1, 0, 0, 0, 6994, 6906, 1, 0, 0, 0, 6994, 6909, 1, 0, 0, 0, 6994, 6914, 1, 0, 0, 0, 6994, 6916, 1, 0, 0, 0, 6994, 6918, 1, 0, 0, 0, 6994, 6919, 1, 0, 0, 0, 6994, 6920, 1, 0, 0, 0, 6994, 6921, 1, 0, 0, 0, 6994, 6922, 1, 0, 0, 0, 6994, 6935, 1, 0, 0, 0, 6994, 6938, 1, 0, 0, 0, 6994, 6948, 1, 0, 0, 0, 6994, 6949, 1, 0, 0, 0, 6994, 6950, 1, 0, 0, 0, 6994, 6951, 1, 0, 0, 0, 6994, 6952, 1, 0, 0, 0, 6994, 6957, 1, 0, 0, 0, 6994, 6972, 1, 0, 0, 0, 6994, 6973, 1, 0, 0, 0, 6994, 6977, 1, 0, 0, 0, 6994, 6978, 1, 0, 0, 0, 6994, 6984, 1, 0, 0, 0, 6994, 6988, 1, 0, 0, 0, 6994, 6989, 1, 0, 0, 0, 6994, 6991, 1, 0, 0, 0, 6995, 7023, 1, 0, 0, 0, 6996, 6997, 10, 3, 0, 0, 6997, 6998, 3, 716, 358, 0, 6998, 6999, 3, 676, 338, 4, 6999, 7022, 1, 0, 0, 0, 7000, 7001, 10, 6, 0, 0, 7001, 7002, 5, 26, 0, 0, 7002, 7022, 3, 646, 323, 0, 7003, 7004, 10, 4, 0, 0, 7004, 7006, 3, 718, 359, 0, 7005, 7007, 3, 676, 338, 0, 7006, 7005, 1, 0, 0, 0, 7006, 7007, 1, 0, 0, 0, 7007, 7022, 1, 0, 0, 0, 7008, 7009, 10, 1, 0, 0, 7009, 7011, 5, 116, 0, 0, 7010, 7012, 5, 77, 0, 0, 7011, 7010, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7019, 1, 0, 0, 0, 7013, 7014, 5, 56, 0, 0, 7014, 7015, 5, 64, 0, 0, 7015, 7020, 3, 676, 338, 0, 7016, 7017, 5, 275, 0, 0, 7017, 7020, 3, 522, 261, 0, 7018, 7020, 5, 188, 0, 0, 7019, 7013, 1, 0, 0, 0, 7019, 7016, 1, 0, 0, 0, 7019, 7018, 1, 0, 0, 0, 7020, 7022, 1, 0, 0, 0, 7021, 6996, 1, 0, 0, 0, 7021, 7000, 1, 0, 0, 0, 7021, 7003, 1, 0, 0, 0, 7021, 7008, 1, 0, 0, 0, 7022, 7025, 1, 0, 0, 0, 7023, 7021, 1, 0, 0, 0, 7023, 7024, 1, 0, 0, 0, 7024, 677, 1, 0, 0, 0, 7025, 7023, 1, 0, 0, 0, 7026, 7027, 3, 800, 400, 0, 7027, 7048, 5, 2, 0, 0, 7028, 7032, 3, 730, 365, 0, 7029, 7030, 5, 6, 0, 0, 7030, 7031, 5, 101, 0, 0, 7031, 7033, 3, 732, 366, 0, 7032, 7029, 1, 0, 0, 0, 7032, 7033, 1, 0, 0, 0, 7033, 7035, 1, 0, 0, 0, 7034, 7036, 3, 580, 290, 0, 7035, 7034, 1, 0, 0, 0, 7035, 7036, 1, 0, 0, 0, 7036, 7049, 1, 0, 0, 0, 7037, 7038, 5, 101, 0, 0, 7038, 7040, 3, 732, 366, 0, 7039, 7041, 3, 580, 290, 0, 7040, 7039, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 7049, 1, 0, 0, 0, 7042, 7043, 7, 81, 0, 0, 7043, 7045, 3, 730, 365, 0, 7044, 7046, 3, 580, 290, 0, 7045, 7044, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7049, 1, 0, 0, 0, 7047, 7049, 5, 9, 0, 0, 7048, 7028, 1, 0, 0, 0, 7048, 7037, 1, 0, 0, 0, 7048, 7042, 1, 0, 0, 0, 7048, 7047, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7051, 5, 3, 0, 0, 7051, 679, 1, 0, 0, 0, 7052, 7059, 3, 678, 339, 0, 7053, 7054, 5, 479, 0, 0, 7054, 7055, 5, 66, 0, 0, 7055, 7056, 5, 2, 0, 0, 7056, 7057, 3, 580, 290, 0, 7057, 7058, 5, 3, 0, 0, 7058, 7060, 1, 0, 0, 0, 7059, 7053, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 7067, 1, 0, 0, 0, 7061, 7062, 5, 480, 0, 0, 7062, 7063, 5, 2, 0, 0, 7063, 7064, 5, 103, 0, 0, 7064, 7065, 3, 668, 334, 0, 7065, 7066, 5, 3, 0, 0, 7066, 7068, 1, 0, 0, 0, 7067, 7061, 1, 0, 0, 0, 7067, 7068, 1, 0, 0, 0, 7068, 7074, 1, 0, 0, 0, 7069, 7072, 5, 124, 0, 0, 7070, 7073, 3, 702, 351, 0, 7071, 7073, 3, 812, 406, 0, 7072, 7070, 1, 0, 0, 0, 7072, 7071, 1, 0, 0, 0, 7073, 7075, 1, 0, 0, 0, 7074, 7069, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7078, 1, 0, 0, 0, 7076, 7078, 3, 684, 342, 0, 7077, 7052, 1, 0, 0, 0, 7077, 7076, 1, 0, 0, 0, 7078, 681, 1, 0, 0, 0, 7079, 7082, 3, 678, 339, 0, 7080, 7082, 3, 684, 342, 0, 7081, 7079, 1, 0, 0, 0, 7081, 7080, 1, 0, 0, 0, 7082, 683, 1, 0, 0, 0, 7083, 7084, 5, 108, 0, 0, 7084, 7085, 5, 62, 0, 0, 7085, 7086, 5, 2, 0, 0, 7086, 7087, 3, 668, 334, 0, 7087, 7088, 5, 3, 0, 0, 7088, 7258, 1, 0, 0, 0, 7089, 7258, 5, 48, 0, 0, 7090, 7092, 7, 96, 0, 0, 7091, 7093, 3, 654, 327, 0, 7092, 7091, 1, 0, 0, 0, 7092, 7093, 1, 0, 0, 0, 7093, 7258, 1, 0, 0, 0, 7094, 7258, 5, 49, 0, 0, 7095, 7258, 5, 52, 0, 0, 7096, 7258, 5, 89, 0, 0, 7097, 7258, 5, 99, 0, 0, 7098, 7258, 5, 47, 0, 0, 7099, 7258, 5, 111, 0, 0, 7100, 7101, 7, 97, 0, 0, 7101, 7102, 5, 2, 0, 0, 7102, 7103, 3, 668, 334, 0, 7103, 7104, 5, 36, 0, 0, 7104, 7105, 3, 646, 323, 0, 7105, 7106, 5, 3, 0, 0, 7106, 7258, 1, 0, 0, 0, 7107, 7108, 5, 397, 0, 0, 7108, 7113, 5, 2, 0, 0, 7109, 7110, 3, 736, 368, 0, 7110, 7111, 5, 64, 0, 0, 7111, 7112, 3, 668, 334, 0, 7112, 7114, 1, 0, 0, 0, 7113, 7109, 1, 0, 0, 0, 7113, 7114, 1, 0, 0, 0, 7114, 7115, 1, 0, 0, 0, 7115, 7258, 5, 3, 0, 0, 7116, 7117, 5, 489, 0, 0, 7117, 7118, 5, 2, 0, 0, 7118, 7121, 3, 668, 334, 0, 7119, 7120, 5, 6, 0, 0, 7120, 7122, 3, 738, 369, 0, 7121, 7119, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7124, 5, 3, 0, 0, 7124, 7258, 1, 0, 0, 0, 7125, 7126, 5, 410, 0, 0, 7126, 7127, 5, 2, 0, 0, 7127, 7128, 3, 668, 334, 0, 7128, 7129, 5, 84, 0, 0, 7129, 7130, 3, 668, 334, 0, 7130, 7131, 5, 64, 0, 0, 7131, 7134, 3, 668, 334, 0, 7132, 7133, 5, 62, 0, 0, 7133, 7135, 3, 668, 334, 0, 7134, 7132, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7137, 5, 3, 0, 0, 7137, 7258, 1, 0, 0, 0, 7138, 7139, 5, 411, 0, 0, 7139, 7144, 5, 2, 0, 0, 7140, 7141, 3, 676, 338, 0, 7141, 7142, 5, 68, 0, 0, 7142, 7143, 3, 676, 338, 0, 7143, 7145, 1, 0, 0, 0, 7144, 7140, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7146, 1, 0, 0, 0, 7146, 7258, 5, 3, 0, 0, 7147, 7148, 5, 417, 0, 0, 7148, 7150, 5, 2, 0, 0, 7149, 7151, 3, 740, 370, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7258, 5, 3, 0, 0, 7153, 7154, 5, 421, 0, 0, 7154, 7156, 5, 2, 0, 0, 7155, 7157, 7, 98, 0, 0, 7156, 7155, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7162, 1, 0, 0, 0, 7158, 7160, 3, 668, 334, 0, 7159, 7158, 1, 0, 0, 0, 7159, 7160, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7163, 5, 64, 0, 0, 7162, 7159, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 3, 724, 362, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7167, 5, 3, 0, 0, 7167, 7258, 1, 0, 0, 0, 7168, 7169, 5, 408, 0, 0, 7169, 7170, 5, 2, 0, 0, 7170, 7171, 3, 668, 334, 0, 7171, 7172, 5, 6, 0, 0, 7172, 7173, 3, 668, 334, 0, 7173, 7174, 5, 3, 0, 0, 7174, 7258, 1, 0, 0, 0, 7175, 7176, 7, 99, 0, 0, 7176, 7258, 3, 528, 264, 0, 7177, 7178, 5, 426, 0, 0, 7178, 7179, 5, 2, 0, 0, 7179, 7180, 5, 266, 0, 0, 7180, 7190, 3, 818, 409, 0, 7181, 7188, 5, 6, 0, 0, 7182, 7183, 5, 424, 0, 0, 7183, 7184, 5, 2, 0, 0, 7184, 7185, 3, 686, 343, 0, 7185, 7186, 5, 3, 0, 0, 7186, 7189, 1, 0, 0, 0, 7187, 7189, 3, 724, 362, 0, 7188, 7182, 1, 0, 0, 0, 7188, 7187, 1, 0, 0, 0, 7189, 7191, 1, 0, 0, 0, 7190, 7181, 1, 0, 0, 0, 7190, 7191, 1, 0, 0, 0, 7191, 7192, 1, 0, 0, 0, 7192, 7193, 5, 3, 0, 0, 7193, 7258, 1, 0, 0, 0, 7194, 7195, 5, 427, 0, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 3, 676, 338, 0, 7197, 7198, 3, 692, 346, 0, 7198, 7199, 5, 3, 0, 0, 7199, 7258, 1, 0, 0, 0, 7200, 7201, 5, 428, 0, 0, 7201, 7202, 5, 2, 0, 0, 7202, 7203, 3, 686, 343, 0, 7203, 7204, 5, 3, 0, 0, 7204, 7258, 1, 0, 0, 0, 7205, 7206, 5, 429, 0, 0, 7206, 7207, 5, 2, 0, 0, 7207, 7208, 3, 690, 345, 0, 7208, 7211, 3, 668, 334, 0, 7209, 7210, 7, 100, 0, 0, 7210, 7212, 5, 378, 0, 0, 7211, 7209, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7213, 1, 0, 0, 0, 7213, 7214, 5, 3, 0, 0, 7214, 7258, 1, 0, 0, 0, 7215, 7216, 5, 430, 0, 0, 7216, 7217, 5, 2, 0, 0, 7217, 7218, 5, 266, 0, 0, 7218, 7221, 3, 818, 409, 0, 7219, 7220, 5, 6, 0, 0, 7220, 7222, 3, 668, 334, 0, 7221, 7219, 1, 0, 0, 0, 7221, 7222, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7224, 5, 3, 0, 0, 7224, 7258, 1, 0, 0, 0, 7225, 7226, 5, 431, 0, 0, 7226, 7227, 5, 2, 0, 0, 7227, 7228, 5, 383, 0, 0, 7228, 7229, 3, 668, 334, 0, 7229, 7230, 5, 6, 0, 0, 7230, 7234, 5, 375, 0, 0, 7231, 7232, 5, 269, 0, 0, 7232, 7235, 5, 450, 0, 0, 7233, 7235, 3, 668, 334, 0, 7234, 7231, 1, 0, 0, 0, 7234, 7233, 1, 0, 0, 0, 7235, 7245, 1, 0, 0, 0, 7236, 7237, 5, 6, 0, 0, 7237, 7243, 5, 339, 0, 0, 7238, 7240, 5, 269, 0, 0, 7239, 7238, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7241, 1, 0, 0, 0, 7241, 7244, 5, 450, 0, 0, 7242, 7244, 5, 385, 0, 0, 7243, 7239, 1, 0, 0, 0, 7243, 7242, 1, 0, 0, 0, 7244, 7246, 1, 0, 0, 0, 7245, 7236, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7247, 1, 0, 0, 0, 7247, 7248, 5, 3, 0, 0, 7248, 7258, 1, 0, 0, 0, 7249, 7250, 5, 432, 0, 0, 7250, 7251, 5, 2, 0, 0, 7251, 7252, 3, 690, 345, 0, 7252, 7253, 3, 668, 334, 0, 7253, 7254, 5, 36, 0, 0, 7254, 7255, 3, 648, 324, 0, 7255, 7256, 5, 3, 0, 0, 7256, 7258, 1, 0, 0, 0, 7257, 7083, 1, 0, 0, 0, 7257, 7089, 1, 0, 0, 0, 7257, 7090, 1, 0, 0, 0, 7257, 7094, 1, 0, 0, 0, 7257, 7095, 1, 0, 0, 0, 7257, 7096, 1, 0, 0, 0, 7257, 7097, 1, 0, 0, 0, 7257, 7098, 1, 0, 0, 0, 7257, 7099, 1, 0, 0, 0, 7257, 7100, 1, 0, 0, 0, 7257, 7107, 1, 0, 0, 0, 7257, 7116, 1, 0, 0, 0, 7257, 7125, 1, 0, 0, 0, 7257, 7138, 1, 0, 0, 0, 7257, 7147, 1, 0, 0, 0, 7257, 7153, 1, 0, 0, 0, 7257, 7168, 1, 0, 0, 0, 7257, 7175, 1, 0, 0, 0, 7257, 7177, 1, 0, 0, 0, 7257, 7194, 1, 0, 0, 0, 7257, 7200, 1, 0, 0, 0, 7257, 7205, 1, 0, 0, 0, 7257, 7215, 1, 0, 0, 0, 7257, 7225, 1, 0, 0, 0, 7257, 7249, 1, 0, 0, 0, 7258, 685, 1, 0, 0, 0, 7259, 7264, 3, 688, 344, 0, 7260, 7261, 5, 6, 0, 0, 7261, 7263, 3, 688, 344, 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, 687, 1, 0, 0, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7270, 3, 668, 334, 0, 7268, 7269, 5, 36, 0, 0, 7269, 7271, 3, 818, 409, 0, 7270, 7268, 1, 0, 0, 0, 7270, 7271, 1, 0, 0, 0, 7271, 689, 1, 0, 0, 0, 7272, 7273, 7, 101, 0, 0, 7273, 691, 1, 0, 0, 0, 7274, 7276, 5, 286, 0, 0, 7275, 7277, 3, 694, 347, 0, 7276, 7275, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 7280, 3, 676, 338, 0, 7279, 7281, 3, 694, 347, 0, 7280, 7279, 1, 0, 0, 0, 7280, 7281, 1, 0, 0, 0, 7281, 693, 1, 0, 0, 0, 7282, 7283, 5, 147, 0, 0, 7283, 7284, 7, 102, 0, 0, 7284, 695, 1, 0, 0, 0, 7285, 7286, 5, 104, 0, 0, 7286, 7291, 3, 698, 349, 0, 7287, 7288, 5, 6, 0, 0, 7288, 7290, 3, 698, 349, 0, 7289, 7287, 1, 0, 0, 0, 7290, 7293, 1, 0, 0, 0, 7291, 7289, 1, 0, 0, 0, 7291, 7292, 1, 0, 0, 0, 7292, 697, 1, 0, 0, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7295, 3, 812, 406, 0, 7295, 7296, 5, 36, 0, 0, 7296, 7297, 3, 702, 351, 0, 7297, 699, 1, 0, 0, 0, 7298, 7301, 5, 124, 0, 0, 7299, 7302, 3, 702, 351, 0, 7300, 7302, 3, 812, 406, 0, 7301, 7299, 1, 0, 0, 0, 7301, 7300, 1, 0, 0, 0, 7302, 701, 1, 0, 0, 0, 7303, 7305, 5, 2, 0, 0, 7304, 7306, 3, 812, 406, 0, 7305, 7304, 1, 0, 0, 0, 7305, 7306, 1, 0, 0, 0, 7306, 7310, 1, 0, 0, 0, 7307, 7308, 5, 285, 0, 0, 7308, 7309, 5, 147, 0, 0, 7309, 7311, 3, 724, 362, 0, 7310, 7307, 1, 0, 0, 0, 7310, 7311, 1, 0, 0, 0, 7311, 7313, 1, 0, 0, 0, 7312, 7314, 3, 580, 290, 0, 7313, 7312, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 7316, 1, 0, 0, 0, 7315, 7317, 3, 704, 352, 0, 7316, 7315, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7318, 1, 0, 0, 0, 7318, 7319, 5, 3, 0, 0, 7319, 703, 1, 0, 0, 0, 7320, 7325, 7, 103, 0, 0, 7321, 7322, 5, 387, 0, 0, 7322, 7323, 3, 706, 353, 0, 7323, 7324, 5, 33, 0, 0, 7324, 7326, 1, 0, 0, 0, 7325, 7321, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 7328, 3, 706, 353, 0, 7328, 7338, 1, 0, 0, 0, 7329, 7336, 5, 199, 0, 0, 7330, 7331, 5, 434, 0, 0, 7331, 7337, 5, 414, 0, 0, 7332, 7337, 5, 66, 0, 0, 7333, 7337, 5, 467, 0, 0, 7334, 7335, 5, 269, 0, 0, 7335, 7337, 5, 482, 0, 0, 7336, 7330, 1, 0, 0, 0, 7336, 7332, 1, 0, 0, 0, 7336, 7333, 1, 0, 0, 0, 7336, 7334, 1, 0, 0, 0, 7337, 7339, 1, 0, 0, 0, 7338, 7329, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 705, 1, 0, 0, 0, 7340, 7343, 5, 362, 0, 0, 7341, 7343, 3, 668, 334, 0, 7342, 7340, 1, 0, 0, 0, 7342, 7341, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7348, 7, 104, 0, 0, 7345, 7346, 5, 434, 0, 0, 7346, 7348, 5, 414, 0, 0, 7347, 7342, 1, 0, 0, 0, 7347, 7345, 1, 0, 0, 0, 7348, 707, 1, 0, 0, 0, 7349, 7357, 3, 710, 355, 0, 7350, 7351, 5, 2, 0, 0, 7351, 7352, 3, 724, 362, 0, 7352, 7353, 5, 6, 0, 0, 7353, 7354, 3, 668, 334, 0, 7354, 7355, 5, 3, 0, 0, 7355, 7357, 1, 0, 0, 0, 7356, 7349, 1, 0, 0, 0, 7356, 7350, 1, 0, 0, 0, 7357, 709, 1, 0, 0, 0, 7358, 7359, 5, 414, 0, 0, 7359, 7361, 5, 2, 0, 0, 7360, 7362, 3, 724, 362, 0, 7361, 7360, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7363, 1, 0, 0, 0, 7363, 7364, 5, 3, 0, 0, 7364, 711, 1, 0, 0, 0, 7365, 7366, 7, 105, 0, 0, 7366, 713, 1, 0, 0, 0, 7367, 7370, 5, 29, 0, 0, 7368, 7370, 3, 716, 358, 0, 7369, 7367, 1, 0, 0, 0, 7369, 7368, 1, 0, 0, 0, 7370, 715, 1, 0, 0, 0, 7371, 7372, 7, 106, 0, 0, 7372, 717, 1, 0, 0, 0, 7373, 7380, 5, 29, 0, 0, 7374, 7375, 5, 278, 0, 0, 7375, 7376, 5, 2, 0, 0, 7376, 7377, 3, 408, 204, 0, 7377, 7378, 5, 3, 0, 0, 7378, 7380, 1, 0, 0, 0, 7379, 7373, 1, 0, 0, 0, 7379, 7374, 1, 0, 0, 0, 7380, 719, 1, 0, 0, 0, 7381, 7388, 3, 714, 357, 0, 7382, 7383, 5, 278, 0, 0, 7383, 7384, 5, 2, 0, 0, 7384, 7385, 3, 408, 204, 0, 7385, 7386, 5, 3, 0, 0, 7386, 7388, 1, 0, 0, 0, 7387, 7381, 1, 0, 0, 0, 7387, 7382, 1, 0, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7395, 3, 720, 360, 0, 7390, 7392, 5, 77, 0, 0, 7391, 7390, 1, 0, 0, 0, 7391, 7392, 1, 0, 0, 0, 7392, 7393, 1, 0, 0, 0, 7393, 7395, 7, 107, 0, 0, 7394, 7389, 1, 0, 0, 0, 7394, 7391, 1, 0, 0, 0, 7395, 723, 1, 0, 0, 0, 7396, 7401, 3, 668, 334, 0, 7397, 7398, 5, 6, 0, 0, 7398, 7400, 3, 668, 334, 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, 725, 1, 0, 0, 0, 7403, 7401, 1, 0, 0, 0, 7404, 7405, 5, 2, 0, 0, 7405, 7406, 3, 668, 334, 0, 7406, 7407, 5, 3, 0, 0, 7407, 7410, 1, 0, 0, 0, 7408, 7410, 3, 794, 397, 0, 7409, 7404, 1, 0, 0, 0, 7409, 7408, 1, 0, 0, 0, 7410, 727, 1, 0, 0, 0, 7411, 7414, 3, 668, 334, 0, 7412, 7414, 3, 794, 397, 0, 7413, 7411, 1, 0, 0, 0, 7413, 7412, 1, 0, 0, 0, 7414, 729, 1, 0, 0, 0, 7415, 7420, 3, 732, 366, 0, 7416, 7417, 5, 6, 0, 0, 7417, 7419, 3, 732, 366, 0, 7418, 7416, 1, 0, 0, 0, 7419, 7422, 1, 0, 0, 0, 7420, 7418, 1, 0, 0, 0, 7420, 7421, 1, 0, 0, 0, 7421, 731, 1, 0, 0, 0, 7422, 7420, 1, 0, 0, 0, 7423, 7431, 3, 794, 397, 0, 7424, 7431, 3, 668, 334, 0, 7425, 7428, 3, 814, 407, 0, 7426, 7427, 7, 108, 0, 0, 7427, 7429, 3, 668, 334, 0, 7428, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 7431, 1, 0, 0, 0, 7430, 7423, 1, 0, 0, 0, 7430, 7424, 1, 0, 0, 0, 7430, 7425, 1, 0, 0, 0, 7431, 733, 1, 0, 0, 0, 7432, 7442, 5, 4, 0, 0, 7433, 7443, 3, 724, 362, 0, 7434, 7439, 3, 734, 367, 0, 7435, 7436, 5, 6, 0, 0, 7436, 7438, 3, 734, 367, 0, 7437, 7435, 1, 0, 0, 0, 7438, 7441, 1, 0, 0, 0, 7439, 7437, 1, 0, 0, 0, 7439, 7440, 1, 0, 0, 0, 7440, 7443, 1, 0, 0, 0, 7441, 7439, 1, 0, 0, 0, 7442, 7433, 1, 0, 0, 0, 7442, 7434, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 7444, 1, 0, 0, 0, 7444, 7445, 5, 5, 0, 0, 7445, 735, 1, 0, 0, 0, 7446, 7455, 3, 820, 410, 0, 7447, 7455, 5, 384, 0, 0, 7448, 7455, 5, 264, 0, 0, 7449, 7455, 5, 176, 0, 0, 7450, 7455, 5, 218, 0, 0, 7451, 7455, 5, 261, 0, 0, 7452, 7455, 5, 326, 0, 0, 7453, 7455, 3, 802, 401, 0, 7454, 7446, 1, 0, 0, 0, 7454, 7447, 1, 0, 0, 0, 7454, 7448, 1, 0, 0, 0, 7454, 7449, 1, 0, 0, 0, 7454, 7450, 1, 0, 0, 0, 7454, 7451, 1, 0, 0, 0, 7454, 7452, 1, 0, 0, 0, 7454, 7453, 1, 0, 0, 0, 7455, 737, 1, 0, 0, 0, 7456, 7457, 7, 109, 0, 0, 7457, 739, 1, 0, 0, 0, 7458, 7459, 3, 668, 334, 0, 7459, 7460, 5, 64, 0, 0, 7460, 7463, 3, 668, 334, 0, 7461, 7462, 5, 62, 0, 0, 7462, 7464, 3, 668, 334, 0, 7463, 7461, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7480, 1, 0, 0, 0, 7465, 7466, 3, 668, 334, 0, 7466, 7467, 5, 62, 0, 0, 7467, 7470, 3, 668, 334, 0, 7468, 7469, 5, 64, 0, 0, 7469, 7471, 3, 668, 334, 0, 7470, 7468, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7480, 1, 0, 0, 0, 7472, 7473, 3, 668, 334, 0, 7473, 7474, 5, 127, 0, 0, 7474, 7475, 3, 668, 334, 0, 7475, 7476, 5, 197, 0, 0, 7476, 7477, 3, 668, 334, 0, 7477, 7480, 1, 0, 0, 0, 7478, 7480, 3, 724, 362, 0, 7479, 7458, 1, 0, 0, 0, 7479, 7465, 1, 0, 0, 0, 7479, 7472, 1, 0, 0, 0, 7479, 7478, 1, 0, 0, 0, 7480, 741, 1, 0, 0, 0, 7481, 7482, 5, 102, 0, 0, 7482, 7483, 3, 668, 334, 0, 7483, 7484, 5, 93, 0, 0, 7484, 7485, 3, 668, 334, 0, 7485, 743, 1, 0, 0, 0, 7486, 7489, 5, 11, 0, 0, 7487, 7490, 3, 818, 409, 0, 7488, 7490, 5, 9, 0, 0, 7489, 7487, 1, 0, 0, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7504, 1, 0, 0, 0, 7491, 7500, 5, 4, 0, 0, 7492, 7501, 3, 668, 334, 0, 7493, 7495, 3, 668, 334, 0, 7494, 7493, 1, 0, 0, 0, 7494, 7495, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7498, 5, 8, 0, 0, 7497, 7499, 3, 668, 334, 0, 7498, 7497, 1, 0, 0, 0, 7498, 7499, 1, 0, 0, 0, 7499, 7501, 1, 0, 0, 0, 7500, 7492, 1, 0, 0, 0, 7500, 7494, 1, 0, 0, 0, 7501, 7502, 1, 0, 0, 0, 7502, 7504, 5, 5, 0, 0, 7503, 7486, 1, 0, 0, 0, 7503, 7491, 1, 0, 0, 0, 7504, 745, 1, 0, 0, 0, 7505, 7507, 3, 744, 372, 0, 7506, 7505, 1, 0, 0, 0, 7507, 7508, 1, 0, 0, 0, 7508, 7506, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 747, 1, 0, 0, 0, 7510, 7512, 3, 744, 372, 0, 7511, 7510, 1, 0, 0, 0, 7512, 7515, 1, 0, 0, 0, 7513, 7511, 1, 0, 0, 0, 7513, 7514, 1, 0, 0, 0, 7514, 749, 1, 0, 0, 0, 7515, 7513, 1, 0, 0, 0, 7516, 7521, 3, 752, 376, 0, 7517, 7518, 5, 6, 0, 0, 7518, 7520, 3, 752, 376, 0, 7519, 7517, 1, 0, 0, 0, 7520, 7523, 1, 0, 0, 0, 7521, 7519, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 751, 1, 0, 0, 0, 7523, 7521, 1, 0, 0, 0, 7524, 7529, 3, 728, 364, 0, 7525, 7526, 5, 36, 0, 0, 7526, 7530, 3, 818, 409, 0, 7527, 7530, 3, 820, 410, 0, 7528, 7530, 1, 0, 0, 0, 7529, 7525, 1, 0, 0, 0, 7529, 7527, 1, 0, 0, 0, 7529, 7528, 1, 0, 0, 0, 7530, 7533, 1, 0, 0, 0, 7531, 7533, 5, 9, 0, 0, 7532, 7524, 1, 0, 0, 0, 7532, 7531, 1, 0, 0, 0, 7533, 753, 1, 0, 0, 0, 7534, 7539, 3, 774, 387, 0, 7535, 7536, 5, 6, 0, 0, 7536, 7538, 3, 774, 387, 0, 7537, 7535, 1, 0, 0, 0, 7538, 7541, 1, 0, 0, 0, 7539, 7537, 1, 0, 0, 0, 7539, 7540, 1, 0, 0, 0, 7540, 755, 1, 0, 0, 0, 7541, 7539, 1, 0, 0, 0, 7542, 7547, 3, 768, 384, 0, 7543, 7544, 5, 6, 0, 0, 7544, 7546, 3, 768, 384, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7549, 1, 0, 0, 0, 7547, 7545, 1, 0, 0, 0, 7547, 7548, 1, 0, 0, 0, 7548, 757, 1, 0, 0, 0, 7549, 7547, 1, 0, 0, 0, 7550, 7555, 3, 784, 392, 0, 7551, 7552, 5, 6, 0, 0, 7552, 7554, 3, 784, 392, 0, 7553, 7551, 1, 0, 0, 0, 7554, 7557, 1, 0, 0, 0, 7555, 7553, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 759, 1, 0, 0, 0, 7557, 7555, 1, 0, 0, 0, 7558, 7563, 3, 782, 391, 0, 7559, 7560, 5, 6, 0, 0, 7560, 7562, 3, 782, 391, 0, 7561, 7559, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 761, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7567, 3, 774, 387, 0, 7567, 763, 1, 0, 0, 0, 7568, 7569, 3, 774, 387, 0, 7569, 765, 1, 0, 0, 0, 7570, 7571, 3, 774, 387, 0, 7571, 767, 1, 0, 0, 0, 7572, 7573, 3, 774, 387, 0, 7573, 769, 1, 0, 0, 0, 7574, 7575, 3, 774, 387, 0, 7575, 771, 1, 0, 0, 0, 7576, 7577, 3, 310, 155, 0, 7577, 773, 1, 0, 0, 0, 7578, 7580, 3, 812, 406, 0, 7579, 7581, 3, 746, 373, 0, 7580, 7579, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 775, 1, 0, 0, 0, 7582, 7587, 3, 764, 382, 0, 7583, 7584, 5, 6, 0, 0, 7584, 7586, 3, 764, 382, 0, 7585, 7583, 1, 0, 0, 0, 7586, 7589, 1, 0, 0, 0, 7587, 7585, 1, 0, 0, 0, 7587, 7588, 1, 0, 0, 0, 7588, 777, 1, 0, 0, 0, 7589, 7587, 1, 0, 0, 0, 7590, 7595, 3, 812, 406, 0, 7591, 7592, 5, 6, 0, 0, 7592, 7594, 3, 812, 406, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7597, 1, 0, 0, 0, 7595, 7593, 1, 0, 0, 0, 7595, 7596, 1, 0, 0, 0, 7596, 779, 1, 0, 0, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7599, 3, 310, 155, 0, 7599, 781, 1, 0, 0, 0, 7600, 7601, 3, 310, 155, 0, 7601, 783, 1, 0, 0, 0, 7602, 7603, 3, 310, 155, 0, 7603, 785, 1, 0, 0, 0, 7604, 7605, 3, 812, 406, 0, 7605, 787, 1, 0, 0, 0, 7606, 7607, 3, 812, 406, 0, 7607, 789, 1, 0, 0, 0, 7608, 7613, 3, 814, 407, 0, 7609, 7610, 3, 812, 406, 0, 7610, 7611, 3, 746, 373, 0, 7611, 7613, 1, 0, 0, 0, 7612, 7608, 1, 0, 0, 0, 7612, 7609, 1, 0, 0, 0, 7613, 791, 1, 0, 0, 0, 7614, 7619, 3, 814, 407, 0, 7615, 7616, 3, 812, 406, 0, 7616, 7617, 3, 746, 373, 0, 7617, 7619, 1, 0, 0, 0, 7618, 7614, 1, 0, 0, 0, 7618, 7615, 1, 0, 0, 0, 7619, 793, 1, 0, 0, 0, 7620, 7621, 3, 812, 406, 0, 7621, 7622, 3, 748, 374, 0, 7622, 7625, 1, 0, 0, 0, 7623, 7625, 4, 397, 10, 0, 7624, 7620, 1, 0, 0, 0, 7624, 7623, 1, 0, 0, 0, 7625, 795, 1, 0, 0, 0, 7626, 7627, 3, 812, 406, 0, 7627, 797, 1, 0, 0, 0, 7628, 7633, 3, 814, 407, 0, 7629, 7630, 3, 812, 406, 0, 7630, 7631, 3, 746, 373, 0, 7631, 7633, 1, 0, 0, 0, 7632, 7628, 1, 0, 0, 0, 7632, 7629, 1, 0, 0, 0, 7633, 799, 1, 0, 0, 0, 7634, 7639, 3, 814, 407, 0, 7635, 7636, 3, 812, 406, 0, 7636, 7637, 3, 746, 373, 0, 7637, 7639, 1, 0, 0, 0, 7638, 7634, 1, 0, 0, 0, 7638, 7635, 1, 0, 0, 0, 7639, 801, 1, 0, 0, 0, 7640, 7643, 3, 804, 402, 0, 7641, 7642, 5, 487, 0, 0, 7642, 7644, 3, 804, 402, 0, 7643, 7641, 1, 0, 0, 0, 7643, 7644, 1, 0, 0, 0, 7644, 803, 1, 0, 0, 0, 7645, 7657, 5, 561, 0, 0, 7646, 7657, 5, 563, 0, 0, 7647, 7651, 5, 565, 0, 0, 7648, 7650, 5, 591, 0, 0, 7649, 7648, 1, 0, 0, 0, 7650, 7653, 1, 0, 0, 0, 7651, 7649, 1, 0, 0, 0, 7651, 7652, 1, 0, 0, 0, 7652, 7654, 1, 0, 0, 0, 7653, 7651, 1, 0, 0, 0, 7654, 7657, 5, 592, 0, 0, 7655, 7657, 5, 587, 0, 0, 7656, 7645, 1, 0, 0, 0, 7656, 7646, 1, 0, 0, 0, 7656, 7647, 1, 0, 0, 0, 7656, 7655, 1, 0, 0, 0, 7657, 805, 1, 0, 0, 0, 7658, 7660, 7, 30, 0, 0, 7659, 7658, 1, 0, 0, 0, 7659, 7660, 1, 0, 0, 0, 7660, 7661, 1, 0, 0, 0, 7661, 7662, 5, 574, 0, 0, 7662, 807, 1, 0, 0, 0, 7663, 7669, 3, 816, 408, 0, 7664, 7669, 5, 52, 0, 0, 7665, 7669, 5, 49, 0, 0, 7666, 7669, 5, 89, 0, 0, 7667, 7669, 5, 524, 0, 0, 7668, 7663, 1, 0, 0, 0, 7668, 7664, 1, 0, 0, 0, 7668, 7665, 1, 0, 0, 0, 7668, 7666, 1, 0, 0, 0, 7668, 7667, 1, 0, 0, 0, 7669, 809, 1, 0, 0, 0, 7670, 7675, 3, 808, 404, 0, 7671, 7672, 5, 6, 0, 0, 7672, 7674, 3, 808, 404, 0, 7673, 7671, 1, 0, 0, 0, 7674, 7677, 1, 0, 0, 0, 7675, 7673, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 811, 1, 0, 0, 0, 7677, 7675, 1, 0, 0, 0, 7678, 7681, 3, 820, 410, 0, 7679, 7681, 3, 824, 412, 0, 7680, 7678, 1, 0, 0, 0, 7680, 7679, 1, 0, 0, 0, 7681, 813, 1, 0, 0, 0, 7682, 7685, 3, 820, 410, 0, 7683, 7685, 3, 826, 413, 0, 7684, 7682, 1, 0, 0, 0, 7684, 7683, 1, 0, 0, 0, 7685, 815, 1, 0, 0, 0, 7686, 7690, 3, 820, 410, 0, 7687, 7690, 3, 824, 412, 0, 7688, 7690, 3, 826, 413, 0, 7689, 7686, 1, 0, 0, 0, 7689, 7687, 1, 0, 0, 0, 7689, 7688, 1, 0, 0, 0, 7690, 817, 1, 0, 0, 0, 7691, 7696, 3, 820, 410, 0, 7692, 7696, 3, 824, 412, 0, 7693, 7696, 3, 826, 413, 0, 7694, 7696, 3, 828, 414, 0, 7695, 7691, 1, 0, 0, 0, 7695, 7692, 1, 0, 0, 0, 7695, 7693, 1, 0, 0, 0, 7695, 7694, 1, 0, 0, 0, 7696, 819, 1, 0, 0, 0, 7697, 7700, 5, 552, 0, 0, 7698, 7699, 5, 487, 0, 0, 7699, 7701, 3, 804, 402, 0, 7700, 7698, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7709, 1, 0, 0, 0, 7702, 7709, 3, 802, 401, 0, 7703, 7709, 5, 553, 0, 0, 7704, 7709, 5, 557, 0, 0, 7705, 7709, 5, 577, 0, 0, 7706, 7709, 5, 578, 0, 0, 7707, 7709, 3, 822, 411, 0, 7708, 7697, 1, 0, 0, 0, 7708, 7702, 1, 0, 0, 0, 7708, 7703, 1, 0, 0, 0, 7708, 7704, 1, 0, 0, 0, 7708, 7705, 1, 0, 0, 0, 7708, 7706, 1, 0, 0, 0, 7708, 7707, 1, 0, 0, 0, 7709, 821, 1, 0, 0, 0, 7710, 7711, 7, 110, 0, 0, 7711, 823, 1, 0, 0, 0, 7712, 7764, 5, 387, 0, 0, 7713, 7764, 5, 388, 0, 0, 7714, 7764, 3, 656, 328, 0, 7715, 7764, 5, 390, 0, 0, 7716, 7764, 5, 391, 0, 0, 7717, 7764, 3, 658, 329, 0, 7718, 7764, 5, 393, 0, 0, 7719, 7764, 5, 394, 0, 0, 7720, 7764, 5, 395, 0, 0, 7721, 7764, 5, 396, 0, 0, 7722, 7764, 5, 397, 0, 0, 7723, 7764, 5, 398, 0, 0, 7724, 7764, 5, 399, 0, 0, 7725, 7764, 5, 470, 0, 0, 7726, 7764, 5, 400, 0, 0, 7727, 7764, 5, 401, 0, 0, 7728, 7764, 5, 402, 0, 0, 7729, 7764, 5, 403, 0, 0, 7730, 7764, 5, 404, 0, 0, 7731, 7764, 5, 405, 0, 0, 7732, 7764, 5, 406, 0, 0, 7733, 7764, 5, 407, 0, 0, 7734, 7764, 5, 489, 0, 0, 7735, 7764, 5, 408, 0, 0, 7736, 7764, 3, 652, 326, 0, 7737, 7764, 5, 453, 0, 0, 7738, 7764, 5, 410, 0, 0, 7739, 7764, 5, 411, 0, 0, 7740, 7764, 5, 412, 0, 0, 7741, 7764, 5, 413, 0, 0, 7742, 7764, 5, 414, 0, 0, 7743, 7764, 5, 415, 0, 0, 7744, 7764, 5, 416, 0, 0, 7745, 7764, 5, 417, 0, 0, 7746, 7764, 5, 418, 0, 0, 7747, 7764, 5, 419, 0, 0, 7748, 7764, 5, 420, 0, 0, 7749, 7764, 5, 421, 0, 0, 7750, 7764, 5, 422, 0, 0, 7751, 7764, 5, 423, 0, 0, 7752, 7764, 5, 424, 0, 0, 7753, 7764, 5, 425, 0, 0, 7754, 7764, 5, 426, 0, 0, 7755, 7764, 5, 427, 0, 0, 7756, 7764, 5, 428, 0, 0, 7757, 7764, 5, 476, 0, 0, 7758, 7764, 5, 429, 0, 0, 7759, 7764, 5, 430, 0, 0, 7760, 7764, 5, 431, 0, 0, 7761, 7764, 5, 432, 0, 0, 7762, 7764, 5, 474, 0, 0, 7763, 7712, 1, 0, 0, 0, 7763, 7713, 1, 0, 0, 0, 7763, 7714, 1, 0, 0, 0, 7763, 7715, 1, 0, 0, 0, 7763, 7716, 1, 0, 0, 0, 7763, 7717, 1, 0, 0, 0, 7763, 7718, 1, 0, 0, 0, 7763, 7719, 1, 0, 0, 0, 7763, 7720, 1, 0, 0, 0, 7763, 7721, 1, 0, 0, 0, 7763, 7722, 1, 0, 0, 0, 7763, 7723, 1, 0, 0, 0, 7763, 7724, 1, 0, 0, 0, 7763, 7725, 1, 0, 0, 0, 7763, 7726, 1, 0, 0, 0, 7763, 7727, 1, 0, 0, 0, 7763, 7728, 1, 0, 0, 0, 7763, 7729, 1, 0, 0, 0, 7763, 7730, 1, 0, 0, 0, 7763, 7731, 1, 0, 0, 0, 7763, 7732, 1, 0, 0, 0, 7763, 7733, 1, 0, 0, 0, 7763, 7734, 1, 0, 0, 0, 7763, 7735, 1, 0, 0, 0, 7763, 7736, 1, 0, 0, 0, 7763, 7737, 1, 0, 0, 0, 7763, 7738, 1, 0, 0, 0, 7763, 7739, 1, 0, 0, 0, 7763, 7740, 1, 0, 0, 0, 7763, 7741, 1, 0, 0, 0, 7763, 7742, 1, 0, 0, 0, 7763, 7743, 1, 0, 0, 0, 7763, 7744, 1, 0, 0, 0, 7763, 7745, 1, 0, 0, 0, 7763, 7746, 1, 0, 0, 0, 7763, 7747, 1, 0, 0, 0, 7763, 7748, 1, 0, 0, 0, 7763, 7749, 1, 0, 0, 0, 7763, 7750, 1, 0, 0, 0, 7763, 7751, 1, 0, 0, 0, 7763, 7752, 1, 0, 0, 0, 7763, 7753, 1, 0, 0, 0, 7763, 7754, 1, 0, 0, 0, 7763, 7755, 1, 0, 0, 0, 7763, 7756, 1, 0, 0, 0, 7763, 7757, 1, 0, 0, 0, 7763, 7758, 1, 0, 0, 0, 7763, 7759, 1, 0, 0, 0, 7763, 7760, 1, 0, 0, 0, 7763, 7761, 1, 0, 0, 0, 7763, 7762, 1, 0, 0, 0, 7764, 825, 1, 0, 0, 0, 7765, 7766, 7, 111, 0, 0, 7766, 827, 1, 0, 0, 0, 7767, 7768, 7, 112, 0, 0, 7768, 829, 1, 0, 0, 0, 7769, 7771, 3, 832, 416, 0, 7770, 7769, 1, 0, 0, 0, 7770, 7771, 1, 0, 0, 0, 7771, 7782, 1, 0, 0, 0, 7772, 7780, 5, 178, 0, 0, 7773, 7777, 3, 834, 417, 0, 7774, 7777, 5, 178, 0, 0, 7775, 7777, 3, 832, 416, 0, 7776, 7773, 1, 0, 0, 0, 7776, 7774, 1, 0, 0, 0, 7776, 7775, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 7781, 1, 0, 0, 0, 7780, 7776, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 7783, 1, 0, 0, 0, 7782, 7772, 1, 0, 0, 0, 7782, 7783, 1, 0, 0, 0, 7783, 7784, 1, 0, 0, 0, 7784, 7788, 5, 146, 0, 0, 7785, 7787, 3, 840, 420, 0, 7786, 7785, 1, 0, 0, 0, 7787, 7790, 1, 0, 0, 0, 7788, 7786, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7792, 1, 0, 0, 0, 7790, 7788, 1, 0, 0, 0, 7791, 7793, 3, 918, 459, 0, 7792, 7791, 1, 0, 0, 0, 7792, 7793, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7796, 5, 454, 0, 0, 7795, 7797, 3, 922, 461, 0, 7796, 7795, 1, 0, 0, 0, 7796, 7797, 1, 0, 0, 0, 7797, 831, 1, 0, 0, 0, 7798, 7799, 5, 18, 0, 0, 7799, 7800, 3, 922, 461, 0, 7800, 7801, 5, 19, 0, 0, 7801, 833, 1, 0, 0, 0, 7802, 7849, 3, 922, 461, 0, 7803, 7804, 5, 496, 0, 0, 7804, 7807, 5, 62, 0, 0, 7805, 7808, 5, 28, 0, 0, 7806, 7808, 3, 812, 406, 0, 7807, 7805, 1, 0, 0, 0, 7807, 7806, 1, 0, 0, 0, 7808, 7850, 1, 0, 0, 0, 7809, 7811, 5, 497, 0, 0, 7810, 7809, 1, 0, 0, 0, 7810, 7811, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, 0, 7812, 7814, 3, 646, 323, 0, 7813, 7815, 3, 90, 45, 0, 7814, 7813, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 7818, 1, 0, 0, 0, 7816, 7817, 5, 77, 0, 0, 7817, 7819, 5, 78, 0, 0, 7818, 7816, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7825, 1, 0, 0, 0, 7820, 7823, 3, 838, 419, 0, 7821, 7823, 5, 53, 0, 0, 7822, 7820, 1, 0, 0, 0, 7822, 7821, 1, 0, 0, 0, 7823, 7824, 1, 0, 0, 0, 7824, 7826, 3, 924, 462, 0, 7825, 7822, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7850, 1, 0, 0, 0, 7827, 7829, 5, 269, 0, 0, 7828, 7827, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7832, 5, 324, 0, 0, 7831, 7828, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7833, 1, 0, 0, 0, 7833, 7845, 5, 172, 0, 0, 7834, 7835, 5, 2, 0, 0, 7835, 7840, 3, 836, 418, 0, 7836, 7837, 5, 6, 0, 0, 7837, 7839, 3, 836, 418, 0, 7838, 7836, 1, 0, 0, 0, 7839, 7842, 1, 0, 0, 0, 7840, 7838, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7843, 1, 0, 0, 0, 7842, 7840, 1, 0, 0, 0, 7843, 7844, 5, 3, 0, 0, 7844, 7846, 1, 0, 0, 0, 7845, 7834, 1, 0, 0, 0, 7845, 7846, 1, 0, 0, 0, 7846, 7847, 1, 0, 0, 0, 7847, 7848, 7, 113, 0, 0, 7848, 7850, 3, 554, 277, 0, 7849, 7803, 1, 0, 0, 0, 7849, 7810, 1, 0, 0, 0, 7849, 7831, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7852, 5, 7, 0, 0, 7852, 835, 1, 0, 0, 0, 7853, 7854, 3, 922, 461, 0, 7854, 7855, 3, 646, 323, 0, 7855, 837, 1, 0, 0, 0, 7856, 7857, 7, 114, 0, 0, 7857, 839, 1, 0, 0, 0, 7858, 7859, 3, 830, 415, 0, 7859, 7860, 5, 7, 0, 0, 7860, 7883, 1, 0, 0, 0, 7861, 7883, 3, 868, 434, 0, 7862, 7883, 3, 870, 435, 0, 7863, 7883, 3, 846, 423, 0, 7864, 7883, 3, 854, 427, 0, 7865, 7883, 3, 858, 429, 0, 7866, 7883, 3, 860, 430, 0, 7867, 7883, 3, 864, 432, 0, 7868, 7883, 3, 866, 433, 0, 7869, 7883, 3, 874, 437, 0, 7870, 7883, 3, 878, 439, 0, 7871, 7883, 3, 880, 440, 0, 7872, 7883, 3, 842, 421, 0, 7873, 7883, 3, 844, 422, 0, 7874, 7883, 3, 848, 424, 0, 7875, 7883, 3, 884, 442, 0, 7876, 7883, 3, 888, 444, 0, 7877, 7883, 3, 892, 446, 0, 7878, 7883, 3, 908, 454, 0, 7879, 7883, 3, 910, 455, 0, 7880, 7883, 3, 912, 456, 0, 7881, 7883, 3, 914, 457, 0, 7882, 7858, 1, 0, 0, 0, 7882, 7861, 1, 0, 0, 0, 7882, 7862, 1, 0, 0, 0, 7882, 7863, 1, 0, 0, 0, 7882, 7864, 1, 0, 0, 0, 7882, 7865, 1, 0, 0, 0, 7882, 7866, 1, 0, 0, 0, 7882, 7867, 1, 0, 0, 0, 7882, 7868, 1, 0, 0, 0, 7882, 7869, 1, 0, 0, 0, 7882, 7870, 1, 0, 0, 0, 7882, 7871, 1, 0, 0, 0, 7882, 7872, 1, 0, 0, 0, 7882, 7873, 1, 0, 0, 0, 7882, 7874, 1, 0, 0, 0, 7882, 7875, 1, 0, 0, 0, 7882, 7876, 1, 0, 0, 0, 7882, 7877, 1, 0, 0, 0, 7882, 7878, 1, 0, 0, 0, 7882, 7879, 1, 0, 0, 0, 7882, 7880, 1, 0, 0, 0, 7882, 7881, 1, 0, 0, 0, 7883, 841, 1, 0, 0, 0, 7884, 7885, 5, 498, 0, 0, 7885, 7886, 3, 924, 462, 0, 7886, 7887, 5, 7, 0, 0, 7887, 843, 1, 0, 0, 0, 7888, 7889, 5, 433, 0, 0, 7889, 7896, 3, 922, 461, 0, 7890, 7892, 5, 2, 0, 0, 7891, 7893, 3, 724, 362, 0, 7892, 7891, 1, 0, 0, 0, 7892, 7893, 1, 0, 0, 0, 7893, 7894, 1, 0, 0, 0, 7894, 7895, 5, 3, 0, 0, 7895, 7897, 5, 7, 0, 0, 7896, 7890, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 7908, 1, 0, 0, 0, 7898, 7899, 5, 57, 0, 0, 7899, 7900, 3, 922, 461, 0, 7900, 7902, 5, 2, 0, 0, 7901, 7903, 3, 724, 362, 0, 7902, 7901, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 5, 3, 0, 0, 7905, 7906, 5, 7, 0, 0, 7906, 7908, 1, 0, 0, 0, 7907, 7888, 1, 0, 0, 0, 7907, 7898, 1, 0, 0, 0, 7908, 845, 1, 0, 0, 0, 7909, 7910, 3, 852, 426, 0, 7910, 7911, 3, 838, 419, 0, 7911, 7912, 3, 924, 462, 0, 7912, 7913, 5, 7, 0, 0, 7913, 847, 1, 0, 0, 0, 7914, 7916, 5, 499, 0, 0, 7915, 7917, 7, 115, 0, 0, 7916, 7915, 1, 0, 0, 0, 7916, 7917, 1, 0, 0, 0, 7917, 7918, 1, 0, 0, 0, 7918, 7919, 5, 500, 0, 0, 7919, 7924, 3, 850, 425, 0, 7920, 7921, 5, 6, 0, 0, 7921, 7923, 3, 850, 425, 0, 7922, 7920, 1, 0, 0, 0, 7923, 7926, 1, 0, 0, 0, 7924, 7922, 1, 0, 0, 0, 7924, 7925, 1, 0, 0, 0, 7925, 7927, 1, 0, 0, 0, 7926, 7924, 1, 0, 0, 0, 7927, 7928, 5, 7, 0, 0, 7928, 849, 1, 0, 0, 0, 7929, 7930, 3, 852, 426, 0, 7930, 7931, 3, 838, 419, 0, 7931, 7932, 3, 812, 406, 0, 7932, 851, 1, 0, 0, 0, 7933, 7936, 3, 310, 155, 0, 7934, 7936, 5, 28, 0, 0, 7935, 7933, 1, 0, 0, 0, 7935, 7934, 1, 0, 0, 0, 7936, 7943, 1, 0, 0, 0, 7937, 7938, 5, 4, 0, 0, 7938, 7939, 3, 668, 334, 0, 7939, 7940, 5, 5, 0, 0, 7940, 7942, 1, 0, 0, 0, 7941, 7937, 1, 0, 0, 0, 7942, 7945, 1, 0, 0, 0, 7943, 7941, 1, 0, 0, 0, 7943, 7944, 1, 0, 0, 0, 7944, 853, 1, 0, 0, 0, 7945, 7943, 1, 0, 0, 0, 7946, 7947, 5, 220, 0, 0, 7947, 7948, 3, 924, 462, 0, 7948, 7952, 5, 93, 0, 0, 7949, 7951, 3, 840, 420, 0, 7950, 7949, 1, 0, 0, 0, 7951, 7954, 1, 0, 0, 0, 7952, 7950, 1, 0, 0, 0, 7952, 7953, 1, 0, 0, 0, 7953, 7966, 1, 0, 0, 0, 7954, 7952, 1, 0, 0, 0, 7955, 7956, 5, 502, 0, 0, 7956, 7957, 3, 668, 334, 0, 7957, 7961, 5, 93, 0, 0, 7958, 7960, 3, 840, 420, 0, 7959, 7958, 1, 0, 0, 0, 7960, 7963, 1, 0, 0, 0, 7961, 7959, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7965, 1, 0, 0, 0, 7963, 7961, 1, 0, 0, 0, 7964, 7955, 1, 0, 0, 0, 7965, 7968, 1, 0, 0, 0, 7966, 7964, 1, 0, 0, 0, 7966, 7967, 1, 0, 0, 0, 7967, 7970, 1, 0, 0, 0, 7968, 7966, 1, 0, 0, 0, 7969, 7971, 3, 856, 428, 0, 7970, 7969, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7972, 1, 0, 0, 0, 7972, 7973, 5, 454, 0, 0, 7973, 7974, 5, 220, 0, 0, 7974, 7975, 5, 7, 0, 0, 7975, 855, 1, 0, 0, 0, 7976, 7980, 5, 58, 0, 0, 7977, 7979, 3, 840, 420, 0, 7978, 7977, 1, 0, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7978, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 857, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7983, 7985, 5, 40, 0, 0, 7984, 7986, 3, 924, 462, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7996, 1, 0, 0, 0, 7987, 7988, 5, 102, 0, 0, 7988, 7989, 3, 724, 362, 0, 7989, 7993, 5, 93, 0, 0, 7990, 7992, 3, 840, 420, 0, 7991, 7990, 1, 0, 0, 0, 7992, 7995, 1, 0, 0, 0, 7993, 7991, 1, 0, 0, 0, 7993, 7994, 1, 0, 0, 0, 7994, 7997, 1, 0, 0, 0, 7995, 7993, 1, 0, 0, 0, 7996, 7987, 1, 0, 0, 0, 7997, 7998, 1, 0, 0, 0, 7998, 7996, 1, 0, 0, 0, 7998, 7999, 1, 0, 0, 0, 7999, 8001, 1, 0, 0, 0, 8000, 8002, 3, 856, 428, 0, 8001, 8000, 1, 0, 0, 0, 8001, 8002, 1, 0, 0, 0, 8002, 8003, 1, 0, 0, 0, 8003, 8004, 5, 454, 0, 0, 8004, 8005, 5, 40, 0, 0, 8005, 8006, 5, 7, 0, 0, 8006, 859, 1, 0, 0, 0, 8007, 8009, 3, 832, 416, 0, 8008, 8007, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8014, 1, 0, 0, 0, 8010, 8011, 5, 503, 0, 0, 8011, 8015, 3, 668, 334, 0, 8012, 8013, 5, 62, 0, 0, 8013, 8015, 3, 862, 431, 0, 8014, 8010, 1, 0, 0, 0, 8014, 8012, 1, 0, 0, 0, 8014, 8015, 1, 0, 0, 0, 8015, 8016, 1, 0, 0, 0, 8016, 8017, 3, 876, 438, 0, 8017, 861, 1, 0, 0, 0, 8018, 8019, 3, 308, 154, 0, 8019, 8042, 5, 68, 0, 0, 8020, 8022, 3, 812, 406, 0, 8021, 8023, 3, 528, 264, 0, 8022, 8021, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8043, 1, 0, 0, 0, 8024, 8043, 3, 554, 277, 0, 8025, 8043, 3, 514, 257, 0, 8026, 8027, 5, 202, 0, 0, 8027, 8030, 3, 668, 334, 0, 8028, 8029, 5, 100, 0, 0, 8029, 8031, 3, 724, 362, 0, 8030, 8028, 1, 0, 0, 0, 8030, 8031, 1, 0, 0, 0, 8031, 8043, 1, 0, 0, 0, 8032, 8034, 5, 504, 0, 0, 8033, 8032, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8036, 3, 668, 334, 0, 8036, 8037, 5, 24, 0, 0, 8037, 8040, 3, 668, 334, 0, 8038, 8039, 5, 147, 0, 0, 8039, 8041, 3, 668, 334, 0, 8040, 8038, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8043, 1, 0, 0, 0, 8042, 8020, 1, 0, 0, 0, 8042, 8024, 1, 0, 0, 0, 8042, 8025, 1, 0, 0, 0, 8042, 8026, 1, 0, 0, 0, 8042, 8033, 1, 0, 0, 0, 8043, 863, 1, 0, 0, 0, 8044, 8046, 3, 832, 416, 0, 8045, 8044, 1, 0, 0, 0, 8045, 8046, 1, 0, 0, 0, 8046, 8047, 1, 0, 0, 0, 8047, 8048, 5, 505, 0, 0, 8048, 8051, 3, 308, 154, 0, 8049, 8050, 5, 506, 0, 0, 8050, 8052, 5, 574, 0, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8053, 1, 0, 0, 0, 8053, 8054, 5, 68, 0, 0, 8054, 8055, 5, 35, 0, 0, 8055, 8056, 3, 668, 334, 0, 8056, 8057, 3, 876, 438, 0, 8057, 865, 1, 0, 0, 0, 8058, 8060, 7, 116, 0, 0, 8059, 8061, 3, 922, 461, 0, 8060, 8059, 1, 0, 0, 0, 8060, 8061, 1, 0, 0, 0, 8061, 8064, 1, 0, 0, 0, 8062, 8063, 5, 102, 0, 0, 8063, 8065, 3, 924, 462, 0, 8064, 8062, 1, 0, 0, 0, 8064, 8065, 1, 0, 0, 0, 8065, 8066, 1, 0, 0, 0, 8066, 8067, 5, 7, 0, 0, 8067, 867, 1, 0, 0, 0, 8068, 8083, 5, 508, 0, 0, 8069, 8070, 5, 268, 0, 0, 8070, 8084, 3, 924, 462, 0, 8071, 8078, 5, 509, 0, 0, 8072, 8073, 5, 202, 0, 0, 8073, 8074, 3, 668, 334, 0, 8074, 8075, 5, 100, 0, 0, 8075, 8076, 3, 724, 362, 0, 8076, 8079, 1, 0, 0, 0, 8077, 8079, 3, 554, 277, 0, 8078, 8072, 1, 0, 0, 0, 8078, 8077, 1, 0, 0, 0, 8079, 8084, 1, 0, 0, 0, 8080, 8082, 3, 924, 462, 0, 8081, 8080, 1, 0, 0, 0, 8081, 8082, 1, 0, 0, 0, 8082, 8084, 1, 0, 0, 0, 8083, 8069, 1, 0, 0, 0, 8083, 8071, 1, 0, 0, 0, 8083, 8081, 1, 0, 0, 0, 8084, 8085, 1, 0, 0, 0, 8085, 8086, 5, 7, 0, 0, 8086, 869, 1, 0, 0, 0, 8087, 8117, 5, 510, 0, 0, 8088, 8090, 7, 117, 0, 0, 8089, 8088, 1, 0, 0, 0, 8089, 8090, 1, 0, 0, 0, 8090, 8103, 1, 0, 0, 0, 8091, 8104, 3, 820, 410, 0, 8092, 8093, 5, 511, 0, 0, 8093, 8104, 3, 802, 401, 0, 8094, 8101, 3, 802, 401, 0, 8095, 8096, 5, 6, 0, 0, 8096, 8098, 3, 668, 334, 0, 8097, 8095, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8097, 1, 0, 0, 0, 8099, 8100, 1, 0, 0, 0, 8100, 8102, 1, 0, 0, 0, 8101, 8097, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8104, 1, 0, 0, 0, 8103, 8091, 1, 0, 0, 0, 8103, 8092, 1, 0, 0, 0, 8103, 8094, 1, 0, 0, 0, 8103, 8104, 1, 0, 0, 0, 8104, 8114, 1, 0, 0, 0, 8105, 8106, 5, 100, 0, 0, 8106, 8111, 3, 872, 436, 0, 8107, 8108, 5, 6, 0, 0, 8108, 8110, 3, 872, 436, 0, 8109, 8107, 1, 0, 0, 0, 8110, 8113, 1, 0, 0, 0, 8111, 8109, 1, 0, 0, 0, 8111, 8112, 1, 0, 0, 0, 8112, 8115, 1, 0, 0, 0, 8113, 8111, 1, 0, 0, 0, 8114, 8105, 1, 0, 0, 0, 8114, 8115, 1, 0, 0, 0, 8115, 8116, 1, 0, 0, 0, 8116, 8118, 5, 7, 0, 0, 8117, 8089, 1, 0, 0, 0, 8117, 8118, 1, 0, 0, 0, 8118, 871, 1, 0, 0, 0, 8119, 8120, 3, 820, 410, 0, 8120, 8121, 5, 10, 0, 0, 8121, 8122, 3, 668, 334, 0, 8122, 873, 1, 0, 0, 0, 8123, 8124, 5, 518, 0, 0, 8124, 8127, 3, 924, 462, 0, 8125, 8126, 5, 6, 0, 0, 8126, 8128, 3, 924, 462, 0, 8127, 8125, 1, 0, 0, 0, 8127, 8128, 1, 0, 0, 0, 8128, 8129, 1, 0, 0, 0, 8129, 8130, 5, 7, 0, 0, 8130, 875, 1, 0, 0, 0, 8131, 8135, 5, 519, 0, 0, 8132, 8134, 3, 840, 420, 0, 8133, 8132, 1, 0, 0, 0, 8134, 8137, 1, 0, 0, 0, 8135, 8133, 1, 0, 0, 0, 8135, 8136, 1, 0, 0, 0, 8136, 8138, 1, 0, 0, 0, 8137, 8135, 1, 0, 0, 0, 8138, 8139, 5, 454, 0, 0, 8139, 8141, 5, 519, 0, 0, 8140, 8142, 3, 922, 461, 0, 8141, 8140, 1, 0, 0, 0, 8141, 8142, 1, 0, 0, 0, 8142, 8143, 1, 0, 0, 0, 8143, 8144, 5, 7, 0, 0, 8144, 877, 1, 0, 0, 0, 8145, 8147, 3, 4, 2, 0, 8146, 8148, 3, 882, 441, 0, 8147, 8146, 1, 0, 0, 0, 8147, 8148, 1, 0, 0, 0, 8148, 8149, 1, 0, 0, 0, 8149, 8150, 5, 7, 0, 0, 8150, 879, 1, 0, 0, 0, 8151, 8152, 5, 202, 0, 0, 8152, 8168, 3, 668, 334, 0, 8153, 8155, 3, 882, 441, 0, 8154, 8153, 1, 0, 0, 0, 8154, 8155, 1, 0, 0, 0, 8155, 8158, 1, 0, 0, 0, 8156, 8157, 5, 100, 0, 0, 8157, 8159, 3, 724, 362, 0, 8158, 8156, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8169, 1, 0, 0, 0, 8160, 8161, 5, 100, 0, 0, 8161, 8163, 3, 724, 362, 0, 8162, 8160, 1, 0, 0, 0, 8162, 8163, 1, 0, 0, 0, 8163, 8165, 1, 0, 0, 0, 8164, 8166, 3, 882, 441, 0, 8165, 8164, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8169, 1, 0, 0, 0, 8167, 8169, 1, 0, 0, 0, 8168, 8154, 1, 0, 0, 0, 8168, 8162, 1, 0, 0, 0, 8168, 8167, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8171, 5, 7, 0, 0, 8171, 881, 1, 0, 0, 0, 8172, 8174, 5, 71, 0, 0, 8173, 8175, 5, 346, 0, 0, 8174, 8173, 1, 0, 0, 0, 8174, 8175, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8177, 3, 724, 362, 0, 8177, 883, 1, 0, 0, 0, 8178, 8210, 5, 520, 0, 0, 8179, 8184, 3, 916, 458, 0, 8180, 8182, 5, 269, 0, 0, 8181, 8180, 1, 0, 0, 0, 8181, 8182, 1, 0, 0, 0, 8182, 8183, 1, 0, 0, 0, 8183, 8185, 5, 324, 0, 0, 8184, 8181, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8194, 5, 62, 0, 0, 8187, 8195, 3, 554, 277, 0, 8188, 8189, 5, 202, 0, 0, 8189, 8192, 3, 924, 462, 0, 8190, 8191, 5, 100, 0, 0, 8191, 8193, 3, 724, 362, 0, 8192, 8190, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8195, 1, 0, 0, 0, 8194, 8187, 1, 0, 0, 0, 8194, 8188, 1, 0, 0, 0, 8195, 8211, 1, 0, 0, 0, 8196, 8208, 3, 812, 406, 0, 8197, 8198, 5, 2, 0, 0, 8198, 8203, 3, 886, 443, 0, 8199, 8200, 5, 6, 0, 0, 8200, 8202, 3, 886, 443, 0, 8201, 8199, 1, 0, 0, 0, 8202, 8205, 1, 0, 0, 0, 8203, 8201, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8206, 1, 0, 0, 0, 8205, 8203, 1, 0, 0, 0, 8206, 8207, 5, 3, 0, 0, 8207, 8209, 1, 0, 0, 0, 8208, 8197, 1, 0, 0, 0, 8208, 8209, 1, 0, 0, 0, 8209, 8211, 1, 0, 0, 0, 8210, 8179, 1, 0, 0, 0, 8210, 8196, 1, 0, 0, 0, 8211, 8212, 1, 0, 0, 0, 8212, 8213, 5, 7, 0, 0, 8213, 885, 1, 0, 0, 0, 8214, 8215, 3, 812, 406, 0, 8215, 8216, 5, 20, 0, 0, 8216, 8218, 1, 0, 0, 0, 8217, 8214, 1, 0, 0, 0, 8217, 8218, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8220, 3, 668, 334, 0, 8220, 887, 1, 0, 0, 0, 8221, 8223, 5, 61, 0, 0, 8222, 8224, 3, 890, 445, 0, 8223, 8222, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8226, 1, 0, 0, 0, 8225, 8227, 3, 326, 163, 0, 8226, 8225, 1, 0, 0, 0, 8226, 8227, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8229, 3, 916, 458, 0, 8229, 8230, 5, 71, 0, 0, 8230, 8231, 3, 724, 362, 0, 8231, 8232, 5, 7, 0, 0, 8232, 889, 1, 0, 0, 0, 8233, 8248, 5, 268, 0, 0, 8234, 8248, 5, 293, 0, 0, 8235, 8248, 5, 207, 0, 0, 8236, 8248, 5, 249, 0, 0, 8237, 8239, 7, 51, 0, 0, 8238, 8237, 1, 0, 0, 0, 8238, 8239, 1, 0, 0, 0, 8239, 8240, 1, 0, 0, 0, 8240, 8248, 3, 668, 334, 0, 8241, 8248, 5, 30, 0, 0, 8242, 8245, 7, 118, 0, 0, 8243, 8246, 3, 668, 334, 0, 8244, 8246, 5, 30, 0, 0, 8245, 8243, 1, 0, 0, 0, 8245, 8244, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8248, 1, 0, 0, 0, 8247, 8233, 1, 0, 0, 0, 8247, 8234, 1, 0, 0, 0, 8247, 8235, 1, 0, 0, 0, 8247, 8236, 1, 0, 0, 0, 8247, 8238, 1, 0, 0, 0, 8247, 8241, 1, 0, 0, 0, 8247, 8242, 1, 0, 0, 0, 8248, 891, 1, 0, 0, 0, 8249, 8251, 5, 265, 0, 0, 8250, 8252, 3, 890, 445, 0, 8251, 8250, 1, 0, 0, 0, 8251, 8252, 1, 0, 0, 0, 8252, 8253, 1, 0, 0, 0, 8253, 8254, 3, 916, 458, 0, 8254, 8255, 5, 7, 0, 0, 8255, 893, 1, 0, 0, 0, 8256, 8258, 3, 566, 283, 0, 8257, 8256, 1, 0, 0, 0, 8257, 8258, 1, 0, 0, 0, 8258, 8259, 1, 0, 0, 0, 8259, 8260, 5, 525, 0, 0, 8260, 8262, 5, 71, 0, 0, 8261, 8263, 5, 81, 0, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8266, 3, 768, 384, 0, 8265, 8267, 5, 9, 0, 0, 8266, 8265, 1, 0, 0, 0, 8266, 8267, 1, 0, 0, 0, 8267, 8272, 1, 0, 0, 0, 8268, 8270, 5, 36, 0, 0, 8269, 8268, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 1, 0, 0, 0, 8271, 8273, 3, 812, 406, 0, 8272, 8269, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8275, 5, 100, 0, 0, 8275, 8276, 3, 896, 448, 0, 8276, 8277, 5, 80, 0, 0, 8277, 8279, 3, 668, 334, 0, 8278, 8280, 3, 898, 449, 0, 8279, 8278, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8279, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8284, 1, 0, 0, 0, 8283, 8285, 3, 540, 270, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 895, 1, 0, 0, 0, 8286, 8288, 5, 81, 0, 0, 8287, 8286, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8291, 3, 768, 384, 0, 8290, 8292, 5, 9, 0, 0, 8291, 8290, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8298, 1, 0, 0, 0, 8293, 8296, 3, 558, 279, 0, 8294, 8296, 3, 602, 301, 0, 8295, 8293, 1, 0, 0, 0, 8295, 8294, 1, 0, 0, 0, 8296, 8298, 1, 0, 0, 0, 8297, 8287, 1, 0, 0, 0, 8297, 8295, 1, 0, 0, 0, 8298, 8303, 1, 0, 0, 0, 8299, 8301, 5, 36, 0, 0, 8300, 8299, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8302, 1, 0, 0, 0, 8302, 8304, 3, 812, 406, 0, 8303, 8300, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 897, 1, 0, 0, 0, 8305, 8306, 5, 102, 0, 0, 8306, 8309, 5, 526, 0, 0, 8307, 8308, 5, 33, 0, 0, 8308, 8310, 3, 668, 334, 0, 8309, 8307, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8316, 5, 93, 0, 0, 8312, 8317, 3, 902, 451, 0, 8313, 8317, 5, 182, 0, 0, 8314, 8315, 5, 57, 0, 0, 8315, 8317, 5, 270, 0, 0, 8316, 8312, 1, 0, 0, 0, 8316, 8313, 1, 0, 0, 0, 8316, 8314, 1, 0, 0, 0, 8317, 8332, 1, 0, 0, 0, 8318, 8319, 5, 102, 0, 0, 8319, 8320, 5, 77, 0, 0, 8320, 8323, 5, 526, 0, 0, 8321, 8322, 5, 33, 0, 0, 8322, 8324, 3, 668, 334, 0, 8323, 8321, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8329, 5, 93, 0, 0, 8326, 8330, 3, 900, 450, 0, 8327, 8328, 5, 57, 0, 0, 8328, 8330, 5, 270, 0, 0, 8329, 8326, 1, 0, 0, 0, 8329, 8327, 1, 0, 0, 0, 8330, 8332, 1, 0, 0, 0, 8331, 8305, 1, 0, 0, 0, 8331, 8318, 1, 0, 0, 0, 8332, 899, 1, 0, 0, 0, 8333, 8335, 5, 241, 0, 0, 8334, 8336, 3, 138, 69, 0, 8335, 8334, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 8340, 1, 0, 0, 0, 8337, 8338, 5, 463, 0, 0, 8338, 8339, 7, 77, 0, 0, 8339, 8341, 5, 450, 0, 0, 8340, 8337, 1, 0, 0, 0, 8340, 8341, 1, 0, 0, 0, 8341, 8342, 1, 0, 0, 0, 8342, 8343, 3, 904, 452, 0, 8343, 901, 1, 0, 0, 0, 8344, 8345, 5, 369, 0, 0, 8345, 8363, 5, 333, 0, 0, 8346, 8347, 3, 794, 397, 0, 8347, 8348, 5, 10, 0, 0, 8348, 8349, 3, 906, 453, 0, 8349, 8364, 1, 0, 0, 0, 8350, 8351, 3, 138, 69, 0, 8351, 8352, 5, 10, 0, 0, 8352, 8353, 5, 2, 0, 0, 8353, 8358, 3, 906, 453, 0, 8354, 8355, 5, 6, 0, 0, 8355, 8357, 3, 906, 453, 0, 8356, 8354, 1, 0, 0, 0, 8357, 8360, 1, 0, 0, 0, 8358, 8356, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8361, 1, 0, 0, 0, 8360, 8358, 1, 0, 0, 0, 8361, 8362, 5, 3, 0, 0, 8362, 8364, 1, 0, 0, 0, 8363, 8346, 1, 0, 0, 0, 8363, 8350, 1, 0, 0, 0, 8364, 8365, 1, 0, 0, 0, 8365, 8363, 1, 0, 0, 0, 8365, 8366, 1, 0, 0, 0, 8366, 903, 1, 0, 0, 0, 8367, 8368, 5, 422, 0, 0, 8368, 8369, 5, 2, 0, 0, 8369, 8374, 3, 906, 453, 0, 8370, 8371, 5, 6, 0, 0, 8371, 8373, 3, 906, 453, 0, 8372, 8370, 1, 0, 0, 0, 8373, 8376, 1, 0, 0, 0, 8374, 8372, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 8377, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8377, 8378, 5, 3, 0, 0, 8378, 8382, 1, 0, 0, 0, 8379, 8380, 5, 53, 0, 0, 8380, 8382, 5, 422, 0, 0, 8381, 8367, 1, 0, 0, 0, 8381, 8379, 1, 0, 0, 0, 8382, 905, 1, 0, 0, 0, 8383, 8386, 3, 582, 291, 0, 8384, 8386, 5, 53, 0, 0, 8385, 8383, 1, 0, 0, 0, 8385, 8384, 1, 0, 0, 0, 8386, 907, 1, 0, 0, 0, 8387, 8388, 5, 157, 0, 0, 8388, 8389, 3, 916, 458, 0, 8389, 8390, 5, 7, 0, 0, 8390, 909, 1, 0, 0, 0, 8391, 8392, 5, 78, 0, 0, 8392, 8393, 5, 7, 0, 0, 8393, 911, 1, 0, 0, 0, 8394, 8400, 7, 68, 0, 0, 8395, 8397, 5, 33, 0, 0, 8396, 8398, 5, 269, 0, 0, 8397, 8396, 1, 0, 0, 0, 8397, 8398, 1, 0, 0, 0, 8398, 8399, 1, 0, 0, 0, 8399, 8401, 5, 153, 0, 0, 8400, 8395, 1, 0, 0, 0, 8400, 8401, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8403, 5, 7, 0, 0, 8403, 913, 1, 0, 0, 0, 8404, 8405, 5, 333, 0, 0, 8405, 8406, 3, 310, 155, 0, 8406, 8407, 5, 94, 0, 0, 8407, 8408, 5, 53, 0, 0, 8408, 8409, 5, 7, 0, 0, 8409, 8417, 1, 0, 0, 0, 8410, 8413, 5, 313, 0, 0, 8411, 8414, 3, 310, 155, 0, 8412, 8414, 5, 30, 0, 0, 8413, 8411, 1, 0, 0, 0, 8413, 8412, 1, 0, 0, 0, 8414, 8415, 1, 0, 0, 0, 8415, 8417, 5, 7, 0, 0, 8416, 8404, 1, 0, 0, 0, 8416, 8410, 1, 0, 0, 0, 8417, 915, 1, 0, 0, 0, 8418, 8421, 3, 812, 406, 0, 8419, 8421, 5, 28, 0, 0, 8420, 8418, 1, 0, 0, 0, 8420, 8419, 1, 0, 0, 0, 8421, 917, 1, 0, 0, 0, 8422, 8439, 5, 517, 0, 0, 8423, 8424, 5, 102, 0, 0, 8424, 8429, 3, 920, 460, 0, 8425, 8426, 5, 82, 0, 0, 8426, 8428, 3, 920, 460, 0, 8427, 8425, 1, 0, 0, 0, 8428, 8431, 1, 0, 0, 0, 8429, 8427, 1, 0, 0, 0, 8429, 8430, 1, 0, 0, 0, 8430, 8432, 1, 0, 0, 0, 8431, 8429, 1, 0, 0, 0, 8432, 8436, 5, 93, 0, 0, 8433, 8435, 3, 840, 420, 0, 8434, 8433, 1, 0, 0, 0, 8435, 8438, 1, 0, 0, 0, 8436, 8434, 1, 0, 0, 0, 8436, 8437, 1, 0, 0, 0, 8437, 8440, 1, 0, 0, 0, 8438, 8436, 1, 0, 0, 0, 8439, 8423, 1, 0, 0, 0, 8440, 8441, 1, 0, 0, 0, 8441, 8439, 1, 0, 0, 0, 8441, 8442, 1, 0, 0, 0, 8442, 919, 1, 0, 0, 0, 8443, 8447, 3, 922, 461, 0, 8444, 8445, 5, 511, 0, 0, 8445, 8447, 3, 802, 401, 0, 8446, 8443, 1, 0, 0, 0, 8446, 8444, 1, 0, 0, 0, 8447, 921, 1, 0, 0, 0, 8448, 8451, 3, 812, 406, 0, 8449, 8451, 3, 822, 411, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8449, 1, 0, 0, 0, 8451, 923, 1, 0, 0, 0, 8452, 8454, 3, 750, 375, 0, 8453, 8452, 1, 0, 0, 0, 8453, 8454, 1, 0, 0, 0, 8454, 8456, 1, 0, 0, 0, 8455, 8457, 3, 574, 287, 0, 8456, 8455, 1, 0, 0, 0, 8456, 8457, 1, 0, 0, 0, 8457, 8459, 1, 0, 0, 0, 8458, 8460, 3, 604, 302, 0, 8459, 8458, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8462, 1, 0, 0, 0, 8461, 8463, 3, 632, 316, 0, 8462, 8461, 1, 0, 0, 0, 8462, 8463, 1, 0, 0, 0, 8463, 8465, 1, 0, 0, 0, 8464, 8466, 3, 594, 297, 0, 8465, 8464, 1, 0, 0, 0, 8465, 8466, 1, 0, 0, 0, 8466, 8469, 1, 0, 0, 0, 8467, 8468, 5, 67, 0, 0, 8468, 8470, 3, 668, 334, 0, 8469, 8467, 1, 0, 0, 0, 8469, 8470, 1, 0, 0, 0, 8470, 8472, 1, 0, 0, 0, 8471, 8473, 3, 696, 348, 0, 8472, 8471, 1, 0, 0, 0, 8472, 8473, 1, 0, 0, 0, 8473, 925, 1, 0, 0, 0, 1190, 929, 936, 1056, 1058, 1067, 1072, 1078, 1113, 1123, 1129, 1134, 1141, 1146, 1153, 1164, 1172, 1176, 1188, 1194, 1200, 1204, 1209, 1213, 1226, 1236, 1238, 1244, 1249, 1262, 1265, 1270, 1275, 1286, 1290, 1302, 1306, 1309, 1313, 1325, 1343, 1350, 1358, 1363, 1370, 1378, 1384, 1392, 1400, 1404, 1418, 1423, 1428, 1440, 1446, 1458, 1463, 1473, 1479, 1484, 1493, 1500, 1505, 1510, 1520, 1525, 1530, 1537, 1541, 1555, 1561, 1567, 1572, 1579, 1588, 1597, 1606, 1615, 1619, 1631, 1639, 1649, 1669, 1674, 1677, 1684, 1687, 1691, 1695, 1698, 1703, 1708, 1712, 1721, 1727, 1731, 1740, 1743, 1749, 1758, 1770, 1774, 1778, 1783, 1786, 1792, 1794, 1796, 1800, 1806, 1810, 1815, 1820, 1824, 1827, 1834, 1847, 1860, 1885, 1895, 1902, 1907, 1911, 1918, 1923, 1926, 1928, 1933, 1937, 1941, 1945, 1950, 1953, 1957, 1960, 1964, 1972, 1977, 1980, 1984, 1990, 1999, 2003, 2013, 2018, 2022, 2026, 2028, 2030, 2037, 2042, 2046, 2051, 2063, 2068, 2072, 2076, 2081, 2085, 2088, 2091, 2094, 2097, 2100, 2105, 2108, 2111, 2114, 2117, 2120, 2126, 2130, 2133, 2136, 2139, 2142, 2144, 2151, 2159, 2169, 2174, 2184, 2187, 2192, 2197, 2202, 2205, 2210, 2219, 2221, 2225, 2228, 2232, 2237, 2242, 2246, 2249, 2253, 2256, 2261, 2264, 2269, 2272, 2276, 2279, 2282, 2287, 2290, 2298, 2310, 2314, 2321, 2326, 2329, 2332, 2335, 2340, 2351, 2357, 2361, 2364, 2367, 2372, 2379, 2382, 2386, 2394, 2399, 2402, 2405, 2412, 2417, 2426, 2429, 2432, 2437, 2440, 2452, 2462, 2479, 2483, 2487, 2489, 2506, 2508, 2524, 2535, 2538, 2541, 2550, 2559, 2575, 2578, 2581, 2589, 2593, 2600, 2609, 2613, 2619, 2623, 2626, 2629, 2632, 2635, 2641, 2645, 2650, 2654, 2657, 2660, 2663, 2668, 2674, 2678, 2682, 2686, 2692, 2694, 2699, 2705, 2711, 2715, 2730, 2735, 2738, 2740, 2743, 2747, 2751, 2754, 2757, 2765, 2771, 2773, 2779, 2784, 2789, 2793, 2800, 2802, 2813, 2852, 2862, 2864, 2867, 2871, 2875, 2885, 2887, 2893, 2895, 2904, 2916, 2930, 2935, 2938, 2945, 2950, 2958, 2960, 2966, 2971, 2975, 2980, 2986, 2993, 2999, 3001, 3010, 3016, 3024, 3030, 3035, 3040, 3048, 3063, 3065, 3069, 3073, 3076, 3079, 3088, 3091, 3094, 3100, 3106, 3110, 3122, 3128, 3131, 3136, 3140, 3147, 3157, 3159, 3183, 3195, 3200, 3202, 3206, 3209, 3212, 3222, 3225, 3235, 3240, 3245, 3248, 3251, 3259, 3265, 3272, 3280, 3283, 3294, 3298, 3304, 3311, 3314, 3323, 3337, 3340, 3354, 3365, 3368, 3380, 3385, 3398, 3403, 3416, 3425, 3428, 3431, 3438, 3441, 3453, 3459, 3461, 3469, 3477, 3485, 3497, 3502, 3513, 3524, 3532, 3540, 3547, 3554, 3556, 3559, 3564, 3569, 3588, 3597, 3600, 3627, 3636, 3639, 3643, 3647, 3651, 3658, 3662, 3666, 3670, 3674, 3679, 3683, 3688, 3694, 3699, 3706, 3710, 3716, 3720, 3725, 3733, 3739, 3744, 3751, 3756, 3760, 3765, 3771, 3778, 3783, 3790, 3795, 3802, 3806, 3814, 3818, 3820, 3823, 3828, 3838, 3853, 3856, 3864, 3871, 3876, 3882, 3886, 3893, 3898, 3901, 3904, 3908, 3917, 3935, 3938, 3970, 3975, 3981, 4001, 4006, 4012, 4015, 4019, 4023, 4029, 4032, 4036, 4040, 4045, 4048, 4051, 4054, 4067, 4073, 4081, 4088, 4093, 4096, 4103, 4106, 4114, 4117, 4122, 4129, 4132, 4152, 4164, 4167, 4173, 4178, 4187, 4195, 4200, 4206, 4213, 4221, 4224, 4235, 4237, 4251, 4257, 4265, 4267, 4273, 4277, 4280, 4283, 4288, 4293, 4297, 4300, 4303, 4306, 4309, 4317, 4328, 4331, 4334, 4339, 4342, 4346, 4350, 4356, 4364, 4367, 4380, 4385, 4387, 4392, 4399, 4406, 4415, 4423, 4431, 4438, 4446, 4453, 4461, 4465, 4469, 4471, 4477, 4482, 4486, 4493, 4498, 4503, 4508, 4510, 4520, 4530, 4546, 4564, 4576, 4583, 4598, 4603, 4606, 4611, 4616, 4621, 4624, 4627, 4632, 4639, 4643, 4648, 4655, 4659, 4665, 4674, 4683, 4695, 4697, 4710, 4716, 4720, 4722, 4729, 4742, 4749, 4751, 4767, 4771, 4775, 4780, 4785, 4790, 4795, 4798, 4810, 4863, 4872, 4876, 4885, 4889, 4898, 4902, 4907, 4910, 4914, 4919, 4921, 4930, 4935, 4946, 4950, 4964, 4972, 5010, 5012, 5031, 5034, 5061, 5065, 5069, 5073, 5077, 5080, 5095, 5102, 5116, 5129, 5154, 5173, 5188, 5204, 5211, 5222, 5225, 5244, 5247, 5260, 5264, 5284, 5296, 5300, 5322, 5326, 5336, 5340, 5346, 5350, 5354, 5358, 5365, 5370, 5381, 5385, 5388, 5393, 5399, 5410, 5414, 5417, 5421, 5425, 5428, 5438, 5441, 5445, 5450, 5456, 5459, 5464, 5467, 5474, 5476, 5482, 5486, 5495, 5500, 5502, 5512, 5515, 5520, 5528, 5531, 5536, 5538, 5540, 5546, 5563, 5569, 5582, 5588, 5592, 5597, 5627, 5642, 5647, 5651, 5664, 5668, 5670, 5679, 5685, 5687, 5691, 5694, 5697, 5700, 5703, 5705, 5708, 5712, 5720, 5725, 5728, 5734, 5738, 5742, 5747, 5749, 5753, 5757, 5764, 5770, 5774, 5776, 5778, 5791, 5799, 5807, 5818, 5828, 5833, 5837, 5841, 5848, 5851, 5853, 5861, 5865, 5868, 5875, 5882, 5887, 5894, 5897, 5899, 5902, 5908, 5913, 5917, 5924, 5934, 5941, 5944, 5947, 5951, 5962, 5965, 5968, 5971, 5974, 5981, 5984, 5987, 5994, 6006, 6013, 6015, 6020, 6025, 6027, 6033, 6040, 6045, 6050, 6054, 6058, 6062, 6064, 6068, 6072, 6075, 6078, 6080, 6090, 6092, 6097, 6101, 6106, 6110, 6117, 6122, 6126, 6129, 6135, 6138, 6157, 6164, 6168, 6171, 6175, 6179, 6182, 6185, 6190, 6199, 6206, 6210, 6214, 6218, 6221, 6223, 6228, 6232, 6237, 6243, 6250, 6255, 6260, 6269, 6276, 6284, 6295, 6300, 6304, 6307, 6311, 6316, 6320, 6325, 6333, 6344, 6349, 6353, 6356, 6359, 6361, 6364, 6367, 6370, 6374, 6378, 6382, 6384, 6393, 6398, 6404, 6408, 6410, 6417, 6422, 6428, 6430, 6434, 6441, 6446, 6449, 6455, 6459, 6465, 6474, 6480, 6482, 6487, 6490, 6499, 6506, 6508, 6515, 6520, 6523, 6533, 6544, 6549, 6553, 6561, 6571, 6578, 6584, 6595, 6601, 6611, 6620, 6624, 6627, 6629, 6631, 6635, 6643, 6646, 6651, 6656, 6663, 6665, 6671, 6675, 6678, 6683, 6686, 6688, 6694, 6703, 6709, 6712, 6720, 6723, 6727, 6733, 6735, 6738, 6742, 6747, 6754, 6761, 6763, 6769, 6771, 6776, 6778, 6782, 6791, 6795, 6803, 6805, 6819, 6822, 6830, 6839, 6845, 6850, 6858, 6860, 6865, 6869, 6874, 6879, 6885, 6901, 6903, 6912, 6927, 6932, 6935, 6941, 6946, 6959, 6964, 6968, 6975, 6994, 7006, 7011, 7019, 7021, 7023, 7032, 7035, 7040, 7045, 7048, 7059, 7067, 7072, 7074, 7077, 7081, 7092, 7113, 7121, 7134, 7144, 7150, 7156, 7159, 7162, 7188, 7190, 7211, 7221, 7234, 7239, 7243, 7245, 7257, 7264, 7270, 7276, 7280, 7291, 7301, 7305, 7310, 7313, 7316, 7325, 7336, 7338, 7342, 7347, 7356, 7361, 7369, 7379, 7387, 7391, 7394, 7401, 7409, 7413, 7420, 7428, 7430, 7439, 7442, 7454, 7463, 7470, 7479, 7489, 7494, 7498, 7500, 7503, 7508, 7513, 7521, 7529, 7532, 7539, 7547, 7555, 7563, 7580, 7587, 7595, 7612, 7618, 7624, 7632, 7638, 7643, 7651, 7656, 7659, 7668, 7675, 7680, 7684, 7689, 7695, 7700, 7708, 7763, 7770, 7776, 7778, 7780, 7782, 7788, 7792, 7796, 7807, 7810, 7814, 7818, 7822, 7825, 7828, 7831, 7840, 7845, 7849, 7882, 7892, 7896, 7902, 7907, 7916, 7924, 7935, 7943, 7952, 7961, 7966, 7970, 7980, 7985, 7993, 7998, 8001, 8008, 8014, 8022, 8030, 8033, 8040, 8042, 8045, 8051, 8060, 8064, 8078, 8081, 8083, 8089, 8099, 8101, 8103, 8111, 8114, 8117, 8127, 8135, 8141, 8147, 8154, 8158, 8162, 8165, 8168, 8174, 8181, 8184, 8192, 8194, 8203, 8208, 8210, 8217, 8223, 8226, 8238, 8245, 8247, 8251, 8257, 8262, 8266, 8269, 8272, 8281, 8284, 8287, 8291, 8295, 8297, 8300, 8303, 8309, 8316, 8323, 8329, 8331, 8335, 8340, 8358, 8363, 8365, 8374, 8381, 8385, 8397, 8400, 8413, 8416, 8420, 8429, 8436, 8441, 8446, 8450, 8453, 8456, 8459, 8462, 8465, 8469, 8472] \ No newline at end of file +[4, 1, 592, 8485, 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, 1, 0, 5, 0, 932, 8, 0, 10, 0, 12, 0, 935, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 941, 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, 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, 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, 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, 1, 2, 1, 2, 1, 2, 3, 2, 1061, 8, 2, 3, 2, 1063, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1072, 8, 4, 1, 4, 5, 4, 1075, 8, 4, 10, 4, 12, 4, 1078, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1083, 8, 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, 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, 1118, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1128, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1134, 8, 7, 1, 7, 5, 7, 1137, 8, 7, 10, 7, 12, 7, 1140, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1146, 8, 8, 1, 8, 5, 8, 1149, 8, 8, 10, 8, 12, 8, 1152, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1158, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1169, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1175, 8, 11, 10, 11, 12, 11, 1178, 9, 11, 1, 11, 3, 11, 1181, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1193, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1199, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1205, 8, 12, 1, 12, 1, 12, 3, 12, 1209, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1214, 8, 12, 1, 12, 1, 12, 3, 12, 1218, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1231, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1241, 8, 12, 3, 12, 1243, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1249, 8, 13, 1, 13, 5, 13, 1252, 8, 13, 10, 13, 12, 13, 1255, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1267, 8, 15, 1, 15, 3, 15, 1270, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 5, 15, 1278, 8, 15, 10, 15, 12, 15, 1281, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1291, 8, 17, 1, 18, 1, 18, 3, 18, 1295, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1307, 8, 19, 1, 20, 1, 20, 3, 20, 1311, 8, 20, 1, 20, 3, 20, 1314, 8, 20, 1, 20, 1, 20, 3, 20, 1318, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1330, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 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, 1348, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1353, 8, 22, 10, 22, 12, 22, 1356, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1361, 8, 23, 10, 23, 12, 23, 1364, 9, 23, 1, 24, 1, 24, 3, 24, 1368, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1375, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1383, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1389, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1397, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 29, 1, 29, 3, 29, 1409, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1423, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1428, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1433, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1445, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1451, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1463, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1468, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1484, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1489, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1498, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1505, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1510, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1530, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 38, 1, 38, 3, 38, 1546, 8, 38, 1, 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, 1560, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1577, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1582, 8, 39, 10, 39, 12, 39, 1585, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1593, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1602, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1609, 8, 42, 10, 42, 12, 42, 1612, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1620, 8, 42, 1, 42, 1, 42, 3, 42, 1624, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1636, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1674, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1679, 8, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 3, 42, 1696, 8, 42, 1, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 3, 42, 1703, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 3, 42, 1717, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1726, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1732, 8, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1745, 8, 42, 1, 42, 3, 42, 1748, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1754, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1763, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1773, 8, 42, 11, 42, 12, 42, 1774, 1, 42, 1, 42, 3, 42, 1779, 8, 42, 1, 42, 1, 42, 3, 42, 1783, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1788, 8, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1797, 8, 42, 4, 42, 1799, 8, 42, 11, 42, 12, 42, 1800, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1811, 8, 42, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1820, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 3, 42, 1829, 8, 42, 1, 42, 3, 42, 1832, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1839, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1850, 8, 46, 10, 46, 12, 46, 1853, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1865, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1898, 8, 50, 10, 50, 12, 50, 1901, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1907, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1912, 8, 51, 1, 51, 1, 51, 3, 51, 1916, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1923, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1928, 8, 51, 1, 51, 3, 51, 1931, 8, 51, 3, 51, 1933, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1938, 8, 52, 1, 53, 1, 53, 3, 53, 1942, 8, 53, 1, 53, 1, 53, 3, 53, 1946, 8, 53, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1955, 8, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 3, 53, 1962, 8, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 1, 53, 3, 53, 1969, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1982, 8, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 3, 53, 1989, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1995, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 1, 54, 3, 54, 2008, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2023, 8, 54, 5, 54, 2025, 8, 54, 10, 54, 12, 54, 2028, 9, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2042, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 5, 55, 2049, 8, 55, 10, 55, 12, 55, 2052, 9, 55, 1, 55, 1, 55, 3, 55, 2056, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2066, 8, 56, 10, 56, 12, 56, 2069, 9, 56, 1, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 57, 1, 57, 3, 57, 2077, 8, 57, 1, 57, 1, 57, 3, 57, 2081, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 1, 57, 3, 57, 2090, 8, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 3, 57, 2116, 8, 57, 1, 57, 3, 57, 2119, 8, 57, 1, 57, 3, 57, 2122, 8, 57, 1, 57, 3, 57, 2125, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 3, 57, 2138, 8, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 3, 57, 2144, 8, 57, 1, 57, 3, 57, 2147, 8, 57, 3, 57, 2149, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2156, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2162, 8, 59, 10, 59, 12, 59, 2165, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2172, 8, 60, 10, 60, 12, 60, 2175, 9, 60, 1, 61, 1, 61, 3, 61, 2179, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2187, 8, 61, 10, 61, 12, 61, 2190, 9, 61, 3, 61, 2192, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2197, 8, 62, 1, 62, 5, 62, 2200, 8, 62, 10, 62, 12, 62, 2203, 9, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 3, 62, 2210, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2215, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2224, 8, 63, 3, 63, 2226, 8, 63, 1, 63, 1, 63, 3, 63, 2230, 8, 63, 1, 63, 3, 63, 2233, 8, 63, 1, 63, 1, 63, 3, 63, 2237, 8, 63, 1, 63, 5, 63, 2240, 8, 63, 10, 63, 12, 63, 2243, 9, 63, 1, 64, 1, 64, 3, 64, 2247, 8, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 64, 3, 64, 2254, 8, 64, 1, 64, 1, 64, 3, 64, 2258, 8, 64, 1, 65, 3, 65, 2261, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2266, 8, 65, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2313, 8, 65, 11, 65, 12, 65, 2314, 1, 65, 1, 65, 3, 65, 2319, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2326, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2331, 8, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 3, 65, 2337, 8, 65, 1, 65, 3, 65, 2340, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2345, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2354, 8, 68, 10, 68, 12, 68, 2357, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2362, 8, 68, 1, 68, 1, 68, 3, 68, 2366, 8, 68, 1, 68, 3, 68, 2369, 8, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 5, 68, 2375, 8, 68, 10, 68, 12, 68, 2378, 9, 68, 1, 68, 1, 68, 5, 68, 2382, 8, 68, 10, 68, 12, 68, 2385, 9, 68, 3, 68, 2387, 8, 68, 1, 68, 1, 68, 3, 68, 2391, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2397, 8, 68, 10, 68, 12, 68, 2400, 9, 68, 1, 68, 1, 68, 3, 68, 2404, 8, 68, 1, 68, 3, 68, 2407, 8, 68, 1, 68, 3, 68, 2410, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 5, 68, 2420, 8, 68, 10, 68, 12, 68, 2423, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2431, 8, 68, 1, 68, 3, 68, 2434, 8, 68, 1, 68, 3, 68, 2437, 8, 68, 1, 68, 5, 68, 2440, 8, 68, 10, 68, 12, 68, 2443, 9, 68, 3, 68, 2445, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2455, 8, 70, 10, 70, 12, 70, 2458, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2465, 8, 71, 10, 71, 12, 71, 2468, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2484, 8, 74, 1, 75, 1, 75, 3, 75, 2488, 8, 75, 1, 75, 1, 75, 3, 75, 2492, 8, 75, 3, 75, 2494, 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, 78, 1, 78, 1, 78, 3, 78, 2511, 8, 78, 3, 78, 2513, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2527, 8, 80, 10, 80, 12, 80, 2530, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2540, 8, 81, 1, 81, 3, 81, 2543, 8, 81, 1, 81, 3, 81, 2546, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2555, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2580, 8, 88, 1, 88, 3, 88, 2583, 8, 88, 1, 88, 3, 88, 2586, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2592, 8, 88, 10, 88, 12, 88, 2595, 9, 88, 1, 88, 3, 88, 2598, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2605, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2614, 8, 90, 1, 90, 1, 90, 3, 90, 2618, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 91, 1, 91, 3, 91, 2628, 8, 91, 1, 91, 3, 91, 2631, 8, 91, 1, 91, 3, 91, 2634, 8, 91, 1, 91, 3, 91, 2637, 8, 91, 1, 91, 3, 91, 2640, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2646, 8, 92, 1, 93, 1, 93, 3, 93, 2650, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2655, 8, 93, 1, 93, 1, 93, 3, 93, 2659, 8, 93, 1, 93, 3, 93, 2662, 8, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 3, 93, 2668, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2679, 8, 94, 1, 94, 1, 94, 3, 94, 2683, 8, 94, 1, 95, 1, 95, 3, 95, 2687, 8, 95, 1, 95, 1, 95, 3, 95, 2691, 8, 95, 1, 95, 1, 95, 4, 95, 2695, 8, 95, 11, 95, 12, 95, 2696, 3, 95, 2699, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2704, 8, 96, 1, 96, 1, 96, 4, 96, 2708, 8, 96, 11, 96, 12, 96, 2709, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2716, 8, 97, 1, 97, 1, 97, 3, 97, 2720, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2735, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2740, 8, 97, 1, 97, 3, 97, 2743, 8, 97, 3, 97, 2745, 8, 97, 1, 98, 3, 98, 2748, 8, 98, 1, 98, 1, 98, 3, 98, 2752, 8, 98, 1, 99, 1, 99, 3, 99, 2756, 8, 99, 1, 99, 3, 99, 2759, 8, 99, 1, 99, 3, 99, 2762, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2776, 8, 99, 3, 99, 2778, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2784, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2789, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2794, 8, 101, 1, 101, 1, 101, 3, 101, 2798, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2805, 8, 101, 10, 101, 12, 101, 2808, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2816, 8, 102, 10, 102, 12, 102, 2819, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2857, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2865, 8, 104, 11, 104, 12, 104, 2866, 3, 104, 2869, 8, 104, 1, 104, 3, 104, 2872, 8, 104, 1, 105, 1, 105, 3, 105, 2876, 8, 105, 1, 105, 1, 105, 3, 105, 2880, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2888, 8, 106, 11, 106, 12, 106, 2889, 3, 106, 2892, 8, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2907, 8, 107, 10, 107, 12, 107, 2910, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2919, 8, 108, 10, 108, 12, 108, 2922, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2935, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2940, 8, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2955, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2963, 8, 113, 3, 113, 2965, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2976, 8, 114, 1, 114, 1, 114, 3, 114, 2980, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2985, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2991, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2998, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3004, 8, 114, 3, 114, 3006, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3015, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3021, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3035, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3040, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3053, 8, 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, 3, 118, 3068, 8, 118, 3, 118, 3070, 8, 118, 1, 118, 1, 118, 3, 118, 3074, 8, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 1, 118, 3, 118, 3081, 8, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3093, 8, 119, 1, 119, 3, 119, 3096, 8, 119, 1, 119, 3, 119, 3099, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3105, 8, 120, 1, 120, 1, 120, 5, 120, 3109, 8, 120, 10, 120, 12, 120, 3112, 9, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3127, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3133, 8, 120, 1, 121, 3, 121, 3136, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3141, 8, 121, 1, 121, 1, 121, 3, 121, 3145, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3152, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 3, 121, 3164, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3188, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3200, 8, 125, 1, 125, 4, 125, 3203, 8, 125, 11, 125, 12, 125, 3204, 3, 125, 3207, 8, 125, 1, 125, 1, 125, 3, 125, 3211, 8, 125, 1, 125, 3, 125, 3214, 8, 125, 1, 125, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 3, 125, 3230, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 5, 125, 3243, 8, 125, 10, 125, 12, 125, 3246, 9, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 3, 125, 3253, 8, 125, 1, 125, 3, 125, 3256, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3270, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3275, 8, 127, 10, 127, 12, 127, 3278, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 128, 3, 128, 3288, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3299, 8, 130, 1, 131, 1, 131, 3, 131, 3303, 8, 131, 1, 131, 1, 131, 5, 131, 3307, 8, 131, 10, 131, 12, 131, 3310, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3316, 8, 132, 1, 133, 3, 133, 3319, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3328, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3340, 8, 134, 10, 134, 12, 134, 3343, 9, 134, 3, 134, 3345, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3357, 8, 135, 10, 135, 12, 135, 3360, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3370, 8, 136, 1, 136, 3, 136, 3373, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3383, 8, 137, 10, 137, 12, 137, 3386, 9, 137, 1, 138, 1, 138, 3, 138, 3390, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3401, 8, 138, 10, 138, 12, 138, 3404, 9, 138, 1, 138, 1, 138, 3, 138, 3408, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3421, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3428, 8, 138, 10, 138, 12, 138, 3431, 9, 138, 3, 138, 3433, 8, 138, 1, 138, 3, 138, 3436, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3458, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3464, 8, 138, 3, 138, 3466, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3472, 8, 139, 10, 139, 12, 139, 3475, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3482, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3490, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3502, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3507, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3518, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3529, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3543, 8, 145, 10, 145, 12, 145, 3546, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3552, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3559, 8, 146, 3, 146, 3561, 8, 146, 1, 146, 3, 146, 3564, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3591, 8, 148, 10, 148, 12, 148, 3594, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3600, 8, 148, 10, 148, 12, 148, 3603, 9, 148, 3, 148, 3605, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3632, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3641, 8, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3661, 8, 151, 10, 151, 12, 151, 3664, 9, 151, 1, 151, 3, 151, 3667, 8, 151, 1, 151, 1, 151, 3, 151, 3671, 8, 151, 1, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3684, 8, 151, 1, 151, 1, 151, 3, 151, 3688, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3693, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3699, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3704, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3709, 8, 151, 10, 151, 12, 151, 3712, 9, 151, 1, 151, 3, 151, 3715, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3721, 8, 151, 1, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3730, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3744, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3749, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3756, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 3, 151, 3765, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3770, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3776, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3783, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3788, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3795, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3800, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 3, 151, 3811, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3817, 8, 151, 10, 151, 12, 151, 3820, 9, 151, 1, 151, 3, 151, 3823, 8, 151, 3, 151, 3825, 8, 151, 1, 152, 3, 152, 3828, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3833, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3858, 8, 153, 1, 153, 3, 153, 3861, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3874, 8, 154, 10, 154, 12, 154, 3877, 9, 154, 1, 155, 1, 155, 3, 155, 3881, 8, 155, 1, 156, 1, 156, 4, 156, 3885, 8, 156, 11, 156, 12, 156, 3886, 1, 157, 1, 157, 3, 157, 3891, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3896, 8, 157, 10, 157, 12, 157, 3899, 9, 157, 1, 157, 1, 157, 3, 157, 3903, 8, 157, 1, 157, 3, 157, 3906, 8, 157, 1, 158, 3, 158, 3909, 8, 158, 1, 158, 1, 158, 3, 158, 3913, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3922, 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, 1, 159, 3, 159, 3940, 8, 159, 1, 159, 3, 159, 3943, 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, 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, 3975, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3980, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3986, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4006, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4011, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4017, 8, 162, 1, 162, 3, 162, 4020, 8, 162, 1, 162, 1, 162, 3, 162, 4024, 8, 162, 1, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 3, 162, 4037, 8, 162, 1, 162, 1, 162, 3, 162, 4041, 8, 162, 1, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4050, 8, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 3, 162, 4056, 8, 162, 1, 162, 3, 162, 4059, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4072, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4078, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4091, 8, 166, 10, 166, 12, 166, 4094, 9, 166, 1, 166, 1, 166, 3, 166, 4098, 8, 166, 1, 166, 3, 166, 4101, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4106, 8, 166, 10, 166, 12, 166, 4109, 9, 166, 3, 166, 4111, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4119, 8, 168, 1, 168, 3, 168, 4122, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4127, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4134, 8, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4155, 8, 169, 10, 169, 12, 169, 4158, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4169, 8, 169, 1, 170, 3, 170, 4172, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4178, 8, 170, 1, 170, 5, 170, 4181, 8, 170, 10, 170, 12, 170, 4184, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4190, 8, 171, 10, 171, 12, 171, 4193, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4200, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4205, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4211, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4216, 8, 172, 10, 172, 12, 172, 4219, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4226, 8, 172, 1, 172, 3, 172, 4229, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4240, 8, 173, 10, 173, 12, 173, 4243, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4256, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4262, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 3, 174, 4272, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4278, 8, 176, 1, 176, 1, 176, 3, 176, 4282, 8, 176, 1, 176, 3, 176, 4285, 8, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 3, 176, 4302, 8, 176, 1, 176, 3, 176, 4305, 8, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 3, 176, 4311, 8, 176, 1, 176, 3, 176, 4314, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4320, 8, 177, 10, 177, 12, 177, 4323, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4333, 8, 178, 1, 178, 3, 178, 4336, 8, 178, 1, 178, 3, 178, 4339, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 3, 178, 4351, 8, 178, 1, 179, 1, 179, 3, 179, 4355, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4361, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4367, 8, 179, 10, 179, 12, 179, 4370, 9, 179, 3, 179, 4372, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4383, 8, 179, 10, 179, 12, 179, 4386, 9, 179, 1, 179, 1, 179, 3, 179, 4390, 8, 179, 3, 179, 4392, 8, 179, 1, 179, 4, 179, 4395, 8, 179, 11, 179, 12, 179, 4396, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4404, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4411, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4418, 8, 182, 10, 182, 12, 182, 4421, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4426, 8, 183, 10, 183, 12, 183, 4429, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4436, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4441, 8, 185, 10, 185, 12, 185, 4444, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4451, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4456, 8, 187, 10, 187, 12, 187, 4459, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4466, 8, 188, 1, 189, 1, 189, 3, 189, 4470, 8, 189, 1, 189, 1, 189, 3, 189, 4474, 8, 189, 3, 189, 4476, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4482, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4487, 8, 190, 1, 191, 1, 191, 3, 191, 4491, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4498, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4503, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4513, 8, 193, 3, 193, 4515, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4525, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4551, 8, 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, 5, 196, 4567, 8, 196, 10, 196, 12, 196, 4570, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4581, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4588, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4603, 8, 199, 1, 199, 4, 199, 4606, 8, 199, 11, 199, 12, 199, 4607, 1, 199, 3, 199, 4611, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4616, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4621, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 3, 200, 4632, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4637, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4642, 8, 201, 10, 201, 12, 201, 4645, 9, 201, 1, 201, 3, 201, 4648, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4653, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4658, 8, 202, 10, 202, 12, 202, 4661, 9, 202, 1, 202, 3, 202, 4664, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4670, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4679, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4686, 8, 204, 10, 204, 12, 204, 4689, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4700, 8, 206, 11, 206, 12, 206, 4701, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4715, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4721, 8, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 3, 207, 4727, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4734, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4747, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4754, 8, 209, 3, 209, 4756, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4770, 8, 211, 10, 211, 12, 211, 4773, 9, 211, 1, 211, 3, 211, 4776, 8, 211, 1, 211, 1, 211, 3, 211, 4780, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4785, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4815, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4868, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4877, 8, 213, 1, 213, 1, 213, 3, 213, 4881, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4890, 8, 213, 1, 213, 1, 213, 3, 213, 4894, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4903, 8, 213, 1, 213, 1, 213, 3, 213, 4907, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4912, 8, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 3, 213, 4919, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4924, 8, 213, 3, 213, 4926, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4935, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4940, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4951, 8, 213, 1, 213, 1, 213, 3, 213, 4955, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4969, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5015, 8, 213, 3, 213, 5017, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5036, 8, 214, 1, 214, 3, 214, 5039, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5066, 8, 215, 1, 215, 1, 215, 3, 215, 5070, 8, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 3, 215, 5085, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5100, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5107, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5119, 8, 217, 10, 217, 12, 217, 5122, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5134, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5159, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5178, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5193, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5209, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5216, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5227, 8, 221, 1, 221, 3, 221, 5230, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5247, 8, 222, 10, 222, 12, 222, 5250, 9, 222, 3, 222, 5252, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5263, 8, 223, 10, 223, 12, 223, 5266, 9, 223, 1, 223, 3, 223, 5269, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5289, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5299, 8, 224, 10, 224, 12, 224, 5302, 9, 224, 1, 224, 3, 224, 5305, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5327, 8, 224, 1, 225, 1, 225, 3, 225, 5331, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 3, 225, 5345, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 5, 225, 5357, 8, 225, 10, 225, 12, 225, 5360, 9, 225, 1, 225, 3, 225, 5363, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5370, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5375, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5386, 8, 230, 1, 231, 1, 231, 3, 231, 5390, 8, 231, 1, 231, 3, 231, 5393, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5404, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5415, 8, 231, 1, 231, 1, 231, 3, 231, 5419, 8, 231, 1, 231, 3, 231, 5422, 8, 231, 1, 231, 1, 231, 3, 231, 5426, 8, 231, 1, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 3, 231, 5433, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5443, 8, 233, 1, 233, 3, 233, 5446, 8, 233, 1, 234, 1, 234, 3, 234, 5450, 8, 234, 1, 234, 5, 234, 5453, 8, 234, 10, 234, 12, 234, 5456, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5461, 8, 235, 1, 235, 3, 235, 5464, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 3, 235, 5481, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 1, 235, 1, 235, 3, 235, 5491, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5500, 8, 237, 1, 237, 4, 237, 5503, 8, 237, 11, 237, 12, 237, 5504, 3, 237, 5507, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5517, 8, 238, 1, 238, 3, 238, 5520, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5533, 8, 239, 1, 239, 3, 239, 5536, 8, 239, 1, 239, 4, 239, 5539, 8, 239, 11, 239, 12, 239, 5540, 3, 239, 5543, 8, 239, 3, 239, 5545, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5551, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5568, 8, 243, 1, 243, 1, 243, 5, 243, 5572, 8, 243, 10, 243, 12, 243, 5575, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5587, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5593, 8, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5602, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 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, 5632, 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, 3, 246, 5647, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5652, 8, 246, 1, 247, 1, 247, 3, 247, 5656, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5669, 8, 248, 1, 248, 1, 248, 3, 248, 5673, 8, 248, 3, 248, 5675, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5682, 8, 248, 10, 248, 12, 248, 5685, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5690, 8, 248, 3, 248, 5692, 8, 248, 1, 249, 1, 249, 3, 249, 5696, 8, 249, 1, 249, 3, 249, 5699, 8, 249, 1, 249, 3, 249, 5702, 8, 249, 1, 249, 3, 249, 5705, 8, 249, 1, 249, 3, 249, 5708, 8, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 250, 1, 250, 3, 250, 5717, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5723, 8, 250, 10, 250, 12, 250, 5726, 9, 250, 1, 250, 1, 250, 3, 250, 5730, 8, 250, 1, 250, 3, 250, 5733, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5739, 8, 252, 1, 252, 1, 252, 3, 252, 5743, 8, 252, 1, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5752, 8, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 3, 254, 5758, 8, 254, 1, 255, 1, 255, 3, 255, 5762, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5767, 8, 256, 10, 256, 12, 256, 5770, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5775, 8, 257, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 3, 257, 5781, 8, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5796, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5802, 8, 259, 10, 259, 12, 259, 5805, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5812, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5821, 8, 261, 10, 261, 12, 261, 5824, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5833, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5838, 8, 263, 1, 263, 1, 263, 3, 263, 5842, 8, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5853, 8, 263, 1, 263, 3, 263, 5856, 8, 263, 3, 263, 5858, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5866, 8, 265, 1, 265, 1, 265, 3, 265, 5870, 8, 265, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5880, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5887, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5892, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5899, 8, 266, 1, 266, 3, 266, 5902, 8, 266, 3, 266, 5904, 8, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5913, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5918, 8, 267, 1, 267, 1, 267, 3, 267, 5922, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5927, 8, 268, 10, 268, 12, 268, 5930, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5939, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5946, 8, 271, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 3, 271, 5952, 8, 271, 1, 272, 1, 272, 3, 272, 5956, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5967, 8, 272, 1, 272, 3, 272, 5970, 8, 272, 1, 272, 3, 272, 5973, 8, 272, 1, 272, 3, 272, 5976, 8, 272, 1, 273, 3, 273, 5979, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5986, 8, 273, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 3, 273, 5992, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 5997, 8, 274, 10, 274, 12, 274, 6000, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6011, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6018, 8, 275, 3, 275, 6020, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6025, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6030, 8, 276, 10, 276, 12, 276, 6033, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6038, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6045, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6050, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 3, 279, 6059, 8, 279, 1, 279, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 3, 279, 6069, 8, 279, 1, 280, 1, 280, 3, 280, 6073, 8, 280, 1, 281, 1, 281, 3, 281, 6077, 8, 281, 1, 281, 3, 281, 6080, 8, 281, 1, 281, 3, 281, 6083, 8, 281, 3, 281, 6085, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6095, 8, 281, 3, 281, 6097, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6102, 8, 281, 5, 281, 6104, 8, 281, 10, 281, 12, 281, 6107, 9, 281, 1, 282, 1, 282, 3, 282, 6111, 8, 282, 1, 283, 1, 283, 3, 283, 6115, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6120, 8, 283, 10, 283, 12, 283, 6123, 9, 283, 1, 284, 1, 284, 3, 284, 6127, 8, 284, 1, 284, 1, 284, 3, 284, 6131, 8, 284, 1, 284, 3, 284, 6134, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6140, 8, 284, 1, 284, 3, 284, 6143, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6162, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6169, 8, 287, 1, 287, 1, 287, 3, 287, 6173, 8, 287, 1, 288, 3, 288, 6176, 8, 288, 1, 288, 1, 288, 3, 288, 6180, 8, 288, 1, 288, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 3, 288, 6187, 8, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6195, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6202, 8, 290, 10, 290, 12, 290, 6205, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6211, 8, 291, 1, 291, 1, 291, 3, 291, 6215, 8, 291, 1, 292, 1, 292, 3, 292, 6219, 8, 292, 1, 292, 1, 292, 3, 292, 6223, 8, 292, 1, 292, 3, 292, 6226, 8, 292, 3, 292, 6228, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6233, 8, 293, 1, 293, 1, 293, 3, 293, 6237, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6242, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6248, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6255, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6260, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6265, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6272, 8, 298, 10, 298, 12, 298, 6275, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6281, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6287, 8, 299, 10, 299, 12, 299, 6290, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6300, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6305, 8, 300, 1, 300, 1, 300, 3, 300, 6309, 8, 300, 1, 300, 3, 300, 6312, 8, 300, 1, 300, 1, 300, 3, 300, 6316, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6321, 8, 300, 4, 300, 6323, 8, 300, 11, 300, 12, 300, 6324, 1, 300, 1, 300, 1, 300, 3, 300, 6330, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6336, 8, 301, 10, 301, 12, 301, 6339, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6347, 8, 303, 10, 303, 12, 303, 6350, 9, 303, 1, 304, 1, 304, 3, 304, 6354, 8, 304, 1, 304, 1, 304, 3, 304, 6358, 8, 304, 1, 304, 3, 304, 6361, 8, 304, 1, 304, 3, 304, 6364, 8, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 1, 304, 3, 304, 6375, 8, 304, 1, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 3, 304, 6387, 8, 304, 3, 304, 6389, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6403, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6409, 8, 304, 1, 304, 1, 304, 3, 304, 6413, 8, 304, 3, 304, 6415, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6427, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6433, 8, 304, 10, 304, 12, 304, 6436, 9, 304, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6446, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6451, 8, 306, 1, 306, 3, 306, 6454, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6460, 8, 306, 1, 307, 1, 307, 3, 307, 6464, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6470, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6485, 8, 309, 3, 309, 6487, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6492, 8, 310, 1, 310, 3, 310, 6495, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6504, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6511, 8, 310, 3, 310, 6513, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 6518, 8, 311, 10, 311, 12, 311, 6521, 9, 311, 1, 312, 1, 312, 3, 312, 6525, 8, 312, 1, 312, 3, 312, 6528, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6538, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 5, 314, 6547, 8, 314, 10, 314, 12, 314, 6550, 9, 314, 1, 314, 1, 314, 3, 314, 6554, 8, 314, 1, 314, 1, 314, 3, 314, 6558, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6566, 8, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6576, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6581, 8, 318, 10, 318, 12, 318, 6584, 9, 318, 1, 319, 1, 319, 1, 319, 3, 319, 6589, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6598, 8, 320, 10, 320, 12, 320, 6601, 9, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6606, 8, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6614, 8, 320, 10, 320, 12, 320, 6617, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6625, 8, 321, 1, 321, 1, 321, 3, 321, 6629, 8, 321, 1, 321, 4, 321, 6632, 8, 321, 11, 321, 12, 321, 6633, 3, 321, 6636, 8, 321, 1, 321, 1, 321, 3, 321, 6640, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6648, 8, 322, 1, 323, 3, 323, 6651, 8, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6656, 8, 323, 1, 323, 5, 323, 6659, 8, 323, 10, 323, 12, 323, 6662, 9, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6668, 8, 323, 3, 323, 6670, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6676, 8, 323, 1, 324, 1, 324, 3, 324, 6680, 8, 324, 1, 324, 3, 324, 6683, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6688, 8, 324, 1, 324, 3, 324, 6691, 8, 324, 3, 324, 6693, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6714, 8, 326, 1, 326, 3, 326, 6717, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 6725, 8, 328, 1, 328, 3, 328, 6728, 8, 328, 1, 329, 1, 329, 3, 329, 6732, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6738, 8, 329, 3, 329, 6740, 8, 329, 1, 329, 3, 329, 6743, 8, 329, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6759, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6766, 8, 331, 3, 331, 6768, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6774, 8, 331, 3, 331, 6776, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6781, 8, 331, 3, 331, 6783, 8, 331, 1, 332, 1, 332, 3, 332, 6787, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 3, 335, 6796, 8, 335, 1, 335, 1, 335, 3, 335, 6800, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 6808, 8, 335, 10, 335, 12, 335, 6811, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6824, 8, 336, 1, 336, 3, 336, 6827, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6835, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6842, 8, 336, 10, 336, 12, 336, 6845, 9, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6850, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6855, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6863, 8, 336, 3, 336, 6865, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6870, 8, 336, 1, 336, 1, 336, 3, 336, 6874, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6879, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6884, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6906, 8, 337, 10, 337, 12, 337, 6909, 9, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6917, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6932, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6937, 8, 338, 1, 338, 3, 338, 6940, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6946, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6951, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6964, 8, 338, 1, 338, 4, 338, 6967, 8, 338, 11, 338, 12, 338, 6968, 1, 338, 1, 338, 3, 338, 6973, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6980, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7000, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7012, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7017, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7025, 8, 338, 5, 338, 7027, 8, 338, 10, 338, 12, 338, 7030, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7038, 8, 339, 1, 339, 3, 339, 7041, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7046, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7051, 8, 339, 1, 339, 3, 339, 7054, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7065, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7073, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7078, 8, 340, 3, 340, 7080, 8, 340, 1, 340, 3, 340, 7083, 8, 340, 1, 341, 1, 341, 3, 341, 7087, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7098, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7119, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7127, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7140, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7150, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7156, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7162, 8, 342, 1, 342, 3, 342, 7165, 8, 342, 1, 342, 3, 342, 7168, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7194, 8, 342, 3, 342, 7196, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7217, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7227, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7240, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7245, 8, 342, 1, 342, 1, 342, 3, 342, 7249, 8, 342, 3, 342, 7251, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7263, 8, 342, 1, 343, 1, 343, 1, 343, 5, 343, 7268, 8, 343, 10, 343, 12, 343, 7271, 9, 343, 1, 344, 1, 344, 1, 344, 3, 344, 7276, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 7282, 8, 346, 1, 346, 1, 346, 3, 346, 7286, 8, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 5, 348, 7295, 8, 348, 10, 348, 12, 348, 7298, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 7310, 8, 351, 1, 352, 1, 352, 3, 352, 7314, 8, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7319, 8, 352, 1, 352, 3, 352, 7322, 8, 352, 1, 352, 3, 352, 7325, 8, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7334, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7345, 8, 353, 3, 353, 7347, 8, 353, 1, 354, 1, 354, 3, 354, 7351, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7356, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7365, 8, 355, 1, 356, 1, 356, 1, 356, 3, 356, 7370, 8, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 3, 358, 7378, 8, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7388, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7396, 8, 361, 1, 362, 1, 362, 3, 362, 7400, 8, 362, 1, 362, 3, 362, 7403, 8, 362, 1, 363, 1, 363, 1, 363, 5, 363, 7408, 8, 363, 10, 363, 12, 363, 7411, 9, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7418, 8, 364, 1, 365, 1, 365, 3, 365, 7422, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 7427, 8, 366, 10, 366, 12, 366, 7430, 9, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7437, 8, 367, 3, 367, 7439, 8, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 5, 368, 7446, 8, 368, 10, 368, 12, 368, 7449, 9, 368, 3, 368, 7451, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7463, 8, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7472, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7479, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7488, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 3, 373, 7498, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7503, 8, 373, 1, 373, 1, 373, 3, 373, 7507, 8, 373, 3, 373, 7509, 8, 373, 1, 373, 3, 373, 7512, 8, 373, 1, 374, 4, 374, 7515, 8, 374, 11, 374, 12, 374, 7516, 1, 375, 5, 375, 7520, 8, 375, 10, 375, 12, 375, 7523, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7528, 8, 376, 10, 376, 12, 376, 7531, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7538, 8, 377, 1, 377, 3, 377, 7541, 8, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7546, 8, 378, 10, 378, 12, 378, 7549, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7554, 8, 379, 10, 379, 12, 379, 7557, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7562, 8, 380, 10, 380, 12, 380, 7565, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7570, 8, 381, 10, 381, 12, 381, 7573, 9, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 3, 388, 7589, 8, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7594, 8, 389, 10, 389, 12, 389, 7597, 9, 389, 1, 390, 1, 390, 1, 390, 5, 390, 7602, 8, 390, 10, 390, 12, 390, 7605, 9, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7621, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7627, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7633, 8, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7644, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7650, 8, 402, 1, 403, 1, 403, 1, 403, 3, 403, 7655, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7661, 8, 404, 10, 404, 12, 404, 7664, 9, 404, 1, 404, 1, 404, 3, 404, 7668, 8, 404, 1, 405, 3, 405, 7671, 8, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7680, 8, 406, 1, 407, 1, 407, 1, 407, 5, 407, 7685, 8, 407, 10, 407, 12, 407, 7688, 9, 407, 1, 408, 1, 408, 3, 408, 7692, 8, 408, 1, 409, 1, 409, 3, 409, 7696, 8, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7701, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7707, 8, 411, 1, 412, 1, 412, 1, 412, 3, 412, 7712, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7720, 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, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7775, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 3, 417, 7782, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 4, 417, 7788, 8, 417, 11, 417, 12, 417, 7789, 3, 417, 7792, 8, 417, 3, 417, 7794, 8, 417, 1, 417, 1, 417, 5, 417, 7798, 8, 417, 10, 417, 12, 417, 7801, 9, 417, 1, 417, 3, 417, 7804, 8, 417, 1, 417, 1, 417, 3, 417, 7808, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7819, 8, 419, 1, 419, 3, 419, 7822, 8, 419, 1, 419, 1, 419, 3, 419, 7826, 8, 419, 1, 419, 1, 419, 3, 419, 7830, 8, 419, 1, 419, 1, 419, 3, 419, 7834, 8, 419, 1, 419, 3, 419, 7837, 8, 419, 1, 419, 3, 419, 7840, 8, 419, 1, 419, 3, 419, 7843, 8, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 7850, 8, 419, 10, 419, 12, 419, 7853, 9, 419, 1, 419, 1, 419, 3, 419, 7857, 8, 419, 1, 419, 1, 419, 3, 419, 7861, 8, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7894, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7904, 8, 424, 1, 424, 1, 424, 3, 424, 7908, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7914, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7919, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 3, 426, 7928, 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 7934, 8, 426, 10, 426, 12, 426, 7937, 9, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 7947, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 7953, 8, 428, 10, 428, 12, 428, 7956, 9, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7962, 8, 429, 10, 429, 12, 429, 7965, 9, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7971, 8, 429, 10, 429, 12, 429, 7974, 9, 429, 5, 429, 7976, 8, 429, 10, 429, 12, 429, 7979, 9, 429, 1, 429, 3, 429, 7982, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 5, 430, 7990, 8, 430, 10, 430, 12, 430, 7993, 9, 430, 1, 431, 1, 431, 3, 431, 7997, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 8003, 8, 431, 10, 431, 12, 431, 8006, 9, 431, 4, 431, 8008, 8, 431, 11, 431, 12, 431, 8009, 1, 431, 3, 431, 8013, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 3, 432, 8020, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 8026, 8, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8034, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8042, 8, 433, 1, 433, 3, 433, 8045, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8052, 8, 433, 3, 433, 8054, 8, 433, 1, 434, 3, 434, 8057, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8063, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 3, 435, 8072, 8, 435, 1, 435, 1, 435, 3, 435, 8076, 8, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8090, 8, 436, 1, 436, 3, 436, 8093, 8, 436, 3, 436, 8095, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 3, 437, 8101, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 4, 437, 8109, 8, 437, 11, 437, 12, 437, 8110, 3, 437, 8113, 8, 437, 3, 437, 8115, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8121, 8, 437, 10, 437, 12, 437, 8124, 9, 437, 3, 437, 8126, 8, 437, 1, 437, 3, 437, 8129, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8139, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 5, 440, 8145, 8, 440, 10, 440, 12, 440, 8148, 9, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8153, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8159, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 3, 442, 8166, 8, 442, 1, 442, 1, 442, 3, 442, 8170, 8, 442, 1, 442, 1, 442, 3, 442, 8174, 8, 442, 1, 442, 3, 442, 8177, 8, 442, 1, 442, 3, 442, 8180, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8186, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 3, 444, 8193, 8, 444, 1, 444, 3, 444, 8196, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8204, 8, 444, 3, 444, 8206, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 8213, 8, 444, 10, 444, 12, 444, 8216, 9, 444, 1, 444, 1, 444, 3, 444, 8220, 8, 444, 3, 444, 8222, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8229, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8235, 8, 446, 1, 446, 3, 446, 8238, 8, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8250, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8257, 8, 447, 3, 447, 8259, 8, 447, 1, 448, 1, 448, 3, 448, 8263, 8, 448, 1, 448, 1, 448, 1, 448, 1, 449, 3, 449, 8269, 8, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8274, 8, 449, 1, 449, 1, 449, 3, 449, 8278, 8, 449, 1, 449, 3, 449, 8281, 8, 449, 1, 449, 3, 449, 8284, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 4, 449, 8291, 8, 449, 11, 449, 12, 449, 8292, 1, 449, 3, 449, 8296, 8, 449, 1, 450, 3, 450, 8299, 8, 450, 1, 450, 1, 450, 3, 450, 8303, 8, 450, 1, 450, 1, 450, 3, 450, 8307, 8, 450, 3, 450, 8309, 8, 450, 1, 450, 3, 450, 8312, 8, 450, 1, 450, 3, 450, 8315, 8, 450, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8321, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8328, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8335, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8341, 8, 451, 3, 451, 8343, 8, 451, 1, 452, 1, 452, 3, 452, 8347, 8, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8352, 8, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 5, 453, 8368, 8, 453, 10, 453, 12, 453, 8371, 9, 453, 1, 453, 1, 453, 4, 453, 8375, 8, 453, 11, 453, 12, 453, 8376, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8384, 8, 454, 10, 454, 12, 454, 8387, 9, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8393, 8, 454, 1, 455, 1, 455, 3, 455, 8397, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 3, 458, 8409, 8, 458, 1, 458, 3, 458, 8412, 8, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8425, 8, 459, 1, 459, 3, 459, 8428, 8, 459, 1, 460, 1, 460, 3, 460, 8432, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 5, 461, 8439, 8, 461, 10, 461, 12, 461, 8442, 9, 461, 1, 461, 1, 461, 5, 461, 8446, 8, 461, 10, 461, 12, 461, 8449, 9, 461, 4, 461, 8451, 8, 461, 11, 461, 12, 461, 8452, 1, 462, 1, 462, 1, 462, 3, 462, 8458, 8, 462, 1, 463, 1, 463, 3, 463, 8462, 8, 463, 1, 464, 3, 464, 8465, 8, 464, 1, 464, 3, 464, 8468, 8, 464, 1, 464, 3, 464, 8471, 8, 464, 1, 464, 3, 464, 8474, 8, 464, 1, 464, 3, 464, 8477, 8, 464, 1, 464, 3, 464, 8480, 8, 464, 1, 464, 3, 464, 8483, 8, 464, 1, 464, 0, 3, 670, 674, 676, 465, 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, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 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, 158, 158, 277, 277, 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, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 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, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 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, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 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, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 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, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9924, 0, 933, 1, 0, 0, 0, 2, 938, 1, 0, 0, 0, 4, 1062, 1, 0, 0, 0, 6, 1064, 1, 0, 0, 0, 8, 1067, 1, 0, 0, 0, 10, 1117, 1, 0, 0, 0, 12, 1127, 1, 0, 0, 0, 14, 1129, 1, 0, 0, 0, 16, 1141, 1, 0, 0, 0, 18, 1153, 1, 0, 0, 0, 20, 1164, 1, 0, 0, 0, 22, 1198, 1, 0, 0, 0, 24, 1242, 1, 0, 0, 0, 26, 1244, 1, 0, 0, 0, 28, 1256, 1, 0, 0, 0, 30, 1263, 1, 0, 0, 0, 32, 1282, 1, 0, 0, 0, 34, 1290, 1, 0, 0, 0, 36, 1292, 1, 0, 0, 0, 38, 1306, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1357, 1, 0, 0, 0, 48, 1367, 1, 0, 0, 0, 50, 1374, 1, 0, 0, 0, 52, 1382, 1, 0, 0, 0, 54, 1388, 1, 0, 0, 0, 56, 1404, 1, 0, 0, 0, 58, 1408, 1, 0, 0, 0, 60, 1410, 1, 0, 0, 0, 62, 1422, 1, 0, 0, 0, 64, 1427, 1, 0, 0, 0, 66, 1432, 1, 0, 0, 0, 68, 1434, 1, 0, 0, 0, 70, 1446, 1, 0, 0, 0, 72, 1454, 1, 0, 0, 0, 74, 1456, 1, 0, 0, 0, 76, 1576, 1, 0, 0, 0, 78, 1578, 1, 0, 0, 0, 80, 1592, 1, 0, 0, 0, 82, 1594, 1, 0, 0, 0, 84, 1831, 1, 0, 0, 0, 86, 1838, 1, 0, 0, 0, 88, 1840, 1, 0, 0, 0, 90, 1842, 1, 0, 0, 0, 92, 1845, 1, 0, 0, 0, 94, 1856, 1, 0, 0, 0, 96, 1859, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1891, 1, 0, 0, 0, 102, 1932, 1, 0, 0, 0, 104, 1934, 1, 0, 0, 0, 106, 1988, 1, 0, 0, 0, 108, 2034, 1, 0, 0, 0, 110, 2055, 1, 0, 0, 0, 112, 2057, 1, 0, 0, 0, 114, 2074, 1, 0, 0, 0, 116, 2155, 1, 0, 0, 0, 118, 2157, 1, 0, 0, 0, 120, 2168, 1, 0, 0, 0, 122, 2191, 1, 0, 0, 0, 124, 2209, 1, 0, 0, 0, 126, 2211, 1, 0, 0, 0, 128, 2246, 1, 0, 0, 0, 130, 2339, 1, 0, 0, 0, 132, 2344, 1, 0, 0, 0, 134, 2346, 1, 0, 0, 0, 136, 2444, 1, 0, 0, 0, 138, 2446, 1, 0, 0, 0, 140, 2450, 1, 0, 0, 0, 142, 2461, 1, 0, 0, 0, 144, 2469, 1, 0, 0, 0, 146, 2472, 1, 0, 0, 0, 148, 2475, 1, 0, 0, 0, 150, 2493, 1, 0, 0, 0, 152, 2495, 1, 0, 0, 0, 154, 2499, 1, 0, 0, 0, 156, 2512, 1, 0, 0, 0, 158, 2514, 1, 0, 0, 0, 160, 2519, 1, 0, 0, 0, 162, 2539, 1, 0, 0, 0, 164, 2547, 1, 0, 0, 0, 166, 2554, 1, 0, 0, 0, 168, 2556, 1, 0, 0, 0, 170, 2565, 1, 0, 0, 0, 172, 2568, 1, 0, 0, 0, 174, 2572, 1, 0, 0, 0, 176, 2576, 1, 0, 0, 0, 178, 2601, 1, 0, 0, 0, 180, 2611, 1, 0, 0, 0, 182, 2625, 1, 0, 0, 0, 184, 2641, 1, 0, 0, 0, 186, 2647, 1, 0, 0, 0, 188, 2674, 1, 0, 0, 0, 190, 2684, 1, 0, 0, 0, 192, 2700, 1, 0, 0, 0, 194, 2744, 1, 0, 0, 0, 196, 2751, 1, 0, 0, 0, 198, 2753, 1, 0, 0, 0, 200, 2779, 1, 0, 0, 0, 202, 2790, 1, 0, 0, 0, 204, 2809, 1, 0, 0, 0, 206, 2820, 1, 0, 0, 0, 208, 2858, 1, 0, 0, 0, 210, 2879, 1, 0, 0, 0, 212, 2881, 1, 0, 0, 0, 214, 2901, 1, 0, 0, 0, 216, 2913, 1, 0, 0, 0, 218, 2925, 1, 0, 0, 0, 220, 2928, 1, 0, 0, 0, 222, 2931, 1, 0, 0, 0, 224, 2951, 1, 0, 0, 0, 226, 2956, 1, 0, 0, 0, 228, 3005, 1, 0, 0, 0, 230, 3007, 1, 0, 0, 0, 232, 3030, 1, 0, 0, 0, 234, 3046, 1, 0, 0, 0, 236, 3058, 1, 0, 0, 0, 238, 3085, 1, 0, 0, 0, 240, 3100, 1, 0, 0, 0, 242, 3163, 1, 0, 0, 0, 244, 3165, 1, 0, 0, 0, 246, 3170, 1, 0, 0, 0, 248, 3176, 1, 0, 0, 0, 250, 3263, 1, 0, 0, 0, 252, 3269, 1, 0, 0, 0, 254, 3271, 1, 0, 0, 0, 256, 3287, 1, 0, 0, 0, 258, 3289, 1, 0, 0, 0, 260, 3298, 1, 0, 0, 0, 262, 3302, 1, 0, 0, 0, 264, 3315, 1, 0, 0, 0, 266, 3327, 1, 0, 0, 0, 268, 3329, 1, 0, 0, 0, 270, 3351, 1, 0, 0, 0, 272, 3363, 1, 0, 0, 0, 274, 3374, 1, 0, 0, 0, 276, 3465, 1, 0, 0, 0, 278, 3467, 1, 0, 0, 0, 280, 3478, 1, 0, 0, 0, 282, 3489, 1, 0, 0, 0, 284, 3491, 1, 0, 0, 0, 286, 3517, 1, 0, 0, 0, 288, 3519, 1, 0, 0, 0, 290, 3523, 1, 0, 0, 0, 292, 3573, 1, 0, 0, 0, 294, 3575, 1, 0, 0, 0, 296, 3581, 1, 0, 0, 0, 298, 3606, 1, 0, 0, 0, 300, 3610, 1, 0, 0, 0, 302, 3824, 1, 0, 0, 0, 304, 3842, 1, 0, 0, 0, 306, 3868, 1, 0, 0, 0, 308, 3870, 1, 0, 0, 0, 310, 3878, 1, 0, 0, 0, 312, 3884, 1, 0, 0, 0, 314, 3888, 1, 0, 0, 0, 316, 3908, 1, 0, 0, 0, 318, 3914, 1, 0, 0, 0, 320, 3981, 1, 0, 0, 0, 322, 4012, 1, 0, 0, 0, 324, 4058, 1, 0, 0, 0, 326, 4060, 1, 0, 0, 0, 328, 4062, 1, 0, 0, 0, 330, 4073, 1, 0, 0, 0, 332, 4110, 1, 0, 0, 0, 334, 4112, 1, 0, 0, 0, 336, 4118, 1, 0, 0, 0, 338, 4168, 1, 0, 0, 0, 340, 4171, 1, 0, 0, 0, 342, 4185, 1, 0, 0, 0, 344, 4206, 1, 0, 0, 0, 346, 4230, 1, 0, 0, 0, 348, 4271, 1, 0, 0, 0, 350, 4273, 1, 0, 0, 0, 352, 4275, 1, 0, 0, 0, 354, 4315, 1, 0, 0, 0, 356, 4332, 1, 0, 0, 0, 358, 4352, 1, 0, 0, 0, 360, 4405, 1, 0, 0, 0, 362, 4408, 1, 0, 0, 0, 364, 4414, 1, 0, 0, 0, 366, 4422, 1, 0, 0, 0, 368, 4435, 1, 0, 0, 0, 370, 4437, 1, 0, 0, 0, 372, 4450, 1, 0, 0, 0, 374, 4452, 1, 0, 0, 0, 376, 4465, 1, 0, 0, 0, 378, 4475, 1, 0, 0, 0, 380, 4486, 1, 0, 0, 0, 382, 4497, 1, 0, 0, 0, 384, 4499, 1, 0, 0, 0, 386, 4504, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4550, 1, 0, 0, 0, 392, 4587, 1, 0, 0, 0, 394, 4589, 1, 0, 0, 0, 396, 4592, 1, 0, 0, 0, 398, 4595, 1, 0, 0, 0, 400, 4612, 1, 0, 0, 0, 402, 4633, 1, 0, 0, 0, 404, 4649, 1, 0, 0, 0, 406, 4665, 1, 0, 0, 0, 408, 4687, 1, 0, 0, 0, 410, 4692, 1, 0, 0, 0, 412, 4695, 1, 0, 0, 0, 414, 4703, 1, 0, 0, 0, 416, 4728, 1, 0, 0, 0, 418, 4731, 1, 0, 0, 0, 420, 4759, 1, 0, 0, 0, 422, 4764, 1, 0, 0, 0, 424, 4804, 1, 0, 0, 0, 426, 5016, 1, 0, 0, 0, 428, 5018, 1, 0, 0, 0, 430, 5106, 1, 0, 0, 0, 432, 5108, 1, 0, 0, 0, 434, 5114, 1, 0, 0, 0, 436, 5125, 1, 0, 0, 0, 438, 5135, 1, 0, 0, 0, 440, 5215, 1, 0, 0, 0, 442, 5217, 1, 0, 0, 0, 444, 5231, 1, 0, 0, 0, 446, 5253, 1, 0, 0, 0, 448, 5326, 1, 0, 0, 0, 450, 5328, 1, 0, 0, 0, 452, 5369, 1, 0, 0, 0, 454, 5371, 1, 0, 0, 0, 456, 5376, 1, 0, 0, 0, 458, 5379, 1, 0, 0, 0, 460, 5382, 1, 0, 0, 0, 462, 5432, 1, 0, 0, 0, 464, 5434, 1, 0, 0, 0, 466, 5445, 1, 0, 0, 0, 468, 5447, 1, 0, 0, 0, 470, 5457, 1, 0, 0, 0, 472, 5492, 1, 0, 0, 0, 474, 5495, 1, 0, 0, 0, 476, 5516, 1, 0, 0, 0, 478, 5526, 1, 0, 0, 0, 480, 5546, 1, 0, 0, 0, 482, 5552, 1, 0, 0, 0, 484, 5558, 1, 0, 0, 0, 486, 5563, 1, 0, 0, 0, 488, 5576, 1, 0, 0, 0, 490, 5603, 1, 0, 0, 0, 492, 5651, 1, 0, 0, 0, 494, 5653, 1, 0, 0, 0, 496, 5691, 1, 0, 0, 0, 498, 5693, 1, 0, 0, 0, 500, 5714, 1, 0, 0, 0, 502, 5734, 1, 0, 0, 0, 504, 5738, 1, 0, 0, 0, 506, 5753, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5763, 1, 0, 0, 0, 514, 5771, 1, 0, 0, 0, 516, 5795, 1, 0, 0, 0, 518, 5797, 1, 0, 0, 0, 520, 5808, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5832, 1, 0, 0, 0, 526, 5857, 1, 0, 0, 0, 528, 5859, 1, 0, 0, 0, 530, 5863, 1, 0, 0, 0, 532, 5872, 1, 0, 0, 0, 534, 5912, 1, 0, 0, 0, 536, 5923, 1, 0, 0, 0, 538, 5931, 1, 0, 0, 0, 540, 5934, 1, 0, 0, 0, 542, 5938, 1, 0, 0, 0, 544, 5953, 1, 0, 0, 0, 546, 5978, 1, 0, 0, 0, 548, 5993, 1, 0, 0, 0, 550, 6019, 1, 0, 0, 0, 552, 6021, 1, 0, 0, 0, 554, 6044, 1, 0, 0, 0, 556, 6046, 1, 0, 0, 0, 558, 6054, 1, 0, 0, 0, 560, 6072, 1, 0, 0, 0, 562, 6096, 1, 0, 0, 0, 564, 6108, 1, 0, 0, 0, 566, 6112, 1, 0, 0, 0, 568, 6124, 1, 0, 0, 0, 570, 6144, 1, 0, 0, 0, 572, 6152, 1, 0, 0, 0, 574, 6166, 1, 0, 0, 0, 576, 6189, 1, 0, 0, 0, 578, 6191, 1, 0, 0, 0, 580, 6196, 1, 0, 0, 0, 582, 6206, 1, 0, 0, 0, 584, 6227, 1, 0, 0, 0, 586, 6229, 1, 0, 0, 0, 588, 6238, 1, 0, 0, 0, 590, 6249, 1, 0, 0, 0, 592, 6259, 1, 0, 0, 0, 594, 6261, 1, 0, 0, 0, 596, 6268, 1, 0, 0, 0, 598, 6299, 1, 0, 0, 0, 600, 6329, 1, 0, 0, 0, 602, 6331, 1, 0, 0, 0, 604, 6340, 1, 0, 0, 0, 606, 6343, 1, 0, 0, 0, 608, 6414, 1, 0, 0, 0, 610, 6438, 1, 0, 0, 0, 612, 6459, 1, 0, 0, 0, 614, 6461, 1, 0, 0, 0, 616, 6469, 1, 0, 0, 0, 618, 6486, 1, 0, 0, 0, 620, 6512, 1, 0, 0, 0, 622, 6514, 1, 0, 0, 0, 624, 6522, 1, 0, 0, 0, 626, 6529, 1, 0, 0, 0, 628, 6553, 1, 0, 0, 0, 630, 6559, 1, 0, 0, 0, 632, 6567, 1, 0, 0, 0, 634, 6570, 1, 0, 0, 0, 636, 6577, 1, 0, 0, 0, 638, 6585, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6620, 1, 0, 0, 0, 644, 6647, 1, 0, 0, 0, 646, 6675, 1, 0, 0, 0, 648, 6692, 1, 0, 0, 0, 650, 6698, 1, 0, 0, 0, 652, 6716, 1, 0, 0, 0, 654, 6718, 1, 0, 0, 0, 656, 6722, 1, 0, 0, 0, 658, 6739, 1, 0, 0, 0, 660, 6744, 1, 0, 0, 0, 662, 6782, 1, 0, 0, 0, 664, 6784, 1, 0, 0, 0, 666, 6788, 1, 0, 0, 0, 668, 6790, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6883, 1, 0, 0, 0, 674, 6889, 1, 0, 0, 0, 676, 6999, 1, 0, 0, 0, 678, 7031, 1, 0, 0, 0, 680, 7082, 1, 0, 0, 0, 682, 7086, 1, 0, 0, 0, 684, 7262, 1, 0, 0, 0, 686, 7264, 1, 0, 0, 0, 688, 7272, 1, 0, 0, 0, 690, 7277, 1, 0, 0, 0, 692, 7279, 1, 0, 0, 0, 694, 7287, 1, 0, 0, 0, 696, 7290, 1, 0, 0, 0, 698, 7299, 1, 0, 0, 0, 700, 7302, 1, 0, 0, 0, 702, 7306, 1, 0, 0, 0, 704, 7311, 1, 0, 0, 0, 706, 7328, 1, 0, 0, 0, 708, 7355, 1, 0, 0, 0, 710, 7364, 1, 0, 0, 0, 712, 7366, 1, 0, 0, 0, 714, 7373, 1, 0, 0, 0, 716, 7377, 1, 0, 0, 0, 718, 7379, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7395, 1, 0, 0, 0, 724, 7402, 1, 0, 0, 0, 726, 7404, 1, 0, 0, 0, 728, 7417, 1, 0, 0, 0, 730, 7421, 1, 0, 0, 0, 732, 7423, 1, 0, 0, 0, 734, 7438, 1, 0, 0, 0, 736, 7440, 1, 0, 0, 0, 738, 7462, 1, 0, 0, 0, 740, 7464, 1, 0, 0, 0, 742, 7487, 1, 0, 0, 0, 744, 7489, 1, 0, 0, 0, 746, 7511, 1, 0, 0, 0, 748, 7514, 1, 0, 0, 0, 750, 7521, 1, 0, 0, 0, 752, 7524, 1, 0, 0, 0, 754, 7540, 1, 0, 0, 0, 756, 7542, 1, 0, 0, 0, 758, 7550, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7566, 1, 0, 0, 0, 764, 7574, 1, 0, 0, 0, 766, 7576, 1, 0, 0, 0, 768, 7578, 1, 0, 0, 0, 770, 7580, 1, 0, 0, 0, 772, 7582, 1, 0, 0, 0, 774, 7584, 1, 0, 0, 0, 776, 7586, 1, 0, 0, 0, 778, 7590, 1, 0, 0, 0, 780, 7598, 1, 0, 0, 0, 782, 7606, 1, 0, 0, 0, 784, 7608, 1, 0, 0, 0, 786, 7610, 1, 0, 0, 0, 788, 7612, 1, 0, 0, 0, 790, 7614, 1, 0, 0, 0, 792, 7620, 1, 0, 0, 0, 794, 7626, 1, 0, 0, 0, 796, 7632, 1, 0, 0, 0, 798, 7634, 1, 0, 0, 0, 800, 7637, 1, 0, 0, 0, 802, 7643, 1, 0, 0, 0, 804, 7649, 1, 0, 0, 0, 806, 7651, 1, 0, 0, 0, 808, 7667, 1, 0, 0, 0, 810, 7670, 1, 0, 0, 0, 812, 7679, 1, 0, 0, 0, 814, 7681, 1, 0, 0, 0, 816, 7691, 1, 0, 0, 0, 818, 7695, 1, 0, 0, 0, 820, 7700, 1, 0, 0, 0, 822, 7706, 1, 0, 0, 0, 824, 7719, 1, 0, 0, 0, 826, 7721, 1, 0, 0, 0, 828, 7774, 1, 0, 0, 0, 830, 7776, 1, 0, 0, 0, 832, 7778, 1, 0, 0, 0, 834, 7781, 1, 0, 0, 0, 836, 7809, 1, 0, 0, 0, 838, 7813, 1, 0, 0, 0, 840, 7864, 1, 0, 0, 0, 842, 7867, 1, 0, 0, 0, 844, 7893, 1, 0, 0, 0, 846, 7895, 1, 0, 0, 0, 848, 7918, 1, 0, 0, 0, 850, 7920, 1, 0, 0, 0, 852, 7925, 1, 0, 0, 0, 854, 7940, 1, 0, 0, 0, 856, 7946, 1, 0, 0, 0, 858, 7957, 1, 0, 0, 0, 860, 7987, 1, 0, 0, 0, 862, 7994, 1, 0, 0, 0, 864, 8019, 1, 0, 0, 0, 866, 8029, 1, 0, 0, 0, 868, 8056, 1, 0, 0, 0, 870, 8069, 1, 0, 0, 0, 872, 8079, 1, 0, 0, 0, 874, 8098, 1, 0, 0, 0, 876, 8130, 1, 0, 0, 0, 878, 8134, 1, 0, 0, 0, 880, 8142, 1, 0, 0, 0, 882, 8156, 1, 0, 0, 0, 884, 8162, 1, 0, 0, 0, 886, 8183, 1, 0, 0, 0, 888, 8189, 1, 0, 0, 0, 890, 8228, 1, 0, 0, 0, 892, 8232, 1, 0, 0, 0, 894, 8258, 1, 0, 0, 0, 896, 8260, 1, 0, 0, 0, 898, 8268, 1, 0, 0, 0, 900, 8308, 1, 0, 0, 0, 902, 8342, 1, 0, 0, 0, 904, 8344, 1, 0, 0, 0, 906, 8355, 1, 0, 0, 0, 908, 8392, 1, 0, 0, 0, 910, 8396, 1, 0, 0, 0, 912, 8398, 1, 0, 0, 0, 914, 8402, 1, 0, 0, 0, 916, 8405, 1, 0, 0, 0, 918, 8427, 1, 0, 0, 0, 920, 8431, 1, 0, 0, 0, 922, 8433, 1, 0, 0, 0, 924, 8457, 1, 0, 0, 0, 926, 8461, 1, 0, 0, 0, 928, 8464, 1, 0, 0, 0, 930, 932, 3, 2, 1, 0, 931, 930, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 0, 0, 1, 937, 1, 1, 0, 0, 0, 938, 940, 3, 4, 2, 0, 939, 941, 5, 7, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 3, 1, 0, 0, 0, 942, 1063, 3, 272, 136, 0, 943, 1063, 3, 482, 241, 0, 944, 1063, 3, 478, 239, 0, 945, 1063, 3, 480, 240, 0, 946, 1063, 3, 346, 173, 0, 947, 1063, 3, 488, 244, 0, 948, 1063, 3, 286, 143, 0, 949, 1063, 3, 204, 102, 0, 950, 1063, 3, 206, 103, 0, 951, 1063, 3, 212, 106, 0, 952, 1063, 3, 226, 113, 0, 953, 1063, 3, 398, 199, 0, 954, 1063, 3, 28, 14, 0, 955, 1063, 3, 428, 214, 0, 956, 1063, 3, 430, 215, 0, 957, 1063, 3, 440, 220, 0, 958, 1063, 3, 432, 216, 0, 959, 1063, 3, 438, 219, 0, 960, 1063, 3, 238, 119, 0, 961, 1063, 3, 240, 120, 0, 962, 1063, 3, 192, 96, 0, 963, 1063, 3, 484, 242, 0, 964, 1063, 3, 76, 38, 0, 965, 1063, 3, 424, 212, 0, 966, 1063, 3, 100, 50, 0, 967, 1063, 3, 444, 222, 0, 968, 1063, 3, 18, 9, 0, 969, 1063, 3, 20, 10, 0, 970, 1063, 3, 16, 8, 0, 971, 1063, 3, 448, 224, 0, 972, 1063, 3, 178, 89, 0, 973, 1063, 3, 492, 246, 0, 974, 1063, 3, 490, 245, 0, 975, 1063, 3, 234, 117, 0, 976, 1063, 3, 500, 250, 0, 977, 1063, 3, 6, 3, 0, 978, 1063, 3, 72, 36, 0, 979, 1063, 3, 104, 52, 0, 980, 1063, 3, 496, 248, 0, 981, 1063, 3, 318, 159, 0, 982, 1063, 3, 70, 35, 0, 983, 1063, 3, 106, 53, 0, 984, 1063, 3, 248, 124, 0, 985, 1063, 3, 180, 90, 0, 986, 1063, 3, 274, 137, 0, 987, 1063, 3, 414, 207, 0, 988, 1063, 3, 494, 247, 0, 989, 1063, 3, 486, 243, 0, 990, 1063, 3, 202, 101, 0, 991, 1063, 3, 208, 104, 0, 992, 1063, 3, 222, 111, 0, 993, 1063, 3, 228, 114, 0, 994, 1063, 3, 358, 179, 0, 995, 1063, 3, 26, 13, 0, 996, 1063, 3, 186, 93, 0, 997, 1063, 3, 290, 145, 0, 998, 1063, 3, 294, 147, 0, 999, 1063, 3, 442, 221, 0, 1000, 1063, 3, 296, 148, 0, 1001, 1063, 3, 236, 118, 0, 1002, 1063, 3, 198, 99, 0, 1003, 1063, 3, 30, 15, 0, 1004, 1063, 3, 190, 95, 0, 1005, 1063, 3, 114, 57, 0, 1006, 1063, 3, 446, 223, 0, 1007, 1063, 3, 176, 88, 0, 1008, 1063, 3, 200, 100, 0, 1009, 1063, 3, 418, 209, 0, 1010, 1063, 3, 250, 125, 0, 1011, 1063, 3, 268, 134, 0, 1012, 1063, 3, 8, 4, 0, 1013, 1063, 3, 14, 7, 0, 1014, 1063, 3, 232, 116, 0, 1015, 1063, 3, 474, 237, 0, 1016, 1063, 3, 530, 265, 0, 1017, 1063, 3, 552, 276, 0, 1018, 1063, 3, 276, 138, 0, 1019, 1063, 3, 542, 271, 0, 1020, 1063, 3, 74, 37, 0, 1021, 1063, 3, 412, 206, 0, 1022, 1063, 3, 302, 151, 0, 1023, 1063, 3, 526, 263, 0, 1024, 1063, 3, 514, 257, 0, 1025, 1063, 3, 322, 161, 0, 1026, 1063, 3, 328, 164, 0, 1027, 1063, 3, 342, 171, 0, 1028, 1063, 3, 898, 449, 0, 1029, 1063, 3, 230, 115, 0, 1030, 1063, 3, 352, 176, 0, 1031, 1063, 3, 532, 266, 0, 1032, 1063, 3, 458, 229, 0, 1033, 1063, 3, 188, 94, 0, 1034, 1063, 3, 472, 236, 0, 1035, 1063, 3, 544, 272, 0, 1036, 1063, 3, 454, 227, 0, 1037, 1063, 3, 520, 260, 0, 1038, 1063, 3, 300, 150, 0, 1039, 1063, 3, 422, 211, 0, 1040, 1063, 3, 402, 201, 0, 1041, 1063, 3, 400, 200, 0, 1042, 1063, 3, 404, 202, 0, 1043, 1063, 3, 426, 213, 0, 1044, 1063, 3, 330, 165, 0, 1045, 1063, 3, 344, 172, 0, 1046, 1063, 3, 450, 225, 0, 1047, 1063, 3, 320, 160, 0, 1048, 1063, 3, 554, 277, 0, 1049, 1063, 3, 462, 231, 0, 1050, 1063, 3, 314, 157, 0, 1051, 1063, 3, 460, 230, 0, 1052, 1063, 3, 546, 273, 0, 1053, 1063, 3, 498, 249, 0, 1054, 1063, 3, 60, 30, 0, 1055, 1063, 3, 36, 18, 0, 1056, 1063, 3, 68, 34, 0, 1057, 1063, 3, 470, 235, 0, 1058, 1060, 5, 583, 0, 0, 1059, 1061, 5, 584, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 942, 1, 0, 0, 0, 1062, 943, 1, 0, 0, 0, 1062, 944, 1, 0, 0, 0, 1062, 945, 1, 0, 0, 0, 1062, 946, 1, 0, 0, 0, 1062, 947, 1, 0, 0, 0, 1062, 948, 1, 0, 0, 0, 1062, 949, 1, 0, 0, 0, 1062, 950, 1, 0, 0, 0, 1062, 951, 1, 0, 0, 0, 1062, 952, 1, 0, 0, 0, 1062, 953, 1, 0, 0, 0, 1062, 954, 1, 0, 0, 0, 1062, 955, 1, 0, 0, 0, 1062, 956, 1, 0, 0, 0, 1062, 957, 1, 0, 0, 0, 1062, 958, 1, 0, 0, 0, 1062, 959, 1, 0, 0, 0, 1062, 960, 1, 0, 0, 0, 1062, 961, 1, 0, 0, 0, 1062, 962, 1, 0, 0, 0, 1062, 963, 1, 0, 0, 0, 1062, 964, 1, 0, 0, 0, 1062, 965, 1, 0, 0, 0, 1062, 966, 1, 0, 0, 0, 1062, 967, 1, 0, 0, 0, 1062, 968, 1, 0, 0, 0, 1062, 969, 1, 0, 0, 0, 1062, 970, 1, 0, 0, 0, 1062, 971, 1, 0, 0, 0, 1062, 972, 1, 0, 0, 0, 1062, 973, 1, 0, 0, 0, 1062, 974, 1, 0, 0, 0, 1062, 975, 1, 0, 0, 0, 1062, 976, 1, 0, 0, 0, 1062, 977, 1, 0, 0, 0, 1062, 978, 1, 0, 0, 0, 1062, 979, 1, 0, 0, 0, 1062, 980, 1, 0, 0, 0, 1062, 981, 1, 0, 0, 0, 1062, 982, 1, 0, 0, 0, 1062, 983, 1, 0, 0, 0, 1062, 984, 1, 0, 0, 0, 1062, 985, 1, 0, 0, 0, 1062, 986, 1, 0, 0, 0, 1062, 987, 1, 0, 0, 0, 1062, 988, 1, 0, 0, 0, 1062, 989, 1, 0, 0, 0, 1062, 990, 1, 0, 0, 0, 1062, 991, 1, 0, 0, 0, 1062, 992, 1, 0, 0, 0, 1062, 993, 1, 0, 0, 0, 1062, 994, 1, 0, 0, 0, 1062, 995, 1, 0, 0, 0, 1062, 996, 1, 0, 0, 0, 1062, 997, 1, 0, 0, 0, 1062, 998, 1, 0, 0, 0, 1062, 999, 1, 0, 0, 0, 1062, 1000, 1, 0, 0, 0, 1062, 1001, 1, 0, 0, 0, 1062, 1002, 1, 0, 0, 0, 1062, 1003, 1, 0, 0, 0, 1062, 1004, 1, 0, 0, 0, 1062, 1005, 1, 0, 0, 0, 1062, 1006, 1, 0, 0, 0, 1062, 1007, 1, 0, 0, 0, 1062, 1008, 1, 0, 0, 0, 1062, 1009, 1, 0, 0, 0, 1062, 1010, 1, 0, 0, 0, 1062, 1011, 1, 0, 0, 0, 1062, 1012, 1, 0, 0, 0, 1062, 1013, 1, 0, 0, 0, 1062, 1014, 1, 0, 0, 0, 1062, 1015, 1, 0, 0, 0, 1062, 1016, 1, 0, 0, 0, 1062, 1017, 1, 0, 0, 0, 1062, 1018, 1, 0, 0, 0, 1062, 1019, 1, 0, 0, 0, 1062, 1020, 1, 0, 0, 0, 1062, 1021, 1, 0, 0, 0, 1062, 1022, 1, 0, 0, 0, 1062, 1023, 1, 0, 0, 0, 1062, 1024, 1, 0, 0, 0, 1062, 1025, 1, 0, 0, 0, 1062, 1026, 1, 0, 0, 0, 1062, 1027, 1, 0, 0, 0, 1062, 1028, 1, 0, 0, 0, 1062, 1029, 1, 0, 0, 0, 1062, 1030, 1, 0, 0, 0, 1062, 1031, 1, 0, 0, 0, 1062, 1032, 1, 0, 0, 0, 1062, 1033, 1, 0, 0, 0, 1062, 1034, 1, 0, 0, 0, 1062, 1035, 1, 0, 0, 0, 1062, 1036, 1, 0, 0, 0, 1062, 1037, 1, 0, 0, 0, 1062, 1038, 1, 0, 0, 0, 1062, 1039, 1, 0, 0, 0, 1062, 1040, 1, 0, 0, 0, 1062, 1041, 1, 0, 0, 0, 1062, 1042, 1, 0, 0, 0, 1062, 1043, 1, 0, 0, 0, 1062, 1044, 1, 0, 0, 0, 1062, 1045, 1, 0, 0, 0, 1062, 1046, 1, 0, 0, 0, 1062, 1047, 1, 0, 0, 0, 1062, 1048, 1, 0, 0, 0, 1062, 1049, 1, 0, 0, 0, 1062, 1050, 1, 0, 0, 0, 1062, 1051, 1, 0, 0, 0, 1062, 1052, 1, 0, 0, 0, 1062, 1053, 1, 0, 0, 0, 1062, 1054, 1, 0, 0, 0, 1062, 1055, 1, 0, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1058, 1, 0, 0, 0, 1063, 5, 1, 0, 0, 0, 1064, 1065, 5, 433, 0, 0, 1065, 1066, 3, 678, 339, 0, 1066, 7, 1, 0, 0, 0, 1067, 1068, 5, 46, 0, 0, 1068, 1069, 5, 318, 0, 0, 1069, 1071, 3, 812, 406, 0, 1070, 1072, 5, 105, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1075, 3, 12, 6, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 9, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1082, 5, 287, 0, 0, 1080, 1083, 3, 806, 403, 0, 1081, 1083, 5, 78, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1118, 1, 0, 0, 0, 1084, 1085, 7, 0, 0, 0, 1085, 1086, 5, 287, 0, 0, 1086, 1118, 3, 806, 403, 0, 1087, 1118, 5, 228, 0, 0, 1088, 1118, 5, 229, 0, 0, 1089, 1118, 5, 236, 0, 0, 1090, 1118, 5, 237, 0, 0, 1091, 1118, 5, 234, 0, 0, 1092, 1118, 5, 235, 0, 0, 1093, 1118, 5, 232, 0, 0, 1094, 1118, 5, 233, 0, 0, 1095, 1118, 5, 230, 0, 0, 1096, 1118, 5, 231, 0, 0, 1097, 1118, 5, 535, 0, 0, 1098, 1118, 5, 536, 0, 0, 1099, 1118, 5, 537, 0, 0, 1100, 1118, 5, 538, 0, 0, 1101, 1118, 5, 539, 0, 0, 1102, 1118, 5, 540, 0, 0, 1103, 1104, 5, 164, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1118, 3, 810, 405, 0, 1106, 1107, 5, 371, 0, 0, 1107, 1108, 5, 368, 0, 0, 1108, 1118, 3, 806, 403, 0, 1109, 1110, 5, 68, 0, 0, 1110, 1111, 7, 1, 0, 0, 1111, 1118, 3, 780, 390, 0, 1112, 1113, 7, 2, 0, 0, 1113, 1118, 3, 814, 407, 0, 1114, 1115, 5, 134, 0, 0, 1115, 1118, 3, 780, 390, 0, 1116, 1118, 3, 824, 412, 0, 1117, 1079, 1, 0, 0, 0, 1117, 1084, 1, 0, 0, 0, 1117, 1087, 1, 0, 0, 0, 1117, 1088, 1, 0, 0, 0, 1117, 1089, 1, 0, 0, 0, 1117, 1090, 1, 0, 0, 0, 1117, 1091, 1, 0, 0, 0, 1117, 1092, 1, 0, 0, 0, 1117, 1093, 1, 0, 0, 0, 1117, 1094, 1, 0, 0, 0, 1117, 1095, 1, 0, 0, 0, 1117, 1096, 1, 0, 0, 0, 1117, 1097, 1, 0, 0, 0, 1117, 1098, 1, 0, 0, 0, 1117, 1099, 1, 0, 0, 0, 1117, 1100, 1, 0, 0, 0, 1117, 1101, 1, 0, 0, 0, 1117, 1102, 1, 0, 0, 0, 1117, 1103, 1, 0, 0, 0, 1117, 1106, 1, 0, 0, 0, 1117, 1109, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 11, 1, 0, 0, 0, 1119, 1128, 3, 10, 5, 0, 1120, 1121, 5, 348, 0, 0, 1121, 1128, 5, 574, 0, 0, 1122, 1123, 7, 3, 0, 0, 1123, 1128, 3, 814, 407, 0, 1124, 1125, 5, 68, 0, 0, 1125, 1126, 7, 1, 0, 0, 1126, 1128, 3, 814, 407, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 13, 1, 0, 0, 0, 1129, 1130, 5, 46, 0, 0, 1130, 1131, 5, 99, 0, 0, 1131, 1133, 3, 812, 406, 0, 1132, 1134, 5, 105, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1138, 1, 0, 0, 0, 1135, 1137, 3, 12, 6, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 15, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 138, 0, 0, 1142, 1143, 7, 2, 0, 0, 1143, 1145, 3, 812, 406, 0, 1144, 1146, 5, 105, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1150, 1, 0, 0, 0, 1147, 1149, 3, 10, 5, 0, 1148, 1147, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 17, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 138, 0, 0, 1154, 1157, 7, 2, 0, 0, 1155, 1158, 5, 30, 0, 0, 1156, 1158, 3, 812, 406, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 68, 0, 0, 1160, 1161, 5, 175, 0, 0, 1161, 1162, 3, 784, 392, 0, 1162, 1163, 3, 64, 32, 0, 1163, 19, 1, 0, 0, 0, 1164, 1165, 5, 138, 0, 0, 1165, 1166, 5, 442, 0, 0, 1166, 1168, 3, 790, 395, 0, 1167, 1169, 3, 362, 181, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 3, 22, 11, 0, 1171, 21, 1, 0, 0, 0, 1172, 1176, 3, 24, 12, 0, 1173, 1175, 3, 24, 12, 0, 1174, 1173, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1181, 5, 315, 0, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1199, 1, 0, 0, 0, 1182, 1183, 5, 309, 0, 0, 1183, 1184, 5, 94, 0, 0, 1184, 1199, 3, 788, 394, 0, 1185, 1186, 5, 282, 0, 0, 1186, 1187, 5, 94, 0, 0, 1187, 1199, 3, 812, 406, 0, 1188, 1189, 5, 333, 0, 0, 1189, 1190, 5, 323, 0, 0, 1190, 1199, 3, 32, 16, 0, 1191, 1193, 5, 269, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 5, 462, 0, 0, 1195, 1196, 5, 80, 0, 0, 1196, 1197, 5, 204, 0, 0, 1197, 1199, 3, 816, 408, 0, 1198, 1172, 1, 0, 0, 0, 1198, 1182, 1, 0, 0, 0, 1198, 1185, 1, 0, 0, 0, 1198, 1188, 1, 0, 0, 0, 1198, 1192, 1, 0, 0, 0, 1199, 23, 1, 0, 0, 0, 1200, 1243, 5, 222, 0, 0, 1201, 1243, 5, 338, 0, 0, 1202, 1243, 5, 377, 0, 0, 1203, 1205, 5, 77, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1243, 5, 250, 0, 0, 1207, 1209, 5, 205, 0, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 5, 327, 0, 0, 1211, 1218, 5, 243, 0, 0, 1212, 1214, 5, 205, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 327, 0, 0, 1216, 1218, 5, 181, 0, 0, 1217, 1208, 1, 0, 0, 0, 1217, 1213, 1, 0, 0, 0, 1218, 1243, 1, 0, 0, 0, 1219, 1220, 5, 460, 0, 0, 1220, 1243, 7, 4, 0, 0, 1221, 1222, 5, 170, 0, 0, 1222, 1243, 3, 822, 411, 0, 1223, 1224, 5, 320, 0, 0, 1224, 1243, 3, 816, 408, 0, 1225, 1226, 5, 333, 0, 0, 1226, 1227, 3, 816, 408, 0, 1227, 1230, 7, 5, 0, 0, 1228, 1231, 3, 816, 408, 0, 1229, 1231, 5, 53, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1233, 5, 333, 0, 0, 1233, 1234, 3, 816, 408, 0, 1234, 1235, 5, 64, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1243, 1, 0, 0, 0, 1237, 1240, 5, 313, 0, 0, 1238, 1241, 3, 816, 408, 0, 1239, 1241, 5, 30, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1200, 1, 0, 0, 0, 1242, 1201, 1, 0, 0, 0, 1242, 1202, 1, 0, 0, 0, 1242, 1204, 1, 0, 0, 0, 1242, 1217, 1, 0, 0, 0, 1242, 1219, 1, 0, 0, 0, 1242, 1221, 1, 0, 0, 0, 1242, 1223, 1, 0, 0, 0, 1242, 1225, 1, 0, 0, 0, 1242, 1232, 1, 0, 0, 0, 1242, 1237, 1, 0, 0, 0, 1243, 25, 1, 0, 0, 0, 1244, 1245, 5, 46, 0, 0, 1245, 1246, 5, 66, 0, 0, 1246, 1248, 3, 812, 406, 0, 1247, 1249, 5, 105, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1253, 1, 0, 0, 0, 1250, 1252, 3, 12, 6, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 27, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 138, 0, 0, 1257, 1258, 5, 66, 0, 0, 1258, 1259, 3, 812, 406, 0, 1259, 1260, 7, 6, 0, 0, 1260, 1261, 5, 99, 0, 0, 1261, 1262, 3, 814, 407, 0, 1262, 29, 1, 0, 0, 0, 1263, 1264, 5, 46, 0, 0, 1264, 1266, 5, 323, 0, 0, 1265, 1267, 3, 288, 144, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1274, 1, 0, 0, 0, 1268, 1270, 3, 32, 16, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 5, 106, 0, 0, 1272, 1275, 3, 812, 406, 0, 1273, 1275, 3, 32, 16, 0, 1274, 1269, 1, 0, 0, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1279, 1, 0, 0, 0, 1276, 1278, 3, 34, 17, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 31, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1283, 3, 310, 155, 0, 1283, 33, 1, 0, 0, 0, 1284, 1291, 3, 114, 57, 0, 1285, 1291, 3, 352, 176, 0, 1286, 1291, 3, 190, 95, 0, 1287, 1291, 3, 250, 125, 0, 1288, 1291, 3, 328, 164, 0, 1289, 1291, 3, 470, 235, 0, 1290, 1284, 1, 0, 0, 0, 1290, 1285, 1, 0, 0, 0, 1290, 1286, 1, 0, 0, 0, 1290, 1287, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1289, 1, 0, 0, 0, 1291, 35, 1, 0, 0, 0, 1292, 1294, 5, 333, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 3, 38, 19, 0, 1297, 37, 1, 0, 0, 0, 1298, 1299, 5, 356, 0, 0, 1299, 1307, 3, 468, 234, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1302, 5, 154, 0, 0, 1302, 1303, 5, 36, 0, 0, 1303, 1304, 5, 356, 0, 0, 1304, 1307, 3, 468, 234, 0, 1305, 1307, 3, 42, 21, 0, 1306, 1298, 1, 0, 0, 0, 1306, 1300, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 39, 1, 0, 0, 0, 1308, 1311, 5, 30, 0, 0, 1309, 1311, 3, 44, 22, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1309, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1314, 7, 5, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1318, 5, 53, 0, 0, 1316, 1318, 3, 46, 23, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 41, 1, 0, 0, 0, 1319, 1320, 5, 418, 0, 0, 1320, 1321, 5, 386, 0, 0, 1321, 1348, 3, 56, 28, 0, 1322, 1323, 5, 152, 0, 0, 1323, 1348, 3, 806, 403, 0, 1324, 1325, 5, 323, 0, 0, 1325, 1348, 3, 786, 393, 0, 1326, 1329, 5, 267, 0, 0, 1327, 1330, 3, 806, 403, 0, 1328, 1330, 5, 53, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1348, 1, 0, 0, 0, 1331, 1332, 5, 318, 0, 0, 1332, 1348, 3, 58, 29, 0, 1333, 1334, 5, 332, 0, 0, 1334, 1335, 5, 106, 0, 0, 1335, 1348, 3, 58, 29, 0, 1336, 1337, 5, 383, 0, 0, 1337, 1338, 5, 279, 0, 0, 1338, 1348, 3, 690, 345, 0, 1339, 1340, 5, 356, 0, 0, 1340, 1341, 5, 337, 0, 0, 1341, 1348, 3, 806, 403, 0, 1342, 1343, 3, 44, 22, 0, 1343, 1344, 5, 64, 0, 0, 1344, 1345, 5, 434, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1348, 3, 40, 20, 0, 1347, 1319, 1, 0, 0, 0, 1347, 1322, 1, 0, 0, 0, 1347, 1324, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1331, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1339, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1354, 3, 816, 408, 0, 1350, 1351, 5, 11, 0, 0, 1351, 1353, 3, 816, 408, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1362, 3, 48, 24, 0, 1358, 1359, 5, 6, 0, 0, 1359, 1361, 3, 48, 24, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 47, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 3, 54, 27, 0, 1366, 1368, 3, 196, 98, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1366, 1, 0, 0, 0, 1368, 49, 1, 0, 0, 0, 1369, 1370, 5, 300, 0, 0, 1370, 1375, 7, 8, 0, 0, 1371, 1372, 5, 310, 0, 0, 1372, 1375, 5, 300, 0, 0, 1373, 1375, 5, 330, 0, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1371, 1, 0, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 51, 1, 0, 0, 0, 1376, 1383, 5, 96, 0, 0, 1377, 1383, 5, 60, 0, 0, 1378, 1383, 5, 80, 0, 0, 1379, 1383, 3, 796, 398, 0, 1380, 1383, 3, 830, 415, 0, 1381, 1383, 3, 806, 403, 0, 1382, 1376, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1378, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 53, 1, 0, 0, 0, 1384, 1389, 5, 96, 0, 0, 1385, 1389, 5, 60, 0, 0, 1386, 1389, 5, 80, 0, 0, 1387, 1389, 3, 58, 29, 0, 1388, 1384, 1, 0, 0, 0, 1388, 1385, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1387, 1, 0, 0, 0, 1389, 55, 1, 0, 0, 0, 1390, 1405, 3, 806, 403, 0, 1391, 1405, 5, 53, 0, 0, 1392, 1405, 3, 824, 412, 0, 1393, 1394, 5, 403, 0, 0, 1394, 1396, 3, 806, 403, 0, 1395, 1397, 3, 662, 331, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1399, 5, 403, 0, 0, 1399, 1400, 3, 654, 327, 0, 1400, 1401, 3, 806, 403, 0, 1401, 1405, 1, 0, 0, 0, 1402, 1405, 3, 196, 98, 0, 1403, 1405, 5, 254, 0, 0, 1404, 1390, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1392, 1, 0, 0, 0, 1404, 1393, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 57, 1, 0, 0, 0, 1406, 1409, 3, 820, 410, 0, 1407, 1409, 3, 806, 403, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 59, 1, 0, 0, 0, 1410, 1411, 5, 313, 0, 0, 1411, 1412, 3, 62, 31, 0, 1412, 61, 1, 0, 0, 0, 1413, 1414, 5, 418, 0, 0, 1414, 1423, 5, 386, 0, 0, 1415, 1416, 5, 356, 0, 0, 1416, 1417, 5, 244, 0, 0, 1417, 1423, 5, 251, 0, 0, 1418, 1419, 5, 332, 0, 0, 1419, 1423, 5, 106, 0, 0, 1420, 1423, 5, 30, 0, 0, 1421, 1423, 3, 44, 22, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1415, 1, 0, 0, 0, 1422, 1418, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1421, 1, 0, 0, 0, 1423, 63, 1, 0, 0, 0, 1424, 1425, 5, 333, 0, 0, 1425, 1428, 3, 38, 19, 0, 1426, 1428, 3, 60, 30, 0, 1427, 1424, 1, 0, 0, 0, 1427, 1426, 1, 0, 0, 0, 1428, 65, 1, 0, 0, 0, 1429, 1430, 5, 333, 0, 0, 1430, 1433, 3, 42, 21, 0, 1431, 1433, 3, 60, 30, 0, 1432, 1429, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 67, 1, 0, 0, 0, 1434, 1444, 5, 335, 0, 0, 1435, 1445, 3, 44, 22, 0, 1436, 1437, 5, 418, 0, 0, 1437, 1445, 5, 386, 0, 0, 1438, 1439, 5, 356, 0, 0, 1439, 1440, 5, 244, 0, 0, 1440, 1445, 5, 251, 0, 0, 1441, 1442, 5, 332, 0, 0, 1442, 1445, 5, 106, 0, 0, 1443, 1445, 5, 30, 0, 0, 1444, 1435, 1, 0, 0, 0, 1444, 1436, 1, 0, 0, 0, 1444, 1438, 1, 0, 0, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 69, 1, 0, 0, 0, 1446, 1447, 5, 333, 0, 0, 1447, 1450, 5, 165, 0, 0, 1448, 1451, 5, 30, 0, 0, 1449, 1451, 3, 756, 378, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 71, 1, 0, 0, 0, 1454, 1455, 5, 155, 0, 0, 1455, 73, 1, 0, 0, 0, 1456, 1457, 5, 187, 0, 0, 1457, 1458, 7, 10, 0, 0, 1458, 75, 1, 0, 0, 0, 1459, 1460, 5, 138, 0, 0, 1460, 1462, 5, 92, 0, 0, 1461, 1463, 3, 416, 208, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1467, 3, 618, 309, 0, 1465, 1468, 3, 78, 39, 0, 1466, 1468, 3, 80, 40, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1466, 1, 0, 0, 0, 1468, 1577, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1471, 5, 92, 0, 0, 1471, 1472, 5, 30, 0, 0, 1472, 1473, 5, 68, 0, 0, 1473, 1477, 3, 170, 85, 0, 1474, 1475, 5, 281, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 3, 814, 407, 0, 1477, 1474, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 333, 0, 0, 1480, 1481, 5, 351, 0, 0, 1481, 1483, 3, 766, 383, 0, 1482, 1484, 5, 272, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1577, 1, 0, 0, 0, 1485, 1486, 5, 138, 0, 0, 1486, 1488, 5, 92, 0, 0, 1487, 1489, 3, 416, 208, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 3, 770, 385, 0, 1491, 1492, 3, 82, 41, 0, 1492, 1493, 3, 98, 49, 0, 1493, 1577, 1, 0, 0, 0, 1494, 1495, 5, 138, 0, 0, 1495, 1497, 5, 92, 0, 0, 1496, 1498, 3, 416, 208, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 3, 770, 385, 0, 1500, 1501, 5, 436, 0, 0, 1501, 1502, 5, 285, 0, 0, 1502, 1504, 3, 776, 388, 0, 1503, 1505, 7, 11, 0, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1577, 1, 0, 0, 0, 1506, 1507, 5, 138, 0, 0, 1507, 1509, 5, 226, 0, 0, 1508, 1510, 3, 416, 208, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 3, 776, 388, 0, 1512, 1515, 3, 78, 39, 0, 1513, 1515, 3, 82, 41, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1515, 1577, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1518, 5, 226, 0, 0, 1518, 1519, 5, 30, 0, 0, 1519, 1520, 5, 68, 0, 0, 1520, 1524, 3, 170, 85, 0, 1521, 1522, 5, 281, 0, 0, 1522, 1523, 5, 147, 0, 0, 1523, 1525, 3, 814, 407, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 5, 333, 0, 0, 1527, 1529, 3, 170, 85, 0, 1528, 1530, 5, 272, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1577, 1, 0, 0, 0, 1531, 1532, 5, 138, 0, 0, 1532, 1534, 5, 328, 0, 0, 1533, 1535, 3, 416, 208, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 3, 776, 388, 0, 1537, 1538, 3, 78, 39, 0, 1538, 1577, 1, 0, 0, 0, 1539, 1541, 5, 138, 0, 0, 1540, 1542, 5, 259, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 5, 376, 0, 0, 1544, 1546, 3, 416, 208, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 3, 774, 387, 0, 1548, 1549, 3, 78, 39, 0, 1549, 1577, 1, 0, 0, 0, 1550, 1551, 5, 138, 0, 0, 1551, 1552, 5, 259, 0, 0, 1552, 1553, 5, 376, 0, 0, 1553, 1554, 5, 30, 0, 0, 1554, 1555, 5, 68, 0, 0, 1555, 1559, 3, 170, 85, 0, 1556, 1557, 5, 281, 0, 0, 1557, 1558, 5, 147, 0, 0, 1558, 1560, 3, 814, 407, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 333, 0, 0, 1562, 1563, 5, 351, 0, 0, 1563, 1565, 3, 766, 383, 0, 1564, 1566, 5, 272, 0, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1577, 1, 0, 0, 0, 1567, 1568, 5, 138, 0, 0, 1568, 1569, 5, 63, 0, 0, 1569, 1571, 5, 92, 0, 0, 1570, 1572, 3, 416, 208, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 3, 618, 309, 0, 1574, 1575, 3, 78, 39, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1459, 1, 0, 0, 0, 1576, 1469, 1, 0, 0, 0, 1576, 1485, 1, 0, 0, 0, 1576, 1494, 1, 0, 0, 0, 1576, 1506, 1, 0, 0, 0, 1576, 1516, 1, 0, 0, 0, 1576, 1531, 1, 0, 0, 0, 1576, 1539, 1, 0, 0, 0, 1576, 1550, 1, 0, 0, 0, 1576, 1567, 1, 0, 0, 0, 1577, 77, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1580, 5, 6, 0, 0, 1580, 1582, 3, 84, 42, 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, 79, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1587, 3, 82, 41, 0, 1587, 1588, 3, 98, 49, 0, 1588, 1593, 1, 0, 0, 0, 1589, 1590, 5, 436, 0, 0, 1590, 1591, 5, 285, 0, 0, 1591, 1593, 3, 776, 388, 0, 1592, 1586, 1, 0, 0, 0, 1592, 1589, 1, 0, 0, 0, 1593, 81, 1, 0, 0, 0, 1594, 1595, 5, 435, 0, 0, 1595, 1596, 5, 285, 0, 0, 1596, 1597, 3, 776, 388, 0, 1597, 83, 1, 0, 0, 0, 1598, 1601, 5, 133, 0, 0, 1599, 1600, 5, 45, 0, 0, 1600, 1602, 3, 816, 408, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1832, 3, 136, 68, 0, 1604, 1605, 5, 138, 0, 0, 1605, 1606, 5, 45, 0, 0, 1606, 1610, 3, 816, 408, 0, 1607, 1609, 3, 266, 133, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1832, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 372, 0, 0, 1614, 1615, 5, 45, 0, 0, 1615, 1832, 3, 816, 408, 0, 1616, 1617, 5, 191, 0, 0, 1617, 1619, 5, 45, 0, 0, 1618, 1620, 3, 416, 208, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 3, 816, 408, 0, 1622, 1624, 3, 88, 44, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1832, 1, 0, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 379, 0, 0, 1627, 1832, 7, 12, 0, 0, 1628, 1629, 5, 158, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, 1832, 3, 816, 408, 0, 1631, 1632, 5, 333, 0, 0, 1632, 1832, 7, 13, 0, 0, 1633, 1635, 5, 193, 0, 0, 1634, 1636, 7, 14, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1832, 5, 357, 0, 0, 1638, 1639, 5, 186, 0, 0, 1639, 1643, 5, 357, 0, 0, 1640, 1644, 5, 30, 0, 0, 1641, 1644, 5, 99, 0, 0, 1642, 1644, 3, 816, 408, 0, 1643, 1640, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1832, 1, 0, 0, 0, 1645, 1646, 5, 193, 0, 0, 1646, 1647, 7, 14, 0, 0, 1647, 1648, 5, 321, 0, 0, 1648, 1832, 3, 816, 408, 0, 1649, 1650, 5, 186, 0, 0, 1650, 1651, 5, 321, 0, 0, 1651, 1832, 3, 816, 408, 0, 1652, 1654, 5, 269, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 5, 228, 0, 0, 1656, 1832, 3, 776, 388, 0, 1657, 1658, 5, 275, 0, 0, 1658, 1832, 3, 310, 155, 0, 1659, 1660, 5, 77, 0, 0, 1660, 1832, 5, 275, 0, 0, 1661, 1662, 5, 282, 0, 0, 1662, 1663, 5, 94, 0, 0, 1663, 1832, 3, 812, 406, 0, 1664, 1665, 5, 333, 0, 0, 1665, 1666, 5, 351, 0, 0, 1666, 1832, 3, 766, 383, 0, 1667, 1668, 5, 312, 0, 0, 1668, 1673, 5, 219, 0, 0, 1669, 1674, 5, 270, 0, 0, 1670, 1674, 5, 113, 0, 0, 1671, 1674, 5, 53, 0, 0, 1672, 1674, 3, 174, 87, 0, 1673, 1669, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1832, 1, 0, 0, 0, 1675, 1682, 5, 193, 0, 0, 1676, 1682, 5, 186, 0, 0, 1677, 1679, 5, 269, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 209, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1676, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 5, 414, 0, 0, 1684, 1685, 5, 251, 0, 0, 1685, 1832, 5, 327, 0, 0, 1686, 1688, 5, 191, 0, 0, 1687, 1689, 5, 44, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1692, 3, 416, 208, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 3, 796, 398, 0, 1694, 1696, 3, 88, 44, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1832, 1, 0, 0, 0, 1697, 1699, 5, 133, 0, 0, 1698, 1700, 5, 44, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 288, 144, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1832, 3, 126, 63, 0, 1705, 1707, 5, 138, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, 3, 796, 398, 0, 1710, 1713, 3, 86, 43, 0, 1711, 1713, 3, 216, 108, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 1832, 1, 0, 0, 0, 1714, 1716, 5, 138, 0, 0, 1715, 1717, 5, 44, 0, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 3, 796, 398, 0, 1719, 1720, 7, 15, 0, 0, 1720, 1721, 5, 77, 0, 0, 1721, 1722, 5, 78, 0, 0, 1722, 1832, 1, 0, 0, 0, 1723, 1725, 5, 138, 0, 0, 1724, 1726, 5, 44, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 3, 796, 398, 0, 1728, 1729, 5, 191, 0, 0, 1729, 1731, 5, 437, 0, 0, 1730, 1732, 3, 416, 208, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1832, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 796, 398, 0, 1738, 1739, 5, 333, 0, 0, 1739, 1740, 5, 342, 0, 0, 1740, 1741, 3, 810, 405, 0, 1741, 1832, 1, 0, 0, 0, 1742, 1744, 5, 138, 0, 0, 1743, 1745, 5, 44, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1748, 3, 796, 398, 0, 1747, 1742, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 7, 16, 0, 0, 1750, 1832, 3, 92, 46, 0, 1751, 1753, 5, 138, 0, 0, 1752, 1754, 5, 44, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 796, 398, 0, 1756, 1757, 5, 333, 0, 0, 1757, 1758, 5, 345, 0, 0, 1758, 1759, 3, 816, 408, 0, 1759, 1832, 1, 0, 0, 0, 1760, 1762, 5, 138, 0, 0, 1761, 1763, 5, 44, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 796, 398, 0, 1765, 1766, 5, 133, 0, 0, 1766, 1767, 5, 438, 0, 0, 1767, 1768, 3, 132, 66, 0, 1768, 1769, 5, 36, 0, 0, 1769, 1778, 5, 219, 0, 0, 1770, 1772, 5, 2, 0, 0, 1771, 1773, 3, 194, 97, 0, 1772, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 3, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1770, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1832, 1, 0, 0, 0, 1780, 1782, 5, 138, 0, 0, 1781, 1783, 5, 44, 0, 0, 1782, 1781, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1798, 3, 796, 398, 0, 1785, 1790, 5, 314, 0, 0, 1786, 1788, 5, 105, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 3, 196, 98, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1799, 1, 0, 0, 0, 1792, 1796, 5, 333, 0, 0, 1793, 1797, 3, 194, 97, 0, 1794, 1795, 5, 438, 0, 0, 1795, 1797, 3, 132, 66, 0, 1796, 1793, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1785, 1, 0, 0, 0, 1798, 1792, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1832, 1, 0, 0, 0, 1802, 1804, 5, 138, 0, 0, 1803, 1805, 5, 44, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 796, 398, 0, 1807, 1808, 5, 191, 0, 0, 1808, 1810, 5, 219, 0, 0, 1809, 1811, 3, 416, 208, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1832, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1819, 3, 796, 398, 0, 1817, 1818, 5, 333, 0, 0, 1818, 1820, 5, 174, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 5, 360, 0, 0, 1822, 1824, 3, 646, 323, 0, 1823, 1825, 3, 90, 45, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1827, 5, 100, 0, 0, 1827, 1829, 3, 668, 334, 0, 1828, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1832, 3, 216, 108, 0, 1831, 1598, 1, 0, 0, 0, 1831, 1604, 1, 0, 0, 0, 1831, 1613, 1, 0, 0, 0, 1831, 1616, 1, 0, 0, 0, 1831, 1625, 1, 0, 0, 0, 1831, 1628, 1, 0, 0, 0, 1831, 1631, 1, 0, 0, 0, 1831, 1633, 1, 0, 0, 0, 1831, 1638, 1, 0, 0, 0, 1831, 1645, 1, 0, 0, 0, 1831, 1649, 1, 0, 0, 0, 1831, 1653, 1, 0, 0, 0, 1831, 1657, 1, 0, 0, 0, 1831, 1659, 1, 0, 0, 0, 1831, 1661, 1, 0, 0, 0, 1831, 1664, 1, 0, 0, 0, 1831, 1667, 1, 0, 0, 0, 1831, 1681, 1, 0, 0, 0, 1831, 1686, 1, 0, 0, 0, 1831, 1697, 1, 0, 0, 0, 1831, 1705, 1, 0, 0, 0, 1831, 1714, 1, 0, 0, 0, 1831, 1723, 1, 0, 0, 0, 1831, 1733, 1, 0, 0, 0, 1831, 1747, 1, 0, 0, 0, 1831, 1751, 1, 0, 0, 0, 1831, 1760, 1, 0, 0, 0, 1831, 1780, 1, 0, 0, 0, 1831, 1802, 1, 0, 0, 0, 1831, 1812, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 85, 1, 0, 0, 0, 1833, 1834, 5, 333, 0, 0, 1834, 1835, 5, 53, 0, 0, 1835, 1839, 3, 668, 334, 0, 1836, 1837, 5, 191, 0, 0, 1837, 1839, 5, 53, 0, 0, 1838, 1833, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 87, 1, 0, 0, 0, 1840, 1841, 7, 17, 0, 0, 1841, 89, 1, 0, 0, 0, 1842, 1843, 5, 43, 0, 0, 1843, 1844, 3, 310, 155, 0, 1844, 91, 1, 0, 0, 0, 1845, 1846, 5, 2, 0, 0, 1846, 1851, 3, 96, 48, 0, 1847, 1848, 5, 6, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 3, 0, 0, 1855, 93, 1, 0, 0, 0, 1856, 1857, 5, 105, 0, 0, 1857, 1858, 3, 92, 46, 0, 1858, 95, 1, 0, 0, 0, 1859, 1864, 3, 822, 411, 0, 1860, 1861, 5, 10, 0, 0, 1861, 1865, 3, 282, 141, 0, 1862, 1863, 5, 11, 0, 0, 1863, 1865, 3, 280, 140, 0, 1864, 1860, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 97, 1, 0, 0, 0, 1866, 1867, 5, 62, 0, 0, 1867, 1868, 5, 422, 0, 0, 1868, 1869, 5, 105, 0, 0, 1869, 1870, 5, 2, 0, 0, 1870, 1871, 5, 533, 0, 0, 1871, 1872, 3, 196, 98, 0, 1872, 1873, 5, 6, 0, 0, 1873, 1874, 5, 534, 0, 0, 1874, 1875, 3, 196, 98, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1890, 1, 0, 0, 0, 1877, 1878, 5, 62, 0, 0, 1878, 1879, 5, 422, 0, 0, 1879, 1880, 5, 68, 0, 0, 1880, 1890, 3, 528, 264, 0, 1881, 1882, 5, 62, 0, 0, 1882, 1883, 5, 422, 0, 0, 1883, 1884, 5, 64, 0, 0, 1884, 1885, 3, 528, 264, 0, 1885, 1886, 5, 94, 0, 0, 1886, 1887, 3, 528, 264, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1890, 5, 53, 0, 0, 1889, 1866, 1, 0, 0, 0, 1889, 1877, 1, 0, 0, 0, 1889, 1881, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 99, 1, 0, 0, 0, 1891, 1892, 5, 138, 0, 0, 1892, 1893, 5, 360, 0, 0, 1893, 1894, 3, 310, 155, 0, 1894, 1899, 3, 102, 51, 0, 1895, 1896, 5, 6, 0, 0, 1896, 1898, 3, 102, 51, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 101, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1903, 5, 133, 0, 0, 1903, 1904, 5, 143, 0, 0, 1904, 1906, 3, 638, 319, 0, 1905, 1907, 3, 88, 44, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1933, 1, 0, 0, 0, 1908, 1909, 5, 191, 0, 0, 1909, 1911, 5, 143, 0, 0, 1910, 1912, 3, 416, 208, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1915, 3, 816, 408, 0, 1914, 1916, 3, 88, 44, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1933, 1, 0, 0, 0, 1917, 1918, 5, 138, 0, 0, 1918, 1919, 5, 143, 0, 0, 1919, 1922, 3, 816, 408, 0, 1920, 1921, 5, 333, 0, 0, 1921, 1923, 5, 174, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 5, 360, 0, 0, 1925, 1927, 3, 646, 323, 0, 1926, 1928, 3, 90, 45, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 88, 44, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1902, 1, 0, 0, 0, 1932, 1908, 1, 0, 0, 0, 1932, 1917, 1, 0, 0, 0, 1933, 103, 1, 0, 0, 0, 1934, 1937, 5, 157, 0, 0, 1935, 1938, 3, 816, 408, 0, 1936, 1938, 5, 30, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 105, 1, 0, 0, 0, 1939, 1941, 5, 169, 0, 0, 1940, 1942, 5, 107, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 3, 770, 385, 0, 1944, 1946, 3, 138, 69, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1949, 7, 18, 0, 0, 1948, 1950, 5, 297, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1955, 3, 806, 403, 0, 1952, 1955, 5, 343, 0, 0, 1953, 1955, 5, 344, 0, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1961, 1, 0, 0, 0, 1956, 1958, 5, 100, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 184, 0, 0, 1960, 1962, 3, 806, 403, 0, 1961, 1957, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 5, 105, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 3, 110, 55, 0, 1967, 1969, 3, 632, 316, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1989, 1, 0, 0, 0, 1970, 1971, 5, 169, 0, 0, 1971, 1972, 5, 2, 0, 0, 1972, 1973, 3, 524, 262, 0, 1973, 1974, 5, 3, 0, 0, 1974, 1976, 5, 94, 0, 0, 1975, 1977, 5, 297, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1981, 1, 0, 0, 0, 1978, 1982, 3, 806, 403, 0, 1979, 1982, 5, 343, 0, 0, 1980, 1982, 5, 344, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1980, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 5, 105, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 3, 110, 55, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1939, 1, 0, 0, 0, 1988, 1970, 1, 0, 0, 0, 1989, 107, 1, 0, 0, 0, 1990, 2033, 5, 107, 0, 0, 1991, 2033, 5, 112, 0, 0, 1992, 1994, 7, 19, 0, 0, 1993, 1995, 5, 36, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2033, 3, 806, 403, 0, 1997, 2033, 5, 171, 0, 0, 1998, 2033, 5, 216, 0, 0, 1999, 2000, 5, 209, 0, 0, 2000, 2003, 5, 298, 0, 0, 2001, 2004, 3, 142, 71, 0, 2002, 2004, 5, 9, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2002, 1, 0, 0, 0, 2004, 2033, 1, 0, 0, 0, 2005, 2007, 5, 209, 0, 0, 2006, 2008, 5, 77, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 5, 78, 0, 0, 2010, 2033, 3, 142, 71, 0, 2011, 2012, 5, 194, 0, 0, 2012, 2033, 3, 806, 403, 0, 2013, 2030, 7, 20, 0, 0, 2014, 2017, 5, 2, 0, 0, 2015, 2018, 3, 142, 71, 0, 2016, 2018, 5, 9, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, 0, 0, 0, 2018, 2026, 1, 0, 0, 0, 2019, 2022, 5, 6, 0, 0, 2020, 2023, 3, 142, 71, 0, 2021, 2023, 5, 9, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2028, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 2031, 5, 3, 0, 0, 2030, 2014, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 1990, 1, 0, 0, 0, 2032, 1991, 1, 0, 0, 0, 2032, 1992, 1, 0, 0, 0, 2032, 1997, 1, 0, 0, 0, 2032, 1998, 1, 0, 0, 0, 2032, 1999, 1, 0, 0, 0, 2032, 2005, 1, 0, 0, 0, 2032, 2011, 1, 0, 0, 0, 2032, 2013, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 109, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2056, 3, 108, 54, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 108, 54, 0, 2040, 2042, 3, 112, 56, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2050, 1, 0, 0, 0, 2043, 2046, 5, 6, 0, 0, 2044, 2047, 3, 108, 54, 0, 2045, 2047, 3, 112, 56, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2045, 1, 0, 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2043, 1, 0, 0, 0, 2049, 2052, 1, 0, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 1, 0, 0, 0, 2055, 2037, 1, 0, 0, 0, 2055, 2038, 1, 0, 0, 0, 2056, 111, 1, 0, 0, 0, 2057, 2072, 3, 822, 411, 0, 2058, 2073, 3, 54, 27, 0, 2059, 2073, 3, 196, 98, 0, 2060, 2073, 5, 9, 0, 0, 2061, 2062, 5, 2, 0, 0, 2062, 2067, 3, 52, 26, 0, 2063, 2064, 5, 6, 0, 0, 2064, 2066, 3, 52, 26, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 1, 0, 0, 0, 2072, 2058, 1, 0, 0, 0, 2072, 2059, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2061, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 113, 1, 0, 0, 0, 2074, 2076, 5, 46, 0, 0, 2075, 2077, 3, 116, 58, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 5, 92, 0, 0, 2079, 2081, 3, 288, 144, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2148, 3, 768, 384, 0, 2083, 2085, 5, 2, 0, 0, 2084, 2086, 3, 120, 60, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 5, 3, 0, 0, 2088, 2090, 3, 158, 79, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2093, 3, 160, 80, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2096, 3, 164, 82, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 166, 83, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 168, 84, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 170, 85, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2149, 1, 0, 0, 0, 2106, 2107, 5, 275, 0, 0, 2107, 2109, 3, 310, 155, 0, 2108, 2110, 3, 118, 59, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 160, 80, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 164, 82, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 166, 83, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 168, 84, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2125, 3, 170, 85, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2149, 1, 0, 0, 0, 2126, 2127, 5, 285, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 776, 388, 0, 2129, 2131, 3, 118, 59, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 3, 98, 49, 0, 2133, 2135, 3, 160, 80, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2138, 3, 164, 82, 0, 2137, 2136, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2141, 3, 166, 83, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 168, 84, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2147, 3, 170, 85, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2083, 1, 0, 0, 0, 2148, 2106, 1, 0, 0, 0, 2148, 2126, 1, 0, 0, 0, 2149, 115, 1, 0, 0, 0, 2150, 2156, 5, 354, 0, 0, 2151, 2156, 5, 352, 0, 0, 2152, 2153, 7, 21, 0, 0, 2153, 2156, 7, 22, 0, 0, 2154, 2156, 5, 367, 0, 0, 2155, 2150, 1, 0, 0, 0, 2155, 2151, 1, 0, 0, 0, 2155, 2152, 1, 0, 0, 0, 2155, 2154, 1, 0, 0, 0, 2156, 117, 1, 0, 0, 0, 2157, 2158, 5, 2, 0, 0, 2158, 2163, 3, 124, 62, 0, 2159, 2160, 5, 6, 0, 0, 2160, 2162, 3, 124, 62, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 3, 0, 0, 2167, 119, 1, 0, 0, 0, 2168, 2173, 3, 122, 61, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 122, 61, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 121, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 45, 0, 0, 2177, 2179, 3, 816, 408, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2192, 3, 136, 68, 0, 2181, 2192, 3, 126, 63, 0, 2182, 2183, 5, 120, 0, 0, 2183, 2188, 3, 776, 388, 0, 2184, 2185, 7, 23, 0, 0, 2185, 2187, 3, 134, 67, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2192, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2191, 2181, 1, 0, 0, 0, 2191, 2182, 1, 0, 0, 0, 2192, 123, 1, 0, 0, 0, 2193, 2196, 3, 800, 400, 0, 2194, 2195, 5, 105, 0, 0, 2195, 2197, 5, 280, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2201, 1, 0, 0, 0, 2198, 2200, 3, 128, 64, 0, 2199, 2198, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2210, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 45, 0, 0, 2205, 2207, 3, 816, 408, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 3, 136, 68, 0, 2209, 2193, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2210, 125, 1, 0, 0, 0, 2211, 2212, 3, 800, 400, 0, 2212, 2214, 3, 646, 323, 0, 2213, 2215, 3, 214, 107, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2225, 1, 0, 0, 0, 2216, 2223, 5, 345, 0, 0, 2217, 2224, 5, 544, 0, 0, 2218, 2224, 5, 205, 0, 0, 2219, 2224, 5, 545, 0, 0, 2220, 2224, 5, 546, 0, 0, 2221, 2224, 5, 53, 0, 0, 2222, 2224, 3, 816, 408, 0, 2223, 2217, 1, 0, 0, 0, 2223, 2218, 1, 0, 0, 0, 2223, 2219, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2226, 1, 0, 0, 0, 2225, 2216, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2228, 5, 543, 0, 0, 2228, 2230, 3, 816, 408, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 90, 45, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 105, 0, 0, 2235, 2237, 5, 280, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2241, 1, 0, 0, 0, 2238, 2240, 3, 128, 64, 0, 2239, 2238, 1, 0, 0, 0, 2240, 2243, 1, 0, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 127, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2245, 5, 45, 0, 0, 2245, 2247, 3, 816, 408, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2253, 3, 130, 65, 0, 2249, 2251, 5, 77, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2254, 5, 54, 0, 0, 2253, 2250, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 69, 0, 0, 2256, 2258, 7, 9, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 129, 1, 0, 0, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2340, 5, 78, 0, 0, 2263, 2265, 5, 98, 0, 0, 2264, 2266, 3, 394, 197, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2269, 3, 172, 86, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2340, 1, 0, 0, 0, 2270, 2276, 5, 98, 0, 0, 2271, 2273, 5, 273, 0, 0, 2272, 2274, 5, 77, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2277, 5, 56, 0, 0, 2276, 2271, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2279, 5, 441, 0, 0, 2279, 2281, 3, 354, 177, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2284, 3, 566, 283, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2287, 3, 172, 86, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2340, 1, 0, 0, 0, 2288, 2289, 5, 85, 0, 0, 2289, 2291, 5, 245, 0, 0, 2290, 2292, 3, 394, 197, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2340, 1, 0, 0, 0, 2296, 2297, 5, 42, 0, 0, 2297, 2298, 5, 2, 0, 0, 2298, 2299, 3, 668, 334, 0, 2299, 2302, 5, 3, 0, 0, 2300, 2301, 5, 269, 0, 0, 2301, 2303, 5, 228, 0, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2340, 1, 0, 0, 0, 2304, 2305, 5, 53, 0, 0, 2305, 2340, 3, 676, 338, 0, 2306, 2307, 5, 438, 0, 0, 2307, 2308, 3, 132, 66, 0, 2308, 2325, 5, 36, 0, 0, 2309, 2318, 5, 219, 0, 0, 2310, 2312, 5, 2, 0, 0, 2311, 2313, 3, 194, 97, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 5, 3, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2310, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2326, 1, 0, 0, 0, 2320, 2321, 5, 2, 0, 0, 2321, 2322, 3, 668, 334, 0, 2322, 2323, 5, 3, 0, 0, 2323, 2324, 5, 440, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2309, 1, 0, 0, 0, 2325, 2320, 1, 0, 0, 0, 2326, 2340, 1, 0, 0, 0, 2327, 2328, 5, 86, 0, 0, 2328, 2330, 3, 776, 388, 0, 2329, 2331, 3, 138, 69, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2334, 3, 146, 73, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 150, 75, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2340, 3, 90, 45, 0, 2339, 2260, 1, 0, 0, 0, 2339, 2263, 1, 0, 0, 0, 2339, 2270, 1, 0, 0, 0, 2339, 2288, 1, 0, 0, 0, 2339, 2296, 1, 0, 0, 0, 2339, 2304, 1, 0, 0, 0, 2339, 2306, 1, 0, 0, 0, 2339, 2327, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 131, 1, 0, 0, 0, 2341, 2345, 5, 139, 0, 0, 2342, 2343, 5, 147, 0, 0, 2343, 2345, 5, 53, 0, 0, 2344, 2341, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 133, 1, 0, 0, 0, 2346, 2347, 7, 24, 0, 0, 2347, 135, 1, 0, 0, 0, 2348, 2349, 5, 42, 0, 0, 2349, 2350, 5, 2, 0, 0, 2350, 2351, 3, 668, 334, 0, 2351, 2355, 5, 3, 0, 0, 2352, 2354, 3, 266, 133, 0, 2353, 2352, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2445, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 98, 0, 0, 2359, 2360, 5, 85, 0, 0, 2360, 2362, 5, 245, 0, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2386, 1, 0, 0, 0, 2363, 2365, 3, 138, 69, 0, 2364, 2366, 3, 144, 72, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2369, 3, 394, 197, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2372, 3, 172, 86, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2376, 1, 0, 0, 0, 2373, 2375, 3, 266, 133, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2387, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 3, 174, 87, 0, 2380, 2382, 3, 266, 133, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2363, 1, 0, 0, 0, 2386, 2379, 1, 0, 0, 0, 2387, 2445, 1, 0, 0, 0, 2388, 2390, 5, 199, 0, 0, 2389, 2391, 3, 164, 82, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 5, 2, 0, 0, 2393, 2398, 3, 148, 74, 0, 2394, 2395, 5, 6, 0, 0, 2395, 2397, 3, 148, 74, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2403, 5, 3, 0, 0, 2402, 2404, 3, 144, 72, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2407, 3, 394, 197, 0, 2406, 2405, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2410, 3, 172, 86, 0, 2409, 2408, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2416, 1, 0, 0, 0, 2411, 2412, 5, 103, 0, 0, 2412, 2413, 5, 2, 0, 0, 2413, 2414, 3, 668, 334, 0, 2414, 2415, 5, 3, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2411, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2421, 1, 0, 0, 0, 2418, 2420, 3, 266, 133, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2445, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2425, 5, 63, 0, 0, 2425, 2426, 5, 245, 0, 0, 2426, 2427, 3, 138, 69, 0, 2427, 2428, 5, 86, 0, 0, 2428, 2430, 3, 776, 388, 0, 2429, 2431, 3, 138, 69, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 146, 73, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2437, 3, 150, 75, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2441, 1, 0, 0, 0, 2438, 2440, 3, 266, 133, 0, 2439, 2438, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2348, 1, 0, 0, 0, 2444, 2361, 1, 0, 0, 0, 2444, 2388, 1, 0, 0, 0, 2444, 2424, 1, 0, 0, 0, 2445, 137, 1, 0, 0, 0, 2446, 2447, 5, 2, 0, 0, 2447, 2448, 3, 142, 71, 0, 2448, 2449, 5, 3, 0, 0, 2449, 139, 1, 0, 0, 0, 2450, 2451, 5, 2, 0, 0, 2451, 2456, 3, 800, 400, 0, 2452, 2453, 5, 6, 0, 0, 2453, 2455, 3, 800, 400, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 141, 1, 0, 0, 0, 2461, 2466, 3, 796, 398, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 796, 398, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 143, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 441, 0, 0, 2470, 2471, 3, 138, 69, 0, 2471, 145, 1, 0, 0, 0, 2472, 2473, 5, 258, 0, 0, 2473, 2474, 7, 25, 0, 0, 2474, 147, 1, 0, 0, 0, 2475, 2476, 3, 356, 178, 0, 2476, 2483, 5, 105, 0, 0, 2477, 2484, 3, 408, 204, 0, 2478, 2479, 5, 278, 0, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2481, 3, 408, 204, 0, 2481, 2482, 5, 3, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2477, 1, 0, 0, 0, 2483, 2478, 1, 0, 0, 0, 2484, 149, 1, 0, 0, 0, 2485, 2487, 3, 152, 76, 0, 2486, 2488, 3, 154, 77, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2494, 1, 0, 0, 0, 2489, 2491, 3, 154, 77, 0, 2490, 2492, 3, 152, 76, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2485, 1, 0, 0, 0, 2493, 2489, 1, 0, 0, 0, 2494, 151, 1, 0, 0, 0, 2495, 2496, 5, 80, 0, 0, 2496, 2497, 5, 369, 0, 0, 2497, 2498, 3, 156, 78, 0, 2498, 153, 1, 0, 0, 0, 2499, 2500, 5, 80, 0, 0, 2500, 2501, 5, 182, 0, 0, 2501, 2502, 3, 156, 78, 0, 2502, 155, 1, 0, 0, 0, 2503, 2504, 5, 269, 0, 0, 2504, 2513, 5, 132, 0, 0, 2505, 2513, 5, 315, 0, 0, 2506, 2513, 5, 150, 0, 0, 2507, 2508, 5, 333, 0, 0, 2508, 2510, 7, 26, 0, 0, 2509, 2511, 3, 142, 71, 0, 2510, 2509, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2503, 1, 0, 0, 0, 2512, 2505, 1, 0, 0, 0, 2512, 2506, 1, 0, 0, 0, 2512, 2507, 1, 0, 0, 0, 2513, 157, 1, 0, 0, 0, 2514, 2515, 5, 238, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 756, 378, 0, 2517, 2518, 5, 3, 0, 0, 2518, 159, 1, 0, 0, 0, 2519, 2520, 5, 285, 0, 0, 2520, 2521, 5, 147, 0, 0, 2521, 2522, 3, 816, 408, 0, 2522, 2523, 5, 2, 0, 0, 2523, 2528, 3, 162, 81, 0, 2524, 2525, 5, 6, 0, 0, 2525, 2527, 3, 162, 81, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2530, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2532, 5, 3, 0, 0, 2532, 161, 1, 0, 0, 0, 2533, 2540, 3, 796, 398, 0, 2534, 2540, 3, 682, 341, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2537, 3, 668, 334, 0, 2537, 2538, 5, 3, 0, 0, 2538, 2540, 1, 0, 0, 0, 2539, 2533, 1, 0, 0, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2535, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 90, 45, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 310, 155, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 163, 1, 0, 0, 0, 2547, 2548, 5, 100, 0, 0, 2548, 2549, 3, 816, 408, 0, 2549, 165, 1, 0, 0, 0, 2550, 2551, 5, 105, 0, 0, 2551, 2555, 3, 92, 46, 0, 2552, 2553, 7, 27, 0, 0, 2553, 2555, 5, 277, 0, 0, 2554, 2550, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 167, 1, 0, 0, 0, 2556, 2557, 5, 80, 0, 0, 2557, 2563, 5, 161, 0, 0, 2558, 2564, 5, 191, 0, 0, 2559, 2560, 5, 182, 0, 0, 2560, 2564, 5, 320, 0, 0, 2561, 2562, 5, 292, 0, 0, 2562, 2564, 5, 320, 0, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2564, 169, 1, 0, 0, 0, 2565, 2566, 5, 351, 0, 0, 2566, 2567, 3, 766, 383, 0, 2567, 171, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 5, 226, 0, 0, 2570, 2571, 3, 170, 85, 0, 2571, 173, 1, 0, 0, 0, 2572, 2573, 5, 100, 0, 0, 2573, 2574, 5, 226, 0, 0, 2574, 2575, 3, 816, 408, 0, 2575, 175, 1, 0, 0, 0, 2576, 2577, 5, 46, 0, 0, 2577, 2582, 5, 342, 0, 0, 2578, 2580, 3, 288, 144, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 3, 310, 155, 0, 2582, 2579, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 138, 69, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2597, 5, 80, 0, 0, 2588, 2593, 3, 728, 364, 0, 2589, 2590, 5, 6, 0, 0, 2590, 2592, 3, 728, 364, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2598, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2598, 3, 726, 363, 0, 2597, 2588, 1, 0, 0, 0, 2597, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 604, 302, 0, 2600, 177, 1, 0, 0, 0, 2601, 2602, 5, 138, 0, 0, 2602, 2604, 5, 342, 0, 0, 2603, 2605, 3, 416, 208, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 3, 310, 155, 0, 2607, 2608, 5, 333, 0, 0, 2608, 2609, 5, 342, 0, 0, 2609, 2610, 3, 810, 405, 0, 2610, 179, 1, 0, 0, 0, 2611, 2613, 5, 46, 0, 0, 2612, 2614, 3, 116, 58, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 5, 92, 0, 0, 2616, 2618, 3, 288, 144, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 3, 182, 91, 0, 2620, 2621, 5, 36, 0, 0, 2621, 2623, 3, 554, 277, 0, 2622, 2624, 3, 184, 92, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 181, 1, 0, 0, 0, 2625, 2627, 3, 768, 384, 0, 2626, 2628, 3, 140, 70, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 164, 82, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 166, 83, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 168, 84, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 170, 85, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 183, 1, 0, 0, 0, 2641, 2645, 5, 105, 0, 0, 2642, 2646, 5, 174, 0, 0, 2643, 2644, 5, 269, 0, 0, 2644, 2646, 5, 174, 0, 0, 2645, 2642, 1, 0, 0, 0, 2645, 2643, 1, 0, 0, 0, 2646, 185, 1, 0, 0, 0, 2647, 2649, 5, 46, 0, 0, 2648, 2650, 5, 367, 0, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 5, 259, 0, 0, 2652, 2654, 5, 376, 0, 0, 2653, 2655, 3, 288, 144, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 3, 772, 386, 0, 2657, 2659, 3, 140, 70, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 164, 82, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 94, 47, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2668, 3, 170, 85, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 36, 0, 0, 2670, 2672, 3, 554, 277, 0, 2671, 2673, 3, 184, 92, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 187, 1, 0, 0, 0, 2674, 2675, 5, 305, 0, 0, 2675, 2676, 5, 259, 0, 0, 2676, 2678, 5, 376, 0, 0, 2677, 2679, 5, 109, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 3, 774, 387, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 189, 1, 0, 0, 0, 2684, 2686, 5, 46, 0, 0, 2685, 2687, 3, 116, 58, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 5, 328, 0, 0, 2689, 2691, 3, 288, 144, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2698, 3, 776, 388, 0, 2693, 2695, 3, 194, 97, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2694, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 191, 1, 0, 0, 0, 2700, 2701, 5, 138, 0, 0, 2701, 2703, 5, 328, 0, 0, 2702, 2704, 3, 416, 208, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 3, 776, 388, 0, 2706, 2708, 3, 194, 97, 0, 2707, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 193, 1, 0, 0, 0, 2711, 2712, 5, 36, 0, 0, 2712, 2745, 3, 648, 324, 0, 2713, 2715, 5, 148, 0, 0, 2714, 2716, 3, 196, 98, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2745, 1, 0, 0, 0, 2717, 2719, 5, 225, 0, 0, 2718, 2720, 5, 147, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2745, 3, 196, 98, 0, 2722, 2723, 7, 28, 0, 0, 2723, 2745, 3, 196, 98, 0, 2724, 2725, 5, 269, 0, 0, 2725, 2745, 7, 29, 0, 0, 2726, 2727, 5, 281, 0, 0, 2727, 2728, 5, 147, 0, 0, 2728, 2745, 3, 796, 398, 0, 2729, 2730, 5, 328, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 2745, 3, 310, 155, 0, 2732, 2734, 5, 340, 0, 0, 2733, 2735, 5, 105, 0, 0, 2734, 2733, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2745, 3, 196, 98, 0, 2737, 2739, 5, 314, 0, 0, 2738, 2740, 5, 105, 0, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2743, 3, 196, 98, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2711, 1, 0, 0, 0, 2744, 2713, 1, 0, 0, 0, 2744, 2717, 1, 0, 0, 0, 2744, 2722, 1, 0, 0, 0, 2744, 2724, 1, 0, 0, 0, 2744, 2726, 1, 0, 0, 0, 2744, 2729, 1, 0, 0, 0, 2744, 2732, 1, 0, 0, 0, 2744, 2737, 1, 0, 0, 0, 2745, 195, 1, 0, 0, 0, 2746, 2748, 7, 30, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2752, 5, 576, 0, 0, 2750, 2752, 3, 810, 405, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 197, 1, 0, 0, 0, 2753, 2755, 5, 46, 0, 0, 2754, 2756, 3, 360, 180, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2759, 5, 359, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2762, 5, 295, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 5, 247, 0, 0, 2764, 2777, 3, 816, 408, 0, 2765, 2766, 5, 215, 0, 0, 2766, 2769, 3, 310, 155, 0, 2767, 2768, 5, 239, 0, 0, 2768, 2770, 3, 310, 155, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2775, 1, 0, 0, 0, 2771, 2772, 5, 373, 0, 0, 2772, 2776, 3, 310, 155, 0, 2773, 2774, 5, 269, 0, 0, 2774, 2776, 5, 373, 0, 0, 2775, 2771, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2765, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 199, 1, 0, 0, 0, 2779, 2780, 5, 46, 0, 0, 2780, 2783, 3, 170, 85, 0, 2781, 2782, 5, 282, 0, 0, 2782, 2784, 3, 812, 406, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 255, 0, 0, 2786, 2788, 3, 806, 403, 0, 2787, 2789, 3, 94, 47, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 201, 1, 0, 0, 0, 2790, 2791, 5, 46, 0, 0, 2791, 2793, 5, 204, 0, 0, 2792, 2794, 3, 288, 144, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 3, 816, 408, 0, 2796, 2798, 5, 105, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2806, 1, 0, 0, 0, 2799, 2800, 5, 323, 0, 0, 2800, 2805, 3, 786, 393, 0, 2801, 2802, 7, 31, 0, 0, 2802, 2805, 3, 58, 29, 0, 2803, 2805, 5, 150, 0, 0, 2804, 2799, 1, 0, 0, 0, 2804, 2801, 1, 0, 0, 0, 2804, 2803, 1, 0, 0, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2804, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 203, 1, 0, 0, 0, 2808, 2806, 1, 0, 0, 0, 2809, 2810, 5, 138, 0, 0, 2810, 2811, 5, 204, 0, 0, 2811, 2812, 3, 816, 408, 0, 2812, 2817, 5, 369, 0, 0, 2813, 2814, 5, 94, 0, 0, 2814, 2816, 3, 58, 29, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 205, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2821, 5, 138, 0, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2823, 3, 816, 408, 0, 2823, 2856, 7, 6, 0, 0, 2824, 2825, 5, 443, 0, 0, 2825, 2826, 5, 62, 0, 0, 2826, 2827, 3, 646, 323, 0, 2827, 2828, 5, 247, 0, 0, 2828, 2829, 3, 816, 408, 0, 2829, 2857, 1, 0, 0, 0, 2830, 2831, 5, 442, 0, 0, 2831, 2857, 3, 368, 184, 0, 2832, 2833, 5, 296, 0, 0, 2833, 2857, 3, 372, 186, 0, 2834, 2835, 5, 278, 0, 0, 2835, 2836, 7, 32, 0, 0, 2836, 2837, 3, 310, 155, 0, 2837, 2838, 3, 164, 82, 0, 2838, 2857, 1, 0, 0, 0, 2839, 2840, 5, 278, 0, 0, 2840, 2857, 3, 410, 205, 0, 2841, 2842, 5, 211, 0, 0, 2842, 2857, 3, 376, 188, 0, 2843, 2844, 7, 33, 0, 0, 2844, 2857, 3, 646, 323, 0, 2845, 2846, 5, 41, 0, 0, 2846, 2847, 5, 2, 0, 0, 2847, 2848, 3, 646, 323, 0, 2848, 2849, 5, 36, 0, 0, 2849, 2850, 3, 646, 323, 0, 2850, 2851, 5, 3, 0, 0, 2851, 2857, 1, 0, 0, 0, 2852, 2853, 5, 136, 0, 0, 2853, 2857, 3, 388, 194, 0, 2854, 2857, 3, 306, 153, 0, 2855, 2857, 3, 304, 152, 0, 2856, 2824, 1, 0, 0, 0, 2856, 2830, 1, 0, 0, 0, 2856, 2832, 1, 0, 0, 0, 2856, 2834, 1, 0, 0, 0, 2856, 2839, 1, 0, 0, 0, 2856, 2841, 1, 0, 0, 0, 2856, 2843, 1, 0, 0, 0, 2856, 2845, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 207, 1, 0, 0, 0, 2858, 2859, 5, 46, 0, 0, 2859, 2860, 5, 63, 0, 0, 2860, 2861, 5, 174, 0, 0, 2861, 2862, 5, 381, 0, 0, 2862, 2868, 3, 816, 408, 0, 2863, 2865, 3, 210, 105, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2864, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2872, 3, 214, 107, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 209, 1, 0, 0, 0, 2873, 2875, 7, 34, 0, 0, 2874, 2876, 3, 310, 155, 0, 2875, 2874, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2880, 1, 0, 0, 0, 2877, 2878, 5, 269, 0, 0, 2878, 2880, 7, 34, 0, 0, 2879, 2873, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 211, 1, 0, 0, 0, 2881, 2882, 5, 138, 0, 0, 2882, 2883, 5, 63, 0, 0, 2883, 2884, 5, 174, 0, 0, 2884, 2885, 5, 381, 0, 0, 2885, 2899, 3, 816, 408, 0, 2886, 2888, 3, 210, 105, 0, 2887, 2886, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2887, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2900, 3, 216, 108, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2891, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2900, 213, 1, 0, 0, 0, 2901, 2902, 5, 280, 0, 0, 2902, 2903, 5, 2, 0, 0, 2903, 2908, 3, 220, 110, 0, 2904, 2905, 5, 6, 0, 0, 2905, 2907, 3, 220, 110, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 3, 0, 0, 2912, 215, 1, 0, 0, 0, 2913, 2914, 5, 280, 0, 0, 2914, 2915, 5, 2, 0, 0, 2915, 2920, 3, 218, 109, 0, 2916, 2917, 5, 6, 0, 0, 2917, 2919, 3, 218, 109, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2924, 5, 3, 0, 0, 2924, 217, 1, 0, 0, 0, 2925, 2926, 7, 35, 0, 0, 2926, 2927, 3, 220, 110, 0, 2927, 219, 1, 0, 0, 0, 2928, 2929, 3, 822, 411, 0, 2929, 2930, 3, 806, 403, 0, 2930, 221, 1, 0, 0, 0, 2931, 2932, 5, 46, 0, 0, 2932, 2934, 5, 331, 0, 0, 2933, 2935, 3, 288, 144, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2939, 3, 816, 408, 0, 2937, 2938, 5, 360, 0, 0, 2938, 2940, 3, 806, 403, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2942, 1, 0, 0, 0, 2941, 2943, 3, 224, 112, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 5, 63, 0, 0, 2945, 2946, 5, 174, 0, 0, 2946, 2947, 5, 381, 0, 0, 2947, 2949, 3, 816, 408, 0, 2948, 2950, 3, 214, 107, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 223, 1, 0, 0, 0, 2951, 2954, 5, 375, 0, 0, 2952, 2955, 3, 806, 403, 0, 2953, 2955, 5, 78, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 225, 1, 0, 0, 0, 2956, 2957, 5, 138, 0, 0, 2957, 2958, 5, 331, 0, 0, 2958, 2964, 3, 816, 408, 0, 2959, 2965, 3, 216, 108, 0, 2960, 2962, 3, 224, 112, 0, 2961, 2963, 3, 216, 108, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2959, 1, 0, 0, 0, 2964, 2960, 1, 0, 0, 0, 2965, 227, 1, 0, 0, 0, 2966, 2967, 5, 46, 0, 0, 2967, 2968, 5, 63, 0, 0, 2968, 2970, 5, 92, 0, 0, 2969, 2971, 3, 288, 144, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 3, 768, 384, 0, 2973, 2975, 5, 2, 0, 0, 2974, 2976, 3, 120, 60, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 5, 3, 0, 0, 2978, 2980, 3, 158, 79, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 5, 331, 0, 0, 2982, 2984, 3, 816, 408, 0, 2983, 2985, 3, 214, 107, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 3006, 1, 0, 0, 0, 2986, 2987, 5, 46, 0, 0, 2987, 2988, 5, 63, 0, 0, 2988, 2990, 5, 92, 0, 0, 2989, 2991, 3, 288, 144, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 3, 768, 384, 0, 2993, 2994, 5, 285, 0, 0, 2994, 2995, 5, 275, 0, 0, 2995, 2997, 3, 770, 385, 0, 2996, 2998, 3, 118, 59, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 3, 98, 49, 0, 3000, 3001, 5, 331, 0, 0, 3001, 3003, 3, 816, 408, 0, 3002, 3004, 3, 214, 107, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 2966, 1, 0, 0, 0, 3005, 2986, 1, 0, 0, 0, 3006, 229, 1, 0, 0, 0, 3007, 3008, 5, 444, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3010, 5, 323, 0, 0, 3010, 3020, 3, 786, 393, 0, 3011, 3012, 5, 74, 0, 0, 3012, 3015, 5, 94, 0, 0, 3013, 3015, 5, 59, 0, 0, 3014, 3011, 1, 0, 0, 0, 3014, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 2, 0, 0, 3017, 3018, 3, 622, 311, 0, 3018, 3019, 5, 3, 0, 0, 3019, 3021, 1, 0, 0, 0, 3020, 3014, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 64, 0, 0, 3023, 3024, 5, 331, 0, 0, 3024, 3025, 3, 816, 408, 0, 3025, 3026, 5, 71, 0, 0, 3026, 3028, 3, 816, 408, 0, 3027, 3029, 3, 214, 107, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 231, 1, 0, 0, 0, 3030, 3031, 5, 46, 0, 0, 3031, 3032, 5, 99, 0, 0, 3032, 3034, 5, 257, 0, 0, 3033, 3035, 3, 288, 144, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3039, 5, 62, 0, 0, 3037, 3040, 3, 812, 406, 0, 3038, 3040, 5, 99, 0, 0, 3039, 3037, 1, 0, 0, 0, 3039, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 5, 331, 0, 0, 3042, 3044, 3, 816, 408, 0, 3043, 3045, 3, 214, 107, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 233, 1, 0, 0, 0, 3046, 3047, 5, 138, 0, 0, 3047, 3048, 5, 99, 0, 0, 3048, 3049, 5, 257, 0, 0, 3049, 3052, 5, 62, 0, 0, 3050, 3053, 3, 812, 406, 0, 3051, 3053, 5, 99, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 5, 331, 0, 0, 3055, 3056, 3, 816, 408, 0, 3056, 3057, 3, 216, 108, 0, 3057, 235, 1, 0, 0, 0, 3058, 3059, 5, 46, 0, 0, 3059, 3060, 5, 445, 0, 0, 3060, 3061, 3, 816, 408, 0, 3061, 3062, 5, 80, 0, 0, 3062, 3069, 3, 776, 388, 0, 3063, 3067, 5, 36, 0, 0, 3064, 3068, 5, 541, 0, 0, 3065, 3068, 5, 542, 0, 0, 3066, 3068, 3, 824, 412, 0, 3067, 3064, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3063, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3073, 1, 0, 0, 0, 3071, 3072, 5, 62, 0, 0, 3072, 3074, 7, 36, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3077, 1, 0, 0, 0, 3075, 3076, 5, 94, 0, 0, 3076, 3078, 3, 814, 407, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 244, 122, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 246, 123, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 237, 1, 0, 0, 0, 3085, 3086, 5, 138, 0, 0, 3086, 3087, 5, 445, 0, 0, 3087, 3088, 3, 816, 408, 0, 3088, 3089, 5, 80, 0, 0, 3089, 3092, 3, 776, 388, 0, 3090, 3091, 5, 94, 0, 0, 3091, 3093, 3, 814, 407, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 244, 122, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 246, 123, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 239, 1, 0, 0, 0, 3100, 3101, 5, 138, 0, 0, 3101, 3102, 5, 296, 0, 0, 3102, 3104, 3, 792, 396, 0, 3103, 3105, 3, 362, 181, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3132, 1, 0, 0, 0, 3106, 3110, 3, 242, 121, 0, 3107, 3109, 3, 242, 121, 0, 3108, 3107, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3115, 5, 315, 0, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3133, 1, 0, 0, 0, 3116, 3117, 5, 309, 0, 0, 3117, 3118, 5, 94, 0, 0, 3118, 3133, 3, 794, 397, 0, 3119, 3120, 5, 282, 0, 0, 3120, 3121, 5, 94, 0, 0, 3121, 3133, 3, 812, 406, 0, 3122, 3123, 5, 333, 0, 0, 3123, 3124, 5, 323, 0, 0, 3124, 3133, 3, 32, 16, 0, 3125, 3127, 5, 269, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 5, 462, 0, 0, 3129, 3130, 5, 80, 0, 0, 3130, 3131, 5, 204, 0, 0, 3131, 3133, 3, 816, 408, 0, 3132, 3106, 1, 0, 0, 0, 3132, 3116, 1, 0, 0, 0, 3132, 3119, 1, 0, 0, 0, 3132, 3122, 1, 0, 0, 0, 3132, 3126, 1, 0, 0, 0, 3133, 241, 1, 0, 0, 0, 3134, 3136, 5, 205, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 327, 0, 0, 3138, 3145, 5, 243, 0, 0, 3139, 3141, 5, 205, 0, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 5, 327, 0, 0, 3143, 3145, 5, 181, 0, 0, 3144, 3135, 1, 0, 0, 0, 3144, 3140, 1, 0, 0, 0, 3145, 3164, 1, 0, 0, 0, 3146, 3147, 5, 333, 0, 0, 3147, 3148, 3, 816, 408, 0, 3148, 3151, 7, 37, 0, 0, 3149, 3152, 3, 816, 408, 0, 3150, 3152, 5, 53, 0, 0, 3151, 3149, 1, 0, 0, 0, 3151, 3150, 1, 0, 0, 0, 3152, 3164, 1, 0, 0, 0, 3153, 3154, 5, 333, 0, 0, 3154, 3155, 3, 816, 408, 0, 3155, 3156, 5, 64, 0, 0, 3156, 3157, 5, 434, 0, 0, 3157, 3164, 1, 0, 0, 0, 3158, 3161, 5, 313, 0, 0, 3159, 3162, 3, 816, 408, 0, 3160, 3162, 5, 30, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3144, 1, 0, 0, 0, 3163, 3146, 1, 0, 0, 0, 3163, 3153, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3164, 243, 1, 0, 0, 0, 3165, 3166, 5, 100, 0, 0, 3166, 3167, 5, 2, 0, 0, 3167, 3168, 3, 668, 334, 0, 3168, 3169, 5, 3, 0, 0, 3169, 245, 1, 0, 0, 0, 3170, 3171, 5, 105, 0, 0, 3171, 3172, 5, 42, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3174, 3, 668, 334, 0, 3174, 3175, 5, 3, 0, 0, 3175, 247, 1, 0, 0, 0, 3176, 3177, 5, 46, 0, 0, 3177, 3178, 5, 131, 0, 0, 3178, 3179, 5, 446, 0, 0, 3179, 3180, 3, 816, 408, 0, 3180, 3181, 5, 360, 0, 0, 3181, 3182, 7, 38, 0, 0, 3182, 3183, 5, 215, 0, 0, 3183, 3184, 3, 310, 155, 0, 3184, 249, 1, 0, 0, 0, 3185, 3187, 5, 46, 0, 0, 3186, 3188, 3, 360, 180, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 5, 357, 0, 0, 3190, 3191, 3, 816, 408, 0, 3191, 3192, 3, 252, 126, 0, 3192, 3193, 3, 254, 127, 0, 3193, 3194, 5, 80, 0, 0, 3194, 3206, 3, 770, 385, 0, 3195, 3202, 5, 447, 0, 0, 3196, 3197, 7, 39, 0, 0, 3197, 3199, 7, 40, 0, 0, 3198, 3200, 5, 36, 0, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 3, 816, 408, 0, 3202, 3196, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3195, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3210, 5, 62, 0, 0, 3209, 3211, 5, 192, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 7, 41, 0, 0, 3213, 3208, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 258, 129, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 5, 202, 0, 0, 3219, 3220, 3, 260, 130, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3222, 3, 262, 131, 0, 3222, 3223, 5, 3, 0, 0, 3223, 3264, 1, 0, 0, 0, 3224, 3226, 5, 46, 0, 0, 3225, 3227, 3, 360, 180, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3229, 1, 0, 0, 0, 3228, 3230, 5, 45, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 5, 357, 0, 0, 3232, 3233, 3, 816, 408, 0, 3233, 3234, 3, 252, 126, 0, 3234, 3235, 3, 254, 127, 0, 3235, 3236, 5, 80, 0, 0, 3236, 3239, 3, 770, 385, 0, 3237, 3238, 5, 64, 0, 0, 3238, 3240, 3, 776, 388, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3244, 1, 0, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3247, 3249, 5, 62, 0, 0, 3248, 3250, 5, 192, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3253, 7, 41, 0, 0, 3252, 3247, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 258, 129, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 5, 202, 0, 0, 3258, 3259, 3, 260, 130, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 262, 131, 0, 3261, 3262, 5, 3, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3185, 1, 0, 0, 0, 3263, 3224, 1, 0, 0, 0, 3264, 251, 1, 0, 0, 0, 3265, 3270, 5, 145, 0, 0, 3266, 3270, 5, 135, 0, 0, 3267, 3268, 5, 242, 0, 0, 3268, 3270, 5, 275, 0, 0, 3269, 3265, 1, 0, 0, 0, 3269, 3266, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 253, 1, 0, 0, 0, 3271, 3276, 3, 256, 128, 0, 3272, 3273, 5, 82, 0, 0, 3273, 3275, 3, 256, 128, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 255, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 3288, 5, 241, 0, 0, 3280, 3288, 5, 182, 0, 0, 3281, 3284, 5, 369, 0, 0, 3282, 3283, 5, 275, 0, 0, 3283, 3285, 3, 142, 71, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 5, 358, 0, 0, 3287, 3279, 1, 0, 0, 0, 3287, 3280, 1, 0, 0, 0, 3287, 3281, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 257, 1, 0, 0, 0, 3289, 3290, 5, 102, 0, 0, 3290, 3291, 5, 2, 0, 0, 3291, 3292, 3, 668, 334, 0, 3292, 3293, 5, 3, 0, 0, 3293, 259, 1, 0, 0, 0, 3294, 3295, 5, 211, 0, 0, 3295, 3299, 3, 804, 402, 0, 3296, 3297, 5, 296, 0, 0, 3297, 3299, 3, 792, 396, 0, 3298, 3294, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3299, 261, 1, 0, 0, 0, 3300, 3303, 3, 264, 132, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3301, 1, 0, 0, 0, 3303, 3308, 1, 0, 0, 0, 3304, 3305, 5, 6, 0, 0, 3305, 3307, 3, 264, 132, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3310, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3316, 5, 574, 0, 0, 3312, 3316, 5, 576, 0, 0, 3313, 3316, 3, 806, 403, 0, 3314, 3316, 3, 822, 411, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 265, 1, 0, 0, 0, 3317, 3319, 5, 77, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3328, 5, 54, 0, 0, 3321, 3322, 5, 69, 0, 0, 3322, 3328, 7, 9, 0, 0, 3323, 3324, 5, 77, 0, 0, 3324, 3328, 5, 371, 0, 0, 3325, 3326, 5, 269, 0, 0, 3326, 3328, 5, 228, 0, 0, 3327, 3318, 1, 0, 0, 0, 3327, 3321, 1, 0, 0, 0, 3327, 3323, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 267, 1, 0, 0, 0, 3329, 3330, 5, 46, 0, 0, 3330, 3331, 5, 198, 0, 0, 3331, 3332, 5, 357, 0, 0, 3332, 3333, 3, 816, 408, 0, 3333, 3334, 5, 80, 0, 0, 3334, 3344, 3, 822, 411, 0, 3335, 3336, 5, 102, 0, 0, 3336, 3341, 3, 270, 135, 0, 3337, 3338, 5, 33, 0, 0, 3338, 3340, 3, 270, 135, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3344, 3335, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 202, 0, 0, 3347, 3348, 3, 260, 130, 0, 3348, 3349, 5, 2, 0, 0, 3349, 3350, 5, 3, 0, 0, 3350, 269, 1, 0, 0, 0, 3351, 3352, 3, 816, 408, 0, 3352, 3353, 5, 68, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 3358, 3, 806, 403, 0, 3355, 3357, 3, 456, 228, 0, 3356, 3355, 1, 0, 0, 0, 3357, 3360, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3362, 5, 3, 0, 0, 3362, 271, 1, 0, 0, 0, 3363, 3364, 5, 138, 0, 0, 3364, 3365, 5, 198, 0, 0, 3365, 3366, 5, 357, 0, 0, 3366, 3372, 3, 816, 408, 0, 3367, 3369, 5, 193, 0, 0, 3368, 3370, 7, 14, 0, 0, 3369, 3368, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3373, 1, 0, 0, 0, 3371, 3373, 5, 186, 0, 0, 3372, 3367, 1, 0, 0, 0, 3372, 3371, 1, 0, 0, 0, 3373, 273, 1, 0, 0, 0, 3374, 3375, 5, 46, 0, 0, 3375, 3376, 5, 140, 0, 0, 3376, 3377, 3, 310, 155, 0, 3377, 3378, 5, 42, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 668, 334, 0, 3380, 3384, 5, 3, 0, 0, 3381, 3383, 3, 266, 133, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 275, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3389, 5, 46, 0, 0, 3388, 3390, 3, 360, 180, 0, 3389, 3388, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 5, 136, 0, 0, 3392, 3407, 3, 804, 402, 0, 3393, 3394, 3, 386, 193, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3408, 1, 0, 0, 0, 3396, 3397, 5, 2, 0, 0, 3397, 3402, 3, 284, 142, 0, 3398, 3399, 5, 6, 0, 0, 3399, 3401, 3, 284, 142, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3405, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3406, 5, 3, 0, 0, 3406, 3408, 1, 0, 0, 0, 3407, 3393, 1, 0, 0, 0, 3407, 3396, 1, 0, 0, 0, 3408, 3466, 1, 0, 0, 0, 3409, 3410, 5, 46, 0, 0, 3410, 3411, 5, 278, 0, 0, 3411, 3412, 3, 408, 204, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3466, 1, 0, 0, 0, 3414, 3415, 5, 46, 0, 0, 3415, 3416, 5, 360, 0, 0, 3416, 3417, 3, 310, 155, 0, 3417, 3435, 5, 36, 0, 0, 3418, 3420, 5, 2, 0, 0, 3419, 3421, 3, 636, 318, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3436, 5, 3, 0, 0, 3423, 3424, 5, 196, 0, 0, 3424, 3432, 5, 2, 0, 0, 3425, 3429, 3, 806, 403, 0, 3426, 3428, 3, 456, 228, 0, 3427, 3426, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3436, 5, 3, 0, 0, 3435, 3418, 1, 0, 0, 0, 3435, 3423, 1, 0, 0, 0, 3436, 3466, 1, 0, 0, 0, 3437, 3438, 5, 46, 0, 0, 3438, 3439, 5, 360, 0, 0, 3439, 3445, 3, 310, 155, 0, 3440, 3441, 5, 36, 0, 0, 3441, 3443, 5, 299, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 3, 278, 139, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3466, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 355, 0, 0, 3449, 3450, 5, 325, 0, 0, 3450, 3451, 7, 42, 0, 0, 3451, 3452, 3, 310, 155, 0, 3452, 3453, 3, 278, 139, 0, 3453, 3466, 1, 0, 0, 0, 3454, 3455, 5, 46, 0, 0, 3455, 3457, 5, 108, 0, 0, 3456, 3458, 3, 288, 144, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3463, 3, 310, 155, 0, 3460, 3464, 3, 278, 139, 0, 3461, 3462, 5, 64, 0, 0, 3462, 3464, 3, 310, 155, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3466, 1, 0, 0, 0, 3465, 3387, 1, 0, 0, 0, 3465, 3409, 1, 0, 0, 0, 3465, 3414, 1, 0, 0, 0, 3465, 3437, 1, 0, 0, 0, 3465, 3447, 1, 0, 0, 0, 3465, 3454, 1, 0, 0, 0, 3466, 277, 1, 0, 0, 0, 3467, 3468, 5, 2, 0, 0, 3468, 3473, 3, 280, 140, 0, 3469, 3470, 5, 6, 0, 0, 3470, 3472, 3, 280, 140, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3477, 5, 3, 0, 0, 3477, 279, 1, 0, 0, 0, 3478, 3481, 3, 822, 411, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 3, 282, 141, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 281, 1, 0, 0, 0, 3483, 3490, 3, 382, 191, 0, 3484, 3490, 3, 832, 416, 0, 3485, 3490, 3, 722, 361, 0, 3486, 3490, 3, 196, 98, 0, 3487, 3490, 3, 806, 403, 0, 3488, 3490, 5, 407, 0, 0, 3489, 3483, 1, 0, 0, 0, 3489, 3484, 1, 0, 0, 0, 3489, 3485, 1, 0, 0, 0, 3489, 3486, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3488, 1, 0, 0, 0, 3490, 283, 1, 0, 0, 0, 3491, 3492, 3, 824, 412, 0, 3492, 3493, 5, 10, 0, 0, 3493, 3494, 3, 282, 141, 0, 3494, 285, 1, 0, 0, 0, 3495, 3496, 5, 138, 0, 0, 3496, 3497, 5, 360, 0, 0, 3497, 3498, 3, 310, 155, 0, 3498, 3499, 5, 133, 0, 0, 3499, 3501, 5, 450, 0, 0, 3500, 3502, 3, 288, 144, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3506, 3, 806, 403, 0, 3504, 3505, 7, 43, 0, 0, 3505, 3507, 3, 806, 403, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 5, 138, 0, 0, 3509, 3510, 5, 360, 0, 0, 3510, 3511, 3, 310, 155, 0, 3511, 3512, 5, 309, 0, 0, 3512, 3513, 5, 450, 0, 0, 3513, 3514, 3, 806, 403, 0, 3514, 3515, 5, 94, 0, 0, 3515, 3516, 3, 806, 403, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3495, 1, 0, 0, 0, 3517, 3508, 1, 0, 0, 0, 3518, 287, 1, 0, 0, 0, 3519, 3520, 5, 220, 0, 0, 3520, 3521, 5, 77, 0, 0, 3521, 3522, 5, 396, 0, 0, 3522, 289, 1, 0, 0, 0, 3523, 3524, 5, 46, 0, 0, 3524, 3525, 5, 278, 0, 0, 3525, 3526, 5, 156, 0, 0, 3526, 3528, 3, 310, 155, 0, 3527, 3529, 5, 53, 0, 0, 3528, 3527, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 5, 62, 0, 0, 3531, 3532, 5, 360, 0, 0, 3532, 3533, 3, 646, 323, 0, 3533, 3536, 3, 164, 82, 0, 3534, 3535, 5, 206, 0, 0, 3535, 3537, 3, 310, 155, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 36, 0, 0, 3539, 3544, 3, 292, 146, 0, 3540, 3541, 5, 6, 0, 0, 3541, 3543, 3, 292, 146, 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, 291, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 5, 278, 0, 0, 3548, 3549, 5, 574, 0, 0, 3549, 3551, 3, 408, 204, 0, 3550, 3552, 3, 406, 203, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3560, 1, 0, 0, 0, 3553, 3558, 5, 62, 0, 0, 3554, 3559, 5, 325, 0, 0, 3555, 3556, 5, 83, 0, 0, 3556, 3557, 5, 147, 0, 0, 3557, 3559, 3, 310, 155, 0, 3558, 3554, 1, 0, 0, 0, 3558, 3555, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3553, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3564, 5, 302, 0, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3574, 1, 0, 0, 0, 3565, 3566, 5, 211, 0, 0, 3566, 3568, 5, 574, 0, 0, 3567, 3569, 3, 522, 261, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3574, 3, 376, 188, 0, 3571, 3572, 5, 345, 0, 0, 3572, 3574, 3, 646, 323, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3574, 293, 1, 0, 0, 0, 3575, 3576, 5, 46, 0, 0, 3576, 3577, 5, 278, 0, 0, 3577, 3578, 5, 206, 0, 0, 3578, 3579, 3, 310, 155, 0, 3579, 3580, 3, 164, 82, 0, 3580, 295, 1, 0, 0, 0, 3581, 3582, 5, 138, 0, 0, 3582, 3583, 5, 278, 0, 0, 3583, 3584, 5, 206, 0, 0, 3584, 3585, 3, 310, 155, 0, 3585, 3604, 3, 164, 82, 0, 3586, 3587, 5, 133, 0, 0, 3587, 3592, 3, 292, 146, 0, 3588, 3589, 5, 6, 0, 0, 3589, 3591, 3, 292, 146, 0, 3590, 3588, 1, 0, 0, 0, 3591, 3594, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 3605, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 3596, 5, 191, 0, 0, 3596, 3601, 3, 298, 149, 0, 3597, 3598, 5, 6, 0, 0, 3598, 3600, 3, 298, 149, 0, 3599, 3597, 1, 0, 0, 0, 3600, 3603, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3586, 1, 0, 0, 0, 3604, 3595, 1, 0, 0, 0, 3605, 297, 1, 0, 0, 0, 3606, 3607, 7, 44, 0, 0, 3607, 3608, 5, 574, 0, 0, 3608, 3609, 3, 522, 261, 0, 3609, 299, 1, 0, 0, 0, 3610, 3611, 5, 301, 0, 0, 3611, 3612, 5, 281, 0, 0, 3612, 3613, 5, 147, 0, 0, 3613, 3614, 3, 814, 407, 0, 3614, 3615, 5, 94, 0, 0, 3615, 3616, 3, 812, 406, 0, 3616, 301, 1, 0, 0, 0, 3617, 3640, 5, 191, 0, 0, 3618, 3641, 5, 328, 0, 0, 3619, 3641, 5, 226, 0, 0, 3620, 3641, 5, 108, 0, 0, 3621, 3641, 5, 168, 0, 0, 3622, 3641, 5, 342, 0, 0, 3623, 3641, 5, 452, 0, 0, 3624, 3641, 5, 331, 0, 0, 3625, 3626, 5, 131, 0, 0, 3626, 3641, 5, 446, 0, 0, 3627, 3628, 5, 198, 0, 0, 3628, 3641, 5, 357, 0, 0, 3629, 3641, 5, 204, 0, 0, 3630, 3632, 5, 295, 0, 0, 3631, 3630, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3641, 5, 247, 0, 0, 3634, 3635, 5, 63, 0, 0, 3635, 3636, 5, 174, 0, 0, 3636, 3641, 5, 381, 0, 0, 3637, 3638, 5, 355, 0, 0, 3638, 3639, 5, 325, 0, 0, 3639, 3641, 7, 42, 0, 0, 3640, 3618, 1, 0, 0, 0, 3640, 3619, 1, 0, 0, 0, 3640, 3620, 1, 0, 0, 0, 3640, 3621, 1, 0, 0, 0, 3640, 3622, 1, 0, 0, 0, 3640, 3623, 1, 0, 0, 0, 3640, 3624, 1, 0, 0, 0, 3640, 3625, 1, 0, 0, 0, 3640, 3627, 1, 0, 0, 0, 3640, 3629, 1, 0, 0, 0, 3640, 3631, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3644, 3, 416, 208, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3647, 3, 780, 390, 0, 3646, 3648, 3, 88, 44, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3825, 1, 0, 0, 0, 3649, 3651, 5, 191, 0, 0, 3650, 3652, 5, 259, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 5, 376, 0, 0, 3654, 3656, 3, 416, 208, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3662, 3, 774, 387, 0, 3658, 3659, 5, 6, 0, 0, 3659, 3661, 3, 774, 387, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3667, 3, 88, 44, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3825, 1, 0, 0, 0, 3668, 3670, 5, 191, 0, 0, 3669, 3671, 5, 63, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 5, 92, 0, 0, 3673, 3675, 3, 416, 208, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 3, 758, 379, 0, 3677, 3679, 3, 88, 44, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3825, 1, 0, 0, 0, 3680, 3681, 5, 191, 0, 0, 3681, 3683, 5, 323, 0, 0, 3682, 3684, 3, 416, 208, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 3, 760, 380, 0, 3686, 3688, 3, 88, 44, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3825, 1, 0, 0, 0, 3689, 3690, 5, 191, 0, 0, 3690, 3692, 7, 45, 0, 0, 3691, 3693, 3, 416, 208, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 3, 816, 408, 0, 3695, 3696, 5, 80, 0, 0, 3696, 3698, 3, 310, 155, 0, 3697, 3699, 3, 88, 44, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3825, 1, 0, 0, 0, 3700, 3701, 5, 191, 0, 0, 3701, 3703, 7, 33, 0, 0, 3702, 3704, 3, 416, 208, 0, 3703, 3702, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3710, 3, 646, 323, 0, 3706, 3707, 5, 6, 0, 0, 3707, 3709, 3, 646, 323, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3715, 3, 88, 44, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3825, 1, 0, 0, 0, 3716, 3717, 5, 191, 0, 0, 3717, 3718, 5, 226, 0, 0, 3718, 3720, 5, 109, 0, 0, 3719, 3721, 3, 416, 208, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 3, 308, 154, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3825, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3729, 5, 41, 0, 0, 3728, 3730, 3, 416, 208, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 5, 2, 0, 0, 3732, 3733, 3, 646, 323, 0, 3733, 3734, 5, 36, 0, 0, 3734, 3735, 3, 646, 323, 0, 3735, 3737, 5, 3, 0, 0, 3736, 3738, 3, 88, 44, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3825, 1, 0, 0, 0, 3739, 3740, 5, 191, 0, 0, 3740, 3741, 5, 278, 0, 0, 3741, 3743, 7, 32, 0, 0, 3742, 3744, 3, 416, 208, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 3, 310, 155, 0, 3746, 3748, 3, 164, 82, 0, 3747, 3749, 3, 88, 44, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3825, 1, 0, 0, 0, 3750, 3751, 5, 191, 0, 0, 3751, 3752, 5, 281, 0, 0, 3752, 3753, 5, 147, 0, 0, 3753, 3755, 3, 814, 407, 0, 3754, 3756, 3, 88, 44, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3825, 1, 0, 0, 0, 3757, 3758, 5, 191, 0, 0, 3758, 3760, 5, 451, 0, 0, 3759, 3761, 3, 416, 208, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 3, 816, 408, 0, 3763, 3765, 3, 88, 44, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3825, 1, 0, 0, 0, 3766, 3767, 5, 191, 0, 0, 3767, 3769, 5, 351, 0, 0, 3768, 3770, 3, 416, 208, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3825, 3, 766, 383, 0, 3772, 3773, 5, 191, 0, 0, 3773, 3775, 5, 443, 0, 0, 3774, 3776, 3, 416, 208, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 62, 0, 0, 3778, 3779, 3, 646, 323, 0, 3779, 3780, 5, 247, 0, 0, 3780, 3782, 3, 816, 408, 0, 3781, 3783, 3, 88, 44, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3825, 1, 0, 0, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 7, 46, 0, 0, 3786, 3788, 3, 416, 208, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3825, 3, 814, 407, 0, 3790, 3791, 5, 191, 0, 0, 3791, 3792, 5, 99, 0, 0, 3792, 3794, 5, 257, 0, 0, 3793, 3795, 3, 416, 208, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3799, 5, 62, 0, 0, 3797, 3800, 3, 812, 406, 0, 3798, 3800, 5, 99, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 5, 331, 0, 0, 3802, 3825, 3, 816, 408, 0, 3803, 3804, 5, 191, 0, 0, 3804, 3806, 5, 175, 0, 0, 3805, 3807, 3, 416, 208, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3822, 3, 784, 392, 0, 3809, 3811, 5, 105, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 5, 2, 0, 0, 3813, 3818, 5, 209, 0, 0, 3814, 3815, 5, 6, 0, 0, 3815, 3817, 5, 209, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3823, 5, 3, 0, 0, 3822, 3810, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3617, 1, 0, 0, 0, 3824, 3649, 1, 0, 0, 0, 3824, 3668, 1, 0, 0, 0, 3824, 3680, 1, 0, 0, 0, 3824, 3689, 1, 0, 0, 0, 3824, 3700, 1, 0, 0, 0, 3824, 3716, 1, 0, 0, 0, 3824, 3726, 1, 0, 0, 0, 3824, 3739, 1, 0, 0, 0, 3824, 3750, 1, 0, 0, 0, 3824, 3757, 1, 0, 0, 0, 3824, 3766, 1, 0, 0, 0, 3824, 3772, 1, 0, 0, 0, 3824, 3784, 1, 0, 0, 0, 3824, 3790, 1, 0, 0, 0, 3824, 3803, 1, 0, 0, 0, 3825, 303, 1, 0, 0, 0, 3826, 3828, 5, 63, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 5, 92, 0, 0, 3830, 3843, 3, 770, 385, 0, 3831, 3833, 5, 259, 0, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3835, 5, 376, 0, 0, 3835, 3843, 3, 774, 387, 0, 3836, 3837, 7, 47, 0, 0, 3837, 3843, 3, 310, 155, 0, 3838, 3839, 5, 355, 0, 0, 3839, 3840, 5, 325, 0, 0, 3840, 3841, 7, 42, 0, 0, 3841, 3843, 3, 310, 155, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3832, 1, 0, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3838, 1, 0, 0, 0, 3843, 305, 1, 0, 0, 0, 3844, 3845, 5, 198, 0, 0, 3845, 3861, 5, 357, 0, 0, 3846, 3847, 5, 131, 0, 0, 3847, 3861, 5, 446, 0, 0, 3848, 3861, 5, 204, 0, 0, 3849, 3861, 5, 452, 0, 0, 3850, 3861, 5, 331, 0, 0, 3851, 3861, 5, 318, 0, 0, 3852, 3861, 5, 451, 0, 0, 3853, 3854, 5, 63, 0, 0, 3854, 3855, 5, 174, 0, 0, 3855, 3861, 5, 381, 0, 0, 3856, 3858, 5, 295, 0, 0, 3857, 3856, 1, 0, 0, 0, 3857, 3858, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3861, 5, 247, 0, 0, 3860, 3844, 1, 0, 0, 0, 3860, 3846, 1, 0, 0, 0, 3860, 3848, 1, 0, 0, 0, 3860, 3849, 1, 0, 0, 0, 3860, 3850, 1, 0, 0, 0, 3860, 3851, 1, 0, 0, 0, 3860, 3852, 1, 0, 0, 0, 3860, 3853, 1, 0, 0, 0, 3860, 3857, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3869, 3, 816, 408, 0, 3863, 3864, 5, 323, 0, 0, 3864, 3869, 3, 786, 393, 0, 3865, 3866, 5, 175, 0, 0, 3866, 3869, 3, 784, 392, 0, 3867, 3869, 3, 170, 85, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3863, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 307, 1, 0, 0, 0, 3870, 3875, 3, 310, 155, 0, 3871, 3872, 5, 6, 0, 0, 3872, 3874, 3, 310, 155, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 309, 1, 0, 0, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3880, 3, 816, 408, 0, 3879, 3881, 3, 312, 156, 0, 3880, 3879, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 311, 1, 0, 0, 0, 3882, 3883, 5, 11, 0, 0, 3883, 3885, 3, 822, 411, 0, 3884, 3882, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 313, 1, 0, 0, 0, 3888, 3890, 5, 358, 0, 0, 3889, 3891, 5, 92, 0, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3897, 3, 316, 158, 0, 3893, 3894, 5, 6, 0, 0, 3894, 3896, 3, 316, 158, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3899, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3902, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3900, 3901, 7, 48, 0, 0, 3901, 3903, 5, 219, 0, 0, 3902, 3900, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3905, 1, 0, 0, 0, 3904, 3906, 3, 88, 44, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 315, 1, 0, 0, 0, 3907, 3909, 5, 81, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3912, 3, 770, 385, 0, 3911, 3913, 5, 9, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 317, 1, 0, 0, 0, 3914, 3915, 5, 159, 0, 0, 3915, 3974, 5, 80, 0, 0, 3916, 3975, 3, 304, 152, 0, 3917, 3975, 3, 306, 153, 0, 3918, 3919, 5, 44, 0, 0, 3919, 3921, 3, 816, 408, 0, 3920, 3922, 3, 312, 156, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 5, 11, 0, 0, 3924, 3925, 3, 796, 398, 0, 3925, 3975, 1, 0, 0, 0, 3926, 3927, 7, 33, 0, 0, 3927, 3975, 3, 646, 323, 0, 3928, 3929, 5, 136, 0, 0, 3929, 3975, 3, 388, 194, 0, 3930, 3931, 5, 211, 0, 0, 3931, 3975, 3, 376, 188, 0, 3932, 3933, 5, 278, 0, 0, 3933, 3975, 3, 410, 205, 0, 3934, 3935, 5, 45, 0, 0, 3935, 3936, 3, 816, 408, 0, 3936, 3942, 5, 80, 0, 0, 3937, 3943, 3, 770, 385, 0, 3938, 3940, 5, 189, 0, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 3, 310, 155, 0, 3942, 3937, 1, 0, 0, 0, 3942, 3939, 1, 0, 0, 0, 3943, 3975, 1, 0, 0, 0, 3944, 3945, 7, 45, 0, 0, 3945, 3946, 3, 816, 408, 0, 3946, 3947, 5, 80, 0, 0, 3947, 3948, 3, 310, 155, 0, 3948, 3975, 1, 0, 0, 0, 3949, 3950, 5, 296, 0, 0, 3950, 3975, 3, 372, 186, 0, 3951, 3952, 5, 442, 0, 0, 3952, 3975, 3, 368, 184, 0, 3953, 3954, 5, 443, 0, 0, 3954, 3955, 5, 62, 0, 0, 3955, 3956, 3, 646, 323, 0, 3956, 3957, 5, 247, 0, 0, 3957, 3958, 3, 816, 408, 0, 3958, 3975, 1, 0, 0, 0, 3959, 3960, 5, 278, 0, 0, 3960, 3961, 7, 32, 0, 0, 3961, 3962, 3, 310, 155, 0, 3962, 3963, 3, 164, 82, 0, 3963, 3975, 1, 0, 0, 0, 3964, 3965, 5, 248, 0, 0, 3965, 3966, 5, 274, 0, 0, 3966, 3975, 3, 196, 98, 0, 3967, 3968, 5, 41, 0, 0, 3968, 3969, 5, 2, 0, 0, 3969, 3970, 3, 646, 323, 0, 3970, 3971, 5, 36, 0, 0, 3971, 3972, 3, 646, 323, 0, 3972, 3973, 5, 3, 0, 0, 3973, 3975, 1, 0, 0, 0, 3974, 3916, 1, 0, 0, 0, 3974, 3917, 1, 0, 0, 0, 3974, 3918, 1, 0, 0, 0, 3974, 3926, 1, 0, 0, 0, 3974, 3928, 1, 0, 0, 0, 3974, 3930, 1, 0, 0, 0, 3974, 3932, 1, 0, 0, 0, 3974, 3934, 1, 0, 0, 0, 3974, 3944, 1, 0, 0, 0, 3974, 3949, 1, 0, 0, 0, 3974, 3951, 1, 0, 0, 0, 3974, 3953, 1, 0, 0, 0, 3974, 3959, 1, 0, 0, 0, 3974, 3964, 1, 0, 0, 0, 3974, 3967, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3979, 5, 116, 0, 0, 3977, 3980, 3, 806, 403, 0, 3978, 3980, 5, 78, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3978, 1, 0, 0, 0, 3980, 319, 1, 0, 0, 0, 3981, 3982, 5, 327, 0, 0, 3982, 3985, 5, 246, 0, 0, 3983, 3984, 5, 62, 0, 0, 3984, 3986, 3, 58, 29, 0, 3985, 3983, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4005, 5, 80, 0, 0, 3988, 3989, 7, 33, 0, 0, 3989, 4006, 3, 646, 323, 0, 3990, 3991, 5, 136, 0, 0, 3991, 4006, 3, 388, 194, 0, 3992, 3993, 5, 44, 0, 0, 3993, 4006, 3, 796, 398, 0, 3994, 3995, 5, 211, 0, 0, 3995, 4006, 3, 376, 188, 0, 3996, 3997, 5, 248, 0, 0, 3997, 3998, 5, 274, 0, 0, 3998, 4006, 3, 196, 98, 0, 3999, 4000, 5, 296, 0, 0, 4000, 4006, 3, 372, 186, 0, 4001, 4002, 5, 442, 0, 0, 4002, 4006, 3, 368, 184, 0, 4003, 4006, 3, 304, 152, 0, 4004, 4006, 3, 306, 153, 0, 4005, 3988, 1, 0, 0, 0, 4005, 3990, 1, 0, 0, 0, 4005, 3992, 1, 0, 0, 0, 4005, 3994, 1, 0, 0, 0, 4005, 3996, 1, 0, 0, 0, 4005, 3999, 1, 0, 0, 0, 4005, 4001, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4010, 5, 116, 0, 0, 4008, 4011, 3, 806, 403, 0, 4009, 4011, 5, 78, 0, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 321, 1, 0, 0, 0, 4012, 4013, 7, 49, 0, 0, 4013, 4014, 3, 324, 162, 0, 4014, 323, 1, 0, 0, 0, 4015, 4017, 7, 50, 0, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4019, 1, 0, 0, 0, 4018, 4020, 3, 326, 163, 0, 4019, 4018, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4059, 3, 816, 408, 0, 4022, 4024, 7, 51, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 3, 810, 405, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4030, 3, 816, 408, 0, 4030, 4059, 1, 0, 0, 0, 4031, 4033, 5, 210, 0, 0, 4032, 4034, 3, 810, 405, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4037, 3, 326, 163, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4059, 3, 816, 408, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 5, 30, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4059, 3, 816, 408, 0, 4047, 4052, 5, 144, 0, 0, 4048, 4050, 5, 30, 0, 0, 4049, 4048, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4053, 1, 0, 0, 0, 4051, 4053, 3, 810, 405, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 326, 163, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 3, 816, 408, 0, 4058, 4016, 1, 0, 0, 0, 4058, 4023, 1, 0, 0, 0, 4058, 4031, 1, 0, 0, 0, 4058, 4040, 1, 0, 0, 0, 4058, 4047, 1, 0, 0, 0, 4059, 325, 1, 0, 0, 0, 4060, 4061, 7, 52, 0, 0, 4061, 327, 1, 0, 0, 0, 4062, 4063, 5, 65, 0, 0, 4063, 4064, 3, 332, 166, 0, 4064, 4065, 5, 80, 0, 0, 4065, 4066, 3, 338, 169, 0, 4066, 4067, 5, 94, 0, 0, 4067, 4071, 3, 340, 170, 0, 4068, 4069, 5, 105, 0, 0, 4069, 4070, 5, 65, 0, 0, 4070, 4072, 5, 279, 0, 0, 4071, 4068, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 329, 1, 0, 0, 0, 4073, 4077, 5, 317, 0, 0, 4074, 4075, 5, 65, 0, 0, 4075, 4076, 5, 279, 0, 0, 4076, 4078, 5, 62, 0, 0, 4077, 4074, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 3, 332, 166, 0, 4080, 4081, 5, 80, 0, 0, 4081, 4082, 3, 338, 169, 0, 4082, 4083, 5, 64, 0, 0, 4083, 4085, 3, 340, 170, 0, 4084, 4086, 3, 88, 44, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 331, 1, 0, 0, 0, 4087, 4092, 3, 336, 168, 0, 4088, 4089, 5, 6, 0, 0, 4089, 4091, 3, 336, 168, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4111, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4097, 5, 30, 0, 0, 4096, 4098, 5, 294, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 138, 69, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4111, 1, 0, 0, 0, 4102, 4107, 3, 334, 167, 0, 4103, 4104, 5, 6, 0, 0, 4104, 4106, 3, 334, 167, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4109, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4110, 4087, 1, 0, 0, 0, 4110, 4095, 1, 0, 0, 0, 4110, 4102, 1, 0, 0, 0, 4111, 333, 1, 0, 0, 0, 4112, 4113, 7, 53, 0, 0, 4113, 335, 1, 0, 0, 0, 4114, 4119, 5, 88, 0, 0, 4115, 4119, 5, 86, 0, 0, 4116, 4119, 5, 46, 0, 0, 4117, 4119, 3, 816, 408, 0, 4118, 4114, 1, 0, 0, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 138, 69, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 337, 1, 0, 0, 0, 4123, 4124, 5, 92, 0, 0, 4124, 4169, 3, 758, 379, 0, 4125, 4127, 5, 328, 0, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4169, 3, 756, 378, 0, 4129, 4133, 5, 63, 0, 0, 4130, 4131, 5, 174, 0, 0, 4131, 4134, 5, 381, 0, 0, 4132, 4134, 5, 331, 0, 0, 4133, 4130, 1, 0, 0, 0, 4133, 4132, 1, 0, 0, 0, 4134, 4137, 1, 0, 0, 0, 4135, 4137, 5, 247, 0, 0, 4136, 4129, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4169, 3, 780, 390, 0, 4139, 4140, 5, 211, 0, 0, 4140, 4169, 3, 374, 187, 0, 4141, 4142, 5, 296, 0, 0, 4142, 4169, 3, 370, 185, 0, 4143, 4144, 5, 442, 0, 0, 4144, 4169, 3, 366, 183, 0, 4145, 4146, 5, 175, 0, 0, 4146, 4169, 3, 762, 381, 0, 4147, 4148, 7, 33, 0, 0, 4148, 4169, 3, 308, 154, 0, 4149, 4150, 5, 248, 0, 0, 4150, 4151, 5, 274, 0, 0, 4151, 4156, 3, 196, 98, 0, 4152, 4153, 5, 6, 0, 0, 4153, 4155, 3, 196, 98, 0, 4154, 4152, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4169, 1, 0, 0, 0, 4158, 4156, 1, 0, 0, 0, 4159, 4160, 5, 323, 0, 0, 4160, 4169, 3, 760, 380, 0, 4161, 4162, 5, 351, 0, 0, 4162, 4169, 3, 778, 389, 0, 4163, 4164, 5, 30, 0, 0, 4164, 4165, 7, 54, 0, 0, 4165, 4166, 5, 68, 0, 0, 4166, 4167, 5, 323, 0, 0, 4167, 4169, 3, 760, 380, 0, 4168, 4123, 1, 0, 0, 0, 4168, 4126, 1, 0, 0, 0, 4168, 4136, 1, 0, 0, 0, 4168, 4139, 1, 0, 0, 0, 4168, 4141, 1, 0, 0, 0, 4168, 4143, 1, 0, 0, 0, 4168, 4145, 1, 0, 0, 0, 4168, 4147, 1, 0, 0, 0, 4168, 4149, 1, 0, 0, 0, 4168, 4159, 1, 0, 0, 0, 4168, 4161, 1, 0, 0, 0, 4168, 4163, 1, 0, 0, 0, 4169, 339, 1, 0, 0, 0, 4170, 4172, 5, 66, 0, 0, 4171, 4170, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 3, 812, 406, 0, 4174, 4182, 1, 0, 0, 0, 4175, 4177, 5, 6, 0, 0, 4176, 4178, 5, 66, 0, 0, 4177, 4176, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4181, 3, 812, 406, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4184, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 341, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4185, 4186, 5, 65, 0, 0, 4186, 4191, 3, 336, 168, 0, 4187, 4188, 5, 6, 0, 0, 4188, 4190, 3, 336, 168, 0, 4189, 4187, 1, 0, 0, 0, 4190, 4193, 1, 0, 0, 0, 4191, 4189, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4195, 5, 94, 0, 0, 4195, 4199, 3, 814, 407, 0, 4196, 4197, 5, 105, 0, 0, 4197, 4198, 5, 134, 0, 0, 4198, 4200, 5, 279, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4204, 1, 0, 0, 0, 4201, 4202, 5, 214, 0, 0, 4202, 4203, 5, 147, 0, 0, 4203, 4205, 3, 812, 406, 0, 4204, 4201, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 343, 1, 0, 0, 0, 4206, 4210, 5, 317, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4209, 5, 279, 0, 0, 4209, 4211, 5, 62, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4217, 3, 336, 168, 0, 4213, 4214, 5, 6, 0, 0, 4214, 4216, 3, 336, 168, 0, 4215, 4213, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4220, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4220, 4221, 5, 64, 0, 0, 4221, 4225, 3, 814, 407, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 812, 406, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4229, 3, 88, 44, 0, 4228, 4227, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 345, 1, 0, 0, 0, 4230, 4231, 5, 138, 0, 0, 4231, 4232, 5, 53, 0, 0, 4232, 4241, 5, 294, 0, 0, 4233, 4234, 5, 68, 0, 0, 4234, 4235, 5, 323, 0, 0, 4235, 4240, 3, 760, 380, 0, 4236, 4237, 5, 62, 0, 0, 4237, 4238, 7, 2, 0, 0, 4238, 4240, 3, 814, 407, 0, 4239, 4233, 1, 0, 0, 0, 4239, 4236, 1, 0, 0, 0, 4240, 4243, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4244, 4245, 3, 348, 174, 0, 4245, 347, 1, 0, 0, 0, 4246, 4247, 5, 65, 0, 0, 4247, 4248, 3, 332, 166, 0, 4248, 4249, 5, 80, 0, 0, 4249, 4250, 3, 350, 175, 0, 4250, 4251, 5, 94, 0, 0, 4251, 4255, 3, 340, 170, 0, 4252, 4253, 5, 105, 0, 0, 4253, 4254, 5, 65, 0, 0, 4254, 4256, 5, 279, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4272, 1, 0, 0, 0, 4257, 4261, 5, 317, 0, 0, 4258, 4259, 5, 65, 0, 0, 4259, 4260, 5, 279, 0, 0, 4260, 4262, 5, 62, 0, 0, 4261, 4258, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 3, 332, 166, 0, 4264, 4265, 5, 80, 0, 0, 4265, 4266, 3, 350, 175, 0, 4266, 4267, 5, 64, 0, 0, 4267, 4269, 3, 340, 170, 0, 4268, 4270, 3, 88, 44, 0, 4269, 4268, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4272, 1, 0, 0, 0, 4271, 4246, 1, 0, 0, 0, 4271, 4257, 1, 0, 0, 0, 4272, 349, 1, 0, 0, 0, 4273, 4274, 7, 55, 0, 0, 4274, 351, 1, 0, 0, 0, 4275, 4277, 5, 46, 0, 0, 4276, 4278, 5, 98, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4281, 5, 226, 0, 0, 4280, 4282, 5, 109, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4285, 3, 288, 144, 0, 4284, 4283, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4288, 3, 816, 408, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 5, 80, 0, 0, 4290, 4292, 3, 618, 309, 0, 4291, 4293, 3, 164, 82, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4297, 3, 354, 177, 0, 4295, 4296, 5, 441, 0, 0, 4296, 4298, 3, 354, 177, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4304, 1, 0, 0, 0, 4299, 4301, 5, 273, 0, 0, 4300, 4302, 5, 77, 0, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 5, 56, 0, 0, 4304, 4299, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4307, 1, 0, 0, 0, 4306, 4308, 3, 94, 47, 0, 4307, 4306, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4310, 1, 0, 0, 0, 4309, 4311, 3, 170, 85, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 1, 0, 0, 0, 4312, 4314, 3, 632, 316, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 353, 1, 0, 0, 0, 4315, 4316, 5, 2, 0, 0, 4316, 4321, 3, 356, 178, 0, 4317, 4318, 5, 6, 0, 0, 4318, 4320, 3, 356, 178, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 3, 0, 0, 4325, 355, 1, 0, 0, 0, 4326, 4333, 3, 796, 398, 0, 4327, 4333, 3, 682, 341, 0, 4328, 4329, 5, 2, 0, 0, 4329, 4330, 3, 668, 334, 0, 4330, 4331, 5, 3, 0, 0, 4331, 4333, 1, 0, 0, 0, 4332, 4326, 1, 0, 0, 0, 4332, 4327, 1, 0, 0, 0, 4332, 4328, 1, 0, 0, 0, 4333, 4335, 1, 0, 0, 0, 4334, 4336, 3, 90, 45, 0, 4335, 4334, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4343, 1, 0, 0, 0, 4337, 4339, 3, 310, 155, 0, 4338, 4337, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4344, 1, 0, 0, 0, 4340, 4341, 3, 310, 155, 0, 4341, 4342, 3, 92, 46, 0, 4342, 4344, 1, 0, 0, 0, 4343, 4338, 1, 0, 0, 0, 4343, 4340, 1, 0, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4347, 7, 56, 0, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4349, 5, 273, 0, 0, 4349, 4351, 7, 57, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 357, 1, 0, 0, 0, 4352, 4354, 5, 46, 0, 0, 4353, 4355, 3, 360, 180, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4360, 1, 0, 0, 0, 4356, 4357, 5, 211, 0, 0, 4357, 4361, 3, 802, 401, 0, 4358, 4359, 5, 296, 0, 0, 4359, 4361, 3, 794, 397, 0, 4360, 4356, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4371, 5, 2, 0, 0, 4363, 4368, 3, 384, 192, 0, 4364, 4365, 5, 6, 0, 0, 4365, 4367, 3, 384, 192, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4370, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4372, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4363, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4374, 5, 3, 0, 0, 4374, 4391, 1, 0, 0, 0, 4375, 4389, 5, 316, 0, 0, 4376, 4390, 3, 382, 191, 0, 4377, 4378, 5, 92, 0, 0, 4378, 4379, 5, 2, 0, 0, 4379, 4384, 3, 396, 198, 0, 4380, 4381, 5, 6, 0, 0, 4381, 4383, 3, 396, 198, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4386, 1, 0, 0, 0, 4384, 4382, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4384, 1, 0, 0, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4376, 1, 0, 0, 0, 4389, 4377, 1, 0, 0, 0, 4390, 4392, 1, 0, 0, 0, 4391, 4375, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4395, 3, 392, 196, 0, 4394, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4396, 4397, 1, 0, 0, 0, 4397, 4403, 1, 0, 0, 0, 4398, 4399, 5, 105, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4401, 3, 780, 390, 0, 4401, 4402, 5, 3, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4398, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 359, 1, 0, 0, 0, 4405, 4406, 5, 82, 0, 0, 4406, 4407, 5, 311, 0, 0, 4407, 361, 1, 0, 0, 0, 4408, 4410, 5, 2, 0, 0, 4409, 4411, 3, 364, 182, 0, 4410, 4409, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4413, 5, 3, 0, 0, 4413, 363, 1, 0, 0, 0, 4414, 4419, 3, 378, 189, 0, 4415, 4416, 5, 6, 0, 0, 4416, 4418, 3, 378, 189, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4421, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 365, 1, 0, 0, 0, 4421, 4419, 1, 0, 0, 0, 4422, 4427, 3, 368, 184, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 368, 184, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4431, 3, 790, 395, 0, 4431, 4432, 3, 362, 181, 0, 4432, 4436, 1, 0, 0, 0, 4433, 4436, 3, 830, 415, 0, 4434, 4436, 3, 776, 388, 0, 4435, 4430, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4434, 1, 0, 0, 0, 4436, 369, 1, 0, 0, 0, 4437, 4442, 3, 372, 186, 0, 4438, 4439, 5, 6, 0, 0, 4439, 4441, 3, 372, 186, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4444, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 371, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4445, 4446, 3, 792, 396, 0, 4446, 4447, 3, 362, 181, 0, 4447, 4451, 1, 0, 0, 0, 4448, 4451, 3, 830, 415, 0, 4449, 4451, 3, 776, 388, 0, 4450, 4445, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4449, 1, 0, 0, 0, 4451, 373, 1, 0, 0, 0, 4452, 4457, 3, 376, 188, 0, 4453, 4454, 5, 6, 0, 0, 4454, 4456, 3, 376, 188, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 375, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4461, 3, 804, 402, 0, 4461, 4462, 3, 362, 181, 0, 4462, 4466, 1, 0, 0, 0, 4463, 4466, 3, 830, 415, 0, 4464, 4466, 3, 776, 388, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 377, 1, 0, 0, 0, 4467, 4469, 3, 380, 190, 0, 4468, 4470, 3, 818, 409, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4476, 1, 0, 0, 0, 4471, 4473, 3, 818, 409, 0, 4472, 4474, 3, 380, 190, 0, 4473, 4472, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4476, 1, 0, 0, 0, 4475, 4467, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4478, 3, 382, 191, 0, 4478, 379, 1, 0, 0, 0, 4479, 4481, 5, 68, 0, 0, 4480, 4482, 5, 453, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4487, 1, 0, 0, 0, 4483, 4487, 5, 453, 0, 0, 4484, 4487, 5, 400, 0, 0, 4485, 4487, 5, 101, 0, 0, 4486, 4479, 1, 0, 0, 0, 4486, 4483, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 381, 1, 0, 0, 0, 4488, 4498, 3, 646, 323, 0, 4489, 4491, 5, 415, 0, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4493, 3, 818, 409, 0, 4493, 4494, 3, 312, 156, 0, 4494, 4495, 5, 27, 0, 0, 4495, 4496, 5, 360, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4488, 1, 0, 0, 0, 4497, 4490, 1, 0, 0, 0, 4498, 383, 1, 0, 0, 0, 4499, 4502, 3, 378, 189, 0, 4500, 4501, 7, 58, 0, 0, 4501, 4503, 3, 668, 334, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 385, 1, 0, 0, 0, 4504, 4514, 5, 2, 0, 0, 4505, 4515, 5, 9, 0, 0, 4506, 4508, 3, 364, 182, 0, 4507, 4506, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 4512, 1, 0, 0, 0, 4509, 4510, 5, 83, 0, 0, 4510, 4511, 5, 147, 0, 0, 4511, 4513, 3, 364, 182, 0, 4512, 4509, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4505, 1, 0, 0, 0, 4514, 4507, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4517, 5, 3, 0, 0, 4517, 387, 1, 0, 0, 0, 4518, 4519, 3, 804, 402, 0, 4519, 4520, 3, 386, 193, 0, 4520, 389, 1, 0, 0, 0, 4521, 4522, 5, 316, 0, 0, 4522, 4525, 5, 78, 0, 0, 4523, 4525, 5, 149, 0, 0, 4524, 4521, 1, 0, 0, 0, 4524, 4523, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 80, 0, 0, 4527, 4528, 5, 78, 0, 0, 4528, 4551, 5, 458, 0, 0, 4529, 4551, 5, 346, 0, 0, 4530, 4551, 5, 222, 0, 0, 4531, 4551, 5, 338, 0, 0, 4532, 4551, 5, 377, 0, 0, 4533, 4535, 5, 205, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 327, 0, 0, 4537, 4551, 7, 59, 0, 0, 4538, 4551, 5, 250, 0, 0, 4539, 4540, 5, 77, 0, 0, 4540, 4551, 5, 250, 0, 0, 4541, 4542, 7, 60, 0, 0, 4542, 4551, 3, 196, 98, 0, 4543, 4544, 5, 459, 0, 0, 4544, 4551, 3, 310, 155, 0, 4545, 4546, 5, 333, 0, 0, 4546, 4551, 3, 42, 21, 0, 4547, 4551, 3, 60, 30, 0, 4548, 4549, 5, 460, 0, 0, 4549, 4551, 3, 816, 408, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4551, 391, 1, 0, 0, 0, 4552, 4553, 5, 36, 0, 0, 4553, 4554, 3, 806, 403, 0, 4554, 4555, 3, 456, 228, 0, 4555, 4588, 1, 0, 0, 0, 4556, 4557, 5, 247, 0, 0, 4557, 4588, 3, 58, 29, 0, 4558, 4559, 5, 443, 0, 0, 4559, 4560, 5, 62, 0, 0, 4560, 4561, 5, 360, 0, 0, 4561, 4568, 3, 646, 323, 0, 4562, 4563, 5, 6, 0, 0, 4563, 4564, 5, 62, 0, 0, 4564, 4565, 5, 360, 0, 0, 4565, 4567, 3, 646, 323, 0, 4566, 4562, 1, 0, 0, 0, 4567, 4570, 1, 0, 0, 0, 4568, 4566, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 4588, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4571, 4588, 5, 104, 0, 0, 4572, 4573, 5, 333, 0, 0, 4573, 4580, 3, 816, 408, 0, 4574, 4575, 5, 94, 0, 0, 4575, 4581, 3, 816, 408, 0, 4576, 4577, 5, 10, 0, 0, 4577, 4581, 3, 816, 408, 0, 4578, 4579, 5, 64, 0, 0, 4579, 4581, 5, 434, 0, 0, 4580, 4574, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4588, 1, 0, 0, 0, 4582, 4583, 5, 36, 0, 0, 4583, 4588, 3, 816, 408, 0, 4584, 4588, 3, 4, 2, 0, 4585, 4588, 3, 390, 195, 0, 4586, 4588, 3, 816, 408, 0, 4587, 4552, 1, 0, 0, 0, 4587, 4556, 1, 0, 0, 0, 4587, 4558, 1, 0, 0, 0, 4587, 4571, 1, 0, 0, 0, 4587, 4572, 1, 0, 0, 0, 4587, 4582, 1, 0, 0, 0, 4587, 4584, 1, 0, 0, 0, 4587, 4585, 1, 0, 0, 0, 4587, 4586, 1, 0, 0, 0, 4588, 393, 1, 0, 0, 0, 4589, 4590, 5, 105, 0, 0, 4590, 4591, 3, 278, 139, 0, 4591, 395, 1, 0, 0, 0, 4592, 4593, 3, 796, 398, 0, 4593, 4594, 3, 382, 191, 0, 4594, 397, 1, 0, 0, 0, 4595, 4602, 5, 138, 0, 0, 4596, 4597, 5, 211, 0, 0, 4597, 4603, 3, 376, 188, 0, 4598, 4599, 5, 296, 0, 0, 4599, 4603, 3, 372, 186, 0, 4600, 4601, 5, 442, 0, 0, 4601, 4603, 3, 368, 184, 0, 4602, 4596, 1, 0, 0, 0, 4602, 4598, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4603, 4605, 1, 0, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4611, 5, 315, 0, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 399, 1, 0, 0, 0, 4612, 4628, 5, 191, 0, 0, 4613, 4615, 5, 211, 0, 0, 4614, 4616, 3, 416, 208, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4629, 3, 374, 187, 0, 4618, 4620, 5, 296, 0, 0, 4619, 4621, 3, 416, 208, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4629, 3, 370, 185, 0, 4623, 4625, 5, 442, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4629, 3, 366, 183, 0, 4628, 4613, 1, 0, 0, 0, 4628, 4618, 1, 0, 0, 0, 4628, 4623, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 3, 88, 44, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 401, 1, 0, 0, 0, 4633, 4634, 5, 191, 0, 0, 4634, 4636, 5, 136, 0, 0, 4635, 4637, 3, 416, 208, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4643, 3, 388, 194, 0, 4639, 4640, 5, 6, 0, 0, 4640, 4642, 3, 388, 194, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4648, 3, 88, 44, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 403, 1, 0, 0, 0, 4649, 4650, 5, 191, 0, 0, 4650, 4652, 5, 278, 0, 0, 4651, 4653, 3, 416, 208, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4659, 3, 410, 205, 0, 4655, 4656, 5, 6, 0, 0, 4656, 4658, 3, 410, 205, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 4663, 1, 0, 0, 0, 4661, 4659, 1, 0, 0, 0, 4662, 4664, 3, 88, 44, 0, 4663, 4662, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 405, 1, 0, 0, 0, 4665, 4678, 5, 2, 0, 0, 4666, 4669, 3, 646, 323, 0, 4667, 4668, 5, 6, 0, 0, 4668, 4670, 3, 646, 323, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4679, 1, 0, 0, 0, 4671, 4672, 5, 407, 0, 0, 4672, 4673, 5, 6, 0, 0, 4673, 4679, 3, 646, 323, 0, 4674, 4675, 3, 646, 323, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4677, 5, 407, 0, 0, 4677, 4679, 1, 0, 0, 0, 4678, 4666, 1, 0, 0, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4674, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4681, 5, 3, 0, 0, 4681, 407, 1, 0, 0, 0, 4682, 4683, 3, 816, 408, 0, 4683, 4684, 5, 11, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4682, 1, 0, 0, 0, 4686, 4689, 1, 0, 0, 0, 4687, 4685, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4690, 1, 0, 0, 0, 4689, 4687, 1, 0, 0, 0, 4690, 4691, 3, 716, 358, 0, 4691, 409, 1, 0, 0, 0, 4692, 4693, 3, 408, 204, 0, 4693, 4694, 3, 406, 203, 0, 4694, 411, 1, 0, 0, 0, 4695, 4699, 5, 57, 0, 0, 4696, 4700, 3, 806, 403, 0, 4697, 4698, 5, 247, 0, 0, 4698, 4700, 3, 58, 29, 0, 4699, 4696, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 5, 46, 0, 0, 4704, 4705, 5, 41, 0, 0, 4705, 4706, 5, 2, 0, 0, 4706, 4707, 3, 646, 323, 0, 4707, 4708, 5, 36, 0, 0, 4708, 4709, 3, 646, 323, 0, 4709, 4726, 5, 3, 0, 0, 4710, 4711, 5, 379, 0, 0, 4711, 4714, 5, 211, 0, 0, 4712, 4713, 5, 36, 0, 0, 4713, 4715, 7, 61, 0, 0, 4714, 4712, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4727, 1, 0, 0, 0, 4716, 4720, 5, 105, 0, 0, 4717, 4718, 5, 211, 0, 0, 4718, 4721, 3, 376, 188, 0, 4719, 4721, 5, 400, 0, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4719, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4710, 1, 0, 0, 0, 4726, 4716, 1, 0, 0, 0, 4727, 415, 1, 0, 0, 0, 4728, 4729, 5, 220, 0, 0, 4729, 4730, 5, 396, 0, 0, 4730, 417, 1, 0, 0, 0, 4731, 4733, 5, 46, 0, 0, 4732, 4734, 3, 360, 180, 0, 4733, 4732, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4736, 5, 443, 0, 0, 4736, 4737, 5, 62, 0, 0, 4737, 4738, 3, 646, 323, 0, 4738, 4739, 5, 247, 0, 0, 4739, 4740, 3, 816, 408, 0, 4740, 4755, 5, 2, 0, 0, 4741, 4742, 5, 64, 0, 0, 4742, 4746, 3, 420, 210, 0, 4743, 4744, 5, 6, 0, 0, 4744, 4745, 5, 94, 0, 0, 4745, 4747, 3, 420, 210, 0, 4746, 4743, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4756, 1, 0, 0, 0, 4748, 4749, 5, 94, 0, 0, 4749, 4753, 3, 420, 210, 0, 4750, 4751, 5, 6, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4754, 3, 420, 210, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4756, 1, 0, 0, 0, 4755, 4741, 1, 0, 0, 0, 4755, 4748, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4758, 5, 3, 0, 0, 4758, 419, 1, 0, 0, 0, 4759, 4760, 5, 461, 0, 0, 4760, 4761, 5, 105, 0, 0, 4761, 4762, 5, 211, 0, 0, 4762, 4763, 3, 376, 188, 0, 4763, 421, 1, 0, 0, 0, 4764, 4775, 5, 306, 0, 0, 4765, 4766, 5, 2, 0, 0, 4766, 4771, 5, 128, 0, 0, 4767, 4768, 5, 6, 0, 0, 4768, 4770, 5, 128, 0, 0, 4769, 4767, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4774, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4774, 4776, 5, 3, 0, 0, 4775, 4765, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4802, 1, 0, 0, 0, 4777, 4779, 5, 226, 0, 0, 4778, 4780, 5, 109, 0, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4803, 3, 776, 388, 0, 4782, 4784, 5, 92, 0, 0, 4783, 4785, 5, 109, 0, 0, 4784, 4783, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4803, 3, 770, 385, 0, 4787, 4789, 5, 323, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4803, 3, 786, 393, 0, 4792, 4794, 5, 349, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4803, 3, 816, 408, 0, 4797, 4799, 5, 175, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4803, 3, 784, 392, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4782, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4792, 1, 0, 0, 0, 4802, 4797, 1, 0, 0, 0, 4803, 423, 1, 0, 0, 0, 4804, 4805, 5, 138, 0, 0, 4805, 4806, 3, 170, 85, 0, 4806, 4807, 7, 16, 0, 0, 4807, 4808, 3, 92, 46, 0, 4808, 425, 1, 0, 0, 0, 4809, 4814, 5, 138, 0, 0, 4810, 4811, 5, 136, 0, 0, 4811, 4815, 3, 388, 194, 0, 4812, 4813, 5, 442, 0, 0, 4813, 4815, 3, 368, 184, 0, 4814, 4810, 1, 0, 0, 0, 4814, 4812, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 5, 309, 0, 0, 4817, 4818, 5, 94, 0, 0, 4818, 4819, 3, 816, 408, 0, 4819, 5017, 1, 0, 0, 0, 4820, 4821, 5, 138, 0, 0, 4821, 4822, 5, 175, 0, 0, 4822, 4823, 3, 784, 392, 0, 4823, 4824, 5, 309, 0, 0, 4824, 4825, 5, 94, 0, 0, 4825, 4826, 3, 782, 391, 0, 4826, 5017, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 7, 62, 0, 0, 4829, 4830, 3, 310, 155, 0, 4830, 4831, 5, 309, 0, 0, 4831, 4832, 5, 94, 0, 0, 4832, 4833, 3, 816, 408, 0, 4833, 5017, 1, 0, 0, 0, 4834, 4835, 5, 138, 0, 0, 4835, 4836, 5, 211, 0, 0, 4836, 4837, 3, 376, 188, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 802, 401, 0, 4840, 5017, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 278, 0, 0, 4843, 4844, 7, 32, 0, 0, 4844, 4845, 3, 310, 155, 0, 4845, 4846, 3, 164, 82, 0, 4846, 4847, 5, 309, 0, 0, 4847, 4848, 5, 94, 0, 0, 4848, 4849, 3, 816, 408, 0, 4849, 5017, 1, 0, 0, 0, 4850, 4851, 5, 138, 0, 0, 4851, 4852, 5, 296, 0, 0, 4852, 4853, 3, 372, 186, 0, 4853, 4854, 5, 309, 0, 0, 4854, 4855, 5, 94, 0, 0, 4855, 4856, 3, 794, 397, 0, 4856, 5017, 1, 0, 0, 0, 4857, 4858, 5, 138, 0, 0, 4858, 4859, 5, 323, 0, 0, 4859, 4860, 3, 786, 393, 0, 4860, 4861, 5, 309, 0, 0, 4861, 4862, 5, 94, 0, 0, 4862, 4863, 3, 32, 16, 0, 4863, 5017, 1, 0, 0, 0, 4864, 4865, 5, 138, 0, 0, 4865, 4867, 7, 63, 0, 0, 4866, 4868, 3, 416, 208, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4870, 3, 776, 388, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 816, 408, 0, 4873, 5017, 1, 0, 0, 0, 4874, 4876, 5, 138, 0, 0, 4875, 4877, 5, 259, 0, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4880, 5, 376, 0, 0, 4879, 4881, 3, 416, 208, 0, 4880, 4879, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 3, 774, 387, 0, 4883, 4884, 5, 309, 0, 0, 4884, 4885, 5, 94, 0, 0, 4885, 4886, 3, 772, 386, 0, 4886, 5017, 1, 0, 0, 0, 4887, 4889, 5, 138, 0, 0, 4888, 4890, 5, 63, 0, 0, 4889, 4888, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4893, 5, 92, 0, 0, 4892, 4894, 3, 416, 208, 0, 4893, 4892, 1, 0, 0, 0, 4893, 4894, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 3, 618, 309, 0, 4896, 4897, 5, 309, 0, 0, 4897, 4898, 5, 94, 0, 0, 4898, 4899, 3, 768, 384, 0, 4899, 5017, 1, 0, 0, 0, 4900, 4925, 5, 138, 0, 0, 4901, 4903, 5, 63, 0, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4906, 5, 92, 0, 0, 4905, 4907, 3, 416, 208, 0, 4906, 4905, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 3, 618, 309, 0, 4909, 4911, 5, 309, 0, 0, 4910, 4912, 5, 44, 0, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4926, 1, 0, 0, 0, 4913, 4915, 5, 259, 0, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 376, 0, 0, 4917, 4919, 3, 416, 208, 0, 4918, 4917, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 3, 774, 387, 0, 4921, 4923, 5, 309, 0, 0, 4922, 4924, 5, 44, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4902, 1, 0, 0, 0, 4925, 4914, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 3, 796, 398, 0, 4928, 4929, 5, 94, 0, 0, 4929, 4930, 3, 800, 400, 0, 4930, 5017, 1, 0, 0, 0, 4931, 4939, 5, 138, 0, 0, 4932, 4934, 5, 92, 0, 0, 4933, 4935, 3, 416, 208, 0, 4934, 4933, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4940, 3, 618, 309, 0, 4937, 4938, 5, 189, 0, 0, 4938, 4940, 3, 310, 155, 0, 4939, 4932, 1, 0, 0, 0, 4939, 4937, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 5, 309, 0, 0, 4942, 4943, 5, 45, 0, 0, 4943, 4944, 3, 816, 408, 0, 4944, 4945, 5, 94, 0, 0, 4945, 4946, 3, 816, 408, 0, 4946, 5017, 1, 0, 0, 0, 4947, 4954, 5, 138, 0, 0, 4948, 4950, 5, 445, 0, 0, 4949, 4951, 3, 416, 208, 0, 4950, 4949, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4955, 1, 0, 0, 0, 4952, 4955, 5, 321, 0, 0, 4953, 4955, 5, 357, 0, 0, 4954, 4948, 1, 0, 0, 0, 4954, 4952, 1, 0, 0, 0, 4954, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 3, 816, 408, 0, 4957, 4958, 5, 80, 0, 0, 4958, 4959, 3, 776, 388, 0, 4959, 4960, 5, 309, 0, 0, 4960, 4961, 5, 94, 0, 0, 4961, 4962, 3, 816, 408, 0, 4962, 5017, 1, 0, 0, 0, 4963, 4976, 5, 138, 0, 0, 4964, 4965, 5, 63, 0, 0, 4965, 4966, 5, 174, 0, 0, 4966, 4977, 5, 381, 0, 0, 4967, 4969, 5, 295, 0, 0, 4968, 4967, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 5, 247, 0, 0, 4971, 4977, 5, 452, 0, 0, 4972, 4977, 5, 331, 0, 0, 4973, 4977, 5, 451, 0, 0, 4974, 4975, 5, 198, 0, 0, 4975, 4977, 5, 357, 0, 0, 4976, 4964, 1, 0, 0, 0, 4976, 4968, 1, 0, 0, 0, 4976, 4971, 1, 0, 0, 0, 4976, 4972, 1, 0, 0, 0, 4976, 4973, 1, 0, 0, 0, 4976, 4974, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 3, 816, 408, 0, 4979, 4980, 5, 309, 0, 0, 4980, 4981, 5, 94, 0, 0, 4981, 4982, 3, 816, 408, 0, 4982, 5017, 1, 0, 0, 0, 4983, 4984, 5, 138, 0, 0, 4984, 4985, 7, 46, 0, 0, 4985, 4986, 3, 812, 406, 0, 4986, 4987, 5, 309, 0, 0, 4987, 4988, 5, 94, 0, 0, 4988, 4989, 3, 812, 406, 0, 4989, 5017, 1, 0, 0, 0, 4990, 4991, 5, 138, 0, 0, 4991, 4992, 3, 170, 85, 0, 4992, 4993, 5, 309, 0, 0, 4993, 4994, 5, 94, 0, 0, 4994, 4995, 3, 766, 383, 0, 4995, 5017, 1, 0, 0, 0, 4996, 4997, 5, 138, 0, 0, 4997, 4998, 5, 355, 0, 0, 4998, 4999, 5, 325, 0, 0, 4999, 5000, 7, 42, 0, 0, 5000, 5001, 3, 310, 155, 0, 5001, 5002, 5, 309, 0, 0, 5002, 5003, 5, 94, 0, 0, 5003, 5004, 3, 816, 408, 0, 5004, 5017, 1, 0, 0, 0, 5005, 5006, 5, 138, 0, 0, 5006, 5007, 5, 360, 0, 0, 5007, 5008, 3, 310, 155, 0, 5008, 5009, 5, 309, 0, 0, 5009, 5010, 5, 143, 0, 0, 5010, 5011, 3, 816, 408, 0, 5011, 5012, 5, 94, 0, 0, 5012, 5014, 3, 816, 408, 0, 5013, 5015, 3, 88, 44, 0, 5014, 5013, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5017, 1, 0, 0, 0, 5016, 4809, 1, 0, 0, 0, 5016, 4820, 1, 0, 0, 0, 5016, 4827, 1, 0, 0, 0, 5016, 4834, 1, 0, 0, 0, 5016, 4841, 1, 0, 0, 0, 5016, 4850, 1, 0, 0, 0, 5016, 4857, 1, 0, 0, 0, 5016, 4864, 1, 0, 0, 0, 5016, 4874, 1, 0, 0, 0, 5016, 4887, 1, 0, 0, 0, 5016, 4900, 1, 0, 0, 0, 5016, 4931, 1, 0, 0, 0, 5016, 4947, 1, 0, 0, 0, 5016, 4963, 1, 0, 0, 0, 5016, 4983, 1, 0, 0, 0, 5016, 4990, 1, 0, 0, 0, 5016, 4996, 1, 0, 0, 0, 5016, 5005, 1, 0, 0, 0, 5017, 427, 1, 0, 0, 0, 5018, 5035, 5, 138, 0, 0, 5019, 5020, 5, 211, 0, 0, 5020, 5036, 3, 376, 188, 0, 5021, 5022, 5, 296, 0, 0, 5022, 5036, 3, 372, 186, 0, 5023, 5024, 5, 442, 0, 0, 5024, 5036, 3, 368, 184, 0, 5025, 5026, 5, 357, 0, 0, 5026, 5027, 3, 816, 408, 0, 5027, 5028, 5, 80, 0, 0, 5028, 5029, 3, 776, 388, 0, 5029, 5036, 1, 0, 0, 0, 5030, 5031, 5, 259, 0, 0, 5031, 5032, 5, 376, 0, 0, 5032, 5036, 3, 774, 387, 0, 5033, 5034, 5, 226, 0, 0, 5034, 5036, 3, 776, 388, 0, 5035, 5019, 1, 0, 0, 0, 5035, 5021, 1, 0, 0, 0, 5035, 5023, 1, 0, 0, 0, 5035, 5025, 1, 0, 0, 0, 5035, 5030, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 5039, 5, 269, 0, 0, 5038, 5037, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5041, 5, 462, 0, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 5, 204, 0, 0, 5043, 5044, 3, 816, 408, 0, 5044, 429, 1, 0, 0, 0, 5045, 5084, 5, 138, 0, 0, 5046, 5047, 5, 136, 0, 0, 5047, 5085, 3, 388, 194, 0, 5048, 5049, 5, 204, 0, 0, 5049, 5085, 3, 816, 408, 0, 5050, 5051, 5, 211, 0, 0, 5051, 5085, 3, 376, 188, 0, 5052, 5053, 5, 278, 0, 0, 5053, 5085, 3, 410, 205, 0, 5054, 5055, 5, 278, 0, 0, 5055, 5056, 7, 32, 0, 0, 5056, 5057, 3, 310, 155, 0, 5057, 5058, 3, 164, 82, 0, 5058, 5085, 1, 0, 0, 0, 5059, 5060, 5, 296, 0, 0, 5060, 5085, 3, 372, 186, 0, 5061, 5062, 5, 442, 0, 0, 5062, 5085, 3, 368, 184, 0, 5063, 5065, 5, 328, 0, 0, 5064, 5066, 3, 416, 208, 0, 5065, 5064, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5085, 3, 776, 388, 0, 5068, 5070, 5, 259, 0, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5073, 5, 376, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5085, 3, 774, 387, 0, 5076, 5078, 5, 63, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 92, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5085, 3, 618, 309, 0, 5084, 5046, 1, 0, 0, 0, 5084, 5048, 1, 0, 0, 0, 5084, 5050, 1, 0, 0, 0, 5084, 5052, 1, 0, 0, 0, 5084, 5054, 1, 0, 0, 0, 5084, 5059, 1, 0, 0, 0, 5084, 5061, 1, 0, 0, 0, 5084, 5063, 1, 0, 0, 0, 5084, 5069, 1, 0, 0, 0, 5084, 5077, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 5, 333, 0, 0, 5087, 5088, 5, 323, 0, 0, 5088, 5089, 3, 786, 393, 0, 5089, 5107, 1, 0, 0, 0, 5090, 5099, 5, 138, 0, 0, 5091, 5092, 5, 355, 0, 0, 5092, 5093, 5, 325, 0, 0, 5093, 5100, 7, 42, 0, 0, 5094, 5100, 5, 108, 0, 0, 5095, 5100, 5, 168, 0, 0, 5096, 5100, 5, 189, 0, 0, 5097, 5100, 5, 342, 0, 0, 5098, 5100, 5, 360, 0, 0, 5099, 5091, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5095, 1, 0, 0, 0, 5099, 5096, 1, 0, 0, 0, 5099, 5097, 1, 0, 0, 0, 5099, 5098, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5102, 3, 310, 155, 0, 5102, 5103, 5, 333, 0, 0, 5103, 5104, 5, 323, 0, 0, 5104, 5105, 3, 786, 393, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5045, 1, 0, 0, 0, 5106, 5090, 1, 0, 0, 0, 5107, 431, 1, 0, 0, 0, 5108, 5109, 5, 138, 0, 0, 5109, 5110, 5, 278, 0, 0, 5110, 5111, 3, 410, 205, 0, 5111, 5112, 5, 333, 0, 0, 5112, 5113, 3, 434, 217, 0, 5113, 433, 1, 0, 0, 0, 5114, 5115, 5, 2, 0, 0, 5115, 5120, 3, 436, 218, 0, 5116, 5117, 5, 6, 0, 0, 5117, 5119, 3, 436, 218, 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, 3, 0, 0, 5124, 435, 1, 0, 0, 0, 5125, 5126, 3, 822, 411, 0, 5126, 5133, 5, 10, 0, 0, 5127, 5134, 5, 407, 0, 0, 5128, 5134, 3, 382, 191, 0, 5129, 5134, 3, 832, 416, 0, 5130, 5134, 3, 722, 361, 0, 5131, 5134, 3, 196, 98, 0, 5132, 5134, 3, 806, 403, 0, 5133, 5127, 1, 0, 0, 0, 5133, 5128, 1, 0, 0, 0, 5133, 5129, 1, 0, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5132, 1, 0, 0, 0, 5134, 437, 1, 0, 0, 0, 5135, 5136, 5, 138, 0, 0, 5136, 5137, 5, 360, 0, 0, 5137, 5138, 3, 310, 155, 0, 5138, 5139, 5, 333, 0, 0, 5139, 5140, 3, 434, 217, 0, 5140, 439, 1, 0, 0, 0, 5141, 5142, 5, 138, 0, 0, 5142, 5143, 5, 278, 0, 0, 5143, 5144, 7, 32, 0, 0, 5144, 5145, 3, 310, 155, 0, 5145, 5146, 3, 164, 82, 0, 5146, 5147, 5, 282, 0, 0, 5147, 5148, 5, 94, 0, 0, 5148, 5149, 3, 812, 406, 0, 5149, 5216, 1, 0, 0, 0, 5150, 5177, 5, 138, 0, 0, 5151, 5152, 5, 136, 0, 0, 5152, 5178, 3, 388, 194, 0, 5153, 5154, 5, 175, 0, 0, 5154, 5178, 3, 784, 392, 0, 5155, 5156, 5, 211, 0, 0, 5156, 5178, 3, 376, 188, 0, 5157, 5159, 5, 295, 0, 0, 5158, 5157, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 5, 247, 0, 0, 5161, 5178, 3, 816, 408, 0, 5162, 5163, 5, 248, 0, 0, 5163, 5164, 5, 274, 0, 0, 5164, 5178, 3, 196, 98, 0, 5165, 5166, 5, 248, 0, 0, 5166, 5167, 5, 274, 0, 0, 5167, 5178, 3, 196, 98, 0, 5168, 5169, 5, 278, 0, 0, 5169, 5178, 3, 410, 205, 0, 5170, 5171, 5, 296, 0, 0, 5171, 5178, 3, 372, 186, 0, 5172, 5173, 5, 442, 0, 0, 5173, 5178, 3, 368, 184, 0, 5174, 5175, 5, 323, 0, 0, 5175, 5178, 3, 786, 393, 0, 5176, 5178, 3, 170, 85, 0, 5177, 5151, 1, 0, 0, 0, 5177, 5153, 1, 0, 0, 0, 5177, 5155, 1, 0, 0, 0, 5177, 5158, 1, 0, 0, 0, 5177, 5162, 1, 0, 0, 0, 5177, 5165, 1, 0, 0, 0, 5177, 5168, 1, 0, 0, 0, 5177, 5170, 1, 0, 0, 0, 5177, 5172, 1, 0, 0, 0, 5177, 5174, 1, 0, 0, 0, 5177, 5176, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5180, 5, 282, 0, 0, 5180, 5181, 5, 94, 0, 0, 5181, 5182, 3, 812, 406, 0, 5182, 5216, 1, 0, 0, 0, 5183, 5192, 5, 138, 0, 0, 5184, 5185, 5, 355, 0, 0, 5185, 5186, 5, 325, 0, 0, 5186, 5193, 7, 64, 0, 0, 5187, 5193, 5, 108, 0, 0, 5188, 5193, 5, 168, 0, 0, 5189, 5193, 5, 189, 0, 0, 5190, 5193, 5, 360, 0, 0, 5191, 5193, 5, 342, 0, 0, 5192, 5184, 1, 0, 0, 0, 5192, 5187, 1, 0, 0, 0, 5192, 5188, 1, 0, 0, 0, 5192, 5189, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5191, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5195, 3, 310, 155, 0, 5195, 5196, 5, 282, 0, 0, 5196, 5197, 5, 94, 0, 0, 5197, 5198, 3, 812, 406, 0, 5198, 5216, 1, 0, 0, 0, 5199, 5208, 5, 138, 0, 0, 5200, 5209, 5, 331, 0, 0, 5201, 5202, 5, 63, 0, 0, 5202, 5203, 5, 174, 0, 0, 5203, 5209, 5, 381, 0, 0, 5204, 5205, 5, 198, 0, 0, 5205, 5209, 5, 357, 0, 0, 5206, 5209, 5, 452, 0, 0, 5207, 5209, 5, 451, 0, 0, 5208, 5200, 1, 0, 0, 0, 5208, 5201, 1, 0, 0, 0, 5208, 5204, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 3, 816, 408, 0, 5211, 5212, 5, 282, 0, 0, 5212, 5213, 5, 94, 0, 0, 5213, 5214, 3, 812, 406, 0, 5214, 5216, 1, 0, 0, 0, 5215, 5141, 1, 0, 0, 0, 5215, 5150, 1, 0, 0, 0, 5215, 5183, 1, 0, 0, 0, 5215, 5199, 1, 0, 0, 0, 5216, 441, 1, 0, 0, 0, 5217, 5218, 5, 46, 0, 0, 5218, 5219, 5, 452, 0, 0, 5219, 5226, 3, 816, 408, 0, 5220, 5221, 5, 62, 0, 0, 5221, 5222, 5, 92, 0, 0, 5222, 5227, 3, 622, 311, 0, 5223, 5224, 5, 62, 0, 0, 5224, 5225, 5, 30, 0, 0, 5225, 5227, 5, 350, 0, 0, 5226, 5220, 1, 0, 0, 0, 5226, 5223, 1, 0, 0, 0, 5226, 5227, 1, 0, 0, 0, 5227, 5229, 1, 0, 0, 0, 5228, 5230, 3, 394, 197, 0, 5229, 5228, 1, 0, 0, 0, 5229, 5230, 1, 0, 0, 0, 5230, 443, 1, 0, 0, 0, 5231, 5232, 5, 138, 0, 0, 5232, 5233, 5, 452, 0, 0, 5233, 5251, 3, 816, 408, 0, 5234, 5235, 5, 282, 0, 0, 5235, 5236, 5, 94, 0, 0, 5236, 5252, 3, 812, 406, 0, 5237, 5238, 5, 333, 0, 0, 5238, 5252, 3, 278, 139, 0, 5239, 5240, 5, 309, 0, 0, 5240, 5241, 5, 94, 0, 0, 5241, 5252, 3, 816, 408, 0, 5242, 5243, 7, 35, 0, 0, 5243, 5248, 3, 620, 310, 0, 5244, 5245, 5, 6, 0, 0, 5245, 5247, 3, 620, 310, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5250, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5234, 1, 0, 0, 0, 5251, 5237, 1, 0, 0, 0, 5251, 5239, 1, 0, 0, 0, 5251, 5242, 1, 0, 0, 0, 5252, 445, 1, 0, 0, 0, 5253, 5254, 5, 46, 0, 0, 5254, 5255, 5, 451, 0, 0, 5255, 5256, 3, 816, 408, 0, 5256, 5257, 5, 164, 0, 0, 5257, 5258, 3, 806, 403, 0, 5258, 5259, 5, 452, 0, 0, 5259, 5264, 3, 822, 411, 0, 5260, 5261, 5, 6, 0, 0, 5261, 5263, 3, 822, 411, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5269, 3, 394, 197, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 447, 1, 0, 0, 0, 5270, 5271, 5, 138, 0, 0, 5271, 5272, 5, 451, 0, 0, 5272, 5273, 3, 816, 408, 0, 5273, 5274, 5, 333, 0, 0, 5274, 5275, 3, 278, 139, 0, 5275, 5327, 1, 0, 0, 0, 5276, 5277, 5, 138, 0, 0, 5277, 5278, 5, 451, 0, 0, 5278, 5279, 3, 816, 408, 0, 5279, 5280, 5, 164, 0, 0, 5280, 5281, 3, 806, 403, 0, 5281, 5327, 1, 0, 0, 0, 5282, 5283, 5, 138, 0, 0, 5283, 5284, 5, 451, 0, 0, 5284, 5285, 3, 816, 408, 0, 5285, 5286, 5, 305, 0, 0, 5286, 5288, 5, 452, 0, 0, 5287, 5289, 3, 394, 197, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5327, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 816, 408, 0, 5293, 5294, 7, 35, 0, 0, 5294, 5295, 5, 452, 0, 0, 5295, 5300, 3, 822, 411, 0, 5296, 5297, 5, 6, 0, 0, 5297, 5299, 3, 822, 411, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5302, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5304, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5303, 5305, 3, 394, 197, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5327, 1, 0, 0, 0, 5306, 5307, 5, 138, 0, 0, 5307, 5308, 5, 451, 0, 0, 5308, 5309, 3, 816, 408, 0, 5309, 5310, 7, 65, 0, 0, 5310, 5327, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 816, 408, 0, 5314, 5315, 5, 465, 0, 0, 5315, 5316, 5, 2, 0, 0, 5316, 5317, 3, 284, 142, 0, 5317, 5318, 5, 3, 0, 0, 5318, 5327, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 816, 408, 0, 5322, 5323, 5, 282, 0, 0, 5323, 5324, 5, 94, 0, 0, 5324, 5325, 3, 812, 406, 0, 5325, 5327, 1, 0, 0, 0, 5326, 5270, 1, 0, 0, 0, 5326, 5276, 1, 0, 0, 0, 5326, 5282, 1, 0, 0, 0, 5326, 5290, 1, 0, 0, 0, 5326, 5306, 1, 0, 0, 0, 5326, 5311, 1, 0, 0, 0, 5326, 5319, 1, 0, 0, 0, 5327, 449, 1, 0, 0, 0, 5328, 5330, 5, 46, 0, 0, 5329, 5331, 3, 360, 180, 0, 5330, 5329, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5333, 5, 321, 0, 0, 5333, 5334, 3, 816, 408, 0, 5334, 5335, 5, 36, 0, 0, 5335, 5336, 5, 80, 0, 0, 5336, 5337, 7, 66, 0, 0, 5337, 5338, 5, 94, 0, 0, 5338, 5340, 3, 776, 388, 0, 5339, 5341, 3, 632, 316, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 5, 57, 0, 0, 5343, 5345, 7, 67, 0, 0, 5344, 5343, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5362, 1, 0, 0, 0, 5346, 5363, 5, 270, 0, 0, 5347, 5363, 3, 452, 226, 0, 5348, 5350, 5, 2, 0, 0, 5349, 5351, 3, 452, 226, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5358, 1, 0, 0, 0, 5352, 5354, 5, 7, 0, 0, 5353, 5355, 3, 452, 226, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5357, 1, 0, 0, 0, 5356, 5352, 1, 0, 0, 0, 5357, 5360, 1, 0, 0, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5363, 5, 3, 0, 0, 5362, 5346, 1, 0, 0, 0, 5362, 5347, 1, 0, 0, 0, 5362, 5348, 1, 0, 0, 0, 5363, 451, 1, 0, 0, 0, 5364, 5370, 3, 554, 277, 0, 5365, 5370, 3, 532, 266, 0, 5366, 5370, 3, 546, 273, 0, 5367, 5370, 3, 542, 271, 0, 5368, 5370, 3, 454, 227, 0, 5369, 5364, 1, 0, 0, 0, 5369, 5365, 1, 0, 0, 0, 5369, 5366, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, 0, 0, 0, 5370, 453, 1, 0, 0, 0, 5371, 5372, 5, 271, 0, 0, 5372, 5374, 3, 816, 408, 0, 5373, 5375, 3, 456, 228, 0, 5374, 5373, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 455, 1, 0, 0, 0, 5376, 5377, 5, 6, 0, 0, 5377, 5378, 3, 806, 403, 0, 5378, 457, 1, 0, 0, 0, 5379, 5380, 5, 252, 0, 0, 5380, 5381, 3, 816, 408, 0, 5381, 459, 1, 0, 0, 0, 5382, 5385, 5, 366, 0, 0, 5383, 5386, 3, 816, 408, 0, 5384, 5386, 5, 9, 0, 0, 5385, 5383, 1, 0, 0, 0, 5385, 5384, 1, 0, 0, 0, 5386, 461, 1, 0, 0, 0, 5387, 5389, 5, 146, 0, 0, 5388, 5390, 3, 464, 232, 0, 5389, 5388, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5392, 1, 0, 0, 0, 5391, 5393, 3, 468, 234, 0, 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5433, 1, 0, 0, 0, 5394, 5395, 5, 340, 0, 0, 5395, 5397, 5, 356, 0, 0, 5396, 5398, 3, 468, 234, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5433, 1, 0, 0, 0, 5399, 5400, 5, 322, 0, 0, 5400, 5433, 3, 816, 408, 0, 5401, 5403, 5, 308, 0, 0, 5402, 5404, 5, 322, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5433, 3, 816, 408, 0, 5406, 5407, 5, 290, 0, 0, 5407, 5408, 5, 356, 0, 0, 5408, 5433, 3, 806, 403, 0, 5409, 5410, 7, 68, 0, 0, 5410, 5411, 5, 291, 0, 0, 5411, 5433, 3, 806, 403, 0, 5412, 5414, 7, 69, 0, 0, 5413, 5415, 3, 464, 232, 0, 5414, 5413, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5421, 1, 0, 0, 0, 5416, 5418, 5, 33, 0, 0, 5417, 5419, 5, 269, 0, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5422, 5, 153, 0, 0, 5421, 5416, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5433, 1, 0, 0, 0, 5423, 5425, 5, 319, 0, 0, 5424, 5426, 3, 464, 232, 0, 5425, 5424, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5429, 5, 94, 0, 0, 5428, 5430, 5, 322, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 3, 816, 408, 0, 5432, 5387, 1, 0, 0, 0, 5432, 5394, 1, 0, 0, 0, 5432, 5399, 1, 0, 0, 0, 5432, 5401, 1, 0, 0, 0, 5432, 5406, 1, 0, 0, 0, 5432, 5409, 1, 0, 0, 0, 5432, 5412, 1, 0, 0, 0, 5432, 5423, 1, 0, 0, 0, 5433, 463, 1, 0, 0, 0, 5434, 5435, 7, 70, 0, 0, 5435, 465, 1, 0, 0, 0, 5436, 5437, 5, 244, 0, 0, 5437, 5438, 5, 251, 0, 0, 5438, 5446, 3, 50, 25, 0, 5439, 5440, 5, 300, 0, 0, 5440, 5446, 7, 71, 0, 0, 5441, 5443, 5, 77, 0, 0, 5442, 5441, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5446, 5, 54, 0, 0, 5445, 5436, 1, 0, 0, 0, 5445, 5439, 1, 0, 0, 0, 5445, 5442, 1, 0, 0, 0, 5446, 467, 1, 0, 0, 0, 5447, 5454, 3, 466, 233, 0, 5448, 5450, 5, 6, 0, 0, 5449, 5448, 1, 0, 0, 0, 5449, 5450, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5453, 3, 466, 233, 0, 5452, 5449, 1, 0, 0, 0, 5453, 5456, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5454, 5455, 1, 0, 0, 0, 5455, 469, 1, 0, 0, 0, 5456, 5454, 1, 0, 0, 0, 5457, 5460, 5, 46, 0, 0, 5458, 5459, 5, 82, 0, 0, 5459, 5461, 5, 311, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 1, 0, 0, 0, 5462, 5464, 3, 116, 58, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5480, 1, 0, 0, 0, 5465, 5466, 5, 376, 0, 0, 5466, 5468, 3, 772, 386, 0, 5467, 5469, 3, 140, 70, 0, 5468, 5467, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 94, 47, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5481, 1, 0, 0, 0, 5473, 5474, 5, 303, 0, 0, 5474, 5475, 5, 376, 0, 0, 5475, 5476, 3, 772, 386, 0, 5476, 5478, 3, 138, 69, 0, 5477, 5479, 3, 94, 47, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5465, 1, 0, 0, 0, 5480, 5473, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5483, 5, 36, 0, 0, 5483, 5490, 3, 554, 277, 0, 5484, 5486, 5, 105, 0, 0, 5485, 5487, 7, 72, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 5, 42, 0, 0, 5489, 5491, 5, 279, 0, 0, 5490, 5484, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 471, 1, 0, 0, 0, 5492, 5493, 5, 253, 0, 0, 5493, 5494, 3, 806, 403, 0, 5494, 473, 1, 0, 0, 0, 5495, 5496, 5, 46, 0, 0, 5496, 5497, 5, 175, 0, 0, 5497, 5499, 3, 782, 391, 0, 5498, 5500, 5, 105, 0, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5506, 1, 0, 0, 0, 5501, 5503, 3, 476, 238, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5502, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 475, 1, 0, 0, 0, 5508, 5509, 5, 164, 0, 0, 5509, 5517, 5, 74, 0, 0, 5510, 5517, 5, 194, 0, 0, 5511, 5517, 5, 255, 0, 0, 5512, 5517, 5, 282, 0, 0, 5513, 5517, 5, 351, 0, 0, 5514, 5517, 5, 353, 0, 0, 5515, 5517, 3, 824, 412, 0, 5516, 5508, 1, 0, 0, 0, 5516, 5510, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5513, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5515, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 5, 10, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5524, 1, 0, 0, 0, 5521, 5525, 3, 810, 405, 0, 5522, 5525, 3, 54, 27, 0, 5523, 5525, 5, 53, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 477, 1, 0, 0, 0, 5526, 5527, 5, 138, 0, 0, 5527, 5528, 5, 175, 0, 0, 5528, 5544, 3, 784, 392, 0, 5529, 5530, 5, 333, 0, 0, 5530, 5531, 5, 351, 0, 0, 5531, 5533, 3, 766, 383, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5545, 1, 0, 0, 0, 5534, 5536, 5, 105, 0, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5538, 1, 0, 0, 0, 5537, 5539, 3, 476, 238, 0, 5538, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5535, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5532, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 479, 1, 0, 0, 0, 5546, 5547, 5, 138, 0, 0, 5547, 5548, 5, 175, 0, 0, 5548, 5550, 3, 784, 392, 0, 5549, 5551, 3, 64, 32, 0, 5550, 5549, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 481, 1, 0, 0, 0, 5552, 5553, 5, 138, 0, 0, 5553, 5554, 5, 108, 0, 0, 5554, 5555, 3, 310, 155, 0, 5555, 5556, 5, 305, 0, 0, 5556, 5557, 5, 375, 0, 0, 5557, 483, 1, 0, 0, 0, 5558, 5559, 5, 138, 0, 0, 5559, 5560, 5, 349, 0, 0, 5560, 5561, 7, 16, 0, 0, 5561, 5562, 3, 40, 20, 0, 5562, 485, 1, 0, 0, 0, 5563, 5564, 5, 46, 0, 0, 5564, 5565, 5, 189, 0, 0, 5565, 5567, 3, 310, 155, 0, 5566, 5568, 5, 36, 0, 0, 5567, 5566, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5573, 3, 646, 323, 0, 5570, 5572, 3, 128, 64, 0, 5571, 5570, 1, 0, 0, 0, 5572, 5575, 1, 0, 0, 0, 5573, 5571, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 487, 1, 0, 0, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5577, 5, 138, 0, 0, 5577, 5578, 5, 189, 0, 0, 5578, 5601, 3, 310, 155, 0, 5579, 5602, 3, 86, 43, 0, 5580, 5581, 7, 15, 0, 0, 5581, 5582, 5, 77, 0, 0, 5582, 5602, 5, 78, 0, 0, 5583, 5586, 5, 133, 0, 0, 5584, 5585, 5, 45, 0, 0, 5585, 5587, 3, 816, 408, 0, 5586, 5584, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 5602, 3, 136, 68, 0, 5589, 5590, 5, 191, 0, 0, 5590, 5592, 5, 45, 0, 0, 5591, 5593, 3, 416, 208, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 3, 816, 408, 0, 5595, 5597, 3, 88, 44, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5602, 1, 0, 0, 0, 5598, 5599, 5, 372, 0, 0, 5599, 5600, 5, 45, 0, 0, 5600, 5602, 3, 816, 408, 0, 5601, 5579, 1, 0, 0, 0, 5601, 5580, 1, 0, 0, 0, 5601, 5583, 1, 0, 0, 0, 5601, 5589, 1, 0, 0, 0, 5601, 5598, 1, 0, 0, 0, 5602, 489, 1, 0, 0, 0, 5603, 5604, 5, 138, 0, 0, 5604, 5605, 5, 355, 0, 0, 5605, 5606, 5, 325, 0, 0, 5606, 5607, 5, 185, 0, 0, 5607, 5608, 3, 310, 155, 0, 5608, 5609, 3, 278, 139, 0, 5609, 491, 1, 0, 0, 0, 5610, 5611, 5, 138, 0, 0, 5611, 5612, 5, 355, 0, 0, 5612, 5613, 5, 325, 0, 0, 5613, 5614, 5, 163, 0, 0, 5614, 5615, 3, 310, 155, 0, 5615, 5616, 7, 73, 0, 0, 5616, 5617, 5, 257, 0, 0, 5617, 5618, 5, 62, 0, 0, 5618, 5619, 3, 780, 390, 0, 5619, 5620, 5, 105, 0, 0, 5620, 5621, 3, 308, 154, 0, 5621, 5652, 1, 0, 0, 0, 5622, 5623, 5, 138, 0, 0, 5623, 5624, 5, 355, 0, 0, 5624, 5625, 5, 325, 0, 0, 5625, 5626, 5, 163, 0, 0, 5626, 5627, 3, 310, 155, 0, 5627, 5628, 5, 138, 0, 0, 5628, 5631, 5, 257, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5632, 3, 780, 390, 0, 5631, 5629, 1, 0, 0, 0, 5631, 5632, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 5, 311, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 105, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5652, 1, 0, 0, 0, 5638, 5639, 5, 138, 0, 0, 5639, 5640, 5, 355, 0, 0, 5640, 5641, 5, 325, 0, 0, 5641, 5642, 5, 163, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 191, 0, 0, 5644, 5646, 5, 257, 0, 0, 5645, 5647, 3, 416, 208, 0, 5646, 5645, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5649, 5, 62, 0, 0, 5649, 5650, 3, 780, 390, 0, 5650, 5652, 1, 0, 0, 0, 5651, 5610, 1, 0, 0, 0, 5651, 5622, 1, 0, 0, 0, 5651, 5638, 1, 0, 0, 0, 5652, 493, 1, 0, 0, 0, 5653, 5655, 5, 46, 0, 0, 5654, 5656, 5, 53, 0, 0, 5655, 5654, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 5, 168, 0, 0, 5658, 5659, 3, 310, 155, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 806, 403, 0, 5661, 5662, 5, 94, 0, 0, 5662, 5663, 3, 806, 403, 0, 5663, 5664, 5, 64, 0, 0, 5664, 5665, 3, 310, 155, 0, 5665, 495, 1, 0, 0, 0, 5666, 5668, 5, 158, 0, 0, 5667, 5669, 3, 508, 254, 0, 5668, 5667, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5674, 1, 0, 0, 0, 5670, 5672, 3, 770, 385, 0, 5671, 5673, 3, 164, 82, 0, 5672, 5671, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5670, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5692, 1, 0, 0, 0, 5676, 5677, 5, 158, 0, 0, 5677, 5678, 5, 2, 0, 0, 5678, 5683, 3, 508, 254, 0, 5679, 5680, 5, 6, 0, 0, 5680, 5682, 3, 508, 254, 0, 5681, 5679, 1, 0, 0, 0, 5682, 5685, 1, 0, 0, 0, 5683, 5681, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5686, 5687, 5, 3, 0, 0, 5687, 5689, 3, 770, 385, 0, 5688, 5690, 3, 164, 82, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5692, 1, 0, 0, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5676, 1, 0, 0, 0, 5692, 497, 1, 0, 0, 0, 5693, 5709, 5, 370, 0, 0, 5694, 5696, 5, 113, 0, 0, 5695, 5694, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5698, 1, 0, 0, 0, 5697, 5699, 5, 112, 0, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5702, 3, 508, 254, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5705, 3, 502, 251, 0, 5704, 5703, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5710, 1, 0, 0, 0, 5706, 5708, 3, 518, 259, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5695, 1, 0, 0, 0, 5709, 5707, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 512, 256, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 499, 1, 0, 0, 0, 5714, 5729, 3, 502, 251, 0, 5715, 5717, 3, 508, 254, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5730, 1, 0, 0, 0, 5718, 5719, 5, 2, 0, 0, 5719, 5724, 3, 506, 253, 0, 5720, 5721, 5, 6, 0, 0, 5721, 5723, 3, 506, 253, 0, 5722, 5720, 1, 0, 0, 0, 5723, 5726, 1, 0, 0, 0, 5724, 5722, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 5728, 5, 3, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5716, 1, 0, 0, 0, 5729, 5718, 1, 0, 0, 0, 5730, 5732, 1, 0, 0, 0, 5731, 5733, 3, 512, 256, 0, 5732, 5731, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 501, 1, 0, 0, 0, 5734, 5735, 7, 74, 0, 0, 5735, 503, 1, 0, 0, 0, 5736, 5739, 3, 820, 410, 0, 5737, 5739, 3, 502, 251, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5742, 1, 0, 0, 0, 5740, 5743, 3, 54, 27, 0, 5741, 5743, 3, 196, 98, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 505, 1, 0, 0, 0, 5744, 5746, 7, 75, 0, 0, 5745, 5747, 7, 76, 0, 0, 5746, 5745, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5754, 1, 0, 0, 0, 5748, 5751, 5, 548, 0, 0, 5749, 5752, 3, 196, 98, 0, 5750, 5752, 3, 806, 403, 0, 5751, 5749, 1, 0, 0, 0, 5751, 5750, 1, 0, 0, 0, 5752, 5754, 1, 0, 0, 0, 5753, 5744, 1, 0, 0, 0, 5753, 5748, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5757, 5, 128, 0, 0, 5756, 5758, 7, 76, 0, 0, 5757, 5756, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 509, 1, 0, 0, 0, 5759, 5761, 3, 770, 385, 0, 5760, 5762, 3, 138, 69, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 511, 1, 0, 0, 0, 5763, 5768, 3, 510, 255, 0, 5764, 5765, 5, 6, 0, 0, 5765, 5767, 3, 510, 255, 0, 5766, 5764, 1, 0, 0, 0, 5767, 5770, 1, 0, 0, 0, 5768, 5766, 1, 0, 0, 0, 5768, 5769, 1, 0, 0, 0, 5769, 513, 1, 0, 0, 0, 5770, 5768, 1, 0, 0, 0, 5771, 5782, 5, 203, 0, 0, 5772, 5783, 3, 518, 259, 0, 5773, 5775, 5, 128, 0, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5783, 1, 0, 0, 0, 5776, 5778, 3, 502, 251, 0, 5777, 5779, 3, 508, 254, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5781, 1, 0, 0, 0, 5780, 5776, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 5783, 1, 0, 0, 0, 5782, 5772, 1, 0, 0, 0, 5782, 5774, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5783, 5784, 1, 0, 0, 0, 5784, 5785, 3, 516, 258, 0, 5785, 515, 1, 0, 0, 0, 5786, 5796, 3, 554, 277, 0, 5787, 5796, 3, 532, 266, 0, 5788, 5796, 3, 546, 273, 0, 5789, 5796, 3, 542, 271, 0, 5790, 5796, 3, 552, 276, 0, 5791, 5796, 3, 180, 90, 0, 5792, 5796, 3, 186, 93, 0, 5793, 5796, 3, 188, 94, 0, 5794, 5796, 3, 526, 263, 0, 5795, 5786, 1, 0, 0, 0, 5795, 5787, 1, 0, 0, 0, 5795, 5788, 1, 0, 0, 0, 5795, 5789, 1, 0, 0, 0, 5795, 5790, 1, 0, 0, 0, 5795, 5791, 1, 0, 0, 0, 5795, 5792, 1, 0, 0, 0, 5795, 5793, 1, 0, 0, 0, 5795, 5794, 1, 0, 0, 0, 5796, 517, 1, 0, 0, 0, 5797, 5798, 5, 2, 0, 0, 5798, 5803, 3, 504, 252, 0, 5799, 5800, 5, 6, 0, 0, 5800, 5802, 3, 504, 252, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5805, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5806, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 5, 3, 0, 0, 5807, 519, 1, 0, 0, 0, 5808, 5809, 5, 290, 0, 0, 5809, 5811, 3, 816, 408, 0, 5810, 5812, 3, 522, 261, 0, 5811, 5810, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5813, 1, 0, 0, 0, 5813, 5814, 5, 36, 0, 0, 5814, 5815, 3, 524, 262, 0, 5815, 521, 1, 0, 0, 0, 5816, 5817, 5, 2, 0, 0, 5817, 5822, 3, 646, 323, 0, 5818, 5819, 5, 6, 0, 0, 5819, 5821, 3, 646, 323, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5824, 1, 0, 0, 0, 5822, 5820, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5825, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 5826, 5, 3, 0, 0, 5826, 523, 1, 0, 0, 0, 5827, 5833, 3, 554, 277, 0, 5828, 5833, 3, 532, 266, 0, 5829, 5833, 3, 546, 273, 0, 5830, 5833, 3, 542, 271, 0, 5831, 5833, 3, 898, 449, 0, 5832, 5827, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 525, 1, 0, 0, 0, 5834, 5835, 5, 202, 0, 0, 5835, 5837, 3, 816, 408, 0, 5836, 5838, 3, 528, 264, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5858, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 116, 58, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5845, 5, 92, 0, 0, 5844, 5846, 3, 288, 144, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5848, 3, 182, 91, 0, 5848, 5849, 5, 36, 0, 0, 5849, 5850, 5, 202, 0, 0, 5850, 5852, 3, 816, 408, 0, 5851, 5853, 3, 528, 264, 0, 5852, 5851, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 1, 0, 0, 0, 5854, 5856, 3, 184, 92, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5858, 1, 0, 0, 0, 5857, 5834, 1, 0, 0, 0, 5857, 5839, 1, 0, 0, 0, 5858, 527, 1, 0, 0, 0, 5859, 5860, 5, 2, 0, 0, 5860, 5861, 3, 726, 363, 0, 5861, 5862, 5, 3, 0, 0, 5862, 529, 1, 0, 0, 0, 5863, 5865, 5, 177, 0, 0, 5864, 5866, 5, 290, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5869, 1, 0, 0, 0, 5867, 5870, 3, 816, 408, 0, 5868, 5870, 5, 30, 0, 0, 5869, 5867, 1, 0, 0, 0, 5869, 5868, 1, 0, 0, 0, 5870, 531, 1, 0, 0, 0, 5871, 5873, 3, 566, 283, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5875, 5, 241, 0, 0, 5875, 5876, 5, 71, 0, 0, 5876, 5879, 3, 770, 385, 0, 5877, 5878, 5, 36, 0, 0, 5878, 5880, 3, 816, 408, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5880, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5903, 3, 534, 267, 0, 5882, 5883, 5, 80, 0, 0, 5883, 5891, 5, 464, 0, 0, 5884, 5886, 3, 354, 177, 0, 5885, 5887, 3, 632, 316, 0, 5886, 5885, 1, 0, 0, 0, 5886, 5887, 1, 0, 0, 0, 5887, 5892, 1, 0, 0, 0, 5888, 5889, 5, 80, 0, 0, 5889, 5890, 5, 45, 0, 0, 5890, 5892, 3, 816, 408, 0, 5891, 5884, 1, 0, 0, 0, 5891, 5888, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5901, 5, 57, 0, 0, 5894, 5895, 5, 369, 0, 0, 5895, 5896, 5, 333, 0, 0, 5896, 5898, 3, 548, 274, 0, 5897, 5899, 3, 632, 316, 0, 5898, 5897, 1, 0, 0, 0, 5898, 5899, 1, 0, 0, 0, 5899, 5902, 1, 0, 0, 0, 5900, 5902, 5, 270, 0, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5900, 1, 0, 0, 0, 5902, 5904, 1, 0, 0, 0, 5903, 5882, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5907, 3, 540, 270, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 533, 1, 0, 0, 0, 5908, 5909, 5, 2, 0, 0, 5909, 5910, 3, 536, 268, 0, 5910, 5911, 5, 3, 0, 0, 5911, 5913, 1, 0, 0, 0, 5912, 5908, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5917, 1, 0, 0, 0, 5914, 5915, 5, 463, 0, 0, 5915, 5916, 7, 77, 0, 0, 5916, 5918, 5, 450, 0, 0, 5917, 5914, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 5921, 1, 0, 0, 0, 5919, 5922, 3, 908, 454, 0, 5920, 5922, 3, 554, 277, 0, 5921, 5919, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 535, 1, 0, 0, 0, 5923, 5928, 3, 538, 269, 0, 5924, 5925, 5, 6, 0, 0, 5925, 5927, 3, 538, 269, 0, 5926, 5924, 1, 0, 0, 0, 5927, 5930, 1, 0, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 537, 1, 0, 0, 0, 5930, 5928, 1, 0, 0, 0, 5931, 5932, 3, 796, 398, 0, 5932, 5933, 3, 750, 375, 0, 5933, 539, 1, 0, 0, 0, 5934, 5935, 5, 87, 0, 0, 5935, 5936, 3, 752, 376, 0, 5936, 541, 1, 0, 0, 0, 5937, 5939, 3, 566, 283, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 5940, 1, 0, 0, 0, 5940, 5941, 5, 182, 0, 0, 5941, 5942, 5, 64, 0, 0, 5942, 5945, 3, 624, 312, 0, 5943, 5944, 5, 100, 0, 0, 5944, 5946, 3, 606, 303, 0, 5945, 5943, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 5948, 1, 0, 0, 0, 5947, 5949, 3, 634, 317, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5951, 1, 0, 0, 0, 5950, 5952, 3, 540, 270, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 543, 1, 0, 0, 0, 5953, 5955, 5, 256, 0, 0, 5954, 5956, 5, 92, 0, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5972, 3, 622, 311, 0, 5958, 5969, 5, 68, 0, 0, 5959, 5960, 7, 78, 0, 0, 5960, 5970, 7, 79, 0, 0, 5961, 5966, 5, 334, 0, 0, 5962, 5963, 5, 369, 0, 0, 5963, 5967, 5, 201, 0, 0, 5964, 5965, 5, 414, 0, 0, 5965, 5967, 5, 201, 0, 0, 5966, 5962, 1, 0, 0, 0, 5966, 5964, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5970, 1, 0, 0, 0, 5968, 5970, 5, 201, 0, 0, 5969, 5959, 1, 0, 0, 0, 5969, 5961, 1, 0, 0, 0, 5969, 5968, 1, 0, 0, 0, 5970, 5971, 1, 0, 0, 0, 5971, 5973, 5, 263, 0, 0, 5972, 5958, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5975, 1, 0, 0, 0, 5974, 5976, 5, 272, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 545, 1, 0, 0, 0, 5977, 5979, 3, 566, 283, 0, 5978, 5977, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 5, 369, 0, 0, 5981, 5982, 3, 624, 312, 0, 5982, 5983, 5, 333, 0, 0, 5983, 5985, 3, 548, 274, 0, 5984, 5986, 3, 604, 302, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5988, 1, 0, 0, 0, 5987, 5989, 3, 634, 317, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5991, 1, 0, 0, 0, 5990, 5992, 3, 540, 270, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 547, 1, 0, 0, 0, 5993, 5998, 3, 550, 275, 0, 5994, 5995, 5, 6, 0, 0, 5995, 5997, 3, 550, 275, 0, 5996, 5994, 1, 0, 0, 0, 5997, 6000, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 549, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 6002, 3, 538, 269, 0, 6002, 6003, 5, 10, 0, 0, 6003, 6004, 3, 668, 334, 0, 6004, 6020, 1, 0, 0, 0, 6005, 6006, 5, 2, 0, 0, 6006, 6007, 3, 536, 268, 0, 6007, 6008, 5, 3, 0, 0, 6008, 6017, 5, 10, 0, 0, 6009, 6011, 5, 414, 0, 0, 6010, 6009, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 6018, 3, 668, 334, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 560, 280, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6018, 1, 0, 0, 0, 6017, 6010, 1, 0, 0, 0, 6017, 6013, 1, 0, 0, 0, 6018, 6020, 1, 0, 0, 0, 6019, 6001, 1, 0, 0, 0, 6019, 6005, 1, 0, 0, 0, 6020, 551, 1, 0, 0, 0, 6021, 6022, 5, 178, 0, 0, 6022, 6031, 3, 816, 408, 0, 6023, 6025, 5, 269, 0, 0, 6024, 6023, 1, 0, 0, 0, 6024, 6025, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 6030, 5, 324, 0, 0, 6027, 6030, 5, 107, 0, 0, 6028, 6030, 5, 240, 0, 0, 6029, 6024, 1, 0, 0, 0, 6029, 6027, 1, 0, 0, 0, 6029, 6028, 1, 0, 0, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6029, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6034, 1, 0, 0, 0, 6033, 6031, 1, 0, 0, 0, 6034, 6037, 5, 172, 0, 0, 6035, 6036, 7, 27, 0, 0, 6036, 6038, 5, 217, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 5, 62, 0, 0, 6040, 6041, 3, 554, 277, 0, 6041, 553, 1, 0, 0, 0, 6042, 6045, 3, 558, 279, 0, 6043, 6045, 3, 556, 278, 0, 6044, 6042, 1, 0, 0, 0, 6044, 6043, 1, 0, 0, 0, 6045, 555, 1, 0, 0, 0, 6046, 6049, 5, 2, 0, 0, 6047, 6050, 3, 558, 279, 0, 6048, 6050, 3, 556, 278, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 3, 0, 0, 6052, 557, 1, 0, 0, 0, 6053, 6055, 3, 566, 283, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 3, 560, 280, 0, 6057, 6059, 3, 580, 290, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6068, 1, 0, 0, 0, 6060, 6062, 3, 600, 300, 0, 6061, 6063, 3, 584, 292, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6069, 1, 0, 0, 0, 6064, 6066, 3, 584, 292, 0, 6065, 6067, 3, 600, 300, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6069, 1, 0, 0, 0, 6068, 6060, 1, 0, 0, 0, 6068, 6064, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 559, 1, 0, 0, 0, 6070, 6073, 3, 562, 281, 0, 6071, 6073, 3, 556, 278, 0, 6072, 6070, 1, 0, 0, 0, 6072, 6071, 1, 0, 0, 0, 6073, 561, 1, 0, 0, 0, 6074, 6084, 5, 88, 0, 0, 6075, 6077, 5, 30, 0, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6080, 3, 574, 287, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6085, 1, 0, 0, 0, 6081, 6083, 3, 578, 289, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6085, 1, 0, 0, 0, 6084, 6076, 1, 0, 0, 0, 6084, 6082, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6097, 3, 928, 464, 0, 6087, 6097, 3, 602, 301, 0, 6088, 6089, 5, 92, 0, 0, 6089, 6097, 3, 618, 309, 0, 6090, 6091, 3, 556, 278, 0, 6091, 6094, 3, 564, 282, 0, 6092, 6095, 3, 562, 281, 0, 6093, 6095, 3, 556, 278, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6093, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6074, 1, 0, 0, 0, 6096, 6087, 1, 0, 0, 0, 6096, 6088, 1, 0, 0, 0, 6096, 6090, 1, 0, 0, 0, 6097, 6105, 1, 0, 0, 0, 6098, 6101, 3, 564, 282, 0, 6099, 6102, 3, 562, 281, 0, 6100, 6102, 3, 556, 278, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6100, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6098, 1, 0, 0, 0, 6104, 6107, 1, 0, 0, 0, 6105, 6103, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 563, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6108, 6110, 7, 80, 0, 0, 6109, 6111, 7, 81, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 565, 1, 0, 0, 0, 6112, 6114, 5, 105, 0, 0, 6113, 6115, 5, 303, 0, 0, 6114, 6113, 1, 0, 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 6121, 3, 568, 284, 0, 6117, 6118, 5, 6, 0, 0, 6118, 6120, 3, 568, 284, 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, 567, 1, 0, 0, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6126, 3, 816, 408, 0, 6125, 6127, 3, 138, 69, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6133, 5, 36, 0, 0, 6129, 6131, 5, 77, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 5, 259, 0, 0, 6133, 6130, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 5, 2, 0, 0, 6136, 6137, 3, 524, 262, 0, 6137, 6139, 5, 3, 0, 0, 6138, 6140, 3, 570, 285, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 1, 0, 0, 0, 6141, 6143, 3, 572, 286, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 569, 1, 0, 0, 0, 6144, 6145, 5, 325, 0, 0, 6145, 6146, 7, 82, 0, 0, 6146, 6147, 5, 207, 0, 0, 6147, 6148, 5, 147, 0, 0, 6148, 6149, 3, 142, 71, 0, 6149, 6150, 5, 333, 0, 0, 6150, 6151, 3, 796, 398, 0, 6151, 571, 1, 0, 0, 0, 6152, 6153, 5, 173, 0, 0, 6153, 6154, 3, 142, 71, 0, 6154, 6155, 5, 333, 0, 0, 6155, 6161, 3, 796, 398, 0, 6156, 6157, 5, 94, 0, 0, 6157, 6158, 3, 816, 408, 0, 6158, 6159, 5, 53, 0, 0, 6159, 6160, 3, 816, 408, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6156, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6164, 5, 100, 0, 0, 6164, 6165, 3, 796, 398, 0, 6165, 573, 1, 0, 0, 0, 6166, 6172, 5, 71, 0, 0, 6167, 6169, 5, 346, 0, 0, 6168, 6167, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6173, 3, 576, 288, 0, 6171, 6173, 3, 726, 363, 0, 6172, 6168, 1, 0, 0, 0, 6172, 6171, 1, 0, 0, 0, 6173, 575, 1, 0, 0, 0, 6174, 6176, 7, 21, 0, 0, 6175, 6174, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6179, 7, 22, 0, 0, 6178, 6180, 5, 92, 0, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6190, 3, 768, 384, 0, 6182, 6184, 5, 367, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6187, 5, 92, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 3, 768, 384, 0, 6189, 6175, 1, 0, 0, 0, 6189, 6183, 1, 0, 0, 0, 6190, 577, 1, 0, 0, 0, 6191, 6194, 5, 56, 0, 0, 6192, 6193, 5, 80, 0, 0, 6193, 6195, 3, 528, 264, 0, 6194, 6192, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 579, 1, 0, 0, 0, 6196, 6197, 5, 83, 0, 0, 6197, 6198, 5, 147, 0, 0, 6198, 6203, 3, 582, 291, 0, 6199, 6200, 5, 6, 0, 0, 6200, 6202, 3, 582, 291, 0, 6201, 6199, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 581, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6210, 3, 730, 365, 0, 6207, 6208, 5, 100, 0, 0, 6208, 6211, 3, 722, 361, 0, 6209, 6211, 7, 56, 0, 0, 6210, 6207, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6214, 1, 0, 0, 0, 6212, 6213, 5, 273, 0, 0, 6213, 6215, 7, 57, 0, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 583, 1, 0, 0, 0, 6216, 6218, 3, 590, 295, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6228, 1, 0, 0, 0, 6220, 6223, 3, 586, 293, 0, 6221, 6223, 3, 588, 294, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6223, 6225, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6224, 1, 0, 0, 0, 6225, 6226, 1, 0, 0, 0, 6226, 6228, 1, 0, 0, 0, 6227, 6216, 1, 0, 0, 0, 6227, 6222, 1, 0, 0, 0, 6228, 585, 1, 0, 0, 0, 6229, 6232, 5, 74, 0, 0, 6230, 6233, 3, 668, 334, 0, 6231, 6233, 5, 30, 0, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6236, 1, 0, 0, 0, 6234, 6235, 5, 6, 0, 0, 6235, 6237, 3, 668, 334, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 587, 1, 0, 0, 0, 6238, 6239, 5, 61, 0, 0, 6239, 6241, 7, 83, 0, 0, 6240, 6242, 3, 592, 296, 0, 6241, 6240, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6247, 7, 84, 0, 0, 6244, 6248, 5, 81, 0, 0, 6245, 6246, 5, 105, 0, 0, 6246, 6248, 5, 467, 0, 0, 6247, 6244, 1, 0, 0, 0, 6247, 6245, 1, 0, 0, 0, 6248, 589, 1, 0, 0, 0, 6249, 6254, 5, 79, 0, 0, 6250, 6251, 3, 592, 296, 0, 6251, 6252, 7, 84, 0, 0, 6252, 6255, 1, 0, 0, 0, 6253, 6255, 3, 668, 334, 0, 6254, 6250, 1, 0, 0, 0, 6254, 6253, 1, 0, 0, 0, 6255, 591, 1, 0, 0, 0, 6256, 6257, 7, 30, 0, 0, 6257, 6260, 7, 85, 0, 0, 6258, 6260, 3, 676, 338, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6258, 1, 0, 0, 0, 6260, 593, 1, 0, 0, 0, 6261, 6262, 5, 66, 0, 0, 6262, 6264, 5, 147, 0, 0, 6263, 6265, 7, 81, 0, 0, 6264, 6263, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6267, 3, 596, 298, 0, 6267, 595, 1, 0, 0, 0, 6268, 6273, 3, 598, 299, 0, 6269, 6270, 5, 6, 0, 0, 6270, 6272, 3, 598, 299, 0, 6271, 6269, 1, 0, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 597, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6300, 3, 730, 365, 0, 6277, 6278, 5, 2, 0, 0, 6278, 6300, 5, 3, 0, 0, 6279, 6281, 7, 86, 0, 0, 6280, 6279, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 6283, 5, 2, 0, 0, 6283, 6288, 3, 730, 365, 0, 6284, 6285, 5, 6, 0, 0, 6285, 6287, 3, 730, 365, 0, 6286, 6284, 1, 0, 0, 0, 6287, 6290, 1, 0, 0, 0, 6288, 6286, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6288, 1, 0, 0, 0, 6291, 6292, 5, 3, 0, 0, 6292, 6300, 1, 0, 0, 0, 6293, 6294, 5, 470, 0, 0, 6294, 6295, 5, 471, 0, 0, 6295, 6296, 5, 2, 0, 0, 6296, 6297, 3, 596, 298, 0, 6297, 6298, 5, 3, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6276, 1, 0, 0, 0, 6299, 6277, 1, 0, 0, 0, 6299, 6280, 1, 0, 0, 0, 6299, 6293, 1, 0, 0, 0, 6300, 599, 1, 0, 0, 0, 6301, 6311, 5, 62, 0, 0, 6302, 6303, 5, 269, 0, 0, 6303, 6305, 5, 245, 0, 0, 6304, 6302, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6312, 5, 369, 0, 0, 6307, 6309, 5, 245, 0, 0, 6308, 6307, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6310, 1, 0, 0, 0, 6310, 6312, 5, 334, 0, 0, 6311, 6304, 1, 0, 0, 0, 6311, 6308, 1, 0, 0, 0, 6312, 6315, 1, 0, 0, 0, 6313, 6314, 5, 275, 0, 0, 6314, 6316, 3, 756, 378, 0, 6315, 6313, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6320, 1, 0, 0, 0, 6317, 6321, 5, 272, 0, 0, 6318, 6319, 5, 465, 0, 0, 6319, 6321, 5, 466, 0, 0, 6320, 6317, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6323, 1, 0, 0, 0, 6322, 6301, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6330, 1, 0, 0, 0, 6326, 6327, 5, 62, 0, 0, 6327, 6328, 5, 300, 0, 0, 6328, 6330, 5, 81, 0, 0, 6329, 6322, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6330, 601, 1, 0, 0, 0, 6331, 6332, 5, 422, 0, 0, 6332, 6337, 3, 528, 264, 0, 6333, 6334, 5, 6, 0, 0, 6334, 6336, 3, 528, 264, 0, 6335, 6333, 1, 0, 0, 0, 6336, 6339, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 603, 1, 0, 0, 0, 6339, 6337, 1, 0, 0, 0, 6340, 6341, 5, 64, 0, 0, 6341, 6342, 3, 606, 303, 0, 6342, 605, 1, 0, 0, 0, 6343, 6348, 3, 608, 304, 0, 6344, 6345, 5, 6, 0, 0, 6345, 6347, 3, 608, 304, 0, 6346, 6344, 1, 0, 0, 0, 6347, 6350, 1, 0, 0, 0, 6348, 6346, 1, 0, 0, 0, 6348, 6349, 1, 0, 0, 0, 6349, 607, 1, 0, 0, 0, 6350, 6348, 1, 0, 0, 0, 6351, 6366, 3, 618, 309, 0, 6352, 6354, 5, 81, 0, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 6357, 3, 774, 387, 0, 6356, 6358, 5, 9, 0, 0, 6357, 6356, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 142, 71, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6363, 1, 0, 0, 0, 6362, 6364, 3, 632, 316, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6351, 1, 0, 0, 0, 6365, 6353, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 610, 305, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 626, 313, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6415, 1, 0, 0, 0, 6373, 6375, 5, 72, 0, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6388, 1, 0, 0, 0, 6376, 6378, 3, 640, 320, 0, 6377, 6379, 3, 610, 305, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6389, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6383, 3, 612, 306, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6389, 1, 0, 0, 0, 6384, 6386, 3, 556, 278, 0, 6385, 6387, 3, 610, 305, 0, 6386, 6385, 1, 0, 0, 0, 6386, 6387, 1, 0, 0, 0, 6387, 6389, 1, 0, 0, 0, 6388, 6376, 1, 0, 0, 0, 6388, 6380, 1, 0, 0, 0, 6388, 6384, 1, 0, 0, 0, 6389, 6415, 1, 0, 0, 0, 6390, 6391, 5, 2, 0, 0, 6391, 6408, 3, 608, 304, 0, 6392, 6393, 5, 110, 0, 0, 6393, 6394, 5, 118, 0, 0, 6394, 6409, 3, 608, 304, 0, 6395, 6397, 5, 121, 0, 0, 6396, 6398, 3, 614, 307, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6409, 3, 608, 304, 0, 6401, 6403, 3, 614, 307, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 5, 118, 0, 0, 6405, 6406, 3, 608, 304, 0, 6406, 6407, 3, 616, 308, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6392, 1, 0, 0, 0, 6408, 6395, 1, 0, 0, 0, 6408, 6402, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 5, 3, 0, 0, 6411, 6413, 3, 610, 305, 0, 6412, 6411, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6415, 1, 0, 0, 0, 6414, 6365, 1, 0, 0, 0, 6414, 6374, 1, 0, 0, 0, 6414, 6390, 1, 0, 0, 0, 6415, 6434, 1, 0, 0, 0, 6416, 6417, 5, 110, 0, 0, 6417, 6418, 5, 118, 0, 0, 6418, 6433, 3, 608, 304, 0, 6419, 6421, 5, 121, 0, 0, 6420, 6422, 3, 614, 307, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6433, 3, 608, 304, 0, 6425, 6427, 3, 614, 307, 0, 6426, 6425, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 5, 118, 0, 0, 6429, 6430, 3, 608, 304, 0, 6430, 6431, 3, 616, 308, 0, 6431, 6433, 1, 0, 0, 0, 6432, 6416, 1, 0, 0, 0, 6432, 6419, 1, 0, 0, 0, 6432, 6426, 1, 0, 0, 0, 6433, 6436, 1, 0, 0, 0, 6434, 6432, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 609, 1, 0, 0, 0, 6436, 6434, 1, 0, 0, 0, 6437, 6439, 5, 36, 0, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6445, 3, 816, 408, 0, 6441, 6442, 5, 2, 0, 0, 6442, 6443, 3, 780, 390, 0, 6443, 6444, 5, 3, 0, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6441, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 611, 1, 0, 0, 0, 6447, 6460, 3, 610, 305, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6451, 3, 816, 408, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6454, 1, 0, 0, 0, 6452, 6454, 3, 816, 408, 0, 6453, 6448, 1, 0, 0, 0, 6453, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 6456, 5, 2, 0, 0, 6456, 6457, 3, 636, 318, 0, 6457, 6458, 5, 3, 0, 0, 6458, 6460, 1, 0, 0, 0, 6459, 6447, 1, 0, 0, 0, 6459, 6453, 1, 0, 0, 0, 6460, 613, 1, 0, 0, 0, 6461, 6463, 7, 87, 0, 0, 6462, 6464, 5, 123, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 615, 1, 0, 0, 0, 6465, 6466, 5, 100, 0, 0, 6466, 6470, 3, 138, 69, 0, 6467, 6468, 5, 80, 0, 0, 6468, 6470, 3, 668, 334, 0, 6469, 6465, 1, 0, 0, 0, 6469, 6467, 1, 0, 0, 0, 6470, 617, 1, 0, 0, 0, 6471, 6487, 3, 316, 158, 0, 6472, 6478, 5, 81, 0, 0, 6473, 6479, 3, 770, 385, 0, 6474, 6475, 5, 2, 0, 0, 6475, 6476, 3, 770, 385, 0, 6476, 6477, 5, 3, 0, 0, 6477, 6479, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6479, 6487, 1, 0, 0, 0, 6480, 6481, 5, 68, 0, 0, 6481, 6484, 5, 323, 0, 0, 6482, 6485, 3, 786, 393, 0, 6483, 6485, 5, 111, 0, 0, 6484, 6482, 1, 0, 0, 0, 6484, 6483, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6471, 1, 0, 0, 0, 6486, 6472, 1, 0, 0, 0, 6486, 6480, 1, 0, 0, 0, 6487, 619, 1, 0, 0, 0, 6488, 6489, 5, 92, 0, 0, 6489, 6491, 3, 316, 158, 0, 6490, 6492, 3, 138, 69, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6495, 3, 632, 316, 0, 6494, 6493, 1, 0, 0, 0, 6494, 6495, 1, 0, 0, 0, 6495, 6513, 1, 0, 0, 0, 6496, 6497, 5, 92, 0, 0, 6497, 6503, 5, 81, 0, 0, 6498, 6504, 3, 770, 385, 0, 6499, 6500, 5, 2, 0, 0, 6500, 6501, 3, 770, 385, 0, 6501, 6502, 5, 3, 0, 0, 6502, 6504, 1, 0, 0, 0, 6503, 6498, 1, 0, 0, 0, 6503, 6499, 1, 0, 0, 0, 6504, 6513, 1, 0, 0, 0, 6505, 6506, 5, 350, 0, 0, 6506, 6507, 5, 68, 0, 0, 6507, 6510, 5, 323, 0, 0, 6508, 6511, 3, 786, 393, 0, 6509, 6511, 5, 111, 0, 0, 6510, 6508, 1, 0, 0, 0, 6510, 6509, 1, 0, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6488, 1, 0, 0, 0, 6512, 6496, 1, 0, 0, 0, 6512, 6505, 1, 0, 0, 0, 6513, 621, 1, 0, 0, 0, 6514, 6519, 3, 618, 309, 0, 6515, 6516, 5, 6, 0, 0, 6516, 6518, 3, 618, 309, 0, 6517, 6515, 1, 0, 0, 0, 6518, 6521, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6520, 1, 0, 0, 0, 6520, 623, 1, 0, 0, 0, 6521, 6519, 1, 0, 0, 0, 6522, 6527, 3, 618, 309, 0, 6523, 6525, 5, 36, 0, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6528, 3, 816, 408, 0, 6527, 6524, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 625, 1, 0, 0, 0, 6529, 6530, 5, 472, 0, 0, 6530, 6531, 3, 804, 402, 0, 6531, 6537, 3, 528, 264, 0, 6532, 6533, 5, 310, 0, 0, 6533, 6534, 5, 2, 0, 0, 6534, 6535, 3, 668, 334, 0, 6535, 6536, 5, 3, 0, 0, 6536, 6538, 1, 0, 0, 0, 6537, 6532, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 627, 1, 0, 0, 0, 6539, 6554, 3, 682, 341, 0, 6540, 6541, 5, 320, 0, 0, 6541, 6542, 5, 64, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6548, 3, 630, 315, 0, 6544, 6545, 5, 6, 0, 0, 6545, 6547, 3, 630, 315, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6550, 1, 0, 0, 0, 6548, 6546, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6552, 5, 3, 0, 0, 6552, 6554, 1, 0, 0, 0, 6553, 6539, 1, 0, 0, 0, 6553, 6540, 1, 0, 0, 0, 6554, 6557, 1, 0, 0, 0, 6555, 6556, 5, 105, 0, 0, 6556, 6558, 5, 473, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 629, 1, 0, 0, 0, 6559, 6565, 3, 682, 341, 0, 6560, 6561, 5, 36, 0, 0, 6561, 6562, 5, 2, 0, 0, 6562, 6563, 3, 636, 318, 0, 6563, 6564, 5, 3, 0, 0, 6564, 6566, 1, 0, 0, 0, 6565, 6560, 1, 0, 0, 0, 6565, 6566, 1, 0, 0, 0, 6566, 631, 1, 0, 0, 0, 6567, 6568, 5, 103, 0, 0, 6568, 6569, 3, 730, 365, 0, 6569, 633, 1, 0, 0, 0, 6570, 6575, 5, 103, 0, 0, 6571, 6572, 5, 434, 0, 0, 6572, 6573, 5, 275, 0, 0, 6573, 6576, 3, 816, 408, 0, 6574, 6576, 3, 668, 334, 0, 6575, 6571, 1, 0, 0, 0, 6575, 6574, 1, 0, 0, 0, 6576, 635, 1, 0, 0, 0, 6577, 6582, 3, 638, 319, 0, 6578, 6579, 5, 6, 0, 0, 6579, 6581, 3, 638, 319, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6584, 1, 0, 0, 0, 6582, 6580, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 637, 1, 0, 0, 0, 6584, 6582, 1, 0, 0, 0, 6585, 6586, 3, 816, 408, 0, 6586, 6588, 3, 646, 323, 0, 6587, 6589, 3, 90, 45, 0, 6588, 6587, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 639, 1, 0, 0, 0, 6590, 6591, 5, 474, 0, 0, 6591, 6605, 5, 2, 0, 0, 6592, 6593, 5, 476, 0, 0, 6593, 6594, 5, 2, 0, 0, 6594, 6599, 3, 644, 322, 0, 6595, 6596, 5, 6, 0, 0, 6596, 6598, 3, 644, 322, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6601, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6599, 1, 0, 0, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 6, 0, 0, 6604, 6606, 1, 0, 0, 0, 6605, 6592, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6608, 3, 676, 338, 0, 6608, 6609, 3, 692, 346, 0, 6609, 6610, 5, 475, 0, 0, 6610, 6615, 3, 642, 321, 0, 6611, 6612, 5, 6, 0, 0, 6612, 6614, 3, 642, 321, 0, 6613, 6611, 1, 0, 0, 0, 6614, 6617, 1, 0, 0, 0, 6615, 6613, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6618, 1, 0, 0, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6619, 5, 3, 0, 0, 6619, 641, 1, 0, 0, 0, 6620, 6639, 3, 816, 408, 0, 6621, 6635, 3, 646, 323, 0, 6622, 6625, 5, 53, 0, 0, 6623, 6625, 3, 824, 412, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6623, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6632, 3, 668, 334, 0, 6627, 6629, 5, 77, 0, 0, 6628, 6627, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 5, 78, 0, 0, 6631, 6624, 1, 0, 0, 0, 6631, 6628, 1, 0, 0, 0, 6632, 6633, 1, 0, 0, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 6636, 1, 0, 0, 0, 6635, 6631, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6640, 1, 0, 0, 0, 6637, 6638, 5, 62, 0, 0, 6638, 6640, 5, 473, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6637, 1, 0, 0, 0, 6640, 643, 1, 0, 0, 0, 6641, 6642, 3, 676, 338, 0, 6642, 6643, 5, 36, 0, 0, 6643, 6644, 3, 822, 411, 0, 6644, 6648, 1, 0, 0, 0, 6645, 6646, 5, 53, 0, 0, 6646, 6648, 3, 676, 338, 0, 6647, 6641, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 645, 1, 0, 0, 0, 6649, 6651, 5, 415, 0, 0, 6650, 6649, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6669, 3, 648, 324, 0, 6653, 6655, 5, 4, 0, 0, 6654, 6656, 5, 574, 0, 0, 6655, 6654, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6659, 5, 5, 0, 0, 6658, 6653, 1, 0, 0, 0, 6659, 6662, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6670, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6663, 6667, 5, 35, 0, 0, 6664, 6665, 5, 4, 0, 0, 6665, 6666, 5, 574, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6664, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 1, 0, 0, 0, 6669, 6660, 1, 0, 0, 0, 6669, 6663, 1, 0, 0, 0, 6670, 6676, 1, 0, 0, 0, 6671, 6672, 3, 776, 388, 0, 6672, 6673, 5, 27, 0, 0, 6673, 6674, 7, 88, 0, 0, 6674, 6676, 1, 0, 0, 0, 6675, 6650, 1, 0, 0, 0, 6675, 6671, 1, 0, 0, 0, 6676, 647, 1, 0, 0, 0, 6677, 6679, 3, 818, 409, 0, 6678, 6680, 3, 312, 156, 0, 6679, 6678, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6682, 1, 0, 0, 0, 6681, 6683, 3, 528, 264, 0, 6682, 6681, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6693, 1, 0, 0, 0, 6684, 6693, 3, 650, 325, 0, 6685, 6690, 5, 403, 0, 0, 6686, 6688, 3, 662, 331, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6691, 1, 0, 0, 0, 6689, 6691, 3, 654, 327, 0, 6690, 6687, 1, 0, 0, 0, 6690, 6689, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6677, 1, 0, 0, 0, 6692, 6684, 1, 0, 0, 0, 6692, 6685, 1, 0, 0, 0, 6693, 649, 1, 0, 0, 0, 6694, 6699, 3, 652, 326, 0, 6695, 6699, 3, 656, 328, 0, 6696, 6699, 3, 658, 329, 0, 6697, 6699, 3, 660, 330, 0, 6698, 6694, 1, 0, 0, 0, 6698, 6695, 1, 0, 0, 0, 6698, 6696, 1, 0, 0, 0, 6698, 6697, 1, 0, 0, 0, 6699, 651, 1, 0, 0, 0, 6700, 6717, 5, 401, 0, 0, 6701, 6717, 5, 402, 0, 0, 6702, 6717, 5, 416, 0, 0, 6703, 6717, 5, 388, 0, 0, 6704, 6717, 5, 413, 0, 0, 6705, 6707, 5, 398, 0, 0, 6706, 6708, 3, 654, 327, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6717, 1, 0, 0, 0, 6709, 6710, 5, 190, 0, 0, 6710, 6717, 5, 412, 0, 0, 6711, 6713, 7, 89, 0, 0, 6712, 6714, 3, 528, 264, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6717, 1, 0, 0, 0, 6715, 6717, 5, 390, 0, 0, 6716, 6700, 1, 0, 0, 0, 6716, 6701, 1, 0, 0, 0, 6716, 6702, 1, 0, 0, 0, 6716, 6703, 1, 0, 0, 0, 6716, 6704, 1, 0, 0, 0, 6716, 6705, 1, 0, 0, 0, 6716, 6709, 1, 0, 0, 0, 6716, 6711, 1, 0, 0, 0, 6716, 6715, 1, 0, 0, 0, 6717, 653, 1, 0, 0, 0, 6718, 6719, 5, 2, 0, 0, 6719, 6720, 5, 574, 0, 0, 6720, 6721, 5, 3, 0, 0, 6721, 655, 1, 0, 0, 0, 6722, 6724, 5, 389, 0, 0, 6723, 6725, 5, 374, 0, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6727, 1, 0, 0, 0, 6726, 6728, 3, 528, 264, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 657, 1, 0, 0, 0, 6729, 6731, 7, 90, 0, 0, 6730, 6732, 5, 374, 0, 0, 6731, 6730, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6740, 1, 0, 0, 0, 6733, 6740, 5, 423, 0, 0, 6734, 6735, 5, 405, 0, 0, 6735, 6737, 7, 91, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6729, 1, 0, 0, 0, 6739, 6733, 1, 0, 0, 0, 6739, 6734, 1, 0, 0, 0, 6740, 6742, 1, 0, 0, 0, 6741, 6743, 3, 654, 327, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 659, 1, 0, 0, 0, 6744, 6746, 7, 92, 0, 0, 6745, 6747, 3, 654, 327, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6751, 1, 0, 0, 0, 6748, 6749, 7, 27, 0, 0, 6749, 6750, 5, 418, 0, 0, 6750, 6752, 5, 386, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6783, 5, 264, 0, 0, 6754, 6783, 3, 664, 332, 0, 6755, 6758, 5, 384, 0, 0, 6756, 6757, 5, 94, 0, 0, 6757, 6759, 5, 264, 0, 0, 6758, 6756, 1, 0, 0, 0, 6758, 6759, 1, 0, 0, 0, 6759, 6783, 1, 0, 0, 0, 6760, 6767, 5, 176, 0, 0, 6761, 6765, 5, 94, 0, 0, 6762, 6766, 5, 218, 0, 0, 6763, 6766, 5, 261, 0, 0, 6764, 6766, 3, 664, 332, 0, 6765, 6762, 1, 0, 0, 0, 6765, 6763, 1, 0, 0, 0, 6765, 6764, 1, 0, 0, 0, 6766, 6768, 1, 0, 0, 0, 6767, 6761, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6783, 1, 0, 0, 0, 6769, 6775, 5, 218, 0, 0, 6770, 6773, 5, 94, 0, 0, 6771, 6774, 5, 261, 0, 0, 6772, 6774, 3, 664, 332, 0, 6773, 6771, 1, 0, 0, 0, 6773, 6772, 1, 0, 0, 0, 6774, 6776, 1, 0, 0, 0, 6775, 6770, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6783, 1, 0, 0, 0, 6777, 6780, 5, 261, 0, 0, 6778, 6779, 5, 94, 0, 0, 6779, 6781, 3, 664, 332, 0, 6780, 6778, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6783, 1, 0, 0, 0, 6782, 6753, 1, 0, 0, 0, 6782, 6754, 1, 0, 0, 0, 6782, 6755, 1, 0, 0, 0, 6782, 6760, 1, 0, 0, 0, 6782, 6769, 1, 0, 0, 0, 6782, 6777, 1, 0, 0, 0, 6783, 663, 1, 0, 0, 0, 6784, 6786, 5, 326, 0, 0, 6785, 6787, 3, 654, 327, 0, 6786, 6785, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 665, 1, 0, 0, 0, 6788, 6789, 7, 93, 0, 0, 6789, 667, 1, 0, 0, 0, 6790, 6791, 3, 670, 335, 0, 6791, 669, 1, 0, 0, 0, 6792, 6793, 6, 335, -1, 0, 6793, 6795, 3, 674, 337, 0, 6794, 6796, 3, 672, 336, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6800, 1, 0, 0, 0, 6797, 6798, 5, 77, 0, 0, 6798, 6800, 3, 670, 335, 3, 6799, 6792, 1, 0, 0, 0, 6799, 6797, 1, 0, 0, 0, 6800, 6809, 1, 0, 0, 0, 6801, 6802, 10, 2, 0, 0, 6802, 6803, 5, 33, 0, 0, 6803, 6808, 3, 670, 335, 3, 6804, 6805, 10, 1, 0, 0, 6805, 6806, 5, 82, 0, 0, 6806, 6808, 3, 670, 335, 2, 6807, 6801, 1, 0, 0, 0, 6807, 6804, 1, 0, 0, 0, 6808, 6811, 1, 0, 0, 0, 6809, 6807, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 671, 1, 0, 0, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6813, 3, 666, 333, 0, 6813, 6814, 3, 674, 337, 0, 6814, 6884, 1, 0, 0, 0, 6815, 6816, 3, 666, 333, 0, 6816, 6817, 3, 724, 362, 0, 6817, 6823, 3, 714, 357, 0, 6818, 6824, 3, 556, 278, 0, 6819, 6820, 5, 2, 0, 0, 6820, 6821, 3, 668, 334, 0, 6821, 6822, 5, 3, 0, 0, 6822, 6824, 1, 0, 0, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6819, 1, 0, 0, 0, 6824, 6884, 1, 0, 0, 0, 6825, 6827, 5, 77, 0, 0, 6826, 6825, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 5, 387, 0, 0, 6829, 6830, 3, 674, 337, 0, 6830, 6831, 5, 33, 0, 0, 6831, 6832, 3, 674, 337, 0, 6832, 6884, 1, 0, 0, 0, 6833, 6835, 5, 77, 0, 0, 6834, 6833, 1, 0, 0, 0, 6834, 6835, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 5, 68, 0, 0, 6837, 6838, 5, 2, 0, 0, 6838, 6843, 3, 668, 334, 0, 6839, 6840, 5, 6, 0, 0, 6840, 6842, 3, 668, 334, 0, 6841, 6839, 1, 0, 0, 0, 6842, 6845, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6846, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6846, 6847, 5, 3, 0, 0, 6847, 6884, 1, 0, 0, 0, 6848, 6850, 5, 77, 0, 0, 6849, 6848, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6852, 5, 68, 0, 0, 6852, 6884, 3, 556, 278, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6864, 1, 0, 0, 0, 6856, 6865, 5, 120, 0, 0, 6857, 6865, 5, 114, 0, 0, 6858, 6859, 5, 127, 0, 0, 6859, 6865, 5, 94, 0, 0, 6860, 6862, 5, 387, 0, 0, 6861, 6863, 5, 91, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6865, 1, 0, 0, 0, 6864, 6856, 1, 0, 0, 0, 6864, 6857, 1, 0, 0, 0, 6864, 6858, 1, 0, 0, 0, 6864, 6860, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6869, 3, 674, 337, 0, 6867, 6868, 5, 197, 0, 0, 6868, 6870, 3, 674, 337, 0, 6869, 6867, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6884, 1, 0, 0, 0, 6871, 6873, 5, 116, 0, 0, 6872, 6874, 5, 77, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 5, 78, 0, 0, 6876, 6878, 5, 116, 0, 0, 6877, 6879, 5, 77, 0, 0, 6878, 6877, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 6881, 5, 56, 0, 0, 6881, 6882, 5, 64, 0, 0, 6882, 6884, 3, 674, 337, 0, 6883, 6812, 1, 0, 0, 0, 6883, 6815, 1, 0, 0, 0, 6883, 6826, 1, 0, 0, 0, 6883, 6834, 1, 0, 0, 0, 6883, 6849, 1, 0, 0, 0, 6883, 6854, 1, 0, 0, 0, 6883, 6871, 1, 0, 0, 0, 6883, 6876, 1, 0, 0, 0, 6884, 673, 1, 0, 0, 0, 6885, 6886, 6, 337, -1, 0, 6886, 6890, 3, 676, 338, 0, 6887, 6888, 7, 30, 0, 0, 6888, 6890, 3, 674, 337, 4, 6889, 6885, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6907, 1, 0, 0, 0, 6891, 6892, 10, 3, 0, 0, 6892, 6893, 7, 94, 0, 0, 6893, 6906, 3, 674, 337, 4, 6894, 6895, 10, 2, 0, 0, 6895, 6896, 7, 30, 0, 0, 6896, 6906, 3, 674, 337, 3, 6897, 6898, 10, 1, 0, 0, 6898, 6899, 5, 15, 0, 0, 6899, 6906, 3, 674, 337, 2, 6900, 6901, 10, 5, 0, 0, 6901, 6902, 5, 142, 0, 0, 6902, 6903, 5, 418, 0, 0, 6903, 6904, 5, 386, 0, 0, 6904, 6906, 3, 668, 334, 0, 6905, 6891, 1, 0, 0, 0, 6905, 6894, 1, 0, 0, 0, 6905, 6897, 1, 0, 0, 0, 6905, 6900, 1, 0, 0, 0, 6906, 6909, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 675, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6911, 6, 338, -1, 0, 6911, 6912, 7, 95, 0, 0, 6912, 7000, 3, 556, 278, 0, 6913, 6916, 5, 35, 0, 0, 6914, 6917, 3, 556, 278, 0, 6915, 6917, 3, 736, 368, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 7000, 1, 0, 0, 0, 6918, 6919, 5, 28, 0, 0, 6919, 7000, 3, 750, 375, 0, 6920, 6921, 5, 470, 0, 0, 6921, 7000, 3, 528, 264, 0, 6922, 7000, 5, 574, 0, 0, 6923, 7000, 5, 576, 0, 0, 6924, 7000, 5, 566, 0, 0, 6925, 7000, 5, 570, 0, 0, 6926, 6936, 3, 804, 402, 0, 6927, 6937, 3, 806, 403, 0, 6928, 6929, 5, 2, 0, 0, 6929, 6931, 3, 732, 366, 0, 6930, 6932, 3, 580, 290, 0, 6931, 6930, 1, 0, 0, 0, 6931, 6932, 1, 0, 0, 0, 6932, 6933, 1, 0, 0, 0, 6933, 6934, 5, 3, 0, 0, 6934, 6935, 3, 806, 403, 0, 6935, 6937, 1, 0, 0, 0, 6936, 6927, 1, 0, 0, 0, 6936, 6928, 1, 0, 0, 0, 6937, 7000, 1, 0, 0, 0, 6938, 6940, 3, 650, 325, 0, 6939, 6938, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 7000, 3, 806, 403, 0, 6942, 6950, 5, 403, 0, 0, 6943, 6945, 3, 806, 403, 0, 6944, 6946, 3, 662, 331, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6951, 1, 0, 0, 0, 6947, 6948, 3, 654, 327, 0, 6948, 6949, 3, 806, 403, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6943, 1, 0, 0, 0, 6950, 6947, 1, 0, 0, 0, 6951, 7000, 1, 0, 0, 0, 6952, 7000, 5, 96, 0, 0, 6953, 7000, 5, 60, 0, 0, 6954, 7000, 5, 78, 0, 0, 6955, 7000, 5, 577, 0, 0, 6956, 6957, 5, 2, 0, 0, 6957, 6958, 3, 668, 334, 0, 6958, 6959, 5, 3, 0, 0, 6959, 6960, 3, 750, 375, 0, 6960, 7000, 1, 0, 0, 0, 6961, 6963, 5, 40, 0, 0, 6962, 6964, 3, 668, 334, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6967, 3, 744, 372, 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, 6972, 1, 0, 0, 0, 6970, 6971, 5, 58, 0, 0, 6971, 6973, 3, 668, 334, 0, 6972, 6970, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 6975, 5, 454, 0, 0, 6975, 7000, 1, 0, 0, 0, 6976, 7000, 3, 680, 340, 0, 6977, 6979, 3, 556, 278, 0, 6978, 6980, 3, 748, 374, 0, 6979, 6978, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 7000, 1, 0, 0, 0, 6981, 7000, 3, 712, 356, 0, 6982, 6983, 5, 2, 0, 0, 6983, 6984, 3, 668, 334, 0, 6984, 6985, 5, 6, 0, 0, 6985, 6986, 3, 726, 363, 0, 6986, 6987, 5, 3, 0, 0, 6987, 7000, 1, 0, 0, 0, 6988, 6989, 3, 710, 355, 0, 6989, 6990, 5, 125, 0, 0, 6990, 6991, 3, 710, 355, 0, 6991, 7000, 1, 0, 0, 0, 6992, 7000, 3, 798, 399, 0, 6993, 7000, 3, 776, 388, 0, 6994, 6995, 7, 30, 0, 0, 6995, 7000, 3, 676, 338, 5, 6996, 6997, 3, 720, 360, 0, 6997, 6998, 3, 676, 338, 2, 6998, 7000, 1, 0, 0, 0, 6999, 6910, 1, 0, 0, 0, 6999, 6913, 1, 0, 0, 0, 6999, 6918, 1, 0, 0, 0, 6999, 6920, 1, 0, 0, 0, 6999, 6922, 1, 0, 0, 0, 6999, 6923, 1, 0, 0, 0, 6999, 6924, 1, 0, 0, 0, 6999, 6925, 1, 0, 0, 0, 6999, 6926, 1, 0, 0, 0, 6999, 6939, 1, 0, 0, 0, 6999, 6942, 1, 0, 0, 0, 6999, 6952, 1, 0, 0, 0, 6999, 6953, 1, 0, 0, 0, 6999, 6954, 1, 0, 0, 0, 6999, 6955, 1, 0, 0, 0, 6999, 6956, 1, 0, 0, 0, 6999, 6961, 1, 0, 0, 0, 6999, 6976, 1, 0, 0, 0, 6999, 6977, 1, 0, 0, 0, 6999, 6981, 1, 0, 0, 0, 6999, 6982, 1, 0, 0, 0, 6999, 6988, 1, 0, 0, 0, 6999, 6992, 1, 0, 0, 0, 6999, 6993, 1, 0, 0, 0, 6999, 6994, 1, 0, 0, 0, 6999, 6996, 1, 0, 0, 0, 7000, 7028, 1, 0, 0, 0, 7001, 7002, 10, 3, 0, 0, 7002, 7003, 3, 718, 359, 0, 7003, 7004, 3, 676, 338, 4, 7004, 7027, 1, 0, 0, 0, 7005, 7006, 10, 6, 0, 0, 7006, 7007, 5, 26, 0, 0, 7007, 7027, 3, 646, 323, 0, 7008, 7009, 10, 4, 0, 0, 7009, 7011, 3, 720, 360, 0, 7010, 7012, 3, 676, 338, 0, 7011, 7010, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7027, 1, 0, 0, 0, 7013, 7014, 10, 1, 0, 0, 7014, 7016, 5, 116, 0, 0, 7015, 7017, 5, 77, 0, 0, 7016, 7015, 1, 0, 0, 0, 7016, 7017, 1, 0, 0, 0, 7017, 7024, 1, 0, 0, 0, 7018, 7019, 5, 56, 0, 0, 7019, 7020, 5, 64, 0, 0, 7020, 7025, 3, 676, 338, 0, 7021, 7022, 5, 275, 0, 0, 7022, 7025, 3, 522, 261, 0, 7023, 7025, 5, 188, 0, 0, 7024, 7018, 1, 0, 0, 0, 7024, 7021, 1, 0, 0, 0, 7024, 7023, 1, 0, 0, 0, 7025, 7027, 1, 0, 0, 0, 7026, 7001, 1, 0, 0, 0, 7026, 7005, 1, 0, 0, 0, 7026, 7008, 1, 0, 0, 0, 7026, 7013, 1, 0, 0, 0, 7027, 7030, 1, 0, 0, 0, 7028, 7026, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 677, 1, 0, 0, 0, 7030, 7028, 1, 0, 0, 0, 7031, 7032, 3, 804, 402, 0, 7032, 7053, 5, 2, 0, 0, 7033, 7037, 3, 732, 366, 0, 7034, 7035, 5, 6, 0, 0, 7035, 7036, 5, 101, 0, 0, 7036, 7038, 3, 734, 367, 0, 7037, 7034, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 7040, 1, 0, 0, 0, 7039, 7041, 3, 580, 290, 0, 7040, 7039, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 7054, 1, 0, 0, 0, 7042, 7043, 5, 101, 0, 0, 7043, 7045, 3, 734, 367, 0, 7044, 7046, 3, 580, 290, 0, 7045, 7044, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7054, 1, 0, 0, 0, 7047, 7048, 7, 81, 0, 0, 7048, 7050, 3, 732, 366, 0, 7049, 7051, 3, 580, 290, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7054, 1, 0, 0, 0, 7052, 7054, 5, 9, 0, 0, 7053, 7033, 1, 0, 0, 0, 7053, 7042, 1, 0, 0, 0, 7053, 7047, 1, 0, 0, 0, 7053, 7052, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7055, 1, 0, 0, 0, 7055, 7056, 5, 3, 0, 0, 7056, 679, 1, 0, 0, 0, 7057, 7064, 3, 678, 339, 0, 7058, 7059, 5, 479, 0, 0, 7059, 7060, 5, 66, 0, 0, 7060, 7061, 5, 2, 0, 0, 7061, 7062, 3, 580, 290, 0, 7062, 7063, 5, 3, 0, 0, 7063, 7065, 1, 0, 0, 0, 7064, 7058, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7072, 1, 0, 0, 0, 7066, 7067, 5, 480, 0, 0, 7067, 7068, 5, 2, 0, 0, 7068, 7069, 5, 103, 0, 0, 7069, 7070, 3, 668, 334, 0, 7070, 7071, 5, 3, 0, 0, 7071, 7073, 1, 0, 0, 0, 7072, 7066, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7079, 1, 0, 0, 0, 7074, 7077, 5, 124, 0, 0, 7075, 7078, 3, 704, 352, 0, 7076, 7078, 3, 816, 408, 0, 7077, 7075, 1, 0, 0, 0, 7077, 7076, 1, 0, 0, 0, 7078, 7080, 1, 0, 0, 0, 7079, 7074, 1, 0, 0, 0, 7079, 7080, 1, 0, 0, 0, 7080, 7083, 1, 0, 0, 0, 7081, 7083, 3, 684, 342, 0, 7082, 7057, 1, 0, 0, 0, 7082, 7081, 1, 0, 0, 0, 7083, 681, 1, 0, 0, 0, 7084, 7087, 3, 678, 339, 0, 7085, 7087, 3, 684, 342, 0, 7086, 7084, 1, 0, 0, 0, 7086, 7085, 1, 0, 0, 0, 7087, 683, 1, 0, 0, 0, 7088, 7089, 5, 108, 0, 0, 7089, 7090, 5, 62, 0, 0, 7090, 7091, 5, 2, 0, 0, 7091, 7092, 3, 668, 334, 0, 7092, 7093, 5, 3, 0, 0, 7093, 7263, 1, 0, 0, 0, 7094, 7263, 5, 48, 0, 0, 7095, 7097, 7, 96, 0, 0, 7096, 7098, 3, 654, 327, 0, 7097, 7096, 1, 0, 0, 0, 7097, 7098, 1, 0, 0, 0, 7098, 7263, 1, 0, 0, 0, 7099, 7263, 5, 49, 0, 0, 7100, 7263, 5, 52, 0, 0, 7101, 7263, 5, 89, 0, 0, 7102, 7263, 5, 99, 0, 0, 7103, 7263, 5, 47, 0, 0, 7104, 7263, 5, 111, 0, 0, 7105, 7106, 7, 97, 0, 0, 7106, 7107, 5, 2, 0, 0, 7107, 7108, 3, 668, 334, 0, 7108, 7109, 5, 36, 0, 0, 7109, 7110, 3, 646, 323, 0, 7110, 7111, 5, 3, 0, 0, 7111, 7263, 1, 0, 0, 0, 7112, 7113, 5, 397, 0, 0, 7113, 7118, 5, 2, 0, 0, 7114, 7115, 3, 738, 369, 0, 7115, 7116, 5, 64, 0, 0, 7116, 7117, 3, 668, 334, 0, 7117, 7119, 1, 0, 0, 0, 7118, 7114, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7120, 1, 0, 0, 0, 7120, 7263, 5, 3, 0, 0, 7121, 7122, 5, 489, 0, 0, 7122, 7123, 5, 2, 0, 0, 7123, 7126, 3, 668, 334, 0, 7124, 7125, 5, 6, 0, 0, 7125, 7127, 3, 740, 370, 0, 7126, 7124, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 1, 0, 0, 0, 7128, 7129, 5, 3, 0, 0, 7129, 7263, 1, 0, 0, 0, 7130, 7131, 5, 410, 0, 0, 7131, 7132, 5, 2, 0, 0, 7132, 7133, 3, 668, 334, 0, 7133, 7134, 5, 84, 0, 0, 7134, 7135, 3, 668, 334, 0, 7135, 7136, 5, 64, 0, 0, 7136, 7139, 3, 668, 334, 0, 7137, 7138, 5, 62, 0, 0, 7138, 7140, 3, 668, 334, 0, 7139, 7137, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7142, 5, 3, 0, 0, 7142, 7263, 1, 0, 0, 0, 7143, 7144, 5, 411, 0, 0, 7144, 7149, 5, 2, 0, 0, 7145, 7146, 3, 676, 338, 0, 7146, 7147, 5, 68, 0, 0, 7147, 7148, 3, 676, 338, 0, 7148, 7150, 1, 0, 0, 0, 7149, 7145, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7263, 5, 3, 0, 0, 7152, 7153, 5, 417, 0, 0, 7153, 7155, 5, 2, 0, 0, 7154, 7156, 3, 742, 371, 0, 7155, 7154, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7263, 5, 3, 0, 0, 7158, 7159, 5, 421, 0, 0, 7159, 7161, 5, 2, 0, 0, 7160, 7162, 7, 98, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7167, 1, 0, 0, 0, 7163, 7165, 3, 668, 334, 0, 7164, 7163, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7168, 5, 64, 0, 0, 7167, 7164, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7170, 3, 726, 363, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7172, 5, 3, 0, 0, 7172, 7263, 1, 0, 0, 0, 7173, 7174, 5, 408, 0, 0, 7174, 7175, 5, 2, 0, 0, 7175, 7176, 3, 668, 334, 0, 7176, 7177, 5, 6, 0, 0, 7177, 7178, 3, 668, 334, 0, 7178, 7179, 5, 3, 0, 0, 7179, 7263, 1, 0, 0, 0, 7180, 7181, 7, 99, 0, 0, 7181, 7263, 3, 528, 264, 0, 7182, 7183, 5, 426, 0, 0, 7183, 7184, 5, 2, 0, 0, 7184, 7185, 5, 266, 0, 0, 7185, 7195, 3, 822, 411, 0, 7186, 7193, 5, 6, 0, 0, 7187, 7188, 5, 424, 0, 0, 7188, 7189, 5, 2, 0, 0, 7189, 7190, 3, 686, 343, 0, 7190, 7191, 5, 3, 0, 0, 7191, 7194, 1, 0, 0, 0, 7192, 7194, 3, 726, 363, 0, 7193, 7187, 1, 0, 0, 0, 7193, 7192, 1, 0, 0, 0, 7194, 7196, 1, 0, 0, 0, 7195, 7186, 1, 0, 0, 0, 7195, 7196, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7198, 5, 3, 0, 0, 7198, 7263, 1, 0, 0, 0, 7199, 7200, 5, 427, 0, 0, 7200, 7201, 5, 2, 0, 0, 7201, 7202, 3, 676, 338, 0, 7202, 7203, 3, 692, 346, 0, 7203, 7204, 5, 3, 0, 0, 7204, 7263, 1, 0, 0, 0, 7205, 7206, 5, 428, 0, 0, 7206, 7207, 5, 2, 0, 0, 7207, 7208, 3, 686, 343, 0, 7208, 7209, 5, 3, 0, 0, 7209, 7263, 1, 0, 0, 0, 7210, 7211, 5, 429, 0, 0, 7211, 7212, 5, 2, 0, 0, 7212, 7213, 3, 690, 345, 0, 7213, 7216, 3, 668, 334, 0, 7214, 7215, 7, 100, 0, 0, 7215, 7217, 5, 378, 0, 0, 7216, 7214, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7263, 1, 0, 0, 0, 7220, 7221, 5, 430, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 5, 266, 0, 0, 7223, 7226, 3, 822, 411, 0, 7224, 7225, 5, 6, 0, 0, 7225, 7227, 3, 668, 334, 0, 7226, 7224, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7229, 5, 3, 0, 0, 7229, 7263, 1, 0, 0, 0, 7230, 7231, 5, 431, 0, 0, 7231, 7232, 5, 2, 0, 0, 7232, 7233, 5, 383, 0, 0, 7233, 7234, 3, 668, 334, 0, 7234, 7235, 5, 6, 0, 0, 7235, 7239, 5, 375, 0, 0, 7236, 7237, 5, 269, 0, 0, 7237, 7240, 5, 450, 0, 0, 7238, 7240, 3, 668, 334, 0, 7239, 7236, 1, 0, 0, 0, 7239, 7238, 1, 0, 0, 0, 7240, 7250, 1, 0, 0, 0, 7241, 7242, 5, 6, 0, 0, 7242, 7248, 5, 339, 0, 0, 7243, 7245, 5, 269, 0, 0, 7244, 7243, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7249, 5, 450, 0, 0, 7247, 7249, 5, 385, 0, 0, 7248, 7244, 1, 0, 0, 0, 7248, 7247, 1, 0, 0, 0, 7249, 7251, 1, 0, 0, 0, 7250, 7241, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7252, 1, 0, 0, 0, 7252, 7253, 5, 3, 0, 0, 7253, 7263, 1, 0, 0, 0, 7254, 7255, 5, 432, 0, 0, 7255, 7256, 5, 2, 0, 0, 7256, 7257, 3, 690, 345, 0, 7257, 7258, 3, 668, 334, 0, 7258, 7259, 5, 36, 0, 0, 7259, 7260, 3, 648, 324, 0, 7260, 7261, 5, 3, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7088, 1, 0, 0, 0, 7262, 7094, 1, 0, 0, 0, 7262, 7095, 1, 0, 0, 0, 7262, 7099, 1, 0, 0, 0, 7262, 7100, 1, 0, 0, 0, 7262, 7101, 1, 0, 0, 0, 7262, 7102, 1, 0, 0, 0, 7262, 7103, 1, 0, 0, 0, 7262, 7104, 1, 0, 0, 0, 7262, 7105, 1, 0, 0, 0, 7262, 7112, 1, 0, 0, 0, 7262, 7121, 1, 0, 0, 0, 7262, 7130, 1, 0, 0, 0, 7262, 7143, 1, 0, 0, 0, 7262, 7152, 1, 0, 0, 0, 7262, 7158, 1, 0, 0, 0, 7262, 7173, 1, 0, 0, 0, 7262, 7180, 1, 0, 0, 0, 7262, 7182, 1, 0, 0, 0, 7262, 7199, 1, 0, 0, 0, 7262, 7205, 1, 0, 0, 0, 7262, 7210, 1, 0, 0, 0, 7262, 7220, 1, 0, 0, 0, 7262, 7230, 1, 0, 0, 0, 7262, 7254, 1, 0, 0, 0, 7263, 685, 1, 0, 0, 0, 7264, 7269, 3, 688, 344, 0, 7265, 7266, 5, 6, 0, 0, 7266, 7268, 3, 688, 344, 0, 7267, 7265, 1, 0, 0, 0, 7268, 7271, 1, 0, 0, 0, 7269, 7267, 1, 0, 0, 0, 7269, 7270, 1, 0, 0, 0, 7270, 687, 1, 0, 0, 0, 7271, 7269, 1, 0, 0, 0, 7272, 7275, 3, 668, 334, 0, 7273, 7274, 5, 36, 0, 0, 7274, 7276, 3, 822, 411, 0, 7275, 7273, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 689, 1, 0, 0, 0, 7277, 7278, 7, 101, 0, 0, 7278, 691, 1, 0, 0, 0, 7279, 7281, 5, 286, 0, 0, 7280, 7282, 3, 694, 347, 0, 7281, 7280, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7283, 1, 0, 0, 0, 7283, 7285, 3, 676, 338, 0, 7284, 7286, 3, 694, 347, 0, 7285, 7284, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 693, 1, 0, 0, 0, 7287, 7288, 5, 147, 0, 0, 7288, 7289, 7, 102, 0, 0, 7289, 695, 1, 0, 0, 0, 7290, 7291, 5, 104, 0, 0, 7291, 7296, 3, 700, 350, 0, 7292, 7293, 5, 6, 0, 0, 7293, 7295, 3, 700, 350, 0, 7294, 7292, 1, 0, 0, 0, 7295, 7298, 1, 0, 0, 0, 7296, 7294, 1, 0, 0, 0, 7296, 7297, 1, 0, 0, 0, 7297, 697, 1, 0, 0, 0, 7298, 7296, 1, 0, 0, 0, 7299, 7300, 5, 67, 0, 0, 7300, 7301, 3, 668, 334, 0, 7301, 699, 1, 0, 0, 0, 7302, 7303, 3, 816, 408, 0, 7303, 7304, 5, 36, 0, 0, 7304, 7305, 3, 704, 352, 0, 7305, 701, 1, 0, 0, 0, 7306, 7309, 5, 124, 0, 0, 7307, 7310, 3, 704, 352, 0, 7308, 7310, 3, 816, 408, 0, 7309, 7307, 1, 0, 0, 0, 7309, 7308, 1, 0, 0, 0, 7310, 703, 1, 0, 0, 0, 7311, 7313, 5, 2, 0, 0, 7312, 7314, 3, 816, 408, 0, 7313, 7312, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 7318, 1, 0, 0, 0, 7315, 7316, 5, 285, 0, 0, 7316, 7317, 5, 147, 0, 0, 7317, 7319, 3, 726, 363, 0, 7318, 7315, 1, 0, 0, 0, 7318, 7319, 1, 0, 0, 0, 7319, 7321, 1, 0, 0, 0, 7320, 7322, 3, 580, 290, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7324, 1, 0, 0, 0, 7323, 7325, 3, 706, 353, 0, 7324, 7323, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7327, 5, 3, 0, 0, 7327, 705, 1, 0, 0, 0, 7328, 7333, 7, 103, 0, 0, 7329, 7330, 5, 387, 0, 0, 7330, 7331, 3, 708, 354, 0, 7331, 7332, 5, 33, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7329, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7336, 3, 708, 354, 0, 7336, 7346, 1, 0, 0, 0, 7337, 7344, 5, 199, 0, 0, 7338, 7339, 5, 434, 0, 0, 7339, 7345, 5, 414, 0, 0, 7340, 7345, 5, 66, 0, 0, 7341, 7345, 5, 467, 0, 0, 7342, 7343, 5, 269, 0, 0, 7343, 7345, 5, 482, 0, 0, 7344, 7338, 1, 0, 0, 0, 7344, 7340, 1, 0, 0, 0, 7344, 7341, 1, 0, 0, 0, 7344, 7342, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7337, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 707, 1, 0, 0, 0, 7348, 7351, 5, 362, 0, 0, 7349, 7351, 3, 668, 334, 0, 7350, 7348, 1, 0, 0, 0, 7350, 7349, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7356, 7, 104, 0, 0, 7353, 7354, 5, 434, 0, 0, 7354, 7356, 5, 414, 0, 0, 7355, 7350, 1, 0, 0, 0, 7355, 7353, 1, 0, 0, 0, 7356, 709, 1, 0, 0, 0, 7357, 7365, 3, 712, 356, 0, 7358, 7359, 5, 2, 0, 0, 7359, 7360, 3, 726, 363, 0, 7360, 7361, 5, 6, 0, 0, 7361, 7362, 3, 668, 334, 0, 7362, 7363, 5, 3, 0, 0, 7363, 7365, 1, 0, 0, 0, 7364, 7357, 1, 0, 0, 0, 7364, 7358, 1, 0, 0, 0, 7365, 711, 1, 0, 0, 0, 7366, 7367, 5, 414, 0, 0, 7367, 7369, 5, 2, 0, 0, 7368, 7370, 3, 726, 363, 0, 7369, 7368, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 1, 0, 0, 0, 7371, 7372, 5, 3, 0, 0, 7372, 713, 1, 0, 0, 0, 7373, 7374, 7, 105, 0, 0, 7374, 715, 1, 0, 0, 0, 7375, 7378, 5, 29, 0, 0, 7376, 7378, 3, 718, 359, 0, 7377, 7375, 1, 0, 0, 0, 7377, 7376, 1, 0, 0, 0, 7378, 717, 1, 0, 0, 0, 7379, 7380, 7, 106, 0, 0, 7380, 719, 1, 0, 0, 0, 7381, 7388, 5, 29, 0, 0, 7382, 7383, 5, 278, 0, 0, 7383, 7384, 5, 2, 0, 0, 7384, 7385, 3, 408, 204, 0, 7385, 7386, 5, 3, 0, 0, 7386, 7388, 1, 0, 0, 0, 7387, 7381, 1, 0, 0, 0, 7387, 7382, 1, 0, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7396, 3, 716, 358, 0, 7390, 7391, 5, 278, 0, 0, 7391, 7392, 5, 2, 0, 0, 7392, 7393, 3, 408, 204, 0, 7393, 7394, 5, 3, 0, 0, 7394, 7396, 1, 0, 0, 0, 7395, 7389, 1, 0, 0, 0, 7395, 7390, 1, 0, 0, 0, 7396, 723, 1, 0, 0, 0, 7397, 7403, 3, 722, 361, 0, 7398, 7400, 5, 77, 0, 0, 7399, 7398, 1, 0, 0, 0, 7399, 7400, 1, 0, 0, 0, 7400, 7401, 1, 0, 0, 0, 7401, 7403, 7, 107, 0, 0, 7402, 7397, 1, 0, 0, 0, 7402, 7399, 1, 0, 0, 0, 7403, 725, 1, 0, 0, 0, 7404, 7409, 3, 668, 334, 0, 7405, 7406, 5, 6, 0, 0, 7406, 7408, 3, 668, 334, 0, 7407, 7405, 1, 0, 0, 0, 7408, 7411, 1, 0, 0, 0, 7409, 7407, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 727, 1, 0, 0, 0, 7411, 7409, 1, 0, 0, 0, 7412, 7413, 5, 2, 0, 0, 7413, 7414, 3, 668, 334, 0, 7414, 7415, 5, 3, 0, 0, 7415, 7418, 1, 0, 0, 0, 7416, 7418, 3, 796, 398, 0, 7417, 7412, 1, 0, 0, 0, 7417, 7416, 1, 0, 0, 0, 7418, 729, 1, 0, 0, 0, 7419, 7422, 3, 668, 334, 0, 7420, 7422, 3, 796, 398, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7420, 1, 0, 0, 0, 7422, 731, 1, 0, 0, 0, 7423, 7428, 3, 734, 367, 0, 7424, 7425, 5, 6, 0, 0, 7425, 7427, 3, 734, 367, 0, 7426, 7424, 1, 0, 0, 0, 7427, 7430, 1, 0, 0, 0, 7428, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 733, 1, 0, 0, 0, 7430, 7428, 1, 0, 0, 0, 7431, 7439, 3, 796, 398, 0, 7432, 7439, 3, 668, 334, 0, 7433, 7436, 3, 818, 409, 0, 7434, 7435, 7, 108, 0, 0, 7435, 7437, 3, 668, 334, 0, 7436, 7434, 1, 0, 0, 0, 7436, 7437, 1, 0, 0, 0, 7437, 7439, 1, 0, 0, 0, 7438, 7431, 1, 0, 0, 0, 7438, 7432, 1, 0, 0, 0, 7438, 7433, 1, 0, 0, 0, 7439, 735, 1, 0, 0, 0, 7440, 7450, 5, 4, 0, 0, 7441, 7451, 3, 726, 363, 0, 7442, 7447, 3, 736, 368, 0, 7443, 7444, 5, 6, 0, 0, 7444, 7446, 3, 736, 368, 0, 7445, 7443, 1, 0, 0, 0, 7446, 7449, 1, 0, 0, 0, 7447, 7445, 1, 0, 0, 0, 7447, 7448, 1, 0, 0, 0, 7448, 7451, 1, 0, 0, 0, 7449, 7447, 1, 0, 0, 0, 7450, 7441, 1, 0, 0, 0, 7450, 7442, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7452, 1, 0, 0, 0, 7452, 7453, 5, 5, 0, 0, 7453, 737, 1, 0, 0, 0, 7454, 7463, 3, 824, 412, 0, 7455, 7463, 5, 384, 0, 0, 7456, 7463, 5, 264, 0, 0, 7457, 7463, 5, 176, 0, 0, 7458, 7463, 5, 218, 0, 0, 7459, 7463, 5, 261, 0, 0, 7460, 7463, 5, 326, 0, 0, 7461, 7463, 3, 806, 403, 0, 7462, 7454, 1, 0, 0, 0, 7462, 7455, 1, 0, 0, 0, 7462, 7456, 1, 0, 0, 0, 7462, 7457, 1, 0, 0, 0, 7462, 7458, 1, 0, 0, 0, 7462, 7459, 1, 0, 0, 0, 7462, 7460, 1, 0, 0, 0, 7462, 7461, 1, 0, 0, 0, 7463, 739, 1, 0, 0, 0, 7464, 7465, 7, 109, 0, 0, 7465, 741, 1, 0, 0, 0, 7466, 7467, 3, 668, 334, 0, 7467, 7468, 5, 64, 0, 0, 7468, 7471, 3, 668, 334, 0, 7469, 7470, 5, 62, 0, 0, 7470, 7472, 3, 668, 334, 0, 7471, 7469, 1, 0, 0, 0, 7471, 7472, 1, 0, 0, 0, 7472, 7488, 1, 0, 0, 0, 7473, 7474, 3, 668, 334, 0, 7474, 7475, 5, 62, 0, 0, 7475, 7478, 3, 668, 334, 0, 7476, 7477, 5, 64, 0, 0, 7477, 7479, 3, 668, 334, 0, 7478, 7476, 1, 0, 0, 0, 7478, 7479, 1, 0, 0, 0, 7479, 7488, 1, 0, 0, 0, 7480, 7481, 3, 668, 334, 0, 7481, 7482, 5, 127, 0, 0, 7482, 7483, 3, 668, 334, 0, 7483, 7484, 5, 197, 0, 0, 7484, 7485, 3, 668, 334, 0, 7485, 7488, 1, 0, 0, 0, 7486, 7488, 3, 726, 363, 0, 7487, 7466, 1, 0, 0, 0, 7487, 7473, 1, 0, 0, 0, 7487, 7480, 1, 0, 0, 0, 7487, 7486, 1, 0, 0, 0, 7488, 743, 1, 0, 0, 0, 7489, 7490, 5, 102, 0, 0, 7490, 7491, 3, 668, 334, 0, 7491, 7492, 5, 93, 0, 0, 7492, 7493, 3, 668, 334, 0, 7493, 745, 1, 0, 0, 0, 7494, 7497, 5, 11, 0, 0, 7495, 7498, 3, 822, 411, 0, 7496, 7498, 5, 9, 0, 0, 7497, 7495, 1, 0, 0, 0, 7497, 7496, 1, 0, 0, 0, 7498, 7512, 1, 0, 0, 0, 7499, 7508, 5, 4, 0, 0, 7500, 7509, 3, 668, 334, 0, 7501, 7503, 3, 668, 334, 0, 7502, 7501, 1, 0, 0, 0, 7502, 7503, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7506, 5, 8, 0, 0, 7505, 7507, 3, 668, 334, 0, 7506, 7505, 1, 0, 0, 0, 7506, 7507, 1, 0, 0, 0, 7507, 7509, 1, 0, 0, 0, 7508, 7500, 1, 0, 0, 0, 7508, 7502, 1, 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7512, 5, 5, 0, 0, 7511, 7494, 1, 0, 0, 0, 7511, 7499, 1, 0, 0, 0, 7512, 747, 1, 0, 0, 0, 7513, 7515, 3, 746, 373, 0, 7514, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7514, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 749, 1, 0, 0, 0, 7518, 7520, 3, 746, 373, 0, 7519, 7518, 1, 0, 0, 0, 7520, 7523, 1, 0, 0, 0, 7521, 7519, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 751, 1, 0, 0, 0, 7523, 7521, 1, 0, 0, 0, 7524, 7529, 3, 754, 377, 0, 7525, 7526, 5, 6, 0, 0, 7526, 7528, 3, 754, 377, 0, 7527, 7525, 1, 0, 0, 0, 7528, 7531, 1, 0, 0, 0, 7529, 7527, 1, 0, 0, 0, 7529, 7530, 1, 0, 0, 0, 7530, 753, 1, 0, 0, 0, 7531, 7529, 1, 0, 0, 0, 7532, 7537, 3, 730, 365, 0, 7533, 7534, 5, 36, 0, 0, 7534, 7538, 3, 822, 411, 0, 7535, 7538, 3, 824, 412, 0, 7536, 7538, 1, 0, 0, 0, 7537, 7533, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7537, 7536, 1, 0, 0, 0, 7538, 7541, 1, 0, 0, 0, 7539, 7541, 5, 9, 0, 0, 7540, 7532, 1, 0, 0, 0, 7540, 7539, 1, 0, 0, 0, 7541, 755, 1, 0, 0, 0, 7542, 7547, 3, 776, 388, 0, 7543, 7544, 5, 6, 0, 0, 7544, 7546, 3, 776, 388, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7549, 1, 0, 0, 0, 7547, 7545, 1, 0, 0, 0, 7547, 7548, 1, 0, 0, 0, 7548, 757, 1, 0, 0, 0, 7549, 7547, 1, 0, 0, 0, 7550, 7555, 3, 770, 385, 0, 7551, 7552, 5, 6, 0, 0, 7552, 7554, 3, 770, 385, 0, 7553, 7551, 1, 0, 0, 0, 7554, 7557, 1, 0, 0, 0, 7555, 7553, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 759, 1, 0, 0, 0, 7557, 7555, 1, 0, 0, 0, 7558, 7563, 3, 786, 393, 0, 7559, 7560, 5, 6, 0, 0, 7560, 7562, 3, 786, 393, 0, 7561, 7559, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 761, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7571, 3, 784, 392, 0, 7567, 7568, 5, 6, 0, 0, 7568, 7570, 3, 784, 392, 0, 7569, 7567, 1, 0, 0, 0, 7570, 7573, 1, 0, 0, 0, 7571, 7569, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 763, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7574, 7575, 3, 776, 388, 0, 7575, 765, 1, 0, 0, 0, 7576, 7577, 3, 776, 388, 0, 7577, 767, 1, 0, 0, 0, 7578, 7579, 3, 776, 388, 0, 7579, 769, 1, 0, 0, 0, 7580, 7581, 3, 776, 388, 0, 7581, 771, 1, 0, 0, 0, 7582, 7583, 3, 776, 388, 0, 7583, 773, 1, 0, 0, 0, 7584, 7585, 3, 310, 155, 0, 7585, 775, 1, 0, 0, 0, 7586, 7588, 3, 816, 408, 0, 7587, 7589, 3, 748, 374, 0, 7588, 7587, 1, 0, 0, 0, 7588, 7589, 1, 0, 0, 0, 7589, 777, 1, 0, 0, 0, 7590, 7595, 3, 766, 383, 0, 7591, 7592, 5, 6, 0, 0, 7592, 7594, 3, 766, 383, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7597, 1, 0, 0, 0, 7595, 7593, 1, 0, 0, 0, 7595, 7596, 1, 0, 0, 0, 7596, 779, 1, 0, 0, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7603, 3, 816, 408, 0, 7599, 7600, 5, 6, 0, 0, 7600, 7602, 3, 816, 408, 0, 7601, 7599, 1, 0, 0, 0, 7602, 7605, 1, 0, 0, 0, 7603, 7601, 1, 0, 0, 0, 7603, 7604, 1, 0, 0, 0, 7604, 781, 1, 0, 0, 0, 7605, 7603, 1, 0, 0, 0, 7606, 7607, 3, 310, 155, 0, 7607, 783, 1, 0, 0, 0, 7608, 7609, 3, 310, 155, 0, 7609, 785, 1, 0, 0, 0, 7610, 7611, 3, 310, 155, 0, 7611, 787, 1, 0, 0, 0, 7612, 7613, 3, 816, 408, 0, 7613, 789, 1, 0, 0, 0, 7614, 7615, 3, 816, 408, 0, 7615, 791, 1, 0, 0, 0, 7616, 7621, 3, 818, 409, 0, 7617, 7618, 3, 816, 408, 0, 7618, 7619, 3, 748, 374, 0, 7619, 7621, 1, 0, 0, 0, 7620, 7616, 1, 0, 0, 0, 7620, 7617, 1, 0, 0, 0, 7621, 793, 1, 0, 0, 0, 7622, 7627, 3, 818, 409, 0, 7623, 7624, 3, 816, 408, 0, 7624, 7625, 3, 748, 374, 0, 7625, 7627, 1, 0, 0, 0, 7626, 7622, 1, 0, 0, 0, 7626, 7623, 1, 0, 0, 0, 7627, 795, 1, 0, 0, 0, 7628, 7629, 3, 816, 408, 0, 7629, 7630, 3, 750, 375, 0, 7630, 7633, 1, 0, 0, 0, 7631, 7633, 4, 398, 10, 0, 7632, 7628, 1, 0, 0, 0, 7632, 7631, 1, 0, 0, 0, 7633, 797, 1, 0, 0, 0, 7634, 7635, 3, 816, 408, 0, 7635, 7636, 3, 750, 375, 0, 7636, 799, 1, 0, 0, 0, 7637, 7638, 3, 816, 408, 0, 7638, 801, 1, 0, 0, 0, 7639, 7644, 3, 818, 409, 0, 7640, 7641, 3, 816, 408, 0, 7641, 7642, 3, 748, 374, 0, 7642, 7644, 1, 0, 0, 0, 7643, 7639, 1, 0, 0, 0, 7643, 7640, 1, 0, 0, 0, 7644, 803, 1, 0, 0, 0, 7645, 7650, 3, 818, 409, 0, 7646, 7647, 3, 816, 408, 0, 7647, 7648, 3, 748, 374, 0, 7648, 7650, 1, 0, 0, 0, 7649, 7645, 1, 0, 0, 0, 7649, 7646, 1, 0, 0, 0, 7650, 805, 1, 0, 0, 0, 7651, 7654, 3, 808, 404, 0, 7652, 7653, 5, 487, 0, 0, 7653, 7655, 3, 808, 404, 0, 7654, 7652, 1, 0, 0, 0, 7654, 7655, 1, 0, 0, 0, 7655, 807, 1, 0, 0, 0, 7656, 7668, 5, 561, 0, 0, 7657, 7668, 5, 563, 0, 0, 7658, 7662, 5, 565, 0, 0, 7659, 7661, 5, 590, 0, 0, 7660, 7659, 1, 0, 0, 0, 7661, 7664, 1, 0, 0, 0, 7662, 7660, 1, 0, 0, 0, 7662, 7663, 1, 0, 0, 0, 7663, 7665, 1, 0, 0, 0, 7664, 7662, 1, 0, 0, 0, 7665, 7668, 5, 591, 0, 0, 7666, 7668, 5, 586, 0, 0, 7667, 7656, 1, 0, 0, 0, 7667, 7657, 1, 0, 0, 0, 7667, 7658, 1, 0, 0, 0, 7667, 7666, 1, 0, 0, 0, 7668, 809, 1, 0, 0, 0, 7669, 7671, 7, 30, 0, 0, 7670, 7669, 1, 0, 0, 0, 7670, 7671, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7673, 5, 574, 0, 0, 7673, 811, 1, 0, 0, 0, 7674, 7680, 3, 820, 410, 0, 7675, 7680, 5, 52, 0, 0, 7676, 7680, 5, 49, 0, 0, 7677, 7680, 5, 89, 0, 0, 7678, 7680, 5, 524, 0, 0, 7679, 7674, 1, 0, 0, 0, 7679, 7675, 1, 0, 0, 0, 7679, 7676, 1, 0, 0, 0, 7679, 7677, 1, 0, 0, 0, 7679, 7678, 1, 0, 0, 0, 7680, 813, 1, 0, 0, 0, 7681, 7686, 3, 812, 406, 0, 7682, 7683, 5, 6, 0, 0, 7683, 7685, 3, 812, 406, 0, 7684, 7682, 1, 0, 0, 0, 7685, 7688, 1, 0, 0, 0, 7686, 7684, 1, 0, 0, 0, 7686, 7687, 1, 0, 0, 0, 7687, 815, 1, 0, 0, 0, 7688, 7686, 1, 0, 0, 0, 7689, 7692, 3, 824, 412, 0, 7690, 7692, 3, 828, 414, 0, 7691, 7689, 1, 0, 0, 0, 7691, 7690, 1, 0, 0, 0, 7692, 817, 1, 0, 0, 0, 7693, 7696, 3, 824, 412, 0, 7694, 7696, 3, 830, 415, 0, 7695, 7693, 1, 0, 0, 0, 7695, 7694, 1, 0, 0, 0, 7696, 819, 1, 0, 0, 0, 7697, 7701, 3, 824, 412, 0, 7698, 7701, 3, 828, 414, 0, 7699, 7701, 3, 830, 415, 0, 7700, 7697, 1, 0, 0, 0, 7700, 7698, 1, 0, 0, 0, 7700, 7699, 1, 0, 0, 0, 7701, 821, 1, 0, 0, 0, 7702, 7707, 3, 824, 412, 0, 7703, 7707, 3, 828, 414, 0, 7704, 7707, 3, 830, 415, 0, 7705, 7707, 3, 832, 416, 0, 7706, 7702, 1, 0, 0, 0, 7706, 7703, 1, 0, 0, 0, 7706, 7704, 1, 0, 0, 0, 7706, 7705, 1, 0, 0, 0, 7707, 823, 1, 0, 0, 0, 7708, 7711, 5, 552, 0, 0, 7709, 7710, 5, 487, 0, 0, 7710, 7712, 3, 808, 404, 0, 7711, 7709, 1, 0, 0, 0, 7711, 7712, 1, 0, 0, 0, 7712, 7720, 1, 0, 0, 0, 7713, 7720, 3, 806, 403, 0, 7714, 7720, 5, 553, 0, 0, 7715, 7720, 5, 557, 0, 0, 7716, 7720, 5, 577, 0, 0, 7717, 7720, 5, 578, 0, 0, 7718, 7720, 3, 826, 413, 0, 7719, 7708, 1, 0, 0, 0, 7719, 7713, 1, 0, 0, 0, 7719, 7714, 1, 0, 0, 0, 7719, 7715, 1, 0, 0, 0, 7719, 7716, 1, 0, 0, 0, 7719, 7717, 1, 0, 0, 0, 7719, 7718, 1, 0, 0, 0, 7720, 825, 1, 0, 0, 0, 7721, 7722, 7, 110, 0, 0, 7722, 827, 1, 0, 0, 0, 7723, 7775, 5, 387, 0, 0, 7724, 7775, 5, 388, 0, 0, 7725, 7775, 3, 656, 328, 0, 7726, 7775, 5, 390, 0, 0, 7727, 7775, 5, 391, 0, 0, 7728, 7775, 3, 658, 329, 0, 7729, 7775, 5, 393, 0, 0, 7730, 7775, 5, 394, 0, 0, 7731, 7775, 5, 395, 0, 0, 7732, 7775, 5, 396, 0, 0, 7733, 7775, 5, 397, 0, 0, 7734, 7775, 5, 398, 0, 0, 7735, 7775, 5, 399, 0, 0, 7736, 7775, 5, 470, 0, 0, 7737, 7775, 5, 400, 0, 0, 7738, 7775, 5, 401, 0, 0, 7739, 7775, 5, 402, 0, 0, 7740, 7775, 5, 403, 0, 0, 7741, 7775, 5, 404, 0, 0, 7742, 7775, 5, 405, 0, 0, 7743, 7775, 5, 406, 0, 0, 7744, 7775, 5, 407, 0, 0, 7745, 7775, 5, 489, 0, 0, 7746, 7775, 5, 408, 0, 0, 7747, 7775, 3, 652, 326, 0, 7748, 7775, 5, 453, 0, 0, 7749, 7775, 5, 410, 0, 0, 7750, 7775, 5, 411, 0, 0, 7751, 7775, 5, 412, 0, 0, 7752, 7775, 5, 413, 0, 0, 7753, 7775, 5, 414, 0, 0, 7754, 7775, 5, 415, 0, 0, 7755, 7775, 5, 416, 0, 0, 7756, 7775, 5, 417, 0, 0, 7757, 7775, 5, 418, 0, 0, 7758, 7775, 5, 419, 0, 0, 7759, 7775, 5, 420, 0, 0, 7760, 7775, 5, 421, 0, 0, 7761, 7775, 5, 422, 0, 0, 7762, 7775, 5, 423, 0, 0, 7763, 7775, 5, 424, 0, 0, 7764, 7775, 5, 425, 0, 0, 7765, 7775, 5, 426, 0, 0, 7766, 7775, 5, 427, 0, 0, 7767, 7775, 5, 428, 0, 0, 7768, 7775, 5, 476, 0, 0, 7769, 7775, 5, 429, 0, 0, 7770, 7775, 5, 430, 0, 0, 7771, 7775, 5, 431, 0, 0, 7772, 7775, 5, 432, 0, 0, 7773, 7775, 5, 474, 0, 0, 7774, 7723, 1, 0, 0, 0, 7774, 7724, 1, 0, 0, 0, 7774, 7725, 1, 0, 0, 0, 7774, 7726, 1, 0, 0, 0, 7774, 7727, 1, 0, 0, 0, 7774, 7728, 1, 0, 0, 0, 7774, 7729, 1, 0, 0, 0, 7774, 7730, 1, 0, 0, 0, 7774, 7731, 1, 0, 0, 0, 7774, 7732, 1, 0, 0, 0, 7774, 7733, 1, 0, 0, 0, 7774, 7734, 1, 0, 0, 0, 7774, 7735, 1, 0, 0, 0, 7774, 7736, 1, 0, 0, 0, 7774, 7737, 1, 0, 0, 0, 7774, 7738, 1, 0, 0, 0, 7774, 7739, 1, 0, 0, 0, 7774, 7740, 1, 0, 0, 0, 7774, 7741, 1, 0, 0, 0, 7774, 7742, 1, 0, 0, 0, 7774, 7743, 1, 0, 0, 0, 7774, 7744, 1, 0, 0, 0, 7774, 7745, 1, 0, 0, 0, 7774, 7746, 1, 0, 0, 0, 7774, 7747, 1, 0, 0, 0, 7774, 7748, 1, 0, 0, 0, 7774, 7749, 1, 0, 0, 0, 7774, 7750, 1, 0, 0, 0, 7774, 7751, 1, 0, 0, 0, 7774, 7752, 1, 0, 0, 0, 7774, 7753, 1, 0, 0, 0, 7774, 7754, 1, 0, 0, 0, 7774, 7755, 1, 0, 0, 0, 7774, 7756, 1, 0, 0, 0, 7774, 7757, 1, 0, 0, 0, 7774, 7758, 1, 0, 0, 0, 7774, 7759, 1, 0, 0, 0, 7774, 7760, 1, 0, 0, 0, 7774, 7761, 1, 0, 0, 0, 7774, 7762, 1, 0, 0, 0, 7774, 7763, 1, 0, 0, 0, 7774, 7764, 1, 0, 0, 0, 7774, 7765, 1, 0, 0, 0, 7774, 7766, 1, 0, 0, 0, 7774, 7767, 1, 0, 0, 0, 7774, 7768, 1, 0, 0, 0, 7774, 7769, 1, 0, 0, 0, 7774, 7770, 1, 0, 0, 0, 7774, 7771, 1, 0, 0, 0, 7774, 7772, 1, 0, 0, 0, 7774, 7773, 1, 0, 0, 0, 7775, 829, 1, 0, 0, 0, 7776, 7777, 7, 111, 0, 0, 7777, 831, 1, 0, 0, 0, 7778, 7779, 7, 112, 0, 0, 7779, 833, 1, 0, 0, 0, 7780, 7782, 3, 836, 418, 0, 7781, 7780, 1, 0, 0, 0, 7781, 7782, 1, 0, 0, 0, 7782, 7793, 1, 0, 0, 0, 7783, 7791, 5, 178, 0, 0, 7784, 7788, 3, 838, 419, 0, 7785, 7788, 5, 178, 0, 0, 7786, 7788, 3, 836, 418, 0, 7787, 7784, 1, 0, 0, 0, 7787, 7785, 1, 0, 0, 0, 7787, 7786, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7787, 1, 0, 0, 0, 7789, 7790, 1, 0, 0, 0, 7790, 7792, 1, 0, 0, 0, 7791, 7787, 1, 0, 0, 0, 7791, 7792, 1, 0, 0, 0, 7792, 7794, 1, 0, 0, 0, 7793, 7783, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7799, 5, 146, 0, 0, 7796, 7798, 3, 844, 422, 0, 7797, 7796, 1, 0, 0, 0, 7798, 7801, 1, 0, 0, 0, 7799, 7797, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 7803, 1, 0, 0, 0, 7801, 7799, 1, 0, 0, 0, 7802, 7804, 3, 922, 461, 0, 7803, 7802, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7805, 1, 0, 0, 0, 7805, 7807, 5, 454, 0, 0, 7806, 7808, 3, 926, 463, 0, 7807, 7806, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 835, 1, 0, 0, 0, 7809, 7810, 5, 18, 0, 0, 7810, 7811, 3, 926, 463, 0, 7811, 7812, 5, 19, 0, 0, 7812, 837, 1, 0, 0, 0, 7813, 7860, 3, 926, 463, 0, 7814, 7815, 5, 496, 0, 0, 7815, 7818, 5, 62, 0, 0, 7816, 7819, 5, 28, 0, 0, 7817, 7819, 3, 816, 408, 0, 7818, 7816, 1, 0, 0, 0, 7818, 7817, 1, 0, 0, 0, 7819, 7861, 1, 0, 0, 0, 7820, 7822, 5, 497, 0, 0, 7821, 7820, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7823, 1, 0, 0, 0, 7823, 7825, 3, 646, 323, 0, 7824, 7826, 3, 90, 45, 0, 7825, 7824, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7829, 1, 0, 0, 0, 7827, 7828, 5, 77, 0, 0, 7828, 7830, 5, 78, 0, 0, 7829, 7827, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7836, 1, 0, 0, 0, 7831, 7834, 3, 842, 421, 0, 7832, 7834, 5, 53, 0, 0, 7833, 7831, 1, 0, 0, 0, 7833, 7832, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7837, 3, 928, 464, 0, 7836, 7833, 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7861, 1, 0, 0, 0, 7838, 7840, 5, 269, 0, 0, 7839, 7838, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7843, 5, 324, 0, 0, 7842, 7839, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7856, 5, 172, 0, 0, 7845, 7846, 5, 2, 0, 0, 7846, 7851, 3, 840, 420, 0, 7847, 7848, 5, 6, 0, 0, 7848, 7850, 3, 840, 420, 0, 7849, 7847, 1, 0, 0, 0, 7850, 7853, 1, 0, 0, 0, 7851, 7849, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7854, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7854, 7855, 5, 3, 0, 0, 7855, 7857, 1, 0, 0, 0, 7856, 7845, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7859, 7, 113, 0, 0, 7859, 7861, 3, 554, 277, 0, 7860, 7814, 1, 0, 0, 0, 7860, 7821, 1, 0, 0, 0, 7860, 7842, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7863, 5, 7, 0, 0, 7863, 839, 1, 0, 0, 0, 7864, 7865, 3, 926, 463, 0, 7865, 7866, 3, 646, 323, 0, 7866, 841, 1, 0, 0, 0, 7867, 7868, 7, 114, 0, 0, 7868, 843, 1, 0, 0, 0, 7869, 7870, 3, 834, 417, 0, 7870, 7871, 5, 7, 0, 0, 7871, 7894, 1, 0, 0, 0, 7872, 7894, 3, 872, 436, 0, 7873, 7894, 3, 874, 437, 0, 7874, 7894, 3, 850, 425, 0, 7875, 7894, 3, 858, 429, 0, 7876, 7894, 3, 862, 431, 0, 7877, 7894, 3, 864, 432, 0, 7878, 7894, 3, 868, 434, 0, 7879, 7894, 3, 870, 435, 0, 7880, 7894, 3, 878, 439, 0, 7881, 7894, 3, 882, 441, 0, 7882, 7894, 3, 884, 442, 0, 7883, 7894, 3, 846, 423, 0, 7884, 7894, 3, 848, 424, 0, 7885, 7894, 3, 852, 426, 0, 7886, 7894, 3, 888, 444, 0, 7887, 7894, 3, 892, 446, 0, 7888, 7894, 3, 896, 448, 0, 7889, 7894, 3, 912, 456, 0, 7890, 7894, 3, 914, 457, 0, 7891, 7894, 3, 916, 458, 0, 7892, 7894, 3, 918, 459, 0, 7893, 7869, 1, 0, 0, 0, 7893, 7872, 1, 0, 0, 0, 7893, 7873, 1, 0, 0, 0, 7893, 7874, 1, 0, 0, 0, 7893, 7875, 1, 0, 0, 0, 7893, 7876, 1, 0, 0, 0, 7893, 7877, 1, 0, 0, 0, 7893, 7878, 1, 0, 0, 0, 7893, 7879, 1, 0, 0, 0, 7893, 7880, 1, 0, 0, 0, 7893, 7881, 1, 0, 0, 0, 7893, 7882, 1, 0, 0, 0, 7893, 7883, 1, 0, 0, 0, 7893, 7884, 1, 0, 0, 0, 7893, 7885, 1, 0, 0, 0, 7893, 7886, 1, 0, 0, 0, 7893, 7887, 1, 0, 0, 0, 7893, 7888, 1, 0, 0, 0, 7893, 7889, 1, 0, 0, 0, 7893, 7890, 1, 0, 0, 0, 7893, 7891, 1, 0, 0, 0, 7893, 7892, 1, 0, 0, 0, 7894, 845, 1, 0, 0, 0, 7895, 7896, 5, 498, 0, 0, 7896, 7897, 3, 928, 464, 0, 7897, 7898, 5, 7, 0, 0, 7898, 847, 1, 0, 0, 0, 7899, 7900, 5, 433, 0, 0, 7900, 7907, 3, 926, 463, 0, 7901, 7903, 5, 2, 0, 0, 7902, 7904, 3, 726, 363, 0, 7903, 7902, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7906, 5, 3, 0, 0, 7906, 7908, 5, 7, 0, 0, 7907, 7901, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7919, 1, 0, 0, 0, 7909, 7910, 5, 57, 0, 0, 7910, 7911, 3, 926, 463, 0, 7911, 7913, 5, 2, 0, 0, 7912, 7914, 3, 726, 363, 0, 7913, 7912, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 5, 3, 0, 0, 7916, 7917, 5, 7, 0, 0, 7917, 7919, 1, 0, 0, 0, 7918, 7899, 1, 0, 0, 0, 7918, 7909, 1, 0, 0, 0, 7919, 849, 1, 0, 0, 0, 7920, 7921, 3, 856, 428, 0, 7921, 7922, 3, 842, 421, 0, 7922, 7923, 3, 928, 464, 0, 7923, 7924, 5, 7, 0, 0, 7924, 851, 1, 0, 0, 0, 7925, 7927, 5, 499, 0, 0, 7926, 7928, 7, 115, 0, 0, 7927, 7926, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 1, 0, 0, 0, 7929, 7930, 5, 500, 0, 0, 7930, 7935, 3, 854, 427, 0, 7931, 7932, 5, 6, 0, 0, 7932, 7934, 3, 854, 427, 0, 7933, 7931, 1, 0, 0, 0, 7934, 7937, 1, 0, 0, 0, 7935, 7933, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7938, 1, 0, 0, 0, 7937, 7935, 1, 0, 0, 0, 7938, 7939, 5, 7, 0, 0, 7939, 853, 1, 0, 0, 0, 7940, 7941, 3, 856, 428, 0, 7941, 7942, 3, 842, 421, 0, 7942, 7943, 3, 816, 408, 0, 7943, 855, 1, 0, 0, 0, 7944, 7947, 3, 310, 155, 0, 7945, 7947, 5, 28, 0, 0, 7946, 7944, 1, 0, 0, 0, 7946, 7945, 1, 0, 0, 0, 7947, 7954, 1, 0, 0, 0, 7948, 7949, 5, 4, 0, 0, 7949, 7950, 3, 668, 334, 0, 7950, 7951, 5, 5, 0, 0, 7951, 7953, 1, 0, 0, 0, 7952, 7948, 1, 0, 0, 0, 7953, 7956, 1, 0, 0, 0, 7954, 7952, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 857, 1, 0, 0, 0, 7956, 7954, 1, 0, 0, 0, 7957, 7958, 5, 220, 0, 0, 7958, 7959, 3, 928, 464, 0, 7959, 7963, 5, 93, 0, 0, 7960, 7962, 3, 844, 422, 0, 7961, 7960, 1, 0, 0, 0, 7962, 7965, 1, 0, 0, 0, 7963, 7961, 1, 0, 0, 0, 7963, 7964, 1, 0, 0, 0, 7964, 7977, 1, 0, 0, 0, 7965, 7963, 1, 0, 0, 0, 7966, 7967, 5, 502, 0, 0, 7967, 7968, 3, 668, 334, 0, 7968, 7972, 5, 93, 0, 0, 7969, 7971, 3, 844, 422, 0, 7970, 7969, 1, 0, 0, 0, 7971, 7974, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7972, 7973, 1, 0, 0, 0, 7973, 7976, 1, 0, 0, 0, 7974, 7972, 1, 0, 0, 0, 7975, 7966, 1, 0, 0, 0, 7976, 7979, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7981, 1, 0, 0, 0, 7979, 7977, 1, 0, 0, 0, 7980, 7982, 3, 860, 430, 0, 7981, 7980, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 5, 454, 0, 0, 7984, 7985, 5, 220, 0, 0, 7985, 7986, 5, 7, 0, 0, 7986, 859, 1, 0, 0, 0, 7987, 7991, 5, 58, 0, 0, 7988, 7990, 3, 844, 422, 0, 7989, 7988, 1, 0, 0, 0, 7990, 7993, 1, 0, 0, 0, 7991, 7989, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 861, 1, 0, 0, 0, 7993, 7991, 1, 0, 0, 0, 7994, 7996, 5, 40, 0, 0, 7995, 7997, 3, 928, 464, 0, 7996, 7995, 1, 0, 0, 0, 7996, 7997, 1, 0, 0, 0, 7997, 8007, 1, 0, 0, 0, 7998, 7999, 5, 102, 0, 0, 7999, 8000, 3, 726, 363, 0, 8000, 8004, 5, 93, 0, 0, 8001, 8003, 3, 844, 422, 0, 8002, 8001, 1, 0, 0, 0, 8003, 8006, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 8008, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8007, 7998, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8007, 1, 0, 0, 0, 8009, 8010, 1, 0, 0, 0, 8010, 8012, 1, 0, 0, 0, 8011, 8013, 3, 860, 430, 0, 8012, 8011, 1, 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 8014, 1, 0, 0, 0, 8014, 8015, 5, 454, 0, 0, 8015, 8016, 5, 40, 0, 0, 8016, 8017, 5, 7, 0, 0, 8017, 863, 1, 0, 0, 0, 8018, 8020, 3, 836, 418, 0, 8019, 8018, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8025, 1, 0, 0, 0, 8021, 8022, 5, 503, 0, 0, 8022, 8026, 3, 668, 334, 0, 8023, 8024, 5, 62, 0, 0, 8024, 8026, 3, 866, 433, 0, 8025, 8021, 1, 0, 0, 0, 8025, 8023, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8027, 1, 0, 0, 0, 8027, 8028, 3, 880, 440, 0, 8028, 865, 1, 0, 0, 0, 8029, 8030, 3, 308, 154, 0, 8030, 8053, 5, 68, 0, 0, 8031, 8033, 3, 816, 408, 0, 8032, 8034, 3, 528, 264, 0, 8033, 8032, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8054, 1, 0, 0, 0, 8035, 8054, 3, 554, 277, 0, 8036, 8054, 3, 514, 257, 0, 8037, 8038, 5, 202, 0, 0, 8038, 8041, 3, 668, 334, 0, 8039, 8040, 5, 100, 0, 0, 8040, 8042, 3, 726, 363, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 8054, 1, 0, 0, 0, 8043, 8045, 5, 504, 0, 0, 8044, 8043, 1, 0, 0, 0, 8044, 8045, 1, 0, 0, 0, 8045, 8046, 1, 0, 0, 0, 8046, 8047, 3, 668, 334, 0, 8047, 8048, 5, 24, 0, 0, 8048, 8051, 3, 668, 334, 0, 8049, 8050, 5, 147, 0, 0, 8050, 8052, 3, 668, 334, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8054, 1, 0, 0, 0, 8053, 8031, 1, 0, 0, 0, 8053, 8035, 1, 0, 0, 0, 8053, 8036, 1, 0, 0, 0, 8053, 8037, 1, 0, 0, 0, 8053, 8044, 1, 0, 0, 0, 8054, 867, 1, 0, 0, 0, 8055, 8057, 3, 836, 418, 0, 8056, 8055, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 8059, 5, 505, 0, 0, 8059, 8062, 3, 308, 154, 0, 8060, 8061, 5, 506, 0, 0, 8061, 8063, 5, 574, 0, 0, 8062, 8060, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 1, 0, 0, 0, 8064, 8065, 5, 68, 0, 0, 8065, 8066, 5, 35, 0, 0, 8066, 8067, 3, 668, 334, 0, 8067, 8068, 3, 880, 440, 0, 8068, 869, 1, 0, 0, 0, 8069, 8071, 7, 116, 0, 0, 8070, 8072, 3, 926, 463, 0, 8071, 8070, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8075, 1, 0, 0, 0, 8073, 8074, 5, 102, 0, 0, 8074, 8076, 3, 928, 464, 0, 8075, 8073, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 1, 0, 0, 0, 8077, 8078, 5, 7, 0, 0, 8078, 871, 1, 0, 0, 0, 8079, 8094, 5, 508, 0, 0, 8080, 8081, 5, 268, 0, 0, 8081, 8095, 3, 928, 464, 0, 8082, 8089, 5, 509, 0, 0, 8083, 8084, 5, 202, 0, 0, 8084, 8085, 3, 668, 334, 0, 8085, 8086, 5, 100, 0, 0, 8086, 8087, 3, 726, 363, 0, 8087, 8090, 1, 0, 0, 0, 8088, 8090, 3, 554, 277, 0, 8089, 8083, 1, 0, 0, 0, 8089, 8088, 1, 0, 0, 0, 8090, 8095, 1, 0, 0, 0, 8091, 8093, 3, 928, 464, 0, 8092, 8091, 1, 0, 0, 0, 8092, 8093, 1, 0, 0, 0, 8093, 8095, 1, 0, 0, 0, 8094, 8080, 1, 0, 0, 0, 8094, 8082, 1, 0, 0, 0, 8094, 8092, 1, 0, 0, 0, 8095, 8096, 1, 0, 0, 0, 8096, 8097, 5, 7, 0, 0, 8097, 873, 1, 0, 0, 0, 8098, 8128, 5, 510, 0, 0, 8099, 8101, 7, 117, 0, 0, 8100, 8099, 1, 0, 0, 0, 8100, 8101, 1, 0, 0, 0, 8101, 8114, 1, 0, 0, 0, 8102, 8115, 3, 824, 412, 0, 8103, 8104, 5, 511, 0, 0, 8104, 8115, 3, 806, 403, 0, 8105, 8112, 3, 806, 403, 0, 8106, 8107, 5, 6, 0, 0, 8107, 8109, 3, 668, 334, 0, 8108, 8106, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8108, 1, 0, 0, 0, 8110, 8111, 1, 0, 0, 0, 8111, 8113, 1, 0, 0, 0, 8112, 8108, 1, 0, 0, 0, 8112, 8113, 1, 0, 0, 0, 8113, 8115, 1, 0, 0, 0, 8114, 8102, 1, 0, 0, 0, 8114, 8103, 1, 0, 0, 0, 8114, 8105, 1, 0, 0, 0, 8114, 8115, 1, 0, 0, 0, 8115, 8125, 1, 0, 0, 0, 8116, 8117, 5, 100, 0, 0, 8117, 8122, 3, 876, 438, 0, 8118, 8119, 5, 6, 0, 0, 8119, 8121, 3, 876, 438, 0, 8120, 8118, 1, 0, 0, 0, 8121, 8124, 1, 0, 0, 0, 8122, 8120, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8126, 1, 0, 0, 0, 8124, 8122, 1, 0, 0, 0, 8125, 8116, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8129, 5, 7, 0, 0, 8128, 8100, 1, 0, 0, 0, 8128, 8129, 1, 0, 0, 0, 8129, 875, 1, 0, 0, 0, 8130, 8131, 3, 824, 412, 0, 8131, 8132, 5, 10, 0, 0, 8132, 8133, 3, 668, 334, 0, 8133, 877, 1, 0, 0, 0, 8134, 8135, 5, 518, 0, 0, 8135, 8138, 3, 928, 464, 0, 8136, 8137, 5, 6, 0, 0, 8137, 8139, 3, 928, 464, 0, 8138, 8136, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8141, 5, 7, 0, 0, 8141, 879, 1, 0, 0, 0, 8142, 8146, 5, 519, 0, 0, 8143, 8145, 3, 844, 422, 0, 8144, 8143, 1, 0, 0, 0, 8145, 8148, 1, 0, 0, 0, 8146, 8144, 1, 0, 0, 0, 8146, 8147, 1, 0, 0, 0, 8147, 8149, 1, 0, 0, 0, 8148, 8146, 1, 0, 0, 0, 8149, 8150, 5, 454, 0, 0, 8150, 8152, 5, 519, 0, 0, 8151, 8153, 3, 926, 463, 0, 8152, 8151, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 1, 0, 0, 0, 8154, 8155, 5, 7, 0, 0, 8155, 881, 1, 0, 0, 0, 8156, 8158, 3, 4, 2, 0, 8157, 8159, 3, 886, 443, 0, 8158, 8157, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8161, 5, 7, 0, 0, 8161, 883, 1, 0, 0, 0, 8162, 8163, 5, 202, 0, 0, 8163, 8179, 3, 668, 334, 0, 8164, 8166, 3, 886, 443, 0, 8165, 8164, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8169, 1, 0, 0, 0, 8167, 8168, 5, 100, 0, 0, 8168, 8170, 3, 726, 363, 0, 8169, 8167, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8180, 1, 0, 0, 0, 8171, 8172, 5, 100, 0, 0, 8172, 8174, 3, 726, 363, 0, 8173, 8171, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8176, 1, 0, 0, 0, 8175, 8177, 3, 886, 443, 0, 8176, 8175, 1, 0, 0, 0, 8176, 8177, 1, 0, 0, 0, 8177, 8180, 1, 0, 0, 0, 8178, 8180, 1, 0, 0, 0, 8179, 8165, 1, 0, 0, 0, 8179, 8173, 1, 0, 0, 0, 8179, 8178, 1, 0, 0, 0, 8180, 8181, 1, 0, 0, 0, 8181, 8182, 5, 7, 0, 0, 8182, 885, 1, 0, 0, 0, 8183, 8185, 5, 71, 0, 0, 8184, 8186, 5, 346, 0, 0, 8185, 8184, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 3, 726, 363, 0, 8188, 887, 1, 0, 0, 0, 8189, 8221, 5, 520, 0, 0, 8190, 8195, 3, 920, 460, 0, 8191, 8193, 5, 269, 0, 0, 8192, 8191, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8196, 5, 324, 0, 0, 8195, 8192, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8197, 1, 0, 0, 0, 8197, 8205, 5, 62, 0, 0, 8198, 8206, 3, 554, 277, 0, 8199, 8200, 5, 202, 0, 0, 8200, 8203, 3, 928, 464, 0, 8201, 8202, 5, 100, 0, 0, 8202, 8204, 3, 726, 363, 0, 8203, 8201, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8206, 1, 0, 0, 0, 8205, 8198, 1, 0, 0, 0, 8205, 8199, 1, 0, 0, 0, 8206, 8222, 1, 0, 0, 0, 8207, 8219, 3, 816, 408, 0, 8208, 8209, 5, 2, 0, 0, 8209, 8214, 3, 890, 445, 0, 8210, 8211, 5, 6, 0, 0, 8211, 8213, 3, 890, 445, 0, 8212, 8210, 1, 0, 0, 0, 8213, 8216, 1, 0, 0, 0, 8214, 8212, 1, 0, 0, 0, 8214, 8215, 1, 0, 0, 0, 8215, 8217, 1, 0, 0, 0, 8216, 8214, 1, 0, 0, 0, 8217, 8218, 5, 3, 0, 0, 8218, 8220, 1, 0, 0, 0, 8219, 8208, 1, 0, 0, 0, 8219, 8220, 1, 0, 0, 0, 8220, 8222, 1, 0, 0, 0, 8221, 8190, 1, 0, 0, 0, 8221, 8207, 1, 0, 0, 0, 8222, 8223, 1, 0, 0, 0, 8223, 8224, 5, 7, 0, 0, 8224, 889, 1, 0, 0, 0, 8225, 8226, 3, 816, 408, 0, 8226, 8227, 5, 20, 0, 0, 8227, 8229, 1, 0, 0, 0, 8228, 8225, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8230, 1, 0, 0, 0, 8230, 8231, 3, 668, 334, 0, 8231, 891, 1, 0, 0, 0, 8232, 8234, 5, 61, 0, 0, 8233, 8235, 3, 894, 447, 0, 8234, 8233, 1, 0, 0, 0, 8234, 8235, 1, 0, 0, 0, 8235, 8237, 1, 0, 0, 0, 8236, 8238, 3, 326, 163, 0, 8237, 8236, 1, 0, 0, 0, 8237, 8238, 1, 0, 0, 0, 8238, 8239, 1, 0, 0, 0, 8239, 8240, 3, 920, 460, 0, 8240, 8241, 5, 71, 0, 0, 8241, 8242, 3, 726, 363, 0, 8242, 8243, 5, 7, 0, 0, 8243, 893, 1, 0, 0, 0, 8244, 8259, 5, 268, 0, 0, 8245, 8259, 5, 293, 0, 0, 8246, 8259, 5, 207, 0, 0, 8247, 8259, 5, 249, 0, 0, 8248, 8250, 7, 51, 0, 0, 8249, 8248, 1, 0, 0, 0, 8249, 8250, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8259, 3, 668, 334, 0, 8252, 8259, 5, 30, 0, 0, 8253, 8256, 7, 118, 0, 0, 8254, 8257, 3, 668, 334, 0, 8255, 8257, 5, 30, 0, 0, 8256, 8254, 1, 0, 0, 0, 8256, 8255, 1, 0, 0, 0, 8256, 8257, 1, 0, 0, 0, 8257, 8259, 1, 0, 0, 0, 8258, 8244, 1, 0, 0, 0, 8258, 8245, 1, 0, 0, 0, 8258, 8246, 1, 0, 0, 0, 8258, 8247, 1, 0, 0, 0, 8258, 8249, 1, 0, 0, 0, 8258, 8252, 1, 0, 0, 0, 8258, 8253, 1, 0, 0, 0, 8259, 895, 1, 0, 0, 0, 8260, 8262, 5, 265, 0, 0, 8261, 8263, 3, 894, 447, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 3, 920, 460, 0, 8265, 8266, 5, 7, 0, 0, 8266, 897, 1, 0, 0, 0, 8267, 8269, 3, 566, 283, 0, 8268, 8267, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 5, 525, 0, 0, 8271, 8273, 5, 71, 0, 0, 8272, 8274, 5, 81, 0, 0, 8273, 8272, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8275, 1, 0, 0, 0, 8275, 8277, 3, 770, 385, 0, 8276, 8278, 5, 9, 0, 0, 8277, 8276, 1, 0, 0, 0, 8277, 8278, 1, 0, 0, 0, 8278, 8283, 1, 0, 0, 0, 8279, 8281, 5, 36, 0, 0, 8280, 8279, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8284, 3, 816, 408, 0, 8283, 8280, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8286, 5, 100, 0, 0, 8286, 8287, 3, 900, 450, 0, 8287, 8288, 5, 80, 0, 0, 8288, 8290, 3, 668, 334, 0, 8289, 8291, 3, 902, 451, 0, 8290, 8289, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8290, 1, 0, 0, 0, 8292, 8293, 1, 0, 0, 0, 8293, 8295, 1, 0, 0, 0, 8294, 8296, 3, 540, 270, 0, 8295, 8294, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 899, 1, 0, 0, 0, 8297, 8299, 5, 81, 0, 0, 8298, 8297, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8302, 3, 770, 385, 0, 8301, 8303, 5, 9, 0, 0, 8302, 8301, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8309, 1, 0, 0, 0, 8304, 8307, 3, 558, 279, 0, 8305, 8307, 3, 602, 301, 0, 8306, 8304, 1, 0, 0, 0, 8306, 8305, 1, 0, 0, 0, 8307, 8309, 1, 0, 0, 0, 8308, 8298, 1, 0, 0, 0, 8308, 8306, 1, 0, 0, 0, 8309, 8314, 1, 0, 0, 0, 8310, 8312, 5, 36, 0, 0, 8311, 8310, 1, 0, 0, 0, 8311, 8312, 1, 0, 0, 0, 8312, 8313, 1, 0, 0, 0, 8313, 8315, 3, 816, 408, 0, 8314, 8311, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 901, 1, 0, 0, 0, 8316, 8317, 5, 102, 0, 0, 8317, 8320, 5, 526, 0, 0, 8318, 8319, 5, 33, 0, 0, 8319, 8321, 3, 668, 334, 0, 8320, 8318, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8327, 5, 93, 0, 0, 8323, 8328, 3, 906, 453, 0, 8324, 8328, 5, 182, 0, 0, 8325, 8326, 5, 57, 0, 0, 8326, 8328, 5, 270, 0, 0, 8327, 8323, 1, 0, 0, 0, 8327, 8324, 1, 0, 0, 0, 8327, 8325, 1, 0, 0, 0, 8328, 8343, 1, 0, 0, 0, 8329, 8330, 5, 102, 0, 0, 8330, 8331, 5, 77, 0, 0, 8331, 8334, 5, 526, 0, 0, 8332, 8333, 5, 33, 0, 0, 8333, 8335, 3, 668, 334, 0, 8334, 8332, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 8340, 5, 93, 0, 0, 8337, 8341, 3, 904, 452, 0, 8338, 8339, 5, 57, 0, 0, 8339, 8341, 5, 270, 0, 0, 8340, 8337, 1, 0, 0, 0, 8340, 8338, 1, 0, 0, 0, 8341, 8343, 1, 0, 0, 0, 8342, 8316, 1, 0, 0, 0, 8342, 8329, 1, 0, 0, 0, 8343, 903, 1, 0, 0, 0, 8344, 8346, 5, 241, 0, 0, 8345, 8347, 3, 138, 69, 0, 8346, 8345, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8351, 1, 0, 0, 0, 8348, 8349, 5, 463, 0, 0, 8349, 8350, 7, 77, 0, 0, 8350, 8352, 5, 450, 0, 0, 8351, 8348, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8354, 3, 908, 454, 0, 8354, 905, 1, 0, 0, 0, 8355, 8356, 5, 369, 0, 0, 8356, 8374, 5, 333, 0, 0, 8357, 8358, 3, 796, 398, 0, 8358, 8359, 5, 10, 0, 0, 8359, 8360, 3, 910, 455, 0, 8360, 8375, 1, 0, 0, 0, 8361, 8362, 3, 138, 69, 0, 8362, 8363, 5, 10, 0, 0, 8363, 8364, 5, 2, 0, 0, 8364, 8369, 3, 910, 455, 0, 8365, 8366, 5, 6, 0, 0, 8366, 8368, 3, 910, 455, 0, 8367, 8365, 1, 0, 0, 0, 8368, 8371, 1, 0, 0, 0, 8369, 8367, 1, 0, 0, 0, 8369, 8370, 1, 0, 0, 0, 8370, 8372, 1, 0, 0, 0, 8371, 8369, 1, 0, 0, 0, 8372, 8373, 5, 3, 0, 0, 8373, 8375, 1, 0, 0, 0, 8374, 8357, 1, 0, 0, 0, 8374, 8361, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8376, 8377, 1, 0, 0, 0, 8377, 907, 1, 0, 0, 0, 8378, 8379, 5, 422, 0, 0, 8379, 8380, 5, 2, 0, 0, 8380, 8385, 3, 910, 455, 0, 8381, 8382, 5, 6, 0, 0, 8382, 8384, 3, 910, 455, 0, 8383, 8381, 1, 0, 0, 0, 8384, 8387, 1, 0, 0, 0, 8385, 8383, 1, 0, 0, 0, 8385, 8386, 1, 0, 0, 0, 8386, 8388, 1, 0, 0, 0, 8387, 8385, 1, 0, 0, 0, 8388, 8389, 5, 3, 0, 0, 8389, 8393, 1, 0, 0, 0, 8390, 8391, 5, 53, 0, 0, 8391, 8393, 5, 422, 0, 0, 8392, 8378, 1, 0, 0, 0, 8392, 8390, 1, 0, 0, 0, 8393, 909, 1, 0, 0, 0, 8394, 8397, 3, 582, 291, 0, 8395, 8397, 5, 53, 0, 0, 8396, 8394, 1, 0, 0, 0, 8396, 8395, 1, 0, 0, 0, 8397, 911, 1, 0, 0, 0, 8398, 8399, 5, 157, 0, 0, 8399, 8400, 3, 920, 460, 0, 8400, 8401, 5, 7, 0, 0, 8401, 913, 1, 0, 0, 0, 8402, 8403, 5, 78, 0, 0, 8403, 8404, 5, 7, 0, 0, 8404, 915, 1, 0, 0, 0, 8405, 8411, 7, 68, 0, 0, 8406, 8408, 5, 33, 0, 0, 8407, 8409, 5, 269, 0, 0, 8408, 8407, 1, 0, 0, 0, 8408, 8409, 1, 0, 0, 0, 8409, 8410, 1, 0, 0, 0, 8410, 8412, 5, 153, 0, 0, 8411, 8406, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8413, 1, 0, 0, 0, 8413, 8414, 5, 7, 0, 0, 8414, 917, 1, 0, 0, 0, 8415, 8416, 5, 333, 0, 0, 8416, 8417, 3, 310, 155, 0, 8417, 8418, 5, 94, 0, 0, 8418, 8419, 5, 53, 0, 0, 8419, 8420, 5, 7, 0, 0, 8420, 8428, 1, 0, 0, 0, 8421, 8424, 5, 313, 0, 0, 8422, 8425, 3, 310, 155, 0, 8423, 8425, 5, 30, 0, 0, 8424, 8422, 1, 0, 0, 0, 8424, 8423, 1, 0, 0, 0, 8425, 8426, 1, 0, 0, 0, 8426, 8428, 5, 7, 0, 0, 8427, 8415, 1, 0, 0, 0, 8427, 8421, 1, 0, 0, 0, 8428, 919, 1, 0, 0, 0, 8429, 8432, 3, 816, 408, 0, 8430, 8432, 5, 28, 0, 0, 8431, 8429, 1, 0, 0, 0, 8431, 8430, 1, 0, 0, 0, 8432, 921, 1, 0, 0, 0, 8433, 8450, 5, 517, 0, 0, 8434, 8435, 5, 102, 0, 0, 8435, 8440, 3, 924, 462, 0, 8436, 8437, 5, 82, 0, 0, 8437, 8439, 3, 924, 462, 0, 8438, 8436, 1, 0, 0, 0, 8439, 8442, 1, 0, 0, 0, 8440, 8438, 1, 0, 0, 0, 8440, 8441, 1, 0, 0, 0, 8441, 8443, 1, 0, 0, 0, 8442, 8440, 1, 0, 0, 0, 8443, 8447, 5, 93, 0, 0, 8444, 8446, 3, 844, 422, 0, 8445, 8444, 1, 0, 0, 0, 8446, 8449, 1, 0, 0, 0, 8447, 8445, 1, 0, 0, 0, 8447, 8448, 1, 0, 0, 0, 8448, 8451, 1, 0, 0, 0, 8449, 8447, 1, 0, 0, 0, 8450, 8434, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8450, 1, 0, 0, 0, 8452, 8453, 1, 0, 0, 0, 8453, 923, 1, 0, 0, 0, 8454, 8458, 3, 926, 463, 0, 8455, 8456, 5, 511, 0, 0, 8456, 8458, 3, 806, 403, 0, 8457, 8454, 1, 0, 0, 0, 8457, 8455, 1, 0, 0, 0, 8458, 925, 1, 0, 0, 0, 8459, 8462, 3, 816, 408, 0, 8460, 8462, 3, 826, 413, 0, 8461, 8459, 1, 0, 0, 0, 8461, 8460, 1, 0, 0, 0, 8462, 927, 1, 0, 0, 0, 8463, 8465, 3, 752, 376, 0, 8464, 8463, 1, 0, 0, 0, 8464, 8465, 1, 0, 0, 0, 8465, 8467, 1, 0, 0, 0, 8466, 8468, 3, 574, 287, 0, 8467, 8466, 1, 0, 0, 0, 8467, 8468, 1, 0, 0, 0, 8468, 8470, 1, 0, 0, 0, 8469, 8471, 3, 604, 302, 0, 8470, 8469, 1, 0, 0, 0, 8470, 8471, 1, 0, 0, 0, 8471, 8473, 1, 0, 0, 0, 8472, 8474, 3, 632, 316, 0, 8473, 8472, 1, 0, 0, 0, 8473, 8474, 1, 0, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8477, 3, 594, 297, 0, 8476, 8475, 1, 0, 0, 0, 8476, 8477, 1, 0, 0, 0, 8477, 8479, 1, 0, 0, 0, 8478, 8480, 3, 698, 349, 0, 8479, 8478, 1, 0, 0, 0, 8479, 8480, 1, 0, 0, 0, 8480, 8482, 1, 0, 0, 0, 8481, 8483, 3, 696, 348, 0, 8482, 8481, 1, 0, 0, 0, 8482, 8483, 1, 0, 0, 0, 8483, 929, 1, 0, 0, 0, 1190, 933, 940, 1060, 1062, 1071, 1076, 1082, 1117, 1127, 1133, 1138, 1145, 1150, 1157, 1168, 1176, 1180, 1192, 1198, 1204, 1208, 1213, 1217, 1230, 1240, 1242, 1248, 1253, 1266, 1269, 1274, 1279, 1290, 1294, 1306, 1310, 1313, 1317, 1329, 1347, 1354, 1362, 1367, 1374, 1382, 1388, 1396, 1404, 1408, 1422, 1427, 1432, 1444, 1450, 1462, 1467, 1477, 1483, 1488, 1497, 1504, 1509, 1514, 1524, 1529, 1534, 1541, 1545, 1559, 1565, 1571, 1576, 1583, 1592, 1601, 1610, 1619, 1623, 1635, 1643, 1653, 1673, 1678, 1681, 1688, 1691, 1695, 1699, 1702, 1707, 1712, 1716, 1725, 1731, 1735, 1744, 1747, 1753, 1762, 1774, 1778, 1782, 1787, 1790, 1796, 1798, 1800, 1804, 1810, 1814, 1819, 1824, 1828, 1831, 1838, 1851, 1864, 1889, 1899, 1906, 1911, 1915, 1922, 1927, 1930, 1932, 1937, 1941, 1945, 1949, 1954, 1957, 1961, 1964, 1968, 1976, 1981, 1984, 1988, 1994, 2003, 2007, 2017, 2022, 2026, 2030, 2032, 2034, 2041, 2046, 2050, 2055, 2067, 2072, 2076, 2080, 2085, 2089, 2092, 2095, 2098, 2101, 2104, 2109, 2112, 2115, 2118, 2121, 2124, 2130, 2134, 2137, 2140, 2143, 2146, 2148, 2155, 2163, 2173, 2178, 2188, 2191, 2196, 2201, 2206, 2209, 2214, 2223, 2225, 2229, 2232, 2236, 2241, 2246, 2250, 2253, 2257, 2260, 2265, 2268, 2273, 2276, 2280, 2283, 2286, 2291, 2294, 2302, 2314, 2318, 2325, 2330, 2333, 2336, 2339, 2344, 2355, 2361, 2365, 2368, 2371, 2376, 2383, 2386, 2390, 2398, 2403, 2406, 2409, 2416, 2421, 2430, 2433, 2436, 2441, 2444, 2456, 2466, 2483, 2487, 2491, 2493, 2510, 2512, 2528, 2539, 2542, 2545, 2554, 2563, 2579, 2582, 2585, 2593, 2597, 2604, 2613, 2617, 2623, 2627, 2630, 2633, 2636, 2639, 2645, 2649, 2654, 2658, 2661, 2664, 2667, 2672, 2678, 2682, 2686, 2690, 2696, 2698, 2703, 2709, 2715, 2719, 2734, 2739, 2742, 2744, 2747, 2751, 2755, 2758, 2761, 2769, 2775, 2777, 2783, 2788, 2793, 2797, 2804, 2806, 2817, 2856, 2866, 2868, 2871, 2875, 2879, 2889, 2891, 2897, 2899, 2908, 2920, 2934, 2939, 2942, 2949, 2954, 2962, 2964, 2970, 2975, 2979, 2984, 2990, 2997, 3003, 3005, 3014, 3020, 3028, 3034, 3039, 3044, 3052, 3067, 3069, 3073, 3077, 3080, 3083, 3092, 3095, 3098, 3104, 3110, 3114, 3126, 3132, 3135, 3140, 3144, 3151, 3161, 3163, 3187, 3199, 3204, 3206, 3210, 3213, 3216, 3226, 3229, 3239, 3244, 3249, 3252, 3255, 3263, 3269, 3276, 3284, 3287, 3298, 3302, 3308, 3315, 3318, 3327, 3341, 3344, 3358, 3369, 3372, 3384, 3389, 3402, 3407, 3420, 3429, 3432, 3435, 3442, 3445, 3457, 3463, 3465, 3473, 3481, 3489, 3501, 3506, 3517, 3528, 3536, 3544, 3551, 3558, 3560, 3563, 3568, 3573, 3592, 3601, 3604, 3631, 3640, 3643, 3647, 3651, 3655, 3662, 3666, 3670, 3674, 3678, 3683, 3687, 3692, 3698, 3703, 3710, 3714, 3720, 3724, 3729, 3737, 3743, 3748, 3755, 3760, 3764, 3769, 3775, 3782, 3787, 3794, 3799, 3806, 3810, 3818, 3822, 3824, 3827, 3832, 3842, 3857, 3860, 3868, 3875, 3880, 3886, 3890, 3897, 3902, 3905, 3908, 3912, 3921, 3939, 3942, 3974, 3979, 3985, 4005, 4010, 4016, 4019, 4023, 4027, 4033, 4036, 4040, 4044, 4049, 4052, 4055, 4058, 4071, 4077, 4085, 4092, 4097, 4100, 4107, 4110, 4118, 4121, 4126, 4133, 4136, 4156, 4168, 4171, 4177, 4182, 4191, 4199, 4204, 4210, 4217, 4225, 4228, 4239, 4241, 4255, 4261, 4269, 4271, 4277, 4281, 4284, 4287, 4292, 4297, 4301, 4304, 4307, 4310, 4313, 4321, 4332, 4335, 4338, 4343, 4346, 4350, 4354, 4360, 4368, 4371, 4384, 4389, 4391, 4396, 4403, 4410, 4419, 4427, 4435, 4442, 4450, 4457, 4465, 4469, 4473, 4475, 4481, 4486, 4490, 4497, 4502, 4507, 4512, 4514, 4524, 4534, 4550, 4568, 4580, 4587, 4602, 4607, 4610, 4615, 4620, 4625, 4628, 4631, 4636, 4643, 4647, 4652, 4659, 4663, 4669, 4678, 4687, 4699, 4701, 4714, 4720, 4724, 4726, 4733, 4746, 4753, 4755, 4771, 4775, 4779, 4784, 4789, 4794, 4799, 4802, 4814, 4867, 4876, 4880, 4889, 4893, 4902, 4906, 4911, 4914, 4918, 4923, 4925, 4934, 4939, 4950, 4954, 4968, 4976, 5014, 5016, 5035, 5038, 5065, 5069, 5073, 5077, 5081, 5084, 5099, 5106, 5120, 5133, 5158, 5177, 5192, 5208, 5215, 5226, 5229, 5248, 5251, 5264, 5268, 5288, 5300, 5304, 5326, 5330, 5340, 5344, 5350, 5354, 5358, 5362, 5369, 5374, 5385, 5389, 5392, 5397, 5403, 5414, 5418, 5421, 5425, 5429, 5432, 5442, 5445, 5449, 5454, 5460, 5463, 5468, 5471, 5478, 5480, 5486, 5490, 5499, 5504, 5506, 5516, 5519, 5524, 5532, 5535, 5540, 5542, 5544, 5550, 5567, 5573, 5586, 5592, 5596, 5601, 5631, 5646, 5651, 5655, 5668, 5672, 5674, 5683, 5689, 5691, 5695, 5698, 5701, 5704, 5707, 5709, 5712, 5716, 5724, 5729, 5732, 5738, 5742, 5746, 5751, 5753, 5757, 5761, 5768, 5774, 5778, 5780, 5782, 5795, 5803, 5811, 5822, 5832, 5837, 5841, 5845, 5852, 5855, 5857, 5865, 5869, 5872, 5879, 5886, 5891, 5898, 5901, 5903, 5906, 5912, 5917, 5921, 5928, 5938, 5945, 5948, 5951, 5955, 5966, 5969, 5972, 5975, 5978, 5985, 5988, 5991, 5998, 6010, 6017, 6019, 6024, 6029, 6031, 6037, 6044, 6049, 6054, 6058, 6062, 6066, 6068, 6072, 6076, 6079, 6082, 6084, 6094, 6096, 6101, 6105, 6110, 6114, 6121, 6126, 6130, 6133, 6139, 6142, 6161, 6168, 6172, 6175, 6179, 6183, 6186, 6189, 6194, 6203, 6210, 6214, 6218, 6222, 6225, 6227, 6232, 6236, 6241, 6247, 6254, 6259, 6264, 6273, 6280, 6288, 6299, 6304, 6308, 6311, 6315, 6320, 6324, 6329, 6337, 6348, 6353, 6357, 6360, 6363, 6365, 6368, 6371, 6374, 6378, 6382, 6386, 6388, 6397, 6402, 6408, 6412, 6414, 6421, 6426, 6432, 6434, 6438, 6445, 6450, 6453, 6459, 6463, 6469, 6478, 6484, 6486, 6491, 6494, 6503, 6510, 6512, 6519, 6524, 6527, 6537, 6548, 6553, 6557, 6565, 6575, 6582, 6588, 6599, 6605, 6615, 6624, 6628, 6631, 6633, 6635, 6639, 6647, 6650, 6655, 6660, 6667, 6669, 6675, 6679, 6682, 6687, 6690, 6692, 6698, 6707, 6713, 6716, 6724, 6727, 6731, 6737, 6739, 6742, 6746, 6751, 6758, 6765, 6767, 6773, 6775, 6780, 6782, 6786, 6795, 6799, 6807, 6809, 6823, 6826, 6834, 6843, 6849, 6854, 6862, 6864, 6869, 6873, 6878, 6883, 6889, 6905, 6907, 6916, 6931, 6936, 6939, 6945, 6950, 6963, 6968, 6972, 6979, 6999, 7011, 7016, 7024, 7026, 7028, 7037, 7040, 7045, 7050, 7053, 7064, 7072, 7077, 7079, 7082, 7086, 7097, 7118, 7126, 7139, 7149, 7155, 7161, 7164, 7167, 7193, 7195, 7216, 7226, 7239, 7244, 7248, 7250, 7262, 7269, 7275, 7281, 7285, 7296, 7309, 7313, 7318, 7321, 7324, 7333, 7344, 7346, 7350, 7355, 7364, 7369, 7377, 7387, 7395, 7399, 7402, 7409, 7417, 7421, 7428, 7436, 7438, 7447, 7450, 7462, 7471, 7478, 7487, 7497, 7502, 7506, 7508, 7511, 7516, 7521, 7529, 7537, 7540, 7547, 7555, 7563, 7571, 7588, 7595, 7603, 7620, 7626, 7632, 7643, 7649, 7654, 7662, 7667, 7670, 7679, 7686, 7691, 7695, 7700, 7706, 7711, 7719, 7774, 7781, 7787, 7789, 7791, 7793, 7799, 7803, 7807, 7818, 7821, 7825, 7829, 7833, 7836, 7839, 7842, 7851, 7856, 7860, 7893, 7903, 7907, 7913, 7918, 7927, 7935, 7946, 7954, 7963, 7972, 7977, 7981, 7991, 7996, 8004, 8009, 8012, 8019, 8025, 8033, 8041, 8044, 8051, 8053, 8056, 8062, 8071, 8075, 8089, 8092, 8094, 8100, 8110, 8112, 8114, 8122, 8125, 8128, 8138, 8146, 8152, 8158, 8165, 8169, 8173, 8176, 8179, 8185, 8192, 8195, 8203, 8205, 8214, 8219, 8221, 8228, 8234, 8237, 8249, 8256, 8258, 8262, 8268, 8273, 8277, 8280, 8283, 8292, 8295, 8298, 8302, 8306, 8308, 8311, 8314, 8320, 8327, 8334, 8340, 8342, 8346, 8351, 8369, 8374, 8376, 8385, 8392, 8396, 8408, 8411, 8424, 8427, 8431, 8440, 8447, 8452, 8457, 8461, 8464, 8467, 8470, 8473, 8476, 8479, 8482] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.tokens b/src/lib/postgresql/PostgreSqlParser.tokens index 28a887ae7..33d304d07 100644 --- a/src/lib/postgresql/PostgreSqlParser.tokens +++ b/src/lib/postgresql/PostgreSqlParser.tokens @@ -576,21 +576,20 @@ NumericFail=575 Numeric=576 PLSQLVARIABLENAME=577 PLSQLIDENTIFIER=578 -Whitespace=579 -Newline=580 -LineComment=581 -BlockComment=582 -UnterminatedBlockComment=583 -MetaCommand=584 -EndMetaCommand=585 -ErrorCharacter=586 -EscapeStringConstant=587 -UnterminatedEscapeStringConstant=588 -InvalidEscapeStringConstant=589 -InvalidUnterminatedEscapeStringConstant=590 -DollarText=591 -EndDollarStringConstant=592 -AfterEscapeStringConstantWithNewlineMode_Continued=593 +WHITE_SPACE=579 +LINE_COMMENT=580 +BRACKETED_COMMENT=581 +UnterminatedBlockComment=582 +MetaCommand=583 +EndMetaCommand=584 +ErrorCharacter=585 +EscapeStringConstant=586 +UnterminatedEscapeStringConstant=587 +InvalidEscapeStringConstant=588 +InvalidUnterminatedEscapeStringConstant=589 +DollarText=590 +EndDollarStringConstant=591 +AfterEscapeStringConstantWithNewlineMode_Continued=592 '$'=1 '('=2 ')'=3 @@ -1140,5 +1139,5 @@ AfterEscapeStringConstantWithNewlineMode_Continued=593 'FORCE_QUOTE'=549 'FORCE_NOT_NULL'=550 'FORCE_NULL'=551 -'\\\\'=585 -'\''=593 +'\\\\'=584 +'\''=592 diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index 48b8ec37e..d8ae6ee64 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -595,21 +595,20 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly Numeric = 576; public static readonly PLSQLVARIABLENAME = 577; public static readonly PLSQLIDENTIFIER = 578; - public static readonly Whitespace = 579; - public static readonly Newline = 580; - public static readonly LineComment = 581; - public static readonly BlockComment = 582; - public static readonly UnterminatedBlockComment = 583; - public static readonly MetaCommand = 584; - public static readonly EndMetaCommand = 585; - public static readonly ErrorCharacter = 586; - public static readonly EscapeStringConstant = 587; - public static readonly UnterminatedEscapeStringConstant = 588; - public static readonly InvalidEscapeStringConstant = 589; - public static readonly InvalidUnterminatedEscapeStringConstant = 590; - public static readonly DollarText = 591; - public static readonly EndDollarStringConstant = 592; - public static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 593; + public static readonly WHITE_SPACE = 579; + public static readonly LINE_COMMENT = 580; + public static readonly BRACKETED_COMMENT = 581; + public static readonly UnterminatedBlockComment = 582; + public static readonly MetaCommand = 583; + public static readonly EndMetaCommand = 584; + public static readonly ErrorCharacter = 585; + public static readonly EscapeStringConstant = 586; + public static readonly UnterminatedEscapeStringConstant = 587; + public static readonly InvalidEscapeStringConstant = 588; + public static readonly InvalidUnterminatedEscapeStringConstant = 589; + public static readonly DollarText = 590; + public static readonly EndDollarStringConstant = 591; + public static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 592; public static readonly RULE_program = 0; public static readonly RULE_singleStmt = 1; public static readonly RULE_stmt = 2; @@ -959,120 +958,122 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly RULE_xmlExistsArgument = 346; public static readonly RULE_xmlPassingMech = 347; public static readonly RULE_windowClause = 348; - public static readonly RULE_windowDefinition = 349; - public static readonly RULE_over_clause = 350; - public static readonly RULE_windowSpecification = 351; - public static readonly RULE_optFrameClause = 352; - public static readonly RULE_frameBound = 353; - public static readonly RULE_row = 354; - public static readonly RULE_explicitRow = 355; - public static readonly RULE_subType = 356; - public static readonly RULE_allOp = 357; - public static readonly RULE_mathOp = 358; - public static readonly RULE_qualOp = 359; - public static readonly RULE_qualAllOp = 360; - public static readonly RULE_subqueryOperator = 361; - public static readonly RULE_exprList = 362; - public static readonly RULE_columnExpr = 363; - public static readonly RULE_columnExprNoParen = 364; - public static readonly RULE_funcArgList = 365; - public static readonly RULE_funcArgExpr = 366; - public static readonly RULE_arrayExpr = 367; - public static readonly RULE_extractArg = 368; - public static readonly RULE_unicodeNormalForm = 369; - public static readonly RULE_substrList = 370; - public static readonly RULE_when_clause = 371; - public static readonly RULE_indirectionEl = 372; - public static readonly RULE_indirection = 373; - public static readonly RULE_optIndirection = 374; - public static readonly RULE_targetList = 375; - public static readonly RULE_targetEl = 376; - public static readonly RULE_qualifiedNameList = 377; - public static readonly RULE_tableNameList = 378; - public static readonly RULE_schemaNameList = 379; - public static readonly RULE_databaseNameList = 380; - public static readonly RULE_tableSpaceNameCreate = 381; - public static readonly RULE_tableSpaceName = 382; - public static readonly RULE_tableNameCreate = 383; - public static readonly RULE_tableName = 384; - public static readonly RULE_viewNameCreate = 385; - public static readonly RULE_viewName = 386; - public static readonly RULE_qualifiedName = 387; - public static readonly RULE_tableSpaceNameList = 388; - public static readonly RULE_nameList = 389; - public static readonly RULE_databaseNameCreate = 390; - public static readonly RULE_databaseName = 391; - public static readonly RULE_schemaName = 392; - public static readonly RULE_routineNameCreate = 393; - public static readonly RULE_routineName = 394; - public static readonly RULE_procedureName = 395; - public static readonly RULE_procedureNameCreate = 396; - public static readonly RULE_columnName = 397; - public static readonly RULE_columnNameCreate = 398; - public static readonly RULE_functionNameCreate = 399; - public static readonly RULE_functionName = 400; - public static readonly RULE_stringConst = 401; - public static readonly RULE_anysconst = 402; - public static readonly RULE_signedConst = 403; - public static readonly RULE_roleSpec = 404; - public static readonly RULE_roleList = 405; - public static readonly RULE_colId = 406; - public static readonly RULE_typeFunctionName = 407; - public static readonly RULE_nonReservedWord = 408; - public static readonly RULE_colLabel = 409; - public static readonly RULE_identifier = 410; - public static readonly RULE_unreservedKeyword = 411; - public static readonly RULE_colNameKeyword = 412; - public static readonly RULE_typeFuncNameKeyword = 413; - public static readonly RULE_reservedKeyword = 414; - public static readonly RULE_plBlock = 415; - public static readonly RULE_labelDecl = 416; - public static readonly RULE_declStatement = 417; - public static readonly RULE_declCursorArg = 418; - public static readonly RULE_assignOperator = 419; - public static readonly RULE_procStmt = 420; - public static readonly RULE_stmtPerform = 421; - public static readonly RULE_stmtCall = 422; - public static readonly RULE_stmtAssign = 423; - public static readonly RULE_stmtGetdiag = 424; - public static readonly RULE_getdiagListItem = 425; - public static readonly RULE_assignVar = 426; - public static readonly RULE_stmtIf = 427; - public static readonly RULE_stmtElse = 428; - public static readonly RULE_stmtCase = 429; - public static readonly RULE_stmtLoopWhileFor = 430; - public static readonly RULE_forControl = 431; - public static readonly RULE_stmtForeach = 432; - public static readonly RULE_stmtExit = 433; - public static readonly RULE_stmtReturn = 434; - public static readonly RULE_stmtRaise = 435; - public static readonly RULE_optRaiseUsingElem = 436; - public static readonly RULE_stmtAssert = 437; - public static readonly RULE_loopBody = 438; - public static readonly RULE_stmtExecsql = 439; - public static readonly RULE_stmtDynexecute = 440; - public static readonly RULE_optExecuteInto = 441; - public static readonly RULE_stmtOpen = 442; - public static readonly RULE_optOpenBoundListItem = 443; - public static readonly RULE_stmtFetch = 444; - public static readonly RULE_optFetchFirection = 445; - public static readonly RULE_stmtMove = 446; - public static readonly RULE_mergeStmt = 447; - public static readonly RULE_dataSource = 448; - public static readonly RULE_mergeWhenClause = 449; - public static readonly RULE_mergeInsert = 450; - public static readonly RULE_mergeUpdate = 451; - public static readonly RULE_defaultValuesOrValues = 452; - public static readonly RULE_exprofdefault = 453; - public static readonly RULE_stmtClose = 454; - public static readonly RULE_stmtNull = 455; - public static readonly RULE_stmtCommitOrRollback = 456; - public static readonly RULE_stmtSet = 457; - public static readonly RULE_cursorVariable = 458; - public static readonly RULE_exceptionSect = 459; - public static readonly RULE_procCondition = 460; - public static readonly RULE_anyIdentifier = 461; - public static readonly RULE_sqlExpression = 462; + public static readonly RULE_havingClause = 349; + public static readonly RULE_windowDefinition = 350; + public static readonly RULE_over_clause = 351; + public static readonly RULE_windowSpecification = 352; + public static readonly RULE_optFrameClause = 353; + public static readonly RULE_frameBound = 354; + public static readonly RULE_row = 355; + public static readonly RULE_explicitRow = 356; + public static readonly RULE_subType = 357; + public static readonly RULE_allOp = 358; + public static readonly RULE_mathOp = 359; + public static readonly RULE_qualOp = 360; + public static readonly RULE_qualAllOp = 361; + public static readonly RULE_subqueryOperator = 362; + public static readonly RULE_exprList = 363; + public static readonly RULE_columnExpr = 364; + public static readonly RULE_columnExprNoParen = 365; + public static readonly RULE_funcArgList = 366; + public static readonly RULE_funcArgExpr = 367; + public static readonly RULE_arrayExpr = 368; + public static readonly RULE_extractArg = 369; + public static readonly RULE_unicodeNormalForm = 370; + public static readonly RULE_substrList = 371; + public static readonly RULE_when_clause = 372; + public static readonly RULE_indirectionEl = 373; + public static readonly RULE_indirection = 374; + public static readonly RULE_optIndirection = 375; + public static readonly RULE_targetList = 376; + public static readonly RULE_targetEl = 377; + public static readonly RULE_qualifiedNameList = 378; + public static readonly RULE_tableNameList = 379; + public static readonly RULE_schemaNameList = 380; + public static readonly RULE_databaseNameList = 381; + public static readonly RULE_tableSpaceNameCreate = 382; + public static readonly RULE_tableSpaceName = 383; + public static readonly RULE_tableNameCreate = 384; + public static readonly RULE_tableName = 385; + public static readonly RULE_viewNameCreate = 386; + public static readonly RULE_viewName = 387; + public static readonly RULE_qualifiedName = 388; + public static readonly RULE_tableSpaceNameList = 389; + public static readonly RULE_nameList = 390; + public static readonly RULE_databaseNameCreate = 391; + public static readonly RULE_databaseName = 392; + public static readonly RULE_schemaName = 393; + public static readonly RULE_routineNameCreate = 394; + public static readonly RULE_routineName = 395; + public static readonly RULE_procedureName = 396; + public static readonly RULE_procedureNameCreate = 397; + public static readonly RULE_columnName = 398; + public static readonly RULE_columnNamePath = 399; + public static readonly RULE_columnNameCreate = 400; + public static readonly RULE_functionNameCreate = 401; + public static readonly RULE_functionName = 402; + public static readonly RULE_stringConst = 403; + public static readonly RULE_anysconst = 404; + public static readonly RULE_signedConst = 405; + public static readonly RULE_roleSpec = 406; + public static readonly RULE_roleList = 407; + public static readonly RULE_colId = 408; + public static readonly RULE_typeFunctionName = 409; + public static readonly RULE_nonReservedWord = 410; + public static readonly RULE_colLabel = 411; + public static readonly RULE_identifier = 412; + public static readonly RULE_unreservedKeyword = 413; + public static readonly RULE_colNameKeyword = 414; + public static readonly RULE_typeFuncNameKeyword = 415; + public static readonly RULE_reservedKeyword = 416; + public static readonly RULE_plBlock = 417; + public static readonly RULE_labelDecl = 418; + public static readonly RULE_declStatement = 419; + public static readonly RULE_declCursorArg = 420; + public static readonly RULE_assignOperator = 421; + public static readonly RULE_procStmt = 422; + public static readonly RULE_stmtPerform = 423; + public static readonly RULE_stmtCall = 424; + public static readonly RULE_stmtAssign = 425; + public static readonly RULE_stmtGetdiag = 426; + public static readonly RULE_getdiagListItem = 427; + public static readonly RULE_assignVar = 428; + public static readonly RULE_stmtIf = 429; + public static readonly RULE_stmtElse = 430; + public static readonly RULE_stmtCase = 431; + public static readonly RULE_stmtLoopWhileFor = 432; + public static readonly RULE_forControl = 433; + public static readonly RULE_stmtForeach = 434; + public static readonly RULE_stmtExit = 435; + public static readonly RULE_stmtReturn = 436; + public static readonly RULE_stmtRaise = 437; + public static readonly RULE_optRaiseUsingElem = 438; + public static readonly RULE_stmtAssert = 439; + public static readonly RULE_loopBody = 440; + public static readonly RULE_stmtExecsql = 441; + public static readonly RULE_stmtDynexecute = 442; + public static readonly RULE_optExecuteInto = 443; + public static readonly RULE_stmtOpen = 444; + public static readonly RULE_optOpenBoundListItem = 445; + public static readonly RULE_stmtFetch = 446; + public static readonly RULE_optFetchFirection = 447; + public static readonly RULE_stmtMove = 448; + public static readonly RULE_mergeStmt = 449; + public static readonly RULE_dataSource = 450; + public static readonly RULE_mergeWhenClause = 451; + public static readonly RULE_mergeInsert = 452; + public static readonly RULE_mergeUpdate = 453; + public static readonly RULE_defaultValuesOrValues = 454; + public static readonly RULE_exprofdefault = 455; + public static readonly RULE_stmtClose = 456; + public static readonly RULE_stmtNull = 457; + public static readonly RULE_stmtCommitOrRollback = 458; + public static readonly RULE_stmtSet = 459; + public static readonly RULE_cursorVariable = 460; + public static readonly RULE_exceptionSect = 461; + public static readonly RULE_procCondition = 462; + public static readonly RULE_anyIdentifier = 463; + public static readonly RULE_sqlExpression = 464; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1175,8 +1176,8 @@ export class PostgreSqlParser extends SQLParserBase { "'BUFFER_USAGE_LIMIT'", "'FORCE_QUOTE'", "'FORCE_NOT_NULL'", "'FORCE_NULL'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, null, null, null, - "'\\\\'", null, null, null, null, null, null, null, "'''" + null, null, null, null, null, null, null, null, null, null, "'\\\\'", + null, null, null, null, null, null, null, "'''" ]; public static readonly symbolicNames = [ @@ -1296,8 +1297,8 @@ export class PostgreSqlParser extends SQLParserBase { "InvalidUnterminatedBinaryStringConstant", "HexadecimalStringConstant", "UnterminatedHexadecimalStringConstant", "InvalidHexadecimalStringConstant", "InvalidUnterminatedHexadecimalStringConstant", "Integral", "NumericFail", - "Numeric", "PLSQLVARIABLENAME", "PLSQLIDENTIFIER", "Whitespace", - "Newline", "LineComment", "BlockComment", "UnterminatedBlockComment", + "Numeric", "PLSQLVARIABLENAME", "PLSQLIDENTIFIER", "WHITE_SPACE", + "LINE_COMMENT", "BRACKETED_COMMENT", "UnterminatedBlockComment", "MetaCommand", "EndMetaCommand", "ErrorCharacter", "EscapeStringConstant", "UnterminatedEscapeStringConstant", "InvalidEscapeStringConstant", "InvalidUnterminatedEscapeStringConstant", "DollarText", "EndDollarStringConstant", @@ -1392,10 +1393,10 @@ export class PostgreSqlParser extends SQLParserBase { "predicate", "valueExpression", "primaryExpression", "funcApplication", "func_expr", "funcExprWindowless", "funcExprCommonSubExpr", "xmlAttributeList", "xmlAttributeEl", "documentOrContent", "xmlExistsArgument", "xmlPassingMech", - "windowClause", "windowDefinition", "over_clause", "windowSpecification", - "optFrameClause", "frameBound", "row", "explicitRow", "subType", - "allOp", "mathOp", "qualOp", "qualAllOp", "subqueryOperator", "exprList", - "columnExpr", "columnExprNoParen", "funcArgList", "funcArgExpr", + "windowClause", "havingClause", "windowDefinition", "over_clause", + "windowSpecification", "optFrameClause", "frameBound", "row", "explicitRow", + "subType", "allOp", "mathOp", "qualOp", "qualAllOp", "subqueryOperator", + "exprList", "columnExpr", "columnExprNoParen", "funcArgList", "funcArgExpr", "arrayExpr", "extractArg", "unicodeNormalForm", "substrList", "when_clause", "indirectionEl", "indirection", "optIndirection", "targetList", "targetEl", "qualifiedNameList", "tableNameList", "schemaNameList", @@ -1403,16 +1404,16 @@ export class PostgreSqlParser extends SQLParserBase { "tableName", "viewNameCreate", "viewName", "qualifiedName", "tableSpaceNameList", "nameList", "databaseNameCreate", "databaseName", "schemaName", "routineNameCreate", "routineName", "procedureName", "procedureNameCreate", - "columnName", "columnNameCreate", "functionNameCreate", "functionName", - "stringConst", "anysconst", "signedConst", "roleSpec", "roleList", - "colId", "typeFunctionName", "nonReservedWord", "colLabel", "identifier", - "unreservedKeyword", "colNameKeyword", "typeFuncNameKeyword", "reservedKeyword", - "plBlock", "labelDecl", "declStatement", "declCursorArg", "assignOperator", - "procStmt", "stmtPerform", "stmtCall", "stmtAssign", "stmtGetdiag", - "getdiagListItem", "assignVar", "stmtIf", "stmtElse", "stmtCase", - "stmtLoopWhileFor", "forControl", "stmtForeach", "stmtExit", "stmtReturn", - "stmtRaise", "optRaiseUsingElem", "stmtAssert", "loopBody", "stmtExecsql", - "stmtDynexecute", "optExecuteInto", "stmtOpen", "optOpenBoundListItem", + "columnName", "columnNamePath", "columnNameCreate", "functionNameCreate", + "functionName", "stringConst", "anysconst", "signedConst", "roleSpec", + "roleList", "colId", "typeFunctionName", "nonReservedWord", "colLabel", + "identifier", "unreservedKeyword", "colNameKeyword", "typeFuncNameKeyword", + "reservedKeyword", "plBlock", "labelDecl", "declStatement", "declCursorArg", + "assignOperator", "procStmt", "stmtPerform", "stmtCall", "stmtAssign", + "stmtGetdiag", "getdiagListItem", "assignVar", "stmtIf", "stmtElse", + "stmtCase", "stmtLoopWhileFor", "forControl", "stmtForeach", "stmtExit", + "stmtReturn", "stmtRaise", "optRaiseUsingElem", "stmtAssert", "loopBody", + "stmtExecsql", "stmtDynexecute", "optExecuteInto", "stmtOpen", "optOpenBoundListItem", "stmtFetch", "optFetchFirection", "stmtMove", "mergeStmt", "dataSource", "mergeWhenClause", "mergeInsert", "mergeUpdate", "defaultValuesOrValues", "exprofdefault", "stmtClose", "stmtNull", "stmtCommitOrRollback", @@ -1441,21 +1442,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 933; 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 === 584) { + 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 === 583) { { { - this.state = 926; + this.state = 930; this.singleStmt(); } } - this.state = 931; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 932; + this.state = 936; this.match(PostgreSqlParser.EOF); } } @@ -1480,14 +1481,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 934; + this.state = 938; this.stmt(); - this.state = 936; + this.state = 940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 935; + this.state = 939; this.match(PostgreSqlParser.SEMI); } } @@ -1513,832 +1514,832 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmt); let _la: number; try { - this.state = 1058; + this.state = 1062; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 938; + this.state = 942; this.alterEventTrigStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 939; + this.state = 943; this.alterCollationStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 940; + this.state = 944; this.alterDatabaseStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 941; + this.state = 945; this.alterDatabaseSetStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 942; + this.state = 946; this.alterDefaultPrivilegesStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 943; + this.state = 947; this.alterDomainStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 944; + this.state = 948; this.alterEnumStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 945; + this.state = 949; this.alterExtensionStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 946; + this.state = 950; this.alterExtensionContentsStmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 947; + this.state = 951; this.alterFdwStmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 948; + this.state = 952; this.alterForeignServerStmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 949; + this.state = 953; this.alterFunctionStmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 950; + this.state = 954; this.alterGroupStmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 951; + this.state = 955; this.alterObjectDependsStmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 952; + this.state = 956; this.alterObjectSchemaStmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 953; + this.state = 957; this.alterOwnerStmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 954; + this.state = 958; this.alterOperatorStmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 955; + this.state = 959; this.alterTypeStmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 956; + this.state = 960; this.alterPolicyStmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 957; + this.state = 961; this.alterProcedureStmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 958; + this.state = 962; this.alterSeqStmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 959; + this.state = 963; this.alterSystemStmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 960; + this.state = 964; this.alterTableStmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 961; + this.state = 965; this.alterTblSpcStmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 962; + this.state = 966; this.alterCompositeTypeStmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 963; + this.state = 967; this.alterPublicationStmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 964; + this.state = 968; this.alterRoleSetStmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 965; + this.state = 969; this.alterRoutineStmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 966; + this.state = 970; this.alterRoleStmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 967; + this.state = 971; this.alterSubscriptionStmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 968; + this.state = 972; this.alterStatsStmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 969; + this.state = 973; this.alterSearchConfigurationStmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 970; + this.state = 974; this.alterSearchDictionaryStmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 971; + this.state = 975; this.alterUserMappingStmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 972; + this.state = 976; this.analyzeStmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 973; + this.state = 977; this.callStmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 974; + this.state = 978; this.checkPointStmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 975; + this.state = 979; this.closePortalStmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 976; + this.state = 980; this.clusterStmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 977; + this.state = 981; this.commentStmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 978; + this.state = 982; this.constraintsSetStmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 979; + this.state = 983; this.copyStmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 980; + this.state = 984; this.createAccessMethodStmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 981; + this.state = 985; this.createAsStmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 982; + this.state = 986; this.createAssertionStmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 983; + this.state = 987; this.createCastStmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 984; + this.state = 988; this.createConversionStmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 985; + this.state = 989; this.createDomainStmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 986; + this.state = 990; this.createExtensionStmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 987; + this.state = 991; this.createFdwStmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 988; + this.state = 992; this.createForeignServerStmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 989; + this.state = 993; this.createForeignTableStmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 990; + this.state = 994; this.createFunctionStmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 991; + this.state = 995; this.createGroupStmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 992; + this.state = 996; this.createMaterializedViewStmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 993; + this.state = 997; this.createOperatorClassStmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 994; + this.state = 998; this.createOperatorFamilyStmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 995; + this.state = 999; this.createPublicationStmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 996; + this.state = 1000; this.alterOperatorFamilyStmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 997; + this.state = 1001; this.createPolicyStmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 998; + this.state = 1002; this.createProceduralLangStmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 999; + this.state = 1003; this.createSchemaStmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1000; + this.state = 1004; this.createSeqStmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1001; + this.state = 1005; this.createStmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1002; + this.state = 1006; this.createSubscriptionStmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1003; + this.state = 1007; this.createStatsStmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1004; + this.state = 1008; this.createTableSpaceStmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1005; + this.state = 1009; this.createTransformStmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1006; + this.state = 1010; this.createTrigStmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1007; + this.state = 1011; this.createEventTrigStmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1008; + this.state = 1012; this.createRoleStmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1009; + this.state = 1013; this.createUserStmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1010; + this.state = 1014; this.createUserMappingStmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1011; + this.state = 1015; this.createDbStmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1012; + this.state = 1016; this.dealLocateStmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1013; + this.state = 1017; this.declareCursorStmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1014; + this.state = 1018; this.defineStmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1015; + this.state = 1019; this.deleteStmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1016; + this.state = 1020; this.discardStmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1017; + this.state = 1021; this.doStmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1018; + this.state = 1022; this.dropStmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1019; + this.state = 1023; this.executeStmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1020; + this.state = 1024; this.explainStmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1021; + this.state = 1025; this.fetchStmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1022; + this.state = 1026; this.grantStmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1023; + this.state = 1027; this.grantRoleStmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1024; + this.state = 1028; this.mergeStmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1025; + this.state = 1029; this.importForeignSchemaStmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1026; + this.state = 1030; this.indexStmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1027; + this.state = 1031; this.insertStmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1028; + this.state = 1032; this.listenStmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1029; + this.state = 1033; this.refreshMaterializedViewStmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1030; + this.state = 1034; this.loadStmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1031; + this.state = 1035; this.lockStmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1032; + this.state = 1036; this.notifyStmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1033; + this.state = 1037; this.prepareStmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1034; + this.state = 1038; this.reassignOwnedStmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1035; + this.state = 1039; this.reindexStmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1036; + this.state = 1040; this.removeAggregateStmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1037; + this.state = 1041; this.removeFuncStmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1038; + this.state = 1042; this.removeOperatorStmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1039; + this.state = 1043; this.renameStmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1040; + this.state = 1044; this.revokeStmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1041; + this.state = 1045; this.revokeRoleStmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1042; + this.state = 1046; this.ruleStmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1043; + this.state = 1047; this.secLabelStmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1044; + this.state = 1048; this.selectStmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1045; + this.state = 1049; this.transactionStmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1046; + this.state = 1050; this.truncateStmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1047; + this.state = 1051; this.unListenStmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1048; + this.state = 1052; this.updateStmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1049; + this.state = 1053; this.vacuumStmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1050; + this.state = 1054; this.variableResetStmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1051; + this.state = 1055; this.variableSetStmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1052; + this.state = 1056; this.variableShowStmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1053; + this.state = 1057; this.viewStmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1054; + this.state = 1058; this.match(PostgreSqlParser.MetaCommand); - this.state = 1056; + this.state = 1060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 585) { + if (_la === 584) { { - this.state = 1055; + this.state = 1059; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -2367,9 +2368,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1060; + this.state = 1064; this.match(PostgreSqlParser.KW_CALL); - this.state = 1061; + this.state = 1065; this.funcApplication(); } } @@ -2394,35 +2395,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1063; + this.state = 1067; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1064; + this.state = 1068; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1065; + this.state = 1069; this.roleSpec(); - this.state = 1067; + this.state = 1071; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1066; + this.state = 1070; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1072; + this.state = 1076; 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 = 1069; + this.state = 1073; this.createOperatorRoleElem(); } } } - this.state = 1074; + this.state = 1078; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -2447,15 +2448,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 10, PostgreSqlParser.RULE_alterOperatorRoleElem); let _la: number; try { - this.state = 1113; + this.state = 1117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1075; + this.state = 1079; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1078; + this.state = 1082; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -2463,13 +2464,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1076; + this.state = 1080; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 1077; + this.state = 1081; this.match(PostgreSqlParser.KW_NULL); } break; @@ -2481,7 +2482,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1080; + this.state = 1084; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -2490,152 +2491,152 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1081; + this.state = 1085; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1082; + this.state = 1086; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1083; + this.state = 1087; this.match(PostgreSqlParser.KW_INHERIT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1084; + this.state = 1088; this.match(PostgreSqlParser.KW_NOINHERIT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1085; + this.state = 1089; this.match(PostgreSqlParser.KW_CREATEUSER); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1086; + this.state = 1090; this.match(PostgreSqlParser.KW_NOCREATEUSER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1087; + this.state = 1091; this.match(PostgreSqlParser.KW_CREATEROLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1088; + this.state = 1092; this.match(PostgreSqlParser.KW_NOCREATEROLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1089; + this.state = 1093; this.match(PostgreSqlParser.KW_CREATEDB); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1090; + this.state = 1094; this.match(PostgreSqlParser.KW_NOCREATEDB); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1091; + this.state = 1095; this.match(PostgreSqlParser.KW_SUPERUSER); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1092; + this.state = 1096; this.match(PostgreSqlParser.KW_NOSUPERUSER); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1093; + this.state = 1097; this.match(PostgreSqlParser.KW_LOGIN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1094; + this.state = 1098; this.match(PostgreSqlParser.KW_NOLOGIN); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1095; + this.state = 1099; this.match(PostgreSqlParser.KW_REPLICATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1096; + this.state = 1100; this.match(PostgreSqlParser.KW_NOREPLICATION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1097; + this.state = 1101; this.match(PostgreSqlParser.KW_BYPASSRLS); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1098; + this.state = 1102; this.match(PostgreSqlParser.KW_NOBYPASSRLS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1099; + this.state = 1103; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 1100; + this.state = 1104; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 1101; + this.state = 1105; this.signedConst(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1102; + this.state = 1106; this.match(PostgreSqlParser.KW_VALID); - this.state = 1103; + this.state = 1107; this.match(PostgreSqlParser.KW_UNTIL); - this.state = 1104; + this.state = 1108; this.stringConst(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1105; + this.state = 1109; this.match(PostgreSqlParser.KW_IN); - this.state = 1106; + this.state = 1110; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2644,14 +2645,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1107; + this.state = 1111; this.nameList(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1108; + this.state = 1112; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2660,23 +2661,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1113; this.roleList(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1110; + this.state = 1114; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 1111; + this.state = 1115; this.nameList(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1112; + this.state = 1116; this.identifier(); } break; @@ -2701,29 +2702,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 12, PostgreSqlParser.RULE_createOperatorRoleElem); let _la: number; try { - this.state = 1123; + this.state = 1127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1115; + this.state = 1119; this.alterOperatorRoleElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1116; + this.state = 1120; this.match(PostgreSqlParser.KW_SYSID); - this.state = 1117; + this.state = 1121; this.match(PostgreSqlParser.Integral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1118; + this.state = 1122; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2732,16 +2733,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1119; + this.state = 1123; this.roleList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1120; + this.state = 1124; this.match(PostgreSqlParser.KW_IN); - this.state = 1121; + this.state = 1125; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2750,7 +2751,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1122; + this.state = 1126; this.roleList(); } break; @@ -2777,35 +2778,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1125; + this.state = 1129; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1126; + this.state = 1130; this.match(PostgreSqlParser.KW_USER); - this.state = 1127; + this.state = 1131; this.roleSpec(); - this.state = 1129; + this.state = 1133; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 1128; + this.state = 1132; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1134; + this.state = 1138; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1131; + this.state = 1135; this.createOperatorRoleElem(); } } } - this.state = 1136; + this.state = 1140; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); } @@ -2833,9 +2834,9 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1137; + this.state = 1141; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1138; + this.state = 1142; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2844,31 +2845,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1139; + this.state = 1143; this.roleSpec(); - this.state = 1141; + this.state = 1145; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1140; + this.state = 1144; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1146; + this.state = 1150; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1143; + this.state = 1147; this.alterOperatorRoleElem(); } } } - this.state = 1148; + this.state = 1152; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); } @@ -2895,9 +2896,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1149; + this.state = 1153; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1150; + this.state = 1154; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2906,12 +2907,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1153; + this.state = 1157; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1151; + this.state = 1155; this.match(PostgreSqlParser.KW_ALL); } break; @@ -3334,20 +3335,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1152; + this.state = 1156; this.roleSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1155; + this.state = 1159; this.match(PostgreSqlParser.KW_IN); - this.state = 1156; + this.state = 1160; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 1157; + this.state = 1161; this.databaseName(); - this.state = 1158; + this.state = 1162; this.setOrResetClause(); } } @@ -3372,23 +3373,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1160; + this.state = 1164; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1161; + this.state = 1165; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 1162; + this.state = 1166; this.routineName(); - this.state = 1164; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1163; + this.state = 1167; this.funcArgs(); } } - this.state = 1166; + this.state = 1170; this.alterRoutineClause(); } } @@ -3412,36 +3413,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1194; + this.state = 1198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1168; - this.routineAction(); this.state = 1172; + this.routineAction(); + this.state = 1176; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1169; + this.state = 1173; this.routineAction(); } } } - this.state = 1174; + this.state = 1178; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } - this.state = 1176; + this.state = 1180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 1175; + this.state = 1179; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -3451,56 +3452,56 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1178; + this.state = 1182; this.match(PostgreSqlParser.KW_RENAME); - this.state = 1179; + this.state = 1183; this.match(PostgreSqlParser.KW_TO); - this.state = 1180; + this.state = 1184; this.routineNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1181; + this.state = 1185; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1182; + this.state = 1186; this.match(PostgreSqlParser.KW_TO); - this.state = 1183; + this.state = 1187; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1184; + this.state = 1188; this.match(PostgreSqlParser.KW_SET); - this.state = 1185; + this.state = 1189; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1186; + this.state = 1190; this.schemaNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1188; + this.state = 1192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1187; + this.state = 1191; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1190; + this.state = 1194; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 1191; + this.state = 1195; this.match(PostgreSqlParser.KW_ON); - this.state = 1192; + this.state = 1196; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 1193; + this.state = 1197; this.colId(); } break; @@ -3525,86 +3526,86 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 24, PostgreSqlParser.RULE_routineAction); let _la: number; try { - this.state = 1238; + this.state = 1242; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1196; + this.state = 1200; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1197; + this.state = 1201; this.match(PostgreSqlParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1198; + this.state = 1202; this.match(PostgreSqlParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1200; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 1199; + this.state = 1203; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 1202; + this.state = 1206; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1213; + this.state = 1217; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1204; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1203; + this.state = 1207; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1206; + this.state = 1210; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1207; + this.state = 1211; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 1209; + this.state = 1213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1208; + this.state = 1212; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1211; + this.state = 1215; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1212; + this.state = 1216; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -3614,9 +3615,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1215; + this.state = 1219; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 1216; + this.state = 1220; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -3630,29 +3631,29 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1217; + this.state = 1221; this.match(PostgreSqlParser.KW_COST); - this.state = 1218; + this.state = 1222; this.colLabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1219; + this.state = 1223; this.match(PostgreSqlParser.KW_ROWS); - this.state = 1220; + this.state = 1224; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1221; + this.state = 1225; this.match(PostgreSqlParser.KW_SET); - this.state = 1222; + this.state = 1226; this.colId(); - this.state = 1223; + this.state = 1227; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -3661,18 +3662,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1226; + this.state = 1230; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 1224; + this.state = 1228; this.colId(); } break; case 2: { - this.state = 1225; + this.state = 1229; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -3682,22 +3683,22 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1228; + this.state = 1232; this.match(PostgreSqlParser.KW_SET); - this.state = 1229; + this.state = 1233; this.colId(); - this.state = 1230; + this.state = 1234; this.match(PostgreSqlParser.KW_FROM); - this.state = 1231; + this.state = 1235; this.match(PostgreSqlParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1233; + this.state = 1237; this.match(PostgreSqlParser.KW_RESET); - this.state = 1236; + this.state = 1240; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -4095,13 +4096,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1234; + this.state = 1238; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1235; + this.state = 1239; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4133,35 +4134,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1240; + this.state = 1244; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1241; + this.state = 1245; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1242; + this.state = 1246; this.roleSpec(); - this.state = 1244; + this.state = 1248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 1243; + this.state = 1247; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1249; + this.state = 1253; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1246; + this.state = 1250; this.createOperatorRoleElem(); } } } - this.state = 1251; + this.state = 1255; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -4188,13 +4189,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1252; + this.state = 1256; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1253; + this.state = 1257; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1254; + this.state = 1258; this.roleSpec(); - this.state = 1255; + this.state = 1259; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4203,9 +4204,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1256; + this.state = 1260; this.match(PostgreSqlParser.KW_USER); - this.state = 1257; + this.state = 1261; this.roleList(); } } @@ -4231,61 +4232,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1259; + this.state = 1263; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1260; + this.state = 1264; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1262; + this.state = 1266; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 1261; + this.state = 1265; this.ifNotExists(); } break; } - this.state = 1270; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 1265; + this.state = 1269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 1264; + this.state = 1268; this.schemaNameCreate(); } } - this.state = 1267; + this.state = 1271; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1268; + this.state = 1272; this.roleSpec(); } break; case 2: { - this.state = 1269; + this.state = 1273; this.schemaNameCreate(); } break; } - this.state = 1275; + this.state = 1279; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1272; + this.state = 1276; this.schemaStmt(); } } } - this.state = 1277; + this.state = 1281; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } @@ -4311,7 +4312,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1278; + this.state = 1282; this.anyName(); } } @@ -4333,48 +4334,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SchemaStmtContext(this.context, this.state); this.enterRule(localContext, 34, PostgreSqlParser.RULE_schemaStmt); try { - this.state = 1286; + this.state = 1290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1280; + this.state = 1284; this.createStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1281; + this.state = 1285; this.indexStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1282; + this.state = 1286; this.createSeqStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1283; + this.state = 1287; this.createTrigStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1284; + this.state = 1288; this.grantStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1285; + this.state = 1289; this.viewStmt(); } break; @@ -4401,14 +4402,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1288; + this.state = 1292; this.match(PostgreSqlParser.KW_SET); - this.state = 1290; + this.state = 1294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 1289; + this.state = 1293; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4420,7 +4421,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 1292; + this.state = 1296; this.setRest(); } } @@ -4442,37 +4443,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestContext(this.context, this.state); this.enterRule(localContext, 38, PostgreSqlParser.RULE_setRest); try { - this.state = 1302; + this.state = 1306; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1298; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1295; + this.state = 1299; this.transactionModeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1296; + this.state = 1300; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1297; + this.state = 1301; this.match(PostgreSqlParser.KW_CHARACTERISTICS); - this.state = 1298; + this.state = 1302; this.match(PostgreSqlParser.KW_AS); - this.state = 1299; + this.state = 1303; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1300; + this.state = 1304; this.transactionModeList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1301; + this.state = 1305; this.setRestMore(); } break; @@ -4499,12 +4500,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1306; + this.state = 1310; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1304; + this.state = 1308; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4903,19 +4904,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1305; + this.state = 1309; this.varName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1309; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 1308; + this.state = 1312; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4927,18 +4928,18 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1313; + this.state = 1317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 1311; + this.state = 1315; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 1312; + this.state = 1316; this.varList(); } break; @@ -4963,55 +4964,55 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestMoreContext(this.context, this.state); this.enterRule(localContext, 42, PostgreSqlParser.RULE_setRestMore); try { - this.state = 1343; + this.state = 1347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1315; + this.state = 1319; this.match(PostgreSqlParser.KW_TIME); - this.state = 1316; + this.state = 1320; this.match(PostgreSqlParser.KW_ZONE); - this.state = 1317; + this.state = 1321; this.zoneValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1318; + this.state = 1322; this.match(PostgreSqlParser.KW_CATALOG); - this.state = 1319; + this.state = 1323; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1320; + this.state = 1324; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1321; + this.state = 1325; this.schemaName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1322; + this.state = 1326; this.match(PostgreSqlParser.KW_NAMES); - this.state = 1325; + this.state = 1329; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 1323; + this.state = 1327; this.stringConst(); } break; case 2: { - this.state = 1324; + this.state = 1328; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -5021,60 +5022,60 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1327; + this.state = 1331; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1328; + this.state = 1332; this.nonReservedWordOrStringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1329; + this.state = 1333; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1330; + this.state = 1334; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1331; + this.state = 1335; this.nonReservedWordOrStringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1332; + this.state = 1336; this.match(PostgreSqlParser.KW_XML); - this.state = 1333; + this.state = 1337; this.match(PostgreSqlParser.KW_OPTION); - this.state = 1334; + this.state = 1338; this.documentOrContent(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1335; + this.state = 1339; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1336; + this.state = 1340; this.match(PostgreSqlParser.KW_SNAPSHOT); - this.state = 1337; + this.state = 1341; this.stringConst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1338; + this.state = 1342; this.varName(); - this.state = 1339; + this.state = 1343; this.match(PostgreSqlParser.KW_FROM); - this.state = 1340; + this.state = 1344; this.match(PostgreSqlParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1342; + this.state = 1346; this.genericSet(); } break; @@ -5101,21 +5102,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1349; this.colId(); - this.state = 1350; + this.state = 1354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1346; + this.state = 1350; this.match(PostgreSqlParser.DOT); - this.state = 1347; + this.state = 1351; this.colId(); } } - this.state = 1352; + this.state = 1356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5142,21 +5143,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; + this.state = 1357; this.varValue(); - this.state = 1358; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1354; + this.state = 1358; this.match(PostgreSqlParser.COMMA); - this.state = 1355; + this.state = 1359; this.varValue(); } } - this.state = 1360; + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5180,7 +5181,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new VarValueContext(this.context, this.state); this.enterRule(localContext, 48, PostgreSqlParser.RULE_varValue); try { - this.state = 1363; + this.state = 1367; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -5603,7 +5604,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1361; + this.state = 1365; this.booleanOrString(); } break; @@ -5613,7 +5614,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1362; + this.state = 1366; this.numericOnly(); } break; @@ -5640,15 +5641,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 50, PostgreSqlParser.RULE_isoLevel); let _la: number; try { - this.state = 1370; + this.state = 1374; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1369; this.match(PostgreSqlParser.KW_READ); - this.state = 1366; + this.state = 1370; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -5662,16 +5663,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1367; + this.state = 1371; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 1368; + this.state = 1372; this.match(PostgreSqlParser.KW_READ); } break; case PostgreSqlParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1369; + this.state = 1373; this.match(PostgreSqlParser.KW_SERIALIZABLE); } break; @@ -5697,48 +5698,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptBooleanOrStringColumnContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSqlParser.RULE_optBooleanOrStringColumn); try { - this.state = 1378; + this.state = 1382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1372; + this.state = 1376; this.match(PostgreSqlParser.KW_TRUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1373; + this.state = 1377; this.match(PostgreSqlParser.KW_FALSE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1374; + this.state = 1378; this.match(PostgreSqlParser.KW_ON); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1375; + this.state = 1379; this.columnName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1376; + this.state = 1380; this.typeFuncNameKeyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1377; + this.state = 1381; this.stringConst(); } break; @@ -5762,27 +5763,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new BooleanOrStringContext(this.context, this.state); this.enterRule(localContext, 54, PostgreSqlParser.RULE_booleanOrString); try { - this.state = 1384; + this.state = 1388; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 1380; + this.state = 1384; this.match(PostgreSqlParser.KW_TRUE); } break; case PostgreSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 1381; + this.state = 1385; this.match(PostgreSqlParser.KW_FALSE); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 1382; + this.state = 1386; this.match(PostgreSqlParser.KW_ON); } break; @@ -6203,7 +6204,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1383; + this.state = 1387; this.nonReservedWordOrStringConst(); } break; @@ -6229,43 +6230,43 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ZoneValueContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSqlParser.RULE_zoneValue); try { - this.state = 1400; + this.state = 1404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1390; this.stringConst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1387; + this.state = 1391; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1388; + this.state = 1392; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1389; + this.state = 1393; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1390; + this.state = 1394; this.stringConst(); - this.state = 1392; + this.state = 1396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1391; + this.state = 1395; this.optInterval(); } break; @@ -6275,25 +6276,25 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1394; + this.state = 1398; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1395; + this.state = 1399; this.optFloat(); - this.state = 1396; + this.state = 1400; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1398; + this.state = 1402; this.numericOnly(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1399; + this.state = 1403; this.match(PostgreSqlParser.KW_LOCAL); } break; @@ -6317,20 +6318,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordOrStringConstContext(this.context, this.state); this.enterRule(localContext, 58, PostgreSqlParser.RULE_nonReservedWordOrStringConst); try { - this.state = 1404; + this.state = 1408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1406; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1403; + this.state = 1407; this.stringConst(); } break; @@ -6356,9 +6357,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1410; this.match(PostgreSqlParser.KW_RESET); - this.state = 1407; + this.state = 1411; this.resetRest(); } } @@ -6380,49 +6381,49 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ResetRestContext(this.context, this.state); this.enterRule(localContext, 62, PostgreSqlParser.RULE_resetRest); try { - this.state = 1418; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1409; + this.state = 1413; this.match(PostgreSqlParser.KW_TIME); - this.state = 1410; + this.state = 1414; this.match(PostgreSqlParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1411; + this.state = 1415; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1412; + this.state = 1416; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1413; + this.state = 1417; this.match(PostgreSqlParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1414; + this.state = 1418; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1415; + this.state = 1419; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1416; + this.state = 1420; this.match(PostgreSqlParser.KW_ALL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1417; + this.state = 1421; this.varName(); } break; @@ -6446,63 +6447,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 64, PostgreSqlParser.RULE_setOrResetClause); try { - this.state = 1423; + this.state = 1427; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1420; + this.state = 1424; this.match(PostgreSqlParser.KW_SET); - this.state = 1421; + this.state = 1425; this.setRest(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1422; - this.variableResetStmt(); - } - 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 functionSetOrResetClause(): FunctionSetOrResetClauseContext { - let localContext = new FunctionSetOrResetClauseContext(this.context, this.state); - this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionSetOrResetClause); - try { - this.state = 1428; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_SET: - this.enterOuterAlt(localContext, 1); - { - this.state = 1425; - this.match(PostgreSqlParser.KW_SET); this.state = 1426; - this.setRestMore(); - } - break; - case PostgreSqlParser.KW_RESET: - this.enterOuterAlt(localContext, 2); - { - this.state = 1427; + this.variableResetStmt(); + } + 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 functionSetOrResetClause(): FunctionSetOrResetClauseContext { + let localContext = new FunctionSetOrResetClauseContext(this.context, this.state); + this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionSetOrResetClause); + try { + this.state = 1432; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_SET: + this.enterOuterAlt(localContext, 1); + { + this.state = 1429; + this.match(PostgreSqlParser.KW_SET); + this.state = 1430; + this.setRestMore(); + } + break; + case PostgreSqlParser.KW_RESET: + this.enterOuterAlt(localContext, 2); + { + this.state = 1431; this.variableResetStmt(); } break; @@ -6530,46 +6531,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1430; + this.state = 1434; this.match(PostgreSqlParser.KW_SHOW); - this.state = 1440; + this.state = 1444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1431; + this.state = 1435; this.varName(); } break; case 2: { - this.state = 1432; + this.state = 1436; this.match(PostgreSqlParser.KW_TIME); - this.state = 1433; + this.state = 1437; this.match(PostgreSqlParser.KW_ZONE); } break; case 3: { - this.state = 1434; + this.state = 1438; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1435; + this.state = 1439; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1436; + this.state = 1440; this.match(PostgreSqlParser.KW_LEVEL); } break; case 4: { - this.state = 1437; + this.state = 1441; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1438; + this.state = 1442; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 1439; + this.state = 1443; this.match(PostgreSqlParser.KW_ALL); } break; @@ -6597,16 +6598,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; + this.state = 1446; this.match(PostgreSqlParser.KW_SET); - this.state = 1443; + this.state = 1447; this.match(PostgreSqlParser.KW_CONSTRAINTS); - this.state = 1446; + this.state = 1450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1444; + this.state = 1448; this.match(PostgreSqlParser.KW_ALL); } break; @@ -7005,14 +7006,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1445; + this.state = 1449; this.qualifiedNameList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1448; + this.state = 1452; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -7043,7 +7044,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1450; + this.state = 1454; this.match(PostgreSqlParser.KW_CHECKPOINT); } } @@ -7068,9 +7069,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1452; + this.state = 1456; this.match(PostgreSqlParser.KW_DISCARD); - this.state = 1453; + this.state = 1457; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -7100,29 +7101,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 76, PostgreSqlParser.RULE_alterTableStmt); let _la: number; try { - this.state = 1572; + this.state = 1576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1459; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1456; + this.state = 1460; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1458; + this.state = 1462; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1457; + this.state = 1461; this.ifExists(); } break; } - this.state = 1460; + this.state = 1464; this.relationExpr(); - this.state = 1463; + this.state = 1467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7143,14 +7144,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1461; + this.state = 1465; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: case PostgreSqlParser.KW_DETACH: { - this.state = 1462; + this.state = 1466; this.partitionCmd(); } break; @@ -7162,42 +7163,42 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1465; + this.state = 1469; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1466; + this.state = 1470; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1467; + this.state = 1471; this.match(PostgreSqlParser.KW_ALL); - this.state = 1468; + this.state = 1472; this.match(PostgreSqlParser.KW_IN); - this.state = 1469; - this.optTableSpace(); this.state = 1473; + this.optTableSpace(); + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1470; + this.state = 1474; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1471; + this.state = 1475; this.match(PostgreSqlParser.KW_BY); - this.state = 1472; + this.state = 1476; this.roleList(); } } - this.state = 1475; + this.state = 1479; this.match(PostgreSqlParser.KW_SET); - this.state = 1476; + this.state = 1480; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1477; + this.state = 1481; this.tableSpaceName(); - this.state = 1479; + this.state = 1483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1478; + this.state = 1482; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7207,59 +7208,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1481; + this.state = 1485; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1482; + this.state = 1486; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1484; + this.state = 1488; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1483; + this.state = 1487; this.ifExists(); } break; } - this.state = 1486; + this.state = 1490; this.tableName(); - this.state = 1487; + this.state = 1491; this.indexPartitionCmd(); - this.state = 1488; + this.state = 1492; this.partitionBoundSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1490; + this.state = 1494; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1491; + this.state = 1495; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1493; + this.state = 1497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1492; + this.state = 1496; this.ifExists(); } break; } - this.state = 1495; + this.state = 1499; this.tableName(); - this.state = 1496; + this.state = 1500; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1497; + this.state = 1501; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1498; + this.state = 1502; this.qualifiedName(); - this.state = 1500; + this.state = 1504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 1499; + this.state = 1503; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -7276,23 +7277,23 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1502; + this.state = 1506; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1503; + this.state = 1507; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1505; + this.state = 1509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 1504; + this.state = 1508; this.ifExists(); } break; } - this.state = 1507; + this.state = 1511; this.qualifiedName(); - this.state = 1510; + this.state = 1514; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7313,13 +7314,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1508; + this.state = 1512; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: { - this.state = 1509; + this.state = 1513; this.indexPartitionCmd(); } break; @@ -7331,40 +7332,40 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1512; + this.state = 1516; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1513; + this.state = 1517; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1514; + this.state = 1518; this.match(PostgreSqlParser.KW_ALL); - this.state = 1515; + this.state = 1519; this.match(PostgreSqlParser.KW_IN); - this.state = 1516; - this.optTableSpace(); this.state = 1520; + this.optTableSpace(); + this.state = 1524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1517; + this.state = 1521; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1518; + this.state = 1522; this.match(PostgreSqlParser.KW_BY); - this.state = 1519; + this.state = 1523; this.roleList(); } } - this.state = 1522; + this.state = 1526; this.match(PostgreSqlParser.KW_SET); - this.state = 1523; + this.state = 1527; this.optTableSpace(); - this.state = 1525; + this.state = 1529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1524; + this.state = 1528; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7374,100 +7375,100 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1527; + this.state = 1531; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1528; + this.state = 1532; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 1530; + this.state = 1534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1529; + this.state = 1533; this.ifExists(); } break; } - this.state = 1532; + this.state = 1536; this.qualifiedName(); - this.state = 1533; + this.state = 1537; this.alterTableCmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1535; + this.state = 1539; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1537; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1536; + this.state = 1540; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 1539; + this.state = 1543; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1541; + this.state = 1545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1540; + this.state = 1544; this.ifExists(); } break; } - this.state = 1543; + this.state = 1547; this.viewName(); - this.state = 1544; + this.state = 1548; this.alterTableCmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1546; + this.state = 1550; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1547; + this.state = 1551; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 1548; + this.state = 1552; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1549; + this.state = 1553; this.match(PostgreSqlParser.KW_ALL); - this.state = 1550; + this.state = 1554; this.match(PostgreSqlParser.KW_IN); - this.state = 1551; - this.optTableSpace(); this.state = 1555; + this.optTableSpace(); + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1552; + this.state = 1556; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1553; + this.state = 1557; this.match(PostgreSqlParser.KW_BY); - this.state = 1554; + this.state = 1558; this.roleList(); } } - this.state = 1557; + this.state = 1561; this.match(PostgreSqlParser.KW_SET); - this.state = 1558; + this.state = 1562; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1559; + this.state = 1563; this.tableSpaceName(); - this.state = 1561; + this.state = 1565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1560; + this.state = 1564; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7477,25 +7478,25 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1563; + this.state = 1567; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1564; + this.state = 1568; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 1565; + this.state = 1569; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1567; + this.state = 1571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1566; + this.state = 1570; this.ifExists(); } break; } - this.state = 1569; + this.state = 1573; this.relationExpr(); - this.state = 1570; + this.state = 1574; this.alterTableCmds(); } break; @@ -7522,21 +7523,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1574; + this.state = 1578; this.alterTableCmd(); - this.state = 1579; + this.state = 1583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1575; + this.state = 1579; this.match(PostgreSqlParser.COMMA); - this.state = 1576; + this.state = 1580; this.alterTableCmd(); } } - this.state = 1581; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7560,26 +7561,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionCmdContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSqlParser.RULE_partitionCmd); try { - this.state = 1588; + this.state = 1592; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 1582; + this.state = 1586; this.indexPartitionCmd(); - this.state = 1583; + this.state = 1587; this.partitionBoundSpec(); } break; case PostgreSqlParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 1585; + this.state = 1589; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1586; + this.state = 1590; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1587; + this.state = 1591; this.qualifiedName(); } break; @@ -7607,11 +7608,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1594; this.match(PostgreSqlParser.KW_ATTACH); - this.state = 1591; + this.state = 1595; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1592; + this.state = 1596; this.qualifiedName(); } } @@ -7635,52 +7636,52 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1827; + this.state = 1831; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1598; this.match(PostgreSqlParser.KW_ADD); - this.state = 1597; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 1595; + this.state = 1599; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1596; + this.state = 1600; this.colId(); } } - this.state = 1599; + this.state = 1603; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1600; + this.state = 1604; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1601; + this.state = 1605; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1602; - this.colId(); this.state = 1606; + this.colId(); + this.state = 1610; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1603; + this.state = 1607; this.constraintAttributeElem(); } } } - this.state = 1608; + this.state = 1612; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); } @@ -7689,39 +7690,39 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1609; + this.state = 1613; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 1610; + this.state = 1614; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1611; + this.state = 1615; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1612; + this.state = 1616; this.match(PostgreSqlParser.KW_DROP); - this.state = 1613; + this.state = 1617; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1615; + this.state = 1619; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1614; + this.state = 1618; this.ifExists(); } break; } - this.state = 1617; + this.state = 1621; this.colId(); - this.state = 1619; + this.state = 1623; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1618; + this.state = 1622; this.optDropBehavior(); } break; @@ -7731,11 +7732,11 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1621; + this.state = 1625; this.match(PostgreSqlParser.KW_SET); - this.state = 1622; + this.state = 1626; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 1623; + this.state = 1627; _la = this.tokenStream.LA(1); if(!(_la === 158 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -7749,20 +7750,20 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1624; + this.state = 1628; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 1625; + this.state = 1629; this.match(PostgreSqlParser.KW_ON); - this.state = 1626; + this.state = 1630; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1627; + this.state = 1631; this.match(PostgreSqlParser.KW_SET); - this.state = 1628; + this.state = 1632; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -7776,14 +7777,14 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1629; + this.state = 1633; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1631; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 1630; + this.state = 1634; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -7795,29 +7796,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1633; + this.state = 1637; this.match(PostgreSqlParser.KW_TRIGGER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1634; + this.state = 1638; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1635; - this.match(PostgreSqlParser.KW_TRIGGER); this.state = 1639; + this.match(PostgreSqlParser.KW_TRIGGER); + this.state = 1643; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1636; + this.state = 1640; this.match(PostgreSqlParser.KW_ALL); } break; case PostgreSqlParser.KW_USER: { - this.state = 1637; + this.state = 1641; this.match(PostgreSqlParser.KW_USER); } break; @@ -8216,7 +8217,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1638; + this.state = 1642; this.colId(); } break; @@ -8228,9 +8229,9 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1641; + this.state = 1645; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1642; + this.state = 1646; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8239,113 +8240,113 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1643; + this.state = 1647; this.match(PostgreSqlParser.KW_RULE); - this.state = 1644; + this.state = 1648; this.colId(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1645; + this.state = 1649; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1646; + this.state = 1650; this.match(PostgreSqlParser.KW_RULE); - this.state = 1647; + this.state = 1651; this.colId(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1649; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1648; + this.state = 1652; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1651; + this.state = 1655; this.match(PostgreSqlParser.KW_INHERIT); - this.state = 1652; + this.state = 1656; this.qualifiedName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1653; + this.state = 1657; this.match(PostgreSqlParser.KW_OF); - this.state = 1654; + this.state = 1658; this.anyName(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1655; + this.state = 1659; this.match(PostgreSqlParser.KW_NOT); - this.state = 1656; + this.state = 1660; this.match(PostgreSqlParser.KW_OF); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1657; + this.state = 1661; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1658; + this.state = 1662; this.match(PostgreSqlParser.KW_TO); - this.state = 1659; + this.state = 1663; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1660; + this.state = 1664; this.match(PostgreSqlParser.KW_SET); - this.state = 1661; + this.state = 1665; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1662; + this.state = 1666; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1663; + this.state = 1667; this.match(PostgreSqlParser.KW_REPLICA); - this.state = 1664; + this.state = 1668; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1669; + this.state = 1673; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOTHING: { - this.state = 1665; + this.state = 1669; this.match(PostgreSqlParser.KW_NOTHING); } break; case PostgreSqlParser.KW_FULL: { - this.state = 1666; + this.state = 1670; this.match(PostgreSqlParser.KW_FULL); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1667; + this.state = 1671; this.match(PostgreSqlParser.KW_DEFAULT); } break; case PostgreSqlParser.KW_USING: { - this.state = 1668; + this.state = 1672; this.existingIndex(); } break; @@ -8357,18 +8358,18 @@ export class PostgreSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1677; + this.state = 1681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 1671; + this.state = 1675; this.match(PostgreSqlParser.KW_ENABLE); } break; case PostgreSqlParser.KW_DISABLE: { - this.state = 1672; + this.state = 1676; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -8376,17 +8377,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: { { - this.state = 1674; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1673; + this.state = 1677; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1676; + this.state = 1680; this.match(PostgreSqlParser.KW_FORCE); } } @@ -8394,47 +8395,47 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1679; + this.state = 1683; this.match(PostgreSqlParser.KW_ROW); - this.state = 1680; + this.state = 1684; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 1681; + this.state = 1685; this.match(PostgreSqlParser.KW_SECURITY); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1682; + this.state = 1686; this.match(PostgreSqlParser.KW_DROP); - this.state = 1684; + this.state = 1688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 1683; + this.state = 1687; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1687; + this.state = 1691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 1686; + this.state = 1690; this.ifExists(); } break; } - this.state = 1689; + this.state = 1693; this.columnName(); - this.state = 1691; + this.state = 1695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1690; + this.state = 1694; this.optDropBehavior(); } break; @@ -8444,62 +8445,62 @@ export class PostgreSqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1693; + this.state = 1697; this.match(PostgreSqlParser.KW_ADD); - this.state = 1695; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1694; + this.state = 1698; this.match(PostgreSqlParser.KW_COLUMN); } } - this.state = 1698; + this.state = 1702; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1697; + this.state = 1701; this.ifNotExists(); } break; } - this.state = 1700; + this.state = 1704; this.column_def(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1701; + this.state = 1705; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1703; + this.state = 1707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1702; + this.state = 1706; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1705; + this.state = 1709; this.columnName(); - this.state = 1708; + this.state = 1712; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: case PostgreSqlParser.KW_SET: { - this.state = 1706; + this.state = 1710; this.alterColumnDefault(); } break; case PostgreSqlParser.KW_OPTIONS: { - this.state = 1707; + this.state = 1711; this.alterGenericOptions(); } break; @@ -8511,21 +8512,21 @@ export class PostgreSqlParser extends SQLParserBase { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1710; + this.state = 1714; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1712; + this.state = 1716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1711; + this.state = 1715; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1714; + this.state = 1718; this.columnName(); - this.state = 1715; + this.state = 1719; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8534,39 +8535,39 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1716; + this.state = 1720; this.match(PostgreSqlParser.KW_NOT); - this.state = 1717; + this.state = 1721; this.match(PostgreSqlParser.KW_NULL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1719; + this.state = 1723; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1721; + this.state = 1725; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1720; + this.state = 1724; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1723; + this.state = 1727; this.columnName(); - this.state = 1724; + this.state = 1728; this.match(PostgreSqlParser.KW_DROP); - this.state = 1725; + this.state = 1729; this.match(PostgreSqlParser.KW_EXPRESSION); - this.state = 1727; + this.state = 1731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1726; + this.state = 1730; this.ifExists(); } break; @@ -8576,54 +8577,54 @@ export class PostgreSqlParser extends SQLParserBase { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1729; + this.state = 1733; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1731; + this.state = 1735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1730; + this.state = 1734; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1733; + this.state = 1737; this.columnName(); - this.state = 1734; + this.state = 1738; this.match(PostgreSqlParser.KW_SET); - this.state = 1735; + this.state = 1739; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 1736; + this.state = 1740; this.signedConst(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1743; + this.state = 1747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1738; + this.state = 1742; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1740; + this.state = 1744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1739; + this.state = 1743; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1742; + this.state = 1746; this.columnName(); } } - this.state = 1745; + this.state = 1749; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8632,84 +8633,84 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1746; + this.state = 1750; this.relOptions(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1747; + this.state = 1751; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1749; + this.state = 1753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1748; + this.state = 1752; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1751; + this.state = 1755; this.columnName(); - this.state = 1752; + this.state = 1756; this.match(PostgreSqlParser.KW_SET); - this.state = 1753; + this.state = 1757; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 1754; + this.state = 1758; this.colId(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1756; + this.state = 1760; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1758; + this.state = 1762; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1757; + this.state = 1761; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1760; + this.state = 1764; this.columnName(); - this.state = 1761; + this.state = 1765; this.match(PostgreSqlParser.KW_ADD); - this.state = 1762; + this.state = 1766; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1763; + this.state = 1767; this.generatedWhen(); - this.state = 1764; + this.state = 1768; this.match(PostgreSqlParser.KW_AS); - this.state = 1765; + this.state = 1769; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1774; + this.state = 1778; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1766; + this.state = 1770; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1768; + this.state = 1772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1767; + this.state = 1771; this.seqOptElem(); } } - this.state = 1770; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 1772; + this.state = 1776; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -8719,50 +8720,50 @@ export class PostgreSqlParser extends SQLParserBase { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1776; + this.state = 1780; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1778; + this.state = 1782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1777; + this.state = 1781; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1780; + this.state = 1784; this.columnName(); - this.state = 1794; + this.state = 1798; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 1794; + this.state = 1798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RESTART: { - this.state = 1781; + this.state = 1785; this.match(PostgreSqlParser.KW_RESTART); - this.state = 1786; + this.state = 1790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1783; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 1782; + this.state = 1786; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 1785; + this.state = 1789; this.numericOnly(); } break; @@ -8771,9 +8772,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SET: { - this.state = 1788; - this.match(PostgreSqlParser.KW_SET); this.state = 1792; + this.match(PostgreSqlParser.KW_SET); + this.state = 1796; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: @@ -8787,15 +8788,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SEQUENCE: case PostgreSqlParser.KW_START: { - this.state = 1789; + this.state = 1793; this.seqOptElem(); } break; case PostgreSqlParser.KW_GENERATED: { - this.state = 1790; + this.state = 1794; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1791; + this.state = 1795; this.generatedWhen(); } break; @@ -8812,7 +8813,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1796; + this.state = 1800; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 106, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -8821,30 +8822,30 @@ export class PostgreSqlParser extends SQLParserBase { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1798; + this.state = 1802; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1800; + this.state = 1804; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1799; + this.state = 1803; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1802; + this.state = 1806; this.columnName(); - this.state = 1803; + this.state = 1807; this.match(PostgreSqlParser.KW_DROP); - this.state = 1804; + this.state = 1808; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1806; + this.state = 1810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1805; + this.state = 1809; this.ifExists(); } break; @@ -8854,54 +8855,54 @@ export class PostgreSqlParser extends SQLParserBase { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1808; + this.state = 1812; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1810; + this.state = 1814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1809; + this.state = 1813; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1812; + this.state = 1816; this.columnName(); - this.state = 1815; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1813; + this.state = 1817; this.match(PostgreSqlParser.KW_SET); - this.state = 1814; + this.state = 1818; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1817; + this.state = 1821; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1818; + this.state = 1822; this.typename(); - this.state = 1820; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1819; + this.state = 1823; this.collateClause(); } } - this.state = 1824; + this.state = 1828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1822; + this.state = 1826; this.match(PostgreSqlParser.KW_USING); - this.state = 1823; + this.state = 1827; this.expression(); } } @@ -8911,7 +8912,7 @@ export class PostgreSqlParser extends SQLParserBase { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1826; + this.state = 1830; this.alterGenericOptions(); } break; @@ -8935,26 +8936,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AlterColumnDefaultContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSqlParser.RULE_alterColumnDefault); try { - this.state = 1834; + this.state = 1838; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1829; + this.state = 1833; this.match(PostgreSqlParser.KW_SET); - this.state = 1830; + this.state = 1834; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 1831; + this.state = 1835; this.expression(); } break; case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1836; this.match(PostgreSqlParser.KW_DROP); - this.state = 1833; + this.state = 1837; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -8983,7 +8984,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1836; + this.state = 1840; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -9014,9 +9015,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1838; + this.state = 1842; this.match(PostgreSqlParser.KW_COLLATE); - this.state = 1839; + this.state = 1843; this.anyName(); } } @@ -9041,27 +9042,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1845; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1842; + this.state = 1846; this.relOptionElem(); - this.state = 1847; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1843; + this.state = 1847; this.match(PostgreSqlParser.COMMA); - this.state = 1844; + this.state = 1848; this.relOptionElem(); } } - this.state = 1849; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1850; + this.state = 1854; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9085,9 +9086,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1852; + this.state = 1856; this.match(PostgreSqlParser.KW_WITH); - this.state = 1853; + this.state = 1857; this.relOptions(); } } @@ -9111,24 +9112,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1855; + this.state = 1859; this.colLabel(); - this.state = 1860; + this.state = 1864; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 1856; + this.state = 1860; this.match(PostgreSqlParser.EQUAL); - this.state = 1857; + this.state = 1861; this.defArg(); } break; case PostgreSqlParser.DOT: { - this.state = 1858; + this.state = 1862; this.match(PostgreSqlParser.DOT); - this.state = 1859; + this.state = 1863; this.defElem(); } break; @@ -9158,68 +9159,68 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionBoundSpecContext(this.context, this.state); this.enterRule(localContext, 98, PostgreSqlParser.RULE_partitionBoundSpec); try { - this.state = 1885; + this.state = 1889; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1862; + this.state = 1866; this.match(PostgreSqlParser.KW_FOR); - this.state = 1863; + this.state = 1867; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1864; + this.state = 1868; this.match(PostgreSqlParser.KW_WITH); - this.state = 1865; + this.state = 1869; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1866; + this.state = 1870; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1867; + this.state = 1871; this.numericOnly(); - this.state = 1868; + this.state = 1872; this.match(PostgreSqlParser.COMMA); - this.state = 1869; + this.state = 1873; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1870; + this.state = 1874; this.numericOnly(); - this.state = 1871; + this.state = 1875; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1873; + this.state = 1877; this.match(PostgreSqlParser.KW_FOR); - this.state = 1874; + this.state = 1878; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1875; + this.state = 1879; this.match(PostgreSqlParser.KW_IN); - this.state = 1876; + this.state = 1880; this.executeParamClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1877; + this.state = 1881; this.match(PostgreSqlParser.KW_FOR); - this.state = 1878; + this.state = 1882; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1879; + this.state = 1883; this.match(PostgreSqlParser.KW_FROM); - this.state = 1880; + this.state = 1884; this.executeParamClause(); - this.state = 1881; + this.state = 1885; this.match(PostgreSqlParser.KW_TO); - this.state = 1882; + this.state = 1886; this.executeParamClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1884; + this.state = 1888; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9246,27 +9247,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1887; + this.state = 1891; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1888; + this.state = 1892; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1889; + this.state = 1893; this.anyName(); - this.state = 1890; + this.state = 1894; this.alterTypeCmd(); - this.state = 1895; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1891; + this.state = 1895; this.match(PostgreSqlParser.COMMA); - this.state = 1892; + this.state = 1896; this.alterTypeCmd(); } } - this.state = 1897; + this.state = 1901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9291,24 +9292,24 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 102, PostgreSqlParser.RULE_alterTypeCmd); let _la: number; try { - this.state = 1928; + this.state = 1932; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 1898; + this.state = 1902; this.match(PostgreSqlParser.KW_ADD); - this.state = 1899; + this.state = 1903; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1900; + this.state = 1904; this.tableFuncElement(); - this.state = 1902; + this.state = 1906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1901; + this.state = 1905; this.optDropBehavior(); } break; @@ -9318,28 +9319,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1904; + this.state = 1908; this.match(PostgreSqlParser.KW_DROP); - this.state = 1905; + this.state = 1909; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1907; + this.state = 1911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1906; + this.state = 1910; this.ifExists(); } break; } - this.state = 1909; + this.state = 1913; this.colId(); - this.state = 1911; + this.state = 1915; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1910; + this.state = 1914; this.optDropBehavior(); } break; @@ -9349,44 +9350,44 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 1913; + this.state = 1917; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1914; + this.state = 1918; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1915; + this.state = 1919; this.colId(); - this.state = 1918; + this.state = 1922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1916; + this.state = 1920; this.match(PostgreSqlParser.KW_SET); - this.state = 1917; + this.state = 1921; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1920; + this.state = 1924; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1921; + this.state = 1925; this.typename(); - this.state = 1923; + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1922; + this.state = 1926; this.collateClause(); } } - this.state = 1926; + this.state = 1930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1925; + this.state = 1929; this.optDropBehavior(); } break; @@ -9417,9 +9418,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1930; + this.state = 1934; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 1933; + this.state = 1937; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -9817,13 +9818,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1931; + this.state = 1935; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1932; + this.state = 1936; this.match(PostgreSqlParser.KW_ALL); } break; @@ -9851,37 +9852,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 106, PostgreSqlParser.RULE_copyStmt); let _la: number; try { - this.state = 1984; + this.state = 1988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1935; + this.state = 1939; this.match(PostgreSqlParser.KW_COPY); - this.state = 1937; + this.state = 1941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 1936; + this.state = 1940; this.match(PostgreSqlParser.KW_BINARY); } } - this.state = 1939; + this.state = 1943; this.tableName(); - this.state = 1941; + this.state = 1945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1940; + this.state = 1944; this.optColumnList(); } } - this.state = 1943; + this.state = 1947; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -9890,17 +9891,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1945; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1944; + this.state = 1948; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1950; + this.state = 1954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -9908,65 +9909,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1947; + this.state = 1951; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1948; + this.state = 1952; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1949; + this.state = 1953; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1957; + this.state = 1961; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1953; + this.state = 1957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1952; + this.state = 1956; this.match(PostgreSqlParser.KW_USING); } } - this.state = 1955; + this.state = 1959; this.match(PostgreSqlParser.KW_DELIMITERS); - this.state = 1956; + this.state = 1960; this.stringConst(); } break; } - this.state = 1960; + this.state = 1964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1959; + this.state = 1963; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1962; + this.state = 1966; this.copyOptions(); - this.state = 1964; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 1963; + this.state = 1967; this.whereClause(); } } @@ -9976,27 +9977,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1966; + this.state = 1970; this.match(PostgreSqlParser.KW_COPY); - this.state = 1967; + this.state = 1971; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1968; + this.state = 1972; this.preParableStmt(); - this.state = 1969; + this.state = 1973; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 1970; + this.state = 1974; this.match(PostgreSqlParser.KW_TO); - this.state = 1972; + this.state = 1976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1971; + this.state = 1975; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1977; + this.state = 1981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10004,36 +10005,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1974; + this.state = 1978; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1975; + this.state = 1979; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1976; + this.state = 1980; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1980; + this.state = 1984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1979; + this.state = 1983; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1982; + this.state = 1986; this.copyOptions(); } break; @@ -10061,30 +10062,30 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2030; + this.state = 2034; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2028; + this.state = 2032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1986; + this.state = 1990; this.match(PostgreSqlParser.KW_BINARY); } break; case 2: { - this.state = 1987; + this.state = 1991; this.match(PostgreSqlParser.KW_FREEZE); } break; case 3: { - this.state = 1988; + this.state = 1992; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 183 || _la === 197 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -10093,50 +10094,50 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1990; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 1989; + this.state = 1993; this.match(PostgreSqlParser.KW_AS); } } - this.state = 1992; + this.state = 1996; this.stringConst(); } break; case 4: { - this.state = 1993; + this.state = 1997; this.match(PostgreSqlParser.KW_CSV); } break; case 5: { - this.state = 1994; + this.state = 1998; this.match(PostgreSqlParser.KW_HEADER); } break; case 6: { - this.state = 1995; + this.state = 1999; this.match(PostgreSqlParser.KW_FORCE); - this.state = 1996; + this.state = 2000; this.match(PostgreSqlParser.KW_QUOTE); - this.state = 1999; + this.state = 2003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1997; + this.state = 2001; this.columnList(); } break; case 2: { - this.state = 1998; + this.state = 2002; this.match(PostgreSqlParser.STAR); } break; @@ -10145,35 +10146,35 @@ export class PostgreSqlParser extends SQLParserBase { break; case 7: { - this.state = 2001; + this.state = 2005; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2003; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2002; + this.state = 2006; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2005; + this.state = 2009; this.match(PostgreSqlParser.KW_NULL); - this.state = 2006; + this.state = 2010; this.columnList(); } break; case 8: { - this.state = 2007; + this.state = 2011; this.match(PostgreSqlParser.KW_ENCODING); - this.state = 2008; + this.state = 2012; this.stringConst(); } break; case 9: { - this.state = 2009; + this.state = 2013; _la = this.tokenStream.LA(1); if(!(((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10182,60 +10183,60 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2026; + this.state = 2030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 2010; + this.state = 2014; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2013; + this.state = 2017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 2011; + this.state = 2015; this.columnList(); } break; case 2: { - this.state = 2012; + this.state = 2016; this.match(PostgreSqlParser.STAR); } break; } - this.state = 2022; + this.state = 2026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2015; + this.state = 2019; this.match(PostgreSqlParser.COMMA); - this.state = 2018; + this.state = 2022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 2016; + this.state = 2020; this.columnList(); } break; case 2: { - this.state = 2017; + this.state = 2021; this.match(PostgreSqlParser.STAR); } break; } } } - this.state = 2024; + this.state = 2028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2025; + this.state = 2029; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10245,7 +10246,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2032; + this.state = 2036; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); } @@ -10270,68 +10271,68 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 110, PostgreSqlParser.RULE_copyOptions); let _la: number; try { - this.state = 2051; + this.state = 2055; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2037; this.copyOptionsNoparens(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2034; + this.state = 2038; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2037; + this.state = 2041; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 2035; + this.state = 2039; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2036; + this.state = 2040; this.copyGenericOptElem(); } break; } - this.state = 2046; + this.state = 2050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2039; + this.state = 2043; this.match(PostgreSqlParser.COMMA); - this.state = 2042; + this.state = 2046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 2040; + this.state = 2044; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2041; + this.state = 2045; this.copyGenericOptElem(); } break; } } } - this.state = 2048; + this.state = 2052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2049; + this.state = 2053; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10358,9 +10359,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2053; + this.state = 2057; this.colLabel(); - this.state = 2068; + this.state = 2072; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10782,7 +10783,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2054; + this.state = 2058; this.booleanOrString(); } break; @@ -10791,39 +10792,39 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 2055; + this.state = 2059; this.numericOnly(); } break; case PostgreSqlParser.STAR: { - this.state = 2056; + this.state = 2060; this.match(PostgreSqlParser.STAR); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2057; + this.state = 2061; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2058; + this.state = 2062; this.optBooleanOrStringColumn(); - this.state = 2063; + this.state = 2067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2059; + this.state = 2063; this.match(PostgreSqlParser.COMMA); - this.state = 2060; + this.state = 2064; this.optBooleanOrStringColumn(); } } - this.state = 2065; + this.state = 2069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2066; + this.state = 2070; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10857,107 +10858,107 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2074; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2072; + this.state = 2076; 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 = 2071; + this.state = 2075; this.optTemp(); } } - this.state = 2074; + this.state = 2078; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2076; + this.state = 2080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 2075; + this.state = 2079; this.ifNotExists(); } break; } - this.state = 2078; + this.state = 2082; this.tableNameCreate(); - this.state = 2144; + this.state = 2148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2079; + this.state = 2083; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2081; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 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)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 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)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2080; + this.state = 2084; this.tableElementList(); } } - this.state = 2083; + this.state = 2087; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2085; + this.state = 2089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 2084; + this.state = 2088; this.optInherit(); } break; } - this.state = 2088; + this.state = 2092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 2087; + this.state = 2091; this.partitionSpec(); } break; } - this.state = 2091; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2090; + this.state = 2094; this.tableAccessMethodClause(); } } - this.state = 2094; + this.state = 2098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 2093; + this.state = 2097; this.optWith(); } break; } - this.state = 2097; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2096; + this.state = 2100; this.onCommitOption(); } } - this.state = 2100; + this.state = 2104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 2099; + this.state = 2103; this.optTableSpace(); } break; @@ -10966,66 +10967,66 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_OF: { - this.state = 2102; + this.state = 2106; this.match(PostgreSqlParser.KW_OF); - this.state = 2103; + this.state = 2107; this.anyName(); - this.state = 2105; + this.state = 2109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 2104; + this.state = 2108; this.optTypedTableElEmentList(); } break; } - this.state = 2108; + this.state = 2112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 2107; + this.state = 2111; this.partitionSpec(); } break; } - this.state = 2111; + this.state = 2115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2110; + this.state = 2114; this.tableAccessMethodClause(); } } - this.state = 2114; + this.state = 2118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 2113; + this.state = 2117; this.optWith(); } break; } - this.state = 2117; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2116; + this.state = 2120; this.onCommitOption(); } } - this.state = 2120; + this.state = 2124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 2119; + this.state = 2123; this.optTableSpace(); } break; @@ -11034,70 +11035,70 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_PARTITION: { - this.state = 2122; + this.state = 2126; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2123; + this.state = 2127; this.match(PostgreSqlParser.KW_OF); - this.state = 2124; + this.state = 2128; this.qualifiedName(); - this.state = 2126; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2125; + this.state = 2129; this.optTypedTableElEmentList(); } } - this.state = 2128; + this.state = 2132; this.partitionBoundSpec(); - this.state = 2130; + this.state = 2134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 2129; + this.state = 2133; this.partitionSpec(); } break; } - this.state = 2133; + this.state = 2137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2132; + this.state = 2136; this.tableAccessMethodClause(); } } - this.state = 2136; + this.state = 2140; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 2135; + this.state = 2139; this.optWith(); } break; } - this.state = 2139; + this.state = 2143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2138; + this.state = 2142; this.onCommitOption(); } } - this.state = 2142; + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 2141; + this.state = 2145; this.optTableSpace(); } break; @@ -11128,20 +11129,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 116, PostgreSqlParser.RULE_optTemp); let _la: number; try { - this.state = 2151; + this.state = 2155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2146; + this.state = 2150; this.match(PostgreSqlParser.KW_TEMPORARY); } break; case PostgreSqlParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 2147; + this.state = 2151; this.match(PostgreSqlParser.KW_TEMP); } break; @@ -11149,7 +11150,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 2148; + this.state = 2152; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11158,7 +11159,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2149; + this.state = 2153; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -11172,7 +11173,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 4); { - this.state = 2150; + this.state = 2154; this.match(PostgreSqlParser.KW_UNLOGGED); } break; @@ -11201,27 +11202,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2153; + this.state = 2157; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2154; + this.state = 2158; this.typedTableElement(); - this.state = 2159; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2155; + this.state = 2159; this.match(PostgreSqlParser.COMMA); - this.state = 2156; + this.state = 2160; this.typedTableElement(); } } - this.state = 2161; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2162; + this.state = 2166; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -11246,21 +11247,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2168; this.tableElement(); - this.state = 2169; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2165; + this.state = 2169; this.match(PostgreSqlParser.COMMA); - this.state = 2166; + this.state = 2170; this.tableElement(); } } - this.state = 2171; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11285,49 +11286,49 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 122, PostgreSqlParser.RULE_tableElement); let _la: number; try { - this.state = 2187; + this.state = 2191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2174; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2172; + this.state = 2176; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2173; + this.state = 2177; this.colId(); } } - this.state = 2176; + this.state = 2180; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2177; + this.state = 2181; this.column_def(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2178; + this.state = 2182; this.match(PostgreSqlParser.KW_LIKE); - this.state = 2179; + this.state = 2183; this.qualifiedName(); - this.state = 2184; + this.state = 2188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 2180; + this.state = 2184; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -11336,11 +11337,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2181; + this.state = 2185; this.tableLikeOption(); } } - this.state = 2186; + this.state = 2190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11367,37 +11368,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 124, PostgreSqlParser.RULE_typedTableElement); let _la: number; try { - this.state = 2205; + this.state = 2209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2193; this.columnNameCreate(); - this.state = 2192; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2190; + this.state = 2194; this.match(PostgreSqlParser.KW_WITH); - this.state = 2191; + this.state = 2195; this.match(PostgreSqlParser.KW_OPTIONS); } } - this.state = 2197; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2059) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { { { - this.state = 2194; + this.state = 2198; this.colConstraint(); } } - this.state = 2199; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11406,19 +11407,19 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2200; + this.state = 2204; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2201; + this.state = 2205; this.colId(); } } - this.state = 2204; + this.state = 2208; this.constraintElem(); } break; @@ -11446,63 +11447,63 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2211; this.columnNameCreate(); - this.state = 2208; + this.state = 2212; localContext._colType = this.typename(); - this.state = 2210; + this.state = 2214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2209; + this.state = 2213; this.createGenericOptions(); } break; } - this.state = 2221; + this.state = 2225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2212; + this.state = 2216; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 2219; + this.state = 2223; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 2213; + this.state = 2217; this.match(PostgreSqlParser.KW_PLAIN); } break; case 2: { - this.state = 2214; + this.state = 2218; this.match(PostgreSqlParser.KW_EXTERNAL); } break; case 3: { - this.state = 2215; + this.state = 2219; this.match(PostgreSqlParser.KW_EXTENDED); } break; case 4: { - this.state = 2216; + this.state = 2220; this.match(PostgreSqlParser.KW_MAIN); } break; case 5: { - this.state = 2217; + this.state = 2221; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 6: { - this.state = 2218; + this.state = 2222; this.colId(); } break; @@ -11510,53 +11511,53 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 2225; + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 2223; + this.state = 2227; this.match(PostgreSqlParser.KW_COMPRESSION); - this.state = 2224; + this.state = 2228; this.colId(); } } - this.state = 2228; + this.state = 2232; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 2227; + this.state = 2231; this.collateClause(); } break; } - this.state = 2232; + this.state = 2236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2230; + this.state = 2234; this.match(PostgreSqlParser.KW_WITH); - this.state = 2231; + this.state = 2235; this.match(PostgreSqlParser.KW_OPTIONS); } break; } - this.state = 2237; + this.state = 2241; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2234; + this.state = 2238; this.colConstraint(); } } } - this.state = 2239; + this.state = 2243; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } @@ -11583,48 +11584,48 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2240; + this.state = 2244; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2241; + this.state = 2245; this.colId(); } } - this.state = 2244; + this.state = 2248; this.colConstraintElem(); - this.state = 2249; + this.state = 2253; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 2246; + this.state = 2250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2245; + this.state = 2249; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2248; + this.state = 2252; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; } - this.state = 2253; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 2251; + this.state = 2255; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 2252; + this.state = 2256; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -11657,47 +11658,47 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 130, PostgreSqlParser.RULE_colConstraintElem); let _la: number; try { - this.state = 2335; + this.state = 2339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2256; + this.state = 2260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2255; + this.state = 2259; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2258; + this.state = 2262; this.match(PostgreSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2259; + this.state = 2263; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2261; + this.state = 2265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 2260; + this.state = 2264; this.optDefinition(); } break; } - this.state = 2264; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2263; + this.state = 2267; this.optConstableSpace(); } } @@ -11707,59 +11708,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2266; + this.state = 2270; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2272; + this.state = 2276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2267; + this.state = 2271; this.match(PostgreSqlParser.KW_NULLS); - this.state = 2269; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2268; + this.state = 2272; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2271; + this.state = 2275; this.match(PostgreSqlParser.KW_DISTINCT); } break; } { - this.state = 2276; + this.state = 2280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2274; + this.state = 2278; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2275; + this.state = 2279; this.indexParams(); } break; } - this.state = 2279; + this.state = 2283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 2278; + this.state = 2282; this.withClause(); } break; } - this.state = 2282; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2281; + this.state = 2285; this.optConstableSpace(); } } @@ -11770,26 +11771,26 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2284; + this.state = 2288; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2285; + this.state = 2289; this.match(PostgreSqlParser.KW_KEY); - this.state = 2287; + this.state = 2291; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { - this.state = 2286; + this.state = 2290; this.optDefinition(); } break; } - this.state = 2290; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2289; + this.state = 2293; this.optConstableSpace(); } } @@ -11799,22 +11800,22 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2292; + this.state = 2296; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2293; + this.state = 2297; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2294; + this.state = 2298; this.expression(); - this.state = 2295; + this.state = 2299; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2298; + this.state = 2302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 2296; + this.state = 2300; this.match(PostgreSqlParser.KW_NO); - this.state = 2297; + this.state = 2301; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -11824,50 +11825,50 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2300; + this.state = 2304; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 2301; + this.state = 2305; this.primaryExpression(0); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2302; + this.state = 2306; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 2303; + this.state = 2307; this.generatedWhen(); - this.state = 2304; + this.state = 2308; this.match(PostgreSqlParser.KW_AS); - this.state = 2321; + this.state = 2325; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IDENTITY: { - this.state = 2305; + this.state = 2309; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 2314; + this.state = 2318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2306; + this.state = 2310; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2308; + this.state = 2312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2307; + this.state = 2311; this.seqOptElem(); } } - this.state = 2310; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 2312; + this.state = 2316; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -11876,13 +11877,13 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2316; + this.state = 2320; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2317; + this.state = 2321; this.expression(); - this.state = 2318; + this.state = 2322; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2319; + this.state = 2323; this.match(PostgreSqlParser.KW_STORED); } break; @@ -11894,36 +11895,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2323; + this.state = 2327; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2324; + this.state = 2328; this.qualifiedName(); - this.state = 2326; + this.state = 2330; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2325; + this.state = 2329; this.optColumnList(); } break; } - this.state = 2329; + this.state = 2333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 2328; + this.state = 2332; this.keyMatch(); } break; } - this.state = 2332; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2331; + this.state = 2335; this.keyActions(); } } @@ -11933,7 +11934,7 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2334; + this.state = 2338; this.collateClause(); } break; @@ -11957,22 +11958,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new GeneratedWhenContext(this.context, this.state); this.enterRule(localContext, 132, PostgreSqlParser.RULE_generatedWhen); try { - this.state = 2340; + this.state = 2344; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 2337; + this.state = 2341; this.match(PostgreSqlParser.KW_ALWAYS); } break; case PostgreSqlParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 2338; + this.state = 2342; this.match(PostgreSqlParser.KW_BY); - this.state = 2339; + this.state = 2343; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -12001,7 +12002,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2342; + this.state = 2346; _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); @@ -12032,33 +12033,33 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2440; + this.state = 2444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 2344; + this.state = 2348; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2345; + this.state = 2349; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2346; + this.state = 2350; this.expression(); - this.state = 2347; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2351; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2355; 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 = 2348; + this.state = 2352; this.constraintAttributeElem(); } } } - this.state = 2353; + this.state = 2357; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } @@ -12068,21 +12069,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2357; + this.state = 2361; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UNIQUE: { - this.state = 2354; + this.state = 2358; this.match(PostgreSqlParser.KW_UNIQUE); } break; case PostgreSqlParser.KW_PRIMARY: { { - this.state = 2355; + this.state = 2359; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2356; + this.state = 2360; this.match(PostgreSqlParser.KW_KEY); } } @@ -12090,56 +12091,56 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2382; + this.state = 2386; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2359; + this.state = 2363; this.optColumnList(); - this.state = 2361; + this.state = 2365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2360; + this.state = 2364; this.columnListInclude(); } break; } - this.state = 2364; + this.state = 2368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2363; + this.state = 2367; this.optDefinition(); } break; } - this.state = 2367; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2366; + this.state = 2370; this.optConstableSpace(); } } - this.state = 2372; + this.state = 2376; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2369; + this.state = 2373; this.constraintAttributeElem(); } } } - this.state = 2374; + this.state = 2378; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); } @@ -12147,21 +12148,21 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_USING: { - this.state = 2375; - this.existingIndex(); this.state = 2379; + this.existingIndex(); + this.state = 2383; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2376; + this.state = 2380; this.constraintAttributeElem(); } } } - this.state = 2381; + this.state = 2385; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } @@ -12175,99 +12176,99 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 3); { - this.state = 2384; + this.state = 2388; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 2386; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2385; + this.state = 2389; this.tableAccessMethodClause(); } } - this.state = 2388; + this.state = 2392; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2389; + this.state = 2393; this.exclusionConstraintElem(); - this.state = 2394; + this.state = 2398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2390; + this.state = 2394; this.match(PostgreSqlParser.COMMA); - this.state = 2391; + this.state = 2395; this.exclusionConstraintElem(); } } - this.state = 2396; + this.state = 2400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2397; + this.state = 2401; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2399; + this.state = 2403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: { - this.state = 2398; + this.state = 2402; this.columnListInclude(); } break; } - this.state = 2402; + this.state = 2406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 2401; + this.state = 2405; this.optDefinition(); } break; } - this.state = 2405; + this.state = 2409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2404; + this.state = 2408; this.optConstableSpace(); } } - this.state = 2412; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2407; + this.state = 2411; this.match(PostgreSqlParser.KW_WHERE); - this.state = 2408; + this.state = 2412; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2409; + this.state = 2413; this.expression(); - this.state = 2410; + this.state = 2414; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 2417; + this.state = 2421; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2414; + this.state = 2418; this.constraintAttributeElem(); } } } - this.state = 2419; + this.state = 2423; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -12276,59 +12277,59 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 2420; + this.state = 2424; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2421; + this.state = 2425; this.match(PostgreSqlParser.KW_KEY); - this.state = 2422; + this.state = 2426; this.optColumnList(); - this.state = 2423; + this.state = 2427; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2424; + this.state = 2428; this.qualifiedName(); - this.state = 2426; + this.state = 2430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2425; + this.state = 2429; this.optColumnList(); } break; } - this.state = 2429; + this.state = 2433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2428; + this.state = 2432; this.keyMatch(); } break; } - this.state = 2432; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2431; + this.state = 2435; this.keyActions(); } } - this.state = 2437; + this.state = 2441; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2434; + this.state = 2438; this.constraintAttributeElem(); } } } - this.state = 2439; + this.state = 2443; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } @@ -12358,11 +12359,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2442; + this.state = 2446; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2443; + this.state = 2447; this.columnList(); - this.state = 2444; + this.state = 2448; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12387,27 +12388,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2446; + this.state = 2450; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2447; + this.state = 2451; this.columnNameCreate(); - this.state = 2452; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2448; + this.state = 2452; this.match(PostgreSqlParser.COMMA); - this.state = 2449; + this.state = 2453; this.columnNameCreate(); } } - this.state = 2454; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2455; + this.state = 2459; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12432,23 +12433,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2457; + this.state = 2461; this.columnName(); - this.state = 2462; + this.state = 2466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2458; + this.state = 2462; this.match(PostgreSqlParser.COMMA); - this.state = 2459; + this.state = 2463; this.columnName(); } } } - this.state = 2464; + this.state = 2468; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } @@ -12474,9 +12475,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2465; + this.state = 2469; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2466; + this.state = 2470; this.optColumnList(); } } @@ -12501,9 +12502,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2472; this.match(PostgreSqlParser.KW_MATCH); - this.state = 2469; + this.state = 2473; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -12534,28 +12535,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2475; this.indexElem(); - this.state = 2472; + this.state = 2476; this.match(PostgreSqlParser.KW_WITH); - this.state = 2479; + this.state = 2483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2473; + this.state = 2477; this.anyOperator(); } break; case 2: { - this.state = 2474; + this.state = 2478; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2475; + this.state = 2479; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2476; + this.state = 2480; this.anyOperator(); - this.state = 2477; + this.state = 2481; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -12581,20 +12582,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 150, PostgreSqlParser.RULE_keyActions); let _la: number; try { - this.state = 2489; + this.state = 2493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2485; this.keyUpdate(); - this.state = 2483; + this.state = 2487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2482; + this.state = 2486; this.keyDelete(); } } @@ -12604,14 +12605,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2485; + this.state = 2489; this.keyDelete(); - this.state = 2487; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2486; + this.state = 2490; this.keyUpdate(); } } @@ -12640,11 +12641,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2491; + this.state = 2495; this.match(PostgreSqlParser.KW_ON); - this.state = 2492; + this.state = 2496; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2493; + this.state = 2497; this.keyAction(); } } @@ -12668,11 +12669,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2495; + this.state = 2499; this.match(PostgreSqlParser.KW_ON); - this.state = 2496; + this.state = 2500; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2497; + this.state = 2501; this.keyAction(); } } @@ -12695,38 +12696,38 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 156, PostgreSqlParser.RULE_keyAction); let _la: number; try { - this.state = 2508; + this.state = 2512; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2503; this.match(PostgreSqlParser.KW_NO); - this.state = 2500; + this.state = 2504; this.match(PostgreSqlParser.KW_ACTION); } break; case PostgreSqlParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2501; + this.state = 2505; this.match(PostgreSqlParser.KW_RESTRICT); } break; case PostgreSqlParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 2502; + this.state = 2506; this.match(PostgreSqlParser.KW_CASCADE); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2503; + this.state = 2507; this.match(PostgreSqlParser.KW_SET); - this.state = 2504; + this.state = 2508; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -12735,12 +12736,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2506; + this.state = 2510; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2505; + this.state = 2509; this.columnList(); } break; @@ -12771,13 +12772,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2510; + this.state = 2514; this.match(PostgreSqlParser.KW_INHERITS); - this.state = 2511; + this.state = 2515; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2512; + this.state = 2516; this.qualifiedNameList(); - this.state = 2513; + this.state = 2517; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12802,33 +12803,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2515; + this.state = 2519; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2516; + this.state = 2520; this.match(PostgreSqlParser.KW_BY); - this.state = 2517; + this.state = 2521; this.colId(); - this.state = 2518; + this.state = 2522; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2519; + this.state = 2523; this.partElem(); - this.state = 2524; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2520; + this.state = 2524; this.match(PostgreSqlParser.COMMA); - this.state = 2521; + this.state = 2525; this.partElem(); } } - this.state = 2526; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2527; + this.state = 2531; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12853,50 +12854,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2529; + this.state = 2533; this.columnName(); } break; case 2: { - this.state = 2530; + this.state = 2534; this.funcExprWindowless(); } break; case 3: { { - this.state = 2531; + this.state = 2535; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2532; + this.state = 2536; this.expression(); - this.state = 2533; + this.state = 2537; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 2538; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 2537; + this.state = 2541; this.collateClause(); } } - this.state = 2541; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2540; + this.state = 2544; this.anyName(); } } @@ -12923,9 +12924,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2543; + this.state = 2547; this.match(PostgreSqlParser.KW_USING); - this.state = 2544; + this.state = 2548; this.colId(); } } @@ -12948,22 +12949,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 166, PostgreSqlParser.RULE_optWith); let _la: number; try { - this.state = 2550; + this.state = 2554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2546; + this.state = 2550; this.match(PostgreSqlParser.KW_WITH); - this.state = 2547; + this.state = 2551; this.relOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2548; + this.state = 2552; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -12972,7 +12973,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2549; + this.state = 2553; this.match(PostgreSqlParser.KW_OIDS); } break; @@ -12998,32 +12999,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2552; + this.state = 2556; this.match(PostgreSqlParser.KW_ON); - this.state = 2553; + this.state = 2557; this.match(PostgreSqlParser.KW_COMMIT); - this.state = 2559; + this.state = 2563; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: { - this.state = 2554; + this.state = 2558; this.match(PostgreSqlParser.KW_DROP); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 2555; + this.state = 2559; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2556; + this.state = 2560; this.match(PostgreSqlParser.KW_ROWS); } break; case PostgreSqlParser.KW_PRESERVE: { - this.state = 2557; + this.state = 2561; this.match(PostgreSqlParser.KW_PRESERVE); - this.state = 2558; + this.state = 2562; this.match(PostgreSqlParser.KW_ROWS); } break; @@ -13052,9 +13053,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2565; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 2562; + this.state = 2566; this.tableSpaceName(); } } @@ -13078,11 +13079,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2564; + this.state = 2568; this.match(PostgreSqlParser.KW_USING); - this.state = 2565; + this.state = 2569; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2566; + this.state = 2570; this.optTableSpace(); } } @@ -13106,11 +13107,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; + this.state = 2572; this.match(PostgreSqlParser.KW_USING); - this.state = 2569; + this.state = 2573; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2570; + this.state = 2574; this.colId(); } } @@ -13135,62 +13136,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2572; + this.state = 2576; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2573; + this.state = 2577; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2578; + this.state = 2582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2575; + this.state = 2579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2574; + this.state = 2578; this.ifNotExists(); } break; } - this.state = 2577; + this.state = 2581; this.anyName(); } } - this.state = 2581; + this.state = 2585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2580; + this.state = 2584; this.optColumnList(); } } - this.state = 2583; + this.state = 2587; this.match(PostgreSqlParser.KW_ON); - this.state = 2593; + this.state = 2597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2584; + this.state = 2588; this.columnExpr(); - this.state = 2589; + this.state = 2593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2585; + this.state = 2589; this.match(PostgreSqlParser.COMMA); - this.state = 2586; + this.state = 2590; this.columnExpr(); } } - this.state = 2591; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13198,12 +13199,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 2592; + this.state = 2596; this.exprList(); } break; } - this.state = 2595; + this.state = 2599; this.fromClause(); } } @@ -13227,27 +13228,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2597; + this.state = 2601; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2598; + this.state = 2602; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2600; + this.state = 2604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2599; + this.state = 2603; this.ifExists(); } break; } - this.state = 2602; + this.state = 2606; this.anyName(); - this.state = 2603; + this.state = 2607; this.match(PostgreSqlParser.KW_SET); - this.state = 2604; + this.state = 2608; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2605; + this.state = 2609; this.signedConst(); } } @@ -13273,42 +13274,42 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2607; + this.state = 2611; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2609; + this.state = 2613; 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 = 2608; + this.state = 2612; this.optTemp(); } } - this.state = 2611; + this.state = 2615; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2613; + this.state = 2617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2612; + this.state = 2616; this.ifNotExists(); } break; } - this.state = 2615; + this.state = 2619; this.createAsTarget(); - this.state = 2616; + this.state = 2620; this.match(PostgreSqlParser.KW_AS); - this.state = 2617; + this.state = 2621; this.selectStmt(); - this.state = 2619; + this.state = 2623; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2618; + this.state = 2622; this.optWithData(); } break; @@ -13336,54 +13337,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2621; + this.state = 2625; this.tableNameCreate(); - this.state = 2623; + this.state = 2627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2622; + this.state = 2626; this.columnListCreate(); } } - this.state = 2626; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2625; + this.state = 2629; this.tableAccessMethodClause(); } } - this.state = 2629; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 2628; + this.state = 2632; this.optWith(); } } - this.state = 2632; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2631; + this.state = 2635; this.onCommitOption(); } } - this.state = 2635; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2634; + this.state = 2638; this.optTableSpace(); } } @@ -13410,22 +13411,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2637; - this.match(PostgreSqlParser.KW_WITH); this.state = 2641; + this.match(PostgreSqlParser.KW_WITH); + this.state = 2645; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 2638; + this.state = 2642; this.match(PostgreSqlParser.KW_DATA); } break; case PostgreSqlParser.KW_NO: { - this.state = 2639; + this.state = 2643; this.match(PostgreSqlParser.KW_NO); - this.state = 2640; + this.state = 2644; this.match(PostgreSqlParser.KW_DATA); } break; @@ -13456,84 +13457,84 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2643; + this.state = 2647; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2645; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 2644; + this.state = 2648; this.match(PostgreSqlParser.KW_UNLOGGED); } } - this.state = 2647; + this.state = 2651; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2648; + this.state = 2652; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2650; + this.state = 2654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2649; + this.state = 2653; this.ifNotExists(); } break; } - this.state = 2652; + this.state = 2656; this.viewNameCreate(); - this.state = 2654; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2653; + this.state = 2657; this.columnListCreate(); } } - this.state = 2657; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2656; + this.state = 2660; this.tableAccessMethodClause(); } } - this.state = 2660; + this.state = 2664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2659; + this.state = 2663; this.optRelOptions(); } } - this.state = 2663; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2662; + this.state = 2666; this.optTableSpace(); } } - this.state = 2665; + this.state = 2669; this.match(PostgreSqlParser.KW_AS); - this.state = 2666; + this.state = 2670; this.selectStmt(); - this.state = 2668; + this.state = 2672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2667; + this.state = 2671; this.optWithData(); } break; @@ -13561,30 +13562,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2670; + this.state = 2674; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 2671; + this.state = 2675; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2672; + this.state = 2676; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2674; + this.state = 2678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 2673; + this.state = 2677; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 2676; + this.state = 2680; this.viewName(); - this.state = 2678; + this.state = 2682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2677; + this.state = 2681; this.optWithData(); } break; @@ -13613,38 +13614,38 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2684; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2682; + this.state = 2686; 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 = 2681; + this.state = 2685; this.optTemp(); } } - this.state = 2684; + this.state = 2688; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2686; + this.state = 2690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2685; + this.state = 2689; this.ifNotExists(); } break; } - this.state = 2688; + this.state = 2692; this.qualifiedName(); - this.state = 2694; + this.state = 2698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2690; + this.state = 2694; this.errorHandler.sync(this); alternative = 1; do { @@ -13652,7 +13653,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2689; + this.state = 2693; this.seqOptElem(); } } @@ -13660,7 +13661,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2692; + this.state = 2696; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13690,23 +13691,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2696; + this.state = 2700; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2697; + this.state = 2701; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2699; + this.state = 2703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2698; + this.state = 2702; this.ifExists(); } break; } - this.state = 2701; + this.state = 2705; this.qualifiedName(); - this.state = 2703; + this.state = 2707; this.errorHandler.sync(this); alternative = 1; do { @@ -13714,7 +13715,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2702; + this.state = 2706; this.seqOptElem(); } } @@ -13722,7 +13723,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2705; + this.state = 2709; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13747,29 +13748,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 194, PostgreSqlParser.RULE_seqOptElem); let _la: number; try { - this.state = 2740; + this.state = 2744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 2707; + this.state = 2711; this.match(PostgreSqlParser.KW_AS); - this.state = 2708; + this.state = 2712; this.simpleTypeName(); } break; case PostgreSqlParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 2709; + this.state = 2713; this.match(PostgreSqlParser.KW_CACHE); - this.state = 2711; + this.state = 2715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2710; + this.state = 2714; this.numericOnly(); } } @@ -13779,19 +13780,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_INCREMENT: this.enterOuterAlt(localContext, 3); { - this.state = 2713; + this.state = 2717; this.match(PostgreSqlParser.KW_INCREMENT); - this.state = 2715; + this.state = 2719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2714; + this.state = 2718; this.match(PostgreSqlParser.KW_BY); } } - this.state = 2717; + this.state = 2721; this.numericOnly(); } break; @@ -13799,7 +13800,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 4); { - this.state = 2718; + this.state = 2722; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13808,16 +13809,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2719; + this.state = 2723; this.numericOnly(); } break; case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 5); { - this.state = 2720; + this.state = 2724; this.match(PostgreSqlParser.KW_NO); - this.state = 2721; + this.state = 2725; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13831,65 +13832,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OWNED: this.enterOuterAlt(localContext, 6); { - this.state = 2722; + this.state = 2726; this.match(PostgreSqlParser.KW_OWNED); - this.state = 2723; + this.state = 2727; this.match(PostgreSqlParser.KW_BY); - this.state = 2724; + this.state = 2728; this.columnName(); } break; case PostgreSqlParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 2725; + this.state = 2729; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2726; + this.state = 2730; this.match(PostgreSqlParser.KW_NAME); - this.state = 2727; + this.state = 2731; this.anyName(); } break; case PostgreSqlParser.KW_START: this.enterOuterAlt(localContext, 8); { - this.state = 2728; + this.state = 2732; this.match(PostgreSqlParser.KW_START); - this.state = 2730; + this.state = 2734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2729; + this.state = 2733; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 2732; + this.state = 2736; this.numericOnly(); } break; case PostgreSqlParser.KW_RESTART: this.enterOuterAlt(localContext, 9); { - this.state = 2733; + this.state = 2737; this.match(PostgreSqlParser.KW_RESTART); - this.state = 2735; + this.state = 2739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2734; + this.state = 2738; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2738; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2737; + this.state = 2741; this.numericOnly(); } } @@ -13919,18 +13920,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 196, PostgreSqlParser.RULE_numericOnly); let _la: number; try { - this.state = 2747; + this.state = 2751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2743; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 2742; + this.state = 2746; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -13942,14 +13943,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 2745; + this.state = 2749; this.match(PostgreSqlParser.Numeric); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2746; + this.state = 2750; this.signedConst(); } break; @@ -13976,79 +13977,79 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2749; + this.state = 2753; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2751; + this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 2750; + this.state = 2754; this.orReplaceOpt(); } } - this.state = 2754; + this.state = 2758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 2753; + this.state = 2757; this.match(PostgreSqlParser.KW_TRUSTED); } } - this.state = 2757; + this.state = 2761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 2756; + this.state = 2760; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 2759; + this.state = 2763; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2760; + this.state = 2764; this.colId(); - this.state = 2773; + this.state = 2777; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2761; + this.state = 2765; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 2762; + this.state = 2766; this.anyName(); - this.state = 2765; + this.state = 2769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2763; + this.state = 2767; this.match(PostgreSqlParser.KW_INLINE); - this.state = 2764; + this.state = 2768; this.anyName(); } break; } - this.state = 2771; + this.state = 2775; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2767; + this.state = 2771; this.match(PostgreSqlParser.KW_VALIDATOR); - this.state = 2768; + this.state = 2772; this.anyName(); } break; case 2: { - this.state = 2769; + this.state = 2773; this.match(PostgreSqlParser.KW_NO); - this.state = 2770; + this.state = 2774; this.match(PostgreSqlParser.KW_VALIDATOR); } break; @@ -14079,32 +14080,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2775; + this.state = 2779; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2776; + this.state = 2780; this.optTableSpace(); - this.state = 2779; + this.state = 2783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 2777; + this.state = 2781; this.match(PostgreSqlParser.KW_OWNER); - this.state = 2778; + this.state = 2782; this.roleSpec(); } } - this.state = 2781; + this.state = 2785; this.match(PostgreSqlParser.KW_LOCATION); - this.state = 2782; + this.state = 2786; this.stringConst(); - this.state = 2784; + this.state = 2788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2783; + this.state = 2787; this.optRelOptions(); } break; @@ -14133,53 +14134,53 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2786; + this.state = 2790; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2787; + this.state = 2791; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2789; + this.state = 2793; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2788; + this.state = 2792; this.ifNotExists(); } break; } - this.state = 2791; + this.state = 2795; this.colId(); - this.state = 2793; + this.state = 2797; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2792; + this.state = 2796; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2802; + this.state = 2806; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2800; + this.state = 2804; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SCHEMA: { - this.state = 2795; + this.state = 2799; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 2796; + this.state = 2800; this.schemaName(); } break; case PostgreSqlParser.KW_FROM: case PostgreSqlParser.KW_VERSION: { - this.state = 2797; + this.state = 2801; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -14188,13 +14189,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2798; + this.state = 2802; this.nonReservedWordOrStringConst(); } break; case PostgreSqlParser.KW_CASCADE: { - this.state = 2799; + this.state = 2803; this.match(PostgreSqlParser.KW_CASCADE); } break; @@ -14203,7 +14204,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2804; + this.state = 2808; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); } @@ -14230,27 +14231,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2805; + this.state = 2809; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2806; + this.state = 2810; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2807; + this.state = 2811; this.colId(); - this.state = 2808; + this.state = 2812; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2813; + this.state = 2817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 2809; + this.state = 2813; this.match(PostgreSqlParser.KW_TO); - this.state = 2810; + this.state = 2814; this.nonReservedWordOrStringConst(); } } - this.state = 2815; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14277,13 +14278,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2816; + this.state = 2820; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2817; + this.state = 2821; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2818; + this.state = 2822; this.colId(); - this.state = 2819; + this.state = 2823; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -14292,44 +14293,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2852; + this.state = 2856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2820; + this.state = 2824; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 2821; + this.state = 2825; this.match(PostgreSqlParser.KW_FOR); - this.state = 2822; + this.state = 2826; this.typename(); - this.state = 2823; + this.state = 2827; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2824; + this.state = 2828; this.colId(); } break; case 2: { - this.state = 2826; + this.state = 2830; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 2827; + this.state = 2831; this.routineWithArgTypes(); } break; case 3: { - this.state = 2828; + this.state = 2832; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 2829; + this.state = 2833; this.procedureWithArgTypes(); } break; case 4: { - this.state = 2830; + this.state = 2834; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2831; + this.state = 2835; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -14338,31 +14339,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2832; + this.state = 2836; this.anyName(); - this.state = 2833; + this.state = 2837; this.tableAccessMethodClause(); } break; case 5: { - this.state = 2835; + this.state = 2839; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2836; + this.state = 2840; this.operatorWithArgTypes(); } break; case 6: { - this.state = 2837; + this.state = 2841; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 2838; + this.state = 2842; this.functionWithArgTypes(); } break; case 7: { - this.state = 2839; + this.state = 2843; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14371,43 +14372,43 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2840; + this.state = 2844; this.typename(); } break; case 8: { - this.state = 2841; + this.state = 2845; this.match(PostgreSqlParser.KW_CAST); - this.state = 2842; + this.state = 2846; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2843; + this.state = 2847; this.typename(); - this.state = 2844; + this.state = 2848; this.match(PostgreSqlParser.KW_AS); - this.state = 2845; + this.state = 2849; this.typename(); - this.state = 2846; + this.state = 2850; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 9: { - this.state = 2848; + this.state = 2852; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 2849; + this.state = 2853; this.aggregateWithArgTypes(); } break; case 10: { - this.state = 2850; + this.state = 2854; this.objectTypeName(); } break; case 11: { - this.state = 2851; + this.state = 2855; this.objectTypeAnyName(); } break; @@ -14435,22 +14436,22 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2854; + this.state = 2858; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2855; + this.state = 2859; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2856; + this.state = 2860; this.match(PostgreSqlParser.KW_DATA); - this.state = 2857; + this.state = 2861; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2858; + this.state = 2862; this.colId(); - this.state = 2864; + this.state = 2868; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2860; + this.state = 2864; this.errorHandler.sync(this); alternative = 1; do { @@ -14458,7 +14459,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2859; + this.state = 2863; this.fdwOption(); } } @@ -14466,19 +14467,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2862; + this.state = 2866; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 302, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 2867; + this.state = 2871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2866; + this.state = 2870; this.createGenericOptions(); } break; @@ -14504,14 +14505,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 210, PostgreSqlParser.RULE_fdwOption); let _la: number; try { - this.state = 2875; + this.state = 2879; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HANDLER: case PostgreSqlParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 2869; + this.state = 2873; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14520,12 +14521,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2871; + this.state = 2875; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2870; + this.state = 2874; this.anyName(); } break; @@ -14535,9 +14536,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 2873; + this.state = 2877; this.match(PostgreSqlParser.KW_NO); - this.state = 2874; + this.state = 2878; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14574,50 +14575,50 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2877; + this.state = 2881; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2878; + this.state = 2882; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2879; + this.state = 2883; this.match(PostgreSqlParser.KW_DATA); - this.state = 2880; + this.state = 2884; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2881; + this.state = 2885; this.colId(); - this.state = 2895; + this.state = 2899; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2887; + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 2883; + this.state = 2887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2882; + this.state = 2886; this.fdwOption(); } } - this.state = 2885; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 215 || _la === 269 || _la === 373); } } - this.state = 2889; + this.state = 2893; this.alterGenericOptions(); } break; case 2: { - this.state = 2891; + this.state = 2895; this.errorHandler.sync(this); alternative = 1; do { @@ -14625,7 +14626,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2890; + this.state = 2894; this.fdwOption(); } } @@ -14633,7 +14634,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2893; + this.state = 2897; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 309, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14663,29 +14664,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2897; + this.state = 2901; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2898; + this.state = 2902; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2899; + this.state = 2903; this.genericOptionElem(); - this.state = 2904; + this.state = 2908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2900; + this.state = 2904; this.match(PostgreSqlParser.COMMA); - this.state = 2901; + this.state = 2905; this.genericOptionElem(); } } - this.state = 2906; + this.state = 2910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2907; + this.state = 2911; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14710,29 +14711,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2909; + this.state = 2913; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2910; + this.state = 2914; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2911; + this.state = 2915; this.alterGenericOptionElem(); - this.state = 2916; + this.state = 2920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2912; + this.state = 2916; this.match(PostgreSqlParser.COMMA); - this.state = 2913; + this.state = 2917; this.alterGenericOptionElem(); } } - this.state = 2918; + this.state = 2922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2919; + this.state = 2923; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14757,7 +14758,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2921; + this.state = 2925; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -14766,7 +14767,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2922; + this.state = 2926; this.genericOptionElem(); } } @@ -14790,9 +14791,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2924; + this.state = 2928; this.colLabel(); - this.state = 2925; + this.state = 2929; this.stringConst(); } } @@ -14817,58 +14818,58 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2927; + this.state = 2931; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2928; + this.state = 2932; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2930; + this.state = 2934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2929; + this.state = 2933; this.ifNotExists(); } break; } - this.state = 2932; + this.state = 2936; this.colId(); - this.state = 2935; + this.state = 2939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 2933; + this.state = 2937; this.match(PostgreSqlParser.KW_TYPE); - this.state = 2934; + this.state = 2938; this.stringConst(); } } - this.state = 2938; + this.state = 2942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 2937; + this.state = 2941; this.foreignServerVersion(); } } - this.state = 2940; + this.state = 2944; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2941; + this.state = 2945; this.match(PostgreSqlParser.KW_DATA); - this.state = 2942; + this.state = 2946; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2943; + this.state = 2947; this.colId(); - this.state = 2945; + this.state = 2949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2944; + this.state = 2948; this.createGenericOptions(); } break; @@ -14895,9 +14896,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2947; + this.state = 2951; this.match(PostgreSqlParser.KW_VERSION); - this.state = 2950; + this.state = 2954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -14905,13 +14906,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2948; + this.state = 2952; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 2949; + this.state = 2953; this.match(PostgreSqlParser.KW_NULL); } break; @@ -14940,31 +14941,31 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2952; + this.state = 2956; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2953; + this.state = 2957; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2954; + this.state = 2958; this.colId(); - this.state = 2960; + this.state = 2964; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPTIONS: { - this.state = 2955; + this.state = 2959; this.alterGenericOptions(); } break; case PostgreSqlParser.KW_VERSION: { - this.state = 2956; + this.state = 2960; this.foreignServerVersion(); - this.state = 2958; + this.state = 2962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2957; + this.state = 2961; this.alterGenericOptions(); } break; @@ -14995,65 +14996,65 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 228, PostgreSqlParser.RULE_createForeignTableStmt); let _la: number; try { - this.state = 3001; + this.state = 3005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2962; + this.state = 2966; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2963; + this.state = 2967; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2964; + this.state = 2968; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2966; + this.state = 2970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2965; + this.state = 2969; this.ifNotExists(); } break; } - this.state = 2968; + this.state = 2972; this.tableNameCreate(); - this.state = 2969; + this.state = 2973; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2971; + this.state = 2975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 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)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 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)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2970; + this.state = 2974; this.tableElementList(); } } - this.state = 2973; + this.state = 2977; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2975; + this.state = 2979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 2974; + this.state = 2978; this.optInherit(); } } - this.state = 2977; + this.state = 2981; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2978; + this.state = 2982; this.colId(); - this.state = 2980; + this.state = 2984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2979; + this.state = 2983; this.createGenericOptions(); } break; @@ -15064,52 +15065,52 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2982; + this.state = 2986; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2983; + this.state = 2987; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2984; + this.state = 2988; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2986; + this.state = 2990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2985; + this.state = 2989; this.ifNotExists(); } break; } - this.state = 2988; + this.state = 2992; this.tableNameCreate(); - this.state = 2989; + this.state = 2993; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2990; + this.state = 2994; this.match(PostgreSqlParser.KW_OF); - this.state = 2991; + this.state = 2995; this.tableName(); - this.state = 2993; + this.state = 2997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2992; + this.state = 2996; this.optTypedTableElEmentList(); } } - this.state = 2995; + this.state = 2999; this.partitionBoundSpec(); - this.state = 2996; + this.state = 3000; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2997; + this.state = 3001; this.colId(); - this.state = 2999; + this.state = 3003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2998; + this.state = 3002; this.createGenericOptions(); } break; @@ -15139,64 +15140,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3003; + this.state = 3007; this.match(PostgreSqlParser.KW_IMPORT); - this.state = 3004; + this.state = 3008; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3005; + this.state = 3009; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3006; + this.state = 3010; this.schemaName(); - this.state = 3016; + this.state = 3020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 3010; + this.state = 3014; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 3007; + this.state = 3011; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 3008; + this.state = 3012; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_EXCEPT: { - this.state = 3009; + this.state = 3013; this.match(PostgreSqlParser.KW_EXCEPT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3012; + this.state = 3016; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3013; + this.state = 3017; this.relationExprList(); - this.state = 3014; + this.state = 3018; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 3018; + this.state = 3022; this.match(PostgreSqlParser.KW_FROM); - this.state = 3019; + this.state = 3023; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3020; + this.state = 3024; this.colId(); - this.state = 3021; + this.state = 3025; this.match(PostgreSqlParser.KW_INTO); - this.state = 3022; + this.state = 3026; this.colId(); - this.state = 3024; + this.state = 3028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 3023; + this.state = 3027; this.createGenericOptions(); } break; @@ -15224,25 +15225,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3026; + this.state = 3030; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3027; + this.state = 3031; this.match(PostgreSqlParser.KW_USER); - this.state = 3028; + this.state = 3032; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3030; + this.state = 3034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3029; + this.state = 3033; this.ifNotExists(); } } - this.state = 3032; + this.state = 3036; this.match(PostgreSqlParser.KW_FOR); - this.state = 3035; + this.state = 3039; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -15664,29 +15665,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3033; + this.state = 3037; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3034; + this.state = 3038; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3037; + this.state = 3041; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3038; + this.state = 3042; this.colId(); - this.state = 3040; + this.state = 3044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3039; + this.state = 3043; this.createGenericOptions(); } break; @@ -15713,15 +15714,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3042; + this.state = 3046; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3043; + this.state = 3047; this.match(PostgreSqlParser.KW_USER); - this.state = 3044; + this.state = 3048; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3045; + this.state = 3049; this.match(PostgreSqlParser.KW_FOR); - this.state = 3048; + this.state = 3052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -16143,24 +16144,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3046; + this.state = 3050; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3047; + this.state = 3051; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3050; + this.state = 3054; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3051; + this.state = 3055; this.colId(); - this.state = 3052; + this.state = 3056; this.alterGenericOptions(); } } @@ -16185,35 +16186,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3054; + this.state = 3058; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3055; + this.state = 3059; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3056; + this.state = 3060; this.colId(); - this.state = 3057; + this.state = 3061; this.match(PostgreSqlParser.KW_ON); - this.state = 3058; + this.state = 3062; this.qualifiedName(); - this.state = 3065; + this.state = 3069; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 3059; - this.match(PostgreSqlParser.KW_AS); this.state = 3063; + this.match(PostgreSqlParser.KW_AS); + this.state = 3067; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_PERMISSIVE: { - this.state = 3060; + this.state = 3064; this.match(PostgreSqlParser.KW_PERMISSIVE); } break; case PostgreSqlParser.KW_RESTRICTIVE: { - this.state = 3061; + this.state = 3065; this.match(PostgreSqlParser.KW_RESTRICTIVE); } break; @@ -16561,7 +16562,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3062; + this.state = 3066; this.identifier(); } break; @@ -16571,14 +16572,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 3069; + this.state = 3073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3067; + this.state = 3071; this.match(PostgreSqlParser.KW_FOR); - this.state = 3068; + this.state = 3072; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -16590,34 +16591,34 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3073; + this.state = 3077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3071; + this.state = 3075; this.match(PostgreSqlParser.KW_TO); - this.state = 3072; + this.state = 3076; this.roleList(); } } - this.state = 3076; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3075; + this.state = 3079; this.rowSecurityOptionalExpr(); } } - this.state = 3079; + this.state = 3083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 3078; + this.state = 3082; this.rowSecurityOptionalWithCheck(); } break; @@ -16645,44 +16646,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3081; + this.state = 3085; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3082; + this.state = 3086; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3083; + this.state = 3087; this.colId(); - this.state = 3084; + this.state = 3088; this.match(PostgreSqlParser.KW_ON); - this.state = 3085; + this.state = 3089; this.qualifiedName(); - this.state = 3088; + this.state = 3092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3086; + this.state = 3090; this.match(PostgreSqlParser.KW_TO); - this.state = 3087; + this.state = 3091; this.roleList(); } } - this.state = 3091; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3090; + this.state = 3094; this.rowSecurityOptionalExpr(); } } - this.state = 3094; + this.state = 3098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 3093; + this.state = 3097; this.rowSecurityOptionalWithCheck(); } break; @@ -16711,51 +16712,51 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3096; + this.state = 3100; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3097; + this.state = 3101; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3098; + this.state = 3102; this.procedureName(); - this.state = 3100; + this.state = 3104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3099; + this.state = 3103; this.funcArgs(); } } - this.state = 3128; + this.state = 3132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 3102; - this.procedureAction(); this.state = 3106; + this.procedureAction(); + this.state = 3110; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3103; + this.state = 3107; this.procedureAction(); } } } - this.state = 3108; + this.state = 3112; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); } - this.state = 3110; + this.state = 3114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 3109; + this.state = 3113; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -16764,53 +16765,53 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 3112; + this.state = 3116; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3113; + this.state = 3117; this.match(PostgreSqlParser.KW_TO); - this.state = 3114; + this.state = 3118; this.procedureNameCreate(); } break; case 3: { - this.state = 3115; + this.state = 3119; this.match(PostgreSqlParser.KW_OWNER); - this.state = 3116; + this.state = 3120; this.match(PostgreSqlParser.KW_TO); - this.state = 3117; + this.state = 3121; this.roleSpec(); } break; case 4: { - this.state = 3118; + this.state = 3122; this.match(PostgreSqlParser.KW_SET); - this.state = 3119; + this.state = 3123; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3120; + this.state = 3124; this.schemaNameCreate(); } break; case 5: { - this.state = 3122; + this.state = 3126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 3121; + this.state = 3125; this.match(PostgreSqlParser.KW_NO); } } - this.state = 3124; + this.state = 3128; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 3125; + this.state = 3129; this.match(PostgreSqlParser.KW_ON); - this.state = 3126; + this.state = 3130; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 3127; + this.state = 3131; this.colId(); } break; @@ -16836,48 +16837,48 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 242, PostgreSqlParser.RULE_procedureAction); let _la: number; try { - this.state = 3159; + this.state = 3163; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3140; + this.state = 3144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3131; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3130; + this.state = 3134; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3133; + this.state = 3137; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3134; + this.state = 3138; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 3136; + this.state = 3140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3135; + this.state = 3139; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3138; + this.state = 3142; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3139; + this.state = 3143; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -16887,11 +16888,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3142; + this.state = 3146; this.match(PostgreSqlParser.KW_SET); - this.state = 3143; + this.state = 3147; this.colId(); - this.state = 3144; + this.state = 3148; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -16900,18 +16901,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3147; + this.state = 3151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 3145; + this.state = 3149; this.colId(); } break; case 2: { - this.state = 3146; + this.state = 3150; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -16921,22 +16922,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3149; + this.state = 3153; this.match(PostgreSqlParser.KW_SET); - this.state = 3150; + this.state = 3154; this.colId(); - this.state = 3151; + this.state = 3155; this.match(PostgreSqlParser.KW_FROM); - this.state = 3152; + this.state = 3156; this.match(PostgreSqlParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3154; + this.state = 3158; this.match(PostgreSqlParser.KW_RESET); - this.state = 3157; + this.state = 3161; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -17334,13 +17335,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3155; + this.state = 3159; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 3156; + this.state = 3160; this.match(PostgreSqlParser.KW_ALL); } break; @@ -17371,13 +17372,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3161; + this.state = 3165; this.match(PostgreSqlParser.KW_USING); - this.state = 3162; + this.state = 3166; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3163; + this.state = 3167; this.expression(); - this.state = 3164; + this.state = 3168; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17401,15 +17402,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3166; + this.state = 3170; this.match(PostgreSqlParser.KW_WITH); - this.state = 3167; + this.state = 3171; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3168; + this.state = 3172; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3169; + this.state = 3173; this.expression(); - this.state = 3170; + this.state = 3174; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17434,17 +17435,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3172; + this.state = 3176; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3173; + this.state = 3177; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3174; + this.state = 3178; this.match(PostgreSqlParser.KW_METHOD); - this.state = 3175; + this.state = 3179; this.colId(); - this.state = 3176; + this.state = 3180; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3177; + this.state = 3181; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -17453,9 +17454,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3178; + this.state = 3182; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 3179; + this.state = 3183; this.anyName(); } } @@ -17478,50 +17479,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 250, PostgreSqlParser.RULE_createTrigStmt); let _la: number; try { - this.state = 3259; + this.state = 3263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3181; + this.state = 3185; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3183; + this.state = 3187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3182; + this.state = 3186; this.orReplaceOpt(); } } - this.state = 3185; + this.state = 3189; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3186; + this.state = 3190; this.colId(); - this.state = 3187; + this.state = 3191; this.triggerActionTime(); - this.state = 3188; + this.state = 3192; this.triggerEvents(); - this.state = 3189; + this.state = 3193; this.match(PostgreSqlParser.KW_ON); - this.state = 3190; + this.state = 3194; this.tableName(); - this.state = 3202; + this.state = 3206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 3191; + this.state = 3195; this.match(PostgreSqlParser.KW_REFERENCING); - this.state = 3198; + this.state = 3202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3192; + this.state = 3196; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -17530,7 +17531,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3193; + this.state = 3197; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17539,45 +17540,45 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3195; + this.state = 3199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3194; + this.state = 3198; this.match(PostgreSqlParser.KW_AS); } } - this.state = 3197; + this.state = 3201; this.colId(); } } - this.state = 3200; + this.state = 3204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); } } - this.state = 3209; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3204; + this.state = 3208; this.match(PostgreSqlParser.KW_FOR); - this.state = 3206; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3205; + this.state = 3209; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3208; + this.state = 3212; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17589,109 +17590,109 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3212; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3211; + this.state = 3215; this.triggerWhen(); } } - this.state = 3214; + this.state = 3218; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3215; + this.state = 3219; this.functionOrProcedure(); - this.state = 3216; + this.state = 3220; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3217; + this.state = 3221; this.triggerFuncArgs(); - this.state = 3218; + this.state = 3222; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3220; + this.state = 3224; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3222; + this.state = 3226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3221; + this.state = 3225; this.orReplaceOpt(); } } - this.state = 3225; + this.state = 3229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3224; + this.state = 3228; this.match(PostgreSqlParser.KW_CONSTRAINT); } } - this.state = 3227; + this.state = 3231; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3228; + this.state = 3232; this.colId(); - this.state = 3229; + this.state = 3233; this.triggerActionTime(); - this.state = 3230; + this.state = 3234; this.triggerEvents(); - this.state = 3231; + this.state = 3235; this.match(PostgreSqlParser.KW_ON); - this.state = 3232; + this.state = 3236; this.tableName(); - this.state = 3235; + this.state = 3239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 3233; + this.state = 3237; this.match(PostgreSqlParser.KW_FROM); - this.state = 3234; + this.state = 3238; this.qualifiedName(); } } - this.state = 3240; + this.state = 3244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 269) { { { - this.state = 3237; + this.state = 3241; this.constraintAttributeElem(); } } - this.state = 3242; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3248; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3243; + this.state = 3247; this.match(PostgreSqlParser.KW_FOR); - this.state = 3245; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3244; + this.state = 3248; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3247; + this.state = 3251; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17703,25 +17704,25 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3251; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3250; + this.state = 3254; this.triggerWhen(); } } - this.state = 3253; + this.state = 3257; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3254; + this.state = 3258; this.functionOrProcedure(); - this.state = 3255; + this.state = 3259; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3256; + this.state = 3260; this.triggerFuncArgs(); - this.state = 3257; + this.state = 3261; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -17745,29 +17746,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerActionTimeContext(this.context, this.state); this.enterRule(localContext, 252, PostgreSqlParser.RULE_triggerActionTime); try { - this.state = 3265; + this.state = 3269; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 3261; + this.state = 3265; this.match(PostgreSqlParser.KW_BEFORE); } break; case PostgreSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3262; + this.state = 3266; this.match(PostgreSqlParser.KW_AFTER); } break; case PostgreSqlParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 3263; + this.state = 3267; this.match(PostgreSqlParser.KW_INSTEAD); - this.state = 3264; + this.state = 3268; this.match(PostgreSqlParser.KW_OF); } break; @@ -17796,21 +17797,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3267; + this.state = 3271; this.triggerOneEvent(); - this.state = 3272; + this.state = 3276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 3268; + this.state = 3272; this.match(PostgreSqlParser.KW_OR); - this.state = 3269; + this.state = 3273; this.triggerOneEvent(); } } - this.state = 3274; + this.state = 3278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17835,36 +17836,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 256, PostgreSqlParser.RULE_triggerOneEvent); let _la: number; try { - this.state = 3283; + this.state = 3287; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 1); { - this.state = 3275; + this.state = 3279; this.match(PostgreSqlParser.KW_INSERT); } break; case PostgreSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3276; + this.state = 3280; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 3); { - this.state = 3277; + this.state = 3281; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 3280; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 3278; + this.state = 3282; this.match(PostgreSqlParser.KW_OF); - this.state = 3279; + this.state = 3283; this.columnList(); } } @@ -17874,7 +17875,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 4); { - this.state = 3282; + this.state = 3286; this.match(PostgreSqlParser.KW_TRUNCATE); } break; @@ -17902,13 +17903,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3285; + this.state = 3289; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3286; + this.state = 3290; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3287; + this.state = 3291; this.expression(); - this.state = 3288; + this.state = 3292; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17930,24 +17931,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionOrProcedureContext(this.context, this.state); this.enterRule(localContext, 260, PostgreSqlParser.RULE_functionOrProcedure); try { - this.state = 3294; + this.state = 3298; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 3290; + this.state = 3294; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3291; + this.state = 3295; this.functionName(); } break; case PostgreSqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 3292; + this.state = 3296; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3293; + this.state = 3297; this.procedureName(); } break; @@ -17976,7 +17977,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3298; + this.state = 3302; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -18472,7 +18473,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3296; + this.state = 3300; this.triggerFuncArg(); } break; @@ -18485,19 +18486,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3304; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3300; + this.state = 3304; this.match(PostgreSqlParser.COMMA); - this.state = 3301; + this.state = 3305; this.triggerFuncArg(); } } - this.state = 3306; + this.state = 3310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18521,34 +18522,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerFuncArgContext(this.context, this.state); this.enterRule(localContext, 264, PostgreSqlParser.RULE_triggerFuncArg); try { - this.state = 3311; + this.state = 3315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3307; + this.state = 3311; this.match(PostgreSqlParser.Integral); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3308; + this.state = 3312; this.match(PostgreSqlParser.Numeric); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3309; + this.state = 3313; this.stringConst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3310; + this.state = 3314; this.colLabel(); } break; @@ -18573,32 +18574,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 266, PostgreSqlParser.RULE_constraintAttributeElem); let _la: number; try { - this.state = 3323; + this.state = 3327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3314; + this.state = 3318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3313; + this.state = 3317; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 3316; + this.state = 3320; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3317; + this.state = 3321; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 3318; + this.state = 3322; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -18612,18 +18613,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3319; + this.state = 3323; this.match(PostgreSqlParser.KW_NOT); - this.state = 3320; + this.state = 3324; this.match(PostgreSqlParser.KW_VALID); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3321; + this.state = 3325; this.match(PostgreSqlParser.KW_NO); - this.state = 3322; + this.state = 3326; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -18650,53 +18651,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3329; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3326; + this.state = 3330; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3327; + this.state = 3331; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3328; + this.state = 3332; this.colId(); - this.state = 3329; + this.state = 3333; this.match(PostgreSqlParser.KW_ON); - this.state = 3330; + this.state = 3334; this.colLabel(); - this.state = 3340; + this.state = 3344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3331; + this.state = 3335; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3332; + this.state = 3336; this.eventTriggerWhenItem(); - this.state = 3337; + this.state = 3341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 3333; + this.state = 3337; this.match(PostgreSqlParser.KW_AND); - this.state = 3334; + this.state = 3338; this.eventTriggerWhenItem(); } } - this.state = 3339; + this.state = 3343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3342; + this.state = 3346; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3343; + this.state = 3347; this.functionOrProcedure(); - this.state = 3344; + this.state = 3348; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3345; + this.state = 3349; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18721,29 +18722,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3347; + this.state = 3351; this.colId(); - this.state = 3348; + this.state = 3352; this.match(PostgreSqlParser.KW_IN); - this.state = 3349; + this.state = 3353; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3350; - this.stringConst(); this.state = 3354; + this.stringConst(); + this.state = 3358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3351; + this.state = 3355; this.notifyPayload(); } } - this.state = 3356; + this.state = 3360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3357; + this.state = 3361; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18768,27 +18769,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3359; + this.state = 3363; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3360; + this.state = 3364; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3361; + this.state = 3365; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3362; + this.state = 3366; this.colId(); - this.state = 3368; + this.state = 3372; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 3363; + this.state = 3367; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 3365; + this.state = 3369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3364; + this.state = 3368; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -18804,7 +18805,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DISABLE: { - this.state = 3367; + this.state = 3371; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -18834,33 +18835,33 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3370; + this.state = 3374; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3371; + this.state = 3375; this.match(PostgreSqlParser.KW_ASSERTION); - this.state = 3372; + this.state = 3376; this.anyName(); - this.state = 3373; + this.state = 3377; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3374; + this.state = 3378; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3375; + this.state = 3379; this.expression(); - this.state = 3376; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 3380; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3384; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3377; + this.state = 3381; this.constraintAttributeElem(); } } } - this.state = 3382; + this.state = 3386; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); } @@ -18885,64 +18886,64 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 276, PostgreSqlParser.RULE_defineStmt); let _la: number; try { - this.state = 3461; + this.state = 3465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3383; + this.state = 3387; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3385; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3384; + this.state = 3388; this.orReplaceOpt(); } } - this.state = 3387; + this.state = 3391; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3388; + this.state = 3392; this.functionName(); - this.state = 3403; + this.state = 3407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { { - this.state = 3389; + this.state = 3393; this.aggregateArgs(); - this.state = 3390; + this.state = 3394; this.definition(); } } break; case 2: { - this.state = 3392; + this.state = 3396; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3393; + this.state = 3397; this.oldAggregateElem(); - this.state = 3398; + this.state = 3402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3394; + this.state = 3398; this.match(PostgreSqlParser.COMMA); - this.state = 3395; + this.state = 3399; this.oldAggregateElem(); } } - this.state = 3400; + this.state = 3404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3401; + this.state = 3405; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -18952,79 +18953,79 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3405; + this.state = 3409; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3406; + this.state = 3410; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3407; + this.state = 3411; this.anyOperator(); - this.state = 3408; + this.state = 3412; this.definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3410; + this.state = 3414; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3411; + this.state = 3415; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3412; + this.state = 3416; this.anyName(); - this.state = 3413; + this.state = 3417; this.match(PostgreSqlParser.KW_AS); - this.state = 3431; + this.state = 3435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3414; + this.state = 3418; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3416; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 3415; + this.state = 3419; this.tableFuncElementList(); } } - this.state = 3418; + this.state = 3422; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_ENUM: { - this.state = 3419; + this.state = 3423; this.match(PostgreSqlParser.KW_ENUM); - this.state = 3420; + this.state = 3424; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3428; + this.state = 3432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 561)) & ~0x1F) === 0 && ((1 << (_la - 561)) & 67108885) !== 0)) { + if (((((_la - 561)) & ~0x1F) === 0 && ((1 << (_la - 561)) & 33554453) !== 0)) { { - this.state = 3421; - this.stringConst(); this.state = 3425; + this.stringConst(); + this.state = 3429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3422; + this.state = 3426; this.notifyPayload(); } } - this.state = 3427; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3430; + this.state = 3434; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19036,30 +19037,30 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3433; + this.state = 3437; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3434; + this.state = 3438; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3435; + this.state = 3439; this.anyName(); - this.state = 3441; + this.state = 3445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3438; + this.state = 3442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3436; + this.state = 3440; this.match(PostgreSqlParser.KW_AS); - this.state = 3437; + this.state = 3441; this.match(PostgreSqlParser.KW_RANGE); } } - this.state = 3440; + this.state = 3444; this.definition(); } break; @@ -19069,13 +19070,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3443; + this.state = 3447; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3444; + this.state = 3448; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3445; + this.state = 3449; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3446; + this.state = 3450; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19084,46 +19085,46 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3447; + this.state = 3451; this.anyName(); - this.state = 3448; + this.state = 3452; this.definition(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3450; + this.state = 3454; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3451; + this.state = 3455; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 3453; + this.state = 3457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 3452; + this.state = 3456; this.ifNotExists(); } break; } - this.state = 3455; - this.anyName(); this.state = 3459; + this.anyName(); + this.state = 3463; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3456; + this.state = 3460; this.definition(); } break; case PostgreSqlParser.KW_FROM: { { - this.state = 3457; + this.state = 3461; this.match(PostgreSqlParser.KW_FROM); - this.state = 3458; + this.state = 3462; this.anyName(); } } @@ -19156,27 +19157,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3467; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3464; + this.state = 3468; this.defElem(); - this.state = 3469; + this.state = 3473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3465; + this.state = 3469; this.match(PostgreSqlParser.COMMA); - this.state = 3466; + this.state = 3470; this.defElem(); } } - this.state = 3471; + this.state = 3475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3472; + this.state = 3476; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -19201,16 +19202,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3474; + this.state = 3478; this.colLabel(); - this.state = 3477; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 3475; + this.state = 3479; this.match(PostgreSqlParser.EQUAL); - this.state = 3476; + this.state = 3480; this.defArg(); } } @@ -19235,48 +19236,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new DefArgContext(this.context, this.state); this.enterRule(localContext, 282, PostgreSqlParser.RULE_defArg); try { - this.state = 3485; + this.state = 3489; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3479; + this.state = 3483; this.funcType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3480; + this.state = 3484; this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3481; + this.state = 3485; this.qualAllOp(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3482; + this.state = 3486; this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3483; + this.state = 3487; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3484; + this.state = 3488; this.match(PostgreSqlParser.KW_NONE); } break; @@ -19302,11 +19303,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3487; + this.state = 3491; this.identifier(); - this.state = 3488; + this.state = 3492; this.match(PostgreSqlParser.EQUAL); - this.state = 3489; + this.state = 3493; this.defArg(); } } @@ -19329,40 +19330,40 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 286, PostgreSqlParser.RULE_alterEnumStmt); let _la: number; try { - this.state = 3513; + this.state = 3517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3495; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3492; + this.state = 3496; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3493; + this.state = 3497; this.anyName(); - this.state = 3494; + this.state = 3498; this.match(PostgreSqlParser.KW_ADD); - this.state = 3495; + this.state = 3499; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3497; + this.state = 3501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3496; + this.state = 3500; this.ifNotExists(); } } - this.state = 3499; + this.state = 3503; this.stringConst(); - this.state = 3502; + this.state = 3506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { - this.state = 3500; + this.state = 3504; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -19371,7 +19372,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3501; + this.state = 3505; this.stringConst(); } break; @@ -19381,21 +19382,21 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3504; + this.state = 3508; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3505; + this.state = 3509; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3506; + this.state = 3510; this.anyName(); - this.state = 3507; + this.state = 3511; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3508; + this.state = 3512; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3509; + this.state = 3513; this.stringConst(); - this.state = 3510; + this.state = 3514; this.match(PostgreSqlParser.KW_TO); - this.state = 3511; + this.state = 3515; this.stringConst(); } break; @@ -19421,11 +19422,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3515; + this.state = 3519; this.match(PostgreSqlParser.KW_IF); - this.state = 3516; + this.state = 3520; this.match(PostgreSqlParser.KW_NOT); - this.state = 3517; + this.state = 3521; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -19450,61 +19451,61 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3519; + this.state = 3523; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3520; + this.state = 3524; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3521; + this.state = 3525; this.match(PostgreSqlParser.KW_CLASS); - this.state = 3522; + this.state = 3526; this.anyName(); - this.state = 3524; + this.state = 3528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 3523; + this.state = 3527; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 3526; + this.state = 3530; this.match(PostgreSqlParser.KW_FOR); - this.state = 3527; + this.state = 3531; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3528; + this.state = 3532; this.typename(); - this.state = 3529; + this.state = 3533; this.tableAccessMethodClause(); - this.state = 3532; + this.state = 3536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3530; + this.state = 3534; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3531; + this.state = 3535; this.anyName(); } } - this.state = 3534; + this.state = 3538; this.match(PostgreSqlParser.KW_AS); - this.state = 3535; + this.state = 3539; this.opClassItem(); - this.state = 3540; + this.state = 3544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3536; + this.state = 3540; this.match(PostgreSqlParser.COMMA); - this.state = 3537; + this.state = 3541; this.opClassItem(); } } - this.state = 3542; + this.state = 3546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19529,52 +19530,52 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 292, PostgreSqlParser.RULE_opClassItem); let _la: number; try { - this.state = 3569; + this.state = 3573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3543; + this.state = 3547; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3544; + this.state = 3548; this.match(PostgreSqlParser.Integral); - this.state = 3545; + this.state = 3549; this.anyOperator(); - this.state = 3547; + this.state = 3551; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 3546; + this.state = 3550; this.operatorArgTypes(); } break; } - this.state = 3556; + this.state = 3560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3549; + this.state = 3553; this.match(PostgreSqlParser.KW_FOR); - this.state = 3554; + this.state = 3558; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEARCH: { - this.state = 3550; + this.state = 3554; this.match(PostgreSqlParser.KW_SEARCH); } break; case PostgreSqlParser.KW_ORDER: { { - this.state = 3551; + this.state = 3555; this.match(PostgreSqlParser.KW_ORDER); - this.state = 3552; + this.state = 3556; this.match(PostgreSqlParser.KW_BY); - this.state = 3553; + this.state = 3557; this.anyName(); } } @@ -19585,12 +19586,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3559; + this.state = 3563; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3558; + this.state = 3562; this.match(PostgreSqlParser.KW_RECHECK); } break; @@ -19600,30 +19601,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 3561; + this.state = 3565; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3562; + this.state = 3566; this.match(PostgreSqlParser.Integral); - this.state = 3564; + this.state = 3568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3563; + this.state = 3567; this.prepTypeClause(); } } - this.state = 3566; + this.state = 3570; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 3); { - this.state = 3567; + this.state = 3571; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 3568; + this.state = 3572; this.typename(); } break; @@ -19651,15 +19652,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3571; + this.state = 3575; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3572; + this.state = 3576; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3573; + this.state = 3577; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3574; + this.state = 3578; this.anyName(); - this.state = 3575; + this.state = 3579; this.tableAccessMethodClause(); } } @@ -19684,38 +19685,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3577; + this.state = 3581; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3578; + this.state = 3582; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3579; + this.state = 3583; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3580; + this.state = 3584; this.anyName(); - this.state = 3581; + this.state = 3585; this.tableAccessMethodClause(); - this.state = 3600; + this.state = 3604; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: { - this.state = 3582; + this.state = 3586; this.match(PostgreSqlParser.KW_ADD); - this.state = 3583; + this.state = 3587; this.opClassItem(); - this.state = 3588; + this.state = 3592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3584; + this.state = 3588; this.match(PostgreSqlParser.COMMA); - this.state = 3585; + this.state = 3589; this.opClassItem(); } } - this.state = 3590; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19723,23 +19724,23 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DROP: { - this.state = 3591; + this.state = 3595; this.match(PostgreSqlParser.KW_DROP); - this.state = 3592; + this.state = 3596; this.opClassDrop(); - this.state = 3597; + this.state = 3601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3593; + this.state = 3597; this.match(PostgreSqlParser.COMMA); - this.state = 3594; + this.state = 3598; this.opClassDrop(); } } - this.state = 3599; + this.state = 3603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19771,7 +19772,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3602; + this.state = 3606; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -19780,9 +19781,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3603; + this.state = 3607; this.match(PostgreSqlParser.Integral); - this.state = 3604; + this.state = 3608; this.prepTypeClause(); } } @@ -19806,17 +19807,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3606; + this.state = 3610; this.match(PostgreSqlParser.KW_REASSIGN); - this.state = 3607; + this.state = 3611; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3608; + this.state = 3612; this.match(PostgreSqlParser.KW_BY); - this.state = 3609; + this.state = 3613; this.roleList(); - this.state = 3610; + this.state = 3614; this.match(PostgreSqlParser.KW_TO); - this.state = 3611; + this.state = 3615; this.roleSpec(); } } @@ -19839,115 +19840,115 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 302, PostgreSqlParser.RULE_dropStmt); let _la: number; try { - this.state = 3820; + this.state = 3824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3617; this.match(PostgreSqlParser.KW_DROP); - this.state = 3636; + this.state = 3640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEQUENCE: { - this.state = 3614; + this.state = 3618; this.match(PostgreSqlParser.KW_SEQUENCE); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 3615; + this.state = 3619; this.match(PostgreSqlParser.KW_INDEX); } break; case PostgreSqlParser.KW_COLLATION: { - this.state = 3616; + this.state = 3620; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 3617; + this.state = 3621; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 3618; + this.state = 3622; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3619; + this.state = 3623; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3620; + this.state = 3624; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3621; + this.state = 3625; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3622; + this.state = 3626; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 3623; + this.state = 3627; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3624; + this.state = 3628; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3625; + this.state = 3629; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3627; + this.state = 3631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3626; + this.state = 3630; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3629; + this.state = 3633; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3630; + this.state = 3634; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3631; + this.state = 3635; this.match(PostgreSqlParser.KW_DATA); - this.state = 3632; + this.state = 3636; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_TEXT: { - this.state = 3633; + this.state = 3637; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3634; + this.state = 3638; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3635; + this.state = 3639; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19961,24 +19962,24 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3639; + this.state = 3643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3638; + this.state = 3642; this.ifExists(); } break; } - this.state = 3641; + this.state = 3645; this.nameList(); - this.state = 3643; + this.state = 3647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3642; + this.state = 3646; this.optDropBehavior(); } break; @@ -19988,54 +19989,54 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3645; + this.state = 3649; this.match(PostgreSqlParser.KW_DROP); - this.state = 3647; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3646; + this.state = 3650; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3649; + this.state = 3653; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3651; + this.state = 3655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3650; + this.state = 3654; this.ifExists(); } break; } - this.state = 3653; + this.state = 3657; this.viewName(); - this.state = 3658; + this.state = 3662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3654; + this.state = 3658; this.match(PostgreSqlParser.COMMA); - this.state = 3655; + this.state = 3659; this.viewName(); } } - this.state = 3660; + this.state = 3664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3662; + this.state = 3666; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3661; + this.state = 3665; this.optDropBehavior(); } break; @@ -20045,38 +20046,38 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3664; + this.state = 3668; this.match(PostgreSqlParser.KW_DROP); - this.state = 3666; + this.state = 3670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3665; + this.state = 3669; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3668; + this.state = 3672; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3670; + this.state = 3674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3669; + this.state = 3673; this.ifExists(); } break; } - this.state = 3672; + this.state = 3676; this.tableNameList(); - this.state = 3674; + this.state = 3678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3673; + this.state = 3677; this.optDropBehavior(); } break; @@ -20086,28 +20087,28 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3676; + this.state = 3680; this.match(PostgreSqlParser.KW_DROP); - this.state = 3677; + this.state = 3681; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3679; + this.state = 3683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3678; + this.state = 3682; this.ifExists(); } break; } - this.state = 3681; + this.state = 3685; this.schemaNameList(); - this.state = 3683; + this.state = 3687; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3682; + this.state = 3686; this.optDropBehavior(); } break; @@ -20117,9 +20118,9 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3685; + this.state = 3689; this.match(PostgreSqlParser.KW_DROP); - this.state = 3686; + this.state = 3690; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -20128,28 +20129,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3688; + this.state = 3692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 3687; + this.state = 3691; this.ifExists(); } break; } - this.state = 3690; + this.state = 3694; this.colId(); - this.state = 3691; + this.state = 3695; this.match(PostgreSqlParser.KW_ON); - this.state = 3692; + this.state = 3696; this.anyName(); - this.state = 3694; + this.state = 3698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 3693; + this.state = 3697; this.optDropBehavior(); } break; @@ -20159,9 +20160,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3696; + this.state = 3700; this.match(PostgreSqlParser.KW_DROP); - this.state = 3697; + this.state = 3701; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -20170,40 +20171,40 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3699; + this.state = 3703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3698; + this.state = 3702; this.ifExists(); } break; } - this.state = 3701; + this.state = 3705; this.typename(); - this.state = 3706; + this.state = 3710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3702; + this.state = 3706; this.match(PostgreSqlParser.COMMA); - this.state = 3703; + this.state = 3707; this.typename(); } } - this.state = 3708; + this.state = 3712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3710; + this.state = 3714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3709; + this.state = 3713; this.optDropBehavior(); } break; @@ -20213,30 +20214,30 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3712; + this.state = 3716; this.match(PostgreSqlParser.KW_DROP); - this.state = 3713; + this.state = 3717; this.match(PostgreSqlParser.KW_INDEX); - this.state = 3714; + this.state = 3718; this.match(PostgreSqlParser.KW_CONCURRENTLY); - this.state = 3716; + this.state = 3720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3715; + this.state = 3719; this.ifExists(); } break; } - this.state = 3718; + this.state = 3722; this.anyNameList(); - this.state = 3720; + this.state = 3724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3719; + this.state = 3723; this.optDropBehavior(); } break; @@ -20246,36 +20247,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3722; + this.state = 3726; this.match(PostgreSqlParser.KW_DROP); - this.state = 3723; + this.state = 3727; this.match(PostgreSqlParser.KW_CAST); - this.state = 3725; + this.state = 3729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3724; + this.state = 3728; this.ifExists(); } } - this.state = 3727; + this.state = 3731; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3728; + this.state = 3732; this.typename(); - this.state = 3729; + this.state = 3733; this.match(PostgreSqlParser.KW_AS); - this.state = 3730; + this.state = 3734; this.typename(); - this.state = 3731; + this.state = 3735; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3733; + this.state = 3737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3732; + this.state = 3736; this.optDropBehavior(); } break; @@ -20285,11 +20286,11 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3735; + this.state = 3739; this.match(PostgreSqlParser.KW_DROP); - this.state = 3736; + this.state = 3740; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3737; + this.state = 3741; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -20298,26 +20299,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3739; + this.state = 3743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3738; + this.state = 3742; this.ifExists(); } break; } - this.state = 3741; + this.state = 3745; this.anyName(); - this.state = 3742; + this.state = 3746; this.tableAccessMethodClause(); - this.state = 3744; + this.state = 3748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3743; + this.state = 3747; this.optDropBehavior(); } break; @@ -20327,20 +20328,20 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3746; + this.state = 3750; this.match(PostgreSqlParser.KW_DROP); - this.state = 3747; + this.state = 3751; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3748; + this.state = 3752; this.match(PostgreSqlParser.KW_BY); - this.state = 3749; + this.state = 3753; this.roleList(); - this.state = 3751; + this.state = 3755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3750; + this.state = 3754; this.optDropBehavior(); } break; @@ -20350,28 +20351,28 @@ export class PostgreSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3753; + this.state = 3757; this.match(PostgreSqlParser.KW_DROP); - this.state = 3754; + this.state = 3758; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 3756; + this.state = 3760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3755; + this.state = 3759; this.ifExists(); } break; } - this.state = 3758; + this.state = 3762; this.colId(); - this.state = 3760; + this.state = 3764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3759; + this.state = 3763; this.optDropBehavior(); } break; @@ -20381,55 +20382,55 @@ export class PostgreSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3762; + this.state = 3766; this.match(PostgreSqlParser.KW_DROP); - this.state = 3763; + this.state = 3767; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 3765; + this.state = 3769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3764; + this.state = 3768; this.ifExists(); } break; } - this.state = 3767; + this.state = 3771; this.tableSpaceName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3768; + this.state = 3772; this.match(PostgreSqlParser.KW_DROP); - this.state = 3769; + this.state = 3773; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3771; + this.state = 3775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3770; + this.state = 3774; this.ifExists(); } } - this.state = 3773; + this.state = 3777; this.match(PostgreSqlParser.KW_FOR); - this.state = 3774; + this.state = 3778; this.typename(); - this.state = 3775; + this.state = 3779; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3776; + this.state = 3780; this.colId(); - this.state = 3778; + this.state = 3782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3777; + this.state = 3781; this.optDropBehavior(); } break; @@ -20439,9 +20440,9 @@ export class PostgreSqlParser extends SQLParserBase { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3780; + this.state = 3784; this.match(PostgreSqlParser.KW_DROP); - this.state = 3781; + this.state = 3785; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -20450,42 +20451,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3783; + this.state = 3787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3782; + this.state = 3786; this.ifExists(); } break; } - this.state = 3785; + this.state = 3789; this.roleList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3786; + this.state = 3790; this.match(PostgreSqlParser.KW_DROP); - this.state = 3787; + this.state = 3791; this.match(PostgreSqlParser.KW_USER); - this.state = 3788; + this.state = 3792; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3790; + this.state = 3794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3789; + this.state = 3793; this.ifExists(); } } - this.state = 3792; + this.state = 3796; this.match(PostgreSqlParser.KW_FOR); - this.state = 3795; + this.state = 3799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -20907,81 +20908,81 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3793; + this.state = 3797; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3794; + this.state = 3798; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3797; + this.state = 3801; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3798; + this.state = 3802; this.colId(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3799; + this.state = 3803; this.match(PostgreSqlParser.KW_DROP); - this.state = 3800; + this.state = 3804; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3802; + this.state = 3806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3801; + this.state = 3805; this.ifExists(); } break; } - this.state = 3804; + this.state = 3808; this.databaseName(); - this.state = 3818; + this.state = 3822; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3806; + this.state = 3810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3805; + this.state = 3809; this.match(PostgreSqlParser.KW_WITH); } } { - this.state = 3808; + this.state = 3812; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3809; + this.state = 3813; this.match(PostgreSqlParser.KW_FORCE); - this.state = 3814; + this.state = 3818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3810; + this.state = 3814; this.match(PostgreSqlParser.COMMA); - this.state = 3811; + this.state = 3815; this.match(PostgreSqlParser.KW_FORCE); } } - this.state = 3816; + this.state = 3820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3817; + this.state = 3821; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -21010,26 +21011,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 304, PostgreSqlParser.RULE_objectTypeAnyName); let _la: number; try { - this.state = 3838; + this.state = 3842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3823; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3822; + this.state = 3826; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3825; + this.state = 3829; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3826; + this.state = 3830; this.tableName(); } break; @@ -21037,19 +21038,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 3828; + this.state = 3832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3827; + this.state = 3831; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3830; + this.state = 3834; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3831; + this.state = 3835; this.viewName(); } break; @@ -21060,7 +21061,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_STATISTICS: this.enterOuterAlt(localContext, 3); { - this.state = 3832; + this.state = 3836; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 226 || _la === 328 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -21069,18 +21070,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3833; + this.state = 3837; this.anyName(); } break; case PostgreSqlParser.KW_TEXT: this.enterOuterAlt(localContext, 4); { - this.state = 3834; + this.state = 3838; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3835; + this.state = 3839; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3836; + this.state = 3840; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -21089,7 +21090,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3837; + this.state = 3841; this.anyName(); } break; @@ -21116,7 +21117,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 306, PostgreSqlParser.RULE_objectTypeName); let _la: number; try { - this.state = 3864; + this.state = 3868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: @@ -21131,111 +21132,111 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 3856; + this.state = 3860; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EVENT: { - this.state = 3840; + this.state = 3844; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3841; + this.state = 3845; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3842; + this.state = 3846; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3843; + this.state = 3847; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3844; + this.state = 3848; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3845; + this.state = 3849; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3846; + this.state = 3850; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ROLE: { - this.state = 3847; + this.state = 3851; this.match(PostgreSqlParser.KW_ROLE); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 3848; + this.state = 3852; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3849; + this.state = 3853; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3850; + this.state = 3854; this.match(PostgreSqlParser.KW_DATA); - this.state = 3851; + this.state = 3855; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3853; + this.state = 3857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3852; + this.state = 3856; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3855; + this.state = 3859; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3858; + this.state = 3862; this.colId(); } break; case PostgreSqlParser.KW_SCHEMA: this.enterOuterAlt(localContext, 2); { - this.state = 3859; + this.state = 3863; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3860; + this.state = 3864; this.schemaName(); } break; case PostgreSqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 3); { - this.state = 3861; + this.state = 3865; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3862; + this.state = 3866; this.databaseName(); } break; case PostgreSqlParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 4); { - this.state = 3863; + this.state = 3867; this.optTableSpace(); } break; @@ -21264,21 +21265,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3866; + this.state = 3870; this.anyName(); - this.state = 3871; + this.state = 3875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3867; + this.state = 3871; this.match(PostgreSqlParser.COMMA); - this.state = 3868; + this.state = 3872; this.anyName(); } } - this.state = 3873; + this.state = 3877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21304,14 +21305,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3874; + this.state = 3878; this.colId(); - this.state = 3876; + this.state = 3880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3875; + this.state = 3879; this.attrs(); } break; @@ -21339,7 +21340,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3880; + this.state = 3884; this.errorHandler.sync(this); alternative = 1; do { @@ -21347,9 +21348,9 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 3878; + this.state = 3882; this.match(PostgreSqlParser.DOT); - this.state = 3879; + this.state = 3883; this.colLabel(); } } @@ -21357,7 +21358,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3882; + this.state = 3886; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -21384,42 +21385,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3884; + this.state = 3888; this.match(PostgreSqlParser.KW_TRUNCATE); - this.state = 3886; + this.state = 3890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 3885; + this.state = 3889; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 3888; + this.state = 3892; this.truncateTable(); - this.state = 3893; + this.state = 3897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3889; + this.state = 3893; this.match(PostgreSqlParser.COMMA); - this.state = 3890; + this.state = 3894; this.truncateTable(); } } - this.state = 3895; + this.state = 3899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3898; + this.state = 3902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3896; + this.state = 3900; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -21428,17 +21429,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3897; + this.state = 3901; this.match(PostgreSqlParser.KW_IDENTITY); } break; } - this.state = 3901; + this.state = 3905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3900; + this.state = 3904; this.optDropBehavior(); } break; @@ -21466,24 +21467,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3904; + this.state = 3908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 3903; + this.state = 3907; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 3906; + this.state = 3910; this.tableName(); - this.state = 3908; + this.state = 3912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 3907; + this.state = 3911; this.match(PostgreSqlParser.STAR); } } @@ -21511,52 +21512,52 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3910; + this.state = 3914; this.match(PostgreSqlParser.KW_COMMENT); - this.state = 3911; + this.state = 3915; this.match(PostgreSqlParser.KW_ON); - this.state = 3970; + this.state = 3974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3912; + this.state = 3916; this.objectTypeAnyName(); } break; case 2: { - this.state = 3913; + this.state = 3917; this.objectTypeName(); } break; case 3: { - this.state = 3914; + this.state = 3918; this.match(PostgreSqlParser.KW_COLUMN); { - this.state = 3915; + this.state = 3919; this.colId(); - this.state = 3917; + this.state = 3921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3916; + this.state = 3920; this.attrs(); } break; } } - this.state = 3919; + this.state = 3923; this.match(PostgreSqlParser.DOT); - this.state = 3920; + this.state = 3924; this.columnName(); } break; case 4: { - this.state = 3922; + this.state = 3926; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21565,65 +21566,65 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3923; + this.state = 3927; this.typename(); } break; case 5: { - this.state = 3924; + this.state = 3928; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3925; + this.state = 3929; this.aggregateWithArgTypes(); } break; case 6: { - this.state = 3926; + this.state = 3930; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3927; + this.state = 3931; this.functionWithArgTypes(); } break; case 7: { - this.state = 3928; + this.state = 3932; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3929; + this.state = 3933; this.operatorWithArgTypes(); } break; case 8: { - this.state = 3930; + this.state = 3934; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 3931; + this.state = 3935; this.colId(); - this.state = 3932; + this.state = 3936; this.match(PostgreSqlParser.KW_ON); - this.state = 3938; + this.state = 3942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3933; + this.state = 3937; this.tableName(); } break; case 2: { { - this.state = 3935; + this.state = 3939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3934; + this.state = 3938; this.match(PostgreSqlParser.KW_DOMAIN); } break; } - this.state = 3937; + this.state = 3941; this.anyName(); } } @@ -21633,7 +21634,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 9: { - this.state = 3940; + this.state = 3944; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -21642,49 +21643,49 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3941; + this.state = 3945; this.colId(); - this.state = 3942; + this.state = 3946; this.match(PostgreSqlParser.KW_ON); - this.state = 3943; + this.state = 3947; this.anyName(); } break; case 10: { - this.state = 3945; + this.state = 3949; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3946; + this.state = 3950; this.procedureWithArgTypes(); } break; case 11: { - this.state = 3947; + this.state = 3951; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3948; + this.state = 3952; this.routineWithArgTypes(); } break; case 12: { - this.state = 3949; + this.state = 3953; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3950; + this.state = 3954; this.match(PostgreSqlParser.KW_FOR); - this.state = 3951; + this.state = 3955; this.typename(); - this.state = 3952; + this.state = 3956; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3953; + this.state = 3957; this.colId(); } break; case 13: { - this.state = 3955; + this.state = 3959; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3956; + this.state = 3960; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -21693,42 +21694,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3957; + this.state = 3961; this.anyName(); - this.state = 3958; + this.state = 3962; this.tableAccessMethodClause(); } break; case 14: { - this.state = 3960; + this.state = 3964; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3961; + this.state = 3965; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3962; + this.state = 3966; this.numericOnly(); } break; case 15: { - this.state = 3963; + this.state = 3967; this.match(PostgreSqlParser.KW_CAST); - this.state = 3964; + this.state = 3968; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3965; + this.state = 3969; this.typename(); - this.state = 3966; + this.state = 3970; this.match(PostgreSqlParser.KW_AS); - this.state = 3967; + this.state = 3971; this.typename(); - this.state = 3968; + this.state = 3972; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 3972; + this.state = 3976; this.match(PostgreSqlParser.KW_IS); - this.state = 3975; + this.state = 3979; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21736,13 +21737,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3973; + this.state = 3977; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 3974; + this.state = 3978; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21772,30 +21773,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3977; + this.state = 3981; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3978; + this.state = 3982; this.match(PostgreSqlParser.KW_LABEL); - this.state = 3981; + this.state = 3985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3979; + this.state = 3983; this.match(PostgreSqlParser.KW_FOR); - this.state = 3980; + this.state = 3984; this.nonReservedWordOrStringConst(); } } - this.state = 3983; + this.state = 3987; this.match(PostgreSqlParser.KW_ON); - this.state = 4001; + this.state = 4005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3984; + this.state = 3988; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21804,76 +21805,76 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3985; + this.state = 3989; this.typename(); } break; case 2: { - this.state = 3986; + this.state = 3990; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3987; + this.state = 3991; this.aggregateWithArgTypes(); } break; case 3: { - this.state = 3988; + this.state = 3992; this.match(PostgreSqlParser.KW_COLUMN); - this.state = 3989; + this.state = 3993; this.columnName(); } break; case 4: { - this.state = 3990; + this.state = 3994; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3991; + this.state = 3995; this.functionWithArgTypes(); } break; case 5: { - this.state = 3992; + this.state = 3996; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3993; + this.state = 3997; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3994; + this.state = 3998; this.numericOnly(); } break; case 6: { - this.state = 3995; + this.state = 3999; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3996; + this.state = 4000; this.procedureWithArgTypes(); } break; case 7: { - this.state = 3997; + this.state = 4001; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3998; + this.state = 4002; this.routineWithArgTypes(); } break; case 8: { - this.state = 3999; + this.state = 4003; this.objectTypeAnyName(); } break; case 9: { - this.state = 4000; + this.state = 4004; this.objectTypeName(); } break; } - this.state = 4003; + this.state = 4007; this.match(PostgreSqlParser.KW_IS); - this.state = 4006; + this.state = 4010; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21881,13 +21882,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4004; + this.state = 4008; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 4005; + this.state = 4009; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21917,7 +21918,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4008; + this.state = 4012; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -21926,7 +21927,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4009; + this.state = 4013; this.fetch_args(); } } @@ -21949,18 +21950,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 324, PostgreSqlParser.RULE_fetch_args); let _la: number; try { - this.state = 4054; + this.state = 4058; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 4011; + this.state = 4015; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249 || _la === 268 || _la === 293)) { this.errorHandler.recoverInline(this); @@ -21972,29 +21973,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4015; + this.state = 4019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4014; + this.state = 4018; this.fromIn(); } } - this.state = 4017; + this.state = 4021; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4019; + this.state = 4023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130 || _la === 307) { { - this.state = 4018; + this.state = 4022; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -22006,86 +22007,86 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4021; + this.state = 4025; this.signedConst(); - this.state = 4023; + this.state = 4027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4022; + this.state = 4026; this.fromIn(); } } - this.state = 4025; + this.state = 4029; this.colId(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4027; + this.state = 4031; this.match(PostgreSqlParser.KW_FORWARD); - this.state = 4029; + this.state = 4033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574) { { - this.state = 4028; + this.state = 4032; this.signedConst(); } } - this.state = 4032; + this.state = 4036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4031; + this.state = 4035; this.fromIn(); } } - this.state = 4034; + this.state = 4038; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4036; + this.state = 4040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 4035; + this.state = 4039; this.match(PostgreSqlParser.KW_FORWARD); } } - this.state = 4038; + this.state = 4042; this.match(PostgreSqlParser.KW_ALL); - this.state = 4040; + this.state = 4044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4039; + this.state = 4043; this.fromIn(); } } - this.state = 4042; + this.state = 4046; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4043; + this.state = 4047; this.match(PostgreSqlParser.KW_BACKWARD); - this.state = 4048; + this.state = 4052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -22486,12 +22487,12 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4045; + this.state = 4049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 4044; + this.state = 4048; this.match(PostgreSqlParser.KW_ALL); } } @@ -22502,24 +22503,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.MINUS: case PostgreSqlParser.Integral: { - this.state = 4047; + this.state = 4051; this.signedConst(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4051; + this.state = 4055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4050; + this.state = 4054; this.fromIn(); } } - this.state = 4053; + this.state = 4057; this.colId(); } break; @@ -22546,7 +22547,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4056; + this.state = 4060; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -22577,28 +22578,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4058; + this.state = 4062; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4059; + this.state = 4063; this.privileges(); - this.state = 4060; + this.state = 4064; this.match(PostgreSqlParser.KW_ON); - this.state = 4061; + this.state = 4065; this.privilegeTarget(); - this.state = 4062; + this.state = 4066; this.match(PostgreSqlParser.KW_TO); - this.state = 4063; - this.granteeList(); this.state = 4067; + this.granteeList(); + this.state = 4071; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 4064; + this.state = 4068; this.match(PostgreSqlParser.KW_WITH); - this.state = 4065; + this.state = 4069; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4066; + this.state = 4070; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -22626,38 +22627,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4069; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4073; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4070; + this.state = 4074; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4071; + this.state = 4075; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4072; + this.state = 4076; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4075; + this.state = 4079; this.privileges(); - this.state = 4076; + this.state = 4080; this.match(PostgreSqlParser.KW_ON); - this.state = 4077; + this.state = 4081; this.privilegeTarget(); - this.state = 4078; + this.state = 4082; this.match(PostgreSqlParser.KW_FROM); - this.state = 4079; + this.state = 4083; this.granteeList(); - this.state = 4081; + this.state = 4085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 4080; + this.state = 4084; this.optDropBehavior(); } break; @@ -22683,27 +22684,27 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 332, PostgreSqlParser.RULE_privileges); let _la: number; try { - this.state = 4106; + this.state = 4110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4083; + this.state = 4087; this.privilege(); - this.state = 4088; + this.state = 4092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4084; + this.state = 4088; this.match(PostgreSqlParser.COMMA); - this.state = 4085; + this.state = 4089; this.privilege(); } } - this.state = 4090; + this.state = 4094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22712,24 +22713,24 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4091; + this.state = 4095; this.match(PostgreSqlParser.KW_ALL); - this.state = 4093; + this.state = 4097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294) { { - this.state = 4092; + this.state = 4096; this.match(PostgreSqlParser.KW_PRIVILEGES); } } - this.state = 4096; + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4095; + this.state = 4099; this.optColumnList(); } } @@ -22739,21 +22740,21 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4098; + this.state = 4102; this.beforePrivilegeSelect(); - this.state = 4103; + this.state = 4107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4099; + this.state = 4103; this.match(PostgreSqlParser.COMMA); - this.state = 4100; + this.state = 4104; this.beforePrivilegeSelect(); } } - this.state = 4105; + this.state = 4109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22782,7 +22783,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4108; + this.state = 4112; _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); @@ -22814,24 +22815,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4114; + this.state = 4118; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 4110; + this.state = 4114; this.match(PostgreSqlParser.KW_SELECT); } break; case PostgreSqlParser.KW_REFERENCES: { - this.state = 4111; + this.state = 4115; this.match(PostgreSqlParser.KW_REFERENCES); } break; case PostgreSqlParser.KW_CREATE: { - this.state = 4112; + this.state = 4116; this.match(PostgreSqlParser.KW_CREATE); } break; @@ -23230,19 +23231,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4113; + this.state = 4117; this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4117; + this.state = 4121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4116; + this.state = 4120; this.optColumnList(); } } @@ -23268,59 +23269,59 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 338, PostgreSqlParser.RULE_privilegeTarget); let _la: number; try { - this.state = 4164; + this.state = 4168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4119; + this.state = 4123; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4120; + this.state = 4124; this.tableNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4122; + this.state = 4126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 4121; + this.state = 4125; this.match(PostgreSqlParser.KW_SEQUENCE); } break; } - this.state = 4124; + this.state = 4128; this.qualifiedNameList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4132; + this.state = 4136; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4125; - this.match(PostgreSqlParser.KW_FOREIGN); this.state = 4129; + this.match(PostgreSqlParser.KW_FOREIGN); + this.state = 4133; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 4126; + this.state = 4130; this.match(PostgreSqlParser.KW_DATA); - this.state = 4127; + this.state = 4131; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4128; + this.state = 4132; this.match(PostgreSqlParser.KW_SERVER); } break; @@ -23331,57 +23332,57 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4131; + this.state = 4135; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4134; + this.state = 4138; this.nameList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4135; + this.state = 4139; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4136; + this.state = 4140; this.functionWithArgTypesList(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4137; + this.state = 4141; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4138; + this.state = 4142; this.procedureWithArgTypesList(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4139; + this.state = 4143; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4140; + this.state = 4144; this.routineWithArgTypesList(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4141; + this.state = 4145; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4142; + this.state = 4146; this.databaseNameList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4143; + this.state = 4147; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23390,32 +23391,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4144; + this.state = 4148; this.anyNameList(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4145; + this.state = 4149; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4146; + this.state = 4150; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4147; + this.state = 4151; this.numericOnly(); - this.state = 4152; + this.state = 4156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4148; + this.state = 4152; this.match(PostgreSqlParser.COMMA); - this.state = 4149; + this.state = 4153; this.numericOnly(); } } - this.state = 4154; + this.state = 4158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23424,27 +23425,27 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4155; + this.state = 4159; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4156; + this.state = 4160; this.schemaNameList(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4157; + this.state = 4161; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 4158; + this.state = 4162; this.tableSpaceNameList(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4159; + this.state = 4163; this.match(PostgreSqlParser.KW_ALL); - this.state = 4160; + this.state = 4164; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 455 || _la === 457)) { this.errorHandler.recoverInline(this); @@ -23453,11 +23454,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4161; + this.state = 4165; this.match(PostgreSqlParser.KW_IN); - this.state = 4162; + this.state = 4166; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4163; + this.state = 4167; this.schemaNameList(); } break; @@ -23485,44 +23486,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 4167; + this.state = 4171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4166; + this.state = 4170; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4169; + this.state = 4173; this.roleSpec(); } - this.state = 4178; + this.state = 4182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4171; + this.state = 4175; this.match(PostgreSqlParser.COMMA); { - this.state = 4173; + this.state = 4177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4172; + this.state = 4176; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4175; + this.state = 4179; this.roleSpec(); } } } - this.state = 4180; + this.state = 4184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23549,54 +23550,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4181; + this.state = 4185; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4182; + this.state = 4186; this.privilege(); - this.state = 4187; + this.state = 4191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4183; + this.state = 4187; this.match(PostgreSqlParser.COMMA); - this.state = 4184; + this.state = 4188; this.privilege(); } } - this.state = 4189; + this.state = 4193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4190; + this.state = 4194; this.match(PostgreSqlParser.KW_TO); - this.state = 4191; - this.roleList(); this.state = 4195; + this.roleList(); + this.state = 4199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4192; + this.state = 4196; this.match(PostgreSqlParser.KW_WITH); - this.state = 4193; + this.state = 4197; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4194; + this.state = 4198; this.match(PostgreSqlParser.KW_OPTION); } break; } - this.state = 4200; + this.state = 4204; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 4197; + this.state = 4201; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4198; + this.state = 4202; this.match(PostgreSqlParser.KW_BY); - this.state = 4199; + this.state = 4203; this.roleSpec(); } break; @@ -23624,64 +23625,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4202; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4206; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4210; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 4203; + this.state = 4207; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4204; + this.state = 4208; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4205; + this.state = 4209; this.match(PostgreSqlParser.KW_FOR); } break; } - this.state = 4208; + this.state = 4212; this.privilege(); - this.state = 4213; + this.state = 4217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4209; + this.state = 4213; this.match(PostgreSqlParser.COMMA); - this.state = 4210; + this.state = 4214; this.privilege(); } } - this.state = 4215; + this.state = 4219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4216; + this.state = 4220; this.match(PostgreSqlParser.KW_FROM); - this.state = 4217; - this.roleList(); this.state = 4221; + this.roleList(); + this.state = 4225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 4218; + this.state = 4222; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4219; + this.state = 4223; this.match(PostgreSqlParser.KW_BY); - this.state = 4220; + this.state = 4224; this.roleSpec(); } break; } - this.state = 4224; + this.state = 4228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 4223; + this.state = 4227; this.optDropBehavior(); } break; @@ -23709,35 +23710,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4226; + this.state = 4230; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4227; + this.state = 4231; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 4228; + this.state = 4232; this.match(PostgreSqlParser.KW_PRIVILEGES); - this.state = 4237; + this.state = 4241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { - this.state = 4235; + this.state = 4239; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: { - this.state = 4229; + this.state = 4233; this.match(PostgreSqlParser.KW_IN); - this.state = 4230; + this.state = 4234; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4231; + this.state = 4235; this.schemaNameList(); } break; case PostgreSqlParser.KW_FOR: { - this.state = 4232; + this.state = 4236; this.match(PostgreSqlParser.KW_FOR); - this.state = 4233; + this.state = 4237; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23746,7 +23747,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4234; + this.state = 4238; this.roleList(); } break; @@ -23754,11 +23755,11 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4239; + this.state = 4243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4240; + this.state = 4244; this.defaclaction(); } } @@ -23781,34 +23782,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 348, PostgreSqlParser.RULE_defaclaction); let _la: number; try { - this.state = 4267; + this.state = 4271; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_GRANT: this.enterOuterAlt(localContext, 1); { - this.state = 4242; + this.state = 4246; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4243; + this.state = 4247; this.privileges(); - this.state = 4244; + this.state = 4248; this.match(PostgreSqlParser.KW_ON); - this.state = 4245; + this.state = 4249; this.defaclPrivilegeTarget(); - this.state = 4246; + this.state = 4250; this.match(PostgreSqlParser.KW_TO); - this.state = 4247; - this.granteeList(); this.state = 4251; + this.granteeList(); + this.state = 4255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4248; + this.state = 4252; this.match(PostgreSqlParser.KW_WITH); - this.state = 4249; + this.state = 4253; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4250; + this.state = 4254; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -23818,38 +23819,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REVOKE: this.enterOuterAlt(localContext, 2); { - this.state = 4253; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4257; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4254; + this.state = 4258; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4255; + this.state = 4259; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4256; + this.state = 4260; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4259; + this.state = 4263; this.privileges(); - this.state = 4260; + this.state = 4264; this.match(PostgreSqlParser.KW_ON); - this.state = 4261; + this.state = 4265; this.defaclPrivilegeTarget(); - this.state = 4262; + this.state = 4266; this.match(PostgreSqlParser.KW_FROM); - this.state = 4263; + this.state = 4267; this.granteeList(); - this.state = 4265; + this.state = 4269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { case 1: { - this.state = 4264; + this.state = 4268; this.optDropBehavior(); } break; @@ -23881,7 +23882,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4269; + this.state = 4273; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -23913,126 +23914,126 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4271; + this.state = 4275; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4273; + this.state = 4277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 4272; + this.state = 4276; this.match(PostgreSqlParser.KW_UNIQUE); } } - this.state = 4275; + this.state = 4279; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4277; + this.state = 4281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4276; + this.state = 4280; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4280; + this.state = 4284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 4279; + this.state = 4283; this.ifNotExists(); } break; } - this.state = 4283; + this.state = 4287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4282; + this.state = 4286; this.colId(); } } - this.state = 4285; + this.state = 4289; this.match(PostgreSqlParser.KW_ON); - this.state = 4286; + this.state = 4290; this.relationExpr(); - this.state = 4288; + this.state = 4292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4287; + this.state = 4291; this.tableAccessMethodClause(); } } - this.state = 4290; + this.state = 4294; this.indexParams(); - this.state = 4293; + this.state = 4297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 4291; + this.state = 4295; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 4292; + this.state = 4296; this.indexParams(); } break; } - this.state = 4300; + this.state = 4304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4295; + this.state = 4299; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4297; + this.state = 4301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4296; + this.state = 4300; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 4299; + this.state = 4303; this.match(PostgreSqlParser.KW_DISTINCT); } break; } - this.state = 4303; + this.state = 4307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: { - this.state = 4302; + this.state = 4306; this.optRelOptions(); } break; } - this.state = 4306; + this.state = 4310; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 4305; + this.state = 4309; this.optTableSpace(); } break; } - this.state = 4309; + this.state = 4313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 4308; + this.state = 4312; this.whereClause(); } } @@ -24060,27 +24061,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4311; + this.state = 4315; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4312; + this.state = 4316; this.indexElem(); - this.state = 4317; + this.state = 4321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4313; + this.state = 4317; this.match(PostgreSqlParser.COMMA); - this.state = 4314; + this.state = 4318; this.indexElem(); } } - this.state = 4319; + this.state = 4323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4320; + this.state = 4324; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24105,53 +24106,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4328; + this.state = 4332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4322; + this.state = 4326; this.columnName(); } break; case 2: { - this.state = 4323; + this.state = 4327; this.funcExprWindowless(); } break; case 3: { - this.state = 4324; + this.state = 4328; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4325; + this.state = 4329; this.expression(); - this.state = 4326; + this.state = 4330; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 4331; + this.state = 4335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 4330; + this.state = 4334; this.collateClause(); } } - this.state = 4339; + this.state = 4343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 535, this.context) ) { case 1: { - this.state = 4334; + this.state = 4338; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: { - this.state = 4333; + this.state = 4337; this.anyName(); } break; @@ -24160,19 +24161,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4336; + this.state = 4340; this.anyName(); - this.state = 4337; + this.state = 4341; this.relOptions(); } break; } - this.state = 4342; + this.state = 4346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 4341; + this.state = 4345; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -24184,14 +24185,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4346; + this.state = 4350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 4344; + this.state = 4348; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4345; + this.state = 4349; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -24227,34 +24228,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4348; + this.state = 4352; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4350; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4349; + this.state = 4353; this.orReplaceOpt(); } } - this.state = 4356; + this.state = 4360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4352; + this.state = 4356; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4353; + this.state = 4357; this.functionNameCreate(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4354; + this.state = 4358; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4355; + this.state = 4359; this.procedureNameCreate(); } break; @@ -24262,45 +24263,45 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } { - this.state = 4358; + this.state = 4362; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4367; + this.state = 4371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4359; + this.state = 4363; this.funcArgWithDefault(); - this.state = 4364; + this.state = 4368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4360; + this.state = 4364; this.match(PostgreSqlParser.COMMA); - this.state = 4361; + this.state = 4365; this.funcArgWithDefault(); } } - this.state = 4366; + this.state = 4370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4369; + this.state = 4373; this.match(PostgreSqlParser.CLOSE_PAREN); } - this.state = 4387; + this.state = 4391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 4371; + this.state = 4375; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4385; + this.state = 4389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -24719,36 +24720,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4372; + this.state = 4376; this.funcType(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4373; + this.state = 4377; this.match(PostgreSqlParser.KW_TABLE); { - this.state = 4374; + this.state = 4378; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4375; + this.state = 4379; this.tableFuncColumn(); - this.state = 4380; + this.state = 4384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4376; + this.state = 4380; this.match(PostgreSqlParser.COMMA); - this.state = 4377; + this.state = 4381; this.tableFuncColumn(); } } - this.state = 4382; + this.state = 4386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4383; + this.state = 4387; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24759,7 +24760,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4390; + this.state = 4394; this.errorHandler.sync(this); alternative = 1; do { @@ -24767,7 +24768,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4389; + this.state = 4393; this.createFuncOptItem(); } } @@ -24775,22 +24776,22 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4392; + this.state = 4396; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4399; + this.state = 4403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4394; + this.state = 4398; this.match(PostgreSqlParser.KW_WITH); - this.state = 4395; + this.state = 4399; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4396; + this.state = 4400; this.nameList(); - this.state = 4397; + this.state = 4401; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -24817,9 +24818,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4401; + this.state = 4405; this.match(PostgreSqlParser.KW_OR); - this.state = 4402; + this.state = 4406; this.match(PostgreSqlParser.KW_REPLACE); } } @@ -24844,19 +24845,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4404; + this.state = 4408; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4406; + this.state = 4410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4405; + this.state = 4409; this.funcArgsList(); } } - this.state = 4408; + this.state = 4412; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24881,21 +24882,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4410; + this.state = 4414; this.funcArg(); - this.state = 4415; + this.state = 4419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4411; + this.state = 4415; this.match(PostgreSqlParser.COMMA); - this.state = 4412; + this.state = 4416; this.funcArg(); } } - this.state = 4417; + this.state = 4421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24922,21 +24923,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4418; + this.state = 4422; this.routineWithArgTypes(); - this.state = 4423; + this.state = 4427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4419; + this.state = 4423; this.match(PostgreSqlParser.COMMA); - this.state = 4420; + this.state = 4424; this.routineWithArgTypes(); } } - this.state = 4425; + this.state = 4429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24960,29 +24961,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoutineWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 368, PostgreSqlParser.RULE_routineWithArgTypes); try { - this.state = 4431; + this.state = 4435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4426; + this.state = 4430; this.routineName(); - this.state = 4427; + this.state = 4431; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4429; + this.state = 4433; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4430; + this.state = 4434; this.qualifiedName(); } break; @@ -25009,21 +25010,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4437; this.procedureWithArgTypes(); - this.state = 4438; + this.state = 4442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4434; + this.state = 4438; this.match(PostgreSqlParser.COMMA); - this.state = 4435; + this.state = 4439; this.procedureWithArgTypes(); } } - this.state = 4440; + this.state = 4444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25047,29 +25048,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 372, PostgreSqlParser.RULE_procedureWithArgTypes); try { - this.state = 4446; + this.state = 4450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4441; + this.state = 4445; this.procedureName(); - this.state = 4442; + this.state = 4446; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4444; + this.state = 4448; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4445; + this.state = 4449; this.qualifiedName(); } break; @@ -25096,21 +25097,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4448; + this.state = 4452; this.functionWithArgTypes(); - this.state = 4453; + this.state = 4457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4449; + this.state = 4453; this.match(PostgreSqlParser.COMMA); - this.state = 4450; + this.state = 4454; this.functionWithArgTypes(); } } - this.state = 4455; + this.state = 4459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25134,29 +25135,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 376, PostgreSqlParser.RULE_functionWithArgTypes); try { - this.state = 4461; + this.state = 4465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4456; + this.state = 4460; this.functionName(); - this.state = 4457; + this.state = 4461; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4459; + this.state = 4463; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4460; + this.state = 4464; this.qualifiedName(); } break; @@ -25182,19 +25183,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4471; + this.state = 4475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4463; + this.state = 4467; this.argClass(); - this.state = 4465; + this.state = 4469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 4464; + this.state = 4468; this.typeFunctionName(); } break; @@ -25203,14 +25204,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4467; + this.state = 4471; this.typeFunctionName(); - this.state = 4469; + this.state = 4473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4468; + this.state = 4472; this.argClass(); } break; @@ -25218,7 +25219,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4473; + this.state = 4477; this.funcType(); } } @@ -25240,20 +25241,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ArgClassContext(this.context, this.state); this.enterRule(localContext, 380, PostgreSqlParser.RULE_argClass); try { - this.state = 4482; + this.state = 4486; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4475; + this.state = 4479; this.match(PostgreSqlParser.KW_IN); - this.state = 4477; + this.state = 4481; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: { - this.state = 4476; + this.state = 4480; this.match(PostgreSqlParser.KW_OUT); } break; @@ -25263,21 +25264,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 4479; + this.state = 4483; this.match(PostgreSqlParser.KW_OUT); } break; case PostgreSqlParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 4480; + this.state = 4484; this.match(PostgreSqlParser.KW_INOUT); } break; case PostgreSqlParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 4481; + this.state = 4485; this.match(PostgreSqlParser.KW_VARIADIC); } break; @@ -25304,36 +25305,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 382, PostgreSqlParser.RULE_funcType); let _la: number; try { - this.state = 4493; + this.state = 4497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4484; + this.state = 4488; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4486; + this.state = 4490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 4485; + this.state = 4489; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 4488; + this.state = 4492; this.typeFunctionName(); - this.state = 4489; + this.state = 4493; this.attrs(); - this.state = 4490; + this.state = 4494; this.match(PostgreSqlParser.PERCENT); - this.state = 4491; + this.state = 4495; this.match(PostgreSqlParser.KW_TYPE); } break; @@ -25360,14 +25361,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4495; + this.state = 4499; this.funcArg(); - this.state = 4498; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 4496; + this.state = 4500; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -25376,7 +25377,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4497; + this.state = 4501; this.expression(); } } @@ -25404,14 +25405,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4500; + this.state = 4504; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4510; + this.state = 4514; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: { - this.state = 4501; + this.state = 4505; this.match(PostgreSqlParser.STAR); } break; @@ -25835,26 +25836,26 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4503; + this.state = 4507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || _la === 68 || ((((_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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4502; + this.state = 4506; this.funcArgsList(); } } - this.state = 4508; + this.state = 4512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 4505; + this.state = 4509; this.match(PostgreSqlParser.KW_ORDER); - this.state = 4506; + this.state = 4510; this.match(PostgreSqlParser.KW_BY); - this.state = 4507; + this.state = 4511; this.funcArgsList(); } } @@ -25864,7 +25865,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4512; + this.state = 4516; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -25888,9 +25889,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4518; this.functionName(); - this.state = 4515; + this.state = 4519; this.aggregateArgs(); } } @@ -25913,66 +25914,66 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 390, PostgreSqlParser.RULE_commonFuncOptItem); let _la: number; try { - this.state = 4546; + this.state = 4550; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALLED: case PostgreSqlParser.KW_RETURNS: this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RETURNS: { - this.state = 4517; + this.state = 4521; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4518; + this.state = 4522; this.match(PostgreSqlParser.KW_NULL); } break; case PostgreSqlParser.KW_CALLED: { - this.state = 4519; + this.state = 4523; this.match(PostgreSqlParser.KW_CALLED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4522; + this.state = 4526; this.match(PostgreSqlParser.KW_ON); - this.state = 4523; + this.state = 4527; this.match(PostgreSqlParser.KW_NULL); - this.state = 4524; + this.state = 4528; this.match(PostgreSqlParser.KW_INPUT); } break; case PostgreSqlParser.KW_STRICT: this.enterOuterAlt(localContext, 2); { - this.state = 4525; + this.state = 4529; this.match(PostgreSqlParser.KW_STRICT); } break; case PostgreSqlParser.KW_IMMUTABLE: this.enterOuterAlt(localContext, 3); { - this.state = 4526; + this.state = 4530; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case PostgreSqlParser.KW_STABLE: this.enterOuterAlt(localContext, 4); { - this.state = 4527; + this.state = 4531; this.match(PostgreSqlParser.KW_STABLE); } break; case PostgreSqlParser.KW_VOLATILE: this.enterOuterAlt(localContext, 5); { - this.state = 4528; + this.state = 4532; this.match(PostgreSqlParser.KW_VOLATILE); } break; @@ -25980,19 +25981,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SECURITY: this.enterOuterAlt(localContext, 6); { - this.state = 4530; + this.state = 4534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4529; + this.state = 4533; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 4532; + this.state = 4536; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 4533; + this.state = 4537; _la = this.tokenStream.LA(1); if(!(_la === 181 || _la === 243)) { this.errorHandler.recoverInline(this); @@ -26006,16 +26007,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEAKPROOF: this.enterOuterAlt(localContext, 7); { - this.state = 4534; + this.state = 4538; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 8); { - this.state = 4535; + this.state = 4539; this.match(PostgreSqlParser.KW_NOT); - this.state = 4536; + this.state = 4540; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; @@ -26023,7 +26024,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 9); { - this.state = 4537; + this.state = 4541; _la = this.tokenStream.LA(1); if(!(_la === 170 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -26032,41 +26033,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4538; + this.state = 4542; this.numericOnly(); } break; case PostgreSqlParser.KW_SUPPORT: this.enterOuterAlt(localContext, 10); { - this.state = 4539; + this.state = 4543; this.match(PostgreSqlParser.KW_SUPPORT); - this.state = 4540; + this.state = 4544; this.anyName(); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 11); { - this.state = 4541; + this.state = 4545; this.match(PostgreSqlParser.KW_SET); - this.state = 4542; + this.state = 4546; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 12); { - this.state = 4543; + this.state = 4547; this.variableResetStmt(); } break; case PostgreSqlParser.KW_PARALLEL: this.enterOuterAlt(localContext, 13); { - this.state = 4544; + this.state = 4548; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 4545; + this.state = 4549; this.colId(); } break; @@ -26093,57 +26094,57 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 392, PostgreSqlParser.RULE_createFuncOptItem); let _la: number; try { - this.state = 4583; + this.state = 4587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4548; + this.state = 4552; this.match(PostgreSqlParser.KW_AS); - this.state = 4549; + this.state = 4553; this.stringConst(); - this.state = 4550; + this.state = 4554; this.notifyPayload(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4552; + this.state = 4556; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4553; + this.state = 4557; this.nonReservedWordOrStringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4554; + this.state = 4558; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4555; + this.state = 4559; this.match(PostgreSqlParser.KW_FOR); - this.state = 4556; + this.state = 4560; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4557; + this.state = 4561; this.typename(); - this.state = 4564; + this.state = 4568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4558; + this.state = 4562; this.match(PostgreSqlParser.COMMA); - this.state = 4559; + this.state = 4563; this.match(PostgreSqlParser.KW_FOR); - this.state = 4560; + this.state = 4564; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4561; + this.state = 4565; this.typename(); } } - this.state = 4566; + this.state = 4570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26152,41 +26153,41 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4567; + this.state = 4571; this.match(PostgreSqlParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4568; + this.state = 4572; this.match(PostgreSqlParser.KW_SET); - this.state = 4569; + this.state = 4573; this.colId(); - this.state = 4576; + this.state = 4580; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TO: { - this.state = 4570; + this.state = 4574; this.match(PostgreSqlParser.KW_TO); - this.state = 4571; + this.state = 4575; this.colId(); } break; case PostgreSqlParser.EQUAL: { - this.state = 4572; + this.state = 4576; this.match(PostgreSqlParser.EQUAL); - this.state = 4573; + this.state = 4577; this.colId(); } break; case PostgreSqlParser.KW_FROM: { - this.state = 4574; + this.state = 4578; this.match(PostgreSqlParser.KW_FROM); - this.state = 4575; + this.state = 4579; this.match(PostgreSqlParser.KW_CURRENT); } break; @@ -26198,30 +26199,30 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4578; + this.state = 4582; this.match(PostgreSqlParser.KW_AS); - this.state = 4579; + this.state = 4583; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4580; + this.state = 4584; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4581; + this.state = 4585; this.commonFuncOptItem(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4582; + this.state = 4586; this.colId(); } break; @@ -26247,9 +26248,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4585; + this.state = 4589; this.match(PostgreSqlParser.KW_WITH); - this.state = 4586; + this.state = 4590; this.definition(); } } @@ -26273,9 +26274,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4588; + this.state = 4592; this.columnName(); - this.state = 4589; + this.state = 4593; this.funcType(); } } @@ -26300,39 +26301,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4591; + this.state = 4595; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4598; + this.state = 4602; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4592; + this.state = 4596; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4593; + this.state = 4597; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4594; + this.state = 4598; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4595; + this.state = 4599; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4596; + this.state = 4600; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4597; + this.state = 4601; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4601; + this.state = 4605; this.errorHandler.sync(this); alternative = 1; do { @@ -26340,7 +26341,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4600; + this.state = 4604; this.commonFuncOptItem(); } } @@ -26348,16 +26349,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4603; + this.state = 4607; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 573, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4606; + this.state = 4610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4605; + this.state = 4609; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -26384,74 +26385,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4608; + this.state = 4612; this.match(PostgreSqlParser.KW_DROP); - this.state = 4624; + this.state = 4628; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4609; + this.state = 4613; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4611; + this.state = 4615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4610; + this.state = 4614; this.ifExists(); } break; } - this.state = 4613; + this.state = 4617; this.functionWithArgTypesList(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4614; + this.state = 4618; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4616; + this.state = 4620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4615; + this.state = 4619; this.ifExists(); } break; } - this.state = 4618; + this.state = 4622; this.procedureWithArgTypesList(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4619; + this.state = 4623; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4621; + this.state = 4625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4620; + this.state = 4624; this.ifExists(); } break; } - this.state = 4623; + this.state = 4627; this.routineWithArgTypesList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4627; + this.state = 4631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4626; + this.state = 4630; this.optDropBehavior(); } break; @@ -26479,46 +26480,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4629; + this.state = 4633; this.match(PostgreSqlParser.KW_DROP); - this.state = 4630; + this.state = 4634; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4632; + this.state = 4636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4631; + this.state = 4635; this.ifExists(); } break; } { - this.state = 4634; + this.state = 4638; this.aggregateWithArgTypes(); - this.state = 4639; + this.state = 4643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4635; + this.state = 4639; this.match(PostgreSqlParser.COMMA); - this.state = 4636; + this.state = 4640; this.aggregateWithArgTypes(); } } - this.state = 4641; + this.state = 4645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4643; + this.state = 4647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4642; + this.state = 4646; this.optDropBehavior(); } break; @@ -26546,46 +26547,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4645; + this.state = 4649; this.match(PostgreSqlParser.KW_DROP); - this.state = 4646; + this.state = 4650; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4648; + this.state = 4652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4647; + this.state = 4651; this.ifExists(); } break; } { - this.state = 4650; + this.state = 4654; this.operatorWithArgTypes(); - this.state = 4655; + this.state = 4659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4651; + this.state = 4655; this.match(PostgreSqlParser.COMMA); - this.state = 4652; + this.state = 4656; this.operatorWithArgTypes(); } } - this.state = 4657; + this.state = 4661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4659; + this.state = 4663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: { - this.state = 4658; + this.state = 4662; this.optDropBehavior(); } break; @@ -26613,23 +26614,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4661; + this.state = 4665; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4674; + this.state = 4678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4662; + this.state = 4666; this.typename(); - this.state = 4665; + this.state = 4669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4663; + this.state = 4667; this.match(PostgreSqlParser.COMMA); - this.state = 4664; + this.state = 4668; this.typename(); } } @@ -26638,26 +26639,26 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4667; + this.state = 4671; this.match(PostgreSqlParser.KW_NONE); - this.state = 4668; + this.state = 4672; this.match(PostgreSqlParser.COMMA); - this.state = 4669; + this.state = 4673; this.typename(); } break; case 3: { - this.state = 4670; + this.state = 4674; this.typename(); - this.state = 4671; + this.state = 4675; this.match(PostgreSqlParser.COMMA); - this.state = 4672; + this.state = 4676; this.match(PostgreSqlParser.KW_NONE); } break; } - this.state = 4676; + this.state = 4680; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -26682,23 +26683,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4683; + this.state = 4687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 4678; + this.state = 4682; this.colId(); - this.state = 4679; + this.state = 4683; this.match(PostgreSqlParser.DOT); } } - this.state = 4685; + this.state = 4689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4686; + this.state = 4690; this.allOp(); } } @@ -26722,9 +26723,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4688; + this.state = 4692; this.anyOperator(); - this.state = 4689; + this.state = 4693; this.operatorArgTypes(); } } @@ -26749,16 +26750,16 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4691; - this.match(PostgreSqlParser.KW_DO); this.state = 4695; + this.match(PostgreSqlParser.KW_DO); + this.state = 4699; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 4695; + this.state = 4699; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -26766,15 +26767,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4692; + this.state = 4696; this.stringConst(); } break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4693; + this.state = 4697; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4694; + this.state = 4698; this.nonReservedWordOrStringConst(); } break; @@ -26786,7 +26787,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4697; + this.state = 4701; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -26813,38 +26814,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4699; + this.state = 4703; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4700; + this.state = 4704; this.match(PostgreSqlParser.KW_CAST); - this.state = 4701; + this.state = 4705; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4702; + this.state = 4706; this.typename(); - this.state = 4703; + this.state = 4707; this.match(PostgreSqlParser.KW_AS); - this.state = 4704; + this.state = 4708; this.typename(); - this.state = 4705; + this.state = 4709; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4722; + this.state = 4726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WITHOUT: { { - this.state = 4706; + this.state = 4710; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 4707; + this.state = 4711; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4710; + this.state = 4714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4708; + this.state = 4712; this.match(PostgreSqlParser.KW_AS); - this.state = 4709; + this.state = 4713; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26862,36 +26863,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: { { - this.state = 4712; - this.match(PostgreSqlParser.KW_WITH); this.state = 4716; + this.match(PostgreSqlParser.KW_WITH); + this.state = 4720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4713; + this.state = 4717; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4714; + this.state = 4718; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_INOUT: { - this.state = 4715; + this.state = 4719; this.match(PostgreSqlParser.KW_INOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4720; + this.state = 4724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4718; + this.state = 4722; this.match(PostgreSqlParser.KW_AS); - this.state = 4719; + this.state = 4723; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26931,9 +26932,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4724; + this.state = 4728; this.match(PostgreSqlParser.KW_IF); - this.state = 4725; + this.state = 4729; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -26958,49 +26959,49 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4727; + this.state = 4731; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4729; + this.state = 4733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4728; + this.state = 4732; this.orReplaceOpt(); } } - this.state = 4731; + this.state = 4735; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4732; + this.state = 4736; this.match(PostgreSqlParser.KW_FOR); - this.state = 4733; + this.state = 4737; this.typename(); - this.state = 4734; + this.state = 4738; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4735; + this.state = 4739; this.colId(); - this.state = 4736; + this.state = 4740; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4751; + this.state = 4755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FROM: { - this.state = 4737; + this.state = 4741; this.match(PostgreSqlParser.KW_FROM); - this.state = 4738; - this.sqlWithFunction(); this.state = 4742; + this.sqlWithFunction(); + this.state = 4746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4739; + this.state = 4743; this.match(PostgreSqlParser.COMMA); - this.state = 4740; + this.state = 4744; this.match(PostgreSqlParser.KW_TO); - this.state = 4741; + this.state = 4745; this.sqlWithFunction(); } } @@ -27009,20 +27010,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_TO: { - this.state = 4744; + this.state = 4748; this.match(PostgreSqlParser.KW_TO); - this.state = 4745; - this.sqlWithFunction(); this.state = 4749; + this.sqlWithFunction(); + this.state = 4753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4746; + this.state = 4750; this.match(PostgreSqlParser.COMMA); - this.state = 4747; + this.state = 4751; this.match(PostgreSqlParser.KW_FROM); - this.state = 4748; + this.state = 4752; this.sqlWithFunction(); } } @@ -27032,7 +27033,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4753; + this.state = 4757; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -27056,13 +27057,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4755; + this.state = 4759; this.match(PostgreSqlParser.KW_SQL); - this.state = 4756; + this.state = 4760; this.match(PostgreSqlParser.KW_WITH); - this.state = 4757; + this.state = 4761; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4758; + this.state = 4762; this.functionWithArgTypes(); } } @@ -27087,129 +27088,129 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4760; + this.state = 4764; this.match(PostgreSqlParser.KW_REINDEX); - this.state = 4771; + this.state = 4775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4761; + this.state = 4765; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4762; + this.state = 4766; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 4767; + this.state = 4771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4763; + this.state = 4767; this.match(PostgreSqlParser.COMMA); - this.state = 4764; + this.state = 4768; this.match(PostgreSqlParser.KW_VERBOSE); } } - this.state = 4769; + this.state = 4773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4770; + this.state = 4774; this.match(PostgreSqlParser.CLOSE_PAREN); } } { - this.state = 4798; + this.state = 4802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INDEX: { - this.state = 4773; + this.state = 4777; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4775; + this.state = 4779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4774; + this.state = 4778; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4777; + this.state = 4781; this.qualifiedName(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4778; + this.state = 4782; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4780; + this.state = 4784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4779; + this.state = 4783; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4782; + this.state = 4786; this.tableName(); } break; case PostgreSqlParser.KW_SCHEMA: { - this.state = 4783; + this.state = 4787; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4785; + this.state = 4789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4784; + this.state = 4788; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4787; + this.state = 4791; this.schemaName(); } break; case PostgreSqlParser.KW_SYSTEM: { - this.state = 4788; + this.state = 4792; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 4790; + this.state = 4794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4789; + this.state = 4793; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4792; + this.state = 4796; this.colId(); } break; case PostgreSqlParser.KW_DATABASE: { - this.state = 4793; + this.state = 4797; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4795; + this.state = 4799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4794; + this.state = 4798; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4797; + this.state = 4801; this.databaseName(); } break; @@ -27240,11 +27241,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4800; + this.state = 4804; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4801; + this.state = 4805; this.optTableSpace(); - this.state = 4802; + this.state = 4806; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -27253,7 +27254,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4803; + this.state = 4807; this.relOptions(); } } @@ -27276,67 +27277,67 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 426, PostgreSqlParser.RULE_renameStmt); let _la: number; try { - this.state = 5012; + this.state = 5016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4805; + this.state = 4809; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4810; + this.state = 4814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AGGREGATE: { - this.state = 4806; + this.state = 4810; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4807; + this.state = 4811; this.aggregateWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4808; + this.state = 4812; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4809; + this.state = 4813; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4812; + this.state = 4816; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4813; + this.state = 4817; this.match(PostgreSqlParser.KW_TO); - this.state = 4814; + this.state = 4818; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4816; + this.state = 4820; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4817; + this.state = 4821; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4818; + this.state = 4822; this.databaseName(); - this.state = 4819; + this.state = 4823; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4820; + this.state = 4824; this.match(PostgreSqlParser.KW_TO); - this.state = 4821; + this.state = 4825; this.databaseNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4823; + this.state = 4827; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4824; + this.state = 4828; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 189 || _la === 342 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -27345,41 +27346,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4825; + this.state = 4829; this.anyName(); - this.state = 4826; + this.state = 4830; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4827; + this.state = 4831; this.match(PostgreSqlParser.KW_TO); - this.state = 4828; + this.state = 4832; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4830; + this.state = 4834; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4831; + this.state = 4835; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4832; + this.state = 4836; this.functionWithArgTypes(); - this.state = 4833; + this.state = 4837; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4834; + this.state = 4838; this.match(PostgreSqlParser.KW_TO); - this.state = 4835; + this.state = 4839; this.functionNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4837; + this.state = 4841; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4838; + this.state = 4842; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4839; + this.state = 4843; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -27388,58 +27389,58 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4840; + this.state = 4844; this.anyName(); - this.state = 4841; + this.state = 4845; this.tableAccessMethodClause(); - this.state = 4842; + this.state = 4846; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4843; + this.state = 4847; this.match(PostgreSqlParser.KW_TO); - this.state = 4844; + this.state = 4848; this.colId(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4846; + this.state = 4850; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4847; + this.state = 4851; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4848; + this.state = 4852; this.procedureWithArgTypes(); - this.state = 4849; + this.state = 4853; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4850; + this.state = 4854; this.match(PostgreSqlParser.KW_TO); - this.state = 4851; + this.state = 4855; this.procedureNameCreate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4853; + this.state = 4857; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4854; + this.state = 4858; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4855; + this.state = 4859; this.schemaName(); - this.state = 4856; + this.state = 4860; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4857; + this.state = 4861; this.match(PostgreSqlParser.KW_TO); - this.state = 4858; + this.state = 4862; this.schemaNameCreate(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4860; + this.state = 4864; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4861; + this.state = 4865; _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 328)) { this.errorHandler.recoverInline(this); @@ -27448,143 +27449,143 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4863; + this.state = 4867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4862; + this.state = 4866; this.ifExists(); } break; } - this.state = 4865; + this.state = 4869; this.qualifiedName(); - this.state = 4866; + this.state = 4870; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4867; + this.state = 4871; this.match(PostgreSqlParser.KW_TO); - this.state = 4868; + this.state = 4872; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4870; + this.state = 4874; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4872; + this.state = 4876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4871; + this.state = 4875; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4874; + this.state = 4878; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4876; + this.state = 4880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4875; + this.state = 4879; this.ifExists(); } break; } - this.state = 4878; + this.state = 4882; this.viewName(); - this.state = 4879; + this.state = 4883; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4880; + this.state = 4884; this.match(PostgreSqlParser.KW_TO); - this.state = 4881; + this.state = 4885; this.viewNameCreate(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4883; + this.state = 4887; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4885; + this.state = 4889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4884; + this.state = 4888; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4887; + this.state = 4891; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4889; + this.state = 4893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4888; + this.state = 4892; this.ifExists(); } break; } - this.state = 4891; + this.state = 4895; this.relationExpr(); - this.state = 4892; + this.state = 4896; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4893; + this.state = 4897; this.match(PostgreSqlParser.KW_TO); - this.state = 4894; + this.state = 4898; this.tableNameCreate(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4896; + this.state = 4900; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4921; + this.state = 4925; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: { - this.state = 4898; + this.state = 4902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4897; + this.state = 4901; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4900; + this.state = 4904; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4902; + this.state = 4906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4901; + this.state = 4905; this.ifExists(); } break; } - this.state = 4904; + this.state = 4908; this.relationExpr(); - this.state = 4905; + this.state = 4909; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4907; + this.state = 4911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4906; + this.state = 4910; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27594,38 +27595,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MATERIALIZED: case PostgreSqlParser.KW_VIEW: { - this.state = 4910; + this.state = 4914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4909; + this.state = 4913; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4912; + this.state = 4916; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4914; + this.state = 4918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4913; + this.state = 4917; this.ifExists(); } break; } - this.state = 4916; + this.state = 4920; this.viewName(); - this.state = 4917; + this.state = 4921; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4919; + this.state = 4923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4918; + this.state = 4922; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27635,82 +27636,82 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4923; + this.state = 4927; this.columnName(); - this.state = 4924; + this.state = 4928; this.match(PostgreSqlParser.KW_TO); - this.state = 4925; + this.state = 4929; this.columnNameCreate(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4927; + this.state = 4931; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4935; + this.state = 4939; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TABLE: { - this.state = 4928; + this.state = 4932; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4930; + this.state = 4934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4929; + this.state = 4933; this.ifExists(); } break; } - this.state = 4932; + this.state = 4936; this.relationExpr(); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 4933; + this.state = 4937; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 4934; + this.state = 4938; this.anyName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4937; + this.state = 4941; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4938; + this.state = 4942; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 4939; + this.state = 4943; this.colId(); - this.state = 4940; + this.state = 4944; this.match(PostgreSqlParser.KW_TO); - this.state = 4941; + this.state = 4945; this.colId(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4943; + this.state = 4947; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4950; + this.state = 4954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_POLICY: { { - this.state = 4944; + this.state = 4948; this.match(PostgreSqlParser.KW_POLICY); - this.state = 4946; + this.state = 4950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4945; + this.state = 4949; this.ifExists(); } break; @@ -27720,113 +27721,113 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RULE: { - this.state = 4948; + this.state = 4952; this.match(PostgreSqlParser.KW_RULE); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 4949; + this.state = 4953; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4952; + this.state = 4956; this.colId(); - this.state = 4953; + this.state = 4957; this.match(PostgreSqlParser.KW_ON); - this.state = 4954; + this.state = 4958; this.qualifiedName(); - this.state = 4955; + this.state = 4959; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4956; + this.state = 4960; this.match(PostgreSqlParser.KW_TO); - this.state = 4957; + this.state = 4961; this.colId(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4959; + this.state = 4963; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4972; + this.state = 4976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4960; + this.state = 4964; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4961; + this.state = 4965; this.match(PostgreSqlParser.KW_DATA); - this.state = 4962; + this.state = 4966; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 4964; + this.state = 4968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 4963; + this.state = 4967; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 4966; + this.state = 4970; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 4967; + this.state = 4971; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4968; + this.state = 4972; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 4969; + this.state = 4973; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 4970; + this.state = 4974; this.match(PostgreSqlParser.KW_EVENT); - this.state = 4971; + this.state = 4975; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4974; + this.state = 4978; this.colId(); - this.state = 4975; + this.state = 4979; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4976; + this.state = 4980; this.match(PostgreSqlParser.KW_TO); - this.state = 4977; + this.state = 4981; this.colId(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4979; + this.state = 4983; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4980; + this.state = 4984; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -27835,41 +27836,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4981; + this.state = 4985; this.roleSpec(); - this.state = 4982; + this.state = 4986; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4983; + this.state = 4987; this.match(PostgreSqlParser.KW_TO); - this.state = 4984; + this.state = 4988; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4986; + this.state = 4990; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4987; + this.state = 4991; this.optTableSpace(); - this.state = 4988; + this.state = 4992; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4989; + this.state = 4993; this.match(PostgreSqlParser.KW_TO); - this.state = 4990; + this.state = 4994; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 4992; + this.state = 4996; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4993; + this.state = 4997; this.match(PostgreSqlParser.KW_TEXT); - this.state = 4994; + this.state = 4998; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 4995; + this.state = 4999; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -27878,41 +27879,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4996; + this.state = 5000; this.anyName(); - this.state = 4997; + this.state = 5001; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4998; + this.state = 5002; this.match(PostgreSqlParser.KW_TO); - this.state = 4999; + this.state = 5003; this.colId(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5001; + this.state = 5005; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5002; + this.state = 5006; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5003; + this.state = 5007; this.anyName(); - this.state = 5004; + this.state = 5008; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5005; + this.state = 5009; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 5006; + this.state = 5010; this.colId(); - this.state = 5007; + this.state = 5011; this.match(PostgreSqlParser.KW_TO); - this.state = 5008; + this.state = 5012; this.colId(); - this.state = 5010; + this.state = 5014; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 5009; + this.state = 5013; this.optDropBehavior(); } break; @@ -27942,85 +27943,85 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5014; + this.state = 5018; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5031; + this.state = 5035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 5015; + this.state = 5019; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5016; + this.state = 5020; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 5017; + this.state = 5021; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5018; + this.state = 5022; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 5019; + this.state = 5023; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5020; + this.state = 5024; this.routineWithArgTypes(); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 5021; + this.state = 5025; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 5022; + this.state = 5026; this.colId(); - this.state = 5023; + this.state = 5027; this.match(PostgreSqlParser.KW_ON); - this.state = 5024; + this.state = 5028; this.qualifiedName(); } break; case PostgreSqlParser.KW_MATERIALIZED: { - this.state = 5026; + this.state = 5030; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 5027; + this.state = 5031; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5028; + this.state = 5032; this.viewName(); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 5029; + this.state = 5033; this.match(PostgreSqlParser.KW_INDEX); - this.state = 5030; + this.state = 5034; this.qualifiedName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5034; + this.state = 5038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5033; + this.state = 5037; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5036; + this.state = 5040; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 5037; + this.state = 5041; this.match(PostgreSqlParser.KW_ON); - this.state = 5038; + this.state = 5042; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5039; + this.state = 5043; this.colId(); } } @@ -28043,54 +28044,54 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 430, PostgreSqlParser.RULE_alterObjectSchemaStmt); let _la: number; try { - this.state = 5102; + this.state = 5106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5041; + this.state = 5045; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5080; + this.state = 5084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: { - this.state = 5042; + this.state = 5046; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5043; + this.state = 5047; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5044; + this.state = 5048; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5045; + this.state = 5049; this.colId(); } break; case 3: { - this.state = 5046; + this.state = 5050; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5047; + this.state = 5051; this.functionWithArgTypes(); } break; case 4: { - this.state = 5048; + this.state = 5052; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5049; + this.state = 5053; this.operatorWithArgTypes(); } break; case 5: { - this.state = 5050; + this.state = 5054; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5051; + this.state = 5055; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28099,126 +28100,126 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5052; + this.state = 5056; this.anyName(); - this.state = 5053; + this.state = 5057; this.tableAccessMethodClause(); } break; case 6: { - this.state = 5055; + this.state = 5059; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5056; + this.state = 5060; this.procedureWithArgTypes(); } break; case 7: { - this.state = 5057; + this.state = 5061; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5058; + this.state = 5062; this.routineWithArgTypes(); } break; case 8: { - this.state = 5059; + this.state = 5063; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 5061; + this.state = 5065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5060; + this.state = 5064; this.ifExists(); } break; } - this.state = 5063; + this.state = 5067; this.qualifiedName(); } break; case 9: { - this.state = 5065; + this.state = 5069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5064; + this.state = 5068; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 5067; + this.state = 5071; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5069; + this.state = 5073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 5068; + this.state = 5072; this.ifExists(); } break; } - this.state = 5071; + this.state = 5075; this.viewName(); } break; case 10: { - this.state = 5073; + this.state = 5077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5072; + this.state = 5076; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 5075; + this.state = 5079; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5077; + this.state = 5081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 5076; + this.state = 5080; this.ifExists(); } break; } - this.state = 5079; + this.state = 5083; this.relationExpr(); } break; } - this.state = 5082; + this.state = 5086; this.match(PostgreSqlParser.KW_SET); - this.state = 5083; + this.state = 5087; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5084; + this.state = 5088; this.schemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5086; + this.state = 5090; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5095; + this.state = 5099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5087; + this.state = 5091; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5088; + this.state = 5092; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5089; + this.state = 5093; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -28231,44 +28232,44 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5090; + this.state = 5094; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5091; + this.state = 5095; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5092; + this.state = 5096; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5093; + this.state = 5097; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5094; + this.state = 5098; this.match(PostgreSqlParser.KW_TYPE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5097; + this.state = 5101; this.anyName(); - this.state = 5098; + this.state = 5102; this.match(PostgreSqlParser.KW_SET); - this.state = 5099; + this.state = 5103; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5100; + this.state = 5104; this.schemaName(); } break; @@ -28294,15 +28295,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5104; + this.state = 5108; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5105; + this.state = 5109; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5106; + this.state = 5110; this.operatorWithArgTypes(); - this.state = 5107; + this.state = 5111; this.match(PostgreSqlParser.KW_SET); - this.state = 5108; + this.state = 5112; this.operatorDefList(); } } @@ -28327,27 +28328,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5110; + this.state = 5114; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5111; + this.state = 5115; this.operatorDefElem(); - this.state = 5116; + this.state = 5120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5112; + this.state = 5116; this.match(PostgreSqlParser.COMMA); - this.state = 5113; + this.state = 5117; this.operatorDefElem(); } } - this.state = 5118; + this.state = 5122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5119; + this.state = 5123; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -28371,46 +28372,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5121; + this.state = 5125; this.colLabel(); - this.state = 5122; + this.state = 5126; this.match(PostgreSqlParser.EQUAL); - this.state = 5129; + this.state = 5133; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 5123; + this.state = 5127; this.match(PostgreSqlParser.KW_NONE); } break; case 2: { - this.state = 5124; + this.state = 5128; this.funcType(); } break; case 3: { - this.state = 5125; + this.state = 5129; this.reservedKeyword(); } break; case 4: { - this.state = 5126; + this.state = 5130; this.qualAllOp(); } break; case 5: { - this.state = 5127; + this.state = 5131; this.numericOnly(); } break; case 6: { - this.state = 5128; + this.state = 5132; this.stringConst(); } break; @@ -28437,15 +28438,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5131; + this.state = 5135; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5132; + this.state = 5136; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5133; + this.state = 5137; this.anyName(); - this.state = 5134; + this.state = 5138; this.match(PostgreSqlParser.KW_SET); - this.state = 5135; + this.state = 5139; this.operatorDefList(); } } @@ -28468,17 +28469,17 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 440, PostgreSqlParser.RULE_alterOwnerStmt); let _la: number; try { - this.state = 5211; + this.state = 5215; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5137; + this.state = 5141; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5138; + this.state = 5142; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5139; + this.state = 5143; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28487,150 +28488,150 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5140; + this.state = 5144; this.anyName(); - this.state = 5141; + this.state = 5145; this.tableAccessMethodClause(); - this.state = 5142; + this.state = 5146; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5143; + this.state = 5147; this.match(PostgreSqlParser.KW_TO); - this.state = 5144; + this.state = 5148; this.roleSpec(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5146; + this.state = 5150; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5173; + this.state = 5177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 641, this.context) ) { case 1: { - this.state = 5147; + this.state = 5151; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5148; + this.state = 5152; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5149; + this.state = 5153; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5150; + this.state = 5154; this.databaseName(); } break; case 3: { - this.state = 5151; + this.state = 5155; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5152; + this.state = 5156; this.functionWithArgTypes(); } break; case 4: { - this.state = 5154; + this.state = 5158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5153; + this.state = 5157; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 5156; + this.state = 5160; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 5157; + this.state = 5161; this.colId(); } break; case 5: { - this.state = 5158; + this.state = 5162; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5159; + this.state = 5163; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5160; + this.state = 5164; this.numericOnly(); } break; case 6: { - this.state = 5161; + this.state = 5165; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5162; + this.state = 5166; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5163; + this.state = 5167; this.numericOnly(); } break; case 7: { - this.state = 5164; + this.state = 5168; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5165; + this.state = 5169; this.operatorWithArgTypes(); } break; case 8: { - this.state = 5166; + this.state = 5170; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5167; + this.state = 5171; this.procedureWithArgTypes(); } break; case 9: { - this.state = 5168; + this.state = 5172; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5169; + this.state = 5173; this.routineWithArgTypes(); } break; case 10: { - this.state = 5170; + this.state = 5174; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5171; + this.state = 5175; this.schemaName(); } break; case 11: { - this.state = 5172; + this.state = 5176; this.optTableSpace(); } break; } - this.state = 5175; + this.state = 5179; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5176; + this.state = 5180; this.match(PostgreSqlParser.KW_TO); - this.state = 5177; + this.state = 5181; this.roleSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5179; + this.state = 5183; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5188; + this.state = 5192; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5180; + this.state = 5184; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5181; + this.state = 5185; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5182; + this.state = 5186; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -28643,69 +28644,69 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5183; + this.state = 5187; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5184; + this.state = 5188; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5185; + this.state = 5189; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5186; + this.state = 5190; this.match(PostgreSqlParser.KW_TYPE); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5187; + this.state = 5191; this.match(PostgreSqlParser.KW_STATISTICS); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5190; + this.state = 5194; this.anyName(); - this.state = 5191; + this.state = 5195; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5192; + this.state = 5196; this.match(PostgreSqlParser.KW_TO); - this.state = 5193; + this.state = 5197; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5195; + this.state = 5199; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5204; + this.state = 5208; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SERVER: { - this.state = 5196; + this.state = 5200; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_FOREIGN: { { - this.state = 5197; + this.state = 5201; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 5198; + this.state = 5202; this.match(PostgreSqlParser.KW_DATA); - this.state = 5199; + this.state = 5203; this.match(PostgreSqlParser.KW_WRAPPER); } } @@ -28713,35 +28714,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EVENT: { { - this.state = 5200; + this.state = 5204; this.match(PostgreSqlParser.KW_EVENT); - this.state = 5201; + this.state = 5205; this.match(PostgreSqlParser.KW_TRIGGER); } } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 5202; + this.state = 5206; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 5203; + this.state = 5207; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5206; + this.state = 5210; this.colId(); - this.state = 5207; + this.state = 5211; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5208; + this.state = 5212; this.match(PostgreSqlParser.KW_TO); - this.state = 5209; + this.state = 5213; this.roleSpec(); } break; @@ -28767,42 +28768,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5213; + this.state = 5217; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5214; + this.state = 5218; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5215; + this.state = 5219; this.colId(); - this.state = 5222; + this.state = 5226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: { - this.state = 5216; + this.state = 5220; this.match(PostgreSqlParser.KW_FOR); - this.state = 5217; + this.state = 5221; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5218; + this.state = 5222; this.relationExprList(); } break; case 2: { - this.state = 5219; + this.state = 5223; this.match(PostgreSqlParser.KW_FOR); - this.state = 5220; + this.state = 5224; this.match(PostgreSqlParser.KW_ALL); - this.state = 5221; + this.state = 5225; this.match(PostgreSqlParser.KW_TABLES); } break; } - this.state = 5225; + this.state = 5229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 5224; + this.state = 5228; this.optDefinition(); } break; @@ -28830,23 +28831,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5227; + this.state = 5231; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5228; + this.state = 5232; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5229; + this.state = 5233; this.colId(); - this.state = 5247; + this.state = 5251; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { { - this.state = 5230; + this.state = 5234; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5231; + this.state = 5235; this.match(PostgreSqlParser.KW_TO); - this.state = 5232; + this.state = 5236; this.roleSpec(); } } @@ -28854,9 +28855,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: { { - this.state = 5233; + this.state = 5237; this.match(PostgreSqlParser.KW_SET); - this.state = 5234; + this.state = 5238; this.definition(); } } @@ -28864,18 +28865,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 5235; + this.state = 5239; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5236; + this.state = 5240; this.match(PostgreSqlParser.KW_TO); - this.state = 5237; + this.state = 5241; this.colId(); } } break; case 4: { - this.state = 5238; + this.state = 5242; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -28884,21 +28885,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5239; + this.state = 5243; this.publicationRelationExpr(); - this.state = 5244; + this.state = 5248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5240; + this.state = 5244; this.match(PostgreSqlParser.COMMA); - this.state = 5241; + this.state = 5245; this.publicationRelationExpr(); } } - this.state = 5246; + this.state = 5250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28928,44 +28929,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5249; + this.state = 5253; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5250; + this.state = 5254; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5251; + this.state = 5255; this.colId(); - this.state = 5252; + this.state = 5256; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5253; + this.state = 5257; this.stringConst(); - this.state = 5254; + this.state = 5258; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5255; + this.state = 5259; this.colLabel(); - this.state = 5260; + this.state = 5264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5256; + this.state = 5260; this.match(PostgreSqlParser.COMMA); - this.state = 5257; + this.state = 5261; this.colLabel(); } } - this.state = 5262; + this.state = 5266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5264; + this.state = 5268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 5263; + this.state = 5267; this.optDefinition(); } break; @@ -28991,58 +28992,58 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 448, PostgreSqlParser.RULE_alterSubscriptionStmt); let _la: number; try { - this.state = 5322; + this.state = 5326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5266; + this.state = 5270; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5267; + this.state = 5271; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5268; + this.state = 5272; this.colId(); - this.state = 5269; + this.state = 5273; this.match(PostgreSqlParser.KW_SET); - this.state = 5270; + this.state = 5274; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5272; + this.state = 5276; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5273; + this.state = 5277; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5274; + this.state = 5278; this.colId(); - this.state = 5275; + this.state = 5279; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5276; + this.state = 5280; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5278; + this.state = 5282; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5279; + this.state = 5283; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5280; + this.state = 5284; this.colId(); - this.state = 5281; + this.state = 5285; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5282; + this.state = 5286; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5284; + this.state = 5288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 5283; + this.state = 5287; this.optDefinition(); } break; @@ -29052,13 +29053,13 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5286; + this.state = 5290; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5287; + this.state = 5291; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5288; + this.state = 5292; this.colId(); - this.state = 5289; + this.state = 5293; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -29067,34 +29068,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5290; + this.state = 5294; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5291; + this.state = 5295; this.colLabel(); - this.state = 5296; + this.state = 5300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5292; + this.state = 5296; this.match(PostgreSqlParser.COMMA); - this.state = 5293; + this.state = 5297; this.colLabel(); } } - this.state = 5298; + this.state = 5302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5300; + this.state = 5304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 5299; + this.state = 5303; this.optDefinition(); } break; @@ -29104,13 +29105,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5302; + this.state = 5306; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5303; + this.state = 5307; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5304; + this.state = 5308; this.colId(); - this.state = 5305; + this.state = 5309; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 193)) { this.errorHandler.recoverInline(this); @@ -29124,36 +29125,36 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5307; + this.state = 5311; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5308; + this.state = 5312; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5309; + this.state = 5313; this.colId(); - this.state = 5310; + this.state = 5314; this.match(PostgreSqlParser.KW_SKIP); - this.state = 5311; + this.state = 5315; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5312; + this.state = 5316; this.oldAggregateElem(); - this.state = 5313; + this.state = 5317; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5315; + this.state = 5319; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5316; + this.state = 5320; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5317; + this.state = 5321; this.colId(); - this.state = 5318; + this.state = 5322; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5319; + this.state = 5323; this.match(PostgreSqlParser.KW_TO); - this.state = 5320; + this.state = 5324; this.roleSpec(); } break; @@ -29180,27 +29181,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5324; + this.state = 5328; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5326; + this.state = 5330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5325; + this.state = 5329; this.orReplaceOpt(); } } - this.state = 5328; + this.state = 5332; this.match(PostgreSqlParser.KW_RULE); - this.state = 5329; + this.state = 5333; this.colId(); - this.state = 5330; + this.state = 5334; this.match(PostgreSqlParser.KW_AS); - this.state = 5331; + this.state = 5335; this.match(PostgreSqlParser.KW_ON); - this.state = 5332; + this.state = 5336; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -29209,28 +29210,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5333; + this.state = 5337; this.match(PostgreSqlParser.KW_TO); - this.state = 5334; + this.state = 5338; this.qualifiedName(); - this.state = 5336; + this.state = 5340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5335; + this.state = 5339; this.whereClause(); } } - this.state = 5338; + this.state = 5342; this.match(PostgreSqlParser.KW_DO); - this.state = 5340; + this.state = 5344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 5339; + this.state = 5343; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -29242,62 +29243,62 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5358; + this.state = 5362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 5342; + this.state = 5346; this.match(PostgreSqlParser.KW_NOTHING); } break; case 2: { - this.state = 5343; + this.state = 5347; this.ruleActionStmt(); } break; case 3: { - this.state = 5344; + this.state = 5348; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 5346; + this.state = 5350; 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 = 5345; + this.state = 5349; this.ruleActionStmt(); } } - this.state = 5354; + this.state = 5358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 5348; + this.state = 5352; this.match(PostgreSqlParser.SEMI); - this.state = 5350; + this.state = 5354; 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 = 5349; + this.state = 5353; this.ruleActionStmt(); } } } } - this.state = 5356; + this.state = 5360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5357; + this.state = 5361; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -29322,41 +29323,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RuleActionStmtContext(this.context, this.state); this.enterRule(localContext, 452, PostgreSqlParser.RULE_ruleActionStmt); try { - this.state = 5365; + this.state = 5369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5360; + this.state = 5364; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5361; + this.state = 5365; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5362; + this.state = 5366; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5363; + this.state = 5367; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5364; + this.state = 5368; this.notifyStmt(); } break; @@ -29383,16 +29384,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5367; + this.state = 5371; this.match(PostgreSqlParser.KW_NOTIFY); - this.state = 5368; + this.state = 5372; this.colId(); - this.state = 5370; + this.state = 5374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5369; + this.state = 5373; this.notifyPayload(); } } @@ -29419,9 +29420,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5372; + this.state = 5376; this.match(PostgreSqlParser.COMMA); - this.state = 5373; + this.state = 5377; this.stringConst(); } } @@ -29445,9 +29446,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5375; + this.state = 5379; this.match(PostgreSqlParser.KW_LISTEN); - this.state = 5376; + this.state = 5380; this.colId(); } } @@ -29471,9 +29472,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5378; + this.state = 5382; this.match(PostgreSqlParser.KW_UNLISTEN); - this.state = 5381; + this.state = 5385; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -29871,13 +29872,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5379; + this.state = 5383; this.colId(); } break; case PostgreSqlParser.STAR: { - this.state = 5380; + this.state = 5384; this.match(PostgreSqlParser.STAR); } break; @@ -29905,30 +29906,30 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 462, PostgreSqlParser.RULE_transactionStmt); let _la: number; try { - this.state = 5428; + this.state = 5432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5383; + this.state = 5387; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 5385; + this.state = 5389; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 5384; + this.state = 5388; this.optTransaction(); } break; } - this.state = 5388; + this.state = 5392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: { - this.state = 5387; + this.state = 5391; this.transactionModeList(); } break; @@ -29938,16 +29939,16 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5390; + this.state = 5394; this.match(PostgreSqlParser.KW_START); - this.state = 5391; + this.state = 5395; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5393; + this.state = 5397; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 5392; + this.state = 5396; this.transactionModeList(); } break; @@ -29957,46 +29958,46 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5395; + this.state = 5399; this.match(PostgreSqlParser.KW_SAVEPOINT); - this.state = 5396; + this.state = 5400; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5397; + this.state = 5401; this.match(PostgreSqlParser.KW_RELEASE); - this.state = 5399; + this.state = 5403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { case 1: { - this.state = 5398; + this.state = 5402; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5401; + this.state = 5405; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5402; + this.state = 5406; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5403; + this.state = 5407; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5404; + this.state = 5408; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5405; + this.state = 5409; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -30005,16 +30006,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5406; + this.state = 5410; this.match(PostgreSqlParser.KW_PREPARED); - this.state = 5407; + this.state = 5411; this.stringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5408; + this.state = 5412; _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 161 || _la === 319 || _la === 454)) { this.errorHandler.recoverInline(this); @@ -30023,34 +30024,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5410; + this.state = 5414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 669, this.context) ) { case 1: { - this.state = 5409; + this.state = 5413; this.optTransaction(); } break; } - this.state = 5417; + this.state = 5421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 5412; + this.state = 5416; this.match(PostgreSqlParser.KW_AND); - this.state = 5414; + this.state = 5418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5413; + this.state = 5417; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5416; + this.state = 5420; this.match(PostgreSqlParser.KW_CHAIN); } } @@ -30060,31 +30061,31 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5419; + this.state = 5423; this.match(PostgreSqlParser.KW_ROLLBACK); - this.state = 5421; + this.state = 5425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 5420; + this.state = 5424; this.optTransaction(); } } - this.state = 5423; + this.state = 5427; this.match(PostgreSqlParser.KW_TO); - this.state = 5425; + this.state = 5429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { case 1: { - this.state = 5424; + this.state = 5428; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5427; + this.state = 5431; this.colId(); } break; @@ -30111,7 +30112,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5430; + this.state = 5434; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -30141,26 +30142,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 466, PostgreSqlParser.RULE_transactionModeItem); let _la: number; try { - this.state = 5441; + this.state = 5445; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 5432; + this.state = 5436; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 5433; + this.state = 5437; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 5434; + this.state = 5438; this.isoLevel(); } break; case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 5435; + this.state = 5439; this.match(PostgreSqlParser.KW_READ); - this.state = 5436; + this.state = 5440; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -30175,17 +30176,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 3); { - this.state = 5438; + this.state = 5442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5437; + this.state = 5441; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 5440; + this.state = 5444; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; @@ -30215,31 +30216,31 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5443; + this.state = 5447; this.transactionModeItem(); - this.state = 5450; + this.state = 5454; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5445; + this.state = 5449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5444; + this.state = 5448; this.match(PostgreSqlParser.COMMA); } } - this.state = 5447; + this.state = 5451; this.transactionModeItem(); } } } - this.state = 5452; + this.state = 5456; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); } @@ -30267,55 +30268,55 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5453; + this.state = 5457; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5456; + this.state = 5460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5454; + this.state = 5458; this.match(PostgreSqlParser.KW_OR); - this.state = 5455; + this.state = 5459; this.match(PostgreSqlParser.KW_REPLACE); } } - this.state = 5459; + this.state = 5463; 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 = 5458; + this.state = 5462; this.optTemp(); } } - this.state = 5476; + this.state = 5480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VIEW: { - this.state = 5461; + this.state = 5465; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5462; + this.state = 5466; this.viewNameCreate(); - this.state = 5464; + this.state = 5468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5463; + this.state = 5467; this.columnListCreate(); } } - this.state = 5467; + this.state = 5471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5466; + this.state = 5470; this.optRelOptions(); } } @@ -30324,20 +30325,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RECURSIVE: { - this.state = 5469; + this.state = 5473; this.match(PostgreSqlParser.KW_RECURSIVE); - this.state = 5470; + this.state = 5474; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5471; + this.state = 5475; this.viewNameCreate(); - this.state = 5472; + this.state = 5476; this.optColumnList(); - this.state = 5474; + this.state = 5478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5473; + this.state = 5477; this.optRelOptions(); } } @@ -30347,23 +30348,23 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5478; + this.state = 5482; this.match(PostgreSqlParser.KW_AS); - this.state = 5479; + this.state = 5483; this.selectStmt(); - this.state = 5486; + this.state = 5490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: { - this.state = 5480; + this.state = 5484; this.match(PostgreSqlParser.KW_WITH); - this.state = 5482; + this.state = 5486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 5481; + this.state = 5485; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -30375,9 +30376,9 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5484; + this.state = 5488; this.match(PostgreSqlParser.KW_CHECK); - this.state = 5485; + this.state = 5489; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -30404,9 +30405,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5488; + this.state = 5492; this.match(PostgreSqlParser.KW_LOAD); - this.state = 5489; + this.state = 5493; this.stringConst(); } } @@ -30432,28 +30433,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5491; + this.state = 5495; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5492; + this.state = 5496; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5493; + this.state = 5497; this.databaseNameCreate(); - this.state = 5495; + this.state = 5499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 5494; + this.state = 5498; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 5502; + this.state = 5506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 5498; + this.state = 5502; this.errorHandler.sync(this); alternative = 1; do { @@ -30461,7 +30462,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5497; + this.state = 5501; this.createDbOptItem(); } } @@ -30469,7 +30470,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5500; + this.state = 5504; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 688, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30499,82 +30500,82 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5512; + this.state = 5516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 5504; + this.state = 5508; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5505; + this.state = 5509; this.match(PostgreSqlParser.KW_LIMIT); } break; case 2: { - this.state = 5506; + this.state = 5510; this.match(PostgreSqlParser.KW_ENCODING); } break; case 3: { - this.state = 5507; + this.state = 5511; this.match(PostgreSqlParser.KW_LOCATION); } break; case 4: { - this.state = 5508; + this.state = 5512; this.match(PostgreSqlParser.KW_OWNER); } break; case 5: { - this.state = 5509; + this.state = 5513; this.match(PostgreSqlParser.KW_TABLESPACE); } break; case 6: { - this.state = 5510; + this.state = 5514; this.match(PostgreSqlParser.KW_TEMPLATE); } break; case 7: { - this.state = 5511; + this.state = 5515; this.identifier(); } break; } - this.state = 5515; + this.state = 5519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5514; + this.state = 5518; this.match(PostgreSqlParser.EQUAL); } } - this.state = 5520; + this.state = 5524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { case 1: { - this.state = 5517; + this.state = 5521; this.signedConst(); } break; case 2: { - this.state = 5518; + this.state = 5522; this.booleanOrString(); } break; case 3: { - this.state = 5519; + this.state = 5523; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -30603,27 +30604,27 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5522; + this.state = 5526; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5523; + this.state = 5527; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5524; + this.state = 5528; this.databaseName(); - this.state = 5540; + this.state = 5544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: { - this.state = 5528; + this.state = 5532; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: { - this.state = 5525; + this.state = 5529; this.match(PostgreSqlParser.KW_SET); - this.state = 5526; + this.state = 5530; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 5527; + this.state = 5531; this.tableSpaceName(); } break; @@ -30632,22 +30633,22 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5538; + this.state = 5542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5531; + this.state = 5535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5530; + this.state = 5534; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 5534; + this.state = 5538; this.errorHandler.sync(this); alternative = 1; do { @@ -30655,7 +30656,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5533; + this.state = 5537; this.createDbOptItem(); } } @@ -30663,7 +30664,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5536; + this.state = 5540; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30695,18 +30696,18 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5542; + this.state = 5546; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5543; + this.state = 5547; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5544; + this.state = 5548; this.databaseName(); - this.state = 5546; + this.state = 5550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 698, this.context) ) { case 1: { - this.state = 5545; + this.state = 5549; this.setOrResetClause(); } break; @@ -30733,15 +30734,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5548; + this.state = 5552; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5549; + this.state = 5553; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 5550; + this.state = 5554; this.anyName(); - this.state = 5551; + this.state = 5555; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5552; + this.state = 5556; this.match(PostgreSqlParser.KW_VERSION); } } @@ -30766,11 +30767,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5554; + this.state = 5558; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5555; + this.state = 5559; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 5556; + this.state = 5560; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30779,7 +30780,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5557; + this.state = 5561; this.genericSet(); } } @@ -30805,37 +30806,37 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5559; + this.state = 5563; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5560; + this.state = 5564; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5561; + this.state = 5565; this.anyName(); - this.state = 5563; + this.state = 5567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5562; + this.state = 5566; this.match(PostgreSqlParser.KW_AS); } } - this.state = 5565; - this.typename(); this.state = 5569; + this.typename(); + this.state = 5573; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5566; + this.state = 5570; this.colConstraint(); } } } - this.state = 5571; + this.state = 5575; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); } @@ -30862,24 +30863,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5572; + this.state = 5576; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5573; + this.state = 5577; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5574; + this.state = 5578; this.anyName(); - this.state = 5597; + this.state = 5601; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: { - this.state = 5575; + this.state = 5579; this.alterColumnDefault(); } break; case 2: { - this.state = 5576; + this.state = 5580; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30888,56 +30889,56 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5577; + this.state = 5581; this.match(PostgreSqlParser.KW_NOT); - this.state = 5578; + this.state = 5582; this.match(PostgreSqlParser.KW_NULL); } break; case 3: { - this.state = 5579; + this.state = 5583; this.match(PostgreSqlParser.KW_ADD); - this.state = 5582; + this.state = 5586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 5580; + this.state = 5584; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5581; + this.state = 5585; this.colId(); } } - this.state = 5584; + this.state = 5588; this.constraintElem(); } break; case 4: { - this.state = 5585; + this.state = 5589; this.match(PostgreSqlParser.KW_DROP); - this.state = 5586; + this.state = 5590; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5588; + this.state = 5592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 5587; + this.state = 5591; this.ifExists(); } break; } - this.state = 5590; + this.state = 5594; this.colId(); - this.state = 5592; + this.state = 5596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { case 1: { - this.state = 5591; + this.state = 5595; this.optDropBehavior(); } break; @@ -30946,11 +30947,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 5594; + this.state = 5598; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 5595; + this.state = 5599; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5596; + this.state = 5600; this.colId(); } break; @@ -30977,17 +30978,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5599; + this.state = 5603; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5600; + this.state = 5604; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5601; + this.state = 5605; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5602; + this.state = 5606; this.match(PostgreSqlParser.KW_DICTIONARY); - this.state = 5603; + this.state = 5607; this.anyName(); - this.state = 5604; + this.state = 5608; this.definition(); } } @@ -31010,23 +31011,23 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 492, PostgreSqlParser.RULE_alterSearchConfigurationStmt); let _la: number; try { - this.state = 5647; + this.state = 5651; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5606; + this.state = 5610; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5607; + this.state = 5611; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5608; + this.state = 5612; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5609; + this.state = 5613; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5610; + this.state = 5614; this.anyName(); - this.state = 5611; + this.state = 5615; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 138)) { this.errorHandler.recoverInline(this); @@ -31035,87 +31036,87 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5612; + this.state = 5616; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5613; + this.state = 5617; this.match(PostgreSqlParser.KW_FOR); - this.state = 5614; + this.state = 5618; this.nameList(); - this.state = 5615; + this.state = 5619; this.match(PostgreSqlParser.KW_WITH); - this.state = 5616; + this.state = 5620; this.anyNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5618; + this.state = 5622; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5619; + this.state = 5623; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5620; + this.state = 5624; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5621; + this.state = 5625; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5622; + this.state = 5626; this.anyName(); - this.state = 5623; + this.state = 5627; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5624; + this.state = 5628; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5627; + this.state = 5631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5625; + this.state = 5629; this.match(PostgreSqlParser.KW_FOR); - this.state = 5626; + this.state = 5630; this.nameList(); } } - this.state = 5629; + this.state = 5633; this.match(PostgreSqlParser.KW_REPLACE); - this.state = 5630; + this.state = 5634; this.anyName(); - this.state = 5631; + this.state = 5635; this.match(PostgreSqlParser.KW_WITH); - this.state = 5632; + this.state = 5636; this.anyName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5634; + this.state = 5638; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5635; + this.state = 5639; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5636; + this.state = 5640; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5637; + this.state = 5641; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5638; + this.state = 5642; this.anyName(); - this.state = 5639; + this.state = 5643; this.match(PostgreSqlParser.KW_DROP); - this.state = 5640; + this.state = 5644; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5642; + this.state = 5646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5641; + this.state = 5645; this.ifExists(); } } - this.state = 5644; + this.state = 5648; this.match(PostgreSqlParser.KW_FOR); - this.state = 5645; + this.state = 5649; this.nameList(); } break; @@ -31142,33 +31143,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5649; + this.state = 5653; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5651; + this.state = 5655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5650; + this.state = 5654; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 5653; + this.state = 5657; this.match(PostgreSqlParser.KW_CONVERSION); - this.state = 5654; + this.state = 5658; this.anyName(); - this.state = 5655; + this.state = 5659; this.match(PostgreSqlParser.KW_FOR); - this.state = 5656; + this.state = 5660; this.stringConst(); - this.state = 5657; + this.state = 5661; this.match(PostgreSqlParser.KW_TO); - this.state = 5658; + this.state = 5662; this.stringConst(); - this.state = 5659; + this.state = 5663; this.match(PostgreSqlParser.KW_FROM); - this.state = 5660; + this.state = 5664; this.anyName(); } } @@ -31191,37 +31192,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 496, PostgreSqlParser.RULE_clusterStmt); let _la: number; try { - this.state = 5687; + this.state = 5691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5662; + this.state = 5666; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5664; + this.state = 5668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5663; + this.state = 5667; this.optVerbose(); } } - this.state = 5670; + this.state = 5674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 5666; + this.state = 5670; this.tableName(); - this.state = 5668; + this.state = 5672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5667; + this.state = 5671; this.tableAccessMethodClause(); } } @@ -31234,38 +31235,38 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5672; + this.state = 5676; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5673; + this.state = 5677; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5674; + this.state = 5678; this.optVerbose(); - this.state = 5679; + this.state = 5683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5675; + this.state = 5679; this.match(PostgreSqlParser.COMMA); - this.state = 5676; + this.state = 5680; this.optVerbose(); } } - this.state = 5681; + this.state = 5685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5682; + this.state = 5686; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5683; + this.state = 5687; this.tableName(); - this.state = 5685; + this.state = 5689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5684; + this.state = 5688; this.tableAccessMethodClause(); } } @@ -31295,50 +31296,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5689; + this.state = 5693; this.match(PostgreSqlParser.KW_VACUUM); - this.state = 5705; + this.state = 5709; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { { - this.state = 5691; + this.state = 5695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 5690; + this.state = 5694; this.match(PostgreSqlParser.KW_FULL); } } - this.state = 5694; + this.state = 5698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 5693; + this.state = 5697; this.match(PostgreSqlParser.KW_FREEZE); } } - this.state = 5697; + this.state = 5701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5696; + this.state = 5700; this.optVerbose(); } } - this.state = 5700; + this.state = 5704; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5699; + this.state = 5703; this.analyzeKeyword(); } break; @@ -31348,12 +31349,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5703; + this.state = 5707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: { - this.state = 5702; + this.state = 5706; this.explainOptionList(); } break; @@ -31361,12 +31362,12 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5708; + this.state = 5712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { case 1: { - this.state = 5707; + this.state = 5711; this.vacuumRelationList(); } break; @@ -31394,19 +31395,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5710; + this.state = 5714; this.analyzeKeyword(); - this.state = 5725; + this.state = 5729; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: { - this.state = 5712; + this.state = 5716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5711; + this.state = 5715; this.optVerbose(); } } @@ -31415,37 +31416,37 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5714; + this.state = 5718; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5715; + this.state = 5719; this.analyzeOptionElem(); - this.state = 5720; + this.state = 5724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5716; + this.state = 5720; this.match(PostgreSqlParser.COMMA); - this.state = 5717; + this.state = 5721; this.analyzeOptionElem(); } } - this.state = 5722; + this.state = 5726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5723; + this.state = 5727; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5728; + this.state = 5732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5727; + this.state = 5731; this.vacuumRelationList(); } break; @@ -31473,7 +31474,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5730; + this.state = 5734; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -31504,7 +31505,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5734; + this.state = 5738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -31923,21 +31924,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5732; + this.state = 5736; this.nonReservedWord(); } break; case PostgreSqlParser.KW_ANALYSE: case PostgreSqlParser.KW_ANALYZE: { - this.state = 5733; + this.state = 5737; this.analyzeKeyword(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5738; + this.state = 5742; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32359,7 +32360,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5736; + this.state = 5740; this.booleanOrString(); } break; @@ -32368,7 +32369,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5737; + this.state = 5741; this.numericOnly(); } break; @@ -32399,14 +32400,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 506, PostgreSqlParser.RULE_analyzeOptionElem); let _la: number; try { - this.state = 5749; + this.state = 5753; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VERBOSE: case PostgreSqlParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 1); { - this.state = 5740; + this.state = 5744; _la = this.tokenStream.LA(1); if(!(_la === 128 || _la === 547)) { this.errorHandler.recoverInline(this); @@ -32415,12 +32416,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5742; + this.state = 5746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5741; + this.state = 5745; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32437,9 +32438,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 5744; + this.state = 5748; this.match(PostgreSqlParser.KW_BUFFER_USAGE_LIMIT); - this.state = 5747; + this.state = 5751; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PLUS: @@ -32447,7 +32448,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5745; + this.state = 5749; this.numericOnly(); } break; @@ -32456,7 +32457,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5746; + this.state = 5750; this.stringConst(); } break; @@ -32490,14 +32491,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5751; + this.state = 5755; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 5753; + this.state = 5757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5752; + this.state = 5756; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32531,14 +32532,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5755; + this.state = 5759; this.tableName(); - this.state = 5757; + this.state = 5761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { case 1: { - this.state = 5756; + this.state = 5760; this.optColumnList(); } break; @@ -32566,21 +32567,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5759; + this.state = 5763; this.vacuumRelation(); - this.state = 5764; + this.state = 5768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5760; + this.state = 5764; this.match(PostgreSqlParser.COMMA); - this.state = 5761; + this.state = 5765; this.vacuumRelation(); } } - this.state = 5766; + this.state = 5770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32607,25 +32608,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5767; + this.state = 5771; this.match(PostgreSqlParser.KW_EXPLAIN); - this.state = 5778; + this.state = 5782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5768; + this.state = 5772; this.explainOptionList(); } break; case 2: { - this.state = 5770; + this.state = 5774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5769; + this.state = 5773; this.match(PostgreSqlParser.KW_VERBOSE); } } @@ -32634,19 +32635,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 5776; + this.state = 5780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || _la === 32) { { - this.state = 5772; + this.state = 5776; this.analyzeKeyword(); - this.state = 5774; + this.state = 5778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5773; + this.state = 5777; this.optVerbose(); } } @@ -32657,7 +32658,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5780; + this.state = 5784; this.explainableStmt(); } } @@ -32679,69 +32680,69 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExplainableStmtContext(this.context, this.state); this.enterRule(localContext, 516, PostgreSqlParser.RULE_explainableStmt); try { - this.state = 5791; + this.state = 5795; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5782; + this.state = 5786; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5783; + this.state = 5787; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5784; + this.state = 5788; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5785; + this.state = 5789; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5786; + this.state = 5790; this.declareCursorStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5787; + this.state = 5791; this.createAsStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5788; + this.state = 5792; this.createMaterializedViewStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5789; + this.state = 5793; this.refreshMaterializedViewStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5790; + this.state = 5794; this.executeStmt(); } break; @@ -32768,27 +32769,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5793; + this.state = 5797; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5794; + this.state = 5798; this.vacAnalyzeOptionElem(); - this.state = 5799; + this.state = 5803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5795; + this.state = 5799; this.match(PostgreSqlParser.COMMA); - this.state = 5796; + this.state = 5800; this.vacAnalyzeOptionElem(); } } - this.state = 5801; + this.state = 5805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5802; + this.state = 5806; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32813,23 +32814,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5804; + this.state = 5808; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5805; + this.state = 5809; this.colId(); - this.state = 5807; + this.state = 5811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5806; + this.state = 5810; this.prepTypeClause(); } } - this.state = 5809; + this.state = 5813; this.match(PostgreSqlParser.KW_AS); - this.state = 5810; + this.state = 5814; this.preParableStmt(); } } @@ -32854,27 +32855,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5812; + this.state = 5816; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5813; + this.state = 5817; this.typename(); - this.state = 5818; + this.state = 5822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5814; + this.state = 5818; this.match(PostgreSqlParser.COMMA); - this.state = 5815; + this.state = 5819; this.typename(); } } - this.state = 5820; + this.state = 5824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5821; + this.state = 5825; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32896,41 +32897,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PreParableStmtContext(this.context, this.state); this.enterRule(localContext, 524, PostgreSqlParser.RULE_preParableStmt); try { - this.state = 5828; + this.state = 5832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 742, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5823; + this.state = 5827; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5824; + this.state = 5828; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5825; + this.state = 5829; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5826; + this.state = 5830; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5827; + this.state = 5831; this.mergeStmt(); } break; @@ -32955,22 +32956,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 526, PostgreSqlParser.RULE_executeStmt); let _la: number; try { - this.state = 5853; + this.state = 5857; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 5830; + this.state = 5834; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5831; + this.state = 5835; this.colId(); - this.state = 5833; + this.state = 5837; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 5832; + this.state = 5836; this.executeParamClause(); } break; @@ -32980,54 +32981,54 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 5835; + this.state = 5839; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5837; + this.state = 5841; 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 = 5836; + this.state = 5840; this.optTemp(); } } - this.state = 5839; + this.state = 5843; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5841; + this.state = 5845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5840; + this.state = 5844; this.ifNotExists(); } break; } - this.state = 5843; + this.state = 5847; this.createAsTarget(); - this.state = 5844; + this.state = 5848; this.match(PostgreSqlParser.KW_AS); - this.state = 5845; + this.state = 5849; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5846; + this.state = 5850; this.colId(); - this.state = 5848; + this.state = 5852; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { case 1: { - this.state = 5847; + this.state = 5851; this.executeParamClause(); } break; } - this.state = 5851; + this.state = 5855; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5850; + this.state = 5854; this.optWithData(); } break; @@ -33058,11 +33059,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5855; + this.state = 5859; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5856; + this.state = 5860; this.exprList(); - this.state = 5857; + this.state = 5861; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33086,19 +33087,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5859; + this.state = 5863; this.match(PostgreSqlParser.KW_DEALLOCATE); - this.state = 5861; + this.state = 5865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 5860; + this.state = 5864; this.match(PostgreSqlParser.KW_PREPARE); } break; } - this.state = 5865; + this.state = 5869; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -33496,13 +33497,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5863; + this.state = 5867; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 5864; + this.state = 5868; this.match(PostgreSqlParser.KW_ALL); } break; @@ -33533,58 +33534,58 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5868; + this.state = 5872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5867; + this.state = 5871; this.withClause(); } } - this.state = 5870; + this.state = 5874; this.match(PostgreSqlParser.KW_INSERT); - this.state = 5871; + this.state = 5875; this.match(PostgreSqlParser.KW_INTO); - this.state = 5872; + this.state = 5876; this.tableName(); - this.state = 5875; + this.state = 5879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5873; + this.state = 5877; this.match(PostgreSqlParser.KW_AS); - this.state = 5874; + this.state = 5878; this.colId(); } } - this.state = 5877; + this.state = 5881; this.insertRest(); - this.state = 5899; + this.state = 5903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5878; + this.state = 5882; this.match(PostgreSqlParser.KW_ON); - this.state = 5879; + this.state = 5883; this.match(PostgreSqlParser.KW_CONFLICT); - this.state = 5887; + this.state = 5891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 5880; + this.state = 5884; this.indexParams(); - this.state = 5882; + this.state = 5886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5881; + this.state = 5885; this.whereClause(); } } @@ -33593,11 +33594,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_ON: { - this.state = 5884; + this.state = 5888; this.match(PostgreSqlParser.KW_ON); - this.state = 5885; + this.state = 5889; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5886; + this.state = 5890; this.colId(); } break; @@ -33606,25 +33607,25 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 5889; + this.state = 5893; this.match(PostgreSqlParser.KW_DO); - this.state = 5897; + this.state = 5901; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5890; + this.state = 5894; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5891; + this.state = 5895; this.match(PostgreSqlParser.KW_SET); - this.state = 5892; + this.state = 5896; this.setClauseList(); - this.state = 5894; + this.state = 5898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5893; + this.state = 5897; this.whereClause(); } } @@ -33633,7 +33634,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_NOTHING: { - this.state = 5896; + this.state = 5900; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -33643,12 +33644,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5902; + this.state = 5906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5901; + this.state = 5905; this.returningClause(); } } @@ -33676,28 +33677,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5908; + this.state = 5912; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5904; + this.state = 5908; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5905; + this.state = 5909; this.insertColumnList(); - this.state = 5906; + this.state = 5910; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5913; + this.state = 5917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 5910; + this.state = 5914; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 5911; + this.state = 5915; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -33706,23 +33707,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5912; + this.state = 5916; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 5917; + this.state = 5921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { case 1: { - this.state = 5915; + this.state = 5919; this.defaultValuesOrValues(); } break; case 2: { - this.state = 5916; + this.state = 5920; this.selectStmt(); } break; @@ -33750,21 +33751,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5919; + this.state = 5923; this.insertColumnItem(); - this.state = 5924; + this.state = 5928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5920; + this.state = 5924; this.match(PostgreSqlParser.COMMA); - this.state = 5921; + this.state = 5925; this.insertColumnItem(); } } - this.state = 5926; + this.state = 5930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33790,9 +33791,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5927; + this.state = 5931; this.columnName(); - this.state = 5928; + this.state = 5932; this.optIndirection(); } } @@ -33816,9 +33817,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5930; + this.state = 5934; this.match(PostgreSqlParser.KW_RETURNING); - this.state = 5931; + this.state = 5935; this.targetList(); } } @@ -33843,50 +33844,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5934; + this.state = 5938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5933; + this.state = 5937; this.withClause(); } } - this.state = 5936; + this.state = 5940; this.match(PostgreSqlParser.KW_DELETE); - this.state = 5937; + this.state = 5941; this.match(PostgreSqlParser.KW_FROM); - this.state = 5938; + this.state = 5942; this.relationExprOptAlias(); - this.state = 5941; + this.state = 5945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5939; + this.state = 5943; this.match(PostgreSqlParser.KW_USING); - this.state = 5940; + this.state = 5944; this.fromList(); } } - this.state = 5944; + this.state = 5948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5943; + this.state = 5947; this.whereOrCurrentClause(); } } - this.state = 5947; + this.state = 5951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5946; + this.state = 5950; this.returningClause(); } } @@ -33914,34 +33915,34 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5949; + this.state = 5953; this.match(PostgreSqlParser.KW_LOCK); - this.state = 5951; + this.state = 5955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 5950; + this.state = 5954; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 5953; + this.state = 5957; this.relationExprList(); - this.state = 5968; + this.state = 5972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 5954; + this.state = 5958; this.match(PostgreSqlParser.KW_IN); - this.state = 5965; + this.state = 5969; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ACCESS: case PostgreSqlParser.KW_ROW: { - this.state = 5955; + this.state = 5959; _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -33950,7 +33951,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5956; + this.state = 5960; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -33963,24 +33964,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SHARE: { - this.state = 5957; + this.state = 5961; this.match(PostgreSqlParser.KW_SHARE); - this.state = 5962; + this.state = 5966; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5958; + this.state = 5962; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5959; + this.state = 5963; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; case PostgreSqlParser.KW_ROW: { - this.state = 5960; + this.state = 5964; this.match(PostgreSqlParser.KW_ROW); - this.state = 5961; + this.state = 5965; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; @@ -33993,24 +33994,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_EXCLUSIVE: { - this.state = 5964; + this.state = 5968; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5967; + this.state = 5971; this.match(PostgreSqlParser.KW_MODE); } } - this.state = 5971; + this.state = 5975; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 5970; + this.state = 5974; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -34038,50 +34039,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5974; + this.state = 5978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5973; + this.state = 5977; this.withClause(); } } - this.state = 5976; + this.state = 5980; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5977; + this.state = 5981; this.relationExprOptAlias(); - this.state = 5978; + this.state = 5982; this.match(PostgreSqlParser.KW_SET); - this.state = 5979; + this.state = 5983; this.setClauseList(); - this.state = 5981; + this.state = 5985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 5980; + this.state = 5984; this.fromClause(); } } - this.state = 5984; + this.state = 5988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5983; + this.state = 5987; this.whereOrCurrentClause(); } } - this.state = 5987; + this.state = 5991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5986; + this.state = 5990; this.returningClause(); } } @@ -34109,21 +34110,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5989; + this.state = 5993; this.setClause(); - this.state = 5994; + this.state = 5998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5990; + this.state = 5994; this.match(PostgreSqlParser.COMMA); - this.state = 5991; + this.state = 5995; this.setClause(); } } - this.state = 5996; + this.state = 6000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34147,57 +34148,57 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetClauseContext(this.context, this.state); this.enterRule(localContext, 550, PostgreSqlParser.RULE_setClause); try { - this.state = 6015; + this.state = 6019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5997; + this.state = 6001; this.insertColumnItem(); - this.state = 5998; + this.state = 6002; this.match(PostgreSqlParser.EQUAL); - this.state = 5999; + this.state = 6003; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6001; + this.state = 6005; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6002; + this.state = 6006; this.insertColumnList(); - this.state = 6003; + this.state = 6007; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6004; + this.state = 6008; this.match(PostgreSqlParser.EQUAL); - this.state = 6013; + this.state = 6017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 6006; + this.state = 6010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 6005; + this.state = 6009; this.match(PostgreSqlParser.KW_ROW); } break; } - this.state = 6008; + this.state = 6012; this.expression(); } break; case 2: { - this.state = 6009; + this.state = 6013; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6010; + this.state = 6014; this.selectClause(); - this.state = 6011; + this.state = 6015; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -34227,47 +34228,47 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6017; + this.state = 6021; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 6018; + this.state = 6022; this.colId(); { - this.state = 6027; + this.state = 6031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 6025; + this.state = 6029; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_SCROLL: { { - this.state = 6020; + this.state = 6024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6019; + this.state = 6023; this.match(PostgreSqlParser.KW_NO); } } - this.state = 6022; + this.state = 6026; this.match(PostgreSqlParser.KW_SCROLL); } } break; case PostgreSqlParser.KW_BINARY: { - this.state = 6023; + this.state = 6027; this.match(PostgreSqlParser.KW_BINARY); } break; case PostgreSqlParser.KW_INSENSITIVE: { - this.state = 6024; + this.state = 6028; this.match(PostgreSqlParser.KW_INSENSITIVE); } break; @@ -34275,19 +34276,19 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6029; + this.state = 6033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6030; + this.state = 6034; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 6033; + this.state = 6037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 6031; + this.state = 6035; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -34296,14 +34297,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6032; + this.state = 6036; this.match(PostgreSqlParser.KW_HOLD); } } - this.state = 6035; + this.state = 6039; this.match(PostgreSqlParser.KW_FOR); - this.state = 6036; + this.state = 6040; this.selectStmt(); } } @@ -34325,14 +34326,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectStmtContext(this.context, this.state); this.enterRule(localContext, 554, PostgreSqlParser.RULE_selectStmt); try { - this.state = 6040; + this.state = 6044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6038; + this.state = 6042; this.selectNoParens(); } break; @@ -34340,7 +34341,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6039; + this.state = 6043; this.selectWithParens(); } break; @@ -34366,25 +34367,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6042; + this.state = 6046; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6045; + this.state = 6049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: { - this.state = 6043; + this.state = 6047; this.selectNoParens(); } break; case 2: { - this.state = 6044; + this.state = 6048; this.selectWithParens(); } break; } - this.state = 6047; + this.state = 6051; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -34409,41 +34410,41 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6050; + this.state = 6054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 6049; + this.state = 6053; this.withClause(); } } - this.state = 6052; + this.state = 6056; this.selectClause(); - this.state = 6054; + this.state = 6058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6053; + this.state = 6057; this.sortClause(); } } - this.state = 6064; + this.state = 6068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 6056; + this.state = 6060; this.forLockingClause(); - this.state = 6058; + this.state = 6062; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 6057; + this.state = 6061; this.selectLimit(); } break; @@ -34452,14 +34453,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6060; + this.state = 6064; this.selectLimit(); - this.state = 6062; + this.state = 6066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 6061; + this.state = 6065; this.forLockingClause(); } } @@ -34487,20 +34488,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectClause); try { - this.state = 6068; + this.state = 6072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6066; + this.state = 6070; this.simpleSelect(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6067; + this.state = 6071; this.selectWithParens(); } break; @@ -34527,34 +34528,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6092; + this.state = 6096; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 6070; + this.state = 6074; this.match(PostgreSqlParser.KW_SELECT); - this.state = 6080; + this.state = 6084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { case 1: { - this.state = 6072; + this.state = 6076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 6071; + this.state = 6075; this.match(PostgreSqlParser.KW_ALL); } break; } - this.state = 6075; + this.state = 6079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { case 1: { - this.state = 6074; + this.state = 6078; this.intoClause(); } break; @@ -34563,12 +34564,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6078; + this.state = 6082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 6077; + this.state = 6081; this.distinctClause(); } break; @@ -34576,42 +34577,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6082; + this.state = 6086; this.sqlExpression(); } break; case PostgreSqlParser.KW_VALUES: { - this.state = 6083; + this.state = 6087; this.valuesClause(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 6084; + this.state = 6088; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6085; + this.state = 6089; this.relationExpr(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6086; + this.state = 6090; this.selectWithParens(); - this.state = 6087; + this.state = 6091; this.setOperatorWithAllOrDistinct(); - this.state = 6090; + this.state = 6094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 6088; + this.state = 6092; this.simpleSelect(); } break; case 2: { - this.state = 6089; + this.state = 6093; this.selectWithParens(); } break; @@ -34621,27 +34622,27 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6101; + this.state = 6105; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6094; + this.state = 6098; this.setOperatorWithAllOrDistinct(); - this.state = 6097; + this.state = 6101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { case 1: { - this.state = 6095; + this.state = 6099; this.simpleSelect(); } break; case 2: { - this.state = 6096; + this.state = 6100; this.selectWithParens(); } break; @@ -34649,7 +34650,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6103; + this.state = 6107; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); } @@ -34676,7 +34677,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6104; + this.state = 6108; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 70 || _la === 97)) { this.errorHandler.recoverInline(this); @@ -34685,12 +34686,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6106; + this.state = 6110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 6105; + this.state = 6109; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -34725,36 +34726,36 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6108; + this.state = 6112; this.match(PostgreSqlParser.KW_WITH); - this.state = 6110; + this.state = 6114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { case 1: { - this.state = 6109; + this.state = 6113; this.match(PostgreSqlParser.KW_RECURSIVE); } break; } { - this.state = 6112; + this.state = 6116; this.commonTableExpr(); - this.state = 6117; + this.state = 6121; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6113; + this.state = 6117; this.match(PostgreSqlParser.COMMA); - this.state = 6114; + this.state = 6118; this.commonTableExpr(); } } } - this.state = 6119; + this.state = 6123; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); } @@ -34782,62 +34783,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6120; + this.state = 6124; this.colId(); - this.state = 6122; + this.state = 6126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 6121; + this.state = 6125; this.optColumnList(); } } - this.state = 6124; + this.state = 6128; this.match(PostgreSqlParser.KW_AS); - this.state = 6129; + this.state = 6133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 6126; + this.state = 6130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6125; + this.state = 6129; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6128; + this.state = 6132; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 6131; + this.state = 6135; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6132; + this.state = 6136; this.preParableStmt(); - this.state = 6133; + this.state = 6137; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6135; + this.state = 6139; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { case 1: { - this.state = 6134; + this.state = 6138; this.searchClause(); } break; } - this.state = 6138; + this.state = 6142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 6137; + this.state = 6141; this.cycleClause(); } break; @@ -34865,9 +34866,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6140; + this.state = 6144; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 6141; + this.state = 6145; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -34876,15 +34877,15 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6142; + this.state = 6146; this.match(PostgreSqlParser.KW_FIRST); - this.state = 6143; + this.state = 6147; this.match(PostgreSqlParser.KW_BY); - this.state = 6144; + this.state = 6148; this.columnList(); - this.state = 6145; + this.state = 6149; this.match(PostgreSqlParser.KW_SET); - this.state = 6146; + this.state = 6150; this.columnName(); } } @@ -34909,33 +34910,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6148; + this.state = 6152; this.match(PostgreSqlParser.KW_CYCLE); - this.state = 6149; + this.state = 6153; this.columnList(); - this.state = 6150; + this.state = 6154; this.match(PostgreSqlParser.KW_SET); - this.state = 6151; + this.state = 6155; this.columnName(); - this.state = 6157; + this.state = 6161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 6152; + this.state = 6156; this.match(PostgreSqlParser.KW_TO); - this.state = 6153; + this.state = 6157; this.colId(); - this.state = 6154; + this.state = 6158; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6155; + this.state = 6159; this.colId(); } } - this.state = 6159; + this.state = 6163; this.match(PostgreSqlParser.KW_USING); - this.state = 6160; + this.state = 6164; this.columnName(); } } @@ -34959,30 +34960,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6162; + this.state = 6166; this.match(PostgreSqlParser.KW_INTO); - this.state = 6168; + this.state = 6172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { case 1: { - this.state = 6164; + this.state = 6168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 6163; + this.state = 6167; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 6166; + this.state = 6170; this.optTempTableName(); } break; case 2: { - this.state = 6167; + this.state = 6171; this.exprList(); } break; @@ -35008,18 +35009,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 576, PostgreSqlParser.RULE_optTempTableName); let _la: number; try { - this.state = 6185; + this.state = 6189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6171; + this.state = 6175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 6170; + this.state = 6174; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -35031,7 +35032,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6173; + this.state = 6177; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -35040,44 +35041,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6175; + this.state = 6179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6174; + this.state = 6178; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6177; + this.state = 6181; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6179; + this.state = 6183; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 6178; + this.state = 6182; this.match(PostgreSqlParser.KW_UNLOGGED); } break; } - this.state = 6182; + this.state = 6186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6181; + this.state = 6185; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6184; + this.state = 6188; this.tableNameCreate(); } break; @@ -35103,16 +35104,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6187; + this.state = 6191; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6190; + this.state = 6194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { case 1: { - this.state = 6188; + this.state = 6192; this.match(PostgreSqlParser.KW_ON); - this.state = 6189; + this.state = 6193; this.executeParamClause(); } break; @@ -35140,25 +35141,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6192; + this.state = 6196; this.match(PostgreSqlParser.KW_ORDER); - this.state = 6193; + this.state = 6197; this.match(PostgreSqlParser.KW_BY); - this.state = 6194; + this.state = 6198; this.sortBy(); - this.state = 6199; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6195; + this.state = 6199; this.match(PostgreSqlParser.COMMA); - this.state = 6196; + this.state = 6200; this.sortBy(); } } - this.state = 6201; + this.state = 6205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35185,22 +35186,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6202; - this.columnExprNoParen(); this.state = 6206; + this.columnExprNoParen(); + this.state = 6210; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { case 1: { - this.state = 6203; + this.state = 6207; this.match(PostgreSqlParser.KW_USING); - this.state = 6204; + this.state = 6208; this.qualAllOp(); } break; case 2: { - this.state = 6205; + this.state = 6209; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -35212,14 +35213,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6210; + this.state = 6214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { case 1: { - this.state = 6208; + this.state = 6212; this.match(PostgreSqlParser.KW_NULLS); - this.state = 6209; + this.state = 6213; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -35252,20 +35253,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 584, PostgreSqlParser.RULE_selectLimit); let _la: number; try { - this.state = 6223; + this.state = 6227; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OFFSET: this.enterOuterAlt(localContext, 1); { - this.state = 6212; + this.state = 6216; this.offsetClause(); - this.state = 6214; + this.state = 6218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: { - this.state = 6213; + this.state = 6217; this.fetchClause(); } break; @@ -35276,30 +35277,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 6218; + this.state = 6222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 6216; + this.state = 6220; this.limitClause(); } break; case PostgreSqlParser.KW_FETCH: { - this.state = 6217; + this.state = 6221; this.fetchClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6221; + this.state = 6225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6220; + this.state = 6224; this.offsetClause(); } } @@ -35331,9 +35332,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6225; + this.state = 6229; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 6228; + this.state = 6232; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -35779,27 +35780,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6226; + this.state = 6230; this.expression(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 6227; + this.state = 6231; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6232; + this.state = 6236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 6230; + this.state = 6234; this.match(PostgreSqlParser.COMMA); - this.state = 6231; + this.state = 6235; this.expression(); } } @@ -35827,9 +35828,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6234; + this.state = 6238; this.match(PostgreSqlParser.KW_FETCH); - this.state = 6235; + this.state = 6239; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -35839,17 +35840,17 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 6237; + this.state = 6241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { case 1: { - this.state = 6236; + this.state = 6240; this.selectFetchFirstValue(); } break; } - this.state = 6239; + this.state = 6243; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35858,20 +35859,20 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6243; + this.state = 6247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ONLY: { - this.state = 6240; + this.state = 6244; this.match(PostgreSqlParser.KW_ONLY); } break; case PostgreSqlParser.KW_WITH: { - this.state = 6241; + this.state = 6245; this.match(PostgreSqlParser.KW_WITH); - this.state = 6242; + this.state = 6246; this.match(PostgreSqlParser.KW_TIES); } break; @@ -35902,16 +35903,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6245; + this.state = 6249; this.match(PostgreSqlParser.KW_OFFSET); - this.state = 6250; + this.state = 6254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 6246; + this.state = 6250; this.selectFetchFirstValue(); - this.state = 6247; + this.state = 6251; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35924,7 +35925,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6249; + this.state = 6253; this.expression(); } break; @@ -35950,13 +35951,13 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 592, PostgreSqlParser.RULE_selectFetchFirstValue); let _la: number; try { - this.state = 6255; + this.state = 6259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6252; + this.state = 6256; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -35965,7 +35966,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6253; + this.state = 6257; _la = this.tokenStream.LA(1); if(!(_la === 574 || _la === 576)) { this.errorHandler.recoverInline(this); @@ -35979,7 +35980,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6254; + this.state = 6258; this.primaryExpression(0); } break; @@ -36006,16 +36007,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6257; + this.state = 6261; this.match(PostgreSqlParser.KW_GROUP); - this.state = 6258; + this.state = 6262; this.match(PostgreSqlParser.KW_BY); - this.state = 6260; + this.state = 6264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { case 1: { - this.state = 6259; + this.state = 6263; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -36027,7 +36028,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6262; + this.state = 6266; this.groupByList(); } } @@ -36052,23 +36053,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6264; + this.state = 6268; this.groupByItem(); - this.state = 6269; + this.state = 6273; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6265; + this.state = 6269; this.match(PostgreSqlParser.COMMA); - this.state = 6266; + this.state = 6270; this.groupByItem(); } } } - this.state = 6271; + this.state = 6275; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); } @@ -36093,34 +36094,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 598, PostgreSqlParser.RULE_groupByItem); let _la: number; try { - this.state = 6295; + this.state = 6299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6272; + this.state = 6276; this.columnExprNoParen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6273; + this.state = 6277; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6274; + this.state = 6278; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6276; + this.state = 6280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 468 || _la === 469) { { - this.state = 6275; + this.state = 6279; _la = this.tokenStream.LA(1); if(!(_la === 468 || _la === 469)) { this.errorHandler.recoverInline(this); @@ -36132,44 +36133,44 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6278; + this.state = 6282; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6279; + this.state = 6283; this.columnExprNoParen(); - this.state = 6284; + this.state = 6288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6280; + this.state = 6284; this.match(PostgreSqlParser.COMMA); - this.state = 6281; + this.state = 6285; this.columnExprNoParen(); } } - this.state = 6286; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6287; + this.state = 6291; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6289; + this.state = 6293; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6290; + this.state = 6294; this.match(PostgreSqlParser.KW_SETS); - this.state = 6291; + this.state = 6295; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6292; + this.state = 6296; this.groupByList(); - this.state = 6293; + this.state = 6297; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36194,95 +36195,95 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 600, PostgreSqlParser.RULE_forLockingClause); let _la: number; try { - this.state = 6325; + this.state = 6329; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6318; + this.state = 6322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6297; + this.state = 6301; this.match(PostgreSqlParser.KW_FOR); - this.state = 6307; + this.state = 6311; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_UPDATE: { - this.state = 6300; + this.state = 6304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6298; + this.state = 6302; this.match(PostgreSqlParser.KW_NO); - this.state = 6299; + this.state = 6303; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6302; + this.state = 6306; this.match(PostgreSqlParser.KW_UPDATE); } break; case PostgreSqlParser.KW_KEY: case PostgreSqlParser.KW_SHARE: { - this.state = 6304; + this.state = 6308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 6303; + this.state = 6307; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6306; + this.state = 6310; this.match(PostgreSqlParser.KW_SHARE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6311; + this.state = 6315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 6309; + this.state = 6313; this.match(PostgreSqlParser.KW_OF); - this.state = 6310; + this.state = 6314; this.qualifiedNameList(); } break; } - this.state = 6316; + this.state = 6320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 6313; + this.state = 6317; this.match(PostgreSqlParser.KW_NOWAIT); } break; case 2: { - this.state = 6314; + this.state = 6318; this.match(PostgreSqlParser.KW_SKIP); - this.state = 6315; + this.state = 6319; this.match(PostgreSqlParser.KW_LOCKED); } break; } } } - this.state = 6320; + this.state = 6324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -36291,11 +36292,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6322; + this.state = 6326; this.match(PostgreSqlParser.KW_FOR); - this.state = 6323; + this.state = 6327; this.match(PostgreSqlParser.KW_READ); - this.state = 6324; + this.state = 6328; this.match(PostgreSqlParser.KW_ONLY); } break; @@ -36322,23 +36323,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6327; + this.state = 6331; this.match(PostgreSqlParser.KW_VALUES); - this.state = 6328; + this.state = 6332; this.executeParamClause(); - this.state = 6333; + this.state = 6337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6329; + this.state = 6333; this.match(PostgreSqlParser.COMMA); - this.state = 6330; + this.state = 6334; this.executeParamClause(); } } - this.state = 6335; + this.state = 6339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36364,9 +36365,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6336; + this.state = 6340; this.match(PostgreSqlParser.KW_FROM); - this.state = 6337; + this.state = 6341; this.fromList(); } } @@ -36391,23 +36392,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6339; + this.state = 6343; this.tableRef(); - this.state = 6344; + this.state = 6348; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6340; + this.state = 6344; this.match(PostgreSqlParser.COMMA); - this.state = 6341; + this.state = 6345; this.tableRef(); } } } - this.state = 6346; + this.state = 6350; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); } @@ -36435,61 +36436,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6410; + this.state = 6414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { case 1: { - this.state = 6361; + this.state = 6365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: { - this.state = 6347; + this.state = 6351; this.relationExpr(); } break; case 2: { { - this.state = 6349; + this.state = 6353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 6348; + this.state = 6352; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 6351; + this.state = 6355; this.viewName(); - this.state = 6353; + this.state = 6357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: { - this.state = 6352; + this.state = 6356; this.match(PostgreSqlParser.STAR); } break; } - this.state = 6356; + this.state = 6360; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: { - this.state = 6355; + this.state = 6359; this.columnList(); } break; } - this.state = 6359; + this.state = 6363; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { case 1: { - this.state = 6358; + this.state = 6362; this.whereClause(); } break; @@ -36498,22 +36499,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6364; + this.state = 6368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: { - this.state = 6363; + this.state = 6367; this.aliasClause(); } break; } - this.state = 6367; + this.state = 6371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 6366; + this.state = 6370; this.tableSampleClause(); } } @@ -36522,29 +36523,29 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6370; + this.state = 6374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 72) { { - this.state = 6369; + this.state = 6373; this.match(PostgreSqlParser.KW_LATERAL); } } - this.state = 6384; + this.state = 6388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { case 1: { - this.state = 6372; + this.state = 6376; this.xmlTable(); - this.state = 6374; + this.state = 6378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: { - this.state = 6373; + this.state = 6377; this.aliasClause(); } break; @@ -36553,14 +36554,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6376; + this.state = 6380; this.funcTable(); - this.state = 6378; + this.state = 6382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { case 1: { - this.state = 6377; + this.state = 6381; this.funcAliasClause(); } break; @@ -36569,14 +36570,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6380; + this.state = 6384; this.selectWithParens(); - this.state = 6382; + this.state = 6386; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: { - this.state = 6381; + this.state = 6385; this.aliasClause(); } break; @@ -36588,40 +36589,40 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6386; + this.state = 6390; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6387; + this.state = 6391; this.tableRef(); - this.state = 6404; + this.state = 6408; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6388; + this.state = 6392; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6389; + this.state = 6393; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6390; + this.state = 6394; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6391; + this.state = 6395; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6393; + this.state = 6397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6392; + this.state = 6396; this.joinType(); } } - this.state = 6395; + this.state = 6399; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6396; + this.state = 6400; this.tableRef(); } break; @@ -36631,21 +36632,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6398; + this.state = 6402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6397; + this.state = 6401; this.joinType(); } } - this.state = 6400; + this.state = 6404; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6401; + this.state = 6405; this.tableRef(); - this.state = 6402; + this.state = 6406; this.joinQual(); } break; @@ -36654,14 +36655,14 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 6406; + this.state = 6410; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6408; + this.state = 6412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { case 1: { - this.state = 6407; + this.state = 6411; this.aliasClause(); } break; @@ -36669,42 +36670,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6430; + this.state = 6434; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 864, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 6428; + this.state = 6432; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6412; + this.state = 6416; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6413; + this.state = 6417; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6414; + this.state = 6418; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6415; + this.state = 6419; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6417; + this.state = 6421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6416; + this.state = 6420; this.joinType(); } } - this.state = 6419; + this.state = 6423; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6420; + this.state = 6424; this.tableRef(); } break; @@ -36714,21 +36715,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6422; + this.state = 6426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6421; + this.state = 6425; this.joinType(); } } - this.state = 6424; + this.state = 6428; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6425; + this.state = 6429; this.tableRef(); - this.state = 6426; + this.state = 6430; this.joinQual(); } break; @@ -36737,7 +36738,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6432; + this.state = 6436; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 864, this.context); } @@ -36764,28 +36765,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6434; + this.state = 6438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6433; + this.state = 6437; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6436; + this.state = 6440; localContext._alias = this.colId(); - this.state = 6441; + this.state = 6445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: { - this.state = 6437; + this.state = 6441; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6438; + this.state = 6442; this.nameList(); - this.state = 6439; + this.state = 6443; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36811,32 +36812,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 612, PostgreSqlParser.RULE_funcAliasClause); let _la: number; try { - this.state = 6455; + this.state = 6459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6443; + this.state = 6447; this.aliasClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6449; + this.state = 6453; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: { - this.state = 6444; + this.state = 6448; this.match(PostgreSqlParser.KW_AS); - this.state = 6446; + this.state = 6450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6445; + this.state = 6449; localContext._alias = this.colId(); } } @@ -37238,18 +37239,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6448; + this.state = 6452; localContext._alias = this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6451; + this.state = 6455; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6452; + this.state = 6456; this.tableFuncElementList(); - this.state = 6453; + this.state = 6457; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37276,7 +37277,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6457; + this.state = 6461; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -37285,12 +37286,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6459; + this.state = 6463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 6458; + this.state = 6462; this.match(PostgreSqlParser.KW_OUTER); } } @@ -37315,24 +37316,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new JoinQualContext(this.context, this.state); this.enterRule(localContext, 616, PostgreSqlParser.RULE_joinQual); try { - this.state = 6465; + this.state = 6469; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 6461; + this.state = 6465; this.match(PostgreSqlParser.KW_USING); - this.state = 6462; + this.state = 6466; this.optColumnList(); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 6463; + this.state = 6467; this.match(PostgreSqlParser.KW_ON); - this.state = 6464; + this.state = 6468; this.expression(); } break; @@ -37358,22 +37359,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RelationExprContext(this.context, this.state); this.enterRule(localContext, 618, PostgreSqlParser.RULE_relationExpr); try { - this.state = 6482; + this.state = 6486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6467; + this.state = 6471; this.truncateTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6468; + this.state = 6472; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6474; + this.state = 6478; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -37771,17 +37772,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6469; + this.state = 6473; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6470; + this.state = 6474; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6471; + this.state = 6475; this.tableName(); - this.state = 6472; + this.state = 6476; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37793,11 +37794,11 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6476; + this.state = 6480; this.match(PostgreSqlParser.KW_IN); - this.state = 6477; + this.state = 6481; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6480; + this.state = 6484; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38195,13 +38196,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6478; + this.state = 6482; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6479; + this.state = 6483; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -38231,32 +38232,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 620, PostgreSqlParser.RULE_publicationRelationExpr); let _la: number; try { - this.state = 6508; + this.state = 6512; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6484; + this.state = 6488; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6485; + this.state = 6489; this.truncateTable(); - this.state = 6487; + this.state = 6491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { case 1: { - this.state = 6486; + this.state = 6490; this.optColumnList(); } break; } - this.state = 6490; + this.state = 6494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6489; + this.state = 6493; this.whereClause(); } } @@ -38266,11 +38267,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6492; + this.state = 6496; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6493; + this.state = 6497; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6499; + this.state = 6503; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38668,17 +38669,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6494; + this.state = 6498; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6495; + this.state = 6499; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6496; + this.state = 6500; this.tableName(); - this.state = 6497; + this.state = 6501; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -38690,13 +38691,13 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6501; + this.state = 6505; this.match(PostgreSqlParser.KW_TABLES); - this.state = 6502; + this.state = 6506; this.match(PostgreSqlParser.KW_IN); - this.state = 6503; + this.state = 6507; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6506; + this.state = 6510; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39094,13 +39095,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6504; + this.state = 6508; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6505; + this.state = 6509; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -39132,21 +39133,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6510; + this.state = 6514; this.relationExpr(); - this.state = 6515; + this.state = 6519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6511; + this.state = 6515; this.match(PostgreSqlParser.COMMA); - this.state = 6512; + this.state = 6516; this.relationExpr(); } } - this.state = 6517; + this.state = 6521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39173,24 +39174,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6518; + this.state = 6522; this.relationExpr(); - this.state = 6523; + this.state = 6527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { case 1: { - this.state = 6520; + this.state = 6524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6519; + this.state = 6523; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6522; + this.state = 6526; this.colId(); } break; @@ -39217,24 +39218,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6525; + this.state = 6529; this.match(PostgreSqlParser.KW_TABLESAMPLE); - this.state = 6526; + this.state = 6530; this.functionName(); - this.state = 6527; + this.state = 6531; this.executeParamClause(); - this.state = 6533; + this.state = 6537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: { - this.state = 6528; + this.state = 6532; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 6529; + this.state = 6533; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6530; + this.state = 6534; this.expression(); - this.state = 6531; + this.state = 6535; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -39262,56 +39263,56 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6549; + this.state = 6553; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { case 1: { - this.state = 6535; + this.state = 6539; this.funcExprWindowless(); } break; case 2: { { - this.state = 6536; + this.state = 6540; this.match(PostgreSqlParser.KW_ROWS); - this.state = 6537; + this.state = 6541; this.match(PostgreSqlParser.KW_FROM); - this.state = 6538; + this.state = 6542; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6539; + this.state = 6543; this.rowsFromItem(); - this.state = 6544; + this.state = 6548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6540; + this.state = 6544; this.match(PostgreSqlParser.COMMA); - this.state = 6541; + this.state = 6545; this.rowsFromItem(); } } - this.state = 6546; + this.state = 6550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6547; + this.state = 6551; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 6553; + this.state = 6557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6551; + this.state = 6555; this.match(PostgreSqlParser.KW_WITH); - this.state = 6552; + this.state = 6556; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -39339,20 +39340,20 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6555; + this.state = 6559; this.funcExprWindowless(); - this.state = 6561; + this.state = 6565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6556; + this.state = 6560; this.match(PostgreSqlParser.KW_AS); - this.state = 6557; + this.state = 6561; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6558; + this.state = 6562; this.tableFuncElementList(); - this.state = 6559; + this.state = 6563; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39379,9 +39380,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6563; + this.state = 6567; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6564; + this.state = 6568; this.columnExprNoParen(); } } @@ -39405,24 +39406,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6566; + this.state = 6570; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6571; + this.state = 6575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { case 1: { - this.state = 6567; + this.state = 6571; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 6568; + this.state = 6572; this.match(PostgreSqlParser.KW_OF); - this.state = 6569; + this.state = 6573; this.colId(); } break; case 2: { - this.state = 6570; + this.state = 6574; this.expression(); } break; @@ -39450,21 +39451,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6577; this.tableFuncElement(); - this.state = 6578; + this.state = 6582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6574; + this.state = 6578; this.match(PostgreSqlParser.COMMA); - this.state = 6575; + this.state = 6579; this.tableFuncElement(); } } - this.state = 6580; + this.state = 6584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39491,16 +39492,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6581; + this.state = 6585; this.colId(); - this.state = 6582; + this.state = 6586; this.typename(); - this.state = 6584; + this.state = 6588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 6583; + this.state = 6587; this.collateClause(); } } @@ -39528,71 +39529,71 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6586; + this.state = 6590; this.match(PostgreSqlParser.KW_XMLTABLE); - this.state = 6587; + this.state = 6591; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6601; + this.state = 6605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: { - this.state = 6588; + this.state = 6592; this.match(PostgreSqlParser.KW_XMLNAMESPACES); - this.state = 6589; + this.state = 6593; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6590; + this.state = 6594; this.xmlNamespaceEle(); - this.state = 6595; + this.state = 6599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6591; + this.state = 6595; this.match(PostgreSqlParser.COMMA); - this.state = 6592; + this.state = 6596; this.xmlNamespaceEle(); } } - this.state = 6597; + this.state = 6601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6598; + this.state = 6602; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6599; + this.state = 6603; this.match(PostgreSqlParser.COMMA); } break; } - this.state = 6603; + this.state = 6607; this.primaryExpression(0); - this.state = 6604; + this.state = 6608; this.xmlExistsArgument(); - this.state = 6605; + this.state = 6609; this.match(PostgreSqlParser.KW_COLUMNS); - this.state = 6606; + this.state = 6610; this.xmlTableColumnEl(); - this.state = 6611; + this.state = 6615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6607; + this.state = 6611; this.match(PostgreSqlParser.COMMA); - this.state = 6608; + this.state = 6612; this.xmlTableColumnEl(); } } - this.state = 6613; + this.state = 6617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6614; + this.state = 6618; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39617,9 +39618,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6616; + this.state = 6620; this.colId(); - this.state = 6635; + this.state = 6639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40038,19 +40039,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6617; + this.state = 6621; this.typename(); - this.state = 6631; + this.state = 6635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6627; + this.state = 6631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { - this.state = 6627; + this.state = 6631; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40397,40 +40398,40 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6620; + this.state = 6624; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: { - this.state = 6618; + this.state = 6622; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 6619; + this.state = 6623; this.identifier(); } break; } - this.state = 6622; + this.state = 6626; this.expression(); } break; case PostgreSqlParser.KW_NOT: case PostgreSqlParser.KW_NULL: { - this.state = 6624; + this.state = 6628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6623; + this.state = 6627; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6626; + this.state = 6630; this.match(PostgreSqlParser.KW_NULL); } break; @@ -40438,10 +40439,10 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6629; + this.state = 6633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587); + } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586); } } @@ -40449,9 +40450,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_FOR: { - this.state = 6633; + this.state = 6637; this.match(PostgreSqlParser.KW_FOR); - this.state = 6634; + this.state = 6638; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -40478,26 +40479,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new XmlNamespaceEleContext(this.context, this.state); this.enterRule(localContext, 644, PostgreSqlParser.RULE_xmlNamespaceEle); try { - this.state = 6643; + this.state = 6647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6637; + this.state = 6641; this.primaryExpression(0); - this.state = 6638; + this.state = 6642; this.match(PostgreSqlParser.KW_AS); - this.state = 6639; + this.state = 6643; this.colLabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6641; + this.state = 6645; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6642; + this.state = 6646; this.primaryExpression(0); } break; @@ -40523,55 +40524,55 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 6671; + this.state = 6675; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6646; + this.state = 6650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 6645; + this.state = 6649; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 6648; + this.state = 6652; this.simpleTypeName(); - this.state = 6665; + this.state = 6669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { { - this.state = 6656; + this.state = 6660; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6649; + this.state = 6653; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6651; + this.state = 6655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 574) { { - this.state = 6650; + this.state = 6654; this.match(PostgreSqlParser.Integral); } } - this.state = 6653; + this.state = 6657; this.match(PostgreSqlParser.CLOSE_BRACKET); } } } - this.state = 6658; + this.state = 6662; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); } @@ -40580,18 +40581,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6659; - this.match(PostgreSqlParser.KW_ARRAY); this.state = 6663; + this.match(PostgreSqlParser.KW_ARRAY); + this.state = 6667; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6660; + this.state = 6664; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6661; + this.state = 6665; this.match(PostgreSqlParser.Integral); - this.state = 6662; + this.state = 6666; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -40604,11 +40605,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6667; + this.state = 6671; this.qualifiedName(); - this.state = 6668; + this.state = 6672; this.match(PostgreSqlParser.PERCENT); - this.state = 6669; + this.state = 6673; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -40639,30 +40640,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SimpleTypeNameContext(this.context, this.state); this.enterRule(localContext, 648, PostgreSqlParser.RULE_simpleTypeName); try { - this.state = 6688; + this.state = 6692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6673; + this.state = 6677; this.typeFunctionName(); - this.state = 6675; + this.state = 6679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 6674; + this.state = 6678; this.attrs(); } break; } - this.state = 6678; + this.state = 6682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6677; + this.state = 6681; this.executeParamClause(); } break; @@ -40672,26 +40673,26 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6680; + this.state = 6684; this.constTypeName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6681; + this.state = 6685; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6686; + this.state = 6690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 6683; + this.state = 6687; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6682; + this.state = 6686; this.optInterval(); } break; @@ -40700,7 +40701,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6685; + this.state = 6689; this.optFloat(); } break; @@ -40727,7 +40728,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ConstTypeNameContext(this.context, this.state); this.enterRule(localContext, 650, PostgreSqlParser.RULE_constTypeName); try { - this.state = 6694; + this.state = 6698; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DOUBLE: @@ -40743,14 +40744,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 6690; + this.state = 6694; this.numeric(); } break; case PostgreSqlParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 6691; + this.state = 6695; this.bit(); } break; @@ -40761,7 +40762,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 6692; + this.state = 6696; this.character(); } break; @@ -40769,7 +40770,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 6693; + this.state = 6697; this.constDatetime(); } break; @@ -40796,55 +40797,55 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 652, PostgreSqlParser.RULE_numeric); let _la: number; try { - this.state = 6712; + this.state = 6716; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 6696; + this.state = 6700; this.match(PostgreSqlParser.KW_INT); } break; case PostgreSqlParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 6697; + this.state = 6701; this.match(PostgreSqlParser.KW_INTEGER); } break; case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 6698; + this.state = 6702; this.match(PostgreSqlParser.KW_SMALLINT); } break; case PostgreSqlParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 6699; + this.state = 6703; this.match(PostgreSqlParser.KW_BIGINT); } break; case PostgreSqlParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 6700; + this.state = 6704; this.match(PostgreSqlParser.KW_REAL); } break; case PostgreSqlParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 6701; + this.state = 6705; this.match(PostgreSqlParser.KW_FLOAT); - this.state = 6703; + this.state = 6707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 6702; + this.state = 6706; this.optFloat(); } break; @@ -40854,9 +40855,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 6705; + this.state = 6709; this.match(PostgreSqlParser.KW_DOUBLE); - this.state = 6706; + this.state = 6710; this.match(PostgreSqlParser.KW_PRECISION); } break; @@ -40865,7 +40866,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 8); { - this.state = 6707; + this.state = 6711; _la = this.tokenStream.LA(1); if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40874,12 +40875,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6709; + this.state = 6713; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6708; + this.state = 6712; this.executeParamClause(); } break; @@ -40889,7 +40890,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 9); { - this.state = 6711; + this.state = 6715; this.match(PostgreSqlParser.KW_BOOLEAN); } break; @@ -40917,11 +40918,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6714; + this.state = 6718; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6715; + this.state = 6719; this.match(PostgreSqlParser.Integral); - this.state = 6716; + this.state = 6720; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -40945,24 +40946,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6718; + this.state = 6722; this.match(PostgreSqlParser.KW_BIT); - this.state = 6720; + this.state = 6724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 6719; + this.state = 6723; this.match(PostgreSqlParser.KW_VARYING); } break; } - this.state = 6723; + this.state = 6727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6722; + this.state = 6726; this.executeParamClause(); } break; @@ -40990,14 +40991,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6735; + this.state = 6739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHAR: case PostgreSqlParser.KW_CHARACTER: case PostgreSqlParser.KW_NCHAR: { - this.state = 6725; + this.state = 6729; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -41006,12 +41007,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6727; + this.state = 6731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 918, this.context) ) { case 1: { - this.state = 6726; + this.state = 6730; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41020,15 +41021,15 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_VARCHAR: { - this.state = 6729; + this.state = 6733; this.match(PostgreSqlParser.KW_VARCHAR); } break; case PostgreSqlParser.KW_NATIONAL: { - this.state = 6730; + this.state = 6734; this.match(PostgreSqlParser.KW_NATIONAL); - this.state = 6731; + this.state = 6735; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -41037,12 +41038,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6733; + this.state = 6737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6732; + this.state = 6736; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41052,12 +41053,12 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6738; + this.state = 6742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 6737; + this.state = 6741; this.optFloat(); } break; @@ -41085,7 +41086,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6740; + this.state = 6744; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -41094,22 +41095,22 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6742; + this.state = 6746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { case 1: { - this.state = 6741; + this.state = 6745; this.optFloat(); } break; } - this.state = 6747; + this.state = 6751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 6744; + this.state = 6748; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -41118,9 +41119,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6745; + this.state = 6749; this.match(PostgreSqlParser.KW_TIME); - this.state = 6746; + this.state = 6750; this.match(PostgreSqlParser.KW_ZONE); } break; @@ -41145,36 +41146,36 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptIntervalContext(this.context, this.state); this.enterRule(localContext, 662, PostgreSqlParser.RULE_optInterval); try { - this.state = 6778; + this.state = 6782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MONTH: this.enterOuterAlt(localContext, 1); { - this.state = 6749; + this.state = 6753; this.match(PostgreSqlParser.KW_MONTH); } break; case PostgreSqlParser.KW_SECOND: this.enterOuterAlt(localContext, 2); { - this.state = 6750; + this.state = 6754; this.intervalSecond(); } break; case PostgreSqlParser.KW_YEAR: this.enterOuterAlt(localContext, 3); { - this.state = 6751; + this.state = 6755; this.match(PostgreSqlParser.KW_YEAR); - this.state = 6754; + this.state = 6758; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { case 1: { - this.state = 6752; + this.state = 6756; this.match(PostgreSqlParser.KW_TO); - this.state = 6753; + this.state = 6757; this.match(PostgreSqlParser.KW_MONTH); } break; @@ -41184,33 +41185,33 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DAY: this.enterOuterAlt(localContext, 4); { - this.state = 6756; + this.state = 6760; this.match(PostgreSqlParser.KW_DAY); - this.state = 6763; + this.state = 6767; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: { - this.state = 6757; - this.match(PostgreSqlParser.KW_TO); this.state = 6761; + this.match(PostgreSqlParser.KW_TO); + this.state = 6765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HOUR: { - this.state = 6758; + this.state = 6762; this.match(PostgreSqlParser.KW_HOUR); } break; case PostgreSqlParser.KW_MINUTE: { - this.state = 6759; + this.state = 6763; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6760; + this.state = 6764; this.intervalSecond(); } break; @@ -41225,27 +41226,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_HOUR: this.enterOuterAlt(localContext, 5); { - this.state = 6765; + this.state = 6769; this.match(PostgreSqlParser.KW_HOUR); - this.state = 6771; + this.state = 6775; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { case 1: { - this.state = 6766; + this.state = 6770; this.match(PostgreSqlParser.KW_TO); - this.state = 6769; + this.state = 6773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MINUTE: { - this.state = 6767; + this.state = 6771; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6768; + this.state = 6772; this.intervalSecond(); } break; @@ -41260,16 +41261,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINUTE: this.enterOuterAlt(localContext, 6); { - this.state = 6773; + this.state = 6777; this.match(PostgreSqlParser.KW_MINUTE); - this.state = 6776; + this.state = 6780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { case 1: { - this.state = 6774; + this.state = 6778; this.match(PostgreSqlParser.KW_TO); - this.state = 6775; + this.state = 6779; this.intervalSecond(); } break; @@ -41300,14 +41301,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6780; + this.state = 6784; this.match(PostgreSqlParser.KW_SECOND); - this.state = 6782; + this.state = 6786; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { case 1: { - this.state = 6781; + this.state = 6785; this.optFloat(); } break; @@ -41335,7 +41336,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6784; + this.state = 6788; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -41366,7 +41367,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6786; + this.state = 6790; this.booleanExpression(0); } } @@ -41402,7 +41403,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6795; + this.state = 6799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -41851,14 +41852,14 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6789; + this.state = 6793; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 6791; + this.state = 6795; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { case 1: { - this.state = 6790; + this.state = 6794; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -41870,9 +41871,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6793; + this.state = 6797; this.match(PostgreSqlParser.KW_NOT); - this.state = 6794; + this.state = 6798; this.booleanExpression(3); } break; @@ -41880,7 +41881,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6805; + this.state = 6809; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -41890,7 +41891,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6803; + this.state = 6807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { case 1: @@ -41898,13 +41899,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6797; + this.state = 6801; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6798; + this.state = 6802; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); - this.state = 6799; + this.state = 6803; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -41913,20 +41914,20 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6800; + this.state = 6804; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6801; + this.state = 6805; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); - this.state = 6802; + this.state = 6806; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 6807; + this.state = 6811; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); } @@ -41951,16 +41952,16 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 672, PostgreSqlParser.RULE_predicate); let _la: number; try { - this.state = 6879; + this.state = 6883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6808; + this.state = 6812; this.comparisonOperator(); - this.state = 6809; + this.state = 6813; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -41968,28 +41969,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6811; + this.state = 6815; this.comparisonOperator(); - this.state = 6812; + this.state = 6816; this.subqueryOperator(); - this.state = 6813; + this.state = 6817; this.subType(); - this.state = 6819; + this.state = 6823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { case 1: { - this.state = 6814; + this.state = 6818; this.selectWithParens(); } break; case 2: { - this.state = 6815; + this.state = 6819; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6816; + this.state = 6820; this.expression(); - this.state = 6817; + this.state = 6821; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42000,23 +42001,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6822; + this.state = 6826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6821; + this.state = 6825; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6824; + this.state = 6828; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6825; + this.state = 6829; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 6826; + this.state = 6830; this.match(PostgreSqlParser.KW_AND); - this.state = 6827; + this.state = 6831; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -42024,39 +42025,39 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6830; + this.state = 6834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6829; + this.state = 6833; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6832; + this.state = 6836; this.match(PostgreSqlParser.KW_IN); - this.state = 6833; + this.state = 6837; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6834; + this.state = 6838; this.expression(); - this.state = 6839; + this.state = 6843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6835; + this.state = 6839; this.match(PostgreSqlParser.COMMA); - this.state = 6836; + this.state = 6840; this.expression(); } } - this.state = 6841; + this.state = 6845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6842; + this.state = 6846; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42064,19 +42065,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6845; + this.state = 6849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6844; + this.state = 6848; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6847; + this.state = 6851; this.match(PostgreSqlParser.KW_IN); - this.state = 6848; + this.state = 6852; this.selectWithParens(); } break; @@ -42084,49 +42085,49 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6850; + this.state = 6854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6849; + this.state = 6853; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6860; + this.state = 6864; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIKE: { - this.state = 6852; + this.state = 6856; this.match(PostgreSqlParser.KW_LIKE); } break; case PostgreSqlParser.KW_ILIKE: { - this.state = 6853; + this.state = 6857; this.match(PostgreSqlParser.KW_ILIKE); } break; case PostgreSqlParser.KW_SIMILAR: { - this.state = 6854; + this.state = 6858; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 6855; + this.state = 6859; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_BETWEEN: { - this.state = 6856; + this.state = 6860; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6858; + this.state = 6862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 6857; + this.state = 6861; this.match(PostgreSqlParser.KW_SYMMETRIC); } } @@ -42136,16 +42137,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6862; + this.state = 6866; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 6865; + this.state = 6869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6863; + this.state = 6867; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 6864; + this.state = 6868; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -42156,19 +42157,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6867; + this.state = 6871; this.match(PostgreSqlParser.KW_IS); - this.state = 6869; + this.state = 6873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6868; + this.state = 6872; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6871; + this.state = 6875; this.match(PostgreSqlParser.KW_NULL); } break; @@ -42176,23 +42177,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6872; + this.state = 6876; this.match(PostgreSqlParser.KW_IS); - this.state = 6874; + this.state = 6878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6873; + this.state = 6877; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6876; + this.state = 6880; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6877; + this.state = 6881; this.match(PostgreSqlParser.KW_FROM); - this.state = 6878; + this.state = 6882; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -42231,7 +42232,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6885; + this.state = 6889; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { case 1: @@ -42240,7 +42241,7 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6882; + this.state = 6886; this.primaryExpression(0); } break; @@ -42249,7 +42250,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6883; + this.state = 6887; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42259,13 +42260,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6884; + this.state = 6888; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6903; + this.state = 6907; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42275,7 +42276,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6901; + this.state = 6905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: @@ -42283,11 +42284,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6887; + this.state = 6891; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 6888; + this.state = 6892; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { @@ -42297,7 +42298,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6889; + this.state = 6893; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -42306,11 +42307,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6890; + this.state = 6894; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6891; + this.state = 6895; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42320,7 +42321,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6892; + this.state = 6896; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -42329,13 +42330,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6893; + this.state = 6897; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6894; + this.state = 6898; this.match(PostgreSqlParser.CARET); - this.state = 6895; + this.state = 6899; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -42343,24 +42344,24 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6896; + this.state = 6900; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 6897; + this.state = 6901; this.match(PostgreSqlParser.KW_AT); - this.state = 6898; + this.state = 6902; this.match(PostgreSqlParser.KW_TIME); - this.state = 6899; + this.state = 6903; this.match(PostgreSqlParser.KW_ZONE); - this.state = 6900; + this.state = 6904; this.expression(); } break; } } } - this.state = 6905; + this.state = 6909; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); } @@ -42399,12 +42400,12 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6994; + this.state = 6999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { case 1: { - this.state = 6907; + this.state = 6911; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -42413,26 +42414,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6908; + this.state = 6912; this.selectWithParens(); } break; case 2: { - this.state = 6909; + this.state = 6913; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6912; + this.state = 6916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 6910; + this.state = 6914; this.selectWithParens(); } break; case PostgreSqlParser.OPEN_BRACKET: { - this.state = 6911; + this.state = 6915; this.arrayExpr(); } break; @@ -42443,49 +42444,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6914; + this.state = 6918; this.match(PostgreSqlParser.PARAM); - this.state = 6915; + this.state = 6919; this.optIndirection(); } break; case 4: { - this.state = 6916; + this.state = 6920; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6917; + this.state = 6921; this.executeParamClause(); } break; case 5: { - this.state = 6918; + this.state = 6922; this.match(PostgreSqlParser.Integral); } break; case 6: { - this.state = 6919; + this.state = 6923; this.match(PostgreSqlParser.Numeric); } break; case 7: { - this.state = 6920; + this.state = 6924; this.match(PostgreSqlParser.BinaryStringConstant); } break; case 8: { - this.state = 6921; + this.state = 6925; this.match(PostgreSqlParser.HexadecimalStringConstant); } break; case 9: { - this.state = 6922; + this.state = 6926; this.functionName(); - this.state = 6932; + this.state = 6936; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42493,29 +42494,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6923; + this.state = 6927; this.stringConst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6924; + this.state = 6928; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6925; + this.state = 6929; this.funcArgList(); - this.state = 6927; + this.state = 6931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6926; + this.state = 6930; this.sortClause(); } } - this.state = 6929; + this.state = 6933; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6930; + this.state = 6934; this.stringConst(); } break; @@ -42526,25 +42527,25 @@ export class PostgreSqlParser extends SQLParserBase { break; case 10: { - this.state = 6935; + this.state = 6939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 3525731551) !== 0) || _la === 423) { { - this.state = 6934; + this.state = 6938; this.constTypeName(); } } - this.state = 6937; + this.state = 6941; this.stringConst(); } break; case 11: { - this.state = 6938; + this.state = 6942; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6946; + this.state = 6950; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42552,14 +42553,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6939; + this.state = 6943; this.stringConst(); - this.state = 6941; + this.state = 6945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6940; + this.state = 6944; this.optInterval(); } break; @@ -42568,9 +42569,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6943; + this.state = 6947; this.optFloat(); - this.state = 6944; + this.state = 6948; this.stringConst(); } break; @@ -42581,100 +42582,100 @@ export class PostgreSqlParser extends SQLParserBase { break; case 12: { - this.state = 6948; + this.state = 6952; this.match(PostgreSqlParser.KW_TRUE); } break; case 13: { - this.state = 6949; + this.state = 6953; this.match(PostgreSqlParser.KW_FALSE); } break; case 14: { - this.state = 6950; + this.state = 6954; this.match(PostgreSqlParser.KW_NULL); } break; case 15: { - this.state = 6951; + this.state = 6955; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case 16: { - this.state = 6952; + this.state = 6956; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6953; + this.state = 6957; localContext._a_expr_in_parens = this.expression(); - this.state = 6954; + this.state = 6958; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6955; + this.state = 6959; this.optIndirection(); } break; case 17: { - this.state = 6957; + this.state = 6961; this.match(PostgreSqlParser.KW_CASE); - this.state = 6959; + this.state = 6963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 6958; + this.state = 6962; this.expression(); } } - this.state = 6962; + this.state = 6966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6961; + this.state = 6965; this.when_clause(); } } - this.state = 6964; + this.state = 6968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 6968; + this.state = 6972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 6966; + this.state = 6970; this.match(PostgreSqlParser.KW_ELSE); - this.state = 6967; + this.state = 6971; this.expression(); } } - this.state = 6970; + this.state = 6974; this.match(PostgreSqlParser.KW_END); } break; case 18: { - this.state = 6972; + this.state = 6976; this.func_expr(); } break; case 19: { - this.state = 6973; + this.state = 6977; this.selectWithParens(); - this.state = 6975; + this.state = 6979; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6974; + this.state = 6978; this.indirection(); } break; @@ -42683,43 +42684,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 20: { - this.state = 6977; + this.state = 6981; this.explicitRow(); } break; case 21: { - this.state = 6978; + this.state = 6982; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6979; + this.state = 6983; this.expression(); - this.state = 6980; + this.state = 6984; this.match(PostgreSqlParser.COMMA); - this.state = 6981; + this.state = 6985; this.exprList(); - this.state = 6982; + this.state = 6986; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 22: { - this.state = 6984; + this.state = 6988; this.row(); - this.state = 6985; + this.state = 6989; this.match(PostgreSqlParser.KW_OVERLAPS); - this.state = 6986; + this.state = 6990; this.row(); } break; case 23: { - this.state = 6988; - this.qualifiedName(); + this.state = 6992; + this.columnNamePath(); } break; case 24: { - this.state = 6989; + this.state = 6993; + this.qualifiedName(); + } + break; + case 25: + { + this.state = 6994; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -42728,21 +42735,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6990; + this.state = 6995; this.primaryExpression(5); } break; - case 25: + case 26: { - this.state = 6991; + this.state = 6996; this.qualOp(); - this.state = 6992; + this.state = 6997; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7023; + this.state = 7028; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42752,20 +42759,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7021; + this.state = 7026; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 6996; + this.state = 7001; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 6997; + this.state = 7002; this.mathOp(); - this.state = 6998; + this.state = 7003; this.primaryExpression(4); } break; @@ -42773,13 +42780,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7000; + this.state = 7005; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7001; + this.state = 7006; this.match(PostgreSqlParser.TYPECAST); - this.state = 7002; + this.state = 7007; this.typename(); } break; @@ -42787,18 +42794,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7003; + this.state = 7008; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7004; + this.state = 7009; this.qualOp(); - this.state = 7006; + this.state = 7011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 7005; + this.state = 7010; this.primaryExpression(0); } break; @@ -42809,46 +42816,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7008; + this.state = 7013; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7009; + this.state = 7014; this.match(PostgreSqlParser.KW_IS); - this.state = 7011; + this.state = 7016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7010; + this.state = 7015; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7019; + this.state = 7024; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7013; + this.state = 7018; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7014; + this.state = 7019; this.match(PostgreSqlParser.KW_FROM); - this.state = 7015; + this.state = 7020; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7016; + this.state = 7021; this.match(PostgreSqlParser.KW_OF); - this.state = 7017; + this.state = 7022; this.prepTypeClause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7018; + this.state = 7023; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42860,7 +42867,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7025; + this.state = 7030; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -42887,37 +42894,37 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7026; + this.state = 7031; this.functionName(); - this.state = 7027; + this.state = 7032; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7048; + this.state = 7053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: { - this.state = 7028; + this.state = 7033; this.funcArgList(); - this.state = 7032; + this.state = 7037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7029; + this.state = 7034; this.match(PostgreSqlParser.COMMA); - this.state = 7030; + this.state = 7035; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7031; + this.state = 7036; this.funcArgExpr(); } } - this.state = 7035; + this.state = 7040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7034; + this.state = 7039; this.sortClause(); } } @@ -42926,16 +42933,16 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7037; + this.state = 7042; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7038; + this.state = 7043; this.funcArgExpr(); - this.state = 7040; + this.state = 7045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7039; + this.state = 7044; this.sortClause(); } } @@ -42944,7 +42951,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7042; + this.state = 7047; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42953,14 +42960,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7043; + this.state = 7048; this.funcArgList(); - this.state = 7045; + this.state = 7050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7044; + this.state = 7049; this.sortClause(); } } @@ -42969,12 +42976,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 4: { - this.state = 7047; + this.state = 7052; this.match(PostgreSqlParser.STAR); } break; } - this.state = 7050; + this.state = 7055; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -42996,63 +43003,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Func_exprContext(this.context, this.state); this.enterRule(localContext, 680, PostgreSqlParser.RULE_func_expr); try { - this.state = 7077; + this.state = 7082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7052; + this.state = 7057; this.funcApplication(); - this.state = 7059; + this.state = 7064; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 7053; + this.state = 7058; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7054; + this.state = 7059; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7055; + this.state = 7060; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7056; + this.state = 7061; this.sortClause(); - this.state = 7057; + this.state = 7062; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7067; + this.state = 7072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7061; + this.state = 7066; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7062; + this.state = 7067; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7063; + this.state = 7068; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7064; + this.state = 7069; this.expression(); - this.state = 7065; + this.state = 7070; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7074; + this.state = 7079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 7069; + this.state = 7074; this.match(PostgreSqlParser.KW_OVER); - this.state = 7072; + this.state = 7077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7070; + this.state = 7075; this.windowSpecification(); } break; @@ -43451,7 +43458,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7071; + this.state = 7076; this.colId(); } break; @@ -43466,7 +43473,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7076; + this.state = 7081; this.funcExprCommonSubExpr(); } break; @@ -43490,20 +43497,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FuncExprWindowlessContext(this.context, this.state); this.enterRule(localContext, 682, PostgreSqlParser.RULE_funcExprWindowless); try { - this.state = 7081; + this.state = 7086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7079; + this.state = 7084; this.funcApplication(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7080; + this.state = 7085; this.funcExprCommonSubExpr(); } break; @@ -43528,28 +43535,28 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprCommonSubExpr); let _la: number; try { - this.state = 7257; + this.state = 7262; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7083; + this.state = 7088; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7084; + this.state = 7089; this.match(PostgreSqlParser.KW_FOR); - this.state = 7085; + this.state = 7090; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7086; + this.state = 7091; this.expression(); - this.state = 7087; + this.state = 7092; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7089; + this.state = 7094; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -43559,7 +43566,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7090; + this.state = 7095; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -43568,12 +43575,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7092; + this.state = 7097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 7091; + this.state = 7096; this.optFloat(); } break; @@ -43583,42 +43590,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7094; + this.state = 7099; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7095; + this.state = 7100; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7096; + this.state = 7101; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7097; + this.state = 7102; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7098; + this.state = 7103; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7099; + this.state = 7104; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -43626,7 +43633,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7100; + this.state = 7105; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -43635,162 +43642,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7101; + this.state = 7106; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7102; + this.state = 7107; this.expression(); - this.state = 7103; + this.state = 7108; this.match(PostgreSqlParser.KW_AS); - this.state = 7104; + this.state = 7109; this.typename(); - this.state = 7105; + this.state = 7110; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7107; + this.state = 7112; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7108; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7113; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7109; + this.state = 7114; this.extractArg(); - this.state = 7110; + this.state = 7115; this.match(PostgreSqlParser.KW_FROM); - this.state = 7111; + this.state = 7116; this.expression(); } } - this.state = 7115; + this.state = 7120; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7116; + this.state = 7121; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7117; + this.state = 7122; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7118; + this.state = 7123; this.expression(); - this.state = 7121; + this.state = 7126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7119; + this.state = 7124; this.match(PostgreSqlParser.COMMA); - this.state = 7120; + this.state = 7125; this.unicodeNormalForm(); } } - this.state = 7123; + this.state = 7128; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7125; + this.state = 7130; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7126; + this.state = 7131; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7127; + this.state = 7132; this.expression(); - this.state = 7128; + this.state = 7133; this.match(PostgreSqlParser.KW_PLACING); - this.state = 7129; + this.state = 7134; this.expression(); - this.state = 7130; + this.state = 7135; this.match(PostgreSqlParser.KW_FROM); - this.state = 7131; + this.state = 7136; this.expression(); - this.state = 7134; + this.state = 7139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7132; + this.state = 7137; this.match(PostgreSqlParser.KW_FOR); - this.state = 7133; + this.state = 7138; this.expression(); } } } - this.state = 7136; + this.state = 7141; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7138; + this.state = 7143; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7139; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7144; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7140; + this.state = 7145; this.primaryExpression(0); - this.state = 7141; + this.state = 7146; this.match(PostgreSqlParser.KW_IN); - this.state = 7142; + this.state = 7147; this.primaryExpression(0); } } - this.state = 7146; + this.state = 7151; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7147; + this.state = 7152; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7148; + this.state = 7153; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7150; + this.state = 7155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7149; + this.state = 7154; this.substrList(); } } - this.state = 7152; + this.state = 7157; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7153; + this.state = 7158; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7154; + this.state = 7159; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7156; + this.state = 7161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 7155; + this.state = 7160; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -43803,47 +43810,47 @@ export class PostgreSqlParser extends SQLParserBase { } { - this.state = 7162; + this.state = 7167; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 7159; + this.state = 7164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7158; + this.state = 7163; this.expression(); } } - this.state = 7161; + this.state = 7166; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7164; + this.state = 7169; this.exprList(); } - this.state = 7166; + this.state = 7171; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7168; + this.state = 7173; this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7169; + this.state = 7174; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7170; + this.state = 7175; this.expression(); - this.state = 7171; + this.state = 7176; this.match(PostgreSqlParser.COMMA); - this.state = 7172; + this.state = 7177; this.expression(); - this.state = 7173; + this.state = 7178; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43853,7 +43860,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7175; + this.state = 7180; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43862,48 +43869,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7176; + this.state = 7181; this.executeParamClause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7177; + this.state = 7182; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7178; + this.state = 7183; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7179; + this.state = 7184; this.match(PostgreSqlParser.KW_NAME); - this.state = 7180; + this.state = 7185; this.colLabel(); - this.state = 7190; + this.state = 7195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7181; + this.state = 7186; this.match(PostgreSqlParser.COMMA); - this.state = 7188; + this.state = 7193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 7182; + this.state = 7187; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7183; + this.state = 7188; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7184; + this.state = 7189; this.xmlAttributeList(); - this.state = 7185; + this.state = 7190; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7187; + this.state = 7192; this.exprList(); } break; @@ -43911,55 +43918,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7192; + this.state = 7197; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7194; + this.state = 7199; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7195; + this.state = 7200; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7196; + this.state = 7201; this.primaryExpression(0); - this.state = 7197; + this.state = 7202; this.xmlExistsArgument(); - this.state = 7198; + this.state = 7203; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7200; + this.state = 7205; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7201; + this.state = 7206; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7202; + this.state = 7207; this.xmlAttributeList(); - this.state = 7203; + this.state = 7208; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7205; + this.state = 7210; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7206; + this.state = 7211; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7207; + this.state = 7212; this.documentOrContent(); - this.state = 7208; + this.state = 7213; this.expression(); - this.state = 7211; + this.state = 7216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7209; + this.state = 7214; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -43968,111 +43975,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7210; + this.state = 7215; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7213; + this.state = 7218; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7215; + this.state = 7220; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7216; + this.state = 7221; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7217; + this.state = 7222; this.match(PostgreSqlParser.KW_NAME); - this.state = 7218; + this.state = 7223; this.colLabel(); - this.state = 7221; + this.state = 7226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7219; + this.state = 7224; this.match(PostgreSqlParser.COMMA); - this.state = 7220; + this.state = 7225; this.expression(); } } - this.state = 7223; + this.state = 7228; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7225; + this.state = 7230; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7226; + this.state = 7231; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7227; + this.state = 7232; this.match(PostgreSqlParser.KW_XML); - this.state = 7228; + this.state = 7233; this.expression(); - this.state = 7229; + this.state = 7234; this.match(PostgreSqlParser.COMMA); - this.state = 7230; + this.state = 7235; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7234; + this.state = 7239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { { - this.state = 7231; + this.state = 7236; this.match(PostgreSqlParser.KW_NO); - this.state = 7232; + this.state = 7237; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7233; + this.state = 7238; this.expression(); } break; } - this.state = 7245; + this.state = 7250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7236; + this.state = 7241; this.match(PostgreSqlParser.COMMA); - this.state = 7237; + this.state = 7242; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7243; + this.state = 7248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7239; + this.state = 7244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7238; + this.state = 7243; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7241; + this.state = 7246; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7242; + this.state = 7247; this.match(PostgreSqlParser.KW_YES); } break; @@ -44082,26 +44089,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7247; + this.state = 7252; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7249; + this.state = 7254; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7250; + this.state = 7255; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7251; + this.state = 7256; this.documentOrContent(); - this.state = 7252; + this.state = 7257; this.expression(); - this.state = 7253; + this.state = 7258; this.match(PostgreSqlParser.KW_AS); - this.state = 7254; + this.state = 7259; this.simpleTypeName(); - this.state = 7255; + this.state = 7260; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44130,21 +44137,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7259; - this.xmlAttributeEl(); this.state = 7264; + this.xmlAttributeEl(); + this.state = 7269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7260; + this.state = 7265; this.match(PostgreSqlParser.COMMA); - this.state = 7261; + this.state = 7266; this.xmlAttributeEl(); } } - this.state = 7266; + this.state = 7271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44171,16 +44178,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7267; + this.state = 7272; this.expression(); - this.state = 7270; + this.state = 7275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7268; + this.state = 7273; this.match(PostgreSqlParser.KW_AS); - this.state = 7269; + this.state = 7274; this.colLabel(); } } @@ -44208,7 +44215,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7272; + this.state = 7277; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -44233,70 +44240,115 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public xmlExistsArgument(): XmlExistsArgumentContext { - let localContext = new XmlExistsArgumentContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSqlParser.RULE_xmlExistsArgument); - let _la: number; + public xmlExistsArgument(): XmlExistsArgumentContext { + let localContext = new XmlExistsArgumentContext(this.context, this.state); + this.enterRule(localContext, 692, PostgreSqlParser.RULE_xmlExistsArgument); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7279; + this.match(PostgreSqlParser.KW_PASSING); + this.state = 7281; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + case 1: + { + this.state = 7280; + this.xmlPassingMech(); + } + break; + } + this.state = 7283; + this.primaryExpression(0); + this.state = 7285; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 147) { + { + this.state = 7284; + this.xmlPassingMech(); + } + } + + } + } + 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 xmlPassingMech(): XmlPassingMechContext { + let localContext = new XmlPassingMechContext(this.context, this.state); + this.enterRule(localContext, 694, PostgreSqlParser.RULE_xmlPassingMech); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7287; + this.match(PostgreSqlParser.KW_BY); + this.state = 7288; + _la = this.tokenStream.LA(1); + if(!(_la === 304 || _la === 450)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + 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 windowClause(): WindowClauseContext { + let localContext = new WindowClauseContext(this.context, this.state); + this.enterRule(localContext, 696, PostgreSqlParser.RULE_windowClause); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7274; - this.match(PostgreSqlParser.KW_PASSING); - this.state = 7276; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { - case 1: - { - this.state = 7275; - this.xmlPassingMech(); - } - break; - } - this.state = 7278; - this.primaryExpression(0); - this.state = 7280; + this.state = 7290; + this.match(PostgreSqlParser.KW_WINDOW); + this.state = 7291; + this.windowDefinition(); + this.state = 7296; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 147) { - { - this.state = 7279; - this.xmlPassingMech(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 7292; + this.match(PostgreSqlParser.COMMA); + this.state = 7293; + this.windowDefinition(); + } + } } - } - - } - } - 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 xmlPassingMech(): XmlPassingMechContext { - let localContext = new XmlPassingMechContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSqlParser.RULE_xmlPassingMech); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7282; - this.match(PostgreSqlParser.KW_BY); - this.state = 7283; - _la = this.tokenStream.LA(1); - if(!(_la === 304 || _la === 450)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 7298; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } } } @@ -44314,35 +44366,16 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public windowClause(): WindowClauseContext { - let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSqlParser.RULE_windowClause); + public havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 698, PostgreSqlParser.RULE_havingClause); try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7285; - this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7286; - this.windowDefinition(); - this.state = 7291; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 7287; - this.match(PostgreSqlParser.COMMA); - this.state = 7288; - this.windowDefinition(); - } - } - } - this.state = 7293; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); - } + this.state = 7299; + this.match(PostgreSqlParser.KW_HAVING); + this.state = 7300; + this.expression(); } } catch (re) { @@ -44361,15 +44394,15 @@ export class PostgreSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 700, PostgreSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 7294; + this.state = 7302; this.colId(); - this.state = 7295; + this.state = 7303; this.match(PostgreSqlParser.KW_AS); - this.state = 7296; + this.state = 7304; this.windowSpecification(); } } @@ -44389,18 +44422,18 @@ export class PostgreSqlParser extends SQLParserBase { } public over_clause(): Over_clauseContext { let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSqlParser.RULE_over_clause); + this.enterRule(localContext, 702, PostgreSqlParser.RULE_over_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7298; + this.state = 7306; this.match(PostgreSqlParser.KW_OVER); - this.state = 7301; + this.state = 7309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7299; + this.state = 7307; this.windowSpecification(); } break; @@ -44799,7 +44832,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7300; + this.state = 7308; this.colId(); } break; @@ -44824,58 +44857,58 @@ export class PostgreSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 704, PostgreSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7303; + this.state = 7311; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7305; + this.state = 7313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 7304; + this.state = 7312; this.colId(); } break; } - this.state = 7310; + this.state = 7318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7307; + this.state = 7315; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7308; + this.state = 7316; this.match(PostgreSqlParser.KW_BY); - this.state = 7309; + this.state = 7317; this.exprList(); } } - this.state = 7313; + this.state = 7321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7312; + this.state = 7320; this.sortClause(); } } - this.state = 7316; + this.state = 7324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7315; + this.state = 7323; this.optFrameClause(); } } - this.state = 7318; + this.state = 7326; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44895,12 +44928,12 @@ export class PostgreSqlParser extends SQLParserBase { } public optFrameClause(): OptFrameClauseContext { let localContext = new OptFrameClauseContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSqlParser.RULE_optFrameClause); + this.enterRule(localContext, 706, PostgreSqlParser.RULE_optFrameClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7320; + this.state = 7328; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44910,58 +44943,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7325; + this.state = 7333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 7321; + this.state = 7329; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7322; + this.state = 7330; this.frameBound(); - this.state = 7323; + this.state = 7331; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7327; + this.state = 7335; this.frameBound(); } - this.state = 7338; + this.state = 7346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7329; + this.state = 7337; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7336; + this.state = 7344; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7330; + this.state = 7338; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7331; + this.state = 7339; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7332; + this.state = 7340; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7333; + this.state = 7341; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7334; + this.state = 7342; this.match(PostgreSqlParser.KW_NO); - this.state = 7335; + this.state = 7343; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -44989,32 +45022,32 @@ export class PostgreSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSqlParser.RULE_frameBound); + this.enterRule(localContext, 708, PostgreSqlParser.RULE_frameBound); let _la: number; try { - this.state = 7347; + this.state = 7355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7342; + this.state = 7350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: { - this.state = 7340; + this.state = 7348; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7341; + this.state = 7349; this.expression(); } break; } - this.state = 7344; + this.state = 7352; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -45028,9 +45061,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7345; + this.state = 7353; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7346; + this.state = 7354; this.match(PostgreSqlParser.KW_ROW); } break; @@ -45052,30 +45085,30 @@ export class PostgreSqlParser extends SQLParserBase { } public row(): RowContext { let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSqlParser.RULE_row); + this.enterRule(localContext, 710, PostgreSqlParser.RULE_row); try { - this.state = 7356; + this.state = 7364; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7349; + this.state = 7357; this.explicitRow(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7350; + this.state = 7358; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7351; + this.state = 7359; this.exprList(); - this.state = 7352; + this.state = 7360; this.match(PostgreSqlParser.COMMA); - this.state = 7353; + this.state = 7361; this.expression(); - this.state = 7354; + this.state = 7362; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45099,26 +45132,26 @@ export class PostgreSqlParser extends SQLParserBase { } public explicitRow(): ExplicitRowContext { let localContext = new ExplicitRowContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSqlParser.RULE_explicitRow); + this.enterRule(localContext, 712, PostgreSqlParser.RULE_explicitRow); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7358; + this.state = 7366; this.match(PostgreSqlParser.KW_ROW); - this.state = 7359; + this.state = 7367; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7361; + this.state = 7369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7360; + this.state = 7368; this.exprList(); } } - this.state = 7363; + this.state = 7371; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45138,12 +45171,12 @@ export class PostgreSqlParser extends SQLParserBase { } public subType(): SubTypeContext { let localContext = new SubTypeContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSqlParser.RULE_subType); + this.enterRule(localContext, 714, PostgreSqlParser.RULE_subType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7365; + this.state = 7373; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -45170,15 +45203,15 @@ export class PostgreSqlParser extends SQLParserBase { } public allOp(): AllOpContext { let localContext = new AllOpContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSqlParser.RULE_allOp); + this.enterRule(localContext, 716, PostgreSqlParser.RULE_allOp); try { - this.state = 7369; + this.state = 7377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7367; + this.state = 7375; this.match(PostgreSqlParser.Operator); } break; @@ -45196,7 +45229,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7368; + this.state = 7376; this.mathOp(); } break; @@ -45220,12 +45253,12 @@ export class PostgreSqlParser extends SQLParserBase { } public mathOp(): MathOpContext { let localContext = new MathOpContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSqlParser.RULE_mathOp); + this.enterRule(localContext, 718, PostgreSqlParser.RULE_mathOp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7371; + this.state = 7379; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -45252,28 +45285,28 @@ export class PostgreSqlParser extends SQLParserBase { } public qualOp(): QualOpContext { let localContext = new QualOpContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSqlParser.RULE_qualOp); + this.enterRule(localContext, 720, PostgreSqlParser.RULE_qualOp); try { - this.state = 7379; + this.state = 7387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7373; + this.state = 7381; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7374; + this.state = 7382; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7375; + this.state = 7383; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7376; + this.state = 7384; this.anyOperator(); - this.state = 7377; + this.state = 7385; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45297,9 +45330,9 @@ export class PostgreSqlParser extends SQLParserBase { } public qualAllOp(): QualAllOpContext { let localContext = new QualAllOpContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSqlParser.RULE_qualAllOp); + this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualAllOp); try { - this.state = 7387; + this.state = 7395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45317,20 +45350,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7381; + this.state = 7389; this.allOp(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7382; + this.state = 7390; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7383; + this.state = 7391; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7384; + this.state = 7392; this.anyOperator(); - this.state = 7385; + this.state = 7393; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45354,10 +45387,10 @@ export class PostgreSqlParser extends SQLParserBase { } public subqueryOperator(): SubqueryOperatorContext { let localContext = new SubqueryOperatorContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSqlParser.RULE_subqueryOperator); + this.enterRule(localContext, 724, PostgreSqlParser.RULE_subqueryOperator); let _la: number; try { - this.state = 7394; + this.state = 7402; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45376,7 +45409,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7389; + this.state = 7397; this.qualAllOp(); } break; @@ -45385,17 +45418,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7391; + this.state = 7399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7390; + this.state = 7398; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7393; + this.state = 7401; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -45426,28 +45459,28 @@ export class PostgreSqlParser extends SQLParserBase { } public exprList(): ExprListContext { let localContext = new ExprListContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSqlParser.RULE_exprList); + this.enterRule(localContext, 726, PostgreSqlParser.RULE_exprList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7396; + this.state = 7404; this.expression(); - this.state = 7401; + this.state = 7409; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7397; + this.state = 7405; this.match(PostgreSqlParser.COMMA); - this.state = 7398; + this.state = 7406; this.expression(); } } } - this.state = 7403; + this.state = 7411; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } @@ -45469,20 +45502,20 @@ export class PostgreSqlParser extends SQLParserBase { } public columnExpr(): ColumnExprContext { let localContext = new ColumnExprContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSqlParser.RULE_columnExpr); + this.enterRule(localContext, 728, PostgreSqlParser.RULE_columnExpr); try { - this.state = 7409; + this.state = 7417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 7404; + this.state = 7412; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7405; + this.state = 7413; this.expression(); - this.state = 7406; + this.state = 7414; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45490,7 +45523,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7408; + this.state = 7416; this.columnName(); } break; @@ -45512,22 +45545,22 @@ export class PostgreSqlParser extends SQLParserBase { } public columnExprNoParen(): ColumnExprNoParenContext { let localContext = new ColumnExprNoParenContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSqlParser.RULE_columnExprNoParen); + this.enterRule(localContext, 730, PostgreSqlParser.RULE_columnExprNoParen); try { - this.state = 7413; + this.state = 7421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7411; + this.state = 7419; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7412; + this.state = 7420; this.columnName(); } break; @@ -45549,28 +45582,28 @@ export class PostgreSqlParser extends SQLParserBase { } public funcArgList(): FuncArgListContext { let localContext = new FuncArgListContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSqlParser.RULE_funcArgList); + this.enterRule(localContext, 732, PostgreSqlParser.RULE_funcArgList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7415; + this.state = 7423; this.funcArgExpr(); - this.state = 7420; + this.state = 7428; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7416; + this.state = 7424; this.match(PostgreSqlParser.COMMA); - this.state = 7417; + this.state = 7425; this.funcArgExpr(); } } } - this.state = 7422; + this.state = 7430; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } @@ -45592,37 +45625,37 @@ export class PostgreSqlParser extends SQLParserBase { } public funcArgExpr(): FuncArgExprContext { let localContext = new FuncArgExprContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSqlParser.RULE_funcArgExpr); + this.enterRule(localContext, 734, PostgreSqlParser.RULE_funcArgExpr); let _la: number; try { - this.state = 7430; + this.state = 7438; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7423; + this.state = 7431; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7424; + this.state = 7432; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7425; + this.state = 7433; this.typeFunctionName(); - this.state = 7428; + this.state = 7436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7426; + this.state = 7434; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -45631,7 +45664,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7427; + this.state = 7435; this.expression(); } } @@ -45656,14 +45689,14 @@ export class PostgreSqlParser extends SQLParserBase { } public arrayExpr(): ArrayExprContext { let localContext = new ArrayExprContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSqlParser.RULE_arrayExpr); + this.enterRule(localContext, 736, PostgreSqlParser.RULE_arrayExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7432; + this.state = 7440; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7442; + this.state = 7450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -46109,28 +46142,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7433; + this.state = 7441; this.exprList(); } break; case PostgreSqlParser.OPEN_BRACKET: { { - this.state = 7434; + this.state = 7442; this.arrayExpr(); - this.state = 7439; + this.state = 7447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7435; + this.state = 7443; this.match(PostgreSqlParser.COMMA); - this.state = 7436; + this.state = 7444; this.arrayExpr(); } } - this.state = 7441; + this.state = 7449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46142,7 +46175,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 7444; + this.state = 7452; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46162,64 +46195,64 @@ export class PostgreSqlParser extends SQLParserBase { } public extractArg(): ExtractArgContext { let localContext = new ExtractArgContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSqlParser.RULE_extractArg); + this.enterRule(localContext, 738, PostgreSqlParser.RULE_extractArg); try { - this.state = 7454; + this.state = 7462; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7446; + this.state = 7454; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7447; + this.state = 7455; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7448; + this.state = 7456; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7449; + this.state = 7457; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7450; + this.state = 7458; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7451; + this.state = 7459; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7452; + this.state = 7460; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7453; + this.state = 7461; this.stringConst(); } break; @@ -46241,12 +46274,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unicodeNormalForm(): UnicodeNormalFormContext { let localContext = new UnicodeNormalFormContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSqlParser.RULE_unicodeNormalForm); + this.enterRule(localContext, 740, PostgreSqlParser.RULE_unicodeNormalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7456; + this.state = 7464; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46273,29 +46306,29 @@ export class PostgreSqlParser extends SQLParserBase { } public substrList(): SubstrListContext { let localContext = new SubstrListContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSqlParser.RULE_substrList); + this.enterRule(localContext, 742, PostgreSqlParser.RULE_substrList); let _la: number; try { - this.state = 7479; + this.state = 7487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7458; + this.state = 7466; this.expression(); - this.state = 7459; + this.state = 7467; this.match(PostgreSqlParser.KW_FROM); - this.state = 7460; + this.state = 7468; this.expression(); - this.state = 7463; + this.state = 7471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7461; + this.state = 7469; this.match(PostgreSqlParser.KW_FOR); - this.state = 7462; + this.state = 7470; this.expression(); } } @@ -46305,20 +46338,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7465; + this.state = 7473; this.expression(); - this.state = 7466; + this.state = 7474; this.match(PostgreSqlParser.KW_FOR); - this.state = 7467; + this.state = 7475; this.expression(); - this.state = 7470; + this.state = 7478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7468; + this.state = 7476; this.match(PostgreSqlParser.KW_FROM); - this.state = 7469; + this.state = 7477; this.expression(); } } @@ -46328,22 +46361,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7472; + this.state = 7480; this.expression(); - this.state = 7473; + this.state = 7481; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7474; + this.state = 7482; this.expression(); - this.state = 7475; + this.state = 7483; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 7476; + this.state = 7484; this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7478; + this.state = 7486; this.exprList(); } break; @@ -46365,17 +46398,17 @@ export class PostgreSqlParser extends SQLParserBase { } public when_clause(): When_clauseContext { let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSqlParser.RULE_when_clause); + this.enterRule(localContext, 744, PostgreSqlParser.RULE_when_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7481; + this.state = 7489; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7482; + this.state = 7490; this.expression(); - this.state = 7483; + this.state = 7491; this.match(PostgreSqlParser.KW_THEN); - this.state = 7484; + this.state = 7492; this.expression(); } } @@ -46395,18 +46428,18 @@ export class PostgreSqlParser extends SQLParserBase { } public indirectionEl(): IndirectionElContext { let localContext = new IndirectionElContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSqlParser.RULE_indirectionEl); + this.enterRule(localContext, 746, PostgreSqlParser.RULE_indirectionEl); let _la: number; try { - this.state = 7503; + this.state = 7511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7486; + this.state = 7494; this.match(PostgreSqlParser.DOT); - this.state = 7489; + this.state = 7497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -46900,13 +46933,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7487; + this.state = 7495; this.colLabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7488; + this.state = 7496; this.match(PostgreSqlParser.STAR); } break; @@ -46918,37 +46951,37 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7491; + this.state = 7499; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7500; + this.state = 7508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7492; + this.state = 7500; this.expression(); } break; case 2: { - this.state = 7494; + this.state = 7502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7493; + this.state = 7501; this.expression(); } } - this.state = 7496; + this.state = 7504; this.match(PostgreSqlParser.COLON); - this.state = 7498; + this.state = 7506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7497; + this.state = 7505; this.expression(); } } @@ -46956,7 +46989,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 7502; + this.state = 7510; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -46980,12 +47013,12 @@ export class PostgreSqlParser extends SQLParserBase { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSqlParser.RULE_indirection); + this.enterRule(localContext, 748, PostgreSqlParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7506; + this.state = 7514; this.errorHandler.sync(this); alternative = 1; do { @@ -46993,7 +47026,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7505; + this.state = 7513; this.indirectionEl(); } } @@ -47001,7 +47034,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7508; + this.state = 7516; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -47023,24 +47056,24 @@ export class PostgreSqlParser extends SQLParserBase { } public optIndirection(): OptIndirectionContext { let localContext = new OptIndirectionContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSqlParser.RULE_optIndirection); + this.enterRule(localContext, 750, PostgreSqlParser.RULE_optIndirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7513; + this.state = 7521; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7510; + this.state = 7518; this.indirectionEl(); } } } - this.state = 7515; + this.state = 7523; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } @@ -47062,28 +47095,28 @@ export class PostgreSqlParser extends SQLParserBase { } public targetList(): TargetListContext { let localContext = new TargetListContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSqlParser.RULE_targetList); + this.enterRule(localContext, 752, PostgreSqlParser.RULE_targetList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7516; + this.state = 7524; this.targetEl(); - this.state = 7521; + this.state = 7529; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7517; + this.state = 7525; this.match(PostgreSqlParser.COMMA); - this.state = 7518; + this.state = 7526; this.targetEl(); } } } - this.state = 7523; + this.state = 7531; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); } @@ -47105,31 +47138,31 @@ export class PostgreSqlParser extends SQLParserBase { } public targetEl(): TargetElContext { let localContext = new TargetElContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSqlParser.RULE_targetEl); + this.enterRule(localContext, 754, PostgreSqlParser.RULE_targetEl); try { - this.state = 7532; + this.state = 7540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7524; + this.state = 7532; this.columnExprNoParen(); - this.state = 7529; + this.state = 7537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7525; + this.state = 7533; this.match(PostgreSqlParser.KW_AS); - this.state = 7526; + this.state = 7534; this.colLabel(); } break; case 2: { - this.state = 7527; + this.state = 7535; this.identifier(); } break; @@ -47145,7 +47178,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7531; + this.state = 7539; this.match(PostgreSqlParser.STAR); } break; @@ -47167,26 +47200,26 @@ export class PostgreSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 756, PostgreSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7534; + this.state = 7542; this.qualifiedName(); - this.state = 7539; + this.state = 7547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7535; + this.state = 7543; this.match(PostgreSqlParser.COMMA); - this.state = 7536; + this.state = 7544; this.qualifiedName(); } } - this.state = 7541; + this.state = 7549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47208,26 +47241,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tableNameList(): TableNameListContext { let localContext = new TableNameListContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSqlParser.RULE_tableNameList); + this.enterRule(localContext, 758, PostgreSqlParser.RULE_tableNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7542; + this.state = 7550; this.tableName(); - this.state = 7547; + this.state = 7555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7543; + this.state = 7551; this.match(PostgreSqlParser.COMMA); - this.state = 7544; + this.state = 7552; this.tableName(); } } - this.state = 7549; + this.state = 7557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47249,26 +47282,26 @@ export class PostgreSqlParser extends SQLParserBase { } public schemaNameList(): SchemaNameListContext { let localContext = new SchemaNameListContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSqlParser.RULE_schemaNameList); + this.enterRule(localContext, 760, PostgreSqlParser.RULE_schemaNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7550; + this.state = 7558; this.schemaName(); - this.state = 7555; + this.state = 7563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7551; + this.state = 7559; this.match(PostgreSqlParser.COMMA); - this.state = 7552; + this.state = 7560; this.schemaName(); } } - this.state = 7557; + this.state = 7565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47290,26 +47323,26 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseNameList(): DatabaseNameListContext { let localContext = new DatabaseNameListContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSqlParser.RULE_databaseNameList); + this.enterRule(localContext, 762, PostgreSqlParser.RULE_databaseNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7558; + this.state = 7566; this.databaseName(); - this.state = 7563; + this.state = 7571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7559; + this.state = 7567; this.match(PostgreSqlParser.COMMA); - this.state = 7560; + this.state = 7568; this.databaseName(); } } - this.state = 7565; + this.state = 7573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47331,11 +47364,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceNameCreate(): TableSpaceNameCreateContext { let localContext = new TableSpaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSqlParser.RULE_tableSpaceNameCreate); + this.enterRule(localContext, 764, PostgreSqlParser.RULE_tableSpaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7566; + this.state = 7574; this.qualifiedName(); } } @@ -47355,11 +47388,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceName(): TableSpaceNameContext { let localContext = new TableSpaceNameContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSqlParser.RULE_tableSpaceName); + this.enterRule(localContext, 766, PostgreSqlParser.RULE_tableSpaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7568; + this.state = 7576; this.qualifiedName(); } } @@ -47379,11 +47412,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 768, PostgreSqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7570; + this.state = 7578; this.qualifiedName(); } } @@ -47403,11 +47436,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSqlParser.RULE_tableName); + this.enterRule(localContext, 770, PostgreSqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7572; + this.state = 7580; this.qualifiedName(); } } @@ -47427,11 +47460,11 @@ export class PostgreSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 772, PostgreSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7574; + this.state = 7582; this.qualifiedName(); } } @@ -47451,11 +47484,11 @@ export class PostgreSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSqlParser.RULE_viewName); + this.enterRule(localContext, 774, PostgreSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7576; + this.state = 7584; this.anyName(); } } @@ -47475,18 +47508,18 @@ export class PostgreSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 776, PostgreSqlParser.RULE_qualifiedName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7578; + this.state = 7586; this.colId(); - this.state = 7580; + this.state = 7588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7579; + this.state = 7587; this.indirection(); } break; @@ -47509,26 +47542,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceNameList(): TableSpaceNameListContext { let localContext = new TableSpaceNameListContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSqlParser.RULE_tableSpaceNameList); + this.enterRule(localContext, 778, PostgreSqlParser.RULE_tableSpaceNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7582; + this.state = 7590; this.tableSpaceName(); - this.state = 7587; + this.state = 7595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7583; + this.state = 7591; this.match(PostgreSqlParser.COMMA); - this.state = 7584; + this.state = 7592; this.tableSpaceName(); } } - this.state = 7589; + this.state = 7597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47550,26 +47583,26 @@ export class PostgreSqlParser extends SQLParserBase { } public nameList(): NameListContext { let localContext = new NameListContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSqlParser.RULE_nameList); + this.enterRule(localContext, 780, PostgreSqlParser.RULE_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7590; + this.state = 7598; this.colId(); - this.state = 7595; + this.state = 7603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7591; + this.state = 7599; this.match(PostgreSqlParser.COMMA); - this.state = 7592; + this.state = 7600; this.colId(); } } - this.state = 7597; + this.state = 7605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47591,11 +47624,11 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseNameCreate(): DatabaseNameCreateContext { let localContext = new DatabaseNameCreateContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSqlParser.RULE_databaseNameCreate); + this.enterRule(localContext, 782, PostgreSqlParser.RULE_databaseNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7598; + this.state = 7606; this.anyName(); } } @@ -47615,11 +47648,11 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseName(): DatabaseNameContext { let localContext = new DatabaseNameContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSqlParser.RULE_databaseName); + this.enterRule(localContext, 784, PostgreSqlParser.RULE_databaseName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7600; + this.state = 7608; this.anyName(); } } @@ -47639,11 +47672,11 @@ export class PostgreSqlParser extends SQLParserBase { } public schemaName(): SchemaNameContext { let localContext = new SchemaNameContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSqlParser.RULE_schemaName); + this.enterRule(localContext, 786, PostgreSqlParser.RULE_schemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7602; + this.state = 7610; this.anyName(); } } @@ -47663,11 +47696,11 @@ export class PostgreSqlParser extends SQLParserBase { } public routineNameCreate(): RoutineNameCreateContext { let localContext = new RoutineNameCreateContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSqlParser.RULE_routineNameCreate); + this.enterRule(localContext, 788, PostgreSqlParser.RULE_routineNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7604; + this.state = 7612; this.colId(); } } @@ -47687,11 +47720,11 @@ export class PostgreSqlParser extends SQLParserBase { } public routineName(): RoutineNameContext { let localContext = new RoutineNameContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSqlParser.RULE_routineName); + this.enterRule(localContext, 790, PostgreSqlParser.RULE_routineName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7606; + this.state = 7614; this.colId(); } } @@ -47711,24 +47744,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procedureName(): ProcedureNameContext { let localContext = new ProcedureNameContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSqlParser.RULE_procedureName); + this.enterRule(localContext, 792, PostgreSqlParser.RULE_procedureName); try { - this.state = 7612; + this.state = 7620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7608; + this.state = 7616; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7609; + this.state = 7617; this.colId(); - this.state = 7610; + this.state = 7618; this.indirection(); } break; @@ -47750,24 +47783,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procedureNameCreate(): ProcedureNameCreateContext { let localContext = new ProcedureNameCreateContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSqlParser.RULE_procedureNameCreate); + this.enterRule(localContext, 794, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7618; + this.state = 7626; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7614; + this.state = 7622; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7615; + this.state = 7623; this.colId(); - this.state = 7616; + this.state = 7624; this.indirection(); } break; @@ -47789,24 +47822,24 @@ export class PostgreSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSqlParser.RULE_columnName); + this.enterRule(localContext, 796, PostgreSqlParser.RULE_columnName); try { - this.state = 7624; + this.state = 7632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7620; + this.state = 7628; this.colId(); - this.state = 7621; + this.state = 7629; this.optIndirection(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7623; + this.state = 7631; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -47828,13 +47861,39 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 798, PostgreSqlParser.RULE_columnNamePath); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7634; + this.colId(); + this.state = 7635; + this.optIndirection(); + } + } + 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 columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 800, PostgreSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7626; + this.state = 7637; this.colId(); } } @@ -47854,24 +47913,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 802, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7632; + this.state = 7643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7628; + this.state = 7639; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7629; + this.state = 7640; this.colId(); - this.state = 7630; + this.state = 7641; this.indirection(); } break; @@ -47893,24 +47952,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSqlParser.RULE_functionName); + this.enterRule(localContext, 804, PostgreSqlParser.RULE_functionName); try { - this.state = 7638; + this.state = 7649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7645; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7635; + this.state = 7646; this.colId(); - this.state = 7636; + this.state = 7647; this.indirection(); } break; @@ -47932,20 +47991,20 @@ export class PostgreSqlParser extends SQLParserBase { } public stringConst(): StringConstContext { let localContext = new StringConstContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSqlParser.RULE_stringConst); + this.enterRule(localContext, 806, PostgreSqlParser.RULE_stringConst); try { this.enterOuterAlt(localContext, 1); { - this.state = 7640; + this.state = 7651; this.anysconst(); - this.state = 7643; + this.state = 7654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7641; + this.state = 7652; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7642; + this.state = 7653; this.anysconst(); } break; @@ -47968,53 +48027,53 @@ export class PostgreSqlParser extends SQLParserBase { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSqlParser.RULE_anysconst); + this.enterRule(localContext, 808, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7656; + this.state = 7667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7645; + this.state = 7656; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7646; + this.state = 7657; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7647; + this.state = 7658; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7651; + this.state = 7662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 591) { + while (_la === 590) { { { - this.state = 7648; + this.state = 7659; this.match(PostgreSqlParser.DollarText); } } - this.state = 7653; + this.state = 7664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7654; + this.state = 7665; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7655; + this.state = 7666; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48038,17 +48097,17 @@ export class PostgreSqlParser extends SQLParserBase { } public signedConst(): SignedConstContext { let localContext = new SignedConstContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSqlParser.RULE_signedConst); + this.enterRule(localContext, 810, PostgreSqlParser.RULE_signedConst); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7659; + this.state = 7670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7658; + this.state = 7669; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48060,7 +48119,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7661; + this.state = 7672; this.match(PostgreSqlParser.Integral); } } @@ -48080,43 +48139,43 @@ export class PostgreSqlParser extends SQLParserBase { } public roleSpec(): RoleSpecContext { let localContext = new RoleSpecContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSqlParser.RULE_roleSpec); + this.enterRule(localContext, 812, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7668; + this.state = 7679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7663; + this.state = 7674; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7664; + this.state = 7675; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7665; + this.state = 7676; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7666; + this.state = 7677; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7667; + this.state = 7678; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48138,26 +48197,26 @@ export class PostgreSqlParser extends SQLParserBase { } public roleList(): RoleListContext { let localContext = new RoleListContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSqlParser.RULE_roleList); + this.enterRule(localContext, 814, PostgreSqlParser.RULE_roleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7670; + this.state = 7681; this.roleSpec(); - this.state = 7675; + this.state = 7686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7671; + this.state = 7682; this.match(PostgreSqlParser.COMMA); - this.state = 7672; + this.state = 7683; this.roleSpec(); } } - this.state = 7677; + this.state = 7688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48179,22 +48238,22 @@ export class PostgreSqlParser extends SQLParserBase { } public colId(): ColIdContext { let localContext = new ColIdContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSqlParser.RULE_colId); + this.enterRule(localContext, 816, PostgreSqlParser.RULE_colId); try { - this.state = 7680; + this.state = 7691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7678; + this.state = 7689; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7679; + this.state = 7690; this.colNameKeyword(); } break; @@ -48216,22 +48275,22 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFunctionName(): TypeFunctionNameContext { let localContext = new TypeFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSqlParser.RULE_typeFunctionName); + this.enterRule(localContext, 818, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7684; + this.state = 7695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7682; + this.state = 7693; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7683; + this.state = 7694; this.typeFuncNameKeyword(); } break; @@ -48253,29 +48312,29 @@ export class PostgreSqlParser extends SQLParserBase { } public nonReservedWord(): NonReservedWordContext { let localContext = new NonReservedWordContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSqlParser.RULE_nonReservedWord); + this.enterRule(localContext, 820, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7689; + this.state = 7700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7686; + this.state = 7697; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7687; + this.state = 7698; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7688; + this.state = 7699; this.typeFuncNameKeyword(); } break; @@ -48297,36 +48356,36 @@ export class PostgreSqlParser extends SQLParserBase { } public colLabel(): ColLabelContext { let localContext = new ColLabelContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSqlParser.RULE_colLabel); + this.enterRule(localContext, 822, PostgreSqlParser.RULE_colLabel); try { - this.state = 7695; + this.state = 7706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7691; + this.state = 7702; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7692; + this.state = 7703; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7693; + this.state = 7704; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7694; + this.state = 7705; this.reservedKeyword(); } break; @@ -48348,24 +48407,24 @@ export class PostgreSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 824, PostgreSqlParser.RULE_identifier); try { - this.state = 7708; + this.state = 7719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7697; + this.state = 7708; this.match(PostgreSqlParser.Identifier); - this.state = 7700; + this.state = 7711; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7698; + this.state = 7709; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7699; + this.state = 7710; this.anysconst(); } break; @@ -48378,35 +48437,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7702; + this.state = 7713; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7703; + this.state = 7714; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7704; + this.state = 7715; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7705; + this.state = 7716; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7706; + this.state = 7717; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -48746,7 +48805,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7707; + this.state = 7718; this.unreservedKeyword(); } break; @@ -48770,12 +48829,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unreservedKeyword(): UnreservedKeywordContext { let localContext = new UnreservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSqlParser.RULE_unreservedKeyword); + this.enterRule(localContext, 826, PostgreSqlParser.RULE_unreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7710; + this.state = 7721; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -48802,365 +48861,365 @@ export class PostgreSqlParser extends SQLParserBase { } public colNameKeyword(): ColNameKeywordContext { let localContext = new ColNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSqlParser.RULE_colNameKeyword); + this.enterRule(localContext, 828, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7763; + this.state = 7774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7712; + this.state = 7723; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7713; + this.state = 7724; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7714; + this.state = 7725; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7715; + this.state = 7726; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7716; + this.state = 7727; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7717; + this.state = 7728; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7718; + this.state = 7729; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7719; + this.state = 7730; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7720; + this.state = 7731; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7721; + this.state = 7732; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7722; + this.state = 7733; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7723; + this.state = 7734; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7724; + this.state = 7735; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7725; + this.state = 7736; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7726; + this.state = 7737; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7727; + this.state = 7738; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7728; + this.state = 7739; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7729; + this.state = 7740; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7730; + this.state = 7741; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7731; + this.state = 7742; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7732; + this.state = 7743; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7733; + this.state = 7744; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7734; + this.state = 7745; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7735; + this.state = 7746; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7736; + this.state = 7747; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7737; + this.state = 7748; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7738; + this.state = 7749; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7739; + this.state = 7750; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7740; + this.state = 7751; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7741; + this.state = 7752; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7742; + this.state = 7753; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7743; + this.state = 7754; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7744; + this.state = 7755; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7745; + this.state = 7756; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7746; + this.state = 7757; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7747; + this.state = 7758; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7748; + this.state = 7759; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7749; + this.state = 7760; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7750; + this.state = 7761; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7751; + this.state = 7762; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7752; + this.state = 7763; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7753; + this.state = 7764; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7754; + this.state = 7765; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7755; + this.state = 7766; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7756; + this.state = 7767; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7757; + this.state = 7768; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7758; + this.state = 7769; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7759; + this.state = 7770; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7760; + this.state = 7771; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7761; + this.state = 7772; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7762; + this.state = 7773; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49182,12 +49241,12 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFuncNameKeyword(): TypeFuncNameKeywordContext { let localContext = new TypeFuncNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSqlParser.RULE_typeFuncNameKeyword); + this.enterRule(localContext, 830, PostgreSqlParser.RULE_typeFuncNameKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7765; + this.state = 7776; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49214,12 +49273,12 @@ export class PostgreSqlParser extends SQLParserBase { } public reservedKeyword(): ReservedKeywordContext { let localContext = new ReservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSqlParser.RULE_reservedKeyword); + this.enterRule(localContext, 832, PostgreSqlParser.RULE_reservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7767; + this.state = 7778; _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); @@ -49246,60 +49305,60 @@ export class PostgreSqlParser extends SQLParserBase { } public plBlock(): PlBlockContext { let localContext = new PlBlockContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSqlParser.RULE_plBlock); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_plBlock); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 7770; + this.state = 7781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7769; + this.state = 7780; this.labelDecl(); } } - this.state = 7782; + this.state = 7793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7772; + this.state = 7783; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7780; + this.state = 7791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7776; + this.state = 7787; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7776; + this.state = 7787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7773; + this.state = 7784; this.declStatement(); } break; case 2: { - this.state = 7774; + this.state = 7785; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7775; + this.state = 7786; this.labelDecl(); } break; @@ -49309,7 +49368,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7778; + this.state = 7789; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -49320,42 +49379,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7784; + this.state = 7795; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7788; + this.state = 7799; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7785; + this.state = 7796; this.procStmt(); } } } - this.state = 7790; + this.state = 7801; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); } - this.state = 7792; + this.state = 7803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7791; + this.state = 7802; this.exceptionSect(); } } - this.state = 7794; + this.state = 7805; this.match(PostgreSqlParser.KW_END); - this.state = 7796; + this.state = 7807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7795; + this.state = 7806; this.anyIdentifier(); } } @@ -49378,15 +49437,15 @@ export class PostgreSqlParser extends SQLParserBase { } public labelDecl(): LabelDeclContext { let localContext = new LabelDeclContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSqlParser.RULE_labelDecl); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_labelDecl); try { this.enterOuterAlt(localContext, 1); { - this.state = 7798; + this.state = 7809; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7799; + this.state = 7810; this.anyIdentifier(); - this.state = 7800; + this.state = 7811; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49406,28 +49465,28 @@ export class PostgreSqlParser extends SQLParserBase { } public declStatement(): DeclStatementContext { let localContext = new DeclStatementContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_declStatement); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_declStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7802; + this.state = 7813; this.anyIdentifier(); - this.state = 7849; + this.state = 7860; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { case 1: { - this.state = 7803; + this.state = 7814; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7804; + this.state = 7815; this.match(PostgreSqlParser.KW_FOR); - this.state = 7807; + this.state = 7818; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7805; + this.state = 7816; this.match(PostgreSqlParser.PARAM); } break; @@ -49826,7 +49885,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7806; + this.state = 7817; this.colId(); } break; @@ -49837,65 +49896,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7810; + this.state = 7821; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: { - this.state = 7809; + this.state = 7820; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7812; + this.state = 7823; this.typename(); - this.state = 7814; + this.state = 7825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7813; + this.state = 7824; this.collateClause(); } } - this.state = 7818; + this.state = 7829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7816; + this.state = 7827; this.match(PostgreSqlParser.KW_NOT); - this.state = 7817; + this.state = 7828; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7825; + this.state = 7836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7822; + this.state = 7833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7820; + this.state = 7831; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7821; + this.state = 7832; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7824; + this.state = 7835; this.sqlExpression(); } } @@ -49904,59 +49963,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7831; + this.state = 7842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7828; + this.state = 7839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7827; + this.state = 7838; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7830; + this.state = 7841; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7833; + this.state = 7844; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7845; + this.state = 7856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7834; + this.state = 7845; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7835; + this.state = 7846; this.declCursorArg(); - this.state = 7840; + this.state = 7851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7836; + this.state = 7847; this.match(PostgreSqlParser.COMMA); - this.state = 7837; + this.state = 7848; this.declCursorArg(); } } - this.state = 7842; + this.state = 7853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7843; + this.state = 7854; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7847; + this.state = 7858; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -49965,12 +50024,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7848; + this.state = 7859; this.selectStmt(); } break; } - this.state = 7851; + this.state = 7862; this.match(PostgreSqlParser.SEMI); } } @@ -49990,13 +50049,13 @@ export class PostgreSqlParser extends SQLParserBase { } public declCursorArg(): DeclCursorArgContext { let localContext = new DeclCursorArgContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_declCursorArg); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_declCursorArg); try { this.enterOuterAlt(localContext, 1); { - this.state = 7853; + this.state = 7864; this.anyIdentifier(); - this.state = 7854; + this.state = 7865; this.typename(); } } @@ -50016,12 +50075,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignOperator(): AssignOperatorContext { let localContext = new AssignOperatorContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_assignOperator); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_assignOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7856; + this.state = 7867; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50048,164 +50107,164 @@ export class PostgreSqlParser extends SQLParserBase { } public procStmt(): ProcStmtContext { let localContext = new ProcStmtContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_procStmt); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_procStmt); try { - this.state = 7882; + this.state = 7893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7858; + this.state = 7869; this.plBlock(); - this.state = 7859; + this.state = 7870; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7861; + this.state = 7872; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7862; + this.state = 7873; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7863; + this.state = 7874; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7864; + this.state = 7875; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7865; + this.state = 7876; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7866; + this.state = 7877; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7867; + this.state = 7878; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7868; + this.state = 7879; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7869; + this.state = 7880; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7870; + this.state = 7881; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7871; + this.state = 7882; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7872; + this.state = 7883; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7873; + this.state = 7884; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7874; + this.state = 7885; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7875; + this.state = 7886; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7876; + this.state = 7887; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7877; + this.state = 7888; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7878; + this.state = 7889; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7879; + this.state = 7890; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7880; + this.state = 7891; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7881; + this.state = 7892; this.stmtSet(); } break; @@ -50227,15 +50286,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtPerform(): StmtPerformContext { let localContext = new StmtPerformContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_stmtPerform); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_stmtPerform); try { this.enterOuterAlt(localContext, 1); { - this.state = 7884; + this.state = 7895; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7885; + this.state = 7896; this.sqlExpression(); - this.state = 7886; + this.state = 7897; this.match(PostgreSqlParser.SEMI); } } @@ -50255,39 +50314,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCall(): StmtCallContext { let localContext = new StmtCallContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_stmtCall); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_stmtCall); let _la: number; try { - this.state = 7907; + this.state = 7918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7888; + this.state = 7899; this.match(PostgreSqlParser.KW_CALL); - this.state = 7889; + this.state = 7900; this.anyIdentifier(); - this.state = 7896; + this.state = 7907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7890; + this.state = 7901; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7892; + this.state = 7903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7891; + this.state = 7902; this.exprList(); } } - this.state = 7894; + this.state = 7905; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7895; + this.state = 7906; this.match(PostgreSqlParser.SEMI); } break; @@ -50297,25 +50356,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7898; + this.state = 7909; this.match(PostgreSqlParser.KW_DO); - this.state = 7899; + this.state = 7910; this.anyIdentifier(); - this.state = 7900; + this.state = 7911; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7902; + this.state = 7913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 587) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7901; + this.state = 7912; this.exprList(); } } - this.state = 7904; + this.state = 7915; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7905; + this.state = 7916; this.match(PostgreSqlParser.SEMI); } break; @@ -50339,17 +50398,17 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssign(): StmtAssignContext { let localContext = new StmtAssignContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_stmtAssign); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_stmtAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 7909; + this.state = 7920; this.assignVar(); - this.state = 7910; + this.state = 7921; this.assignOperator(); - this.state = 7911; + this.state = 7922; this.sqlExpression(); - this.state = 7912; + this.state = 7923; this.match(PostgreSqlParser.SEMI); } } @@ -50369,19 +50428,19 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtGetdiag(): StmtGetdiagContext { let localContext = new StmtGetdiagContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_stmtGetdiag); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_stmtGetdiag); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7914; + this.state = 7925; this.match(PostgreSqlParser.KW_GET); - this.state = 7916; + this.state = 7927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7915; + this.state = 7926; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50393,29 +50452,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7918; + this.state = 7929; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7919; + this.state = 7930; this.getdiagListItem(); - this.state = 7924; + this.state = 7935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7920; + this.state = 7931; this.match(PostgreSqlParser.COMMA); - this.state = 7921; + this.state = 7932; this.getdiagListItem(); } } - this.state = 7926; + this.state = 7937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7927; + this.state = 7938; this.match(PostgreSqlParser.SEMI); } } @@ -50435,15 +50494,15 @@ export class PostgreSqlParser extends SQLParserBase { } public getdiagListItem(): GetdiagListItemContext { let localContext = new GetdiagListItemContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_getdiagListItem); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_getdiagListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 7929; + this.state = 7940; this.assignVar(); - this.state = 7930; + this.state = 7941; this.assignOperator(); - this.state = 7931; + this.state = 7942; this.colId(); } } @@ -50463,12 +50522,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignVar(): AssignVarContext { let localContext = new AssignVarContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_assignVar); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_assignVar); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7935; + this.state = 7946; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -50866,34 +50925,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7933; + this.state = 7944; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7934; + this.state = 7945; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7943; + this.state = 7954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7937; + this.state = 7948; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7938; + this.state = 7949; this.expression(); - this.state = 7939; + this.state = 7950; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7945; + this.state = 7956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50915,85 +50974,85 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtIf(): StmtIfContext { let localContext = new StmtIfContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_stmtIf); + this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtIf); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7946; + this.state = 7957; this.match(PostgreSqlParser.KW_IF); - this.state = 7947; + this.state = 7958; this.sqlExpression(); - this.state = 7948; + this.state = 7959; this.match(PostgreSqlParser.KW_THEN); - this.state = 7952; + this.state = 7963; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7949; + this.state = 7960; this.procStmt(); } } } - this.state = 7954; + this.state = 7965; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); } { - this.state = 7966; + this.state = 7977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7955; + this.state = 7966; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 7956; + this.state = 7967; this.expression(); - this.state = 7957; + this.state = 7968; this.match(PostgreSqlParser.KW_THEN); - this.state = 7961; + this.state = 7972; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7958; + this.state = 7969; this.procStmt(); } } } - this.state = 7963; + this.state = 7974; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); } } } - this.state = 7968; + this.state = 7979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7970; + this.state = 7981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 7969; + this.state = 7980; this.stmtElse(); } } - this.state = 7972; + this.state = 7983; this.match(PostgreSqlParser.KW_END); - this.state = 7973; + this.state = 7984; this.match(PostgreSqlParser.KW_IF); - this.state = 7974; + this.state = 7985; this.match(PostgreSqlParser.SEMI); } } @@ -51013,26 +51072,26 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtElse(): StmtElseContext { let localContext = new StmtElseContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmtElse); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtElse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7976; + this.state = 7987; this.match(PostgreSqlParser.KW_ELSE); - this.state = 7980; + this.state = 7991; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7977; + this.state = 7988; this.procStmt(); } } } - this.state = 7982; + this.state = 7993; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } @@ -51054,73 +51113,73 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCase(): StmtCaseContext { let localContext = new StmtCaseContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtCase); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmtCase); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7983; + this.state = 7994; this.match(PostgreSqlParser.KW_CASE); - this.state = 7985; + this.state = 7996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 7984; + this.state = 7995; this.sqlExpression(); } break; } - this.state = 7996; + this.state = 8007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7987; + this.state = 7998; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7988; + this.state = 7999; this.exprList(); - this.state = 7989; + this.state = 8000; this.match(PostgreSqlParser.KW_THEN); - this.state = 7993; + this.state = 8004; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7990; + this.state = 8001; this.procStmt(); } } } - this.state = 7995; + this.state = 8006; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } } } - this.state = 7998; + this.state = 8009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8001; + this.state = 8012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8000; + this.state = 8011; this.stmtElse(); } } - this.state = 8003; + this.state = 8014; this.match(PostgreSqlParser.KW_END); - this.state = 8004; + this.state = 8015; this.match(PostgreSqlParser.KW_CASE); - this.state = 8005; + this.state = 8016; this.match(PostgreSqlParser.SEMI); } } @@ -51140,30 +51199,30 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtLoopWhileFor(): StmtLoopWhileForContext { let localContext = new StmtLoopWhileForContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtLoopWhileFor); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmtLoopWhileFor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8008; + this.state = 8019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8007; + this.state = 8018; this.labelDecl(); } } - this.state = 8014; + this.state = 8025; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8010; + this.state = 8021; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8011; + this.state = 8022; this.expression(); } } @@ -51171,9 +51230,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8012; + this.state = 8023; this.match(PostgreSqlParser.KW_FOR); - this.state = 8013; + this.state = 8024; this.forControl(); } } @@ -51183,7 +51242,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8016; + this.state = 8027; this.loopBody(); } } @@ -51203,28 +51262,28 @@ export class PostgreSqlParser extends SQLParserBase { } public forControl(): ForControlContext { let localContext = new ForControlContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_forControl); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_forControl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8018; + this.state = 8029; this.anyNameList(); - this.state = 8019; + this.state = 8030; this.match(PostgreSqlParser.KW_IN); - this.state = 8042; + this.state = 8053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 8020; + this.state = 8031; this.colId(); - this.state = 8022; + this.state = 8033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8021; + this.state = 8032; this.executeParamClause(); } } @@ -51233,30 +51292,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8024; + this.state = 8035; this.selectStmt(); } break; case 3: { - this.state = 8025; + this.state = 8036; this.explainStmt(); } break; case 4: { - this.state = 8026; + this.state = 8037; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8027; + this.state = 8038; this.expression(); - this.state = 8030; + this.state = 8041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8028; + this.state = 8039; this.match(PostgreSqlParser.KW_USING); - this.state = 8029; + this.state = 8040; this.exprList(); } } @@ -51265,30 +51324,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8033; + this.state = 8044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 8032; + this.state = 8043; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8035; + this.state = 8046; this.expression(); - this.state = 8036; + this.state = 8047; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8037; + this.state = 8048; this.expression(); - this.state = 8040; + this.state = 8051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8038; + this.state = 8049; this.match(PostgreSqlParser.KW_BY); - this.state = 8039; + this.state = 8050; this.expression(); } } @@ -51314,44 +51373,44 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtForeach(): StmtForeachContext { let localContext = new StmtForeachContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmtForeach); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtForeach); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8045; + this.state = 8056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8044; + this.state = 8055; this.labelDecl(); } } - this.state = 8047; + this.state = 8058; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8048; + this.state = 8059; this.anyNameList(); - this.state = 8051; + this.state = 8062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8049; + this.state = 8060; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8050; + this.state = 8061; this.match(PostgreSqlParser.Integral); } } - this.state = 8053; + this.state = 8064; this.match(PostgreSqlParser.KW_IN); - this.state = 8054; + this.state = 8065; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8055; + this.state = 8066; this.expression(); - this.state = 8056; + this.state = 8067; this.loopBody(); } } @@ -51371,12 +51430,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExit(): StmtExitContext { let localContext = new StmtExitContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_stmtExit); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtExit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8058; + this.state = 8069; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51385,29 +51444,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8060; + this.state = 8071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8059; + this.state = 8070; this.anyIdentifier(); } } - this.state = 8064; + this.state = 8075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8062; + this.state = 8073; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8063; + this.state = 8074; this.sqlExpression(); } } - this.state = 8066; + this.state = 8077; this.match(PostgreSqlParser.SEMI); } } @@ -51427,39 +51486,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtReturn(): StmtReturnContext { let localContext = new StmtReturnContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtReturn); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 8068; + this.state = 8079; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8083; + this.state = 8094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 8069; + this.state = 8080; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8070; + this.state = 8081; this.sqlExpression(); } break; case 2: { - this.state = 8071; + this.state = 8082; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8078; + this.state = 8089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8072; + this.state = 8083; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8073; + this.state = 8084; this.expression(); - this.state = 8074; + this.state = 8085; this.match(PostgreSqlParser.KW_USING); - this.state = 8075; + this.state = 8086; this.exprList(); } break; @@ -51469,7 +51528,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8077; + this.state = 8088; this.selectStmt(); } break; @@ -51480,12 +51539,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8081; + this.state = 8092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 8080; + this.state = 8091; this.sqlExpression(); } break; @@ -51493,7 +51552,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8085; + this.state = 8096; this.match(PostgreSqlParser.SEMI); } } @@ -51513,24 +51572,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtRaise(): StmtRaiseContext { let localContext = new StmtRaiseContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtRaise); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtRaise); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8087; + this.state = 8098; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8117; + this.state = 8128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8089; + this.state = 8100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 8088; + this.state = 8099; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -51542,21 +51601,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8103; + this.state = 8114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8091; + this.state = 8102; this.identifier(); } break; case 2: { { - this.state = 8092; + this.state = 8103; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8093; + this.state = 8104; this.stringConst(); } } @@ -51564,26 +51623,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8094; + this.state = 8105; this.stringConst(); - this.state = 8101; + this.state = 8112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8097; + this.state = 8108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8095; + this.state = 8106; this.match(PostgreSqlParser.COMMA); - this.state = 8096; + this.state = 8107; this.expression(); } } - this.state = 8099; + this.state = 8110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -51594,29 +51653,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8114; + this.state = 8125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8105; + this.state = 8116; this.match(PostgreSqlParser.KW_USING); { - this.state = 8106; + this.state = 8117; this.optRaiseUsingElem(); - this.state = 8111; + this.state = 8122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8107; + this.state = 8118; this.match(PostgreSqlParser.COMMA); - this.state = 8108; + this.state = 8119; this.optRaiseUsingElem(); } } - this.state = 8113; + this.state = 8124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51624,7 +51683,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8116; + this.state = 8127; this.match(PostgreSqlParser.SEMI); } break; @@ -51647,15 +51706,15 @@ export class PostgreSqlParser extends SQLParserBase { } public optRaiseUsingElem(): OptRaiseUsingElemContext { let localContext = new OptRaiseUsingElemContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_optRaiseUsingElem); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_optRaiseUsingElem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8119; + this.state = 8130; this.identifier(); - this.state = 8120; + this.state = 8131; this.match(PostgreSqlParser.EQUAL); - this.state = 8121; + this.state = 8132; this.expression(); } } @@ -51675,28 +51734,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssert(): StmtAssertContext { let localContext = new StmtAssertContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtAssert); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtAssert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8123; + this.state = 8134; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8124; + this.state = 8135; this.sqlExpression(); - this.state = 8127; + this.state = 8138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8125; + this.state = 8136; this.match(PostgreSqlParser.COMMA); - this.state = 8126; + this.state = 8137; this.sqlExpression(); } } - this.state = 8129; + this.state = 8140; this.match(PostgreSqlParser.SEMI); } } @@ -51716,45 +51775,45 @@ export class PostgreSqlParser extends SQLParserBase { } public loopBody(): LoopBodyContext { let localContext = new LoopBodyContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_loopBody); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_loopBody); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8131; + this.state = 8142; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8135; + this.state = 8146; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8132; + this.state = 8143; this.procStmt(); } } } - this.state = 8137; + this.state = 8148; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); } - this.state = 8138; + this.state = 8149; this.match(PostgreSqlParser.KW_END); - this.state = 8139; + this.state = 8150; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8141; + this.state = 8152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8140; + this.state = 8151; this.anyIdentifier(); } } - this.state = 8143; + this.state = 8154; this.match(PostgreSqlParser.SEMI); } } @@ -51774,24 +51833,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExecsql(): StmtExecsqlContext { let localContext = new StmtExecsqlContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtExecsql); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtExecsql); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8145; + this.state = 8156; this.stmt(); - this.state = 8147; + this.state = 8158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8146; + this.state = 8157; this.optExecuteInto(); } } - this.state = 8149; + this.state = 8160; this.match(PostgreSqlParser.SEMI); } } @@ -51811,38 +51870,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtDynexecute(): StmtDynexecuteContext { let localContext = new StmtDynexecuteContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtDynexecute); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtDynexecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8151; + this.state = 8162; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8152; + this.state = 8163; this.expression(); - this.state = 8168; + this.state = 8179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 8154; + this.state = 8165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8153; + this.state = 8164; this.optExecuteInto(); } } - this.state = 8158; + this.state = 8169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8156; + this.state = 8167; this.match(PostgreSqlParser.KW_USING); - this.state = 8157; + this.state = 8168; this.exprList(); } } @@ -51851,24 +51910,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8162; + this.state = 8173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8160; + this.state = 8171; this.match(PostgreSqlParser.KW_USING); - this.state = 8161; + this.state = 8172; this.exprList(); } } - this.state = 8165; + this.state = 8176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8164; + this.state = 8175; this.optExecuteInto(); } } @@ -51881,7 +51940,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8170; + this.state = 8181; this.match(PostgreSqlParser.SEMI); } } @@ -51901,23 +51960,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optExecuteInto(): OptExecuteIntoContext { let localContext = new OptExecuteIntoContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_optExecuteInto); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_optExecuteInto); try { this.enterOuterAlt(localContext, 1); { - this.state = 8172; + this.state = 8183; this.match(PostgreSqlParser.KW_INTO); - this.state = 8174; + this.state = 8185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 8173; + this.state = 8184; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8176; + this.state = 8187; this.exprList(); } } @@ -51937,43 +51996,43 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtOpen(): StmtOpenContext { let localContext = new StmtOpenContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtOpen); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmtOpen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8178; + this.state = 8189; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8210; + this.state = 8221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 8179; + this.state = 8190; this.cursorVariable(); - this.state = 8184; + this.state = 8195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8181; + this.state = 8192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8180; + this.state = 8191; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8183; + this.state = 8194; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8186; + this.state = 8197; this.match(PostgreSqlParser.KW_FOR); - this.state = 8194; + this.state = 8205; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -51982,24 +52041,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8187; + this.state = 8198; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8188; + this.state = 8199; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8189; + this.state = 8200; this.sqlExpression(); - this.state = 8192; + this.state = 8203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8190; + this.state = 8201; this.match(PostgreSqlParser.KW_USING); - this.state = 8191; + this.state = 8202; this.exprList(); } } @@ -52013,36 +52072,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8196; + this.state = 8207; this.colId(); - this.state = 8208; + this.state = 8219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8197; + this.state = 8208; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8198; + this.state = 8209; this.optOpenBoundListItem(); - this.state = 8203; + this.state = 8214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8199; + this.state = 8210; this.match(PostgreSqlParser.COMMA); - this.state = 8200; + this.state = 8211; this.optOpenBoundListItem(); } } - this.state = 8205; + this.state = 8216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8206; + this.state = 8217; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52050,7 +52109,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8212; + this.state = 8223; this.match(PostgreSqlParser.SEMI); } } @@ -52070,23 +52129,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optOpenBoundListItem(): OptOpenBoundListItemContext { let localContext = new OptOpenBoundListItemContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_optOpenBoundListItem); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_optOpenBoundListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8217; + this.state = 8228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { - this.state = 8214; + this.state = 8225; this.colId(); - this.state = 8215; + this.state = 8226; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8219; + this.state = 8230; this.expression(); } } @@ -52106,40 +52165,40 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtFetch(): StmtFetchContext { let localContext = new StmtFetchContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmtFetch); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtFetch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8221; + this.state = 8232; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8223; + this.state = 8234; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 8222; + this.state = 8233; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8226; + this.state = 8237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8225; + this.state = 8236; this.fromIn(); } } - this.state = 8228; + this.state = 8239; this.cursorVariable(); - this.state = 8229; + this.state = 8240; this.match(PostgreSqlParser.KW_INTO); - this.state = 8230; + this.state = 8241; this.exprList(); - this.state = 8231; + this.state = 8242; this.match(PostgreSqlParser.SEMI); } } @@ -52159,49 +52218,49 @@ export class PostgreSqlParser extends SQLParserBase { } public optFetchFirection(): OptFetchFirectionContext { let localContext = new OptFetchFirectionContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_optFetchFirection); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8247; + this.state = 8258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8233; + this.state = 8244; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8234; + this.state = 8245; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8235; + this.state = 8246; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8236; + this.state = 8247; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8238; + this.state = 8249; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8237; + this.state = 8248; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52213,21 +52272,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8240; + this.state = 8251; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8241; + this.state = 8252; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8242; + this.state = 8253; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52236,18 +52295,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8245; + this.state = 8256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8243; + this.state = 8254; this.expression(); } break; case 2: { - this.state = 8244; + this.state = 8255; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52272,25 +52331,25 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtMove(): StmtMoveContext { let localContext = new StmtMoveContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtMove); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_stmtMove); try { this.enterOuterAlt(localContext, 1); { - this.state = 8249; + this.state = 8260; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8251; + this.state = 8262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8250; + this.state = 8261; this.optFetchFirection(); } break; } - this.state = 8253; + this.state = 8264; this.cursorVariable(); - this.state = 8254; + this.state = 8265; this.match(PostgreSqlParser.SEMI); } } @@ -52310,95 +52369,95 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeStmt(): MergeStmtContext { let localContext = new MergeStmtContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_mergeStmt); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_mergeStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8257; + this.state = 8268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8256; + this.state = 8267; this.withClause(); } } - this.state = 8259; + this.state = 8270; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8260; + this.state = 8271; this.match(PostgreSqlParser.KW_INTO); - this.state = 8262; + this.state = 8273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8261; + this.state = 8272; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8264; + this.state = 8275; this.tableName(); - this.state = 8266; + this.state = 8277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8265; + this.state = 8276; this.match(PostgreSqlParser.STAR); } } - this.state = 8272; + this.state = 8283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8269; + this.state = 8280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8268; + this.state = 8279; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8271; + this.state = 8282; this.colId(); } } - this.state = 8274; + this.state = 8285; this.match(PostgreSqlParser.KW_USING); - this.state = 8275; + this.state = 8286; this.dataSource(); - this.state = 8276; + this.state = 8287; this.match(PostgreSqlParser.KW_ON); - this.state = 8277; + this.state = 8288; this.expression(); - this.state = 8279; + this.state = 8290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8278; + this.state = 8289; this.mergeWhenClause(); } } - this.state = 8281; + this.state = 8292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8284; + this.state = 8295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8283; + this.state = 8294; this.returningClause(); } } @@ -52421,34 +52480,34 @@ export class PostgreSqlParser extends SQLParserBase { } public dataSource(): DataSourceContext { let localContext = new DataSourceContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_dataSource); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_dataSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8297; + this.state = 8308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: { - this.state = 8287; + this.state = 8298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8286; + this.state = 8297; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8289; + this.state = 8300; this.tableName(); - this.state = 8291; + this.state = 8302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8290; + this.state = 8301; this.match(PostgreSqlParser.STAR); } } @@ -52457,18 +52516,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8295; + this.state = 8306; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { case 1: { - this.state = 8293; + this.state = 8304; this.selectNoParens(); } break; case 2: { - this.state = 8294; + this.state = 8305; this.valuesClause(); } break; @@ -52476,22 +52535,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8303; + this.state = 8314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 587) { + if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8300; + this.state = 8311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8299; + this.state = 8310; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8302; + this.state = 8313; this.colId(); } } @@ -52514,53 +52573,53 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeWhenClause(): MergeWhenClauseContext { let localContext = new MergeWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_mergeWhenClause); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8331; + this.state = 8342; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8305; + this.state = 8316; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8306; + this.state = 8317; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8309; + this.state = 8320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8307; + this.state = 8318; this.match(PostgreSqlParser.KW_AND); - this.state = 8308; + this.state = 8319; this.expression(); } } - this.state = 8311; + this.state = 8322; this.match(PostgreSqlParser.KW_THEN); - this.state = 8316; + this.state = 8327; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8312; + this.state = 8323; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8313; + this.state = 8324; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8314; + this.state = 8325; this.match(PostgreSqlParser.KW_DO); - this.state = 8315; + this.state = 8326; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52572,40 +52631,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8318; + this.state = 8329; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8319; + this.state = 8330; this.match(PostgreSqlParser.KW_NOT); - this.state = 8320; + this.state = 8331; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8323; + this.state = 8334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8321; + this.state = 8332; this.match(PostgreSqlParser.KW_AND); - this.state = 8322; + this.state = 8333; this.expression(); } } - this.state = 8325; + this.state = 8336; this.match(PostgreSqlParser.KW_THEN); - this.state = 8329; + this.state = 8340; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8326; + this.state = 8337; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8327; + this.state = 8338; this.match(PostgreSqlParser.KW_DO); - this.state = 8328; + this.state = 8339; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52632,31 +52691,31 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeInsert(): MergeInsertContext { let localContext = new MergeInsertContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_mergeInsert); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_mergeInsert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8333; + this.state = 8344; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8335; + this.state = 8346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8334; + this.state = 8345; this.optColumnList(); } } - this.state = 8340; + this.state = 8351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8337; + this.state = 8348; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8338; + this.state = 8349; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -52665,12 +52724,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8339; + this.state = 8350; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8342; + this.state = 8353; this.defaultValuesOrValues(); } } @@ -52690,63 +52749,63 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeUpdate(): MergeUpdateContext { let localContext = new MergeUpdateContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_mergeUpdate); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_mergeUpdate); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8344; + this.state = 8355; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8345; + this.state = 8356; this.match(PostgreSqlParser.KW_SET); - this.state = 8363; + this.state = 8374; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8363; + this.state = 8374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: { - this.state = 8346; + this.state = 8357; this.columnName(); - this.state = 8347; + this.state = 8358; this.match(PostgreSqlParser.EQUAL); - this.state = 8348; + this.state = 8359; this.exprofdefault(); } break; case 2: { - this.state = 8350; + this.state = 8361; this.optColumnList(); - this.state = 8351; + this.state = 8362; this.match(PostgreSqlParser.EQUAL); - this.state = 8352; + this.state = 8363; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8353; + this.state = 8364; this.exprofdefault(); - this.state = 8358; + this.state = 8369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8354; + this.state = 8365; this.match(PostgreSqlParser.COMMA); - this.state = 8355; + this.state = 8366; this.exprofdefault(); } } - this.state = 8360; + this.state = 8371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8361; + this.state = 8372; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -52756,7 +52815,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8365; + this.state = 8376; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -52778,47 +52837,47 @@ export class PostgreSqlParser extends SQLParserBase { } public defaultValuesOrValues(): DefaultValuesOrValuesContext { let localContext = new DefaultValuesOrValuesContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_defaultValuesOrValues); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8381; + this.state = 8392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8367; + this.state = 8378; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8368; + this.state = 8379; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8369; + this.state = 8380; this.exprofdefault(); - this.state = 8374; + this.state = 8385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8370; + this.state = 8381; this.match(PostgreSqlParser.COMMA); - this.state = 8371; + this.state = 8382; this.exprofdefault(); } } - this.state = 8376; + this.state = 8387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8377; + this.state = 8388; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8379; + this.state = 8390; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8380; + this.state = 8391; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -52842,22 +52901,22 @@ export class PostgreSqlParser extends SQLParserBase { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_exprofdefault); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8385; + this.state = 8396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8383; + this.state = 8394; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8384; + this.state = 8395; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -52879,15 +52938,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtClose(): StmtCloseContext { let localContext = new StmtCloseContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_stmtClose); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_stmtClose); try { this.enterOuterAlt(localContext, 1); { - this.state = 8387; + this.state = 8398; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8388; + this.state = 8399; this.cursorVariable(); - this.state = 8389; + this.state = 8400; this.match(PostgreSqlParser.SEMI); } } @@ -52907,13 +52966,13 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtNull(): StmtNullContext { let localContext = new StmtNullContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_stmtNull); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_stmtNull); try { this.enterOuterAlt(localContext, 1); { - this.state = 8391; + this.state = 8402; this.match(PostgreSqlParser.KW_NULL); - this.state = 8392; + this.state = 8403; this.match(PostgreSqlParser.SEMI); } } @@ -52933,12 +52992,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCommitOrRollback(): StmtCommitOrRollbackContext { let localContext = new StmtCommitOrRollbackContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_stmtCommitOrRollback); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_stmtCommitOrRollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8394; + this.state = 8405; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -52947,29 +53006,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8400; + this.state = 8411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8395; + this.state = 8406; this.match(PostgreSqlParser.KW_AND); - this.state = 8397; + this.state = 8408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8396; + this.state = 8407; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8399; + this.state = 8410; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8402; + this.state = 8413; this.match(PostgreSqlParser.SEMI); } } @@ -52989,32 +53048,32 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtSet(): StmtSetContext { let localContext = new StmtSetContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_stmtSet); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8416; + this.state = 8427; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8404; + this.state = 8415; this.match(PostgreSqlParser.KW_SET); - this.state = 8405; + this.state = 8416; this.anyName(); - this.state = 8406; + this.state = 8417; this.match(PostgreSqlParser.KW_TO); - this.state = 8407; + this.state = 8418; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8408; + this.state = 8419; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8410; + this.state = 8421; this.match(PostgreSqlParser.KW_RESET); - this.state = 8413; + this.state = 8424; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53412,20 +53471,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8411; + this.state = 8422; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8412; + this.state = 8423; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8415; + this.state = 8426; this.match(PostgreSqlParser.SEMI); } break; @@ -53449,9 +53508,9 @@ export class PostgreSqlParser extends SQLParserBase { } public cursorVariable(): CursorVariableContext { let localContext = new CursorVariableContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_cursorVariable); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8420; + this.state = 8431; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53850,14 +53909,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8418; + this.state = 8429; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8419; + this.state = 8430; this.match(PostgreSqlParser.PARAM); } break; @@ -53881,63 +53940,63 @@ export class PostgreSqlParser extends SQLParserBase { } public exceptionSect(): ExceptionSectContext { let localContext = new ExceptionSectContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_exceptionSect); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_exceptionSect); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8422; + this.state = 8433; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8439; + this.state = 8450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8423; + this.state = 8434; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8424; + this.state = 8435; this.procCondition(); - this.state = 8429; + this.state = 8440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8425; + this.state = 8436; this.match(PostgreSqlParser.KW_OR); - this.state = 8426; + this.state = 8437; this.procCondition(); } } - this.state = 8431; + this.state = 8442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8432; + this.state = 8443; this.match(PostgreSqlParser.KW_THEN); - this.state = 8436; + this.state = 8447; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8433; + this.state = 8444; this.procStmt(); } } } - this.state = 8438; + this.state = 8449; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); } } } - this.state = 8441; + this.state = 8452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -53959,24 +54018,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procCondition(): ProcConditionContext { let localContext = new ProcConditionContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_procCondition); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_procCondition); try { - this.state = 8446; + this.state = 8457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8443; + this.state = 8454; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8444; + this.state = 8455; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8445; + this.state = 8456; this.stringConst(); } break; @@ -53998,22 +54057,22 @@ export class PostgreSqlParser extends SQLParserBase { } public anyIdentifier(): AnyIdentifierContext { let localContext = new AnyIdentifierContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_anyIdentifier); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8450; + this.state = 8461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8448; + this.state = 8459; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8449; + this.state = 8460; this.unreservedKeyword(); } break; @@ -54035,79 +54094,77 @@ export class PostgreSqlParser extends SQLParserBase { } public sqlExpression(): SqlExpressionContext { let localContext = new SqlExpressionContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_sqlExpression); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_sqlExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8453; + this.state = 8464; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { case 1: { - this.state = 8452; + this.state = 8463; this.targetList(); } break; } - this.state = 8456; + this.state = 8467; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { case 1: { - this.state = 8455; + this.state = 8466; this.intoClause(); } break; } - this.state = 8459; + this.state = 8470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8458; + this.state = 8469; this.fromClause(); } } - this.state = 8462; + this.state = 8473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8461; + this.state = 8472; this.whereClause(); } } - this.state = 8465; + this.state = 8476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8464; + this.state = 8475; this.groupClause(); } } - this.state = 8469; + this.state = 8479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8467; - this.match(PostgreSqlParser.KW_HAVING); - this.state = 8468; - this.expression(); + this.state = 8478; + this.havingClause(); } } - this.state = 8472; + this.state = 8482; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1189, this.context) ) { case 1: { - this.state = 8471; + this.state = 8481; this.windowClause(); } break; @@ -54137,7 +54194,7 @@ export class PostgreSqlParser extends SQLParserBase { return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 338: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 397: + case 398: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); } return true; @@ -54186,7 +54243,7 @@ export class PostgreSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,593,8475,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,592,8485,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, @@ -54267,780 +54324,781 @@ export class PostgreSqlParser extends SQLParserBase { 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,1,0,5,0,928,8,0,10,0,12,0,931,9,0,1,0,1,0,1,1, - 1,1,3,1,937,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,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,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,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,1,2,1,2,1,2,3,2,1057,8,2,3,2,1059,8, - 2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1068,8,4,1,4,5,4,1071,8,4,10,4, - 12,4,1074,9,4,1,5,1,5,1,5,3,5,1079,8,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,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,1114,8,5,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,3,6,1124,8,6,1,7,1,7,1,7,1,7,3,7,1130,8,7, - 1,7,5,7,1133,8,7,10,7,12,7,1136,9,7,1,8,1,8,1,8,1,8,3,8,1142,8,8, - 1,8,5,8,1145,8,8,10,8,12,8,1148,9,8,1,9,1,9,1,9,1,9,3,9,1154,8,9, - 1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1165,8,10,1,10,1,10, - 1,11,1,11,5,11,1171,8,11,10,11,12,11,1174,9,11,1,11,3,11,1177,8, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1189,8, - 11,1,11,1,11,1,11,1,11,3,11,1195,8,11,1,12,1,12,1,12,1,12,3,12,1201, - 8,12,1,12,1,12,3,12,1205,8,12,1,12,1,12,1,12,3,12,1210,8,12,1,12, - 1,12,3,12,1214,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 1,12,1,12,3,12,1227,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 3,12,1237,8,12,3,12,1239,8,12,1,13,1,13,1,13,1,13,3,13,1245,8,13, - 1,13,5,13,1248,8,13,10,13,12,13,1251,9,13,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,15,1,15,1,15,3,15,1263,8,15,1,15,3,15,1266,8,15,1, - 15,1,15,1,15,3,15,1271,8,15,1,15,5,15,1274,8,15,10,15,12,15,1277, - 9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17,1287,8,17,1,18, - 1,18,3,18,1291,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,3,19,1303,8,19,1,20,1,20,3,20,1307,8,20,1,20,3,20,1310,8,20, - 1,20,1,20,3,20,1314,8,20,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,1,21,1,21,1,21,1,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,1344,8,21,1,22,1,22, - 1,22,5,22,1349,8,22,10,22,12,22,1352,9,22,1,23,1,23,1,23,5,23,1357, - 8,23,10,23,12,23,1360,9,23,1,24,1,24,3,24,1364,8,24,1,25,1,25,1, - 25,1,25,1,25,3,25,1371,8,25,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1379, - 8,26,1,27,1,27,1,27,1,27,3,27,1385,8,27,1,28,1,28,1,28,1,28,1,28, - 1,28,3,28,1393,8,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1401,8,28, - 1,29,1,29,3,29,1405,8,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,3,31,1419,8,31,1,32,1,32,1,32,3,32,1424,8,32, - 1,33,1,33,1,33,3,33,1429,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,1,34,3,34,1441,8,34,1,35,1,35,1,35,1,35,3,35,1447,8,35, - 1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38,1,38,3,38,1459,8,38, - 1,38,1,38,1,38,3,38,1464,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,3,38,1474,8,38,1,38,1,38,1,38,1,38,3,38,1480,8,38,1,38,1,38, - 1,38,3,38,1485,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1494, - 8,38,1,38,1,38,1,38,1,38,1,38,3,38,1501,8,38,1,38,1,38,1,38,3,38, - 1506,8,38,1,38,1,38,1,38,3,38,1511,8,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,3,38,1521,8,38,1,38,1,38,1,38,3,38,1526,8,38,1,38, - 1,38,1,38,3,38,1531,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1538,8,38, - 1,38,1,38,3,38,1542,8,38,1,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,1556,8,38,1,38,1,38,1,38,1,38,3,38,1562, - 8,38,1,38,1,38,1,38,1,38,3,38,1568,8,38,1,38,1,38,1,38,3,38,1573, - 8,38,1,39,1,39,1,39,5,39,1578,8,39,10,39,12,39,1581,9,39,1,40,1, - 40,1,40,1,40,1,40,1,40,3,40,1589,8,40,1,41,1,41,1,41,1,41,1,42,1, - 42,1,42,3,42,1598,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1605,8,42,10, - 42,12,42,1608,9,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1616,8,42, - 1,42,1,42,3,42,1620,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,3,42,1632,8,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1640, - 8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1650,8,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,3,42,1670,8,42,1,42,1,42,1,42,3,42,1675,8,42, - 1,42,3,42,1678,8,42,1,42,1,42,1,42,1,42,1,42,3,42,1685,8,42,1,42, - 3,42,1688,8,42,1,42,1,42,3,42,1692,8,42,1,42,1,42,3,42,1696,8,42, - 1,42,3,42,1699,8,42,1,42,1,42,1,42,3,42,1704,8,42,1,42,1,42,1,42, - 3,42,1709,8,42,1,42,1,42,3,42,1713,8,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,3,42,1722,8,42,1,42,1,42,1,42,1,42,3,42,1728,8,42,1,42, - 1,42,3,42,1732,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1741, - 8,42,1,42,3,42,1744,8,42,1,42,1,42,1,42,1,42,3,42,1750,8,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1759,8,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,4,42,1769,8,42,11,42,12,42,1770,1,42,1,42,3, - 42,1775,8,42,1,42,1,42,3,42,1779,8,42,1,42,1,42,1,42,3,42,1784,8, - 42,1,42,3,42,1787,8,42,1,42,1,42,1,42,1,42,3,42,1793,8,42,4,42,1795, - 8,42,11,42,12,42,1796,1,42,1,42,3,42,1801,8,42,1,42,1,42,1,42,1, - 42,3,42,1807,8,42,1,42,1,42,3,42,1811,8,42,1,42,1,42,1,42,3,42,1816, - 8,42,1,42,1,42,1,42,3,42,1821,8,42,1,42,1,42,3,42,1825,8,42,1,42, - 3,42,1828,8,42,1,43,1,43,1,43,1,43,1,43,3,43,1835,8,43,1,44,1,44, - 1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,1846,8,46,10,46,12,46,1849, - 9,46,1,46,1,46,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,3,48,1861, - 8,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49, - 1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1886, - 8,49,1,50,1,50,1,50,1,50,1,50,1,50,5,50,1894,8,50,10,50,12,50,1897, - 9,50,1,51,1,51,1,51,1,51,3,51,1903,8,51,1,51,1,51,1,51,3,51,1908, - 8,51,1,51,1,51,3,51,1912,8,51,1,51,1,51,1,51,1,51,1,51,3,51,1919, - 8,51,1,51,1,51,1,51,3,51,1924,8,51,1,51,3,51,1927,8,51,3,51,1929, - 8,51,1,52,1,52,1,52,3,52,1934,8,52,1,53,1,53,3,53,1938,8,53,1,53, - 1,53,3,53,1942,8,53,1,53,1,53,3,53,1946,8,53,1,53,1,53,1,53,3,53, - 1951,8,53,1,53,3,53,1954,8,53,1,53,1,53,3,53,1958,8,53,1,53,3,53, - 1961,8,53,1,53,1,53,3,53,1965,8,53,1,53,1,53,1,53,1,53,1,53,1,53, - 3,53,1973,8,53,1,53,1,53,1,53,3,53,1978,8,53,1,53,3,53,1981,8,53, - 1,53,1,53,3,53,1985,8,53,1,54,1,54,1,54,1,54,3,54,1991,8,54,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,3,54,2000,8,54,1,54,1,54,3,54,2004, - 8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2014,8,54,1,54, - 1,54,1,54,3,54,2019,8,54,5,54,2021,8,54,10,54,12,54,2024,9,54,1, - 54,3,54,2027,8,54,5,54,2029,8,54,10,54,12,54,2032,9,54,1,55,1,55, - 1,55,1,55,3,55,2038,8,55,1,55,1,55,1,55,3,55,2043,8,55,5,55,2045, - 8,55,10,55,12,55,2048,9,55,1,55,1,55,3,55,2052,8,55,1,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,56,5,56,2062,8,56,10,56,12,56,2065,9,56, - 1,56,1,56,3,56,2069,8,56,1,57,1,57,3,57,2073,8,57,1,57,1,57,3,57, - 2077,8,57,1,57,1,57,1,57,3,57,2082,8,57,1,57,1,57,3,57,2086,8,57, - 1,57,3,57,2089,8,57,1,57,3,57,2092,8,57,1,57,3,57,2095,8,57,1,57, - 3,57,2098,8,57,1,57,3,57,2101,8,57,1,57,1,57,1,57,3,57,2106,8,57, - 1,57,3,57,2109,8,57,1,57,3,57,2112,8,57,1,57,3,57,2115,8,57,1,57, - 3,57,2118,8,57,1,57,3,57,2121,8,57,1,57,1,57,1,57,1,57,3,57,2127, - 8,57,1,57,1,57,3,57,2131,8,57,1,57,3,57,2134,8,57,1,57,3,57,2137, - 8,57,1,57,3,57,2140,8,57,1,57,3,57,2143,8,57,3,57,2145,8,57,1,58, - 1,58,1,58,1,58,1,58,3,58,2152,8,58,1,59,1,59,1,59,1,59,5,59,2158, - 8,59,10,59,12,59,2161,9,59,1,59,1,59,1,60,1,60,1,60,5,60,2168,8, - 60,10,60,12,60,2171,9,60,1,61,1,61,3,61,2175,8,61,1,61,1,61,1,61, - 1,61,1,61,1,61,5,61,2183,8,61,10,61,12,61,2186,9,61,3,61,2188,8, - 61,1,62,1,62,1,62,3,62,2193,8,62,1,62,5,62,2196,8,62,10,62,12,62, - 2199,9,62,1,62,1,62,3,62,2203,8,62,1,62,3,62,2206,8,62,1,63,1,63, - 1,63,3,63,2211,8,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2220, - 8,63,3,63,2222,8,63,1,63,1,63,3,63,2226,8,63,1,63,3,63,2229,8,63, - 1,63,1,63,3,63,2233,8,63,1,63,5,63,2236,8,63,10,63,12,63,2239,9, - 63,1,64,1,64,3,64,2243,8,64,1,64,1,64,3,64,2247,8,64,1,64,3,64,2250, - 8,64,1,64,1,64,3,64,2254,8,64,1,65,3,65,2257,8,65,1,65,1,65,1,65, - 3,65,2262,8,65,1,65,3,65,2265,8,65,1,65,1,65,1,65,3,65,2270,8,65, - 1,65,3,65,2273,8,65,1,65,1,65,3,65,2277,8,65,1,65,3,65,2280,8,65, - 1,65,3,65,2283,8,65,1,65,1,65,1,65,3,65,2288,8,65,1,65,3,65,2291, - 8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2299,8,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,4,65,2309,8,65,11,65,12,65,2310,1,65,1, - 65,3,65,2315,8,65,1,65,1,65,1,65,1,65,1,65,3,65,2322,8,65,1,65,1, - 65,1,65,3,65,2327,8,65,1,65,3,65,2330,8,65,1,65,3,65,2333,8,65,1, - 65,3,65,2336,8,65,1,66,1,66,1,66,3,66,2341,8,66,1,67,1,67,1,68,1, - 68,1,68,1,68,1,68,5,68,2350,8,68,10,68,12,68,2353,9,68,1,68,1,68, - 1,68,3,68,2358,8,68,1,68,1,68,3,68,2362,8,68,1,68,3,68,2365,8,68, - 1,68,3,68,2368,8,68,1,68,5,68,2371,8,68,10,68,12,68,2374,9,68,1, - 68,1,68,5,68,2378,8,68,10,68,12,68,2381,9,68,3,68,2383,8,68,1,68, - 1,68,3,68,2387,8,68,1,68,1,68,1,68,1,68,5,68,2393,8,68,10,68,12, - 68,2396,9,68,1,68,1,68,3,68,2400,8,68,1,68,3,68,2403,8,68,1,68,3, - 68,2406,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2413,8,68,1,68,5,68,2416, - 8,68,10,68,12,68,2419,9,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2427, - 8,68,1,68,3,68,2430,8,68,1,68,3,68,2433,8,68,1,68,5,68,2436,8,68, - 10,68,12,68,2439,9,68,3,68,2441,8,68,1,69,1,69,1,69,1,69,1,70,1, - 70,1,70,1,70,5,70,2451,8,70,10,70,12,70,2454,9,70,1,70,1,70,1,71, - 1,71,1,71,5,71,2461,8,71,10,71,12,71,2464,9,71,1,72,1,72,1,72,1, - 73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2480,8, - 74,1,75,1,75,3,75,2484,8,75,1,75,1,75,3,75,2488,8,75,3,75,2490,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, - 78,1,78,1,78,3,78,2507,8,78,3,78,2509,8,78,1,79,1,79,1,79,1,79,1, - 79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2523,8,80,10,80,12,80, - 2526,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2536,8,81, - 1,81,3,81,2539,8,81,1,81,3,81,2542,8,81,1,82,1,82,1,82,1,83,1,83, - 1,83,1,83,3,83,2551,8,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84, - 2560,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87, - 1,88,1,88,1,88,3,88,2576,8,88,1,88,3,88,2579,8,88,1,88,3,88,2582, - 8,88,1,88,1,88,1,88,1,88,5,88,2588,8,88,10,88,12,88,2591,9,88,1, - 88,3,88,2594,8,88,1,88,1,88,1,89,1,89,1,89,3,89,2601,8,89,1,89,1, - 89,1,89,1,89,1,89,1,90,1,90,3,90,2610,8,90,1,90,1,90,3,90,2614,8, - 90,1,90,1,90,1,90,1,90,3,90,2620,8,90,1,91,1,91,3,91,2624,8,91,1, - 91,3,91,2627,8,91,1,91,3,91,2630,8,91,1,91,3,91,2633,8,91,1,91,3, - 91,2636,8,91,1,92,1,92,1,92,1,92,3,92,2642,8,92,1,93,1,93,3,93,2646, - 8,93,1,93,1,93,1,93,3,93,2651,8,93,1,93,1,93,3,93,2655,8,93,1,93, - 3,93,2658,8,93,1,93,3,93,2661,8,93,1,93,3,93,2664,8,93,1,93,1,93, - 1,93,3,93,2669,8,93,1,94,1,94,1,94,1,94,3,94,2675,8,94,1,94,1,94, - 3,94,2679,8,94,1,95,1,95,3,95,2683,8,95,1,95,1,95,3,95,2687,8,95, - 1,95,1,95,4,95,2691,8,95,11,95,12,95,2692,3,95,2695,8,95,1,96,1, - 96,1,96,3,96,2700,8,96,1,96,1,96,4,96,2704,8,96,11,96,12,96,2705, - 1,97,1,97,1,97,1,97,3,97,2712,8,97,1,97,1,97,3,97,2716,8,97,1,97, - 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97, - 2731,8,97,1,97,1,97,1,97,3,97,2736,8,97,1,97,3,97,2739,8,97,3,97, - 2741,8,97,1,98,3,98,2744,8,98,1,98,1,98,3,98,2748,8,98,1,99,1,99, - 3,99,2752,8,99,1,99,3,99,2755,8,99,1,99,3,99,2758,8,99,1,99,1,99, - 1,99,1,99,1,99,1,99,3,99,2766,8,99,1,99,1,99,1,99,1,99,3,99,2772, - 8,99,3,99,2774,8,99,1,100,1,100,1,100,1,100,3,100,2780,8,100,1,100, - 1,100,1,100,3,100,2785,8,100,1,101,1,101,1,101,3,101,2790,8,101, - 1,101,1,101,3,101,2794,8,101,1,101,1,101,1,101,1,101,1,101,5,101, - 2801,8,101,10,101,12,101,2804,9,101,1,102,1,102,1,102,1,102,1,102, - 1,102,5,102,2812,8,102,10,102,12,102,2815,9,102,1,103,1,103,1,103, + 7,461,2,462,7,462,2,463,7,463,2,464,7,464,1,0,5,0,932,8,0,10,0,12, + 0,935,9,0,1,0,1,0,1,1,1,1,3,1,941,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,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,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,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,1,2,1,2,1,2,3, + 2,1061,8,2,3,2,1063,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1072,8,4, + 1,4,5,4,1075,8,4,10,4,12,4,1078,9,4,1,5,1,5,1,5,3,5,1083,8,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,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,1118,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1128,8,6,1,7,1, + 7,1,7,1,7,3,7,1134,8,7,1,7,5,7,1137,8,7,10,7,12,7,1140,9,7,1,8,1, + 8,1,8,1,8,3,8,1146,8,8,1,8,5,8,1149,8,8,10,8,12,8,1152,9,8,1,9,1, + 9,1,9,1,9,3,9,1158,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3, + 10,1169,8,10,1,10,1,10,1,11,1,11,5,11,1175,8,11,10,11,12,11,1178, + 9,11,1,11,3,11,1181,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11, + 1,11,1,11,3,11,1193,8,11,1,11,1,11,1,11,1,11,3,11,1199,8,11,1,12, + 1,12,1,12,1,12,3,12,1205,8,12,1,12,1,12,3,12,1209,8,12,1,12,1,12, + 1,12,3,12,1214,8,12,1,12,1,12,3,12,1218,8,12,1,12,1,12,1,12,1,12, + 1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,1231,8,12,1,12,1,12,1,12, + 1,12,1,12,1,12,1,12,1,12,3,12,1241,8,12,3,12,1243,8,12,1,13,1,13, + 1,13,1,13,3,13,1249,8,13,1,13,5,13,1252,8,13,10,13,12,13,1255,9, + 13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1267,8, + 15,1,15,3,15,1270,8,15,1,15,1,15,1,15,3,15,1275,8,15,1,15,5,15,1278, + 8,15,10,15,12,15,1281,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1, + 17,3,17,1291,8,17,1,18,1,18,3,18,1295,8,18,1,18,1,18,1,19,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,3,19,1307,8,19,1,20,1,20,3,20,1311,8, + 20,1,20,3,20,1314,8,20,1,20,1,20,3,20,1318,8,20,1,21,1,21,1,21,1, + 21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1330,8,21,1,21,1,21,1,21,1, + 21,1,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,1348,8,21,1,22,1,22,1,22,5,22,1353,8,22,10,22,12,22,1356,9,22, + 1,23,1,23,1,23,5,23,1361,8,23,10,23,12,23,1364,9,23,1,24,1,24,3, + 24,1368,8,24,1,25,1,25,1,25,1,25,1,25,3,25,1375,8,25,1,26,1,26,1, + 26,1,26,1,26,1,26,3,26,1383,8,26,1,27,1,27,1,27,1,27,3,27,1389,8, + 27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1397,8,28,1,28,1,28,1,28,1, + 28,1,28,1,28,3,28,1405,8,28,1,29,1,29,3,29,1409,8,29,1,30,1,30,1, + 30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,3,31,1423,8,31,1, + 32,1,32,1,32,3,32,1428,8,32,1,33,1,33,1,33,3,33,1433,8,33,1,34,1, + 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1445,8,34,1,35,1, + 35,1,35,1,35,3,35,1451,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1, + 38,1,38,1,38,3,38,1463,8,38,1,38,1,38,1,38,3,38,1468,8,38,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1478,8,38,1,38,1,38,1,38,1, + 38,3,38,1484,8,38,1,38,1,38,1,38,3,38,1489,8,38,1,38,1,38,1,38,1, + 38,1,38,1,38,1,38,3,38,1498,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1505, + 8,38,1,38,1,38,1,38,3,38,1510,8,38,1,38,1,38,1,38,3,38,1515,8,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1525,8,38,1,38,1,38, + 1,38,3,38,1530,8,38,1,38,1,38,1,38,3,38,1535,8,38,1,38,1,38,1,38, + 1,38,1,38,3,38,1542,8,38,1,38,1,38,3,38,1546,8,38,1,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,1560,8,38,1,38, + 1,38,1,38,1,38,3,38,1566,8,38,1,38,1,38,1,38,1,38,3,38,1572,8,38, + 1,38,1,38,1,38,3,38,1577,8,38,1,39,1,39,1,39,5,39,1582,8,39,10,39, + 12,39,1585,9,39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1593,8,40,1,41, + 1,41,1,41,1,41,1,42,1,42,1,42,3,42,1602,8,42,1,42,1,42,1,42,1,42, + 1,42,5,42,1609,8,42,10,42,12,42,1612,9,42,1,42,1,42,1,42,1,42,1, + 42,1,42,3,42,1620,8,42,1,42,1,42,3,42,1624,8,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1636,8,42,1,42,1,42,1,42,1, + 42,1,42,1,42,3,42,1644,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,3,42,1654,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1674,8,42,1,42,1, + 42,1,42,3,42,1679,8,42,1,42,3,42,1682,8,42,1,42,1,42,1,42,1,42,1, + 42,3,42,1689,8,42,1,42,3,42,1692,8,42,1,42,1,42,3,42,1696,8,42,1, + 42,1,42,3,42,1700,8,42,1,42,3,42,1703,8,42,1,42,1,42,1,42,3,42,1708, + 8,42,1,42,1,42,1,42,3,42,1713,8,42,1,42,1,42,3,42,1717,8,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1726,8,42,1,42,1,42,1,42,1,42, + 3,42,1732,8,42,1,42,1,42,3,42,1736,8,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,3,42,1745,8,42,1,42,3,42,1748,8,42,1,42,1,42,1,42,1,42, + 3,42,1754,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1763,8,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,4,42,1773,8,42,11,42,12, + 42,1774,1,42,1,42,3,42,1779,8,42,1,42,1,42,3,42,1783,8,42,1,42,1, + 42,1,42,3,42,1788,8,42,1,42,3,42,1791,8,42,1,42,1,42,1,42,1,42,3, + 42,1797,8,42,4,42,1799,8,42,11,42,12,42,1800,1,42,1,42,3,42,1805, + 8,42,1,42,1,42,1,42,1,42,3,42,1811,8,42,1,42,1,42,3,42,1815,8,42, + 1,42,1,42,1,42,3,42,1820,8,42,1,42,1,42,1,42,3,42,1825,8,42,1,42, + 1,42,3,42,1829,8,42,1,42,3,42,1832,8,42,1,43,1,43,1,43,1,43,1,43, + 3,43,1839,8,43,1,44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46, + 1850,8,46,10,46,12,46,1853,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1, + 48,1,48,1,48,1,48,3,48,1865,8,48,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,1,49,3,49,1890,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5, + 50,1898,8,50,10,50,12,50,1901,9,50,1,51,1,51,1,51,1,51,3,51,1907, + 8,51,1,51,1,51,1,51,3,51,1912,8,51,1,51,1,51,3,51,1916,8,51,1,51, + 1,51,1,51,1,51,1,51,3,51,1923,8,51,1,51,1,51,1,51,3,51,1928,8,51, + 1,51,3,51,1931,8,51,3,51,1933,8,51,1,52,1,52,1,52,3,52,1938,8,52, + 1,53,1,53,3,53,1942,8,53,1,53,1,53,3,53,1946,8,53,1,53,1,53,3,53, + 1950,8,53,1,53,1,53,1,53,3,53,1955,8,53,1,53,3,53,1958,8,53,1,53, + 1,53,3,53,1962,8,53,1,53,3,53,1965,8,53,1,53,1,53,3,53,1969,8,53, + 1,53,1,53,1,53,1,53,1,53,1,53,3,53,1977,8,53,1,53,1,53,1,53,3,53, + 1982,8,53,1,53,3,53,1985,8,53,1,53,1,53,3,53,1989,8,53,1,54,1,54, + 1,54,1,54,3,54,1995,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54, + 2004,8,54,1,54,1,54,3,54,2008,8,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,1,54,3,54,2018,8,54,1,54,1,54,1,54,3,54,2023,8,54,5,54,2025, + 8,54,10,54,12,54,2028,9,54,1,54,3,54,2031,8,54,5,54,2033,8,54,10, + 54,12,54,2036,9,54,1,55,1,55,1,55,1,55,3,55,2042,8,55,1,55,1,55, + 1,55,3,55,2047,8,55,5,55,2049,8,55,10,55,12,55,2052,9,55,1,55,1, + 55,3,55,2056,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2066, + 8,56,10,56,12,56,2069,9,56,1,56,1,56,3,56,2073,8,56,1,57,1,57,3, + 57,2077,8,57,1,57,1,57,3,57,2081,8,57,1,57,1,57,1,57,3,57,2086,8, + 57,1,57,1,57,3,57,2090,8,57,1,57,3,57,2093,8,57,1,57,3,57,2096,8, + 57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1,57,3,57,2105,8,57,1, + 57,1,57,1,57,3,57,2110,8,57,1,57,3,57,2113,8,57,1,57,3,57,2116,8, + 57,1,57,3,57,2119,8,57,1,57,3,57,2122,8,57,1,57,3,57,2125,8,57,1, + 57,1,57,1,57,1,57,3,57,2131,8,57,1,57,1,57,3,57,2135,8,57,1,57,3, + 57,2138,8,57,1,57,3,57,2141,8,57,1,57,3,57,2144,8,57,1,57,3,57,2147, + 8,57,3,57,2149,8,57,1,58,1,58,1,58,1,58,1,58,3,58,2156,8,58,1,59, + 1,59,1,59,1,59,5,59,2162,8,59,10,59,12,59,2165,9,59,1,59,1,59,1, + 60,1,60,1,60,5,60,2172,8,60,10,60,12,60,2175,9,60,1,61,1,61,3,61, + 2179,8,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,2187,8,61,10,61,12, + 61,2190,9,61,3,61,2192,8,61,1,62,1,62,1,62,3,62,2197,8,62,1,62,5, + 62,2200,8,62,10,62,12,62,2203,9,62,1,62,1,62,3,62,2207,8,62,1,62, + 3,62,2210,8,62,1,63,1,63,1,63,3,63,2215,8,63,1,63,1,63,1,63,1,63, + 1,63,1,63,1,63,3,63,2224,8,63,3,63,2226,8,63,1,63,1,63,3,63,2230, + 8,63,1,63,3,63,2233,8,63,1,63,1,63,3,63,2237,8,63,1,63,5,63,2240, + 8,63,10,63,12,63,2243,9,63,1,64,1,64,3,64,2247,8,64,1,64,1,64,3, + 64,2251,8,64,1,64,3,64,2254,8,64,1,64,1,64,3,64,2258,8,64,1,65,3, + 65,2261,8,65,1,65,1,65,1,65,3,65,2266,8,65,1,65,3,65,2269,8,65,1, + 65,1,65,1,65,3,65,2274,8,65,1,65,3,65,2277,8,65,1,65,1,65,3,65,2281, + 8,65,1,65,3,65,2284,8,65,1,65,3,65,2287,8,65,1,65,1,65,1,65,3,65, + 2292,8,65,1,65,3,65,2295,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, + 2303,8,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,4,65,2313,8,65, + 11,65,12,65,2314,1,65,1,65,3,65,2319,8,65,1,65,1,65,1,65,1,65,1, + 65,3,65,2326,8,65,1,65,1,65,1,65,3,65,2331,8,65,1,65,3,65,2334,8, + 65,1,65,3,65,2337,8,65,1,65,3,65,2340,8,65,1,66,1,66,1,66,3,66,2345, + 8,66,1,67,1,67,1,68,1,68,1,68,1,68,1,68,5,68,2354,8,68,10,68,12, + 68,2357,9,68,1,68,1,68,1,68,3,68,2362,8,68,1,68,1,68,3,68,2366,8, + 68,1,68,3,68,2369,8,68,1,68,3,68,2372,8,68,1,68,5,68,2375,8,68,10, + 68,12,68,2378,9,68,1,68,1,68,5,68,2382,8,68,10,68,12,68,2385,9,68, + 3,68,2387,8,68,1,68,1,68,3,68,2391,8,68,1,68,1,68,1,68,1,68,5,68, + 2397,8,68,10,68,12,68,2400,9,68,1,68,1,68,3,68,2404,8,68,1,68,3, + 68,2407,8,68,1,68,3,68,2410,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2417, + 8,68,1,68,5,68,2420,8,68,10,68,12,68,2423,9,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2431,8,68,1,68,3,68,2434,8,68,1,68,3,68,2437,8, + 68,1,68,5,68,2440,8,68,10,68,12,68,2443,9,68,3,68,2445,8,68,1,69, + 1,69,1,69,1,69,1,70,1,70,1,70,1,70,5,70,2455,8,70,10,70,12,70,2458, + 9,70,1,70,1,70,1,71,1,71,1,71,5,71,2465,8,71,10,71,12,71,2468,9, + 71,1,72,1,72,1,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,3,74,2484,8,74,1,75,1,75,3,75,2488,8,75,1,75,1,75,3,75,2492, + 8,75,3,75,2494,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,78,1,78,1,78,3,78,2511,8,78,3,78,2513,8,78,1,79, + 1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2527, + 8,80,10,80,12,80,2530,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, + 81,3,81,2540,8,81,1,81,3,81,2543,8,81,1,81,3,81,2546,8,81,1,82,1, + 82,1,82,1,83,1,83,1,83,1,83,3,83,2555,8,83,1,84,1,84,1,84,1,84,1, + 84,1,84,1,84,3,84,2564,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1, + 87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2580,8,88,1,88,3,88,2583,8, + 88,1,88,3,88,2586,8,88,1,88,1,88,1,88,1,88,5,88,2592,8,88,10,88, + 12,88,2595,9,88,1,88,3,88,2598,8,88,1,88,1,88,1,89,1,89,1,89,3,89, + 2605,8,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,3,90,2614,8,90,1,90, + 1,90,3,90,2618,8,90,1,90,1,90,1,90,1,90,3,90,2624,8,90,1,91,1,91, + 3,91,2628,8,91,1,91,3,91,2631,8,91,1,91,3,91,2634,8,91,1,91,3,91, + 2637,8,91,1,91,3,91,2640,8,91,1,92,1,92,1,92,1,92,3,92,2646,8,92, + 1,93,1,93,3,93,2650,8,93,1,93,1,93,1,93,3,93,2655,8,93,1,93,1,93, + 3,93,2659,8,93,1,93,3,93,2662,8,93,1,93,3,93,2665,8,93,1,93,3,93, + 2668,8,93,1,93,1,93,1,93,3,93,2673,8,93,1,94,1,94,1,94,1,94,3,94, + 2679,8,94,1,94,1,94,3,94,2683,8,94,1,95,1,95,3,95,2687,8,95,1,95, + 1,95,3,95,2691,8,95,1,95,1,95,4,95,2695,8,95,11,95,12,95,2696,3, + 95,2699,8,95,1,96,1,96,1,96,3,96,2704,8,96,1,96,1,96,4,96,2708,8, + 96,11,96,12,96,2709,1,97,1,97,1,97,1,97,3,97,2716,8,97,1,97,1,97, + 3,97,2720,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, + 1,97,1,97,1,97,3,97,2735,8,97,1,97,1,97,1,97,3,97,2740,8,97,1,97, + 3,97,2743,8,97,3,97,2745,8,97,1,98,3,98,2748,8,98,1,98,1,98,3,98, + 2752,8,98,1,99,1,99,3,99,2756,8,99,1,99,3,99,2759,8,99,1,99,3,99, + 2762,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,2770,8,99,1,99,1,99, + 1,99,1,99,3,99,2776,8,99,3,99,2778,8,99,1,100,1,100,1,100,1,100, + 3,100,2784,8,100,1,100,1,100,1,100,3,100,2789,8,100,1,101,1,101, + 1,101,3,101,2794,8,101,1,101,1,101,3,101,2798,8,101,1,101,1,101, + 1,101,1,101,1,101,5,101,2805,8,101,10,101,12,101,2808,9,101,1,102, + 1,102,1,102,1,102,1,102,1,102,5,102,2816,8,102,10,102,12,102,2819, + 9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 3,103,2853,8,103,1,104,1,104,1,104,1,104,1,104,1,104,4,104,2861, - 8,104,11,104,12,104,2862,3,104,2865,8,104,1,104,3,104,2868,8,104, - 1,105,1,105,3,105,2872,8,105,1,105,1,105,3,105,2876,8,105,1,106, - 1,106,1,106,1,106,1,106,1,106,4,106,2884,8,106,11,106,12,106,2885, - 3,106,2888,8,106,1,106,1,106,4,106,2892,8,106,11,106,12,106,2893, - 3,106,2896,8,106,1,107,1,107,1,107,1,107,1,107,5,107,2903,8,107, - 10,107,12,107,2906,9,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108, - 5,108,2915,8,108,10,108,12,108,2918,9,108,1,108,1,108,1,109,1,109, - 1,109,1,110,1,110,1,110,1,111,1,111,1,111,3,111,2931,8,111,1,111, - 1,111,1,111,3,111,2936,8,111,1,111,3,111,2939,8,111,1,111,1,111, - 1,111,1,111,1,111,3,111,2946,8,111,1,112,1,112,1,112,3,112,2951, - 8,112,1,113,1,113,1,113,1,113,1,113,1,113,3,113,2959,8,113,3,113, - 2961,8,113,1,114,1,114,1,114,1,114,3,114,2967,8,114,1,114,1,114, - 1,114,3,114,2972,8,114,1,114,1,114,3,114,2976,8,114,1,114,1,114, - 1,114,3,114,2981,8,114,1,114,1,114,1,114,1,114,3,114,2987,8,114, - 1,114,1,114,1,114,1,114,1,114,3,114,2994,8,114,1,114,1,114,1,114, - 1,114,3,114,3000,8,114,3,114,3002,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,3,115,3011,8,115,1,115,1,115,1,115,1,115,3,115, - 3017,8,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3025,8,115, - 1,116,1,116,1,116,1,116,3,116,3031,8,116,1,116,1,116,1,116,3,116, - 3036,8,116,1,116,1,116,1,116,3,116,3041,8,116,1,117,1,117,1,117, - 1,117,1,117,1,117,3,117,3049,8,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,3,118,3064,8,118, - 3,118,3066,8,118,1,118,1,118,3,118,3070,8,118,1,118,1,118,3,118, - 3074,8,118,1,118,3,118,3077,8,118,1,118,3,118,3080,8,118,1,119,1, - 119,1,119,1,119,1,119,1,119,1,119,3,119,3089,8,119,1,119,3,119,3092, - 8,119,1,119,3,119,3095,8,119,1,120,1,120,1,120,1,120,3,120,3101, - 8,120,1,120,1,120,5,120,3105,8,120,10,120,12,120,3108,9,120,1,120, - 3,120,3111,8,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,3,120,3123,8,120,1,120,1,120,1,120,1,120,3,120,3129, - 8,120,1,121,3,121,3132,8,121,1,121,1,121,1,121,3,121,3137,8,121, - 1,121,1,121,3,121,3141,8,121,1,121,1,121,1,121,1,121,1,121,3,121, - 3148,8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 3158,8,121,3,121,3160,8,121,1,122,1,122,1,122,1,122,1,122,1,123, - 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,125,1,125,3,125,3184,8,125,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3196,8,125,1,125, - 4,125,3199,8,125,11,125,12,125,3200,3,125,3203,8,125,1,125,1,125, - 3,125,3207,8,125,1,125,3,125,3210,8,125,1,125,3,125,3213,8,125,1, - 125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3223,8,125,1, - 125,3,125,3226,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, - 125,3,125,3236,8,125,1,125,5,125,3239,8,125,10,125,12,125,3242,9, - 125,1,125,1,125,3,125,3246,8,125,1,125,3,125,3249,8,125,1,125,3, - 125,3252,8,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3260,8, - 125,1,126,1,126,1,126,1,126,3,126,3266,8,126,1,127,1,127,1,127,5, - 127,3271,8,127,10,127,12,127,3274,9,127,1,128,1,128,1,128,1,128, - 1,128,3,128,3281,8,128,1,128,3,128,3284,8,128,1,129,1,129,1,129, - 1,129,1,129,1,130,1,130,1,130,1,130,3,130,3295,8,130,1,131,1,131, - 3,131,3299,8,131,1,131,1,131,5,131,3303,8,131,10,131,12,131,3306, - 9,131,1,132,1,132,1,132,1,132,3,132,3312,8,132,1,133,3,133,3315, - 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3324,8,133, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134, - 3336,8,134,10,134,12,134,3339,9,134,3,134,3341,8,134,1,134,1,134, - 1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,5,135,3353,8,135, - 10,135,12,135,3356,9,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136, - 1,136,3,136,3366,8,136,1,136,3,136,3369,8,136,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,5,137,3379,8,137,10,137,12,137,3382, - 9,137,1,138,1,138,3,138,3386,8,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3397,8,138,10,138,12,138,3400,9,138, - 1,138,1,138,3,138,3404,8,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3417,8,138,1,138,1,138,1,138, - 1,138,1,138,5,138,3424,8,138,10,138,12,138,3427,9,138,3,138,3429, - 8,138,1,138,3,138,3432,8,138,1,138,1,138,1,138,1,138,1,138,3,138, - 3439,8,138,1,138,3,138,3442,8,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3454,8,138,1,138,1,138,1,138, - 1,138,3,138,3460,8,138,3,138,3462,8,138,1,139,1,139,1,139,1,139, - 5,139,3468,8,139,10,139,12,139,3471,9,139,1,139,1,139,1,140,1,140, - 1,140,3,140,3478,8,140,1,141,1,141,1,141,1,141,1,141,1,141,3,141, - 3486,8,141,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, - 1,143,3,143,3498,8,143,1,143,1,143,1,143,3,143,3503,8,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,3514,8,143, - 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,145,3,145,3525, - 8,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,3533,8,145,1,145, - 1,145,1,145,1,145,5,145,3539,8,145,10,145,12,145,3542,9,145,1,146, - 1,146,1,146,1,146,3,146,3548,8,146,1,146,1,146,1,146,1,146,1,146, - 3,146,3555,8,146,3,146,3557,8,146,1,146,3,146,3560,8,146,1,146,1, - 146,1,146,3,146,3565,8,146,1,146,1,146,1,146,3,146,3570,8,146,1, - 147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,5,148,3587,8,148,10,148,12,148,3590,9,148, - 1,148,1,148,1,148,1,148,5,148,3596,8,148,10,148,12,148,3599,9,148, - 3,148,3601,8,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,1,151,3,151,3628,8,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,3,151,3637,8,151,1,151,3,151,3640, - 8,151,1,151,1,151,3,151,3644,8,151,1,151,1,151,3,151,3648,8,151, - 1,151,1,151,3,151,3652,8,151,1,151,1,151,1,151,5,151,3657,8,151, - 10,151,12,151,3660,9,151,1,151,3,151,3663,8,151,1,151,1,151,3,151, - 3667,8,151,1,151,1,151,3,151,3671,8,151,1,151,1,151,3,151,3675,8, - 151,1,151,1,151,1,151,3,151,3680,8,151,1,151,1,151,3,151,3684,8, - 151,1,151,1,151,1,151,3,151,3689,8,151,1,151,1,151,1,151,1,151,3, - 151,3695,8,151,1,151,1,151,1,151,3,151,3700,8,151,1,151,1,151,1, - 151,5,151,3705,8,151,10,151,12,151,3708,9,151,1,151,3,151,3711,8, - 151,1,151,1,151,1,151,1,151,3,151,3717,8,151,1,151,1,151,3,151,3721, - 8,151,1,151,1,151,1,151,3,151,3726,8,151,1,151,1,151,1,151,1,151, - 1,151,1,151,3,151,3734,8,151,1,151,1,151,1,151,1,151,3,151,3740, - 8,151,1,151,1,151,1,151,3,151,3745,8,151,1,151,1,151,1,151,1,151, - 1,151,3,151,3752,8,151,1,151,1,151,1,151,3,151,3757,8,151,1,151, - 1,151,3,151,3761,8,151,1,151,1,151,1,151,3,151,3766,8,151,1,151, - 1,151,1,151,1,151,3,151,3772,8,151,1,151,1,151,1,151,1,151,1,151, - 3,151,3779,8,151,1,151,1,151,1,151,3,151,3784,8,151,1,151,1,151, - 1,151,1,151,1,151,3,151,3791,8,151,1,151,1,151,1,151,3,151,3796, - 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3803,8,151,1,151,1,151, - 3,151,3807,8,151,1,151,1,151,1,151,1,151,5,151,3813,8,151,10,151, - 12,151,3816,9,151,1,151,3,151,3819,8,151,3,151,3821,8,151,1,152, - 3,152,3824,8,152,1,152,1,152,1,152,3,152,3829,8,152,1,152,1,152, - 1,152,1,152,1,152,1,152,1,152,1,152,3,152,3839,8,152,1,153,1,153, - 1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 3,153,3854,8,153,1,153,3,153,3857,8,153,1,153,1,153,1,153,1,153, - 1,153,1,153,3,153,3865,8,153,1,154,1,154,1,154,5,154,3870,8,154, - 10,154,12,154,3873,9,154,1,155,1,155,3,155,3877,8,155,1,156,1,156, - 4,156,3881,8,156,11,156,12,156,3882,1,157,1,157,3,157,3887,8,157, - 1,157,1,157,1,157,5,157,3892,8,157,10,157,12,157,3895,9,157,1,157, - 1,157,3,157,3899,8,157,1,157,3,157,3902,8,157,1,158,3,158,3905,8, - 158,1,158,1,158,3,158,3909,8,158,1,159,1,159,1,159,1,159,1,159,1, - 159,1,159,3,159,3918,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,1,159,3,159, - 3936,8,159,1,159,3,159,3939,8,159,1,159,1,159,1,159,1,159,1,159, + 1,103,1,103,1,103,1,103,3,103,2857,8,103,1,104,1,104,1,104,1,104, + 1,104,1,104,4,104,2865,8,104,11,104,12,104,2866,3,104,2869,8,104, + 1,104,3,104,2872,8,104,1,105,1,105,3,105,2876,8,105,1,105,1,105, + 3,105,2880,8,105,1,106,1,106,1,106,1,106,1,106,1,106,4,106,2888, + 8,106,11,106,12,106,2889,3,106,2892,8,106,1,106,1,106,4,106,2896, + 8,106,11,106,12,106,2897,3,106,2900,8,106,1,107,1,107,1,107,1,107, + 1,107,5,107,2907,8,107,10,107,12,107,2910,9,107,1,107,1,107,1,108, + 1,108,1,108,1,108,1,108,5,108,2919,8,108,10,108,12,108,2922,9,108, + 1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111, + 3,111,2935,8,111,1,111,1,111,1,111,3,111,2940,8,111,1,111,3,111, + 2943,8,111,1,111,1,111,1,111,1,111,1,111,3,111,2950,8,111,1,112, + 1,112,1,112,3,112,2955,8,112,1,113,1,113,1,113,1,113,1,113,1,113, + 3,113,2963,8,113,3,113,2965,8,113,1,114,1,114,1,114,1,114,3,114, + 2971,8,114,1,114,1,114,1,114,3,114,2976,8,114,1,114,1,114,3,114, + 2980,8,114,1,114,1,114,1,114,3,114,2985,8,114,1,114,1,114,1,114, + 1,114,3,114,2991,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2998, + 8,114,1,114,1,114,1,114,1,114,3,114,3004,8,114,3,114,3006,8,114, + 1,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3015,8,115,1,115, + 1,115,1,115,1,115,3,115,3021,8,115,1,115,1,115,1,115,1,115,1,115, + 1,115,3,115,3029,8,115,1,116,1,116,1,116,1,116,3,116,3035,8,116, + 1,116,1,116,1,116,3,116,3040,8,116,1,116,1,116,1,116,3,116,3045, + 8,116,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3053,8,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,3,118,3068,8,118,3,118,3070,8,118,1,118,1,118,3,118,3074,8, + 118,1,118,1,118,3,118,3078,8,118,1,118,3,118,3081,8,118,1,118,3, + 118,3084,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3093, + 8,119,1,119,3,119,3096,8,119,1,119,3,119,3099,8,119,1,120,1,120, + 1,120,1,120,3,120,3105,8,120,1,120,1,120,5,120,3109,8,120,10,120, + 12,120,3112,9,120,1,120,3,120,3115,8,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,3,120,3127,8,120,1,120,1,120, + 1,120,1,120,3,120,3133,8,120,1,121,3,121,3136,8,121,1,121,1,121, + 1,121,3,121,3141,8,121,1,121,1,121,3,121,3145,8,121,1,121,1,121, + 1,121,1,121,1,121,3,121,3152,8,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,3,121,3162,8,121,3,121,3164,8,121,1,122,1,122, + 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,3,125,3188, + 8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, + 3,125,3200,8,125,1,125,4,125,3203,8,125,11,125,12,125,3204,3,125, + 3207,8,125,1,125,1,125,3,125,3211,8,125,1,125,3,125,3214,8,125,1, + 125,3,125,3217,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, + 125,3,125,3227,8,125,1,125,3,125,3230,8,125,1,125,1,125,1,125,1, + 125,1,125,1,125,1,125,1,125,3,125,3240,8,125,1,125,5,125,3243,8, + 125,10,125,12,125,3246,9,125,1,125,1,125,3,125,3250,8,125,1,125, + 3,125,3253,8,125,1,125,3,125,3256,8,125,1,125,1,125,1,125,1,125, + 1,125,1,125,3,125,3264,8,125,1,126,1,126,1,126,1,126,3,126,3270, + 8,126,1,127,1,127,1,127,5,127,3275,8,127,10,127,12,127,3278,9,127, + 1,128,1,128,1,128,1,128,1,128,3,128,3285,8,128,1,128,3,128,3288, + 8,128,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,3,130, + 3299,8,130,1,131,1,131,3,131,3303,8,131,1,131,1,131,5,131,3307,8, + 131,10,131,12,131,3310,9,131,1,132,1,132,1,132,1,132,3,132,3316, + 8,132,1,133,3,133,3319,8,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,3,133,3328,8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,5,134,3340,8,134,10,134,12,134,3343,9,134,3,134, + 3345,8,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135, + 1,135,5,135,3357,8,135,10,135,12,135,3360,9,135,1,135,1,135,1,136, + 1,136,1,136,1,136,1,136,1,136,3,136,3370,8,136,1,136,3,136,3373, + 8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137,3383, + 8,137,10,137,12,137,3386,9,137,1,138,1,138,3,138,3390,8,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3401,8,138, + 10,138,12,138,3404,9,138,1,138,1,138,3,138,3408,8,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3421, + 8,138,1,138,1,138,1,138,1,138,1,138,5,138,3428,8,138,10,138,12,138, + 3431,9,138,3,138,3433,8,138,1,138,3,138,3436,8,138,1,138,1,138,1, + 138,1,138,1,138,3,138,3443,8,138,1,138,3,138,3446,8,138,1,138,1, + 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3458,8, + 138,1,138,1,138,1,138,1,138,3,138,3464,8,138,3,138,3466,8,138,1, + 139,1,139,1,139,1,139,5,139,3472,8,139,10,139,12,139,3475,9,139, + 1,139,1,139,1,140,1,140,1,140,3,140,3482,8,140,1,141,1,141,1,141, + 1,141,1,141,1,141,3,141,3490,8,141,1,142,1,142,1,142,1,142,1,143, + 1,143,1,143,1,143,1,143,1,143,3,143,3502,8,143,1,143,1,143,1,143, + 3,143,3507,8,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 1,143,3,143,3518,8,143,1,144,1,144,1,144,1,144,1,145,1,145,1,145, + 1,145,1,145,3,145,3529,8,145,1,145,1,145,1,145,1,145,1,145,1,145, + 3,145,3537,8,145,1,145,1,145,1,145,1,145,5,145,3543,8,145,10,145, + 12,145,3546,9,145,1,146,1,146,1,146,1,146,3,146,3552,8,146,1,146, + 1,146,1,146,1,146,1,146,3,146,3559,8,146,3,146,3561,8,146,1,146, + 3,146,3564,8,146,1,146,1,146,1,146,3,146,3569,8,146,1,146,1,146, + 1,146,3,146,3574,8,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3591,8,148, + 10,148,12,148,3594,9,148,1,148,1,148,1,148,1,148,5,148,3600,8,148, + 10,148,12,148,3603,9,148,3,148,3605,8,148,1,149,1,149,1,149,1,149, + 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151, + 3632,8,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3641, + 8,151,1,151,3,151,3644,8,151,1,151,1,151,3,151,3648,8,151,1,151, + 1,151,3,151,3652,8,151,1,151,1,151,3,151,3656,8,151,1,151,1,151, + 1,151,5,151,3661,8,151,10,151,12,151,3664,9,151,1,151,3,151,3667, + 8,151,1,151,1,151,3,151,3671,8,151,1,151,1,151,3,151,3675,8,151, + 1,151,1,151,3,151,3679,8,151,1,151,1,151,1,151,3,151,3684,8,151, + 1,151,1,151,3,151,3688,8,151,1,151,1,151,1,151,3,151,3693,8,151, + 1,151,1,151,1,151,1,151,3,151,3699,8,151,1,151,1,151,1,151,3,151, + 3704,8,151,1,151,1,151,1,151,5,151,3709,8,151,10,151,12,151,3712, + 9,151,1,151,3,151,3715,8,151,1,151,1,151,1,151,1,151,3,151,3721, + 8,151,1,151,1,151,3,151,3725,8,151,1,151,1,151,1,151,3,151,3730, + 8,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3738,8,151,1,151, + 1,151,1,151,1,151,3,151,3744,8,151,1,151,1,151,1,151,3,151,3749, + 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3756,8,151,1,151,1,151, + 1,151,3,151,3761,8,151,1,151,1,151,3,151,3765,8,151,1,151,1,151, + 1,151,3,151,3770,8,151,1,151,1,151,1,151,1,151,3,151,3776,8,151, + 1,151,1,151,1,151,1,151,1,151,3,151,3783,8,151,1,151,1,151,1,151, + 3,151,3788,8,151,1,151,1,151,1,151,1,151,1,151,3,151,3795,8,151, + 1,151,1,151,1,151,3,151,3800,8,151,1,151,1,151,1,151,1,151,1,151, + 3,151,3807,8,151,1,151,1,151,3,151,3811,8,151,1,151,1,151,1,151, + 1,151,5,151,3817,8,151,10,151,12,151,3820,9,151,1,151,3,151,3823, + 8,151,3,151,3825,8,151,1,152,3,152,3828,8,152,1,152,1,152,1,152, + 3,152,3833,8,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 3,152,3843,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,153,1,153,1,153,1,153,1,153,3,153,3858,8,153,1,153,3,153,3861, + 8,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,3869,8,153,1,154, + 1,154,1,154,5,154,3874,8,154,10,154,12,154,3877,9,154,1,155,1,155, + 3,155,3881,8,155,1,156,1,156,4,156,3885,8,156,11,156,12,156,3886, + 1,157,1,157,3,157,3891,8,157,1,157,1,157,1,157,5,157,3896,8,157, + 10,157,12,157,3899,9,157,1,157,1,157,3,157,3903,8,157,1,157,3,157, + 3906,8,157,1,158,3,158,3909,8,158,1,158,1,158,3,158,3913,8,158,1, + 159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3922,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,1,159,3,159,3940,8,159,1,159,3,159,3943,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,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,3,159,3971,8,159,1,159,1,159,1,159,3,159,3976, - 8,159,1,160,1,160,1,160,1,160,3,160,3982,8,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,3,160,4002,8,160,1,160,1,160,1,160,3,160, - 4007,8,160,1,161,1,161,1,161,1,162,3,162,4013,8,162,1,162,3,162, - 4016,8,162,1,162,1,162,3,162,4020,8,162,1,162,1,162,3,162,4024,8, - 162,1,162,1,162,1,162,1,162,3,162,4030,8,162,1,162,3,162,4033,8, - 162,1,162,1,162,3,162,4037,8,162,1,162,1,162,3,162,4041,8,162,1, - 162,1,162,1,162,3,162,4046,8,162,1,162,3,162,4049,8,162,1,162,3, - 162,4052,8,162,1,162,3,162,4055,8,162,1,163,1,163,1,164,1,164,1, - 164,1,164,1,164,1,164,1,164,1,164,1,164,3,164,4068,8,164,1,165,1, - 165,1,165,1,165,3,165,4074,8,165,1,165,1,165,1,165,1,165,1,165,1, - 165,3,165,4082,8,165,1,166,1,166,1,166,5,166,4087,8,166,10,166,12, - 166,4090,9,166,1,166,1,166,3,166,4094,8,166,1,166,3,166,4097,8,166, - 1,166,1,166,1,166,5,166,4102,8,166,10,166,12,166,4105,9,166,3,166, - 4107,8,166,1,167,1,167,1,168,1,168,1,168,1,168,3,168,4115,8,168, - 1,168,3,168,4118,8,168,1,169,1,169,1,169,3,169,4123,8,169,1,169, - 1,169,1,169,1,169,1,169,3,169,4130,8,169,1,169,3,169,4133,8,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,5,169,4151,8,169,10,169,12,169,4154, - 9,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169, - 4165,8,169,1,170,3,170,4168,8,170,1,170,1,170,1,170,1,170,3,170, - 4174,8,170,1,170,5,170,4177,8,170,10,170,12,170,4180,9,170,1,171, - 1,171,1,171,1,171,5,171,4186,8,171,10,171,12,171,4189,9,171,1,171, - 1,171,1,171,1,171,1,171,3,171,4196,8,171,1,171,1,171,1,171,3,171, - 4201,8,171,1,172,1,172,1,172,1,172,3,172,4207,8,172,1,172,1,172, - 1,172,5,172,4212,8,172,10,172,12,172,4215,9,172,1,172,1,172,1,172, - 1,172,1,172,3,172,4222,8,172,1,172,3,172,4225,8,172,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,1,173,1,173,5,173,4236,8,173,10,173, - 12,173,4239,9,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,3,174,4252,8,174,1,174,1,174,1,174,1,174,3,174, - 4258,8,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4266,8,174, - 3,174,4268,8,174,1,175,1,175,1,176,1,176,3,176,4274,8,176,1,176, - 1,176,3,176,4278,8,176,1,176,3,176,4281,8,176,1,176,3,176,4284,8, - 176,1,176,1,176,1,176,3,176,4289,8,176,1,176,1,176,1,176,3,176,4294, - 8,176,1,176,1,176,3,176,4298,8,176,1,176,3,176,4301,8,176,1,176, - 3,176,4304,8,176,1,176,3,176,4307,8,176,1,176,3,176,4310,8,176,1, - 177,1,177,1,177,1,177,5,177,4316,8,177,10,177,12,177,4319,9,177, - 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,3,178,4329,8,178, - 1,178,3,178,4332,8,178,1,178,3,178,4335,8,178,1,178,1,178,1,178, - 3,178,4340,8,178,1,178,3,178,4343,8,178,1,178,1,178,3,178,4347,8, - 178,1,179,1,179,3,179,4351,8,179,1,179,1,179,1,179,1,179,3,179,4357, - 8,179,1,179,1,179,1,179,1,179,5,179,4363,8,179,10,179,12,179,4366, - 9,179,3,179,4368,8,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,179,1,179,5,179,4379,8,179,10,179,12,179,4382,9,179,1,179,1,179, - 3,179,4386,8,179,3,179,4388,8,179,1,179,4,179,4391,8,179,11,179, - 12,179,4392,1,179,1,179,1,179,1,179,1,179,3,179,4400,8,179,1,180, - 1,180,1,180,1,181,1,181,3,181,4407,8,181,1,181,1,181,1,182,1,182, - 1,182,5,182,4414,8,182,10,182,12,182,4417,9,182,1,183,1,183,1,183, - 5,183,4422,8,183,10,183,12,183,4425,9,183,1,184,1,184,1,184,1,184, - 1,184,3,184,4432,8,184,1,185,1,185,1,185,5,185,4437,8,185,10,185, - 12,185,4440,9,185,1,186,1,186,1,186,1,186,1,186,3,186,4447,8,186, - 1,187,1,187,1,187,5,187,4452,8,187,10,187,12,187,4455,9,187,1,188, - 1,188,1,188,1,188,1,188,3,188,4462,8,188,1,189,1,189,3,189,4466, - 8,189,1,189,1,189,3,189,4470,8,189,3,189,4472,8,189,1,189,1,189, - 1,190,1,190,3,190,4478,8,190,1,190,1,190,1,190,3,190,4483,8,190, - 1,191,1,191,3,191,4487,8,191,1,191,1,191,1,191,1,191,1,191,3,191, - 4494,8,191,1,192,1,192,1,192,3,192,4499,8,192,1,193,1,193,1,193, - 3,193,4504,8,193,1,193,1,193,1,193,3,193,4509,8,193,3,193,4511,8, - 193,1,193,1,193,1,194,1,194,1,194,1,195,1,195,1,195,3,195,4521,8, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195,4531,8, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,1,195,1,195,1,195,3,195,4547,8,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,5,196, - 4563,8,196,10,196,12,196,4566,9,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,3,196,4577,8,196,1,196,1,196,1,196,1,196, - 1,196,3,196,4584,8,196,1,197,1,197,1,197,1,198,1,198,1,198,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,3,199,4599,8,199,1,199,4,199, - 4602,8,199,11,199,12,199,4603,1,199,3,199,4607,8,199,1,200,1,200, - 1,200,3,200,4612,8,200,1,200,1,200,1,200,3,200,4617,8,200,1,200, - 1,200,1,200,3,200,4622,8,200,1,200,3,200,4625,8,200,1,200,3,200, - 4628,8,200,1,201,1,201,1,201,3,201,4633,8,201,1,201,1,201,1,201, - 5,201,4638,8,201,10,201,12,201,4641,9,201,1,201,3,201,4644,8,201, - 1,202,1,202,1,202,3,202,4649,8,202,1,202,1,202,1,202,5,202,4654, - 8,202,10,202,12,202,4657,9,202,1,202,3,202,4660,8,202,1,203,1,203, - 1,203,1,203,3,203,4666,8,203,1,203,1,203,1,203,1,203,1,203,1,203, - 1,203,3,203,4675,8,203,1,203,1,203,1,204,1,204,1,204,5,204,4682, - 8,204,10,204,12,204,4685,9,204,1,204,1,204,1,205,1,205,1,205,1,206, - 1,206,1,206,1,206,4,206,4696,8,206,11,206,12,206,4697,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,4711, - 8,207,1,207,1,207,1,207,1,207,3,207,4717,8,207,1,207,1,207,3,207, - 4721,8,207,3,207,4723,8,207,1,208,1,208,1,208,1,209,1,209,3,209, - 4730,8,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,3,209,4743,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 4750,8,209,3,209,4752,8,209,1,209,1,209,1,210,1,210,1,210,1,210, - 1,210,1,211,1,211,1,211,1,211,1,211,5,211,4766,8,211,10,211,12,211, - 4769,9,211,1,211,3,211,4772,8,211,1,211,1,211,3,211,4776,8,211,1, - 211,1,211,1,211,3,211,4781,8,211,1,211,1,211,1,211,3,211,4786,8, - 211,1,211,1,211,1,211,3,211,4791,8,211,1,211,1,211,1,211,3,211,4796, - 8,211,1,211,3,211,4799,8,211,1,212,1,212,1,212,1,212,1,212,1,213, - 1,213,1,213,1,213,1,213,3,213,4811,8,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3975,8,159, + 1,159,1,159,1,159,3,159,3980,8,159,1,160,1,160,1,160,1,160,3,160, + 3986,8,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,4006, + 8,160,1,160,1,160,1,160,3,160,4011,8,160,1,161,1,161,1,161,1,162, + 3,162,4017,8,162,1,162,3,162,4020,8,162,1,162,1,162,3,162,4024,8, + 162,1,162,1,162,3,162,4028,8,162,1,162,1,162,1,162,1,162,3,162,4034, + 8,162,1,162,3,162,4037,8,162,1,162,1,162,3,162,4041,8,162,1,162, + 1,162,3,162,4045,8,162,1,162,1,162,1,162,3,162,4050,8,162,1,162, + 3,162,4053,8,162,1,162,3,162,4056,8,162,1,162,3,162,4059,8,162,1, + 163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 3,164,4072,8,164,1,165,1,165,1,165,1,165,3,165,4078,8,165,1,165, + 1,165,1,165,1,165,1,165,1,165,3,165,4086,8,165,1,166,1,166,1,166, + 5,166,4091,8,166,10,166,12,166,4094,9,166,1,166,1,166,3,166,4098, + 8,166,1,166,3,166,4101,8,166,1,166,1,166,1,166,5,166,4106,8,166, + 10,166,12,166,4109,9,166,3,166,4111,8,166,1,167,1,167,1,168,1,168, + 1,168,1,168,3,168,4119,8,168,1,168,3,168,4122,8,168,1,169,1,169, + 1,169,3,169,4127,8,169,1,169,1,169,1,169,1,169,1,169,3,169,4134, + 8,169,1,169,3,169,4137,8,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,5,169, + 4155,8,169,10,169,12,169,4158,9,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,3,169,4169,8,169,1,170,3,170,4172,8,170, + 1,170,1,170,1,170,1,170,3,170,4178,8,170,1,170,5,170,4181,8,170, + 10,170,12,170,4184,9,170,1,171,1,171,1,171,1,171,5,171,4190,8,171, + 10,171,12,171,4193,9,171,1,171,1,171,1,171,1,171,1,171,3,171,4200, + 8,171,1,171,1,171,1,171,3,171,4205,8,171,1,172,1,172,1,172,1,172, + 3,172,4211,8,172,1,172,1,172,1,172,5,172,4216,8,172,10,172,12,172, + 4219,9,172,1,172,1,172,1,172,1,172,1,172,3,172,4226,8,172,1,172, + 3,172,4229,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 1,173,5,173,4240,8,173,10,173,12,173,4243,9,173,1,173,1,173,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4256,8,174, + 1,174,1,174,1,174,1,174,3,174,4262,8,174,1,174,1,174,1,174,1,174, + 1,174,1,174,3,174,4270,8,174,3,174,4272,8,174,1,175,1,175,1,176, + 1,176,3,176,4278,8,176,1,176,1,176,3,176,4282,8,176,1,176,3,176, + 4285,8,176,1,176,3,176,4288,8,176,1,176,1,176,1,176,3,176,4293,8, + 176,1,176,1,176,1,176,3,176,4298,8,176,1,176,1,176,3,176,4302,8, + 176,1,176,3,176,4305,8,176,1,176,3,176,4308,8,176,1,176,3,176,4311, + 8,176,1,176,3,176,4314,8,176,1,177,1,177,1,177,1,177,5,177,4320, + 8,177,10,177,12,177,4323,9,177,1,177,1,177,1,178,1,178,1,178,1,178, + 1,178,1,178,3,178,4333,8,178,1,178,3,178,4336,8,178,1,178,3,178, + 4339,8,178,1,178,1,178,1,178,3,178,4344,8,178,1,178,3,178,4347,8, + 178,1,178,1,178,3,178,4351,8,178,1,179,1,179,3,179,4355,8,179,1, + 179,1,179,1,179,1,179,3,179,4361,8,179,1,179,1,179,1,179,1,179,5, + 179,4367,8,179,10,179,12,179,4370,9,179,3,179,4372,8,179,1,179,1, + 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4383,8,179,10, + 179,12,179,4386,9,179,1,179,1,179,3,179,4390,8,179,3,179,4392,8, + 179,1,179,4,179,4395,8,179,11,179,12,179,4396,1,179,1,179,1,179, + 1,179,1,179,3,179,4404,8,179,1,180,1,180,1,180,1,181,1,181,3,181, + 4411,8,181,1,181,1,181,1,182,1,182,1,182,5,182,4418,8,182,10,182, + 12,182,4421,9,182,1,183,1,183,1,183,5,183,4426,8,183,10,183,12,183, + 4429,9,183,1,184,1,184,1,184,1,184,1,184,3,184,4436,8,184,1,185, + 1,185,1,185,5,185,4441,8,185,10,185,12,185,4444,9,185,1,186,1,186, + 1,186,1,186,1,186,3,186,4451,8,186,1,187,1,187,1,187,5,187,4456, + 8,187,10,187,12,187,4459,9,187,1,188,1,188,1,188,1,188,1,188,3,188, + 4466,8,188,1,189,1,189,3,189,4470,8,189,1,189,1,189,3,189,4474,8, + 189,3,189,4476,8,189,1,189,1,189,1,190,1,190,3,190,4482,8,190,1, + 190,1,190,1,190,3,190,4487,8,190,1,191,1,191,3,191,4491,8,191,1, + 191,1,191,1,191,1,191,1,191,3,191,4498,8,191,1,192,1,192,1,192,3, + 192,4503,8,192,1,193,1,193,1,193,3,193,4508,8,193,1,193,1,193,1, + 193,3,193,4513,8,193,3,193,4515,8,193,1,193,1,193,1,194,1,194,1, + 194,1,195,1,195,1,195,3,195,4525,8,195,1,195,1,195,1,195,1,195,1, + 195,1,195,1,195,1,195,3,195,4535,8,195,1,195,1,195,1,195,1,195,1, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195, + 4551,8,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,5,196,4567,8,196,10,196,12,196,4570, + 9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196, + 4581,8,196,1,196,1,196,1,196,1,196,1,196,3,196,4588,8,196,1,197, + 1,197,1,197,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, + 1,199,3,199,4603,8,199,1,199,4,199,4606,8,199,11,199,12,199,4607, + 1,199,3,199,4611,8,199,1,200,1,200,1,200,3,200,4616,8,200,1,200, + 1,200,1,200,3,200,4621,8,200,1,200,1,200,1,200,3,200,4626,8,200, + 1,200,3,200,4629,8,200,1,200,3,200,4632,8,200,1,201,1,201,1,201, + 3,201,4637,8,201,1,201,1,201,1,201,5,201,4642,8,201,10,201,12,201, + 4645,9,201,1,201,3,201,4648,8,201,1,202,1,202,1,202,3,202,4653,8, + 202,1,202,1,202,1,202,5,202,4658,8,202,10,202,12,202,4661,9,202, + 1,202,3,202,4664,8,202,1,203,1,203,1,203,1,203,3,203,4670,8,203, + 1,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4679,8,203,1,203, + 1,203,1,204,1,204,1,204,5,204,4686,8,204,10,204,12,204,4689,9,204, + 1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,206,4,206,4700, + 8,206,11,206,12,206,4701,1,207,1,207,1,207,1,207,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,3,207,4715,8,207,1,207,1,207,1,207,1,207, + 3,207,4721,8,207,1,207,1,207,3,207,4725,8,207,3,207,4727,8,207,1, + 208,1,208,1,208,1,209,1,209,3,209,4734,8,209,1,209,1,209,1,209,1, + 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,4747,8,209,1, + 209,1,209,1,209,1,209,1,209,3,209,4754,8,209,3,209,4756,8,209,1, + 209,1,209,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, + 1,211,5,211,4770,8,211,10,211,12,211,4773,9,211,1,211,3,211,4776, + 8,211,1,211,1,211,3,211,4780,8,211,1,211,1,211,1,211,3,211,4785, + 8,211,1,211,1,211,1,211,3,211,4790,8,211,1,211,1,211,1,211,3,211, + 4795,8,211,1,211,1,211,1,211,3,211,4800,8,211,1,211,3,211,4803,8, + 211,1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213, + 3,213,4815,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,3,213,4864,8,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,3,213,4873,8,213,1,213,1,213,3,213,4877,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4886,8,213,1,213,1,213, - 3,213,4890,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4899,8,213,1,213,1,213,3,213,4903,8,213,1,213,1,213,1,213,3,213, - 4908,8,213,1,213,3,213,4911,8,213,1,213,1,213,3,213,4915,8,213,1, - 213,1,213,1,213,3,213,4920,8,213,3,213,4922,8,213,1,213,1,213,1, - 213,1,213,1,213,1,213,1,213,3,213,4931,8,213,1,213,1,213,1,213,3, - 213,4936,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1, - 213,3,213,4947,8,213,1,213,1,213,3,213,4951,8,213,1,213,1,213,1, - 213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4965,8,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4973,8,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 4868,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4877, + 8,213,1,213,1,213,3,213,4881,8,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,3,213,4890,8,213,1,213,1,213,3,213,4894,8,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4903,8,213,1,213,1,213, + 3,213,4907,8,213,1,213,1,213,1,213,3,213,4912,8,213,1,213,3,213, + 4915,8,213,1,213,1,213,3,213,4919,8,213,1,213,1,213,1,213,3,213, + 4924,8,213,3,213,4926,8,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,3,213,4935,8,213,1,213,1,213,1,213,3,213,4940,8,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4951,8,213, + 1,213,1,213,3,213,4955,8,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4969,8,213,1,213,1,213, + 1,213,1,213,1,213,1,213,3,213,4977,8,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,3,213,5011,8,213,3,213,5013,8,213,1,214,1,214, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 5015,8,213,3,213,5017,8,213,1,214,1,214,1,214,1,214,1,214,1,214, 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, - 1,214,1,214,1,214,1,214,3,214,5032,8,214,1,214,3,214,5035,8,214, - 1,214,1,214,1,214,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,3,215,5062,8,215,1,215,1,215,3,215,5066,8,215, - 1,215,1,215,3,215,5070,8,215,1,215,1,215,3,215,5074,8,215,1,215, - 1,215,3,215,5078,8,215,1,215,3,215,5081,8,215,1,215,1,215,1,215, + 3,214,5036,8,214,1,214,3,214,5039,8,214,1,214,1,214,1,214,1,214, + 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215, - 5096,8,215,1,215,1,215,1,215,1,215,1,215,3,215,5103,8,215,1,216, - 1,216,1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,5,217,5115, - 8,217,10,217,12,217,5118,9,217,1,217,1,217,1,218,1,218,1,218,1,218, - 1,218,1,218,1,218,1,218,3,218,5130,8,218,1,219,1,219,1,219,1,219, - 1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5155,8,220, + 5066,8,215,1,215,1,215,3,215,5070,8,215,1,215,1,215,3,215,5074,8, + 215,1,215,1,215,3,215,5078,8,215,1,215,1,215,3,215,5082,8,215,1, + 215,3,215,5085,8,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1, + 215,1,215,1,215,1,215,1,215,1,215,3,215,5100,8,215,1,215,1,215,1, + 215,1,215,1,215,3,215,5107,8,215,1,216,1,216,1,216,1,216,1,216,1, + 216,1,217,1,217,1,217,1,217,5,217,5119,8,217,10,217,12,217,5122, + 9,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 3,218,5134,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,3,220,5159,8,220,1,220,1,220,1,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5174,8,220,1,220,1,220, + 1,220,1,220,3,220,5178,8,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5193,8,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 3,220,5189,8,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5205,8,220,1,220,1,220, - 1,220,1,220,1,220,3,220,5212,8,220,1,221,1,221,1,221,1,221,1,221, - 1,221,1,221,1,221,1,221,3,221,5223,8,221,1,221,3,221,5226,8,221, + 1,220,1,220,3,220,5209,8,220,1,220,1,220,1,220,1,220,1,220,3,220, + 5216,8,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, + 3,221,5227,8,221,1,221,3,221,5230,8,221,1,222,1,222,1,222,1,222, 1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 1,222,1,222,1,222,1,222,5,222,5243,8,222,10,222,12,222,5246,9,222, - 3,222,5248,8,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,5,223,5259,8,223,10,223,12,223,5262,9,223,1,223,3,223,5265, - 8,223,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,5285,8,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,5,224,5295,8,224, - 10,224,12,224,5298,9,224,1,224,3,224,5301,8,224,1,224,1,224,1,224, + 5,222,5247,8,222,10,222,12,222,5250,9,222,3,222,5252,8,222,1,223, + 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,5,223,5263,8,223, + 10,223,12,223,5266,9,223,1,223,3,223,5269,8,223,1,224,1,224,1,224, 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,3,224,5323,8,224,1,225,1,225, - 3,225,5327,8,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, - 3,225,5337,8,225,1,225,1,225,3,225,5341,8,225,1,225,1,225,1,225, - 1,225,3,225,5347,8,225,1,225,1,225,3,225,5351,8,225,5,225,5353,8, - 225,10,225,12,225,5356,9,225,1,225,3,225,5359,8,225,1,226,1,226, - 1,226,1,226,1,226,3,226,5366,8,226,1,227,1,227,1,227,3,227,5371, - 8,227,1,228,1,228,1,228,1,229,1,229,1,229,1,230,1,230,1,230,3,230, - 5382,8,230,1,231,1,231,3,231,5386,8,231,1,231,3,231,5389,8,231,1, - 231,1,231,1,231,3,231,5394,8,231,1,231,1,231,1,231,1,231,3,231,5400, - 8,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231, - 5411,8,231,1,231,1,231,3,231,5415,8,231,1,231,3,231,5418,8,231,1, - 231,1,231,3,231,5422,8,231,1,231,1,231,3,231,5426,8,231,1,231,3, - 231,5429,8,231,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3, - 233,5439,8,233,1,233,3,233,5442,8,233,1,234,1,234,3,234,5446,8,234, - 1,234,5,234,5449,8,234,10,234,12,234,5452,9,234,1,235,1,235,1,235, - 3,235,5457,8,235,1,235,3,235,5460,8,235,1,235,1,235,1,235,3,235, - 5465,8,235,1,235,3,235,5468,8,235,1,235,1,235,1,235,1,235,1,235, - 3,235,5475,8,235,3,235,5477,8,235,1,235,1,235,1,235,1,235,3,235, - 5483,8,235,1,235,1,235,3,235,5487,8,235,1,236,1,236,1,236,1,237, - 1,237,1,237,1,237,3,237,5496,8,237,1,237,4,237,5499,8,237,11,237, - 12,237,5500,3,237,5503,8,237,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,3,238,5513,8,238,1,238,3,238,5516,8,238,1,238,1,238, - 1,238,3,238,5521,8,238,1,239,1,239,1,239,1,239,1,239,1,239,3,239, - 5529,8,239,1,239,3,239,5532,8,239,1,239,4,239,5535,8,239,11,239, - 12,239,5536,3,239,5539,8,239,3,239,5541,8,239,1,240,1,240,1,240, - 1,240,3,240,5547,8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242, - 1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,3,243,5564,8,243, - 1,243,1,243,5,243,5568,8,243,10,243,12,243,5571,9,243,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5583,8,244, - 1,244,1,244,1,244,1,244,3,244,5589,8,244,1,244,1,244,3,244,5593, - 8,244,1,244,1,244,1,244,3,244,5598,8,244,1,245,1,245,1,245,1,245, - 1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,224,1,224,1,224,1,224,3,224,5289,8,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,5,224,5299,8,224,10,224,12,224,5302,9,224, + 1,224,3,224,5305,8,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,3,224,5327,8,224,1,225,1,225,3,225,5331,8,225,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,225,3,225,5341,8,225,1,225, + 1,225,3,225,5345,8,225,1,225,1,225,1,225,1,225,3,225,5351,8,225, + 1,225,1,225,3,225,5355,8,225,5,225,5357,8,225,10,225,12,225,5360, + 9,225,1,225,3,225,5363,8,225,1,226,1,226,1,226,1,226,1,226,3,226, + 5370,8,226,1,227,1,227,1,227,3,227,5375,8,227,1,228,1,228,1,228, + 1,229,1,229,1,229,1,230,1,230,1,230,3,230,5386,8,230,1,231,1,231, + 3,231,5390,8,231,1,231,3,231,5393,8,231,1,231,1,231,1,231,3,231, + 5398,8,231,1,231,1,231,1,231,1,231,3,231,5404,8,231,1,231,1,231, + 1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5415,8,231,1,231, + 1,231,3,231,5419,8,231,1,231,3,231,5422,8,231,1,231,1,231,3,231, + 5426,8,231,1,231,1,231,3,231,5430,8,231,1,231,3,231,5433,8,231,1, + 232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3,233,5443,8,233,1, + 233,3,233,5446,8,233,1,234,1,234,3,234,5450,8,234,1,234,5,234,5453, + 8,234,10,234,12,234,5456,9,234,1,235,1,235,1,235,3,235,5461,8,235, + 1,235,3,235,5464,8,235,1,235,1,235,1,235,3,235,5469,8,235,1,235, + 3,235,5472,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5479,8,235, + 3,235,5481,8,235,1,235,1,235,1,235,1,235,3,235,5487,8,235,1,235, + 1,235,3,235,5491,8,235,1,236,1,236,1,236,1,237,1,237,1,237,1,237, + 3,237,5500,8,237,1,237,4,237,5503,8,237,11,237,12,237,5504,3,237, + 5507,8,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, + 5517,8,238,1,238,3,238,5520,8,238,1,238,1,238,1,238,3,238,5525,8, + 238,1,239,1,239,1,239,1,239,1,239,1,239,3,239,5533,8,239,1,239,3, + 239,5536,8,239,1,239,4,239,5539,8,239,11,239,12,239,5540,3,239,5543, + 8,239,3,239,5545,8,239,1,240,1,240,1,240,1,240,3,240,5551,8,240, + 1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,242, + 1,243,1,243,1,243,1,243,3,243,5568,8,243,1,243,1,243,5,243,5572, + 8,243,10,243,12,243,5575,9,243,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,3,244,5587,8,244,1,244,1,244,1,244,1,244, + 3,244,5593,8,244,1,244,1,244,3,244,5597,8,244,1,244,1,244,1,244, + 3,244,5602,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,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,5628,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,3,246,5643,8,246,1,246, - 1,246,1,246,3,246,5648,8,246,1,247,1,247,3,247,5652,8,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,3,248, - 5665,8,248,1,248,1,248,3,248,5669,8,248,3,248,5671,8,248,1,248,1, - 248,1,248,1,248,1,248,5,248,5678,8,248,10,248,12,248,5681,9,248, - 1,248,1,248,1,248,3,248,5686,8,248,3,248,5688,8,248,1,249,1,249, - 3,249,5692,8,249,1,249,3,249,5695,8,249,1,249,3,249,5698,8,249,1, - 249,3,249,5701,8,249,1,249,3,249,5704,8,249,3,249,5706,8,249,1,249, - 3,249,5709,8,249,1,250,1,250,3,250,5713,8,250,1,250,1,250,1,250, - 1,250,5,250,5719,8,250,10,250,12,250,5722,9,250,1,250,1,250,3,250, - 5726,8,250,1,250,3,250,5729,8,250,1,251,1,251,1,252,1,252,3,252, - 5735,8,252,1,252,1,252,3,252,5739,8,252,1,253,1,253,3,253,5743,8, - 253,1,253,1,253,1,253,3,253,5748,8,253,3,253,5750,8,253,1,254,1, - 254,3,254,5754,8,254,1,255,1,255,3,255,5758,8,255,1,256,1,256,1, - 256,5,256,5763,8,256,10,256,12,256,5766,9,256,1,257,1,257,1,257, - 3,257,5771,8,257,1,257,1,257,3,257,5775,8,257,3,257,5777,8,257,3, - 257,5779,8,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1, - 258,1,258,1,258,3,258,5792,8,258,1,259,1,259,1,259,1,259,5,259,5798, - 8,259,10,259,12,259,5801,9,259,1,259,1,259,1,260,1,260,1,260,3,260, - 5808,8,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,5,261,5817, - 8,261,10,261,12,261,5820,9,261,1,261,1,261,1,262,1,262,1,262,1,262, - 1,262,3,262,5829,8,262,1,263,1,263,1,263,3,263,5834,8,263,1,263, - 1,263,3,263,5838,8,263,1,263,1,263,3,263,5842,8,263,1,263,1,263, - 1,263,1,263,1,263,3,263,5849,8,263,1,263,3,263,5852,8,263,3,263, - 5854,8,263,1,264,1,264,1,264,1,264,1,265,1,265,3,265,5862,8,265, - 1,265,1,265,3,265,5866,8,265,1,266,3,266,5869,8,266,1,266,1,266, - 1,266,1,266,1,266,3,266,5876,8,266,1,266,1,266,1,266,1,266,1,266, - 3,266,5883,8,266,1,266,1,266,1,266,3,266,5888,8,266,1,266,1,266, - 1,266,1,266,1,266,3,266,5895,8,266,1,266,3,266,5898,8,266,3,266, - 5900,8,266,1,266,3,266,5903,8,266,1,267,1,267,1,267,1,267,3,267, - 5909,8,267,1,267,1,267,1,267,3,267,5914,8,267,1,267,1,267,3,267, - 5918,8,267,1,268,1,268,1,268,5,268,5923,8,268,10,268,12,268,5926, - 9,268,1,269,1,269,1,269,1,270,1,270,1,270,1,271,3,271,5935,8,271, - 1,271,1,271,1,271,1,271,1,271,3,271,5942,8,271,1,271,3,271,5945, - 8,271,1,271,3,271,5948,8,271,1,272,1,272,3,272,5952,8,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,3,272,5963,8,272, - 1,272,3,272,5966,8,272,1,272,3,272,5969,8,272,1,272,3,272,5972,8, - 272,1,273,3,273,5975,8,273,1,273,1,273,1,273,1,273,1,273,3,273,5982, - 8,273,1,273,3,273,5985,8,273,1,273,3,273,5988,8,273,1,274,1,274, - 1,274,5,274,5993,8,274,10,274,12,274,5996,9,274,1,275,1,275,1,275, - 1,275,1,275,1,275,1,275,1,275,1,275,3,275,6007,8,275,1,275,1,275, - 1,275,1,275,1,275,3,275,6014,8,275,3,275,6016,8,275,1,276,1,276, - 1,276,3,276,6021,8,276,1,276,1,276,1,276,5,276,6026,8,276,10,276, - 12,276,6029,9,276,1,276,1,276,1,276,3,276,6034,8,276,1,276,1,276, - 1,276,1,277,1,277,3,277,6041,8,277,1,278,1,278,1,278,3,278,6046, - 8,278,1,278,1,278,1,279,3,279,6051,8,279,1,279,1,279,3,279,6055, - 8,279,1,279,1,279,3,279,6059,8,279,1,279,1,279,3,279,6063,8,279, - 3,279,6065,8,279,1,280,1,280,3,280,6069,8,280,1,281,1,281,3,281, - 6073,8,281,1,281,3,281,6076,8,281,1,281,3,281,6079,8,281,3,281,6081, - 8,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6091, - 8,281,3,281,6093,8,281,1,281,1,281,1,281,3,281,6098,8,281,5,281, - 6100,8,281,10,281,12,281,6103,9,281,1,282,1,282,3,282,6107,8,282, - 1,283,1,283,3,283,6111,8,283,1,283,1,283,1,283,5,283,6116,8,283, - 10,283,12,283,6119,9,283,1,284,1,284,3,284,6123,8,284,1,284,1,284, - 3,284,6127,8,284,1,284,3,284,6130,8,284,1,284,1,284,1,284,1,284, - 3,284,6136,8,284,1,284,3,284,6139,8,284,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,3,286,6158,8,286,1,286,1,286,1,286,1,287,1,287,3,287, - 6165,8,287,1,287,1,287,3,287,6169,8,287,1,288,3,288,6172,8,288,1, - 288,1,288,3,288,6176,8,288,1,288,1,288,3,288,6180,8,288,1,288,3, - 288,6183,8,288,1,288,3,288,6186,8,288,1,289,1,289,1,289,3,289,6191, - 8,289,1,290,1,290,1,290,1,290,1,290,5,290,6198,8,290,10,290,12,290, - 6201,9,290,1,291,1,291,1,291,1,291,3,291,6207,8,291,1,291,1,291, - 3,291,6211,8,291,1,292,1,292,3,292,6215,8,292,1,292,1,292,3,292, - 6219,8,292,1,292,3,292,6222,8,292,3,292,6224,8,292,1,293,1,293,1, - 293,3,293,6229,8,293,1,293,1,293,3,293,6233,8,293,1,294,1,294,1, - 294,3,294,6238,8,294,1,294,1,294,1,294,1,294,3,294,6244,8,294,1, - 295,1,295,1,295,1,295,1,295,3,295,6251,8,295,1,296,1,296,1,296,3, - 296,6256,8,296,1,297,1,297,1,297,3,297,6261,8,297,1,297,1,297,1, - 298,1,298,1,298,5,298,6268,8,298,10,298,12,298,6271,9,298,1,299, - 1,299,1,299,1,299,3,299,6277,8,299,1,299,1,299,1,299,1,299,5,299, - 6283,8,299,10,299,12,299,6286,9,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,3,299,6296,8,299,1,300,1,300,1,300,3,300,6301, - 8,300,1,300,1,300,3,300,6305,8,300,1,300,3,300,6308,8,300,1,300, - 1,300,3,300,6312,8,300,1,300,1,300,1,300,3,300,6317,8,300,4,300, - 6319,8,300,11,300,12,300,6320,1,300,1,300,1,300,3,300,6326,8,300, - 1,301,1,301,1,301,1,301,5,301,6332,8,301,10,301,12,301,6335,9,301, - 1,302,1,302,1,302,1,303,1,303,1,303,5,303,6343,8,303,10,303,12,303, - 6346,9,303,1,304,1,304,3,304,6350,8,304,1,304,1,304,3,304,6354,8, - 304,1,304,3,304,6357,8,304,1,304,3,304,6360,8,304,3,304,6362,8,304, - 1,304,3,304,6365,8,304,1,304,3,304,6368,8,304,1,304,3,304,6371,8, - 304,1,304,1,304,3,304,6375,8,304,1,304,1,304,3,304,6379,8,304,1, - 304,1,304,3,304,6383,8,304,3,304,6385,8,304,1,304,1,304,1,304,1, - 304,1,304,1,304,1,304,3,304,6394,8,304,1,304,1,304,1,304,3,304,6399, - 8,304,1,304,1,304,1,304,1,304,3,304,6405,8,304,1,304,1,304,3,304, - 6409,8,304,3,304,6411,8,304,1,304,1,304,1,304,1,304,1,304,3,304, - 6418,8,304,1,304,1,304,1,304,3,304,6423,8,304,1,304,1,304,1,304, - 1,304,5,304,6429,8,304,10,304,12,304,6432,9,304,1,305,3,305,6435, - 8,305,1,305,1,305,1,305,1,305,1,305,3,305,6442,8,305,1,306,1,306, - 1,306,3,306,6447,8,306,1,306,3,306,6450,8,306,1,306,1,306,1,306, - 1,306,3,306,6456,8,306,1,307,1,307,3,307,6460,8,307,1,308,1,308, - 1,308,1,308,3,308,6466,8,308,1,309,1,309,1,309,1,309,1,309,1,309, - 1,309,3,309,6475,8,309,1,309,1,309,1,309,1,309,3,309,6481,8,309, - 3,309,6483,8,309,1,310,1,310,1,310,3,310,6488,8,310,1,310,3,310, - 6491,8,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,3,310,6500, - 8,310,1,310,1,310,1,310,1,310,1,310,3,310,6507,8,310,3,310,6509, - 8,310,1,311,1,311,1,311,5,311,6514,8,311,10,311,12,311,6517,9,311, - 1,312,1,312,3,312,6521,8,312,1,312,3,312,6524,8,312,1,313,1,313, - 1,313,1,313,1,313,1,313,1,313,1,313,3,313,6534,8,313,1,314,1,314, - 1,314,1,314,1,314,1,314,1,314,5,314,6543,8,314,10,314,12,314,6546, - 9,314,1,314,1,314,3,314,6550,8,314,1,314,1,314,3,314,6554,8,314, - 1,315,1,315,1,315,1,315,1,315,1,315,3,315,6562,8,315,1,316,1,316, - 1,316,1,317,1,317,1,317,1,317,1,317,3,317,6572,8,317,1,318,1,318, - 1,318,5,318,6577,8,318,10,318,12,318,6580,9,318,1,319,1,319,1,319, - 3,319,6585,8,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,5,320, - 6594,8,320,10,320,12,320,6597,9,320,1,320,1,320,1,320,3,320,6602, - 8,320,1,320,1,320,1,320,1,320,1,320,1,320,5,320,6610,8,320,10,320, - 12,320,6613,9,320,1,320,1,320,1,321,1,321,1,321,1,321,3,321,6621, - 8,321,1,321,1,321,3,321,6625,8,321,1,321,4,321,6628,8,321,11,321, - 12,321,6629,3,321,6632,8,321,1,321,1,321,3,321,6636,8,321,1,322, - 1,322,1,322,1,322,1,322,1,322,3,322,6644,8,322,1,323,3,323,6647, - 8,323,1,323,1,323,1,323,3,323,6652,8,323,1,323,5,323,6655,8,323, - 10,323,12,323,6658,9,323,1,323,1,323,1,323,1,323,3,323,6664,8,323, - 3,323,6666,8,323,1,323,1,323,1,323,1,323,3,323,6672,8,323,1,324, - 1,324,3,324,6676,8,324,1,324,3,324,6679,8,324,1,324,1,324,1,324, - 3,324,6684,8,324,1,324,3,324,6687,8,324,3,324,6689,8,324,1,325,1, - 325,1,325,1,325,3,325,6695,8,325,1,326,1,326,1,326,1,326,1,326,1, - 326,1,326,3,326,6704,8,326,1,326,1,326,1,326,1,326,3,326,6710,8, - 326,1,326,3,326,6713,8,326,1,327,1,327,1,327,1,327,1,328,1,328,3, - 328,6721,8,328,1,328,3,328,6724,8,328,1,329,1,329,3,329,6728,8,329, - 1,329,1,329,1,329,1,329,3,329,6734,8,329,3,329,6736,8,329,1,329, - 3,329,6739,8,329,1,330,1,330,3,330,6743,8,330,1,330,1,330,1,330, - 3,330,6748,8,330,1,331,1,331,1,331,1,331,1,331,3,331,6755,8,331, - 1,331,1,331,1,331,1,331,1,331,3,331,6762,8,331,3,331,6764,8,331, - 1,331,1,331,1,331,1,331,3,331,6770,8,331,3,331,6772,8,331,1,331, - 1,331,1,331,3,331,6777,8,331,3,331,6779,8,331,1,332,1,332,3,332, - 6783,8,332,1,333,1,333,1,334,1,334,1,335,1,335,1,335,3,335,6792, - 8,335,1,335,1,335,3,335,6796,8,335,1,335,1,335,1,335,1,335,1,335, - 1,335,5,335,6804,8,335,10,335,12,335,6807,9,335,1,336,1,336,1,336, - 1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,3,336,6820,8,336, - 1,336,3,336,6823,8,336,1,336,1,336,1,336,1,336,1,336,1,336,3,336, - 6831,8,336,1,336,1,336,1,336,1,336,1,336,5,336,6838,8,336,10,336, - 12,336,6841,9,336,1,336,1,336,1,336,3,336,6846,8,336,1,336,1,336, - 1,336,3,336,6851,8,336,1,336,1,336,1,336,1,336,1,336,1,336,3,336, - 6859,8,336,3,336,6861,8,336,1,336,1,336,1,336,3,336,6866,8,336,1, - 336,1,336,3,336,6870,8,336,1,336,1,336,1,336,3,336,6875,8,336,1, - 336,1,336,1,336,3,336,6880,8,336,1,337,1,337,1,337,1,337,3,337,6886, - 8,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,5,337,6902,8,337,10,337,12,337,6905,9,337, - 1,338,1,338,1,338,1,338,1,338,1,338,3,338,6913,8,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 3,338,6928,8,338,1,338,1,338,1,338,3,338,6933,8,338,1,338,3,338, - 6936,8,338,1,338,1,338,1,338,1,338,3,338,6942,8,338,1,338,1,338, - 1,338,3,338,6947,8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,3,338,6960,8,338,1,338,4,338,6963,8,338, - 11,338,12,338,6964,1,338,1,338,3,338,6969,8,338,1,338,1,338,1,338, - 1,338,1,338,3,338,6976,8,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5632, + 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,3,246,5647,8,246,1,246,1,246,1,246,3,246,5652, + 8,246,1,247,1,247,3,247,5656,8,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,248,1,248,3,248,5669,8,248,1,248,1,248, + 3,248,5673,8,248,3,248,5675,8,248,1,248,1,248,1,248,1,248,1,248, + 5,248,5682,8,248,10,248,12,248,5685,9,248,1,248,1,248,1,248,3,248, + 5690,8,248,3,248,5692,8,248,1,249,1,249,3,249,5696,8,249,1,249,3, + 249,5699,8,249,1,249,3,249,5702,8,249,1,249,3,249,5705,8,249,1,249, + 3,249,5708,8,249,3,249,5710,8,249,1,249,3,249,5713,8,249,1,250,1, + 250,3,250,5717,8,250,1,250,1,250,1,250,1,250,5,250,5723,8,250,10, + 250,12,250,5726,9,250,1,250,1,250,3,250,5730,8,250,1,250,3,250,5733, + 8,250,1,251,1,251,1,252,1,252,3,252,5739,8,252,1,252,1,252,3,252, + 5743,8,252,1,253,1,253,3,253,5747,8,253,1,253,1,253,1,253,3,253, + 5752,8,253,3,253,5754,8,253,1,254,1,254,3,254,5758,8,254,1,255,1, + 255,3,255,5762,8,255,1,256,1,256,1,256,5,256,5767,8,256,10,256,12, + 256,5770,9,256,1,257,1,257,1,257,3,257,5775,8,257,1,257,1,257,3, + 257,5779,8,257,3,257,5781,8,257,3,257,5783,8,257,1,257,1,257,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5796,8,258, + 1,259,1,259,1,259,1,259,5,259,5802,8,259,10,259,12,259,5805,9,259, + 1,259,1,259,1,260,1,260,1,260,3,260,5812,8,260,1,260,1,260,1,260, + 1,261,1,261,1,261,1,261,5,261,5821,8,261,10,261,12,261,5824,9,261, + 1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262,5833,8,262,1,263, + 1,263,1,263,3,263,5838,8,263,1,263,1,263,3,263,5842,8,263,1,263, + 1,263,3,263,5846,8,263,1,263,1,263,1,263,1,263,1,263,3,263,5853, + 8,263,1,263,3,263,5856,8,263,3,263,5858,8,263,1,264,1,264,1,264, + 1,264,1,265,1,265,3,265,5866,8,265,1,265,1,265,3,265,5870,8,265, + 1,266,3,266,5873,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5880, + 8,266,1,266,1,266,1,266,1,266,1,266,3,266,5887,8,266,1,266,1,266, + 1,266,3,266,5892,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5899, + 8,266,1,266,3,266,5902,8,266,3,266,5904,8,266,1,266,3,266,5907,8, + 266,1,267,1,267,1,267,1,267,3,267,5913,8,267,1,267,1,267,1,267,3, + 267,5918,8,267,1,267,1,267,3,267,5922,8,267,1,268,1,268,1,268,5, + 268,5927,8,268,10,268,12,268,5930,9,268,1,269,1,269,1,269,1,270, + 1,270,1,270,1,271,3,271,5939,8,271,1,271,1,271,1,271,1,271,1,271, + 3,271,5946,8,271,1,271,3,271,5949,8,271,1,271,3,271,5952,8,271,1, + 272,1,272,3,272,5956,8,272,1,272,1,272,1,272,1,272,1,272,1,272,1, + 272,1,272,1,272,3,272,5967,8,272,1,272,3,272,5970,8,272,1,272,3, + 272,5973,8,272,1,272,3,272,5976,8,272,1,273,3,273,5979,8,273,1,273, + 1,273,1,273,1,273,1,273,3,273,5986,8,273,1,273,3,273,5989,8,273, + 1,273,3,273,5992,8,273,1,274,1,274,1,274,5,274,5997,8,274,10,274, + 12,274,6000,9,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,3,275,6011,8,275,1,275,1,275,1,275,1,275,1,275,3,275,6018, + 8,275,3,275,6020,8,275,1,276,1,276,1,276,3,276,6025,8,276,1,276, + 1,276,1,276,5,276,6030,8,276,10,276,12,276,6033,9,276,1,276,1,276, + 1,276,3,276,6038,8,276,1,276,1,276,1,276,1,277,1,277,3,277,6045, + 8,277,1,278,1,278,1,278,3,278,6050,8,278,1,278,1,278,1,279,3,279, + 6055,8,279,1,279,1,279,3,279,6059,8,279,1,279,1,279,3,279,6063,8, + 279,1,279,1,279,3,279,6067,8,279,3,279,6069,8,279,1,280,1,280,3, + 280,6073,8,280,1,281,1,281,3,281,6077,8,281,1,281,3,281,6080,8,281, + 1,281,3,281,6083,8,281,3,281,6085,8,281,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,3,281,6095,8,281,3,281,6097,8,281,1,281, + 1,281,1,281,3,281,6102,8,281,5,281,6104,8,281,10,281,12,281,6107, + 9,281,1,282,1,282,3,282,6111,8,282,1,283,1,283,3,283,6115,8,283, + 1,283,1,283,1,283,5,283,6120,8,283,10,283,12,283,6123,9,283,1,284, + 1,284,3,284,6127,8,284,1,284,1,284,3,284,6131,8,284,1,284,3,284, + 6134,8,284,1,284,1,284,1,284,1,284,3,284,6140,8,284,1,284,3,284, + 6143,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286, + 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,6162,8,286, + 1,286,1,286,1,286,1,287,1,287,3,287,6169,8,287,1,287,1,287,3,287, + 6173,8,287,1,288,3,288,6176,8,288,1,288,1,288,3,288,6180,8,288,1, + 288,1,288,3,288,6184,8,288,1,288,3,288,6187,8,288,1,288,3,288,6190, + 8,288,1,289,1,289,1,289,3,289,6195,8,289,1,290,1,290,1,290,1,290, + 1,290,5,290,6202,8,290,10,290,12,290,6205,9,290,1,291,1,291,1,291, + 1,291,3,291,6211,8,291,1,291,1,291,3,291,6215,8,291,1,292,1,292, + 3,292,6219,8,292,1,292,1,292,3,292,6223,8,292,1,292,3,292,6226,8, + 292,3,292,6228,8,292,1,293,1,293,1,293,3,293,6233,8,293,1,293,1, + 293,3,293,6237,8,293,1,294,1,294,1,294,3,294,6242,8,294,1,294,1, + 294,1,294,1,294,3,294,6248,8,294,1,295,1,295,1,295,1,295,1,295,3, + 295,6255,8,295,1,296,1,296,1,296,3,296,6260,8,296,1,297,1,297,1, + 297,3,297,6265,8,297,1,297,1,297,1,298,1,298,1,298,5,298,6272,8, + 298,10,298,12,298,6275,9,298,1,299,1,299,1,299,1,299,3,299,6281, + 8,299,1,299,1,299,1,299,1,299,5,299,6287,8,299,10,299,12,299,6290, + 9,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,6300, + 8,299,1,300,1,300,1,300,3,300,6305,8,300,1,300,1,300,3,300,6309, + 8,300,1,300,3,300,6312,8,300,1,300,1,300,3,300,6316,8,300,1,300, + 1,300,1,300,3,300,6321,8,300,4,300,6323,8,300,11,300,12,300,6324, + 1,300,1,300,1,300,3,300,6330,8,300,1,301,1,301,1,301,1,301,5,301, + 6336,8,301,10,301,12,301,6339,9,301,1,302,1,302,1,302,1,303,1,303, + 1,303,5,303,6347,8,303,10,303,12,303,6350,9,303,1,304,1,304,3,304, + 6354,8,304,1,304,1,304,3,304,6358,8,304,1,304,3,304,6361,8,304,1, + 304,3,304,6364,8,304,3,304,6366,8,304,1,304,3,304,6369,8,304,1,304, + 3,304,6372,8,304,1,304,3,304,6375,8,304,1,304,1,304,3,304,6379,8, + 304,1,304,1,304,3,304,6383,8,304,1,304,1,304,3,304,6387,8,304,3, + 304,6389,8,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,6398, + 8,304,1,304,1,304,1,304,3,304,6403,8,304,1,304,1,304,1,304,1,304, + 3,304,6409,8,304,1,304,1,304,3,304,6413,8,304,3,304,6415,8,304,1, + 304,1,304,1,304,1,304,1,304,3,304,6422,8,304,1,304,1,304,1,304,3, + 304,6427,8,304,1,304,1,304,1,304,1,304,5,304,6433,8,304,10,304,12, + 304,6436,9,304,1,305,3,305,6439,8,305,1,305,1,305,1,305,1,305,1, + 305,3,305,6446,8,305,1,306,1,306,1,306,3,306,6451,8,306,1,306,3, + 306,6454,8,306,1,306,1,306,1,306,1,306,3,306,6460,8,306,1,307,1, + 307,3,307,6464,8,307,1,308,1,308,1,308,1,308,3,308,6470,8,308,1, + 309,1,309,1,309,1,309,1,309,1,309,1,309,3,309,6479,8,309,1,309,1, + 309,1,309,1,309,3,309,6485,8,309,3,309,6487,8,309,1,310,1,310,1, + 310,3,310,6492,8,310,1,310,3,310,6495,8,310,1,310,1,310,1,310,1, + 310,1,310,1,310,1,310,3,310,6504,8,310,1,310,1,310,1,310,1,310,1, + 310,3,310,6511,8,310,3,310,6513,8,310,1,311,1,311,1,311,5,311,6518, + 8,311,10,311,12,311,6521,9,311,1,312,1,312,3,312,6525,8,312,1,312, + 3,312,6528,8,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,313, + 3,313,6538,8,313,1,314,1,314,1,314,1,314,1,314,1,314,1,314,5,314, + 6547,8,314,10,314,12,314,6550,9,314,1,314,1,314,3,314,6554,8,314, + 1,314,1,314,3,314,6558,8,314,1,315,1,315,1,315,1,315,1,315,1,315, + 3,315,6566,8,315,1,316,1,316,1,316,1,317,1,317,1,317,1,317,1,317, + 3,317,6576,8,317,1,318,1,318,1,318,5,318,6581,8,318,10,318,12,318, + 6584,9,318,1,319,1,319,1,319,3,319,6589,8,319,1,320,1,320,1,320, + 1,320,1,320,1,320,1,320,5,320,6598,8,320,10,320,12,320,6601,9,320, + 1,320,1,320,1,320,3,320,6606,8,320,1,320,1,320,1,320,1,320,1,320, + 1,320,5,320,6614,8,320,10,320,12,320,6617,9,320,1,320,1,320,1,321, + 1,321,1,321,1,321,3,321,6625,8,321,1,321,1,321,3,321,6629,8,321, + 1,321,4,321,6632,8,321,11,321,12,321,6633,3,321,6636,8,321,1,321, + 1,321,3,321,6640,8,321,1,322,1,322,1,322,1,322,1,322,1,322,3,322, + 6648,8,322,1,323,3,323,6651,8,323,1,323,1,323,1,323,3,323,6656,8, + 323,1,323,5,323,6659,8,323,10,323,12,323,6662,9,323,1,323,1,323, + 1,323,1,323,3,323,6668,8,323,3,323,6670,8,323,1,323,1,323,1,323, + 1,323,3,323,6676,8,323,1,324,1,324,3,324,6680,8,324,1,324,3,324, + 6683,8,324,1,324,1,324,1,324,3,324,6688,8,324,1,324,3,324,6691,8, + 324,3,324,6693,8,324,1,325,1,325,1,325,1,325,3,325,6699,8,325,1, + 326,1,326,1,326,1,326,1,326,1,326,1,326,3,326,6708,8,326,1,326,1, + 326,1,326,1,326,3,326,6714,8,326,1,326,3,326,6717,8,326,1,327,1, + 327,1,327,1,327,1,328,1,328,3,328,6725,8,328,1,328,3,328,6728,8, + 328,1,329,1,329,3,329,6732,8,329,1,329,1,329,1,329,1,329,3,329,6738, + 8,329,3,329,6740,8,329,1,329,3,329,6743,8,329,1,330,1,330,3,330, + 6747,8,330,1,330,1,330,1,330,3,330,6752,8,330,1,331,1,331,1,331, + 1,331,1,331,3,331,6759,8,331,1,331,1,331,1,331,1,331,1,331,3,331, + 6766,8,331,3,331,6768,8,331,1,331,1,331,1,331,1,331,3,331,6774,8, + 331,3,331,6776,8,331,1,331,1,331,1,331,3,331,6781,8,331,3,331,6783, + 8,331,1,332,1,332,3,332,6787,8,332,1,333,1,333,1,334,1,334,1,335, + 1,335,1,335,3,335,6796,8,335,1,335,1,335,3,335,6800,8,335,1,335, + 1,335,1,335,1,335,1,335,1,335,5,335,6808,8,335,10,335,12,335,6811, + 9,335,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336, + 1,336,3,336,6824,8,336,1,336,3,336,6827,8,336,1,336,1,336,1,336, + 1,336,1,336,1,336,3,336,6835,8,336,1,336,1,336,1,336,1,336,1,336, + 5,336,6842,8,336,10,336,12,336,6845,9,336,1,336,1,336,1,336,3,336, + 6850,8,336,1,336,1,336,1,336,3,336,6855,8,336,1,336,1,336,1,336, + 1,336,1,336,1,336,3,336,6863,8,336,3,336,6865,8,336,1,336,1,336, + 1,336,3,336,6870,8,336,1,336,1,336,3,336,6874,8,336,1,336,1,336, + 1,336,3,336,6879,8,336,1,336,1,336,1,336,3,336,6884,8,336,1,337, + 1,337,1,337,1,337,3,337,6890,8,337,1,337,1,337,1,337,1,337,1,337, + 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,5,337,6906, + 8,337,10,337,12,337,6909,9,337,1,338,1,338,1,338,1,338,1,338,1,338, + 3,338,6917,8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,338,1,338,1,338,1,338,1,338,3,338,6932,8,338,1,338,1,338,1,338, + 3,338,6937,8,338,1,338,3,338,6940,8,338,1,338,1,338,1,338,1,338, + 3,338,6946,8,338,1,338,1,338,1,338,3,338,6951,8,338,1,338,1,338, + 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,6964, + 8,338,1,338,4,338,6967,8,338,11,338,12,338,6968,1,338,1,338,3,338, + 6973,8,338,1,338,1,338,1,338,1,338,1,338,3,338,6980,8,338,1,338, 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 3,338,6995,8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,3,338,7007,8,338,1,338,1,338,1,338,3,338,7012,8,338, - 1,338,1,338,1,338,1,338,1,338,1,338,3,338,7020,8,338,5,338,7022, - 8,338,10,338,12,338,7025,9,338,1,339,1,339,1,339,1,339,1,339,1,339, - 3,339,7033,8,339,1,339,3,339,7036,8,339,1,339,1,339,1,339,3,339, - 7041,8,339,1,339,1,339,1,339,3,339,7046,8,339,1,339,3,339,7049,8, - 339,1,339,1,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340, - 7060,8,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340,7068,8,340, - 1,340,1,340,1,340,3,340,7073,8,340,3,340,7075,8,340,1,340,3,340, - 7078,8,340,1,341,1,341,3,341,7082,8,341,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,3,342,7093,8,342,1,342,1,342,1,342, + 1,338,1,338,1,338,1,338,1,338,1,338,3,338,7000,8,338,1,338,1,338, + 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,7012,8,338, + 1,338,1,338,1,338,3,338,7017,8,338,1,338,1,338,1,338,1,338,1,338, + 1,338,3,338,7025,8,338,5,338,7027,8,338,10,338,12,338,7030,9,338, + 1,339,1,339,1,339,1,339,1,339,1,339,3,339,7038,8,339,1,339,3,339, + 7041,8,339,1,339,1,339,1,339,3,339,7046,8,339,1,339,1,339,1,339, + 3,339,7051,8,339,1,339,3,339,7054,8,339,1,339,1,339,1,340,1,340, + 1,340,1,340,1,340,1,340,1,340,3,340,7065,8,340,1,340,1,340,1,340, + 1,340,1,340,1,340,3,340,7073,8,340,1,340,1,340,1,340,3,340,7078, + 8,340,3,340,7080,8,340,1,340,3,340,7083,8,340,1,341,1,341,3,341, + 7087,8,341,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,7098,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,3,342,7114,8,342,1,342,1,342,1,342, - 1,342,1,342,1,342,3,342,7122,8,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7135,8,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7145,8,342,1,342,1,342, - 1,342,1,342,3,342,7151,8,342,1,342,1,342,1,342,1,342,3,342,7157, - 8,342,1,342,3,342,7160,8,342,1,342,3,342,7163,8,342,1,342,1,342, + 3,342,7119,8,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7127, + 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,3,342,7140,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,3,342,7150,8,342,1,342,1,342,1,342,1,342,3,342,7156,8,342, + 1,342,1,342,1,342,1,342,3,342,7162,8,342,1,342,3,342,7165,8,342, + 1,342,3,342,7168,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7189,8,342,3,342,7191,8,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,3,342,7212,8,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,3,342,7222,8,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7235,8,342,1,342,1,342, - 1,342,3,342,7240,8,342,1,342,1,342,3,342,7244,8,342,3,342,7246,8, - 342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7258,8,342,1,343,1,343,1,343,5,343,7263,8,343,10,343,12,343, - 7266,9,343,1,344,1,344,1,344,3,344,7271,8,344,1,345,1,345,1,346, - 1,346,3,346,7277,8,346,1,346,1,346,3,346,7281,8,346,1,347,1,347, - 1,347,1,348,1,348,1,348,1,348,5,348,7290,8,348,10,348,12,348,7293, - 9,348,1,349,1,349,1,349,1,349,1,350,1,350,1,350,3,350,7302,8,350, - 1,351,1,351,3,351,7306,8,351,1,351,1,351,1,351,3,351,7311,8,351, - 1,351,3,351,7314,8,351,1,351,3,351,7317,8,351,1,351,1,351,1,352, - 1,352,1,352,1,352,1,352,3,352,7326,8,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,3,352,7337,8,352,3,352,7339,8,352, - 1,353,1,353,3,353,7343,8,353,1,353,1,353,1,353,3,353,7348,8,353, - 1,354,1,354,1,354,1,354,1,354,1,354,1,354,3,354,7357,8,354,1,355, - 1,355,1,355,3,355,7362,8,355,1,355,1,355,1,356,1,356,1,357,1,357, - 3,357,7370,8,357,1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359, - 3,359,7380,8,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7388, - 8,360,1,361,1,361,3,361,7392,8,361,1,361,3,361,7395,8,361,1,362, - 1,362,1,362,5,362,7400,8,362,10,362,12,362,7403,9,362,1,363,1,363, - 1,363,1,363,1,363,3,363,7410,8,363,1,364,1,364,3,364,7414,8,364, - 1,365,1,365,1,365,5,365,7419,8,365,10,365,12,365,7422,9,365,1,366, - 1,366,1,366,1,366,1,366,3,366,7429,8,366,3,366,7431,8,366,1,367, - 1,367,1,367,1,367,1,367,5,367,7438,8,367,10,367,12,367,7441,9,367, - 3,367,7443,8,367,1,367,1,367,1,368,1,368,1,368,1,368,1,368,1,368, - 1,368,1,368,3,368,7455,8,368,1,369,1,369,1,370,1,370,1,370,1,370, - 1,370,3,370,7464,8,370,1,370,1,370,1,370,1,370,1,370,3,370,7471, - 8,370,1,370,1,370,1,370,1,370,1,370,1,370,1,370,3,370,7480,8,370, - 1,371,1,371,1,371,1,371,1,371,1,372,1,372,1,372,3,372,7490,8,372, - 1,372,1,372,1,372,3,372,7495,8,372,1,372,1,372,3,372,7499,8,372, - 3,372,7501,8,372,1,372,3,372,7504,8,372,1,373,4,373,7507,8,373,11, - 373,12,373,7508,1,374,5,374,7512,8,374,10,374,12,374,7515,9,374, - 1,375,1,375,1,375,5,375,7520,8,375,10,375,12,375,7523,9,375,1,376, - 1,376,1,376,1,376,1,376,3,376,7530,8,376,1,376,3,376,7533,8,376, - 1,377,1,377,1,377,5,377,7538,8,377,10,377,12,377,7541,9,377,1,378, - 1,378,1,378,5,378,7546,8,378,10,378,12,378,7549,9,378,1,379,1,379, - 1,379,5,379,7554,8,379,10,379,12,379,7557,9,379,1,380,1,380,1,380, - 5,380,7562,8,380,10,380,12,380,7565,9,380,1,381,1,381,1,382,1,382, - 1,383,1,383,1,384,1,384,1,385,1,385,1,386,1,386,1,387,1,387,3,387, - 7581,8,387,1,388,1,388,1,388,5,388,7586,8,388,10,388,12,388,7589, - 9,388,1,389,1,389,1,389,5,389,7594,8,389,10,389,12,389,7597,9,389, - 1,390,1,390,1,391,1,391,1,392,1,392,1,393,1,393,1,394,1,394,1,395, - 1,395,1,395,1,395,3,395,7613,8,395,1,396,1,396,1,396,1,396,3,396, - 7619,8,396,1,397,1,397,1,397,1,397,3,397,7625,8,397,1,398,1,398, - 1,399,1,399,1,399,1,399,3,399,7633,8,399,1,400,1,400,1,400,1,400, - 3,400,7639,8,400,1,401,1,401,1,401,3,401,7644,8,401,1,402,1,402, - 1,402,1,402,5,402,7650,8,402,10,402,12,402,7653,9,402,1,402,1,402, - 3,402,7657,8,402,1,403,3,403,7660,8,403,1,403,1,403,1,404,1,404, - 1,404,1,404,1,404,3,404,7669,8,404,1,405,1,405,1,405,5,405,7674, - 8,405,10,405,12,405,7677,9,405,1,406,1,406,3,406,7681,8,406,1,407, - 1,407,3,407,7685,8,407,1,408,1,408,1,408,3,408,7690,8,408,1,409, - 1,409,1,409,1,409,3,409,7696,8,409,1,410,1,410,1,410,3,410,7701, - 8,410,1,410,1,410,1,410,1,410,1,410,1,410,3,410,7709,8,410,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,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,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,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,7764,8,412, - 1,413,1,413,1,414,1,414,1,415,3,415,7771,8,415,1,415,1,415,1,415, - 1,415,4,415,7777,8,415,11,415,12,415,7778,3,415,7781,8,415,3,415, - 7783,8,415,1,415,1,415,5,415,7787,8,415,10,415,12,415,7790,9,415, - 1,415,3,415,7793,8,415,1,415,1,415,3,415,7797,8,415,1,416,1,416, - 1,416,1,416,1,417,1,417,1,417,1,417,1,417,3,417,7808,8,417,1,417, - 3,417,7811,8,417,1,417,1,417,3,417,7815,8,417,1,417,1,417,3,417, - 7819,8,417,1,417,1,417,3,417,7823,8,417,1,417,3,417,7826,8,417,1, - 417,3,417,7829,8,417,1,417,3,417,7832,8,417,1,417,1,417,1,417,1, - 417,1,417,5,417,7839,8,417,10,417,12,417,7842,9,417,1,417,1,417, - 3,417,7846,8,417,1,417,1,417,3,417,7850,8,417,1,417,1,417,1,418, - 1,418,1,418,1,419,1,419,1,420,1,420,1,420,1,420,1,420,1,420,1,420, - 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420, - 1,420,1,420,1,420,1,420,1,420,1,420,3,420,7883,8,420,1,421,1,421, - 1,421,1,421,1,422,1,422,1,422,1,422,3,422,7893,8,422,1,422,1,422, - 3,422,7897,8,422,1,422,1,422,1,422,1,422,3,422,7903,8,422,1,422, - 1,422,1,422,3,422,7908,8,422,1,423,1,423,1,423,1,423,1,423,1,424, - 1,424,3,424,7917,8,424,1,424,1,424,1,424,1,424,5,424,7923,8,424, - 10,424,12,424,7926,9,424,1,424,1,424,1,425,1,425,1,425,1,425,1,426, - 1,426,3,426,7936,8,426,1,426,1,426,1,426,1,426,5,426,7942,8,426, - 10,426,12,426,7945,9,426,1,427,1,427,1,427,1,427,5,427,7951,8,427, - 10,427,12,427,7954,9,427,1,427,1,427,1,427,1,427,5,427,7960,8,427, - 10,427,12,427,7963,9,427,5,427,7965,8,427,10,427,12,427,7968,9,427, - 1,427,3,427,7971,8,427,1,427,1,427,1,427,1,427,1,428,1,428,5,428, - 7979,8,428,10,428,12,428,7982,9,428,1,429,1,429,3,429,7986,8,429, - 1,429,1,429,1,429,1,429,5,429,7992,8,429,10,429,12,429,7995,9,429, - 4,429,7997,8,429,11,429,12,429,7998,1,429,3,429,8002,8,429,1,429, - 1,429,1,429,1,429,1,430,3,430,8009,8,430,1,430,1,430,1,430,1,430, - 3,430,8015,8,430,1,430,1,430,1,431,1,431,1,431,1,431,3,431,8023, - 8,431,1,431,1,431,1,431,1,431,1,431,1,431,3,431,8031,8,431,1,431, - 3,431,8034,8,431,1,431,1,431,1,431,1,431,1,431,3,431,8041,8,431, - 3,431,8043,8,431,1,432,3,432,8046,8,432,1,432,1,432,1,432,1,432, - 3,432,8052,8,432,1,432,1,432,1,432,1,432,1,432,1,433,1,433,3,433, - 8061,8,433,1,433,1,433,3,433,8065,8,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,3,434,8079,8,434, - 1,434,3,434,8082,8,434,3,434,8084,8,434,1,434,1,434,1,435,1,435, - 3,435,8090,8,435,1,435,1,435,1,435,1,435,1,435,1,435,4,435,8098, - 8,435,11,435,12,435,8099,3,435,8102,8,435,3,435,8104,8,435,1,435, - 1,435,1,435,1,435,5,435,8110,8,435,10,435,12,435,8113,9,435,3,435, - 8115,8,435,1,435,3,435,8118,8,435,1,436,1,436,1,436,1,436,1,437, - 1,437,1,437,1,437,3,437,8128,8,437,1,437,1,437,1,438,1,438,5,438, - 8134,8,438,10,438,12,438,8137,9,438,1,438,1,438,1,438,3,438,8142, - 8,438,1,438,1,438,1,439,1,439,3,439,8148,8,439,1,439,1,439,1,440, - 1,440,1,440,3,440,8155,8,440,1,440,1,440,3,440,8159,8,440,1,440, - 1,440,3,440,8163,8,440,1,440,3,440,8166,8,440,1,440,3,440,8169,8, - 440,1,440,1,440,1,441,1,441,3,441,8175,8,441,1,441,1,441,1,442,1, - 442,1,442,3,442,8182,8,442,1,442,3,442,8185,8,442,1,442,1,442,1, - 442,1,442,1,442,1,442,3,442,8193,8,442,3,442,8195,8,442,1,442,1, - 442,1,442,1,442,1,442,5,442,8202,8,442,10,442,12,442,8205,9,442, - 1,442,1,442,3,442,8209,8,442,3,442,8211,8,442,1,442,1,442,1,443, - 1,443,1,443,3,443,8218,8,443,1,443,1,443,1,444,1,444,3,444,8224, - 8,444,1,444,3,444,8227,8,444,1,444,1,444,1,444,1,444,1,444,1,445, - 1,445,1,445,1,445,1,445,3,445,8239,8,445,1,445,1,445,1,445,1,445, - 1,445,3,445,8246,8,445,3,445,8248,8,445,1,446,1,446,3,446,8252,8, - 446,1,446,1,446,1,446,1,447,3,447,8258,8,447,1,447,1,447,1,447,3, - 447,8263,8,447,1,447,1,447,3,447,8267,8,447,1,447,3,447,8270,8,447, - 1,447,3,447,8273,8,447,1,447,1,447,1,447,1,447,1,447,4,447,8280, - 8,447,11,447,12,447,8281,1,447,3,447,8285,8,447,1,448,3,448,8288, - 8,448,1,448,1,448,3,448,8292,8,448,1,448,1,448,3,448,8296,8,448, - 3,448,8298,8,448,1,448,3,448,8301,8,448,1,448,3,448,8304,8,448,1, - 449,1,449,1,449,1,449,3,449,8310,8,449,1,449,1,449,1,449,1,449,1, - 449,3,449,8317,8,449,1,449,1,449,1,449,1,449,1,449,3,449,8324,8, - 449,1,449,1,449,1,449,1,449,3,449,8330,8,449,3,449,8332,8,449,1, - 450,1,450,3,450,8336,8,450,1,450,1,450,1,450,3,450,8341,8,450,1, - 450,1,450,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451, - 1,451,1,451,1,451,5,451,8357,8,451,10,451,12,451,8360,9,451,1,451, - 1,451,4,451,8364,8,451,11,451,12,451,8365,1,452,1,452,1,452,1,452, - 1,452,5,452,8373,8,452,10,452,12,452,8376,9,452,1,452,1,452,1,452, - 1,452,3,452,8382,8,452,1,453,1,453,3,453,8386,8,453,1,454,1,454, - 1,454,1,454,1,455,1,455,1,455,1,456,1,456,1,456,3,456,8398,8,456, - 1,456,3,456,8401,8,456,1,456,1,456,1,457,1,457,1,457,1,457,1,457, - 1,457,1,457,1,457,1,457,3,457,8414,8,457,1,457,3,457,8417,8,457, - 1,458,1,458,3,458,8421,8,458,1,459,1,459,1,459,1,459,1,459,5,459, - 8428,8,459,10,459,12,459,8431,9,459,1,459,1,459,5,459,8435,8,459, - 10,459,12,459,8438,9,459,4,459,8440,8,459,11,459,12,459,8441,1,460, - 1,460,1,460,3,460,8447,8,460,1,461,1,461,3,461,8451,8,461,1,462, - 3,462,8454,8,462,1,462,3,462,8457,8,462,1,462,3,462,8460,8,462,1, - 462,3,462,8463,8,462,1,462,3,462,8466,8,462,1,462,1,462,3,462,8470, - 8,462,1,462,3,462,8473,8,462,1,462,0,3,670,674,676,463,0,2,4,6,8, + 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7194,8,342,3,342,7196, + 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7217, + 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7227, + 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,3,342,7240,8,342,1,342,1,342,1,342,3,342,7245,8,342,1,342, + 1,342,3,342,7249,8,342,3,342,7251,8,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7263,8,342,1,343,1,343, + 1,343,5,343,7268,8,343,10,343,12,343,7271,9,343,1,344,1,344,1,344, + 3,344,7276,8,344,1,345,1,345,1,346,1,346,3,346,7282,8,346,1,346, + 1,346,3,346,7286,8,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348, + 5,348,7295,8,348,10,348,12,348,7298,9,348,1,349,1,349,1,349,1,350, + 1,350,1,350,1,350,1,351,1,351,1,351,3,351,7310,8,351,1,352,1,352, + 3,352,7314,8,352,1,352,1,352,1,352,3,352,7319,8,352,1,352,3,352, + 7322,8,352,1,352,3,352,7325,8,352,1,352,1,352,1,353,1,353,1,353, + 1,353,1,353,3,353,7334,8,353,1,353,1,353,1,353,1,353,1,353,1,353, + 1,353,1,353,1,353,3,353,7345,8,353,3,353,7347,8,353,1,354,1,354, + 3,354,7351,8,354,1,354,1,354,1,354,3,354,7356,8,354,1,355,1,355, + 1,355,1,355,1,355,1,355,1,355,3,355,7365,8,355,1,356,1,356,1,356, + 3,356,7370,8,356,1,356,1,356,1,357,1,357,1,358,1,358,3,358,7378, + 8,358,1,359,1,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7388, + 8,360,1,361,1,361,1,361,1,361,1,361,1,361,3,361,7396,8,361,1,362, + 1,362,3,362,7400,8,362,1,362,3,362,7403,8,362,1,363,1,363,1,363, + 5,363,7408,8,363,10,363,12,363,7411,9,363,1,364,1,364,1,364,1,364, + 1,364,3,364,7418,8,364,1,365,1,365,3,365,7422,8,365,1,366,1,366, + 1,366,5,366,7427,8,366,10,366,12,366,7430,9,366,1,367,1,367,1,367, + 1,367,1,367,3,367,7437,8,367,3,367,7439,8,367,1,368,1,368,1,368, + 1,368,1,368,5,368,7446,8,368,10,368,12,368,7449,9,368,3,368,7451, + 8,368,1,368,1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369, + 3,369,7463,8,369,1,370,1,370,1,371,1,371,1,371,1,371,1,371,3,371, + 7472,8,371,1,371,1,371,1,371,1,371,1,371,3,371,7479,8,371,1,371, + 1,371,1,371,1,371,1,371,1,371,1,371,3,371,7488,8,371,1,372,1,372, + 1,372,1,372,1,372,1,373,1,373,1,373,3,373,7498,8,373,1,373,1,373, + 1,373,3,373,7503,8,373,1,373,1,373,3,373,7507,8,373,3,373,7509,8, + 373,1,373,3,373,7512,8,373,1,374,4,374,7515,8,374,11,374,12,374, + 7516,1,375,5,375,7520,8,375,10,375,12,375,7523,9,375,1,376,1,376, + 1,376,5,376,7528,8,376,10,376,12,376,7531,9,376,1,377,1,377,1,377, + 1,377,1,377,3,377,7538,8,377,1,377,3,377,7541,8,377,1,378,1,378, + 1,378,5,378,7546,8,378,10,378,12,378,7549,9,378,1,379,1,379,1,379, + 5,379,7554,8,379,10,379,12,379,7557,9,379,1,380,1,380,1,380,5,380, + 7562,8,380,10,380,12,380,7565,9,380,1,381,1,381,1,381,5,381,7570, + 8,381,10,381,12,381,7573,9,381,1,382,1,382,1,383,1,383,1,384,1,384, + 1,385,1,385,1,386,1,386,1,387,1,387,1,388,1,388,3,388,7589,8,388, + 1,389,1,389,1,389,5,389,7594,8,389,10,389,12,389,7597,9,389,1,390, + 1,390,1,390,5,390,7602,8,390,10,390,12,390,7605,9,390,1,391,1,391, + 1,392,1,392,1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,396, + 1,396,3,396,7621,8,396,1,397,1,397,1,397,1,397,3,397,7627,8,397, + 1,398,1,398,1,398,1,398,3,398,7633,8,398,1,399,1,399,1,399,1,400, + 1,400,1,401,1,401,1,401,1,401,3,401,7644,8,401,1,402,1,402,1,402, + 1,402,3,402,7650,8,402,1,403,1,403,1,403,3,403,7655,8,403,1,404, + 1,404,1,404,1,404,5,404,7661,8,404,10,404,12,404,7664,9,404,1,404, + 1,404,3,404,7668,8,404,1,405,3,405,7671,8,405,1,405,1,405,1,406, + 1,406,1,406,1,406,1,406,3,406,7680,8,406,1,407,1,407,1,407,5,407, + 7685,8,407,10,407,12,407,7688,9,407,1,408,1,408,3,408,7692,8,408, + 1,409,1,409,3,409,7696,8,409,1,410,1,410,1,410,3,410,7701,8,410, + 1,411,1,411,1,411,1,411,3,411,7707,8,411,1,412,1,412,1,412,3,412, + 7712,8,412,1,412,1,412,1,412,1,412,1,412,1,412,3,412,7720,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,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,7775, + 8,414,1,415,1,415,1,416,1,416,1,417,3,417,7782,8,417,1,417,1,417, + 1,417,1,417,4,417,7788,8,417,11,417,12,417,7789,3,417,7792,8,417, + 3,417,7794,8,417,1,417,1,417,5,417,7798,8,417,10,417,12,417,7801, + 9,417,1,417,3,417,7804,8,417,1,417,1,417,3,417,7808,8,417,1,418, + 1,418,1,418,1,418,1,419,1,419,1,419,1,419,1,419,3,419,7819,8,419, + 1,419,3,419,7822,8,419,1,419,1,419,3,419,7826,8,419,1,419,1,419, + 3,419,7830,8,419,1,419,1,419,3,419,7834,8,419,1,419,3,419,7837,8, + 419,1,419,3,419,7840,8,419,1,419,3,419,7843,8,419,1,419,1,419,1, + 419,1,419,1,419,5,419,7850,8,419,10,419,12,419,7853,9,419,1,419, + 1,419,3,419,7857,8,419,1,419,1,419,3,419,7861,8,419,1,419,1,419, + 1,420,1,420,1,420,1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422, + 1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, + 1,422,1,422,1,422,1,422,1,422,1,422,1,422,3,422,7894,8,422,1,423, + 1,423,1,423,1,423,1,424,1,424,1,424,1,424,3,424,7904,8,424,1,424, + 1,424,3,424,7908,8,424,1,424,1,424,1,424,1,424,3,424,7914,8,424, + 1,424,1,424,1,424,3,424,7919,8,424,1,425,1,425,1,425,1,425,1,425, + 1,426,1,426,3,426,7928,8,426,1,426,1,426,1,426,1,426,5,426,7934, + 8,426,10,426,12,426,7937,9,426,1,426,1,426,1,427,1,427,1,427,1,427, + 1,428,1,428,3,428,7947,8,428,1,428,1,428,1,428,1,428,5,428,7953, + 8,428,10,428,12,428,7956,9,428,1,429,1,429,1,429,1,429,5,429,7962, + 8,429,10,429,12,429,7965,9,429,1,429,1,429,1,429,1,429,5,429,7971, + 8,429,10,429,12,429,7974,9,429,5,429,7976,8,429,10,429,12,429,7979, + 9,429,1,429,3,429,7982,8,429,1,429,1,429,1,429,1,429,1,430,1,430, + 5,430,7990,8,430,10,430,12,430,7993,9,430,1,431,1,431,3,431,7997, + 8,431,1,431,1,431,1,431,1,431,5,431,8003,8,431,10,431,12,431,8006, + 9,431,4,431,8008,8,431,11,431,12,431,8009,1,431,3,431,8013,8,431, + 1,431,1,431,1,431,1,431,1,432,3,432,8020,8,432,1,432,1,432,1,432, + 1,432,3,432,8026,8,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433, + 8034,8,433,1,433,1,433,1,433,1,433,1,433,1,433,3,433,8042,8,433, + 1,433,3,433,8045,8,433,1,433,1,433,1,433,1,433,1,433,3,433,8052, + 8,433,3,433,8054,8,433,1,434,3,434,8057,8,434,1,434,1,434,1,434, + 1,434,3,434,8063,8,434,1,434,1,434,1,434,1,434,1,434,1,435,1,435, + 3,435,8072,8,435,1,435,1,435,3,435,8076,8,435,1,435,1,435,1,436, + 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,8090, + 8,436,1,436,3,436,8093,8,436,3,436,8095,8,436,1,436,1,436,1,437, + 1,437,3,437,8101,8,437,1,437,1,437,1,437,1,437,1,437,1,437,4,437, + 8109,8,437,11,437,12,437,8110,3,437,8113,8,437,3,437,8115,8,437, + 1,437,1,437,1,437,1,437,5,437,8121,8,437,10,437,12,437,8124,9,437, + 3,437,8126,8,437,1,437,3,437,8129,8,437,1,438,1,438,1,438,1,438, + 1,439,1,439,1,439,1,439,3,439,8139,8,439,1,439,1,439,1,440,1,440, + 5,440,8145,8,440,10,440,12,440,8148,9,440,1,440,1,440,1,440,3,440, + 8153,8,440,1,440,1,440,1,441,1,441,3,441,8159,8,441,1,441,1,441, + 1,442,1,442,1,442,3,442,8166,8,442,1,442,1,442,3,442,8170,8,442, + 1,442,1,442,3,442,8174,8,442,1,442,3,442,8177,8,442,1,442,3,442, + 8180,8,442,1,442,1,442,1,443,1,443,3,443,8186,8,443,1,443,1,443, + 1,444,1,444,1,444,3,444,8193,8,444,1,444,3,444,8196,8,444,1,444, + 1,444,1,444,1,444,1,444,1,444,3,444,8204,8,444,3,444,8206,8,444, + 1,444,1,444,1,444,1,444,1,444,5,444,8213,8,444,10,444,12,444,8216, + 9,444,1,444,1,444,3,444,8220,8,444,3,444,8222,8,444,1,444,1,444, + 1,445,1,445,1,445,3,445,8229,8,445,1,445,1,445,1,446,1,446,3,446, + 8235,8,446,1,446,3,446,8238,8,446,1,446,1,446,1,446,1,446,1,446, + 1,447,1,447,1,447,1,447,1,447,3,447,8250,8,447,1,447,1,447,1,447, + 1,447,1,447,3,447,8257,8,447,3,447,8259,8,447,1,448,1,448,3,448, + 8263,8,448,1,448,1,448,1,448,1,449,3,449,8269,8,449,1,449,1,449, + 1,449,3,449,8274,8,449,1,449,1,449,3,449,8278,8,449,1,449,3,449, + 8281,8,449,1,449,3,449,8284,8,449,1,449,1,449,1,449,1,449,1,449, + 4,449,8291,8,449,11,449,12,449,8292,1,449,3,449,8296,8,449,1,450, + 3,450,8299,8,450,1,450,1,450,3,450,8303,8,450,1,450,1,450,3,450, + 8307,8,450,3,450,8309,8,450,1,450,3,450,8312,8,450,1,450,3,450,8315, + 8,450,1,451,1,451,1,451,1,451,3,451,8321,8,451,1,451,1,451,1,451, + 1,451,1,451,3,451,8328,8,451,1,451,1,451,1,451,1,451,1,451,3,451, + 8335,8,451,1,451,1,451,1,451,1,451,3,451,8341,8,451,3,451,8343,8, + 451,1,452,1,452,3,452,8347,8,452,1,452,1,452,1,452,3,452,8352,8, + 452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453, + 1,453,1,453,1,453,1,453,5,453,8368,8,453,10,453,12,453,8371,9,453, + 1,453,1,453,4,453,8375,8,453,11,453,12,453,8376,1,454,1,454,1,454, + 1,454,1,454,5,454,8384,8,454,10,454,12,454,8387,9,454,1,454,1,454, + 1,454,1,454,3,454,8393,8,454,1,455,1,455,3,455,8397,8,455,1,456, + 1,456,1,456,1,456,1,457,1,457,1,457,1,458,1,458,1,458,3,458,8409, + 8,458,1,458,3,458,8412,8,458,1,458,1,458,1,459,1,459,1,459,1,459, + 1,459,1,459,1,459,1,459,1,459,3,459,8425,8,459,1,459,3,459,8428, + 8,459,1,460,1,460,3,460,8432,8,460,1,461,1,461,1,461,1,461,1,461, + 5,461,8439,8,461,10,461,12,461,8442,9,461,1,461,1,461,5,461,8446, + 8,461,10,461,12,461,8449,9,461,4,461,8451,8,461,11,461,12,461,8452, + 1,462,1,462,1,462,3,462,8458,8,462,1,463,1,463,3,463,8462,8,463, + 1,464,3,464,8465,8,464,1,464,3,464,8468,8,464,1,464,3,464,8471,8, + 464,1,464,3,464,8474,8,464,1,464,3,464,8477,8,464,1,464,3,464,8480, + 8,464,1,464,3,464,8483,8,464,1,464,0,3,670,674,676,465,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, @@ -55068,3014 +55126,3017 @@ export class PostgreSqlParser extends SQLParserBase { 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,0,119,2,0,195, - 195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134,134,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,158,158,277,277, - 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,4,0,78,78,183, - 183,197,197,298,298,1,0,549,551,2,0,213,213,254,254,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,2,0,105,105,379,379,2,0,260,260,262,262,3,0,173, - 173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0,156,156,206, - 206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133,133,191,191, - 333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0,9,9,94,94,2, - 0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341,341,414,414, - 4,0,163,163,185,185,283,283,353,353,2,0,135,135,145,145,2,0,211, - 211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99,99,318,318, - 5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167,314,314, - 2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2,0,130,130, - 307,307,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,455,455,457,457,5,0,212,212,329,329,350,350,361,361,455,456, - 2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0,181,181, - 243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108,108,168, - 168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163,163,185, - 185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369,2,0,137, - 137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319,319,454, - 454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254,254,2, - 0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60,96,96, - 2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334,3,0,59, - 59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268,268,2, - 0,320,320,414,414,2,0,574,574,576,576,1,0,468,469,4,0,113,113,115, - 115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409,409,2,0, - 391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23, - 23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2, - 0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404, - 425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304,304,450, - 450,3,0,299,299,320,320,481,481,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,114,114,120, - 120,2,0,20,20,22,22,1,0,483,486,17,0,53,53,116,116,123,124,129,228, - 238,386,433,452,455,469,471,471,473,473,475,475,477,488,490,502, - 504,504,506,518,520,520,524,524,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,434,434,501,501,2,0,167,167,507,507,1,0,512,517,2,0,144,144, - 210,210,9915,0,929,1,0,0,0,2,934,1,0,0,0,4,1058,1,0,0,0,6,1060,1, - 0,0,0,8,1063,1,0,0,0,10,1113,1,0,0,0,12,1123,1,0,0,0,14,1125,1,0, - 0,0,16,1137,1,0,0,0,18,1149,1,0,0,0,20,1160,1,0,0,0,22,1194,1,0, - 0,0,24,1238,1,0,0,0,26,1240,1,0,0,0,28,1252,1,0,0,0,30,1259,1,0, - 0,0,32,1278,1,0,0,0,34,1286,1,0,0,0,36,1288,1,0,0,0,38,1302,1,0, - 0,0,40,1306,1,0,0,0,42,1343,1,0,0,0,44,1345,1,0,0,0,46,1353,1,0, - 0,0,48,1363,1,0,0,0,50,1370,1,0,0,0,52,1378,1,0,0,0,54,1384,1,0, - 0,0,56,1400,1,0,0,0,58,1404,1,0,0,0,60,1406,1,0,0,0,62,1418,1,0, - 0,0,64,1423,1,0,0,0,66,1428,1,0,0,0,68,1430,1,0,0,0,70,1442,1,0, - 0,0,72,1450,1,0,0,0,74,1452,1,0,0,0,76,1572,1,0,0,0,78,1574,1,0, - 0,0,80,1588,1,0,0,0,82,1590,1,0,0,0,84,1827,1,0,0,0,86,1834,1,0, - 0,0,88,1836,1,0,0,0,90,1838,1,0,0,0,92,1841,1,0,0,0,94,1852,1,0, - 0,0,96,1855,1,0,0,0,98,1885,1,0,0,0,100,1887,1,0,0,0,102,1928,1, - 0,0,0,104,1930,1,0,0,0,106,1984,1,0,0,0,108,2030,1,0,0,0,110,2051, - 1,0,0,0,112,2053,1,0,0,0,114,2070,1,0,0,0,116,2151,1,0,0,0,118,2153, - 1,0,0,0,120,2164,1,0,0,0,122,2187,1,0,0,0,124,2205,1,0,0,0,126,2207, - 1,0,0,0,128,2242,1,0,0,0,130,2335,1,0,0,0,132,2340,1,0,0,0,134,2342, - 1,0,0,0,136,2440,1,0,0,0,138,2442,1,0,0,0,140,2446,1,0,0,0,142,2457, - 1,0,0,0,144,2465,1,0,0,0,146,2468,1,0,0,0,148,2471,1,0,0,0,150,2489, - 1,0,0,0,152,2491,1,0,0,0,154,2495,1,0,0,0,156,2508,1,0,0,0,158,2510, - 1,0,0,0,160,2515,1,0,0,0,162,2535,1,0,0,0,164,2543,1,0,0,0,166,2550, - 1,0,0,0,168,2552,1,0,0,0,170,2561,1,0,0,0,172,2564,1,0,0,0,174,2568, - 1,0,0,0,176,2572,1,0,0,0,178,2597,1,0,0,0,180,2607,1,0,0,0,182,2621, - 1,0,0,0,184,2637,1,0,0,0,186,2643,1,0,0,0,188,2670,1,0,0,0,190,2680, - 1,0,0,0,192,2696,1,0,0,0,194,2740,1,0,0,0,196,2747,1,0,0,0,198,2749, - 1,0,0,0,200,2775,1,0,0,0,202,2786,1,0,0,0,204,2805,1,0,0,0,206,2816, - 1,0,0,0,208,2854,1,0,0,0,210,2875,1,0,0,0,212,2877,1,0,0,0,214,2897, - 1,0,0,0,216,2909,1,0,0,0,218,2921,1,0,0,0,220,2924,1,0,0,0,222,2927, - 1,0,0,0,224,2947,1,0,0,0,226,2952,1,0,0,0,228,3001,1,0,0,0,230,3003, - 1,0,0,0,232,3026,1,0,0,0,234,3042,1,0,0,0,236,3054,1,0,0,0,238,3081, - 1,0,0,0,240,3096,1,0,0,0,242,3159,1,0,0,0,244,3161,1,0,0,0,246,3166, - 1,0,0,0,248,3172,1,0,0,0,250,3259,1,0,0,0,252,3265,1,0,0,0,254,3267, - 1,0,0,0,256,3283,1,0,0,0,258,3285,1,0,0,0,260,3294,1,0,0,0,262,3298, - 1,0,0,0,264,3311,1,0,0,0,266,3323,1,0,0,0,268,3325,1,0,0,0,270,3347, - 1,0,0,0,272,3359,1,0,0,0,274,3370,1,0,0,0,276,3461,1,0,0,0,278,3463, - 1,0,0,0,280,3474,1,0,0,0,282,3485,1,0,0,0,284,3487,1,0,0,0,286,3513, - 1,0,0,0,288,3515,1,0,0,0,290,3519,1,0,0,0,292,3569,1,0,0,0,294,3571, - 1,0,0,0,296,3577,1,0,0,0,298,3602,1,0,0,0,300,3606,1,0,0,0,302,3820, - 1,0,0,0,304,3838,1,0,0,0,306,3864,1,0,0,0,308,3866,1,0,0,0,310,3874, - 1,0,0,0,312,3880,1,0,0,0,314,3884,1,0,0,0,316,3904,1,0,0,0,318,3910, - 1,0,0,0,320,3977,1,0,0,0,322,4008,1,0,0,0,324,4054,1,0,0,0,326,4056, - 1,0,0,0,328,4058,1,0,0,0,330,4069,1,0,0,0,332,4106,1,0,0,0,334,4108, - 1,0,0,0,336,4114,1,0,0,0,338,4164,1,0,0,0,340,4167,1,0,0,0,342,4181, - 1,0,0,0,344,4202,1,0,0,0,346,4226,1,0,0,0,348,4267,1,0,0,0,350,4269, - 1,0,0,0,352,4271,1,0,0,0,354,4311,1,0,0,0,356,4328,1,0,0,0,358,4348, - 1,0,0,0,360,4401,1,0,0,0,362,4404,1,0,0,0,364,4410,1,0,0,0,366,4418, - 1,0,0,0,368,4431,1,0,0,0,370,4433,1,0,0,0,372,4446,1,0,0,0,374,4448, - 1,0,0,0,376,4461,1,0,0,0,378,4471,1,0,0,0,380,4482,1,0,0,0,382,4493, - 1,0,0,0,384,4495,1,0,0,0,386,4500,1,0,0,0,388,4514,1,0,0,0,390,4546, - 1,0,0,0,392,4583,1,0,0,0,394,4585,1,0,0,0,396,4588,1,0,0,0,398,4591, - 1,0,0,0,400,4608,1,0,0,0,402,4629,1,0,0,0,404,4645,1,0,0,0,406,4661, - 1,0,0,0,408,4683,1,0,0,0,410,4688,1,0,0,0,412,4691,1,0,0,0,414,4699, - 1,0,0,0,416,4724,1,0,0,0,418,4727,1,0,0,0,420,4755,1,0,0,0,422,4760, - 1,0,0,0,424,4800,1,0,0,0,426,5012,1,0,0,0,428,5014,1,0,0,0,430,5102, - 1,0,0,0,432,5104,1,0,0,0,434,5110,1,0,0,0,436,5121,1,0,0,0,438,5131, - 1,0,0,0,440,5211,1,0,0,0,442,5213,1,0,0,0,444,5227,1,0,0,0,446,5249, - 1,0,0,0,448,5322,1,0,0,0,450,5324,1,0,0,0,452,5365,1,0,0,0,454,5367, - 1,0,0,0,456,5372,1,0,0,0,458,5375,1,0,0,0,460,5378,1,0,0,0,462,5428, - 1,0,0,0,464,5430,1,0,0,0,466,5441,1,0,0,0,468,5443,1,0,0,0,470,5453, - 1,0,0,0,472,5488,1,0,0,0,474,5491,1,0,0,0,476,5512,1,0,0,0,478,5522, - 1,0,0,0,480,5542,1,0,0,0,482,5548,1,0,0,0,484,5554,1,0,0,0,486,5559, - 1,0,0,0,488,5572,1,0,0,0,490,5599,1,0,0,0,492,5647,1,0,0,0,494,5649, - 1,0,0,0,496,5687,1,0,0,0,498,5689,1,0,0,0,500,5710,1,0,0,0,502,5730, - 1,0,0,0,504,5734,1,0,0,0,506,5749,1,0,0,0,508,5751,1,0,0,0,510,5755, - 1,0,0,0,512,5759,1,0,0,0,514,5767,1,0,0,0,516,5791,1,0,0,0,518,5793, - 1,0,0,0,520,5804,1,0,0,0,522,5812,1,0,0,0,524,5828,1,0,0,0,526,5853, - 1,0,0,0,528,5855,1,0,0,0,530,5859,1,0,0,0,532,5868,1,0,0,0,534,5908, - 1,0,0,0,536,5919,1,0,0,0,538,5927,1,0,0,0,540,5930,1,0,0,0,542,5934, - 1,0,0,0,544,5949,1,0,0,0,546,5974,1,0,0,0,548,5989,1,0,0,0,550,6015, - 1,0,0,0,552,6017,1,0,0,0,554,6040,1,0,0,0,556,6042,1,0,0,0,558,6050, - 1,0,0,0,560,6068,1,0,0,0,562,6092,1,0,0,0,564,6104,1,0,0,0,566,6108, - 1,0,0,0,568,6120,1,0,0,0,570,6140,1,0,0,0,572,6148,1,0,0,0,574,6162, - 1,0,0,0,576,6185,1,0,0,0,578,6187,1,0,0,0,580,6192,1,0,0,0,582,6202, - 1,0,0,0,584,6223,1,0,0,0,586,6225,1,0,0,0,588,6234,1,0,0,0,590,6245, - 1,0,0,0,592,6255,1,0,0,0,594,6257,1,0,0,0,596,6264,1,0,0,0,598,6295, - 1,0,0,0,600,6325,1,0,0,0,602,6327,1,0,0,0,604,6336,1,0,0,0,606,6339, - 1,0,0,0,608,6410,1,0,0,0,610,6434,1,0,0,0,612,6455,1,0,0,0,614,6457, - 1,0,0,0,616,6465,1,0,0,0,618,6482,1,0,0,0,620,6508,1,0,0,0,622,6510, - 1,0,0,0,624,6518,1,0,0,0,626,6525,1,0,0,0,628,6549,1,0,0,0,630,6555, - 1,0,0,0,632,6563,1,0,0,0,634,6566,1,0,0,0,636,6573,1,0,0,0,638,6581, - 1,0,0,0,640,6586,1,0,0,0,642,6616,1,0,0,0,644,6643,1,0,0,0,646,6671, - 1,0,0,0,648,6688,1,0,0,0,650,6694,1,0,0,0,652,6712,1,0,0,0,654,6714, - 1,0,0,0,656,6718,1,0,0,0,658,6735,1,0,0,0,660,6740,1,0,0,0,662,6778, - 1,0,0,0,664,6780,1,0,0,0,666,6784,1,0,0,0,668,6786,1,0,0,0,670,6795, - 1,0,0,0,672,6879,1,0,0,0,674,6885,1,0,0,0,676,6994,1,0,0,0,678,7026, - 1,0,0,0,680,7077,1,0,0,0,682,7081,1,0,0,0,684,7257,1,0,0,0,686,7259, - 1,0,0,0,688,7267,1,0,0,0,690,7272,1,0,0,0,692,7274,1,0,0,0,694,7282, - 1,0,0,0,696,7285,1,0,0,0,698,7294,1,0,0,0,700,7298,1,0,0,0,702,7303, - 1,0,0,0,704,7320,1,0,0,0,706,7347,1,0,0,0,708,7356,1,0,0,0,710,7358, - 1,0,0,0,712,7365,1,0,0,0,714,7369,1,0,0,0,716,7371,1,0,0,0,718,7379, - 1,0,0,0,720,7387,1,0,0,0,722,7394,1,0,0,0,724,7396,1,0,0,0,726,7409, - 1,0,0,0,728,7413,1,0,0,0,730,7415,1,0,0,0,732,7430,1,0,0,0,734,7432, - 1,0,0,0,736,7454,1,0,0,0,738,7456,1,0,0,0,740,7479,1,0,0,0,742,7481, - 1,0,0,0,744,7503,1,0,0,0,746,7506,1,0,0,0,748,7513,1,0,0,0,750,7516, - 1,0,0,0,752,7532,1,0,0,0,754,7534,1,0,0,0,756,7542,1,0,0,0,758,7550, - 1,0,0,0,760,7558,1,0,0,0,762,7566,1,0,0,0,764,7568,1,0,0,0,766,7570, - 1,0,0,0,768,7572,1,0,0,0,770,7574,1,0,0,0,772,7576,1,0,0,0,774,7578, - 1,0,0,0,776,7582,1,0,0,0,778,7590,1,0,0,0,780,7598,1,0,0,0,782,7600, - 1,0,0,0,784,7602,1,0,0,0,786,7604,1,0,0,0,788,7606,1,0,0,0,790,7612, - 1,0,0,0,792,7618,1,0,0,0,794,7624,1,0,0,0,796,7626,1,0,0,0,798,7632, - 1,0,0,0,800,7638,1,0,0,0,802,7640,1,0,0,0,804,7656,1,0,0,0,806,7659, - 1,0,0,0,808,7668,1,0,0,0,810,7670,1,0,0,0,812,7680,1,0,0,0,814,7684, - 1,0,0,0,816,7689,1,0,0,0,818,7695,1,0,0,0,820,7708,1,0,0,0,822,7710, - 1,0,0,0,824,7763,1,0,0,0,826,7765,1,0,0,0,828,7767,1,0,0,0,830,7770, - 1,0,0,0,832,7798,1,0,0,0,834,7802,1,0,0,0,836,7853,1,0,0,0,838,7856, - 1,0,0,0,840,7882,1,0,0,0,842,7884,1,0,0,0,844,7907,1,0,0,0,846,7909, - 1,0,0,0,848,7914,1,0,0,0,850,7929,1,0,0,0,852,7935,1,0,0,0,854,7946, - 1,0,0,0,856,7976,1,0,0,0,858,7983,1,0,0,0,860,8008,1,0,0,0,862,8018, - 1,0,0,0,864,8045,1,0,0,0,866,8058,1,0,0,0,868,8068,1,0,0,0,870,8087, - 1,0,0,0,872,8119,1,0,0,0,874,8123,1,0,0,0,876,8131,1,0,0,0,878,8145, - 1,0,0,0,880,8151,1,0,0,0,882,8172,1,0,0,0,884,8178,1,0,0,0,886,8217, - 1,0,0,0,888,8221,1,0,0,0,890,8247,1,0,0,0,892,8249,1,0,0,0,894,8257, - 1,0,0,0,896,8297,1,0,0,0,898,8331,1,0,0,0,900,8333,1,0,0,0,902,8344, - 1,0,0,0,904,8381,1,0,0,0,906,8385,1,0,0,0,908,8387,1,0,0,0,910,8391, - 1,0,0,0,912,8394,1,0,0,0,914,8416,1,0,0,0,916,8420,1,0,0,0,918,8422, - 1,0,0,0,920,8446,1,0,0,0,922,8450,1,0,0,0,924,8453,1,0,0,0,926,928, - 3,2,1,0,927,926,1,0,0,0,928,931,1,0,0,0,929,927,1,0,0,0,929,930, - 1,0,0,0,930,932,1,0,0,0,931,929,1,0,0,0,932,933,5,0,0,1,933,1,1, - 0,0,0,934,936,3,4,2,0,935,937,5,7,0,0,936,935,1,0,0,0,936,937,1, - 0,0,0,937,3,1,0,0,0,938,1059,3,272,136,0,939,1059,3,482,241,0,940, - 1059,3,478,239,0,941,1059,3,480,240,0,942,1059,3,346,173,0,943,1059, - 3,488,244,0,944,1059,3,286,143,0,945,1059,3,204,102,0,946,1059,3, - 206,103,0,947,1059,3,212,106,0,948,1059,3,226,113,0,949,1059,3,398, - 199,0,950,1059,3,28,14,0,951,1059,3,428,214,0,952,1059,3,430,215, - 0,953,1059,3,440,220,0,954,1059,3,432,216,0,955,1059,3,438,219,0, - 956,1059,3,238,119,0,957,1059,3,240,120,0,958,1059,3,192,96,0,959, - 1059,3,484,242,0,960,1059,3,76,38,0,961,1059,3,424,212,0,962,1059, - 3,100,50,0,963,1059,3,444,222,0,964,1059,3,18,9,0,965,1059,3,20, - 10,0,966,1059,3,16,8,0,967,1059,3,448,224,0,968,1059,3,178,89,0, - 969,1059,3,492,246,0,970,1059,3,490,245,0,971,1059,3,234,117,0,972, - 1059,3,500,250,0,973,1059,3,6,3,0,974,1059,3,72,36,0,975,1059,3, - 104,52,0,976,1059,3,496,248,0,977,1059,3,318,159,0,978,1059,3,70, - 35,0,979,1059,3,106,53,0,980,1059,3,248,124,0,981,1059,3,180,90, - 0,982,1059,3,274,137,0,983,1059,3,414,207,0,984,1059,3,494,247,0, - 985,1059,3,486,243,0,986,1059,3,202,101,0,987,1059,3,208,104,0,988, - 1059,3,222,111,0,989,1059,3,228,114,0,990,1059,3,358,179,0,991,1059, - 3,26,13,0,992,1059,3,186,93,0,993,1059,3,290,145,0,994,1059,3,294, - 147,0,995,1059,3,442,221,0,996,1059,3,296,148,0,997,1059,3,236,118, - 0,998,1059,3,198,99,0,999,1059,3,30,15,0,1000,1059,3,190,95,0,1001, - 1059,3,114,57,0,1002,1059,3,446,223,0,1003,1059,3,176,88,0,1004, - 1059,3,200,100,0,1005,1059,3,418,209,0,1006,1059,3,250,125,0,1007, - 1059,3,268,134,0,1008,1059,3,8,4,0,1009,1059,3,14,7,0,1010,1059, - 3,232,116,0,1011,1059,3,474,237,0,1012,1059,3,530,265,0,1013,1059, - 3,552,276,0,1014,1059,3,276,138,0,1015,1059,3,542,271,0,1016,1059, - 3,74,37,0,1017,1059,3,412,206,0,1018,1059,3,302,151,0,1019,1059, - 3,526,263,0,1020,1059,3,514,257,0,1021,1059,3,322,161,0,1022,1059, - 3,328,164,0,1023,1059,3,342,171,0,1024,1059,3,894,447,0,1025,1059, - 3,230,115,0,1026,1059,3,352,176,0,1027,1059,3,532,266,0,1028,1059, - 3,458,229,0,1029,1059,3,188,94,0,1030,1059,3,472,236,0,1031,1059, - 3,544,272,0,1032,1059,3,454,227,0,1033,1059,3,520,260,0,1034,1059, - 3,300,150,0,1035,1059,3,422,211,0,1036,1059,3,402,201,0,1037,1059, - 3,400,200,0,1038,1059,3,404,202,0,1039,1059,3,426,213,0,1040,1059, - 3,330,165,0,1041,1059,3,344,172,0,1042,1059,3,450,225,0,1043,1059, - 3,320,160,0,1044,1059,3,554,277,0,1045,1059,3,462,231,0,1046,1059, - 3,314,157,0,1047,1059,3,460,230,0,1048,1059,3,546,273,0,1049,1059, - 3,498,249,0,1050,1059,3,60,30,0,1051,1059,3,36,18,0,1052,1059,3, - 68,34,0,1053,1059,3,470,235,0,1054,1056,5,584,0,0,1055,1057,5,585, - 0,0,1056,1055,1,0,0,0,1056,1057,1,0,0,0,1057,1059,1,0,0,0,1058,938, - 1,0,0,0,1058,939,1,0,0,0,1058,940,1,0,0,0,1058,941,1,0,0,0,1058, - 942,1,0,0,0,1058,943,1,0,0,0,1058,944,1,0,0,0,1058,945,1,0,0,0,1058, - 946,1,0,0,0,1058,947,1,0,0,0,1058,948,1,0,0,0,1058,949,1,0,0,0,1058, - 950,1,0,0,0,1058,951,1,0,0,0,1058,952,1,0,0,0,1058,953,1,0,0,0,1058, - 954,1,0,0,0,1058,955,1,0,0,0,1058,956,1,0,0,0,1058,957,1,0,0,0,1058, - 958,1,0,0,0,1058,959,1,0,0,0,1058,960,1,0,0,0,1058,961,1,0,0,0,1058, - 962,1,0,0,0,1058,963,1,0,0,0,1058,964,1,0,0,0,1058,965,1,0,0,0,1058, - 966,1,0,0,0,1058,967,1,0,0,0,1058,968,1,0,0,0,1058,969,1,0,0,0,1058, - 970,1,0,0,0,1058,971,1,0,0,0,1058,972,1,0,0,0,1058,973,1,0,0,0,1058, - 974,1,0,0,0,1058,975,1,0,0,0,1058,976,1,0,0,0,1058,977,1,0,0,0,1058, - 978,1,0,0,0,1058,979,1,0,0,0,1058,980,1,0,0,0,1058,981,1,0,0,0,1058, - 982,1,0,0,0,1058,983,1,0,0,0,1058,984,1,0,0,0,1058,985,1,0,0,0,1058, - 986,1,0,0,0,1058,987,1,0,0,0,1058,988,1,0,0,0,1058,989,1,0,0,0,1058, - 990,1,0,0,0,1058,991,1,0,0,0,1058,992,1,0,0,0,1058,993,1,0,0,0,1058, - 994,1,0,0,0,1058,995,1,0,0,0,1058,996,1,0,0,0,1058,997,1,0,0,0,1058, - 998,1,0,0,0,1058,999,1,0,0,0,1058,1000,1,0,0,0,1058,1001,1,0,0,0, - 1058,1002,1,0,0,0,1058,1003,1,0,0,0,1058,1004,1,0,0,0,1058,1005, - 1,0,0,0,1058,1006,1,0,0,0,1058,1007,1,0,0,0,1058,1008,1,0,0,0,1058, - 1009,1,0,0,0,1058,1010,1,0,0,0,1058,1011,1,0,0,0,1058,1012,1,0,0, - 0,1058,1013,1,0,0,0,1058,1014,1,0,0,0,1058,1015,1,0,0,0,1058,1016, - 1,0,0,0,1058,1017,1,0,0,0,1058,1018,1,0,0,0,1058,1019,1,0,0,0,1058, - 1020,1,0,0,0,1058,1021,1,0,0,0,1058,1022,1,0,0,0,1058,1023,1,0,0, - 0,1058,1024,1,0,0,0,1058,1025,1,0,0,0,1058,1026,1,0,0,0,1058,1027, - 1,0,0,0,1058,1028,1,0,0,0,1058,1029,1,0,0,0,1058,1030,1,0,0,0,1058, - 1031,1,0,0,0,1058,1032,1,0,0,0,1058,1033,1,0,0,0,1058,1034,1,0,0, - 0,1058,1035,1,0,0,0,1058,1036,1,0,0,0,1058,1037,1,0,0,0,1058,1038, - 1,0,0,0,1058,1039,1,0,0,0,1058,1040,1,0,0,0,1058,1041,1,0,0,0,1058, - 1042,1,0,0,0,1058,1043,1,0,0,0,1058,1044,1,0,0,0,1058,1045,1,0,0, - 0,1058,1046,1,0,0,0,1058,1047,1,0,0,0,1058,1048,1,0,0,0,1058,1049, - 1,0,0,0,1058,1050,1,0,0,0,1058,1051,1,0,0,0,1058,1052,1,0,0,0,1058, - 1053,1,0,0,0,1058,1054,1,0,0,0,1059,5,1,0,0,0,1060,1061,5,433,0, - 0,1061,1062,3,678,339,0,1062,7,1,0,0,0,1063,1064,5,46,0,0,1064,1065, - 5,318,0,0,1065,1067,3,808,404,0,1066,1068,5,105,0,0,1067,1066,1, - 0,0,0,1067,1068,1,0,0,0,1068,1072,1,0,0,0,1069,1071,3,12,6,0,1070, - 1069,1,0,0,0,1071,1074,1,0,0,0,1072,1070,1,0,0,0,1072,1073,1,0,0, - 0,1073,9,1,0,0,0,1074,1072,1,0,0,0,1075,1078,5,287,0,0,1076,1079, - 3,802,401,0,1077,1079,5,78,0,0,1078,1076,1,0,0,0,1078,1077,1,0,0, - 0,1079,1114,1,0,0,0,1080,1081,7,0,0,0,1081,1082,5,287,0,0,1082,1114, - 3,802,401,0,1083,1114,5,228,0,0,1084,1114,5,229,0,0,1085,1114,5, - 236,0,0,1086,1114,5,237,0,0,1087,1114,5,234,0,0,1088,1114,5,235, - 0,0,1089,1114,5,232,0,0,1090,1114,5,233,0,0,1091,1114,5,230,0,0, - 1092,1114,5,231,0,0,1093,1114,5,535,0,0,1094,1114,5,536,0,0,1095, - 1114,5,537,0,0,1096,1114,5,538,0,0,1097,1114,5,539,0,0,1098,1114, - 5,540,0,0,1099,1100,5,164,0,0,1100,1101,5,74,0,0,1101,1114,3,806, - 403,0,1102,1103,5,371,0,0,1103,1104,5,368,0,0,1104,1114,3,802,401, - 0,1105,1106,5,68,0,0,1106,1107,7,1,0,0,1107,1114,3,778,389,0,1108, - 1109,7,2,0,0,1109,1114,3,810,405,0,1110,1111,5,134,0,0,1111,1114, - 3,778,389,0,1112,1114,3,820,410,0,1113,1075,1,0,0,0,1113,1080,1, - 0,0,0,1113,1083,1,0,0,0,1113,1084,1,0,0,0,1113,1085,1,0,0,0,1113, - 1086,1,0,0,0,1113,1087,1,0,0,0,1113,1088,1,0,0,0,1113,1089,1,0,0, - 0,1113,1090,1,0,0,0,1113,1091,1,0,0,0,1113,1092,1,0,0,0,1113,1093, - 1,0,0,0,1113,1094,1,0,0,0,1113,1095,1,0,0,0,1113,1096,1,0,0,0,1113, - 1097,1,0,0,0,1113,1098,1,0,0,0,1113,1099,1,0,0,0,1113,1102,1,0,0, - 0,1113,1105,1,0,0,0,1113,1108,1,0,0,0,1113,1110,1,0,0,0,1113,1112, - 1,0,0,0,1114,11,1,0,0,0,1115,1124,3,10,5,0,1116,1117,5,348,0,0,1117, - 1124,5,574,0,0,1118,1119,7,3,0,0,1119,1124,3,810,405,0,1120,1121, - 5,68,0,0,1121,1122,7,1,0,0,1122,1124,3,810,405,0,1123,1115,1,0,0, - 0,1123,1116,1,0,0,0,1123,1118,1,0,0,0,1123,1120,1,0,0,0,1124,13, - 1,0,0,0,1125,1126,5,46,0,0,1126,1127,5,99,0,0,1127,1129,3,808,404, - 0,1128,1130,5,105,0,0,1129,1128,1,0,0,0,1129,1130,1,0,0,0,1130,1134, - 1,0,0,0,1131,1133,3,12,6,0,1132,1131,1,0,0,0,1133,1136,1,0,0,0,1134, - 1132,1,0,0,0,1134,1135,1,0,0,0,1135,15,1,0,0,0,1136,1134,1,0,0,0, - 1137,1138,5,138,0,0,1138,1139,7,2,0,0,1139,1141,3,808,404,0,1140, - 1142,5,105,0,0,1141,1140,1,0,0,0,1141,1142,1,0,0,0,1142,1146,1,0, - 0,0,1143,1145,3,10,5,0,1144,1143,1,0,0,0,1145,1148,1,0,0,0,1146, - 1144,1,0,0,0,1146,1147,1,0,0,0,1147,17,1,0,0,0,1148,1146,1,0,0,0, - 1149,1150,5,138,0,0,1150,1153,7,2,0,0,1151,1154,5,30,0,0,1152,1154, - 3,808,404,0,1153,1151,1,0,0,0,1153,1152,1,0,0,0,1154,1155,1,0,0, - 0,1155,1156,5,68,0,0,1156,1157,5,175,0,0,1157,1158,3,782,391,0,1158, - 1159,3,64,32,0,1159,19,1,0,0,0,1160,1161,5,138,0,0,1161,1162,5,442, - 0,0,1162,1164,3,788,394,0,1163,1165,3,362,181,0,1164,1163,1,0,0, - 0,1164,1165,1,0,0,0,1165,1166,1,0,0,0,1166,1167,3,22,11,0,1167,21, - 1,0,0,0,1168,1172,3,24,12,0,1169,1171,3,24,12,0,1170,1169,1,0,0, - 0,1171,1174,1,0,0,0,1172,1170,1,0,0,0,1172,1173,1,0,0,0,1173,1176, - 1,0,0,0,1174,1172,1,0,0,0,1175,1177,5,315,0,0,1176,1175,1,0,0,0, - 1176,1177,1,0,0,0,1177,1195,1,0,0,0,1178,1179,5,309,0,0,1179,1180, - 5,94,0,0,1180,1195,3,786,393,0,1181,1182,5,282,0,0,1182,1183,5,94, - 0,0,1183,1195,3,808,404,0,1184,1185,5,333,0,0,1185,1186,5,323,0, - 0,1186,1195,3,32,16,0,1187,1189,5,269,0,0,1188,1187,1,0,0,0,1188, - 1189,1,0,0,0,1189,1190,1,0,0,0,1190,1191,5,462,0,0,1191,1192,5,80, - 0,0,1192,1193,5,204,0,0,1193,1195,3,812,406,0,1194,1168,1,0,0,0, - 1194,1178,1,0,0,0,1194,1181,1,0,0,0,1194,1184,1,0,0,0,1194,1188, - 1,0,0,0,1195,23,1,0,0,0,1196,1239,5,222,0,0,1197,1239,5,338,0,0, - 1198,1239,5,377,0,0,1199,1201,5,77,0,0,1200,1199,1,0,0,0,1200,1201, - 1,0,0,0,1201,1202,1,0,0,0,1202,1239,5,250,0,0,1203,1205,5,205,0, - 0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1206,1,0,0,0,1206,1207, - 5,327,0,0,1207,1214,5,243,0,0,1208,1210,5,205,0,0,1209,1208,1,0, - 0,0,1209,1210,1,0,0,0,1210,1211,1,0,0,0,1211,1212,5,327,0,0,1212, - 1214,5,181,0,0,1213,1204,1,0,0,0,1213,1209,1,0,0,0,1214,1239,1,0, - 0,0,1215,1216,5,460,0,0,1216,1239,7,4,0,0,1217,1218,5,170,0,0,1218, - 1239,3,818,409,0,1219,1220,5,320,0,0,1220,1239,3,812,406,0,1221, - 1222,5,333,0,0,1222,1223,3,812,406,0,1223,1226,7,5,0,0,1224,1227, - 3,812,406,0,1225,1227,5,53,0,0,1226,1224,1,0,0,0,1226,1225,1,0,0, - 0,1227,1239,1,0,0,0,1228,1229,5,333,0,0,1229,1230,3,812,406,0,1230, - 1231,5,64,0,0,1231,1232,5,434,0,0,1232,1239,1,0,0,0,1233,1236,5, - 313,0,0,1234,1237,3,812,406,0,1235,1237,5,30,0,0,1236,1234,1,0,0, - 0,1236,1235,1,0,0,0,1237,1239,1,0,0,0,1238,1196,1,0,0,0,1238,1197, - 1,0,0,0,1238,1198,1,0,0,0,1238,1200,1,0,0,0,1238,1213,1,0,0,0,1238, - 1215,1,0,0,0,1238,1217,1,0,0,0,1238,1219,1,0,0,0,1238,1221,1,0,0, - 0,1238,1228,1,0,0,0,1238,1233,1,0,0,0,1239,25,1,0,0,0,1240,1241, - 5,46,0,0,1241,1242,5,66,0,0,1242,1244,3,808,404,0,1243,1245,5,105, - 0,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245,1249,1,0,0,0,1246,1248, - 3,12,6,0,1247,1246,1,0,0,0,1248,1251,1,0,0,0,1249,1247,1,0,0,0,1249, - 1250,1,0,0,0,1250,27,1,0,0,0,1251,1249,1,0,0,0,1252,1253,5,138,0, - 0,1253,1254,5,66,0,0,1254,1255,3,808,404,0,1255,1256,7,6,0,0,1256, - 1257,5,99,0,0,1257,1258,3,810,405,0,1258,29,1,0,0,0,1259,1260,5, - 46,0,0,1260,1262,5,323,0,0,1261,1263,3,288,144,0,1262,1261,1,0,0, - 0,1262,1263,1,0,0,0,1263,1270,1,0,0,0,1264,1266,3,32,16,0,1265,1264, - 1,0,0,0,1265,1266,1,0,0,0,1266,1267,1,0,0,0,1267,1268,5,106,0,0, - 1268,1271,3,808,404,0,1269,1271,3,32,16,0,1270,1265,1,0,0,0,1270, - 1269,1,0,0,0,1271,1275,1,0,0,0,1272,1274,3,34,17,0,1273,1272,1,0, - 0,0,1274,1277,1,0,0,0,1275,1273,1,0,0,0,1275,1276,1,0,0,0,1276,31, - 1,0,0,0,1277,1275,1,0,0,0,1278,1279,3,310,155,0,1279,33,1,0,0,0, - 1280,1287,3,114,57,0,1281,1287,3,352,176,0,1282,1287,3,190,95,0, - 1283,1287,3,250,125,0,1284,1287,3,328,164,0,1285,1287,3,470,235, - 0,1286,1280,1,0,0,0,1286,1281,1,0,0,0,1286,1282,1,0,0,0,1286,1283, - 1,0,0,0,1286,1284,1,0,0,0,1286,1285,1,0,0,0,1287,35,1,0,0,0,1288, - 1290,5,333,0,0,1289,1291,7,7,0,0,1290,1289,1,0,0,0,1290,1291,1,0, - 0,0,1291,1292,1,0,0,0,1292,1293,3,38,19,0,1293,37,1,0,0,0,1294,1295, - 5,356,0,0,1295,1303,3,468,234,0,1296,1297,5,332,0,0,1297,1298,5, - 154,0,0,1298,1299,5,36,0,0,1299,1300,5,356,0,0,1300,1303,3,468,234, - 0,1301,1303,3,42,21,0,1302,1294,1,0,0,0,1302,1296,1,0,0,0,1302,1301, - 1,0,0,0,1303,39,1,0,0,0,1304,1307,5,30,0,0,1305,1307,3,44,22,0,1306, - 1304,1,0,0,0,1306,1305,1,0,0,0,1307,1309,1,0,0,0,1308,1310,7,5,0, - 0,1309,1308,1,0,0,0,1309,1310,1,0,0,0,1310,1313,1,0,0,0,1311,1314, - 5,53,0,0,1312,1314,3,46,23,0,1313,1311,1,0,0,0,1313,1312,1,0,0,0, - 1313,1314,1,0,0,0,1314,41,1,0,0,0,1315,1316,5,418,0,0,1316,1317, - 5,386,0,0,1317,1344,3,56,28,0,1318,1319,5,152,0,0,1319,1344,3,802, - 401,0,1320,1321,5,323,0,0,1321,1344,3,784,392,0,1322,1325,5,267, - 0,0,1323,1326,3,802,401,0,1324,1326,5,53,0,0,1325,1323,1,0,0,0,1325, - 1324,1,0,0,0,1325,1326,1,0,0,0,1326,1344,1,0,0,0,1327,1328,5,318, - 0,0,1328,1344,3,58,29,0,1329,1330,5,332,0,0,1330,1331,5,106,0,0, - 1331,1344,3,58,29,0,1332,1333,5,383,0,0,1333,1334,5,279,0,0,1334, - 1344,3,690,345,0,1335,1336,5,356,0,0,1336,1337,5,337,0,0,1337,1344, - 3,802,401,0,1338,1339,3,44,22,0,1339,1340,5,64,0,0,1340,1341,5,434, - 0,0,1341,1344,1,0,0,0,1342,1344,3,40,20,0,1343,1315,1,0,0,0,1343, - 1318,1,0,0,0,1343,1320,1,0,0,0,1343,1322,1,0,0,0,1343,1327,1,0,0, - 0,1343,1329,1,0,0,0,1343,1332,1,0,0,0,1343,1335,1,0,0,0,1343,1338, - 1,0,0,0,1343,1342,1,0,0,0,1344,43,1,0,0,0,1345,1350,3,812,406,0, - 1346,1347,5,11,0,0,1347,1349,3,812,406,0,1348,1346,1,0,0,0,1349, - 1352,1,0,0,0,1350,1348,1,0,0,0,1350,1351,1,0,0,0,1351,45,1,0,0,0, - 1352,1350,1,0,0,0,1353,1358,3,48,24,0,1354,1355,5,6,0,0,1355,1357, - 3,48,24,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,47,1,0,0,0,1360,1358,1,0,0,0,1361,1364,3, - 54,27,0,1362,1364,3,196,98,0,1363,1361,1,0,0,0,1363,1362,1,0,0,0, - 1364,49,1,0,0,0,1365,1366,5,300,0,0,1366,1371,7,8,0,0,1367,1368, - 5,310,0,0,1368,1371,5,300,0,0,1369,1371,5,330,0,0,1370,1365,1,0, - 0,0,1370,1367,1,0,0,0,1370,1369,1,0,0,0,1371,51,1,0,0,0,1372,1379, - 5,96,0,0,1373,1379,5,60,0,0,1374,1379,5,80,0,0,1375,1379,3,794,397, - 0,1376,1379,3,826,413,0,1377,1379,3,802,401,0,1378,1372,1,0,0,0, - 1378,1373,1,0,0,0,1378,1374,1,0,0,0,1378,1375,1,0,0,0,1378,1376, - 1,0,0,0,1378,1377,1,0,0,0,1379,53,1,0,0,0,1380,1385,5,96,0,0,1381, - 1385,5,60,0,0,1382,1385,5,80,0,0,1383,1385,3,58,29,0,1384,1380,1, - 0,0,0,1384,1381,1,0,0,0,1384,1382,1,0,0,0,1384,1383,1,0,0,0,1385, - 55,1,0,0,0,1386,1401,3,802,401,0,1387,1401,5,53,0,0,1388,1401,3, - 820,410,0,1389,1390,5,403,0,0,1390,1392,3,802,401,0,1391,1393,3, - 662,331,0,1392,1391,1,0,0,0,1392,1393,1,0,0,0,1393,1401,1,0,0,0, - 1394,1395,5,403,0,0,1395,1396,3,654,327,0,1396,1397,3,802,401,0, - 1397,1401,1,0,0,0,1398,1401,3,196,98,0,1399,1401,5,254,0,0,1400, - 1386,1,0,0,0,1400,1387,1,0,0,0,1400,1388,1,0,0,0,1400,1389,1,0,0, - 0,1400,1394,1,0,0,0,1400,1398,1,0,0,0,1400,1399,1,0,0,0,1401,57, - 1,0,0,0,1402,1405,3,816,408,0,1403,1405,3,802,401,0,1404,1402,1, - 0,0,0,1404,1403,1,0,0,0,1405,59,1,0,0,0,1406,1407,5,313,0,0,1407, - 1408,3,62,31,0,1408,61,1,0,0,0,1409,1410,5,418,0,0,1410,1419,5,386, - 0,0,1411,1412,5,356,0,0,1412,1413,5,244,0,0,1413,1419,5,251,0,0, - 1414,1415,5,332,0,0,1415,1419,5,106,0,0,1416,1419,5,30,0,0,1417, - 1419,3,44,22,0,1418,1409,1,0,0,0,1418,1411,1,0,0,0,1418,1414,1,0, - 0,0,1418,1416,1,0,0,0,1418,1417,1,0,0,0,1419,63,1,0,0,0,1420,1421, - 5,333,0,0,1421,1424,3,38,19,0,1422,1424,3,60,30,0,1423,1420,1,0, - 0,0,1423,1422,1,0,0,0,1424,65,1,0,0,0,1425,1426,5,333,0,0,1426,1429, - 3,42,21,0,1427,1429,3,60,30,0,1428,1425,1,0,0,0,1428,1427,1,0,0, - 0,1429,67,1,0,0,0,1430,1440,5,335,0,0,1431,1441,3,44,22,0,1432,1433, - 5,418,0,0,1433,1441,5,386,0,0,1434,1435,5,356,0,0,1435,1436,5,244, - 0,0,1436,1441,5,251,0,0,1437,1438,5,332,0,0,1438,1441,5,106,0,0, - 1439,1441,5,30,0,0,1440,1431,1,0,0,0,1440,1432,1,0,0,0,1440,1434, - 1,0,0,0,1440,1437,1,0,0,0,1440,1439,1,0,0,0,1441,69,1,0,0,0,1442, - 1443,5,333,0,0,1443,1446,5,165,0,0,1444,1447,5,30,0,0,1445,1447, - 3,754,377,0,1446,1444,1,0,0,0,1446,1445,1,0,0,0,1447,1448,1,0,0, - 0,1448,1449,7,9,0,0,1449,71,1,0,0,0,1450,1451,5,155,0,0,1451,73, - 1,0,0,0,1452,1453,5,187,0,0,1453,1454,7,10,0,0,1454,75,1,0,0,0,1455, - 1456,5,138,0,0,1456,1458,5,92,0,0,1457,1459,3,416,208,0,1458,1457, - 1,0,0,0,1458,1459,1,0,0,0,1459,1460,1,0,0,0,1460,1463,3,618,309, - 0,1461,1464,3,78,39,0,1462,1464,3,80,40,0,1463,1461,1,0,0,0,1463, - 1462,1,0,0,0,1464,1573,1,0,0,0,1465,1466,5,138,0,0,1466,1467,5,92, - 0,0,1467,1468,5,30,0,0,1468,1469,5,68,0,0,1469,1473,3,170,85,0,1470, - 1471,5,281,0,0,1471,1472,5,147,0,0,1472,1474,3,810,405,0,1473,1470, - 1,0,0,0,1473,1474,1,0,0,0,1474,1475,1,0,0,0,1475,1476,5,333,0,0, - 1476,1477,5,351,0,0,1477,1479,3,764,382,0,1478,1480,5,272,0,0,1479, - 1478,1,0,0,0,1479,1480,1,0,0,0,1480,1573,1,0,0,0,1481,1482,5,138, - 0,0,1482,1484,5,92,0,0,1483,1485,3,416,208,0,1484,1483,1,0,0,0,1484, - 1485,1,0,0,0,1485,1486,1,0,0,0,1486,1487,3,768,384,0,1487,1488,3, - 82,41,0,1488,1489,3,98,49,0,1489,1573,1,0,0,0,1490,1491,5,138,0, - 0,1491,1493,5,92,0,0,1492,1494,3,416,208,0,1493,1492,1,0,0,0,1493, - 1494,1,0,0,0,1494,1495,1,0,0,0,1495,1496,3,768,384,0,1496,1497,5, - 436,0,0,1497,1498,5,285,0,0,1498,1500,3,774,387,0,1499,1501,7,11, - 0,0,1500,1499,1,0,0,0,1500,1501,1,0,0,0,1501,1573,1,0,0,0,1502,1503, - 5,138,0,0,1503,1505,5,226,0,0,1504,1506,3,416,208,0,1505,1504,1, - 0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1510,3,774,387,0, - 1508,1511,3,78,39,0,1509,1511,3,82,41,0,1510,1508,1,0,0,0,1510,1509, - 1,0,0,0,1511,1573,1,0,0,0,1512,1513,5,138,0,0,1513,1514,5,226,0, - 0,1514,1515,5,30,0,0,1515,1516,5,68,0,0,1516,1520,3,170,85,0,1517, - 1518,5,281,0,0,1518,1519,5,147,0,0,1519,1521,3,810,405,0,1520,1517, - 1,0,0,0,1520,1521,1,0,0,0,1521,1522,1,0,0,0,1522,1523,5,333,0,0, - 1523,1525,3,170,85,0,1524,1526,5,272,0,0,1525,1524,1,0,0,0,1525, - 1526,1,0,0,0,1526,1573,1,0,0,0,1527,1528,5,138,0,0,1528,1530,5,328, - 0,0,1529,1531,3,416,208,0,1530,1529,1,0,0,0,1530,1531,1,0,0,0,1531, - 1532,1,0,0,0,1532,1533,3,774,387,0,1533,1534,3,78,39,0,1534,1573, - 1,0,0,0,1535,1537,5,138,0,0,1536,1538,5,259,0,0,1537,1536,1,0,0, - 0,1537,1538,1,0,0,0,1538,1539,1,0,0,0,1539,1541,5,376,0,0,1540,1542, - 3,416,208,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1543,1,0,0, - 0,1543,1544,3,772,386,0,1544,1545,3,78,39,0,1545,1573,1,0,0,0,1546, - 1547,5,138,0,0,1547,1548,5,259,0,0,1548,1549,5,376,0,0,1549,1550, - 5,30,0,0,1550,1551,5,68,0,0,1551,1555,3,170,85,0,1552,1553,5,281, - 0,0,1553,1554,5,147,0,0,1554,1556,3,810,405,0,1555,1552,1,0,0,0, - 1555,1556,1,0,0,0,1556,1557,1,0,0,0,1557,1558,5,333,0,0,1558,1559, - 5,351,0,0,1559,1561,3,764,382,0,1560,1562,5,272,0,0,1561,1560,1, - 0,0,0,1561,1562,1,0,0,0,1562,1573,1,0,0,0,1563,1564,5,138,0,0,1564, - 1565,5,63,0,0,1565,1567,5,92,0,0,1566,1568,3,416,208,0,1567,1566, - 1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0,1569,1570,3,618,309, - 0,1570,1571,3,78,39,0,1571,1573,1,0,0,0,1572,1455,1,0,0,0,1572,1465, - 1,0,0,0,1572,1481,1,0,0,0,1572,1490,1,0,0,0,1572,1502,1,0,0,0,1572, - 1512,1,0,0,0,1572,1527,1,0,0,0,1572,1535,1,0,0,0,1572,1546,1,0,0, - 0,1572,1563,1,0,0,0,1573,77,1,0,0,0,1574,1579,3,84,42,0,1575,1576, - 5,6,0,0,1576,1578,3,84,42,0,1577,1575,1,0,0,0,1578,1581,1,0,0,0, - 1579,1577,1,0,0,0,1579,1580,1,0,0,0,1580,79,1,0,0,0,1581,1579,1, - 0,0,0,1582,1583,3,82,41,0,1583,1584,3,98,49,0,1584,1589,1,0,0,0, - 1585,1586,5,436,0,0,1586,1587,5,285,0,0,1587,1589,3,774,387,0,1588, - 1582,1,0,0,0,1588,1585,1,0,0,0,1589,81,1,0,0,0,1590,1591,5,435,0, - 0,1591,1592,5,285,0,0,1592,1593,3,774,387,0,1593,83,1,0,0,0,1594, - 1597,5,133,0,0,1595,1596,5,45,0,0,1596,1598,3,812,406,0,1597,1595, - 1,0,0,0,1597,1598,1,0,0,0,1598,1599,1,0,0,0,1599,1828,3,136,68,0, - 1600,1601,5,138,0,0,1601,1602,5,45,0,0,1602,1606,3,812,406,0,1603, - 1605,3,266,133,0,1604,1603,1,0,0,0,1605,1608,1,0,0,0,1606,1604,1, - 0,0,0,1606,1607,1,0,0,0,1607,1828,1,0,0,0,1608,1606,1,0,0,0,1609, - 1610,5,372,0,0,1610,1611,5,45,0,0,1611,1828,3,812,406,0,1612,1613, - 5,191,0,0,1613,1615,5,45,0,0,1614,1616,3,416,208,0,1615,1614,1,0, - 0,0,1615,1616,1,0,0,0,1616,1617,1,0,0,0,1617,1619,3,812,406,0,1618, - 1620,3,88,44,0,1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1828,1,0, - 0,0,1621,1622,5,333,0,0,1622,1623,5,379,0,0,1623,1828,7,12,0,0,1624, - 1625,5,158,0,0,1625,1626,5,80,0,0,1626,1828,3,812,406,0,1627,1628, - 5,333,0,0,1628,1828,7,13,0,0,1629,1631,5,193,0,0,1630,1632,7,14, - 0,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0,1632,1633,1,0,0,0,1633,1828, - 5,357,0,0,1634,1635,5,186,0,0,1635,1639,5,357,0,0,1636,1640,5,30, - 0,0,1637,1640,5,99,0,0,1638,1640,3,812,406,0,1639,1636,1,0,0,0,1639, - 1637,1,0,0,0,1639,1638,1,0,0,0,1640,1828,1,0,0,0,1641,1642,5,193, - 0,0,1642,1643,7,14,0,0,1643,1644,5,321,0,0,1644,1828,3,812,406,0, - 1645,1646,5,186,0,0,1646,1647,5,321,0,0,1647,1828,3,812,406,0,1648, - 1650,5,269,0,0,1649,1648,1,0,0,0,1649,1650,1,0,0,0,1650,1651,1,0, - 0,0,1651,1652,5,228,0,0,1652,1828,3,774,387,0,1653,1654,5,275,0, - 0,1654,1828,3,310,155,0,1655,1656,5,77,0,0,1656,1828,5,275,0,0,1657, - 1658,5,282,0,0,1658,1659,5,94,0,0,1659,1828,3,808,404,0,1660,1661, - 5,333,0,0,1661,1662,5,351,0,0,1662,1828,3,764,382,0,1663,1664,5, - 312,0,0,1664,1669,5,219,0,0,1665,1670,5,270,0,0,1666,1670,5,113, - 0,0,1667,1670,5,53,0,0,1668,1670,3,174,87,0,1669,1665,1,0,0,0,1669, - 1666,1,0,0,0,1669,1667,1,0,0,0,1669,1668,1,0,0,0,1670,1828,1,0,0, - 0,1671,1678,5,193,0,0,1672,1678,5,186,0,0,1673,1675,5,269,0,0,1674, - 1673,1,0,0,0,1674,1675,1,0,0,0,1675,1676,1,0,0,0,1676,1678,5,209, - 0,0,1677,1671,1,0,0,0,1677,1672,1,0,0,0,1677,1674,1,0,0,0,1678,1679, - 1,0,0,0,1679,1680,5,414,0,0,1680,1681,5,251,0,0,1681,1828,5,327, - 0,0,1682,1684,5,191,0,0,1683,1685,5,44,0,0,1684,1683,1,0,0,0,1684, - 1685,1,0,0,0,1685,1687,1,0,0,0,1686,1688,3,416,208,0,1687,1686,1, - 0,0,0,1687,1688,1,0,0,0,1688,1689,1,0,0,0,1689,1691,3,794,397,0, - 1690,1692,3,88,44,0,1691,1690,1,0,0,0,1691,1692,1,0,0,0,1692,1828, - 1,0,0,0,1693,1695,5,133,0,0,1694,1696,5,44,0,0,1695,1694,1,0,0,0, - 1695,1696,1,0,0,0,1696,1698,1,0,0,0,1697,1699,3,288,144,0,1698,1697, - 1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0,1700,1828,3,126,63,0, - 1701,1703,5,138,0,0,1702,1704,5,44,0,0,1703,1702,1,0,0,0,1703,1704, - 1,0,0,0,1704,1705,1,0,0,0,1705,1708,3,794,397,0,1706,1709,3,86,43, - 0,1707,1709,3,216,108,0,1708,1706,1,0,0,0,1708,1707,1,0,0,0,1709, - 1828,1,0,0,0,1710,1712,5,138,0,0,1711,1713,5,44,0,0,1712,1711,1, - 0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1715,3,794,397,0, - 1715,1716,7,15,0,0,1716,1717,5,77,0,0,1717,1718,5,78,0,0,1718,1828, - 1,0,0,0,1719,1721,5,138,0,0,1720,1722,5,44,0,0,1721,1720,1,0,0,0, - 1721,1722,1,0,0,0,1722,1723,1,0,0,0,1723,1724,3,794,397,0,1724,1725, - 5,191,0,0,1725,1727,5,437,0,0,1726,1728,3,416,208,0,1727,1726,1, - 0,0,0,1727,1728,1,0,0,0,1728,1828,1,0,0,0,1729,1731,5,138,0,0,1730, - 1732,5,44,0,0,1731,1730,1,0,0,0,1731,1732,1,0,0,0,1732,1733,1,0, - 0,0,1733,1734,3,794,397,0,1734,1735,5,333,0,0,1735,1736,5,342,0, - 0,1736,1737,3,806,403,0,1737,1828,1,0,0,0,1738,1740,5,138,0,0,1739, - 1741,5,44,0,0,1740,1739,1,0,0,0,1740,1741,1,0,0,0,1741,1742,1,0, - 0,0,1742,1744,3,794,397,0,1743,1738,1,0,0,0,1743,1744,1,0,0,0,1744, - 1745,1,0,0,0,1745,1746,7,16,0,0,1746,1828,3,92,46,0,1747,1749,5, - 138,0,0,1748,1750,5,44,0,0,1749,1748,1,0,0,0,1749,1750,1,0,0,0,1750, - 1751,1,0,0,0,1751,1752,3,794,397,0,1752,1753,5,333,0,0,1753,1754, - 5,345,0,0,1754,1755,3,812,406,0,1755,1828,1,0,0,0,1756,1758,5,138, - 0,0,1757,1759,5,44,0,0,1758,1757,1,0,0,0,1758,1759,1,0,0,0,1759, - 1760,1,0,0,0,1760,1761,3,794,397,0,1761,1762,5,133,0,0,1762,1763, - 5,438,0,0,1763,1764,3,132,66,0,1764,1765,5,36,0,0,1765,1774,5,219, - 0,0,1766,1768,5,2,0,0,1767,1769,3,194,97,0,1768,1767,1,0,0,0,1769, - 1770,1,0,0,0,1770,1768,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0, - 0,1772,1773,5,3,0,0,1773,1775,1,0,0,0,1774,1766,1,0,0,0,1774,1775, - 1,0,0,0,1775,1828,1,0,0,0,1776,1778,5,138,0,0,1777,1779,5,44,0,0, - 1778,1777,1,0,0,0,1778,1779,1,0,0,0,1779,1780,1,0,0,0,1780,1794, - 3,794,397,0,1781,1786,5,314,0,0,1782,1784,5,105,0,0,1783,1782,1, - 0,0,0,1783,1784,1,0,0,0,1784,1785,1,0,0,0,1785,1787,3,196,98,0,1786, - 1783,1,0,0,0,1786,1787,1,0,0,0,1787,1795,1,0,0,0,1788,1792,5,333, - 0,0,1789,1793,3,194,97,0,1790,1791,5,438,0,0,1791,1793,3,132,66, - 0,1792,1789,1,0,0,0,1792,1790,1,0,0,0,1793,1795,1,0,0,0,1794,1781, - 1,0,0,0,1794,1788,1,0,0,0,1795,1796,1,0,0,0,1796,1794,1,0,0,0,1796, - 1797,1,0,0,0,1797,1828,1,0,0,0,1798,1800,5,138,0,0,1799,1801,5,44, - 0,0,1800,1799,1,0,0,0,1800,1801,1,0,0,0,1801,1802,1,0,0,0,1802,1803, - 3,794,397,0,1803,1804,5,191,0,0,1804,1806,5,219,0,0,1805,1807,3, - 416,208,0,1806,1805,1,0,0,0,1806,1807,1,0,0,0,1807,1828,1,0,0,0, - 1808,1810,5,138,0,0,1809,1811,5,44,0,0,1810,1809,1,0,0,0,1810,1811, - 1,0,0,0,1811,1812,1,0,0,0,1812,1815,3,794,397,0,1813,1814,5,333, - 0,0,1814,1816,5,174,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816, - 1817,1,0,0,0,1817,1818,5,360,0,0,1818,1820,3,646,323,0,1819,1821, - 3,90,45,0,1820,1819,1,0,0,0,1820,1821,1,0,0,0,1821,1824,1,0,0,0, - 1822,1823,5,100,0,0,1823,1825,3,668,334,0,1824,1822,1,0,0,0,1824, - 1825,1,0,0,0,1825,1828,1,0,0,0,1826,1828,3,216,108,0,1827,1594,1, - 0,0,0,1827,1600,1,0,0,0,1827,1609,1,0,0,0,1827,1612,1,0,0,0,1827, - 1621,1,0,0,0,1827,1624,1,0,0,0,1827,1627,1,0,0,0,1827,1629,1,0,0, - 0,1827,1634,1,0,0,0,1827,1641,1,0,0,0,1827,1645,1,0,0,0,1827,1649, - 1,0,0,0,1827,1653,1,0,0,0,1827,1655,1,0,0,0,1827,1657,1,0,0,0,1827, - 1660,1,0,0,0,1827,1663,1,0,0,0,1827,1677,1,0,0,0,1827,1682,1,0,0, - 0,1827,1693,1,0,0,0,1827,1701,1,0,0,0,1827,1710,1,0,0,0,1827,1719, - 1,0,0,0,1827,1729,1,0,0,0,1827,1743,1,0,0,0,1827,1747,1,0,0,0,1827, - 1756,1,0,0,0,1827,1776,1,0,0,0,1827,1798,1,0,0,0,1827,1808,1,0,0, - 0,1827,1826,1,0,0,0,1828,85,1,0,0,0,1829,1830,5,333,0,0,1830,1831, - 5,53,0,0,1831,1835,3,668,334,0,1832,1833,5,191,0,0,1833,1835,5,53, - 0,0,1834,1829,1,0,0,0,1834,1832,1,0,0,0,1835,87,1,0,0,0,1836,1837, - 7,17,0,0,1837,89,1,0,0,0,1838,1839,5,43,0,0,1839,1840,3,310,155, - 0,1840,91,1,0,0,0,1841,1842,5,2,0,0,1842,1847,3,96,48,0,1843,1844, - 5,6,0,0,1844,1846,3,96,48,0,1845,1843,1,0,0,0,1846,1849,1,0,0,0, - 1847,1845,1,0,0,0,1847,1848,1,0,0,0,1848,1850,1,0,0,0,1849,1847, - 1,0,0,0,1850,1851,5,3,0,0,1851,93,1,0,0,0,1852,1853,5,105,0,0,1853, - 1854,3,92,46,0,1854,95,1,0,0,0,1855,1860,3,818,409,0,1856,1857,5, - 10,0,0,1857,1861,3,282,141,0,1858,1859,5,11,0,0,1859,1861,3,280, - 140,0,1860,1856,1,0,0,0,1860,1858,1,0,0,0,1860,1861,1,0,0,0,1861, - 97,1,0,0,0,1862,1863,5,62,0,0,1863,1864,5,422,0,0,1864,1865,5,105, - 0,0,1865,1866,5,2,0,0,1866,1867,5,533,0,0,1867,1868,3,196,98,0,1868, - 1869,5,6,0,0,1869,1870,5,534,0,0,1870,1871,3,196,98,0,1871,1872, - 5,3,0,0,1872,1886,1,0,0,0,1873,1874,5,62,0,0,1874,1875,5,422,0,0, - 1875,1876,5,68,0,0,1876,1886,3,528,264,0,1877,1878,5,62,0,0,1878, - 1879,5,422,0,0,1879,1880,5,64,0,0,1880,1881,3,528,264,0,1881,1882, - 5,94,0,0,1882,1883,3,528,264,0,1883,1886,1,0,0,0,1884,1886,5,53, - 0,0,1885,1862,1,0,0,0,1885,1873,1,0,0,0,1885,1877,1,0,0,0,1885,1884, - 1,0,0,0,1886,99,1,0,0,0,1887,1888,5,138,0,0,1888,1889,5,360,0,0, - 1889,1890,3,310,155,0,1890,1895,3,102,51,0,1891,1892,5,6,0,0,1892, - 1894,3,102,51,0,1893,1891,1,0,0,0,1894,1897,1,0,0,0,1895,1893,1, - 0,0,0,1895,1896,1,0,0,0,1896,101,1,0,0,0,1897,1895,1,0,0,0,1898, - 1899,5,133,0,0,1899,1900,5,143,0,0,1900,1902,3,638,319,0,1901,1903, - 3,88,44,0,1902,1901,1,0,0,0,1902,1903,1,0,0,0,1903,1929,1,0,0,0, - 1904,1905,5,191,0,0,1905,1907,5,143,0,0,1906,1908,3,416,208,0,1907, - 1906,1,0,0,0,1907,1908,1,0,0,0,1908,1909,1,0,0,0,1909,1911,3,812, - 406,0,1910,1912,3,88,44,0,1911,1910,1,0,0,0,1911,1912,1,0,0,0,1912, - 1929,1,0,0,0,1913,1914,5,138,0,0,1914,1915,5,143,0,0,1915,1918,3, - 812,406,0,1916,1917,5,333,0,0,1917,1919,5,174,0,0,1918,1916,1,0, - 0,0,1918,1919,1,0,0,0,1919,1920,1,0,0,0,1920,1921,5,360,0,0,1921, - 1923,3,646,323,0,1922,1924,3,90,45,0,1923,1922,1,0,0,0,1923,1924, - 1,0,0,0,1924,1926,1,0,0,0,1925,1927,3,88,44,0,1926,1925,1,0,0,0, - 1926,1927,1,0,0,0,1927,1929,1,0,0,0,1928,1898,1,0,0,0,1928,1904, - 1,0,0,0,1928,1913,1,0,0,0,1929,103,1,0,0,0,1930,1933,5,157,0,0,1931, - 1934,3,812,406,0,1932,1934,5,30,0,0,1933,1931,1,0,0,0,1933,1932, - 1,0,0,0,1934,105,1,0,0,0,1935,1937,5,169,0,0,1936,1938,5,107,0,0, - 1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939,1,0,0,0,1939,1941, - 3,768,384,0,1940,1942,3,138,69,0,1941,1940,1,0,0,0,1941,1942,1,0, - 0,0,1942,1943,1,0,0,0,1943,1945,7,18,0,0,1944,1946,5,297,0,0,1945, - 1944,1,0,0,0,1945,1946,1,0,0,0,1946,1950,1,0,0,0,1947,1951,3,802, - 401,0,1948,1951,5,343,0,0,1949,1951,5,344,0,0,1950,1947,1,0,0,0, - 1950,1948,1,0,0,0,1950,1949,1,0,0,0,1951,1957,1,0,0,0,1952,1954, - 5,100,0,0,1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954,1955,1,0,0,0, - 1955,1956,5,184,0,0,1956,1958,3,802,401,0,1957,1953,1,0,0,0,1957, - 1958,1,0,0,0,1958,1960,1,0,0,0,1959,1961,5,105,0,0,1960,1959,1,0, - 0,0,1960,1961,1,0,0,0,1961,1962,1,0,0,0,1962,1964,3,110,55,0,1963, - 1965,3,632,316,0,1964,1963,1,0,0,0,1964,1965,1,0,0,0,1965,1985,1, - 0,0,0,1966,1967,5,169,0,0,1967,1968,5,2,0,0,1968,1969,3,524,262, - 0,1969,1970,5,3,0,0,1970,1972,5,94,0,0,1971,1973,5,297,0,0,1972, - 1971,1,0,0,0,1972,1973,1,0,0,0,1973,1977,1,0,0,0,1974,1978,3,802, - 401,0,1975,1978,5,343,0,0,1976,1978,5,344,0,0,1977,1974,1,0,0,0, - 1977,1975,1,0,0,0,1977,1976,1,0,0,0,1978,1980,1,0,0,0,1979,1981, - 5,105,0,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981,1982,1,0,0,0, - 1982,1983,3,110,55,0,1983,1985,1,0,0,0,1984,1935,1,0,0,0,1984,1966, - 1,0,0,0,1985,107,1,0,0,0,1986,2029,5,107,0,0,1987,2029,5,112,0,0, - 1988,1990,7,19,0,0,1989,1991,5,36,0,0,1990,1989,1,0,0,0,1990,1991, - 1,0,0,0,1991,1992,1,0,0,0,1992,2029,3,802,401,0,1993,2029,5,171, - 0,0,1994,2029,5,216,0,0,1995,1996,5,209,0,0,1996,1999,5,298,0,0, - 1997,2000,3,142,71,0,1998,2000,5,9,0,0,1999,1997,1,0,0,0,1999,1998, - 1,0,0,0,2000,2029,1,0,0,0,2001,2003,5,209,0,0,2002,2004,5,77,0,0, - 2003,2002,1,0,0,0,2003,2004,1,0,0,0,2004,2005,1,0,0,0,2005,2006, - 5,78,0,0,2006,2029,3,142,71,0,2007,2008,5,194,0,0,2008,2029,3,802, - 401,0,2009,2026,7,20,0,0,2010,2013,5,2,0,0,2011,2014,3,142,71,0, - 2012,2014,5,9,0,0,2013,2011,1,0,0,0,2013,2012,1,0,0,0,2014,2022, - 1,0,0,0,2015,2018,5,6,0,0,2016,2019,3,142,71,0,2017,2019,5,9,0,0, - 2018,2016,1,0,0,0,2018,2017,1,0,0,0,2019,2021,1,0,0,0,2020,2015, - 1,0,0,0,2021,2024,1,0,0,0,2022,2020,1,0,0,0,2022,2023,1,0,0,0,2023, - 2025,1,0,0,0,2024,2022,1,0,0,0,2025,2027,5,3,0,0,2026,2010,1,0,0, - 0,2026,2027,1,0,0,0,2027,2029,1,0,0,0,2028,1986,1,0,0,0,2028,1987, - 1,0,0,0,2028,1988,1,0,0,0,2028,1993,1,0,0,0,2028,1994,1,0,0,0,2028, - 1995,1,0,0,0,2028,2001,1,0,0,0,2028,2007,1,0,0,0,2028,2009,1,0,0, - 0,2029,2032,1,0,0,0,2030,2028,1,0,0,0,2030,2031,1,0,0,0,2031,109, - 1,0,0,0,2032,2030,1,0,0,0,2033,2052,3,108,54,0,2034,2037,5,2,0,0, - 2035,2038,3,108,54,0,2036,2038,3,112,56,0,2037,2035,1,0,0,0,2037, - 2036,1,0,0,0,2038,2046,1,0,0,0,2039,2042,5,6,0,0,2040,2043,3,108, - 54,0,2041,2043,3,112,56,0,2042,2040,1,0,0,0,2042,2041,1,0,0,0,2043, - 2045,1,0,0,0,2044,2039,1,0,0,0,2045,2048,1,0,0,0,2046,2044,1,0,0, - 0,2046,2047,1,0,0,0,2047,2049,1,0,0,0,2048,2046,1,0,0,0,2049,2050, - 5,3,0,0,2050,2052,1,0,0,0,2051,2033,1,0,0,0,2051,2034,1,0,0,0,2052, - 111,1,0,0,0,2053,2068,3,818,409,0,2054,2069,3,54,27,0,2055,2069, - 3,196,98,0,2056,2069,5,9,0,0,2057,2058,5,2,0,0,2058,2063,3,52,26, - 0,2059,2060,5,6,0,0,2060,2062,3,52,26,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,2066,1,0,0,0,2065, - 2063,1,0,0,0,2066,2067,5,3,0,0,2067,2069,1,0,0,0,2068,2054,1,0,0, - 0,2068,2055,1,0,0,0,2068,2056,1,0,0,0,2068,2057,1,0,0,0,2068,2069, - 1,0,0,0,2069,113,1,0,0,0,2070,2072,5,46,0,0,2071,2073,3,116,58,0, - 2072,2071,1,0,0,0,2072,2073,1,0,0,0,2073,2074,1,0,0,0,2074,2076, - 5,92,0,0,2075,2077,3,288,144,0,2076,2075,1,0,0,0,2076,2077,1,0,0, - 0,2077,2078,1,0,0,0,2078,2144,3,766,383,0,2079,2081,5,2,0,0,2080, - 2082,3,120,60,0,2081,2080,1,0,0,0,2081,2082,1,0,0,0,2082,2083,1, - 0,0,0,2083,2085,5,3,0,0,2084,2086,3,158,79,0,2085,2084,1,0,0,0,2085, - 2086,1,0,0,0,2086,2088,1,0,0,0,2087,2089,3,160,80,0,2088,2087,1, - 0,0,0,2088,2089,1,0,0,0,2089,2091,1,0,0,0,2090,2092,3,164,82,0,2091, - 2090,1,0,0,0,2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2095,3,166, - 83,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096, - 2098,3,168,84,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2100,1, - 0,0,0,2099,2101,3,170,85,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101, - 2145,1,0,0,0,2102,2103,5,275,0,0,2103,2105,3,310,155,0,2104,2106, - 3,118,59,0,2105,2104,1,0,0,0,2105,2106,1,0,0,0,2106,2108,1,0,0,0, - 2107,2109,3,160,80,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2111, - 1,0,0,0,2110,2112,3,164,82,0,2111,2110,1,0,0,0,2111,2112,1,0,0,0, - 2112,2114,1,0,0,0,2113,2115,3,166,83,0,2114,2113,1,0,0,0,2114,2115, - 1,0,0,0,2115,2117,1,0,0,0,2116,2118,3,168,84,0,2117,2116,1,0,0,0, - 2117,2118,1,0,0,0,2118,2120,1,0,0,0,2119,2121,3,170,85,0,2120,2119, - 1,0,0,0,2120,2121,1,0,0,0,2121,2145,1,0,0,0,2122,2123,5,285,0,0, - 2123,2124,5,275,0,0,2124,2126,3,774,387,0,2125,2127,3,118,59,0,2126, - 2125,1,0,0,0,2126,2127,1,0,0,0,2127,2128,1,0,0,0,2128,2130,3,98, - 49,0,2129,2131,3,160,80,0,2130,2129,1,0,0,0,2130,2131,1,0,0,0,2131, - 2133,1,0,0,0,2132,2134,3,164,82,0,2133,2132,1,0,0,0,2133,2134,1, - 0,0,0,2134,2136,1,0,0,0,2135,2137,3,166,83,0,2136,2135,1,0,0,0,2136, - 2137,1,0,0,0,2137,2139,1,0,0,0,2138,2140,3,168,84,0,2139,2138,1, - 0,0,0,2139,2140,1,0,0,0,2140,2142,1,0,0,0,2141,2143,3,170,85,0,2142, - 2141,1,0,0,0,2142,2143,1,0,0,0,2143,2145,1,0,0,0,2144,2079,1,0,0, - 0,2144,2102,1,0,0,0,2144,2122,1,0,0,0,2145,115,1,0,0,0,2146,2152, - 5,354,0,0,2147,2152,5,352,0,0,2148,2149,7,21,0,0,2149,2152,7,22, - 0,0,2150,2152,5,367,0,0,2151,2146,1,0,0,0,2151,2147,1,0,0,0,2151, - 2148,1,0,0,0,2151,2150,1,0,0,0,2152,117,1,0,0,0,2153,2154,5,2,0, - 0,2154,2159,3,124,62,0,2155,2156,5,6,0,0,2156,2158,3,124,62,0,2157, - 2155,1,0,0,0,2158,2161,1,0,0,0,2159,2157,1,0,0,0,2159,2160,1,0,0, - 0,2160,2162,1,0,0,0,2161,2159,1,0,0,0,2162,2163,5,3,0,0,2163,119, - 1,0,0,0,2164,2169,3,122,61,0,2165,2166,5,6,0,0,2166,2168,3,122,61, - 0,2167,2165,1,0,0,0,2168,2171,1,0,0,0,2169,2167,1,0,0,0,2169,2170, - 1,0,0,0,2170,121,1,0,0,0,2171,2169,1,0,0,0,2172,2173,5,45,0,0,2173, - 2175,3,812,406,0,2174,2172,1,0,0,0,2174,2175,1,0,0,0,2175,2176,1, - 0,0,0,2176,2188,3,136,68,0,2177,2188,3,126,63,0,2178,2179,5,120, - 0,0,2179,2184,3,774,387,0,2180,2181,7,23,0,0,2181,2183,3,134,67, - 0,2182,2180,1,0,0,0,2183,2186,1,0,0,0,2184,2182,1,0,0,0,2184,2185, - 1,0,0,0,2185,2188,1,0,0,0,2186,2184,1,0,0,0,2187,2174,1,0,0,0,2187, - 2177,1,0,0,0,2187,2178,1,0,0,0,2188,123,1,0,0,0,2189,2192,3,796, - 398,0,2190,2191,5,105,0,0,2191,2193,5,280,0,0,2192,2190,1,0,0,0, - 2192,2193,1,0,0,0,2193,2197,1,0,0,0,2194,2196,3,128,64,0,2195,2194, - 1,0,0,0,2196,2199,1,0,0,0,2197,2195,1,0,0,0,2197,2198,1,0,0,0,2198, - 2206,1,0,0,0,2199,2197,1,0,0,0,2200,2201,5,45,0,0,2201,2203,3,812, - 406,0,2202,2200,1,0,0,0,2202,2203,1,0,0,0,2203,2204,1,0,0,0,2204, - 2206,3,136,68,0,2205,2189,1,0,0,0,2205,2202,1,0,0,0,2206,125,1,0, - 0,0,2207,2208,3,796,398,0,2208,2210,3,646,323,0,2209,2211,3,214, - 107,0,2210,2209,1,0,0,0,2210,2211,1,0,0,0,2211,2221,1,0,0,0,2212, - 2219,5,345,0,0,2213,2220,5,544,0,0,2214,2220,5,205,0,0,2215,2220, - 5,545,0,0,2216,2220,5,546,0,0,2217,2220,5,53,0,0,2218,2220,3,812, - 406,0,2219,2213,1,0,0,0,2219,2214,1,0,0,0,2219,2215,1,0,0,0,2219, - 2216,1,0,0,0,2219,2217,1,0,0,0,2219,2218,1,0,0,0,2220,2222,1,0,0, - 0,2221,2212,1,0,0,0,2221,2222,1,0,0,0,2222,2225,1,0,0,0,2223,2224, - 5,543,0,0,2224,2226,3,812,406,0,2225,2223,1,0,0,0,2225,2226,1,0, - 0,0,2226,2228,1,0,0,0,2227,2229,3,90,45,0,2228,2227,1,0,0,0,2228, - 2229,1,0,0,0,2229,2232,1,0,0,0,2230,2231,5,105,0,0,2231,2233,5,280, - 0,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233,2237,1,0,0,0,2234,2236, - 3,128,64,0,2235,2234,1,0,0,0,2236,2239,1,0,0,0,2237,2235,1,0,0,0, - 2237,2238,1,0,0,0,2238,127,1,0,0,0,2239,2237,1,0,0,0,2240,2241,5, - 45,0,0,2241,2243,3,812,406,0,2242,2240,1,0,0,0,2242,2243,1,0,0,0, - 2243,2244,1,0,0,0,2244,2249,3,130,65,0,2245,2247,5,77,0,0,2246,2245, - 1,0,0,0,2246,2247,1,0,0,0,2247,2248,1,0,0,0,2248,2250,5,54,0,0,2249, - 2246,1,0,0,0,2249,2250,1,0,0,0,2250,2253,1,0,0,0,2251,2252,5,69, - 0,0,2252,2254,7,9,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,129, - 1,0,0,0,2255,2257,5,77,0,0,2256,2255,1,0,0,0,2256,2257,1,0,0,0,2257, - 2258,1,0,0,0,2258,2336,5,78,0,0,2259,2261,5,98,0,0,2260,2262,3,394, - 197,0,2261,2260,1,0,0,0,2261,2262,1,0,0,0,2262,2264,1,0,0,0,2263, - 2265,3,172,86,0,2264,2263,1,0,0,0,2264,2265,1,0,0,0,2265,2336,1, - 0,0,0,2266,2272,5,98,0,0,2267,2269,5,273,0,0,2268,2270,5,77,0,0, - 2269,2268,1,0,0,0,2269,2270,1,0,0,0,2270,2271,1,0,0,0,2271,2273, - 5,56,0,0,2272,2267,1,0,0,0,2272,2273,1,0,0,0,2273,2276,1,0,0,0,2274, - 2275,5,441,0,0,2275,2277,3,354,177,0,2276,2274,1,0,0,0,2276,2277, - 1,0,0,0,2277,2279,1,0,0,0,2278,2280,3,566,283,0,2279,2278,1,0,0, - 0,2279,2280,1,0,0,0,2280,2282,1,0,0,0,2281,2283,3,172,86,0,2282, - 2281,1,0,0,0,2282,2283,1,0,0,0,2283,2336,1,0,0,0,2284,2285,5,85, - 0,0,2285,2287,5,245,0,0,2286,2288,3,394,197,0,2287,2286,1,0,0,0, - 2287,2288,1,0,0,0,2288,2290,1,0,0,0,2289,2291,3,172,86,0,2290,2289, - 1,0,0,0,2290,2291,1,0,0,0,2291,2336,1,0,0,0,2292,2293,5,42,0,0,2293, - 2294,5,2,0,0,2294,2295,3,668,334,0,2295,2298,5,3,0,0,2296,2297,5, - 269,0,0,2297,2299,5,228,0,0,2298,2296,1,0,0,0,2298,2299,1,0,0,0, - 2299,2336,1,0,0,0,2300,2301,5,53,0,0,2301,2336,3,676,338,0,2302, - 2303,5,438,0,0,2303,2304,3,132,66,0,2304,2321,5,36,0,0,2305,2314, - 5,219,0,0,2306,2308,5,2,0,0,2307,2309,3,194,97,0,2308,2307,1,0,0, - 0,2309,2310,1,0,0,0,2310,2308,1,0,0,0,2310,2311,1,0,0,0,2311,2312, - 1,0,0,0,2312,2313,5,3,0,0,2313,2315,1,0,0,0,2314,2306,1,0,0,0,2314, - 2315,1,0,0,0,2315,2322,1,0,0,0,2316,2317,5,2,0,0,2317,2318,3,668, - 334,0,2318,2319,5,3,0,0,2319,2320,5,440,0,0,2320,2322,1,0,0,0,2321, - 2305,1,0,0,0,2321,2316,1,0,0,0,2322,2336,1,0,0,0,2323,2324,5,86, - 0,0,2324,2326,3,774,387,0,2325,2327,3,138,69,0,2326,2325,1,0,0,0, - 2326,2327,1,0,0,0,2327,2329,1,0,0,0,2328,2330,3,146,73,0,2329,2328, - 1,0,0,0,2329,2330,1,0,0,0,2330,2332,1,0,0,0,2331,2333,3,150,75,0, - 2332,2331,1,0,0,0,2332,2333,1,0,0,0,2333,2336,1,0,0,0,2334,2336, - 3,90,45,0,2335,2256,1,0,0,0,2335,2259,1,0,0,0,2335,2266,1,0,0,0, - 2335,2284,1,0,0,0,2335,2292,1,0,0,0,2335,2300,1,0,0,0,2335,2302, - 1,0,0,0,2335,2323,1,0,0,0,2335,2334,1,0,0,0,2336,131,1,0,0,0,2337, - 2341,5,139,0,0,2338,2339,5,147,0,0,2339,2341,5,53,0,0,2340,2337, - 1,0,0,0,2340,2338,1,0,0,0,2341,133,1,0,0,0,2342,2343,7,24,0,0,2343, - 135,1,0,0,0,2344,2345,5,42,0,0,2345,2346,5,2,0,0,2346,2347,3,668, - 334,0,2347,2351,5,3,0,0,2348,2350,3,266,133,0,2349,2348,1,0,0,0, - 2350,2353,1,0,0,0,2351,2349,1,0,0,0,2351,2352,1,0,0,0,2352,2441, - 1,0,0,0,2353,2351,1,0,0,0,2354,2358,5,98,0,0,2355,2356,5,85,0,0, - 2356,2358,5,245,0,0,2357,2354,1,0,0,0,2357,2355,1,0,0,0,2358,2382, - 1,0,0,0,2359,2361,3,138,69,0,2360,2362,3,144,72,0,2361,2360,1,0, - 0,0,2361,2362,1,0,0,0,2362,2364,1,0,0,0,2363,2365,3,394,197,0,2364, - 2363,1,0,0,0,2364,2365,1,0,0,0,2365,2367,1,0,0,0,2366,2368,3,172, - 86,0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2372,1,0,0,0,2369, - 2371,3,266,133,0,2370,2369,1,0,0,0,2371,2374,1,0,0,0,2372,2370,1, - 0,0,0,2372,2373,1,0,0,0,2373,2383,1,0,0,0,2374,2372,1,0,0,0,2375, - 2379,3,174,87,0,2376,2378,3,266,133,0,2377,2376,1,0,0,0,2378,2381, - 1,0,0,0,2379,2377,1,0,0,0,2379,2380,1,0,0,0,2380,2383,1,0,0,0,2381, - 2379,1,0,0,0,2382,2359,1,0,0,0,2382,2375,1,0,0,0,2383,2441,1,0,0, - 0,2384,2386,5,199,0,0,2385,2387,3,164,82,0,2386,2385,1,0,0,0,2386, - 2387,1,0,0,0,2387,2388,1,0,0,0,2388,2389,5,2,0,0,2389,2394,3,148, - 74,0,2390,2391,5,6,0,0,2391,2393,3,148,74,0,2392,2390,1,0,0,0,2393, - 2396,1,0,0,0,2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395,2397,1,0,0, - 0,2396,2394,1,0,0,0,2397,2399,5,3,0,0,2398,2400,3,144,72,0,2399, - 2398,1,0,0,0,2399,2400,1,0,0,0,2400,2402,1,0,0,0,2401,2403,3,394, - 197,0,2402,2401,1,0,0,0,2402,2403,1,0,0,0,2403,2405,1,0,0,0,2404, - 2406,3,172,86,0,2405,2404,1,0,0,0,2405,2406,1,0,0,0,2406,2412,1, - 0,0,0,2407,2408,5,103,0,0,2408,2409,5,2,0,0,2409,2410,3,668,334, - 0,2410,2411,5,3,0,0,2411,2413,1,0,0,0,2412,2407,1,0,0,0,2412,2413, - 1,0,0,0,2413,2417,1,0,0,0,2414,2416,3,266,133,0,2415,2414,1,0,0, - 0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418,2441, - 1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,63,0,0,2421,2422,5,245,0,0, - 2422,2423,3,138,69,0,2423,2424,5,86,0,0,2424,2426,3,774,387,0,2425, - 2427,3,138,69,0,2426,2425,1,0,0,0,2426,2427,1,0,0,0,2427,2429,1, - 0,0,0,2428,2430,3,146,73,0,2429,2428,1,0,0,0,2429,2430,1,0,0,0,2430, - 2432,1,0,0,0,2431,2433,3,150,75,0,2432,2431,1,0,0,0,2432,2433,1, - 0,0,0,2433,2437,1,0,0,0,2434,2436,3,266,133,0,2435,2434,1,0,0,0, - 2436,2439,1,0,0,0,2437,2435,1,0,0,0,2437,2438,1,0,0,0,2438,2441, - 1,0,0,0,2439,2437,1,0,0,0,2440,2344,1,0,0,0,2440,2357,1,0,0,0,2440, - 2384,1,0,0,0,2440,2420,1,0,0,0,2441,137,1,0,0,0,2442,2443,5,2,0, - 0,2443,2444,3,142,71,0,2444,2445,5,3,0,0,2445,139,1,0,0,0,2446,2447, - 5,2,0,0,2447,2452,3,796,398,0,2448,2449,5,6,0,0,2449,2451,3,796, - 398,0,2450,2448,1,0,0,0,2451,2454,1,0,0,0,2452,2450,1,0,0,0,2452, - 2453,1,0,0,0,2453,2455,1,0,0,0,2454,2452,1,0,0,0,2455,2456,5,3,0, - 0,2456,141,1,0,0,0,2457,2462,3,794,397,0,2458,2459,5,6,0,0,2459, - 2461,3,794,397,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,143,1,0,0,0,2464,2462,1,0,0,0,2465, - 2466,5,441,0,0,2466,2467,3,138,69,0,2467,145,1,0,0,0,2468,2469,5, - 258,0,0,2469,2470,7,25,0,0,2470,147,1,0,0,0,2471,2472,3,356,178, - 0,2472,2479,5,105,0,0,2473,2480,3,408,204,0,2474,2475,5,278,0,0, - 2475,2476,5,2,0,0,2476,2477,3,408,204,0,2477,2478,5,3,0,0,2478,2480, - 1,0,0,0,2479,2473,1,0,0,0,2479,2474,1,0,0,0,2480,149,1,0,0,0,2481, - 2483,3,152,76,0,2482,2484,3,154,77,0,2483,2482,1,0,0,0,2483,2484, - 1,0,0,0,2484,2490,1,0,0,0,2485,2487,3,154,77,0,2486,2488,3,152,76, - 0,2487,2486,1,0,0,0,2487,2488,1,0,0,0,2488,2490,1,0,0,0,2489,2481, - 1,0,0,0,2489,2485,1,0,0,0,2490,151,1,0,0,0,2491,2492,5,80,0,0,2492, - 2493,5,369,0,0,2493,2494,3,156,78,0,2494,153,1,0,0,0,2495,2496,5, - 80,0,0,2496,2497,5,182,0,0,2497,2498,3,156,78,0,2498,155,1,0,0,0, - 2499,2500,5,269,0,0,2500,2509,5,132,0,0,2501,2509,5,315,0,0,2502, - 2509,5,150,0,0,2503,2504,5,333,0,0,2504,2506,7,26,0,0,2505,2507, - 3,142,71,0,2506,2505,1,0,0,0,2506,2507,1,0,0,0,2507,2509,1,0,0,0, - 2508,2499,1,0,0,0,2508,2501,1,0,0,0,2508,2502,1,0,0,0,2508,2503, - 1,0,0,0,2509,157,1,0,0,0,2510,2511,5,238,0,0,2511,2512,5,2,0,0,2512, - 2513,3,754,377,0,2513,2514,5,3,0,0,2514,159,1,0,0,0,2515,2516,5, - 285,0,0,2516,2517,5,147,0,0,2517,2518,3,812,406,0,2518,2519,5,2, - 0,0,2519,2524,3,162,81,0,2520,2521,5,6,0,0,2521,2523,3,162,81,0, - 2522,2520,1,0,0,0,2523,2526,1,0,0,0,2524,2522,1,0,0,0,2524,2525, - 1,0,0,0,2525,2527,1,0,0,0,2526,2524,1,0,0,0,2527,2528,5,3,0,0,2528, - 161,1,0,0,0,2529,2536,3,794,397,0,2530,2536,3,682,341,0,2531,2532, - 5,2,0,0,2532,2533,3,668,334,0,2533,2534,5,3,0,0,2534,2536,1,0,0, - 0,2535,2529,1,0,0,0,2535,2530,1,0,0,0,2535,2531,1,0,0,0,2536,2538, - 1,0,0,0,2537,2539,3,90,45,0,2538,2537,1,0,0,0,2538,2539,1,0,0,0, - 2539,2541,1,0,0,0,2540,2542,3,310,155,0,2541,2540,1,0,0,0,2541,2542, - 1,0,0,0,2542,163,1,0,0,0,2543,2544,5,100,0,0,2544,2545,3,812,406, - 0,2545,165,1,0,0,0,2546,2547,5,105,0,0,2547,2551,3,92,46,0,2548, - 2549,7,27,0,0,2549,2551,5,277,0,0,2550,2546,1,0,0,0,2550,2548,1, - 0,0,0,2551,167,1,0,0,0,2552,2553,5,80,0,0,2553,2559,5,161,0,0,2554, - 2560,5,191,0,0,2555,2556,5,182,0,0,2556,2560,5,320,0,0,2557,2558, - 5,292,0,0,2558,2560,5,320,0,0,2559,2554,1,0,0,0,2559,2555,1,0,0, - 0,2559,2557,1,0,0,0,2560,169,1,0,0,0,2561,2562,5,351,0,0,2562,2563, - 3,764,382,0,2563,171,1,0,0,0,2564,2565,5,100,0,0,2565,2566,5,226, - 0,0,2566,2567,3,170,85,0,2567,173,1,0,0,0,2568,2569,5,100,0,0,2569, - 2570,5,226,0,0,2570,2571,3,812,406,0,2571,175,1,0,0,0,2572,2573, - 5,46,0,0,2573,2578,5,342,0,0,2574,2576,3,288,144,0,2575,2574,1,0, - 0,0,2575,2576,1,0,0,0,2576,2577,1,0,0,0,2577,2579,3,310,155,0,2578, - 2575,1,0,0,0,2578,2579,1,0,0,0,2579,2581,1,0,0,0,2580,2582,3,138, - 69,0,2581,2580,1,0,0,0,2581,2582,1,0,0,0,2582,2583,1,0,0,0,2583, - 2593,5,80,0,0,2584,2589,3,726,363,0,2585,2586,5,6,0,0,2586,2588, - 3,726,363,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,2594,1,0,0,0,2591,2589,1,0,0,0,2592,2594, - 3,724,362,0,2593,2584,1,0,0,0,2593,2592,1,0,0,0,2594,2595,1,0,0, - 0,2595,2596,3,604,302,0,2596,177,1,0,0,0,2597,2598,5,138,0,0,2598, - 2600,5,342,0,0,2599,2601,3,416,208,0,2600,2599,1,0,0,0,2600,2601, - 1,0,0,0,2601,2602,1,0,0,0,2602,2603,3,310,155,0,2603,2604,5,333, - 0,0,2604,2605,5,342,0,0,2605,2606,3,806,403,0,2606,179,1,0,0,0,2607, - 2609,5,46,0,0,2608,2610,3,116,58,0,2609,2608,1,0,0,0,2609,2610,1, - 0,0,0,2610,2611,1,0,0,0,2611,2613,5,92,0,0,2612,2614,3,288,144,0, - 2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2615,1,0,0,0,2615,2616, - 3,182,91,0,2616,2617,5,36,0,0,2617,2619,3,554,277,0,2618,2620,3, - 184,92,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,181,1,0,0,0,2621, - 2623,3,766,383,0,2622,2624,3,140,70,0,2623,2622,1,0,0,0,2623,2624, - 1,0,0,0,2624,2626,1,0,0,0,2625,2627,3,164,82,0,2626,2625,1,0,0,0, - 2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2630,3,166,83,0,2629,2628, - 1,0,0,0,2629,2630,1,0,0,0,2630,2632,1,0,0,0,2631,2633,3,168,84,0, - 2632,2631,1,0,0,0,2632,2633,1,0,0,0,2633,2635,1,0,0,0,2634,2636, - 3,170,85,0,2635,2634,1,0,0,0,2635,2636,1,0,0,0,2636,183,1,0,0,0, - 2637,2641,5,105,0,0,2638,2642,5,174,0,0,2639,2640,5,269,0,0,2640, - 2642,5,174,0,0,2641,2638,1,0,0,0,2641,2639,1,0,0,0,2642,185,1,0, - 0,0,2643,2645,5,46,0,0,2644,2646,5,367,0,0,2645,2644,1,0,0,0,2645, - 2646,1,0,0,0,2646,2647,1,0,0,0,2647,2648,5,259,0,0,2648,2650,5,376, - 0,0,2649,2651,3,288,144,0,2650,2649,1,0,0,0,2650,2651,1,0,0,0,2651, - 2652,1,0,0,0,2652,2654,3,770,385,0,2653,2655,3,140,70,0,2654,2653, - 1,0,0,0,2654,2655,1,0,0,0,2655,2657,1,0,0,0,2656,2658,3,164,82,0, - 2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2660,1,0,0,0,2659,2661, - 3,94,47,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2663,1,0,0,0, - 2662,2664,3,170,85,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, - 1,0,0,0,2665,2666,5,36,0,0,2666,2668,3,554,277,0,2667,2669,3,184, - 92,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,187,1,0,0,0,2670,2671, - 5,305,0,0,2671,2672,5,259,0,0,2672,2674,5,376,0,0,2673,2675,5,109, - 0,0,2674,2673,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676,2678, - 3,772,386,0,2677,2679,3,184,92,0,2678,2677,1,0,0,0,2678,2679,1,0, - 0,0,2679,189,1,0,0,0,2680,2682,5,46,0,0,2681,2683,3,116,58,0,2682, - 2681,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2686,5,328, - 0,0,2685,2687,3,288,144,0,2686,2685,1,0,0,0,2686,2687,1,0,0,0,2687, - 2688,1,0,0,0,2688,2694,3,774,387,0,2689,2691,3,194,97,0,2690,2689, - 1,0,0,0,2691,2692,1,0,0,0,2692,2690,1,0,0,0,2692,2693,1,0,0,0,2693, - 2695,1,0,0,0,2694,2690,1,0,0,0,2694,2695,1,0,0,0,2695,191,1,0,0, - 0,2696,2697,5,138,0,0,2697,2699,5,328,0,0,2698,2700,3,416,208,0, - 2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0,0,0,2701,2703, - 3,774,387,0,2702,2704,3,194,97,0,2703,2702,1,0,0,0,2704,2705,1,0, - 0,0,2705,2703,1,0,0,0,2705,2706,1,0,0,0,2706,193,1,0,0,0,2707,2708, - 5,36,0,0,2708,2741,3,648,324,0,2709,2711,5,148,0,0,2710,2712,3,196, - 98,0,2711,2710,1,0,0,0,2711,2712,1,0,0,0,2712,2741,1,0,0,0,2713, - 2715,5,225,0,0,2714,2716,5,147,0,0,2715,2714,1,0,0,0,2715,2716,1, - 0,0,0,2716,2717,1,0,0,0,2717,2741,3,196,98,0,2718,2719,7,28,0,0, - 2719,2741,3,196,98,0,2720,2721,5,269,0,0,2721,2741,7,29,0,0,2722, - 2723,5,281,0,0,2723,2724,5,147,0,0,2724,2741,3,794,397,0,2725,2726, - 5,328,0,0,2726,2727,5,266,0,0,2727,2741,3,310,155,0,2728,2730,5, - 340,0,0,2729,2731,5,105,0,0,2730,2729,1,0,0,0,2730,2731,1,0,0,0, - 2731,2732,1,0,0,0,2732,2741,3,196,98,0,2733,2735,5,314,0,0,2734, - 2736,5,105,0,0,2735,2734,1,0,0,0,2735,2736,1,0,0,0,2736,2738,1,0, - 0,0,2737,2739,3,196,98,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0,2739, - 2741,1,0,0,0,2740,2707,1,0,0,0,2740,2709,1,0,0,0,2740,2713,1,0,0, - 0,2740,2718,1,0,0,0,2740,2720,1,0,0,0,2740,2722,1,0,0,0,2740,2725, - 1,0,0,0,2740,2728,1,0,0,0,2740,2733,1,0,0,0,2741,195,1,0,0,0,2742, - 2744,7,30,0,0,2743,2742,1,0,0,0,2743,2744,1,0,0,0,2744,2745,1,0, - 0,0,2745,2748,5,576,0,0,2746,2748,3,806,403,0,2747,2743,1,0,0,0, - 2747,2746,1,0,0,0,2748,197,1,0,0,0,2749,2751,5,46,0,0,2750,2752, - 3,360,180,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2754,1,0,0, - 0,2753,2755,5,359,0,0,2754,2753,1,0,0,0,2754,2755,1,0,0,0,2755,2757, - 1,0,0,0,2756,2758,5,295,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0, - 2758,2759,1,0,0,0,2759,2760,5,247,0,0,2760,2773,3,812,406,0,2761, - 2762,5,215,0,0,2762,2765,3,310,155,0,2763,2764,5,239,0,0,2764,2766, - 3,310,155,0,2765,2763,1,0,0,0,2765,2766,1,0,0,0,2766,2771,1,0,0, - 0,2767,2768,5,373,0,0,2768,2772,3,310,155,0,2769,2770,5,269,0,0, - 2770,2772,5,373,0,0,2771,2767,1,0,0,0,2771,2769,1,0,0,0,2771,2772, - 1,0,0,0,2772,2774,1,0,0,0,2773,2761,1,0,0,0,2773,2774,1,0,0,0,2774, - 199,1,0,0,0,2775,2776,5,46,0,0,2776,2779,3,170,85,0,2777,2778,5, - 282,0,0,2778,2780,3,808,404,0,2779,2777,1,0,0,0,2779,2780,1,0,0, - 0,2780,2781,1,0,0,0,2781,2782,5,255,0,0,2782,2784,3,802,401,0,2783, - 2785,3,94,47,0,2784,2783,1,0,0,0,2784,2785,1,0,0,0,2785,201,1,0, - 0,0,2786,2787,5,46,0,0,2787,2789,5,204,0,0,2788,2790,3,288,144,0, - 2789,2788,1,0,0,0,2789,2790,1,0,0,0,2790,2791,1,0,0,0,2791,2793, - 3,812,406,0,2792,2794,5,105,0,0,2793,2792,1,0,0,0,2793,2794,1,0, - 0,0,2794,2802,1,0,0,0,2795,2796,5,323,0,0,2796,2801,3,784,392,0, - 2797,2798,7,31,0,0,2798,2801,3,58,29,0,2799,2801,5,150,0,0,2800, - 2795,1,0,0,0,2800,2797,1,0,0,0,2800,2799,1,0,0,0,2801,2804,1,0,0, - 0,2802,2800,1,0,0,0,2802,2803,1,0,0,0,2803,203,1,0,0,0,2804,2802, - 1,0,0,0,2805,2806,5,138,0,0,2806,2807,5,204,0,0,2807,2808,3,812, - 406,0,2808,2813,5,369,0,0,2809,2810,5,94,0,0,2810,2812,3,58,29,0, - 2811,2809,1,0,0,0,2812,2815,1,0,0,0,2813,2811,1,0,0,0,2813,2814, - 1,0,0,0,2814,205,1,0,0,0,2815,2813,1,0,0,0,2816,2817,5,138,0,0,2817, - 2818,5,204,0,0,2818,2819,3,812,406,0,2819,2852,7,6,0,0,2820,2821, - 5,443,0,0,2821,2822,5,62,0,0,2822,2823,3,646,323,0,2823,2824,5,247, - 0,0,2824,2825,3,812,406,0,2825,2853,1,0,0,0,2826,2827,5,442,0,0, - 2827,2853,3,368,184,0,2828,2829,5,296,0,0,2829,2853,3,372,186,0, - 2830,2831,5,278,0,0,2831,2832,7,32,0,0,2832,2833,3,310,155,0,2833, - 2834,3,164,82,0,2834,2853,1,0,0,0,2835,2836,5,278,0,0,2836,2853, - 3,410,205,0,2837,2838,5,211,0,0,2838,2853,3,376,188,0,2839,2840, - 7,33,0,0,2840,2853,3,646,323,0,2841,2842,5,41,0,0,2842,2843,5,2, - 0,0,2843,2844,3,646,323,0,2844,2845,5,36,0,0,2845,2846,3,646,323, - 0,2846,2847,5,3,0,0,2847,2853,1,0,0,0,2848,2849,5,136,0,0,2849,2853, - 3,388,194,0,2850,2853,3,306,153,0,2851,2853,3,304,152,0,2852,2820, - 1,0,0,0,2852,2826,1,0,0,0,2852,2828,1,0,0,0,2852,2830,1,0,0,0,2852, - 2835,1,0,0,0,2852,2837,1,0,0,0,2852,2839,1,0,0,0,2852,2841,1,0,0, - 0,2852,2848,1,0,0,0,2852,2850,1,0,0,0,2852,2851,1,0,0,0,2853,207, - 1,0,0,0,2854,2855,5,46,0,0,2855,2856,5,63,0,0,2856,2857,5,174,0, - 0,2857,2858,5,381,0,0,2858,2864,3,812,406,0,2859,2861,3,210,105, - 0,2860,2859,1,0,0,0,2861,2862,1,0,0,0,2862,2860,1,0,0,0,2862,2863, - 1,0,0,0,2863,2865,1,0,0,0,2864,2860,1,0,0,0,2864,2865,1,0,0,0,2865, - 2867,1,0,0,0,2866,2868,3,214,107,0,2867,2866,1,0,0,0,2867,2868,1, - 0,0,0,2868,209,1,0,0,0,2869,2871,7,34,0,0,2870,2872,3,310,155,0, - 2871,2870,1,0,0,0,2871,2872,1,0,0,0,2872,2876,1,0,0,0,2873,2874, - 5,269,0,0,2874,2876,7,34,0,0,2875,2869,1,0,0,0,2875,2873,1,0,0,0, - 2876,211,1,0,0,0,2877,2878,5,138,0,0,2878,2879,5,63,0,0,2879,2880, - 5,174,0,0,2880,2881,5,381,0,0,2881,2895,3,812,406,0,2882,2884,3, - 210,105,0,2883,2882,1,0,0,0,2884,2885,1,0,0,0,2885,2883,1,0,0,0, - 2885,2886,1,0,0,0,2886,2888,1,0,0,0,2887,2883,1,0,0,0,2887,2888, - 1,0,0,0,2888,2889,1,0,0,0,2889,2896,3,216,108,0,2890,2892,3,210, - 105,0,2891,2890,1,0,0,0,2892,2893,1,0,0,0,2893,2891,1,0,0,0,2893, - 2894,1,0,0,0,2894,2896,1,0,0,0,2895,2887,1,0,0,0,2895,2891,1,0,0, - 0,2896,213,1,0,0,0,2897,2898,5,280,0,0,2898,2899,5,2,0,0,2899,2904, - 3,220,110,0,2900,2901,5,6,0,0,2901,2903,3,220,110,0,2902,2900,1, - 0,0,0,2903,2906,1,0,0,0,2904,2902,1,0,0,0,2904,2905,1,0,0,0,2905, - 2907,1,0,0,0,2906,2904,1,0,0,0,2907,2908,5,3,0,0,2908,215,1,0,0, - 0,2909,2910,5,280,0,0,2910,2911,5,2,0,0,2911,2916,3,218,109,0,2912, - 2913,5,6,0,0,2913,2915,3,218,109,0,2914,2912,1,0,0,0,2915,2918,1, - 0,0,0,2916,2914,1,0,0,0,2916,2917,1,0,0,0,2917,2919,1,0,0,0,2918, - 2916,1,0,0,0,2919,2920,5,3,0,0,2920,217,1,0,0,0,2921,2922,7,35,0, - 0,2922,2923,3,220,110,0,2923,219,1,0,0,0,2924,2925,3,818,409,0,2925, - 2926,3,802,401,0,2926,221,1,0,0,0,2927,2928,5,46,0,0,2928,2930,5, - 331,0,0,2929,2931,3,288,144,0,2930,2929,1,0,0,0,2930,2931,1,0,0, - 0,2931,2932,1,0,0,0,2932,2935,3,812,406,0,2933,2934,5,360,0,0,2934, - 2936,3,802,401,0,2935,2933,1,0,0,0,2935,2936,1,0,0,0,2936,2938,1, - 0,0,0,2937,2939,3,224,112,0,2938,2937,1,0,0,0,2938,2939,1,0,0,0, - 2939,2940,1,0,0,0,2940,2941,5,63,0,0,2941,2942,5,174,0,0,2942,2943, - 5,381,0,0,2943,2945,3,812,406,0,2944,2946,3,214,107,0,2945,2944, - 1,0,0,0,2945,2946,1,0,0,0,2946,223,1,0,0,0,2947,2950,5,375,0,0,2948, - 2951,3,802,401,0,2949,2951,5,78,0,0,2950,2948,1,0,0,0,2950,2949, - 1,0,0,0,2951,225,1,0,0,0,2952,2953,5,138,0,0,2953,2954,5,331,0,0, - 2954,2960,3,812,406,0,2955,2961,3,216,108,0,2956,2958,3,224,112, - 0,2957,2959,3,216,108,0,2958,2957,1,0,0,0,2958,2959,1,0,0,0,2959, - 2961,1,0,0,0,2960,2955,1,0,0,0,2960,2956,1,0,0,0,2961,227,1,0,0, - 0,2962,2963,5,46,0,0,2963,2964,5,63,0,0,2964,2966,5,92,0,0,2965, - 2967,3,288,144,0,2966,2965,1,0,0,0,2966,2967,1,0,0,0,2967,2968,1, - 0,0,0,2968,2969,3,766,383,0,2969,2971,5,2,0,0,2970,2972,3,120,60, - 0,2971,2970,1,0,0,0,2971,2972,1,0,0,0,2972,2973,1,0,0,0,2973,2975, - 5,3,0,0,2974,2976,3,158,79,0,2975,2974,1,0,0,0,2975,2976,1,0,0,0, - 2976,2977,1,0,0,0,2977,2978,5,331,0,0,2978,2980,3,812,406,0,2979, - 2981,3,214,107,0,2980,2979,1,0,0,0,2980,2981,1,0,0,0,2981,3002,1, - 0,0,0,2982,2983,5,46,0,0,2983,2984,5,63,0,0,2984,2986,5,92,0,0,2985, - 2987,3,288,144,0,2986,2985,1,0,0,0,2986,2987,1,0,0,0,2987,2988,1, - 0,0,0,2988,2989,3,766,383,0,2989,2990,5,285,0,0,2990,2991,5,275, - 0,0,2991,2993,3,768,384,0,2992,2994,3,118,59,0,2993,2992,1,0,0,0, - 2993,2994,1,0,0,0,2994,2995,1,0,0,0,2995,2996,3,98,49,0,2996,2997, - 5,331,0,0,2997,2999,3,812,406,0,2998,3000,3,214,107,0,2999,2998, - 1,0,0,0,2999,3000,1,0,0,0,3000,3002,1,0,0,0,3001,2962,1,0,0,0,3001, - 2982,1,0,0,0,3002,229,1,0,0,0,3003,3004,5,444,0,0,3004,3005,5,63, - 0,0,3005,3006,5,323,0,0,3006,3016,3,784,392,0,3007,3008,5,74,0,0, - 3008,3011,5,94,0,0,3009,3011,5,59,0,0,3010,3007,1,0,0,0,3010,3009, - 1,0,0,0,3011,3012,1,0,0,0,3012,3013,5,2,0,0,3013,3014,3,622,311, - 0,3014,3015,5,3,0,0,3015,3017,1,0,0,0,3016,3010,1,0,0,0,3016,3017, - 1,0,0,0,3017,3018,1,0,0,0,3018,3019,5,64,0,0,3019,3020,5,331,0,0, - 3020,3021,3,812,406,0,3021,3022,5,71,0,0,3022,3024,3,812,406,0,3023, - 3025,3,214,107,0,3024,3023,1,0,0,0,3024,3025,1,0,0,0,3025,231,1, - 0,0,0,3026,3027,5,46,0,0,3027,3028,5,99,0,0,3028,3030,5,257,0,0, - 3029,3031,3,288,144,0,3030,3029,1,0,0,0,3030,3031,1,0,0,0,3031,3032, - 1,0,0,0,3032,3035,5,62,0,0,3033,3036,3,808,404,0,3034,3036,5,99, - 0,0,3035,3033,1,0,0,0,3035,3034,1,0,0,0,3036,3037,1,0,0,0,3037,3038, - 5,331,0,0,3038,3040,3,812,406,0,3039,3041,3,214,107,0,3040,3039, - 1,0,0,0,3040,3041,1,0,0,0,3041,233,1,0,0,0,3042,3043,5,138,0,0,3043, - 3044,5,99,0,0,3044,3045,5,257,0,0,3045,3048,5,62,0,0,3046,3049,3, - 808,404,0,3047,3049,5,99,0,0,3048,3046,1,0,0,0,3048,3047,1,0,0,0, - 3049,3050,1,0,0,0,3050,3051,5,331,0,0,3051,3052,3,812,406,0,3052, - 3053,3,216,108,0,3053,235,1,0,0,0,3054,3055,5,46,0,0,3055,3056,5, - 445,0,0,3056,3057,3,812,406,0,3057,3058,5,80,0,0,3058,3065,3,774, - 387,0,3059,3063,5,36,0,0,3060,3064,5,541,0,0,3061,3064,5,542,0,0, - 3062,3064,3,820,410,0,3063,3060,1,0,0,0,3063,3061,1,0,0,0,3063,3062, - 1,0,0,0,3064,3066,1,0,0,0,3065,3059,1,0,0,0,3065,3066,1,0,0,0,3066, - 3069,1,0,0,0,3067,3068,5,62,0,0,3068,3070,7,36,0,0,3069,3067,1,0, - 0,0,3069,3070,1,0,0,0,3070,3073,1,0,0,0,3071,3072,5,94,0,0,3072, - 3074,3,810,405,0,3073,3071,1,0,0,0,3073,3074,1,0,0,0,3074,3076,1, - 0,0,0,3075,3077,3,244,122,0,3076,3075,1,0,0,0,3076,3077,1,0,0,0, - 3077,3079,1,0,0,0,3078,3080,3,246,123,0,3079,3078,1,0,0,0,3079,3080, - 1,0,0,0,3080,237,1,0,0,0,3081,3082,5,138,0,0,3082,3083,5,445,0,0, - 3083,3084,3,812,406,0,3084,3085,5,80,0,0,3085,3088,3,774,387,0,3086, - 3087,5,94,0,0,3087,3089,3,810,405,0,3088,3086,1,0,0,0,3088,3089, - 1,0,0,0,3089,3091,1,0,0,0,3090,3092,3,244,122,0,3091,3090,1,0,0, - 0,3091,3092,1,0,0,0,3092,3094,1,0,0,0,3093,3095,3,246,123,0,3094, - 3093,1,0,0,0,3094,3095,1,0,0,0,3095,239,1,0,0,0,3096,3097,5,138, - 0,0,3097,3098,5,296,0,0,3098,3100,3,790,395,0,3099,3101,3,362,181, - 0,3100,3099,1,0,0,0,3100,3101,1,0,0,0,3101,3128,1,0,0,0,3102,3106, - 3,242,121,0,3103,3105,3,242,121,0,3104,3103,1,0,0,0,3105,3108,1, - 0,0,0,3106,3104,1,0,0,0,3106,3107,1,0,0,0,3107,3110,1,0,0,0,3108, - 3106,1,0,0,0,3109,3111,5,315,0,0,3110,3109,1,0,0,0,3110,3111,1,0, - 0,0,3111,3129,1,0,0,0,3112,3113,5,309,0,0,3113,3114,5,94,0,0,3114, - 3129,3,792,396,0,3115,3116,5,282,0,0,3116,3117,5,94,0,0,3117,3129, - 3,808,404,0,3118,3119,5,333,0,0,3119,3120,5,323,0,0,3120,3129,3, - 32,16,0,3121,3123,5,269,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, - 3123,3124,1,0,0,0,3124,3125,5,462,0,0,3125,3126,5,80,0,0,3126,3127, - 5,204,0,0,3127,3129,3,812,406,0,3128,3102,1,0,0,0,3128,3112,1,0, - 0,0,3128,3115,1,0,0,0,3128,3118,1,0,0,0,3128,3122,1,0,0,0,3129,241, - 1,0,0,0,3130,3132,5,205,0,0,3131,3130,1,0,0,0,3131,3132,1,0,0,0, - 3132,3133,1,0,0,0,3133,3134,5,327,0,0,3134,3141,5,243,0,0,3135,3137, - 5,205,0,0,3136,3135,1,0,0,0,3136,3137,1,0,0,0,3137,3138,1,0,0,0, - 3138,3139,5,327,0,0,3139,3141,5,181,0,0,3140,3131,1,0,0,0,3140,3136, - 1,0,0,0,3141,3160,1,0,0,0,3142,3143,5,333,0,0,3143,3144,3,812,406, - 0,3144,3147,7,37,0,0,3145,3148,3,812,406,0,3146,3148,5,53,0,0,3147, - 3145,1,0,0,0,3147,3146,1,0,0,0,3148,3160,1,0,0,0,3149,3150,5,333, - 0,0,3150,3151,3,812,406,0,3151,3152,5,64,0,0,3152,3153,5,434,0,0, - 3153,3160,1,0,0,0,3154,3157,5,313,0,0,3155,3158,3,812,406,0,3156, - 3158,5,30,0,0,3157,3155,1,0,0,0,3157,3156,1,0,0,0,3158,3160,1,0, - 0,0,3159,3140,1,0,0,0,3159,3142,1,0,0,0,3159,3149,1,0,0,0,3159,3154, - 1,0,0,0,3160,243,1,0,0,0,3161,3162,5,100,0,0,3162,3163,5,2,0,0,3163, - 3164,3,668,334,0,3164,3165,5,3,0,0,3165,245,1,0,0,0,3166,3167,5, - 105,0,0,3167,3168,5,42,0,0,3168,3169,5,2,0,0,3169,3170,3,668,334, - 0,3170,3171,5,3,0,0,3171,247,1,0,0,0,3172,3173,5,46,0,0,3173,3174, - 5,131,0,0,3174,3175,5,446,0,0,3175,3176,3,812,406,0,3176,3177,5, - 360,0,0,3177,3178,7,38,0,0,3178,3179,5,215,0,0,3179,3180,3,310,155, - 0,3180,249,1,0,0,0,3181,3183,5,46,0,0,3182,3184,3,360,180,0,3183, - 3182,1,0,0,0,3183,3184,1,0,0,0,3184,3185,1,0,0,0,3185,3186,5,357, - 0,0,3186,3187,3,812,406,0,3187,3188,3,252,126,0,3188,3189,3,254, - 127,0,3189,3190,5,80,0,0,3190,3202,3,768,384,0,3191,3198,5,447,0, - 0,3192,3193,7,39,0,0,3193,3195,7,40,0,0,3194,3196,5,36,0,0,3195, - 3194,1,0,0,0,3195,3196,1,0,0,0,3196,3197,1,0,0,0,3197,3199,3,812, - 406,0,3198,3192,1,0,0,0,3199,3200,1,0,0,0,3200,3198,1,0,0,0,3200, - 3201,1,0,0,0,3201,3203,1,0,0,0,3202,3191,1,0,0,0,3202,3203,1,0,0, - 0,3203,3209,1,0,0,0,3204,3206,5,62,0,0,3205,3207,5,192,0,0,3206, - 3205,1,0,0,0,3206,3207,1,0,0,0,3207,3208,1,0,0,0,3208,3210,7,41, - 0,0,3209,3204,1,0,0,0,3209,3210,1,0,0,0,3210,3212,1,0,0,0,3211,3213, - 3,258,129,0,3212,3211,1,0,0,0,3212,3213,1,0,0,0,3213,3214,1,0,0, - 0,3214,3215,5,202,0,0,3215,3216,3,260,130,0,3216,3217,5,2,0,0,3217, - 3218,3,262,131,0,3218,3219,5,3,0,0,3219,3260,1,0,0,0,3220,3222,5, - 46,0,0,3221,3223,3,360,180,0,3222,3221,1,0,0,0,3222,3223,1,0,0,0, - 3223,3225,1,0,0,0,3224,3226,5,45,0,0,3225,3224,1,0,0,0,3225,3226, - 1,0,0,0,3226,3227,1,0,0,0,3227,3228,5,357,0,0,3228,3229,3,812,406, - 0,3229,3230,3,252,126,0,3230,3231,3,254,127,0,3231,3232,5,80,0,0, - 3232,3235,3,768,384,0,3233,3234,5,64,0,0,3234,3236,3,774,387,0,3235, - 3233,1,0,0,0,3235,3236,1,0,0,0,3236,3240,1,0,0,0,3237,3239,3,266, - 133,0,3238,3237,1,0,0,0,3239,3242,1,0,0,0,3240,3238,1,0,0,0,3240, - 3241,1,0,0,0,3241,3248,1,0,0,0,3242,3240,1,0,0,0,3243,3245,5,62, - 0,0,3244,3246,5,192,0,0,3245,3244,1,0,0,0,3245,3246,1,0,0,0,3246, - 3247,1,0,0,0,3247,3249,7,41,0,0,3248,3243,1,0,0,0,3248,3249,1,0, - 0,0,3249,3251,1,0,0,0,3250,3252,3,258,129,0,3251,3250,1,0,0,0,3251, - 3252,1,0,0,0,3252,3253,1,0,0,0,3253,3254,5,202,0,0,3254,3255,3,260, - 130,0,3255,3256,5,2,0,0,3256,3257,3,262,131,0,3257,3258,5,3,0,0, - 3258,3260,1,0,0,0,3259,3181,1,0,0,0,3259,3220,1,0,0,0,3260,251,1, - 0,0,0,3261,3266,5,145,0,0,3262,3266,5,135,0,0,3263,3264,5,242,0, - 0,3264,3266,5,275,0,0,3265,3261,1,0,0,0,3265,3262,1,0,0,0,3265,3263, - 1,0,0,0,3266,253,1,0,0,0,3267,3272,3,256,128,0,3268,3269,5,82,0, - 0,3269,3271,3,256,128,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,255,1,0,0,0,3274,3272,1,0,0, - 0,3275,3284,5,241,0,0,3276,3284,5,182,0,0,3277,3280,5,369,0,0,3278, - 3279,5,275,0,0,3279,3281,3,142,71,0,3280,3278,1,0,0,0,3280,3281, - 1,0,0,0,3281,3284,1,0,0,0,3282,3284,5,358,0,0,3283,3275,1,0,0,0, - 3283,3276,1,0,0,0,3283,3277,1,0,0,0,3283,3282,1,0,0,0,3284,257,1, - 0,0,0,3285,3286,5,102,0,0,3286,3287,5,2,0,0,3287,3288,3,668,334, - 0,3288,3289,5,3,0,0,3289,259,1,0,0,0,3290,3291,5,211,0,0,3291,3295, - 3,800,400,0,3292,3293,5,296,0,0,3293,3295,3,790,395,0,3294,3290, - 1,0,0,0,3294,3292,1,0,0,0,3295,261,1,0,0,0,3296,3299,3,264,132,0, - 3297,3299,1,0,0,0,3298,3296,1,0,0,0,3298,3297,1,0,0,0,3299,3304, - 1,0,0,0,3300,3301,5,6,0,0,3301,3303,3,264,132,0,3302,3300,1,0,0, - 0,3303,3306,1,0,0,0,3304,3302,1,0,0,0,3304,3305,1,0,0,0,3305,263, - 1,0,0,0,3306,3304,1,0,0,0,3307,3312,5,574,0,0,3308,3312,5,576,0, - 0,3309,3312,3,802,401,0,3310,3312,3,818,409,0,3311,3307,1,0,0,0, - 3311,3308,1,0,0,0,3311,3309,1,0,0,0,3311,3310,1,0,0,0,3312,265,1, - 0,0,0,3313,3315,5,77,0,0,3314,3313,1,0,0,0,3314,3315,1,0,0,0,3315, - 3316,1,0,0,0,3316,3324,5,54,0,0,3317,3318,5,69,0,0,3318,3324,7,9, - 0,0,3319,3320,5,77,0,0,3320,3324,5,371,0,0,3321,3322,5,269,0,0,3322, - 3324,5,228,0,0,3323,3314,1,0,0,0,3323,3317,1,0,0,0,3323,3319,1,0, - 0,0,3323,3321,1,0,0,0,3324,267,1,0,0,0,3325,3326,5,46,0,0,3326,3327, - 5,198,0,0,3327,3328,5,357,0,0,3328,3329,3,812,406,0,3329,3330,5, - 80,0,0,3330,3340,3,818,409,0,3331,3332,5,102,0,0,3332,3337,3,270, - 135,0,3333,3334,5,33,0,0,3334,3336,3,270,135,0,3335,3333,1,0,0,0, - 3336,3339,1,0,0,0,3337,3335,1,0,0,0,3337,3338,1,0,0,0,3338,3341, - 1,0,0,0,3339,3337,1,0,0,0,3340,3331,1,0,0,0,3340,3341,1,0,0,0,3341, - 3342,1,0,0,0,3342,3343,5,202,0,0,3343,3344,3,260,130,0,3344,3345, - 5,2,0,0,3345,3346,5,3,0,0,3346,269,1,0,0,0,3347,3348,3,812,406,0, - 3348,3349,5,68,0,0,3349,3350,5,2,0,0,3350,3354,3,802,401,0,3351, - 3353,3,456,228,0,3352,3351,1,0,0,0,3353,3356,1,0,0,0,3354,3352,1, - 0,0,0,3354,3355,1,0,0,0,3355,3357,1,0,0,0,3356,3354,1,0,0,0,3357, - 3358,5,3,0,0,3358,271,1,0,0,0,3359,3360,5,138,0,0,3360,3361,5,198, - 0,0,3361,3362,5,357,0,0,3362,3368,3,812,406,0,3363,3365,5,193,0, - 0,3364,3366,7,14,0,0,3365,3364,1,0,0,0,3365,3366,1,0,0,0,3366,3369, - 1,0,0,0,3367,3369,5,186,0,0,3368,3363,1,0,0,0,3368,3367,1,0,0,0, - 3369,273,1,0,0,0,3370,3371,5,46,0,0,3371,3372,5,140,0,0,3372,3373, - 3,310,155,0,3373,3374,5,42,0,0,3374,3375,5,2,0,0,3375,3376,3,668, - 334,0,3376,3380,5,3,0,0,3377,3379,3,266,133,0,3378,3377,1,0,0,0, - 3379,3382,1,0,0,0,3380,3378,1,0,0,0,3380,3381,1,0,0,0,3381,275,1, - 0,0,0,3382,3380,1,0,0,0,3383,3385,5,46,0,0,3384,3386,3,360,180,0, - 3385,3384,1,0,0,0,3385,3386,1,0,0,0,3386,3387,1,0,0,0,3387,3388, - 5,136,0,0,3388,3403,3,800,400,0,3389,3390,3,386,193,0,3390,3391, - 3,278,139,0,3391,3404,1,0,0,0,3392,3393,5,2,0,0,3393,3398,3,284, - 142,0,3394,3395,5,6,0,0,3395,3397,3,284,142,0,3396,3394,1,0,0,0, - 3397,3400,1,0,0,0,3398,3396,1,0,0,0,3398,3399,1,0,0,0,3399,3401, - 1,0,0,0,3400,3398,1,0,0,0,3401,3402,5,3,0,0,3402,3404,1,0,0,0,3403, - 3389,1,0,0,0,3403,3392,1,0,0,0,3404,3462,1,0,0,0,3405,3406,5,46, - 0,0,3406,3407,5,278,0,0,3407,3408,3,408,204,0,3408,3409,3,278,139, - 0,3409,3462,1,0,0,0,3410,3411,5,46,0,0,3411,3412,5,360,0,0,3412, - 3413,3,310,155,0,3413,3431,5,36,0,0,3414,3416,5,2,0,0,3415,3417, - 3,636,318,0,3416,3415,1,0,0,0,3416,3417,1,0,0,0,3417,3418,1,0,0, - 0,3418,3432,5,3,0,0,3419,3420,5,196,0,0,3420,3428,5,2,0,0,3421,3425, - 3,802,401,0,3422,3424,3,456,228,0,3423,3422,1,0,0,0,3424,3427,1, - 0,0,0,3425,3423,1,0,0,0,3425,3426,1,0,0,0,3426,3429,1,0,0,0,3427, - 3425,1,0,0,0,3428,3421,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0, - 0,3430,3432,5,3,0,0,3431,3414,1,0,0,0,3431,3419,1,0,0,0,3432,3462, - 1,0,0,0,3433,3434,5,46,0,0,3434,3435,5,360,0,0,3435,3441,3,310,155, - 0,3436,3437,5,36,0,0,3437,3439,5,299,0,0,3438,3436,1,0,0,0,3438, - 3439,1,0,0,0,3439,3440,1,0,0,0,3440,3442,3,278,139,0,3441,3438,1, - 0,0,0,3441,3442,1,0,0,0,3442,3462,1,0,0,0,3443,3444,5,46,0,0,3444, - 3445,5,355,0,0,3445,3446,5,325,0,0,3446,3447,7,42,0,0,3447,3448, - 3,310,155,0,3448,3449,3,278,139,0,3449,3462,1,0,0,0,3450,3451,5, - 46,0,0,3451,3453,5,108,0,0,3452,3454,3,288,144,0,3453,3452,1,0,0, - 0,3453,3454,1,0,0,0,3454,3455,1,0,0,0,3455,3459,3,310,155,0,3456, - 3460,3,278,139,0,3457,3458,5,64,0,0,3458,3460,3,310,155,0,3459,3456, - 1,0,0,0,3459,3457,1,0,0,0,3460,3462,1,0,0,0,3461,3383,1,0,0,0,3461, - 3405,1,0,0,0,3461,3410,1,0,0,0,3461,3433,1,0,0,0,3461,3443,1,0,0, - 0,3461,3450,1,0,0,0,3462,277,1,0,0,0,3463,3464,5,2,0,0,3464,3469, - 3,280,140,0,3465,3466,5,6,0,0,3466,3468,3,280,140,0,3467,3465,1, - 0,0,0,3468,3471,1,0,0,0,3469,3467,1,0,0,0,3469,3470,1,0,0,0,3470, - 3472,1,0,0,0,3471,3469,1,0,0,0,3472,3473,5,3,0,0,3473,279,1,0,0, - 0,3474,3477,3,818,409,0,3475,3476,5,10,0,0,3476,3478,3,282,141,0, - 3477,3475,1,0,0,0,3477,3478,1,0,0,0,3478,281,1,0,0,0,3479,3486,3, - 382,191,0,3480,3486,3,828,414,0,3481,3486,3,720,360,0,3482,3486, - 3,196,98,0,3483,3486,3,802,401,0,3484,3486,5,407,0,0,3485,3479,1, - 0,0,0,3485,3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485, - 3483,1,0,0,0,3485,3484,1,0,0,0,3486,283,1,0,0,0,3487,3488,3,820, - 410,0,3488,3489,5,10,0,0,3489,3490,3,282,141,0,3490,285,1,0,0,0, - 3491,3492,5,138,0,0,3492,3493,5,360,0,0,3493,3494,3,310,155,0,3494, - 3495,5,133,0,0,3495,3497,5,450,0,0,3496,3498,3,288,144,0,3497,3496, - 1,0,0,0,3497,3498,1,0,0,0,3498,3499,1,0,0,0,3499,3502,3,802,401, - 0,3500,3501,7,43,0,0,3501,3503,3,802,401,0,3502,3500,1,0,0,0,3502, - 3503,1,0,0,0,3503,3514,1,0,0,0,3504,3505,5,138,0,0,3505,3506,5,360, - 0,0,3506,3507,3,310,155,0,3507,3508,5,309,0,0,3508,3509,5,450,0, - 0,3509,3510,3,802,401,0,3510,3511,5,94,0,0,3511,3512,3,802,401,0, - 3512,3514,1,0,0,0,3513,3491,1,0,0,0,3513,3504,1,0,0,0,3514,287,1, - 0,0,0,3515,3516,5,220,0,0,3516,3517,5,77,0,0,3517,3518,5,396,0,0, - 3518,289,1,0,0,0,3519,3520,5,46,0,0,3520,3521,5,278,0,0,3521,3522, - 5,156,0,0,3522,3524,3,310,155,0,3523,3525,5,53,0,0,3524,3523,1,0, - 0,0,3524,3525,1,0,0,0,3525,3526,1,0,0,0,3526,3527,5,62,0,0,3527, - 3528,5,360,0,0,3528,3529,3,646,323,0,3529,3532,3,164,82,0,3530,3531, - 5,206,0,0,3531,3533,3,310,155,0,3532,3530,1,0,0,0,3532,3533,1,0, - 0,0,3533,3534,1,0,0,0,3534,3535,5,36,0,0,3535,3540,3,292,146,0,3536, - 3537,5,6,0,0,3537,3539,3,292,146,0,3538,3536,1,0,0,0,3539,3542,1, - 0,0,0,3540,3538,1,0,0,0,3540,3541,1,0,0,0,3541,291,1,0,0,0,3542, - 3540,1,0,0,0,3543,3544,5,278,0,0,3544,3545,5,574,0,0,3545,3547,3, - 408,204,0,3546,3548,3,406,203,0,3547,3546,1,0,0,0,3547,3548,1,0, - 0,0,3548,3556,1,0,0,0,3549,3554,5,62,0,0,3550,3555,5,325,0,0,3551, - 3552,5,83,0,0,3552,3553,5,147,0,0,3553,3555,3,310,155,0,3554,3550, - 1,0,0,0,3554,3551,1,0,0,0,3555,3557,1,0,0,0,3556,3549,1,0,0,0,3556, - 3557,1,0,0,0,3557,3559,1,0,0,0,3558,3560,5,302,0,0,3559,3558,1,0, - 0,0,3559,3560,1,0,0,0,3560,3570,1,0,0,0,3561,3562,5,211,0,0,3562, - 3564,5,574,0,0,3563,3565,3,522,261,0,3564,3563,1,0,0,0,3564,3565, - 1,0,0,0,3565,3566,1,0,0,0,3566,3570,3,376,188,0,3567,3568,5,345, - 0,0,3568,3570,3,646,323,0,3569,3543,1,0,0,0,3569,3561,1,0,0,0,3569, - 3567,1,0,0,0,3570,293,1,0,0,0,3571,3572,5,46,0,0,3572,3573,5,278, - 0,0,3573,3574,5,206,0,0,3574,3575,3,310,155,0,3575,3576,3,164,82, - 0,3576,295,1,0,0,0,3577,3578,5,138,0,0,3578,3579,5,278,0,0,3579, - 3580,5,206,0,0,3580,3581,3,310,155,0,3581,3600,3,164,82,0,3582,3583, - 5,133,0,0,3583,3588,3,292,146,0,3584,3585,5,6,0,0,3585,3587,3,292, - 146,0,3586,3584,1,0,0,0,3587,3590,1,0,0,0,3588,3586,1,0,0,0,3588, - 3589,1,0,0,0,3589,3601,1,0,0,0,3590,3588,1,0,0,0,3591,3592,5,191, - 0,0,3592,3597,3,298,149,0,3593,3594,5,6,0,0,3594,3596,3,298,149, - 0,3595,3593,1,0,0,0,3596,3599,1,0,0,0,3597,3595,1,0,0,0,3597,3598, - 1,0,0,0,3598,3601,1,0,0,0,3599,3597,1,0,0,0,3600,3582,1,0,0,0,3600, - 3591,1,0,0,0,3601,297,1,0,0,0,3602,3603,7,44,0,0,3603,3604,5,574, - 0,0,3604,3605,3,522,261,0,3605,299,1,0,0,0,3606,3607,5,301,0,0,3607, - 3608,5,281,0,0,3608,3609,5,147,0,0,3609,3610,3,810,405,0,3610,3611, - 5,94,0,0,3611,3612,3,808,404,0,3612,301,1,0,0,0,3613,3636,5,191, - 0,0,3614,3637,5,328,0,0,3615,3637,5,226,0,0,3616,3637,5,108,0,0, - 3617,3637,5,168,0,0,3618,3637,5,342,0,0,3619,3637,5,452,0,0,3620, - 3637,5,331,0,0,3621,3622,5,131,0,0,3622,3637,5,446,0,0,3623,3624, - 5,198,0,0,3624,3637,5,357,0,0,3625,3637,5,204,0,0,3626,3628,5,295, - 0,0,3627,3626,1,0,0,0,3627,3628,1,0,0,0,3628,3629,1,0,0,0,3629,3637, - 5,247,0,0,3630,3631,5,63,0,0,3631,3632,5,174,0,0,3632,3637,5,381, - 0,0,3633,3634,5,355,0,0,3634,3635,5,325,0,0,3635,3637,7,42,0,0,3636, - 3614,1,0,0,0,3636,3615,1,0,0,0,3636,3616,1,0,0,0,3636,3617,1,0,0, - 0,3636,3618,1,0,0,0,3636,3619,1,0,0,0,3636,3620,1,0,0,0,3636,3621, - 1,0,0,0,3636,3623,1,0,0,0,3636,3625,1,0,0,0,3636,3627,1,0,0,0,3636, - 3630,1,0,0,0,3636,3633,1,0,0,0,3637,3639,1,0,0,0,3638,3640,3,416, - 208,0,3639,3638,1,0,0,0,3639,3640,1,0,0,0,3640,3641,1,0,0,0,3641, - 3643,3,778,389,0,3642,3644,3,88,44,0,3643,3642,1,0,0,0,3643,3644, - 1,0,0,0,3644,3821,1,0,0,0,3645,3647,5,191,0,0,3646,3648,5,259,0, - 0,3647,3646,1,0,0,0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3651, - 5,376,0,0,3650,3652,3,416,208,0,3651,3650,1,0,0,0,3651,3652,1,0, - 0,0,3652,3653,1,0,0,0,3653,3658,3,772,386,0,3654,3655,5,6,0,0,3655, - 3657,3,772,386,0,3656,3654,1,0,0,0,3657,3660,1,0,0,0,3658,3656,1, - 0,0,0,3658,3659,1,0,0,0,3659,3662,1,0,0,0,3660,3658,1,0,0,0,3661, - 3663,3,88,44,0,3662,3661,1,0,0,0,3662,3663,1,0,0,0,3663,3821,1,0, - 0,0,3664,3666,5,191,0,0,3665,3667,5,63,0,0,3666,3665,1,0,0,0,3666, - 3667,1,0,0,0,3667,3668,1,0,0,0,3668,3670,5,92,0,0,3669,3671,3,416, - 208,0,3670,3669,1,0,0,0,3670,3671,1,0,0,0,3671,3672,1,0,0,0,3672, - 3674,3,756,378,0,3673,3675,3,88,44,0,3674,3673,1,0,0,0,3674,3675, - 1,0,0,0,3675,3821,1,0,0,0,3676,3677,5,191,0,0,3677,3679,5,323,0, - 0,3678,3680,3,416,208,0,3679,3678,1,0,0,0,3679,3680,1,0,0,0,3680, - 3681,1,0,0,0,3681,3683,3,758,379,0,3682,3684,3,88,44,0,3683,3682, - 1,0,0,0,3683,3684,1,0,0,0,3684,3821,1,0,0,0,3685,3686,5,191,0,0, - 3686,3688,7,45,0,0,3687,3689,3,416,208,0,3688,3687,1,0,0,0,3688, - 3689,1,0,0,0,3689,3690,1,0,0,0,3690,3691,3,812,406,0,3691,3692,5, - 80,0,0,3692,3694,3,310,155,0,3693,3695,3,88,44,0,3694,3693,1,0,0, - 0,3694,3695,1,0,0,0,3695,3821,1,0,0,0,3696,3697,5,191,0,0,3697,3699, - 7,33,0,0,3698,3700,3,416,208,0,3699,3698,1,0,0,0,3699,3700,1,0,0, - 0,3700,3701,1,0,0,0,3701,3706,3,646,323,0,3702,3703,5,6,0,0,3703, - 3705,3,646,323,0,3704,3702,1,0,0,0,3705,3708,1,0,0,0,3706,3704,1, - 0,0,0,3706,3707,1,0,0,0,3707,3710,1,0,0,0,3708,3706,1,0,0,0,3709, - 3711,3,88,44,0,3710,3709,1,0,0,0,3710,3711,1,0,0,0,3711,3821,1,0, - 0,0,3712,3713,5,191,0,0,3713,3714,5,226,0,0,3714,3716,5,109,0,0, - 3715,3717,3,416,208,0,3716,3715,1,0,0,0,3716,3717,1,0,0,0,3717,3718, - 1,0,0,0,3718,3720,3,308,154,0,3719,3721,3,88,44,0,3720,3719,1,0, - 0,0,3720,3721,1,0,0,0,3721,3821,1,0,0,0,3722,3723,5,191,0,0,3723, - 3725,5,41,0,0,3724,3726,3,416,208,0,3725,3724,1,0,0,0,3725,3726, - 1,0,0,0,3726,3727,1,0,0,0,3727,3728,5,2,0,0,3728,3729,3,646,323, - 0,3729,3730,5,36,0,0,3730,3731,3,646,323,0,3731,3733,5,3,0,0,3732, - 3734,3,88,44,0,3733,3732,1,0,0,0,3733,3734,1,0,0,0,3734,3821,1,0, - 0,0,3735,3736,5,191,0,0,3736,3737,5,278,0,0,3737,3739,7,32,0,0,3738, - 3740,3,416,208,0,3739,3738,1,0,0,0,3739,3740,1,0,0,0,3740,3741,1, - 0,0,0,3741,3742,3,310,155,0,3742,3744,3,164,82,0,3743,3745,3,88, - 44,0,3744,3743,1,0,0,0,3744,3745,1,0,0,0,3745,3821,1,0,0,0,3746, - 3747,5,191,0,0,3747,3748,5,281,0,0,3748,3749,5,147,0,0,3749,3751, - 3,810,405,0,3750,3752,3,88,44,0,3751,3750,1,0,0,0,3751,3752,1,0, - 0,0,3752,3821,1,0,0,0,3753,3754,5,191,0,0,3754,3756,5,451,0,0,3755, - 3757,3,416,208,0,3756,3755,1,0,0,0,3756,3757,1,0,0,0,3757,3758,1, - 0,0,0,3758,3760,3,812,406,0,3759,3761,3,88,44,0,3760,3759,1,0,0, - 0,3760,3761,1,0,0,0,3761,3821,1,0,0,0,3762,3763,5,191,0,0,3763,3765, - 5,351,0,0,3764,3766,3,416,208,0,3765,3764,1,0,0,0,3765,3766,1,0, - 0,0,3766,3767,1,0,0,0,3767,3821,3,764,382,0,3768,3769,5,191,0,0, - 3769,3771,5,443,0,0,3770,3772,3,416,208,0,3771,3770,1,0,0,0,3771, - 3772,1,0,0,0,3772,3773,1,0,0,0,3773,3774,5,62,0,0,3774,3775,3,646, - 323,0,3775,3776,5,247,0,0,3776,3778,3,812,406,0,3777,3779,3,88,44, - 0,3778,3777,1,0,0,0,3778,3779,1,0,0,0,3779,3821,1,0,0,0,3780,3781, - 5,191,0,0,3781,3783,7,46,0,0,3782,3784,3,416,208,0,3783,3782,1,0, - 0,0,3783,3784,1,0,0,0,3784,3785,1,0,0,0,3785,3821,3,810,405,0,3786, - 3787,5,191,0,0,3787,3788,5,99,0,0,3788,3790,5,257,0,0,3789,3791, - 3,416,208,0,3790,3789,1,0,0,0,3790,3791,1,0,0,0,3791,3792,1,0,0, - 0,3792,3795,5,62,0,0,3793,3796,3,808,404,0,3794,3796,5,99,0,0,3795, - 3793,1,0,0,0,3795,3794,1,0,0,0,3796,3797,1,0,0,0,3797,3798,5,331, - 0,0,3798,3821,3,812,406,0,3799,3800,5,191,0,0,3800,3802,5,175,0, - 0,3801,3803,3,416,208,0,3802,3801,1,0,0,0,3802,3803,1,0,0,0,3803, - 3804,1,0,0,0,3804,3818,3,782,391,0,3805,3807,5,105,0,0,3806,3805, - 1,0,0,0,3806,3807,1,0,0,0,3807,3808,1,0,0,0,3808,3809,5,2,0,0,3809, - 3814,5,209,0,0,3810,3811,5,6,0,0,3811,3813,5,209,0,0,3812,3810,1, - 0,0,0,3813,3816,1,0,0,0,3814,3812,1,0,0,0,3814,3815,1,0,0,0,3815, - 3817,1,0,0,0,3816,3814,1,0,0,0,3817,3819,5,3,0,0,3818,3806,1,0,0, - 0,3818,3819,1,0,0,0,3819,3821,1,0,0,0,3820,3613,1,0,0,0,3820,3645, - 1,0,0,0,3820,3664,1,0,0,0,3820,3676,1,0,0,0,3820,3685,1,0,0,0,3820, - 3696,1,0,0,0,3820,3712,1,0,0,0,3820,3722,1,0,0,0,3820,3735,1,0,0, - 0,3820,3746,1,0,0,0,3820,3753,1,0,0,0,3820,3762,1,0,0,0,3820,3768, - 1,0,0,0,3820,3780,1,0,0,0,3820,3786,1,0,0,0,3820,3799,1,0,0,0,3821, - 303,1,0,0,0,3822,3824,5,63,0,0,3823,3822,1,0,0,0,3823,3824,1,0,0, - 0,3824,3825,1,0,0,0,3825,3826,5,92,0,0,3826,3839,3,768,384,0,3827, - 3829,5,259,0,0,3828,3827,1,0,0,0,3828,3829,1,0,0,0,3829,3830,1,0, - 0,0,3830,3831,5,376,0,0,3831,3839,3,772,386,0,3832,3833,7,47,0,0, - 3833,3839,3,310,155,0,3834,3835,5,355,0,0,3835,3836,5,325,0,0,3836, - 3837,7,42,0,0,3837,3839,3,310,155,0,3838,3823,1,0,0,0,3838,3828, - 1,0,0,0,3838,3832,1,0,0,0,3838,3834,1,0,0,0,3839,305,1,0,0,0,3840, - 3841,5,198,0,0,3841,3857,5,357,0,0,3842,3843,5,131,0,0,3843,3857, - 5,446,0,0,3844,3857,5,204,0,0,3845,3857,5,452,0,0,3846,3857,5,331, - 0,0,3847,3857,5,318,0,0,3848,3857,5,451,0,0,3849,3850,5,63,0,0,3850, - 3851,5,174,0,0,3851,3857,5,381,0,0,3852,3854,5,295,0,0,3853,3852, - 1,0,0,0,3853,3854,1,0,0,0,3854,3855,1,0,0,0,3855,3857,5,247,0,0, - 3856,3840,1,0,0,0,3856,3842,1,0,0,0,3856,3844,1,0,0,0,3856,3845, - 1,0,0,0,3856,3846,1,0,0,0,3856,3847,1,0,0,0,3856,3848,1,0,0,0,3856, - 3849,1,0,0,0,3856,3853,1,0,0,0,3857,3858,1,0,0,0,3858,3865,3,812, - 406,0,3859,3860,5,323,0,0,3860,3865,3,784,392,0,3861,3862,5,175, - 0,0,3862,3865,3,782,391,0,3863,3865,3,170,85,0,3864,3856,1,0,0,0, - 3864,3859,1,0,0,0,3864,3861,1,0,0,0,3864,3863,1,0,0,0,3865,307,1, - 0,0,0,3866,3871,3,310,155,0,3867,3868,5,6,0,0,3868,3870,3,310,155, - 0,3869,3867,1,0,0,0,3870,3873,1,0,0,0,3871,3869,1,0,0,0,3871,3872, - 1,0,0,0,3872,309,1,0,0,0,3873,3871,1,0,0,0,3874,3876,3,812,406,0, - 3875,3877,3,312,156,0,3876,3875,1,0,0,0,3876,3877,1,0,0,0,3877,311, - 1,0,0,0,3878,3879,5,11,0,0,3879,3881,3,818,409,0,3880,3878,1,0,0, - 0,3881,3882,1,0,0,0,3882,3880,1,0,0,0,3882,3883,1,0,0,0,3883,313, - 1,0,0,0,3884,3886,5,358,0,0,3885,3887,5,92,0,0,3886,3885,1,0,0,0, - 3886,3887,1,0,0,0,3887,3888,1,0,0,0,3888,3893,3,316,158,0,3889,3890, - 5,6,0,0,3890,3892,3,316,158,0,3891,3889,1,0,0,0,3892,3895,1,0,0, - 0,3893,3891,1,0,0,0,3893,3894,1,0,0,0,3894,3898,1,0,0,0,3895,3893, - 1,0,0,0,3896,3897,7,48,0,0,3897,3899,5,219,0,0,3898,3896,1,0,0,0, - 3898,3899,1,0,0,0,3899,3901,1,0,0,0,3900,3902,3,88,44,0,3901,3900, - 1,0,0,0,3901,3902,1,0,0,0,3902,315,1,0,0,0,3903,3905,5,81,0,0,3904, - 3903,1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3908,3,768, - 384,0,3907,3909,5,9,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909, - 317,1,0,0,0,3910,3911,5,159,0,0,3911,3970,5,80,0,0,3912,3971,3,304, - 152,0,3913,3971,3,306,153,0,3914,3915,5,44,0,0,3915,3917,3,812,406, - 0,3916,3918,3,312,156,0,3917,3916,1,0,0,0,3917,3918,1,0,0,0,3918, - 3919,1,0,0,0,3919,3920,5,11,0,0,3920,3921,3,794,397,0,3921,3971, - 1,0,0,0,3922,3923,7,33,0,0,3923,3971,3,646,323,0,3924,3925,5,136, - 0,0,3925,3971,3,388,194,0,3926,3927,5,211,0,0,3927,3971,3,376,188, - 0,3928,3929,5,278,0,0,3929,3971,3,410,205,0,3930,3931,5,45,0,0,3931, - 3932,3,812,406,0,3932,3938,5,80,0,0,3933,3939,3,768,384,0,3934,3936, - 5,189,0,0,3935,3934,1,0,0,0,3935,3936,1,0,0,0,3936,3937,1,0,0,0, - 3937,3939,3,310,155,0,3938,3933,1,0,0,0,3938,3935,1,0,0,0,3939,3971, - 1,0,0,0,3940,3941,7,45,0,0,3941,3942,3,812,406,0,3942,3943,5,80, - 0,0,3943,3944,3,310,155,0,3944,3971,1,0,0,0,3945,3946,5,296,0,0, - 3946,3971,3,372,186,0,3947,3948,5,442,0,0,3948,3971,3,368,184,0, - 3949,3950,5,443,0,0,3950,3951,5,62,0,0,3951,3952,3,646,323,0,3952, - 3953,5,247,0,0,3953,3954,3,812,406,0,3954,3971,1,0,0,0,3955,3956, - 5,278,0,0,3956,3957,7,32,0,0,3957,3958,3,310,155,0,3958,3959,3,164, - 82,0,3959,3971,1,0,0,0,3960,3961,5,248,0,0,3961,3962,5,274,0,0,3962, - 3971,3,196,98,0,3963,3964,5,41,0,0,3964,3965,5,2,0,0,3965,3966,3, - 646,323,0,3966,3967,5,36,0,0,3967,3968,3,646,323,0,3968,3969,5,3, - 0,0,3969,3971,1,0,0,0,3970,3912,1,0,0,0,3970,3913,1,0,0,0,3970,3914, - 1,0,0,0,3970,3922,1,0,0,0,3970,3924,1,0,0,0,3970,3926,1,0,0,0,3970, - 3928,1,0,0,0,3970,3930,1,0,0,0,3970,3940,1,0,0,0,3970,3945,1,0,0, - 0,3970,3947,1,0,0,0,3970,3949,1,0,0,0,3970,3955,1,0,0,0,3970,3960, - 1,0,0,0,3970,3963,1,0,0,0,3971,3972,1,0,0,0,3972,3975,5,116,0,0, - 3973,3976,3,802,401,0,3974,3976,5,78,0,0,3975,3973,1,0,0,0,3975, - 3974,1,0,0,0,3976,319,1,0,0,0,3977,3978,5,327,0,0,3978,3981,5,246, - 0,0,3979,3980,5,62,0,0,3980,3982,3,58,29,0,3981,3979,1,0,0,0,3981, - 3982,1,0,0,0,3982,3983,1,0,0,0,3983,4001,5,80,0,0,3984,3985,7,33, - 0,0,3985,4002,3,646,323,0,3986,3987,5,136,0,0,3987,4002,3,388,194, - 0,3988,3989,5,44,0,0,3989,4002,3,794,397,0,3990,3991,5,211,0,0,3991, - 4002,3,376,188,0,3992,3993,5,248,0,0,3993,3994,5,274,0,0,3994,4002, - 3,196,98,0,3995,3996,5,296,0,0,3996,4002,3,372,186,0,3997,3998,5, - 442,0,0,3998,4002,3,368,184,0,3999,4002,3,304,152,0,4000,4002,3, - 306,153,0,4001,3984,1,0,0,0,4001,3986,1,0,0,0,4001,3988,1,0,0,0, - 4001,3990,1,0,0,0,4001,3992,1,0,0,0,4001,3995,1,0,0,0,4001,3997, - 1,0,0,0,4001,3999,1,0,0,0,4001,4000,1,0,0,0,4002,4003,1,0,0,0,4003, - 4006,5,116,0,0,4004,4007,3,802,401,0,4005,4007,5,78,0,0,4006,4004, - 1,0,0,0,4006,4005,1,0,0,0,4007,321,1,0,0,0,4008,4009,7,49,0,0,4009, - 4010,3,324,162,0,4010,323,1,0,0,0,4011,4013,7,50,0,0,4012,4011,1, - 0,0,0,4012,4013,1,0,0,0,4013,4015,1,0,0,0,4014,4016,3,326,163,0, - 4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016,4017,1,0,0,0,4017,4055, - 3,812,406,0,4018,4020,7,51,0,0,4019,4018,1,0,0,0,4019,4020,1,0,0, - 0,4020,4021,1,0,0,0,4021,4023,3,806,403,0,4022,4024,3,326,163,0, - 4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4025,1,0,0,0,4025,4026, - 3,812,406,0,4026,4055,1,0,0,0,4027,4029,5,210,0,0,4028,4030,3,806, - 403,0,4029,4028,1,0,0,0,4029,4030,1,0,0,0,4030,4032,1,0,0,0,4031, - 4033,3,326,163,0,4032,4031,1,0,0,0,4032,4033,1,0,0,0,4033,4034,1, - 0,0,0,4034,4055,3,812,406,0,4035,4037,5,210,0,0,4036,4035,1,0,0, - 0,4036,4037,1,0,0,0,4037,4038,1,0,0,0,4038,4040,5,30,0,0,4039,4041, - 3,326,163,0,4040,4039,1,0,0,0,4040,4041,1,0,0,0,4041,4042,1,0,0, - 0,4042,4055,3,812,406,0,4043,4048,5,144,0,0,4044,4046,5,30,0,0,4045, - 4044,1,0,0,0,4045,4046,1,0,0,0,4046,4049,1,0,0,0,4047,4049,3,806, - 403,0,4048,4045,1,0,0,0,4048,4047,1,0,0,0,4049,4051,1,0,0,0,4050, - 4052,3,326,163,0,4051,4050,1,0,0,0,4051,4052,1,0,0,0,4052,4053,1, - 0,0,0,4053,4055,3,812,406,0,4054,4012,1,0,0,0,4054,4019,1,0,0,0, - 4054,4027,1,0,0,0,4054,4036,1,0,0,0,4054,4043,1,0,0,0,4055,325,1, - 0,0,0,4056,4057,7,52,0,0,4057,327,1,0,0,0,4058,4059,5,65,0,0,4059, - 4060,3,332,166,0,4060,4061,5,80,0,0,4061,4062,3,338,169,0,4062,4063, - 5,94,0,0,4063,4067,3,340,170,0,4064,4065,5,105,0,0,4065,4066,5,65, - 0,0,4066,4068,5,279,0,0,4067,4064,1,0,0,0,4067,4068,1,0,0,0,4068, - 329,1,0,0,0,4069,4073,5,317,0,0,4070,4071,5,65,0,0,4071,4072,5,279, - 0,0,4072,4074,5,62,0,0,4073,4070,1,0,0,0,4073,4074,1,0,0,0,4074, - 4075,1,0,0,0,4075,4076,3,332,166,0,4076,4077,5,80,0,0,4077,4078, - 3,338,169,0,4078,4079,5,64,0,0,4079,4081,3,340,170,0,4080,4082,3, - 88,44,0,4081,4080,1,0,0,0,4081,4082,1,0,0,0,4082,331,1,0,0,0,4083, - 4088,3,336,168,0,4084,4085,5,6,0,0,4085,4087,3,336,168,0,4086,4084, - 1,0,0,0,4087,4090,1,0,0,0,4088,4086,1,0,0,0,4088,4089,1,0,0,0,4089, - 4107,1,0,0,0,4090,4088,1,0,0,0,4091,4093,5,30,0,0,4092,4094,5,294, - 0,0,4093,4092,1,0,0,0,4093,4094,1,0,0,0,4094,4096,1,0,0,0,4095,4097, - 3,138,69,0,4096,4095,1,0,0,0,4096,4097,1,0,0,0,4097,4107,1,0,0,0, - 4098,4103,3,334,167,0,4099,4100,5,6,0,0,4100,4102,3,334,167,0,4101, - 4099,1,0,0,0,4102,4105,1,0,0,0,4103,4101,1,0,0,0,4103,4104,1,0,0, - 0,4104,4107,1,0,0,0,4105,4103,1,0,0,0,4106,4083,1,0,0,0,4106,4091, - 1,0,0,0,4106,4098,1,0,0,0,4107,333,1,0,0,0,4108,4109,7,53,0,0,4109, - 335,1,0,0,0,4110,4115,5,88,0,0,4111,4115,5,86,0,0,4112,4115,5,46, - 0,0,4113,4115,3,812,406,0,4114,4110,1,0,0,0,4114,4111,1,0,0,0,4114, - 4112,1,0,0,0,4114,4113,1,0,0,0,4115,4117,1,0,0,0,4116,4118,3,138, - 69,0,4117,4116,1,0,0,0,4117,4118,1,0,0,0,4118,337,1,0,0,0,4119,4120, - 5,92,0,0,4120,4165,3,756,378,0,4121,4123,5,328,0,0,4122,4121,1,0, - 0,0,4122,4123,1,0,0,0,4123,4124,1,0,0,0,4124,4165,3,754,377,0,4125, - 4129,5,63,0,0,4126,4127,5,174,0,0,4127,4130,5,381,0,0,4128,4130, - 5,331,0,0,4129,4126,1,0,0,0,4129,4128,1,0,0,0,4130,4133,1,0,0,0, - 4131,4133,5,247,0,0,4132,4125,1,0,0,0,4132,4131,1,0,0,0,4133,4134, - 1,0,0,0,4134,4165,3,778,389,0,4135,4136,5,211,0,0,4136,4165,3,374, - 187,0,4137,4138,5,296,0,0,4138,4165,3,370,185,0,4139,4140,5,442, - 0,0,4140,4165,3,366,183,0,4141,4142,5,175,0,0,4142,4165,3,760,380, - 0,4143,4144,7,33,0,0,4144,4165,3,308,154,0,4145,4146,5,248,0,0,4146, - 4147,5,274,0,0,4147,4152,3,196,98,0,4148,4149,5,6,0,0,4149,4151, - 3,196,98,0,4150,4148,1,0,0,0,4151,4154,1,0,0,0,4152,4150,1,0,0,0, - 4152,4153,1,0,0,0,4153,4165,1,0,0,0,4154,4152,1,0,0,0,4155,4156, - 5,323,0,0,4156,4165,3,758,379,0,4157,4158,5,351,0,0,4158,4165,3, - 776,388,0,4159,4160,5,30,0,0,4160,4161,7,54,0,0,4161,4162,5,68,0, - 0,4162,4163,5,323,0,0,4163,4165,3,758,379,0,4164,4119,1,0,0,0,4164, - 4122,1,0,0,0,4164,4132,1,0,0,0,4164,4135,1,0,0,0,4164,4137,1,0,0, - 0,4164,4139,1,0,0,0,4164,4141,1,0,0,0,4164,4143,1,0,0,0,4164,4145, - 1,0,0,0,4164,4155,1,0,0,0,4164,4157,1,0,0,0,4164,4159,1,0,0,0,4165, - 339,1,0,0,0,4166,4168,5,66,0,0,4167,4166,1,0,0,0,4167,4168,1,0,0, - 0,4168,4169,1,0,0,0,4169,4170,3,808,404,0,4170,4178,1,0,0,0,4171, - 4173,5,6,0,0,4172,4174,5,66,0,0,4173,4172,1,0,0,0,4173,4174,1,0, - 0,0,4174,4175,1,0,0,0,4175,4177,3,808,404,0,4176,4171,1,0,0,0,4177, - 4180,1,0,0,0,4178,4176,1,0,0,0,4178,4179,1,0,0,0,4179,341,1,0,0, - 0,4180,4178,1,0,0,0,4181,4182,5,65,0,0,4182,4187,3,336,168,0,4183, - 4184,5,6,0,0,4184,4186,3,336,168,0,4185,4183,1,0,0,0,4186,4189,1, - 0,0,0,4187,4185,1,0,0,0,4187,4188,1,0,0,0,4188,4190,1,0,0,0,4189, - 4187,1,0,0,0,4190,4191,5,94,0,0,4191,4195,3,810,405,0,4192,4193, - 5,105,0,0,4193,4194,5,134,0,0,4194,4196,5,279,0,0,4195,4192,1,0, - 0,0,4195,4196,1,0,0,0,4196,4200,1,0,0,0,4197,4198,5,214,0,0,4198, - 4199,5,147,0,0,4199,4201,3,808,404,0,4200,4197,1,0,0,0,4200,4201, - 1,0,0,0,4201,343,1,0,0,0,4202,4206,5,317,0,0,4203,4204,5,134,0,0, - 4204,4205,5,279,0,0,4205,4207,5,62,0,0,4206,4203,1,0,0,0,4206,4207, - 1,0,0,0,4207,4208,1,0,0,0,4208,4213,3,336,168,0,4209,4210,5,6,0, - 0,4210,4212,3,336,168,0,4211,4209,1,0,0,0,4212,4215,1,0,0,0,4213, - 4211,1,0,0,0,4213,4214,1,0,0,0,4214,4216,1,0,0,0,4215,4213,1,0,0, - 0,4216,4217,5,64,0,0,4217,4221,3,810,405,0,4218,4219,5,214,0,0,4219, - 4220,5,147,0,0,4220,4222,3,808,404,0,4221,4218,1,0,0,0,4221,4222, - 1,0,0,0,4222,4224,1,0,0,0,4223,4225,3,88,44,0,4224,4223,1,0,0,0, - 4224,4225,1,0,0,0,4225,345,1,0,0,0,4226,4227,5,138,0,0,4227,4228, - 5,53,0,0,4228,4237,5,294,0,0,4229,4230,5,68,0,0,4230,4231,5,323, - 0,0,4231,4236,3,758,379,0,4232,4233,5,62,0,0,4233,4234,7,2,0,0,4234, - 4236,3,810,405,0,4235,4229,1,0,0,0,4235,4232,1,0,0,0,4236,4239,1, - 0,0,0,4237,4235,1,0,0,0,4237,4238,1,0,0,0,4238,4240,1,0,0,0,4239, - 4237,1,0,0,0,4240,4241,3,348,174,0,4241,347,1,0,0,0,4242,4243,5, - 65,0,0,4243,4244,3,332,166,0,4244,4245,5,80,0,0,4245,4246,3,350, - 175,0,4246,4247,5,94,0,0,4247,4251,3,340,170,0,4248,4249,5,105,0, - 0,4249,4250,5,65,0,0,4250,4252,5,279,0,0,4251,4248,1,0,0,0,4251, - 4252,1,0,0,0,4252,4268,1,0,0,0,4253,4257,5,317,0,0,4254,4255,5,65, - 0,0,4255,4256,5,279,0,0,4256,4258,5,62,0,0,4257,4254,1,0,0,0,4257, - 4258,1,0,0,0,4258,4259,1,0,0,0,4259,4260,3,332,166,0,4260,4261,5, - 80,0,0,4261,4262,3,350,175,0,4262,4263,5,64,0,0,4263,4265,3,340, - 170,0,4264,4266,3,88,44,0,4265,4264,1,0,0,0,4265,4266,1,0,0,0,4266, - 4268,1,0,0,0,4267,4242,1,0,0,0,4267,4253,1,0,0,0,4268,349,1,0,0, - 0,4269,4270,7,55,0,0,4270,351,1,0,0,0,4271,4273,5,46,0,0,4272,4274, - 5,98,0,0,4273,4272,1,0,0,0,4273,4274,1,0,0,0,4274,4275,1,0,0,0,4275, - 4277,5,226,0,0,4276,4278,5,109,0,0,4277,4276,1,0,0,0,4277,4278,1, - 0,0,0,4278,4280,1,0,0,0,4279,4281,3,288,144,0,4280,4279,1,0,0,0, - 4280,4281,1,0,0,0,4281,4283,1,0,0,0,4282,4284,3,812,406,0,4283,4282, - 1,0,0,0,4283,4284,1,0,0,0,4284,4285,1,0,0,0,4285,4286,5,80,0,0,4286, - 4288,3,618,309,0,4287,4289,3,164,82,0,4288,4287,1,0,0,0,4288,4289, - 1,0,0,0,4289,4290,1,0,0,0,4290,4293,3,354,177,0,4291,4292,5,441, - 0,0,4292,4294,3,354,177,0,4293,4291,1,0,0,0,4293,4294,1,0,0,0,4294, - 4300,1,0,0,0,4295,4297,5,273,0,0,4296,4298,5,77,0,0,4297,4296,1, - 0,0,0,4297,4298,1,0,0,0,4298,4299,1,0,0,0,4299,4301,5,56,0,0,4300, - 4295,1,0,0,0,4300,4301,1,0,0,0,4301,4303,1,0,0,0,4302,4304,3,94, - 47,0,4303,4302,1,0,0,0,4303,4304,1,0,0,0,4304,4306,1,0,0,0,4305, - 4307,3,170,85,0,4306,4305,1,0,0,0,4306,4307,1,0,0,0,4307,4309,1, - 0,0,0,4308,4310,3,632,316,0,4309,4308,1,0,0,0,4309,4310,1,0,0,0, - 4310,353,1,0,0,0,4311,4312,5,2,0,0,4312,4317,3,356,178,0,4313,4314, - 5,6,0,0,4314,4316,3,356,178,0,4315,4313,1,0,0,0,4316,4319,1,0,0, - 0,4317,4315,1,0,0,0,4317,4318,1,0,0,0,4318,4320,1,0,0,0,4319,4317, - 1,0,0,0,4320,4321,5,3,0,0,4321,355,1,0,0,0,4322,4329,3,794,397,0, - 4323,4329,3,682,341,0,4324,4325,5,2,0,0,4325,4326,3,668,334,0,4326, - 4327,5,3,0,0,4327,4329,1,0,0,0,4328,4322,1,0,0,0,4328,4323,1,0,0, - 0,4328,4324,1,0,0,0,4329,4331,1,0,0,0,4330,4332,3,90,45,0,4331,4330, - 1,0,0,0,4331,4332,1,0,0,0,4332,4339,1,0,0,0,4333,4335,3,310,155, - 0,4334,4333,1,0,0,0,4334,4335,1,0,0,0,4335,4340,1,0,0,0,4336,4337, - 3,310,155,0,4337,4338,3,92,46,0,4338,4340,1,0,0,0,4339,4334,1,0, - 0,0,4339,4336,1,0,0,0,4340,4342,1,0,0,0,4341,4343,7,56,0,0,4342, - 4341,1,0,0,0,4342,4343,1,0,0,0,4343,4346,1,0,0,0,4344,4345,5,273, - 0,0,4345,4347,7,57,0,0,4346,4344,1,0,0,0,4346,4347,1,0,0,0,4347, - 357,1,0,0,0,4348,4350,5,46,0,0,4349,4351,3,360,180,0,4350,4349,1, - 0,0,0,4350,4351,1,0,0,0,4351,4356,1,0,0,0,4352,4353,5,211,0,0,4353, - 4357,3,798,399,0,4354,4355,5,296,0,0,4355,4357,3,792,396,0,4356, - 4352,1,0,0,0,4356,4354,1,0,0,0,4357,4358,1,0,0,0,4358,4367,5,2,0, - 0,4359,4364,3,384,192,0,4360,4361,5,6,0,0,4361,4363,3,384,192,0, - 4362,4360,1,0,0,0,4363,4366,1,0,0,0,4364,4362,1,0,0,0,4364,4365, - 1,0,0,0,4365,4368,1,0,0,0,4366,4364,1,0,0,0,4367,4359,1,0,0,0,4367, - 4368,1,0,0,0,4368,4369,1,0,0,0,4369,4370,5,3,0,0,4370,4387,1,0,0, - 0,4371,4385,5,316,0,0,4372,4386,3,382,191,0,4373,4374,5,92,0,0,4374, - 4375,5,2,0,0,4375,4380,3,396,198,0,4376,4377,5,6,0,0,4377,4379,3, - 396,198,0,4378,4376,1,0,0,0,4379,4382,1,0,0,0,4380,4378,1,0,0,0, - 4380,4381,1,0,0,0,4381,4383,1,0,0,0,4382,4380,1,0,0,0,4383,4384, - 5,3,0,0,4384,4386,1,0,0,0,4385,4372,1,0,0,0,4385,4373,1,0,0,0,4386, - 4388,1,0,0,0,4387,4371,1,0,0,0,4387,4388,1,0,0,0,4388,4390,1,0,0, - 0,4389,4391,3,392,196,0,4390,4389,1,0,0,0,4391,4392,1,0,0,0,4392, - 4390,1,0,0,0,4392,4393,1,0,0,0,4393,4399,1,0,0,0,4394,4395,5,105, - 0,0,4395,4396,5,2,0,0,4396,4397,3,778,389,0,4397,4398,5,3,0,0,4398, - 4400,1,0,0,0,4399,4394,1,0,0,0,4399,4400,1,0,0,0,4400,359,1,0,0, - 0,4401,4402,5,82,0,0,4402,4403,5,311,0,0,4403,361,1,0,0,0,4404,4406, - 5,2,0,0,4405,4407,3,364,182,0,4406,4405,1,0,0,0,4406,4407,1,0,0, - 0,4407,4408,1,0,0,0,4408,4409,5,3,0,0,4409,363,1,0,0,0,4410,4415, - 3,378,189,0,4411,4412,5,6,0,0,4412,4414,3,378,189,0,4413,4411,1, - 0,0,0,4414,4417,1,0,0,0,4415,4413,1,0,0,0,4415,4416,1,0,0,0,4416, - 365,1,0,0,0,4417,4415,1,0,0,0,4418,4423,3,368,184,0,4419,4420,5, - 6,0,0,4420,4422,3,368,184,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,367,1,0,0,0,4425,4423,1, - 0,0,0,4426,4427,3,788,394,0,4427,4428,3,362,181,0,4428,4432,1,0, - 0,0,4429,4432,3,826,413,0,4430,4432,3,774,387,0,4431,4426,1,0,0, - 0,4431,4429,1,0,0,0,4431,4430,1,0,0,0,4432,369,1,0,0,0,4433,4438, - 3,372,186,0,4434,4435,5,6,0,0,4435,4437,3,372,186,0,4436,4434,1, - 0,0,0,4437,4440,1,0,0,0,4438,4436,1,0,0,0,4438,4439,1,0,0,0,4439, - 371,1,0,0,0,4440,4438,1,0,0,0,4441,4442,3,790,395,0,4442,4443,3, - 362,181,0,4443,4447,1,0,0,0,4444,4447,3,826,413,0,4445,4447,3,774, - 387,0,4446,4441,1,0,0,0,4446,4444,1,0,0,0,4446,4445,1,0,0,0,4447, - 373,1,0,0,0,4448,4453,3,376,188,0,4449,4450,5,6,0,0,4450,4452,3, - 376,188,0,4451,4449,1,0,0,0,4452,4455,1,0,0,0,4453,4451,1,0,0,0, - 4453,4454,1,0,0,0,4454,375,1,0,0,0,4455,4453,1,0,0,0,4456,4457,3, - 800,400,0,4457,4458,3,362,181,0,4458,4462,1,0,0,0,4459,4462,3,826, - 413,0,4460,4462,3,774,387,0,4461,4456,1,0,0,0,4461,4459,1,0,0,0, - 4461,4460,1,0,0,0,4462,377,1,0,0,0,4463,4465,3,380,190,0,4464,4466, - 3,814,407,0,4465,4464,1,0,0,0,4465,4466,1,0,0,0,4466,4472,1,0,0, - 0,4467,4469,3,814,407,0,4468,4470,3,380,190,0,4469,4468,1,0,0,0, - 4469,4470,1,0,0,0,4470,4472,1,0,0,0,4471,4463,1,0,0,0,4471,4467, - 1,0,0,0,4471,4472,1,0,0,0,4472,4473,1,0,0,0,4473,4474,3,382,191, - 0,4474,379,1,0,0,0,4475,4477,5,68,0,0,4476,4478,5,453,0,0,4477,4476, - 1,0,0,0,4477,4478,1,0,0,0,4478,4483,1,0,0,0,4479,4483,5,453,0,0, - 4480,4483,5,400,0,0,4481,4483,5,101,0,0,4482,4475,1,0,0,0,4482,4479, - 1,0,0,0,4482,4480,1,0,0,0,4482,4481,1,0,0,0,4483,381,1,0,0,0,4484, - 4494,3,646,323,0,4485,4487,5,415,0,0,4486,4485,1,0,0,0,4486,4487, - 1,0,0,0,4487,4488,1,0,0,0,4488,4489,3,814,407,0,4489,4490,3,312, - 156,0,4490,4491,5,27,0,0,4491,4492,5,360,0,0,4492,4494,1,0,0,0,4493, - 4484,1,0,0,0,4493,4486,1,0,0,0,4494,383,1,0,0,0,4495,4498,3,378, - 189,0,4496,4497,7,58,0,0,4497,4499,3,668,334,0,4498,4496,1,0,0,0, - 4498,4499,1,0,0,0,4499,385,1,0,0,0,4500,4510,5,2,0,0,4501,4511,5, - 9,0,0,4502,4504,3,364,182,0,4503,4502,1,0,0,0,4503,4504,1,0,0,0, - 4504,4508,1,0,0,0,4505,4506,5,83,0,0,4506,4507,5,147,0,0,4507,4509, - 3,364,182,0,4508,4505,1,0,0,0,4508,4509,1,0,0,0,4509,4511,1,0,0, - 0,4510,4501,1,0,0,0,4510,4503,1,0,0,0,4511,4512,1,0,0,0,4512,4513, - 5,3,0,0,4513,387,1,0,0,0,4514,4515,3,800,400,0,4515,4516,3,386,193, - 0,4516,389,1,0,0,0,4517,4518,5,316,0,0,4518,4521,5,78,0,0,4519,4521, - 5,149,0,0,4520,4517,1,0,0,0,4520,4519,1,0,0,0,4521,4522,1,0,0,0, - 4522,4523,5,80,0,0,4523,4524,5,78,0,0,4524,4547,5,458,0,0,4525,4547, - 5,346,0,0,4526,4547,5,222,0,0,4527,4547,5,338,0,0,4528,4547,5,377, - 0,0,4529,4531,5,205,0,0,4530,4529,1,0,0,0,4530,4531,1,0,0,0,4531, - 4532,1,0,0,0,4532,4533,5,327,0,0,4533,4547,7,59,0,0,4534,4547,5, - 250,0,0,4535,4536,5,77,0,0,4536,4547,5,250,0,0,4537,4538,7,60,0, - 0,4538,4547,3,196,98,0,4539,4540,5,459,0,0,4540,4547,3,310,155,0, - 4541,4542,5,333,0,0,4542,4547,3,42,21,0,4543,4547,3,60,30,0,4544, - 4545,5,460,0,0,4545,4547,3,812,406,0,4546,4520,1,0,0,0,4546,4525, - 1,0,0,0,4546,4526,1,0,0,0,4546,4527,1,0,0,0,4546,4528,1,0,0,0,4546, - 4530,1,0,0,0,4546,4534,1,0,0,0,4546,4535,1,0,0,0,4546,4537,1,0,0, - 0,4546,4539,1,0,0,0,4546,4541,1,0,0,0,4546,4543,1,0,0,0,4546,4544, - 1,0,0,0,4547,391,1,0,0,0,4548,4549,5,36,0,0,4549,4550,3,802,401, - 0,4550,4551,3,456,228,0,4551,4584,1,0,0,0,4552,4553,5,247,0,0,4553, - 4584,3,58,29,0,4554,4555,5,443,0,0,4555,4556,5,62,0,0,4556,4557, - 5,360,0,0,4557,4564,3,646,323,0,4558,4559,5,6,0,0,4559,4560,5,62, - 0,0,4560,4561,5,360,0,0,4561,4563,3,646,323,0,4562,4558,1,0,0,0, - 4563,4566,1,0,0,0,4564,4562,1,0,0,0,4564,4565,1,0,0,0,4565,4584, - 1,0,0,0,4566,4564,1,0,0,0,4567,4584,5,104,0,0,4568,4569,5,333,0, - 0,4569,4576,3,812,406,0,4570,4571,5,94,0,0,4571,4577,3,812,406,0, - 4572,4573,5,10,0,0,4573,4577,3,812,406,0,4574,4575,5,64,0,0,4575, - 4577,5,434,0,0,4576,4570,1,0,0,0,4576,4572,1,0,0,0,4576,4574,1,0, - 0,0,4577,4584,1,0,0,0,4578,4579,5,36,0,0,4579,4584,3,812,406,0,4580, - 4584,3,4,2,0,4581,4584,3,390,195,0,4582,4584,3,812,406,0,4583,4548, - 1,0,0,0,4583,4552,1,0,0,0,4583,4554,1,0,0,0,4583,4567,1,0,0,0,4583, - 4568,1,0,0,0,4583,4578,1,0,0,0,4583,4580,1,0,0,0,4583,4581,1,0,0, - 0,4583,4582,1,0,0,0,4584,393,1,0,0,0,4585,4586,5,105,0,0,4586,4587, - 3,278,139,0,4587,395,1,0,0,0,4588,4589,3,794,397,0,4589,4590,3,382, - 191,0,4590,397,1,0,0,0,4591,4598,5,138,0,0,4592,4593,5,211,0,0,4593, - 4599,3,376,188,0,4594,4595,5,296,0,0,4595,4599,3,372,186,0,4596, - 4597,5,442,0,0,4597,4599,3,368,184,0,4598,4592,1,0,0,0,4598,4594, - 1,0,0,0,4598,4596,1,0,0,0,4599,4601,1,0,0,0,4600,4602,3,390,195, - 0,4601,4600,1,0,0,0,4602,4603,1,0,0,0,4603,4601,1,0,0,0,4603,4604, - 1,0,0,0,4604,4606,1,0,0,0,4605,4607,5,315,0,0,4606,4605,1,0,0,0, - 4606,4607,1,0,0,0,4607,399,1,0,0,0,4608,4624,5,191,0,0,4609,4611, - 5,211,0,0,4610,4612,3,416,208,0,4611,4610,1,0,0,0,4611,4612,1,0, - 0,0,4612,4613,1,0,0,0,4613,4625,3,374,187,0,4614,4616,5,296,0,0, - 4615,4617,3,416,208,0,4616,4615,1,0,0,0,4616,4617,1,0,0,0,4617,4618, - 1,0,0,0,4618,4625,3,370,185,0,4619,4621,5,442,0,0,4620,4622,3,416, - 208,0,4621,4620,1,0,0,0,4621,4622,1,0,0,0,4622,4623,1,0,0,0,4623, - 4625,3,366,183,0,4624,4609,1,0,0,0,4624,4614,1,0,0,0,4624,4619,1, - 0,0,0,4625,4627,1,0,0,0,4626,4628,3,88,44,0,4627,4626,1,0,0,0,4627, - 4628,1,0,0,0,4628,401,1,0,0,0,4629,4630,5,191,0,0,4630,4632,5,136, - 0,0,4631,4633,3,416,208,0,4632,4631,1,0,0,0,4632,4633,1,0,0,0,4633, - 4634,1,0,0,0,4634,4639,3,388,194,0,4635,4636,5,6,0,0,4636,4638,3, - 388,194,0,4637,4635,1,0,0,0,4638,4641,1,0,0,0,4639,4637,1,0,0,0, - 4639,4640,1,0,0,0,4640,4643,1,0,0,0,4641,4639,1,0,0,0,4642,4644, - 3,88,44,0,4643,4642,1,0,0,0,4643,4644,1,0,0,0,4644,403,1,0,0,0,4645, - 4646,5,191,0,0,4646,4648,5,278,0,0,4647,4649,3,416,208,0,4648,4647, - 1,0,0,0,4648,4649,1,0,0,0,4649,4650,1,0,0,0,4650,4655,3,410,205, - 0,4651,4652,5,6,0,0,4652,4654,3,410,205,0,4653,4651,1,0,0,0,4654, - 4657,1,0,0,0,4655,4653,1,0,0,0,4655,4656,1,0,0,0,4656,4659,1,0,0, - 0,4657,4655,1,0,0,0,4658,4660,3,88,44,0,4659,4658,1,0,0,0,4659,4660, - 1,0,0,0,4660,405,1,0,0,0,4661,4674,5,2,0,0,4662,4665,3,646,323,0, - 4663,4664,5,6,0,0,4664,4666,3,646,323,0,4665,4663,1,0,0,0,4665,4666, - 1,0,0,0,4666,4675,1,0,0,0,4667,4668,5,407,0,0,4668,4669,5,6,0,0, - 4669,4675,3,646,323,0,4670,4671,3,646,323,0,4671,4672,5,6,0,0,4672, - 4673,5,407,0,0,4673,4675,1,0,0,0,4674,4662,1,0,0,0,4674,4667,1,0, - 0,0,4674,4670,1,0,0,0,4675,4676,1,0,0,0,4676,4677,5,3,0,0,4677,407, - 1,0,0,0,4678,4679,3,812,406,0,4679,4680,5,11,0,0,4680,4682,1,0,0, - 0,4681,4678,1,0,0,0,4682,4685,1,0,0,0,4683,4681,1,0,0,0,4683,4684, - 1,0,0,0,4684,4686,1,0,0,0,4685,4683,1,0,0,0,4686,4687,3,714,357, - 0,4687,409,1,0,0,0,4688,4689,3,408,204,0,4689,4690,3,406,203,0,4690, - 411,1,0,0,0,4691,4695,5,57,0,0,4692,4696,3,802,401,0,4693,4694,5, - 247,0,0,4694,4696,3,58,29,0,4695,4692,1,0,0,0,4695,4693,1,0,0,0, - 4696,4697,1,0,0,0,4697,4695,1,0,0,0,4697,4698,1,0,0,0,4698,413,1, - 0,0,0,4699,4700,5,46,0,0,4700,4701,5,41,0,0,4701,4702,5,2,0,0,4702, - 4703,3,646,323,0,4703,4704,5,36,0,0,4704,4705,3,646,323,0,4705,4722, - 5,3,0,0,4706,4707,5,379,0,0,4707,4710,5,211,0,0,4708,4709,5,36,0, - 0,4709,4711,7,61,0,0,4710,4708,1,0,0,0,4710,4711,1,0,0,0,4711,4723, - 1,0,0,0,4712,4716,5,105,0,0,4713,4714,5,211,0,0,4714,4717,3,376, - 188,0,4715,4717,5,400,0,0,4716,4713,1,0,0,0,4716,4715,1,0,0,0,4717, - 4720,1,0,0,0,4718,4719,5,36,0,0,4719,4721,7,61,0,0,4720,4718,1,0, - 0,0,4720,4721,1,0,0,0,4721,4723,1,0,0,0,4722,4706,1,0,0,0,4722,4712, - 1,0,0,0,4723,415,1,0,0,0,4724,4725,5,220,0,0,4725,4726,5,396,0,0, - 4726,417,1,0,0,0,4727,4729,5,46,0,0,4728,4730,3,360,180,0,4729,4728, - 1,0,0,0,4729,4730,1,0,0,0,4730,4731,1,0,0,0,4731,4732,5,443,0,0, - 4732,4733,5,62,0,0,4733,4734,3,646,323,0,4734,4735,5,247,0,0,4735, - 4736,3,812,406,0,4736,4751,5,2,0,0,4737,4738,5,64,0,0,4738,4742, - 3,420,210,0,4739,4740,5,6,0,0,4740,4741,5,94,0,0,4741,4743,3,420, - 210,0,4742,4739,1,0,0,0,4742,4743,1,0,0,0,4743,4752,1,0,0,0,4744, - 4745,5,94,0,0,4745,4749,3,420,210,0,4746,4747,5,6,0,0,4747,4748, - 5,64,0,0,4748,4750,3,420,210,0,4749,4746,1,0,0,0,4749,4750,1,0,0, - 0,4750,4752,1,0,0,0,4751,4737,1,0,0,0,4751,4744,1,0,0,0,4752,4753, - 1,0,0,0,4753,4754,5,3,0,0,4754,419,1,0,0,0,4755,4756,5,461,0,0,4756, - 4757,5,105,0,0,4757,4758,5,211,0,0,4758,4759,3,376,188,0,4759,421, - 1,0,0,0,4760,4771,5,306,0,0,4761,4762,5,2,0,0,4762,4767,5,128,0, - 0,4763,4764,5,6,0,0,4764,4766,5,128,0,0,4765,4763,1,0,0,0,4766,4769, - 1,0,0,0,4767,4765,1,0,0,0,4767,4768,1,0,0,0,4768,4770,1,0,0,0,4769, - 4767,1,0,0,0,4770,4772,5,3,0,0,4771,4761,1,0,0,0,4771,4772,1,0,0, - 0,4772,4798,1,0,0,0,4773,4775,5,226,0,0,4774,4776,5,109,0,0,4775, - 4774,1,0,0,0,4775,4776,1,0,0,0,4776,4777,1,0,0,0,4777,4799,3,774, - 387,0,4778,4780,5,92,0,0,4779,4781,5,109,0,0,4780,4779,1,0,0,0,4780, - 4781,1,0,0,0,4781,4782,1,0,0,0,4782,4799,3,768,384,0,4783,4785,5, - 323,0,0,4784,4786,5,109,0,0,4785,4784,1,0,0,0,4785,4786,1,0,0,0, - 4786,4787,1,0,0,0,4787,4799,3,784,392,0,4788,4790,5,349,0,0,4789, - 4791,5,109,0,0,4790,4789,1,0,0,0,4790,4791,1,0,0,0,4791,4792,1,0, - 0,0,4792,4799,3,812,406,0,4793,4795,5,175,0,0,4794,4796,5,109,0, - 0,4795,4794,1,0,0,0,4795,4796,1,0,0,0,4796,4797,1,0,0,0,4797,4799, - 3,782,391,0,4798,4773,1,0,0,0,4798,4778,1,0,0,0,4798,4783,1,0,0, - 0,4798,4788,1,0,0,0,4798,4793,1,0,0,0,4799,423,1,0,0,0,4800,4801, - 5,138,0,0,4801,4802,3,170,85,0,4802,4803,7,16,0,0,4803,4804,3,92, - 46,0,4804,425,1,0,0,0,4805,4810,5,138,0,0,4806,4807,5,136,0,0,4807, - 4811,3,388,194,0,4808,4809,5,442,0,0,4809,4811,3,368,184,0,4810, - 4806,1,0,0,0,4810,4808,1,0,0,0,4811,4812,1,0,0,0,4812,4813,5,309, - 0,0,4813,4814,5,94,0,0,4814,4815,3,812,406,0,4815,5013,1,0,0,0,4816, - 4817,5,138,0,0,4817,4818,5,175,0,0,4818,4819,3,782,391,0,4819,4820, - 5,309,0,0,4820,4821,5,94,0,0,4821,4822,3,780,390,0,4822,5013,1,0, - 0,0,4823,4824,5,138,0,0,4824,4825,7,62,0,0,4825,4826,3,310,155,0, - 4826,4827,5,309,0,0,4827,4828,5,94,0,0,4828,4829,3,812,406,0,4829, - 5013,1,0,0,0,4830,4831,5,138,0,0,4831,4832,5,211,0,0,4832,4833,3, - 376,188,0,4833,4834,5,309,0,0,4834,4835,5,94,0,0,4835,4836,3,798, - 399,0,4836,5013,1,0,0,0,4837,4838,5,138,0,0,4838,4839,5,278,0,0, - 4839,4840,7,32,0,0,4840,4841,3,310,155,0,4841,4842,3,164,82,0,4842, - 4843,5,309,0,0,4843,4844,5,94,0,0,4844,4845,3,812,406,0,4845,5013, - 1,0,0,0,4846,4847,5,138,0,0,4847,4848,5,296,0,0,4848,4849,3,372, - 186,0,4849,4850,5,309,0,0,4850,4851,5,94,0,0,4851,4852,3,792,396, - 0,4852,5013,1,0,0,0,4853,4854,5,138,0,0,4854,4855,5,323,0,0,4855, - 4856,3,784,392,0,4856,4857,5,309,0,0,4857,4858,5,94,0,0,4858,4859, - 3,32,16,0,4859,5013,1,0,0,0,4860,4861,5,138,0,0,4861,4863,7,63,0, - 0,4862,4864,3,416,208,0,4863,4862,1,0,0,0,4863,4864,1,0,0,0,4864, - 4865,1,0,0,0,4865,4866,3,774,387,0,4866,4867,5,309,0,0,4867,4868, - 5,94,0,0,4868,4869,3,812,406,0,4869,5013,1,0,0,0,4870,4872,5,138, - 0,0,4871,4873,5,259,0,0,4872,4871,1,0,0,0,4872,4873,1,0,0,0,4873, - 4874,1,0,0,0,4874,4876,5,376,0,0,4875,4877,3,416,208,0,4876,4875, - 1,0,0,0,4876,4877,1,0,0,0,4877,4878,1,0,0,0,4878,4879,3,772,386, - 0,4879,4880,5,309,0,0,4880,4881,5,94,0,0,4881,4882,3,770,385,0,4882, - 5013,1,0,0,0,4883,4885,5,138,0,0,4884,4886,5,63,0,0,4885,4884,1, - 0,0,0,4885,4886,1,0,0,0,4886,4887,1,0,0,0,4887,4889,5,92,0,0,4888, - 4890,3,416,208,0,4889,4888,1,0,0,0,4889,4890,1,0,0,0,4890,4891,1, - 0,0,0,4891,4892,3,618,309,0,4892,4893,5,309,0,0,4893,4894,5,94,0, - 0,4894,4895,3,766,383,0,4895,5013,1,0,0,0,4896,4921,5,138,0,0,4897, - 4899,5,63,0,0,4898,4897,1,0,0,0,4898,4899,1,0,0,0,4899,4900,1,0, - 0,0,4900,4902,5,92,0,0,4901,4903,3,416,208,0,4902,4901,1,0,0,0,4902, - 4903,1,0,0,0,4903,4904,1,0,0,0,4904,4905,3,618,309,0,4905,4907,5, - 309,0,0,4906,4908,5,44,0,0,4907,4906,1,0,0,0,4907,4908,1,0,0,0,4908, - 4922,1,0,0,0,4909,4911,5,259,0,0,4910,4909,1,0,0,0,4910,4911,1,0, - 0,0,4911,4912,1,0,0,0,4912,4914,5,376,0,0,4913,4915,3,416,208,0, - 4914,4913,1,0,0,0,4914,4915,1,0,0,0,4915,4916,1,0,0,0,4916,4917, - 3,772,386,0,4917,4919,5,309,0,0,4918,4920,5,44,0,0,4919,4918,1,0, - 0,0,4919,4920,1,0,0,0,4920,4922,1,0,0,0,4921,4898,1,0,0,0,4921,4910, - 1,0,0,0,4922,4923,1,0,0,0,4923,4924,3,794,397,0,4924,4925,5,94,0, - 0,4925,4926,3,796,398,0,4926,5013,1,0,0,0,4927,4935,5,138,0,0,4928, - 4930,5,92,0,0,4929,4931,3,416,208,0,4930,4929,1,0,0,0,4930,4931, - 1,0,0,0,4931,4932,1,0,0,0,4932,4936,3,618,309,0,4933,4934,5,189, - 0,0,4934,4936,3,310,155,0,4935,4928,1,0,0,0,4935,4933,1,0,0,0,4936, - 4937,1,0,0,0,4937,4938,5,309,0,0,4938,4939,5,45,0,0,4939,4940,3, - 812,406,0,4940,4941,5,94,0,0,4941,4942,3,812,406,0,4942,5013,1,0, - 0,0,4943,4950,5,138,0,0,4944,4946,5,445,0,0,4945,4947,3,416,208, - 0,4946,4945,1,0,0,0,4946,4947,1,0,0,0,4947,4951,1,0,0,0,4948,4951, - 5,321,0,0,4949,4951,5,357,0,0,4950,4944,1,0,0,0,4950,4948,1,0,0, - 0,4950,4949,1,0,0,0,4951,4952,1,0,0,0,4952,4953,3,812,406,0,4953, - 4954,5,80,0,0,4954,4955,3,774,387,0,4955,4956,5,309,0,0,4956,4957, - 5,94,0,0,4957,4958,3,812,406,0,4958,5013,1,0,0,0,4959,4972,5,138, - 0,0,4960,4961,5,63,0,0,4961,4962,5,174,0,0,4962,4973,5,381,0,0,4963, - 4965,5,295,0,0,4964,4963,1,0,0,0,4964,4965,1,0,0,0,4965,4966,1,0, - 0,0,4966,4973,5,247,0,0,4967,4973,5,452,0,0,4968,4973,5,331,0,0, - 4969,4973,5,451,0,0,4970,4971,5,198,0,0,4971,4973,5,357,0,0,4972, - 4960,1,0,0,0,4972,4964,1,0,0,0,4972,4967,1,0,0,0,4972,4968,1,0,0, - 0,4972,4969,1,0,0,0,4972,4970,1,0,0,0,4973,4974,1,0,0,0,4974,4975, - 3,812,406,0,4975,4976,5,309,0,0,4976,4977,5,94,0,0,4977,4978,3,812, - 406,0,4978,5013,1,0,0,0,4979,4980,5,138,0,0,4980,4981,7,46,0,0,4981, - 4982,3,808,404,0,4982,4983,5,309,0,0,4983,4984,5,94,0,0,4984,4985, - 3,808,404,0,4985,5013,1,0,0,0,4986,4987,5,138,0,0,4987,4988,3,170, - 85,0,4988,4989,5,309,0,0,4989,4990,5,94,0,0,4990,4991,3,764,382, - 0,4991,5013,1,0,0,0,4992,4993,5,138,0,0,4993,4994,5,355,0,0,4994, - 4995,5,325,0,0,4995,4996,7,42,0,0,4996,4997,3,310,155,0,4997,4998, - 5,309,0,0,4998,4999,5,94,0,0,4999,5000,3,812,406,0,5000,5013,1,0, - 0,0,5001,5002,5,138,0,0,5002,5003,5,360,0,0,5003,5004,3,310,155, - 0,5004,5005,5,309,0,0,5005,5006,5,143,0,0,5006,5007,3,812,406,0, - 5007,5008,5,94,0,0,5008,5010,3,812,406,0,5009,5011,3,88,44,0,5010, - 5009,1,0,0,0,5010,5011,1,0,0,0,5011,5013,1,0,0,0,5012,4805,1,0,0, - 0,5012,4816,1,0,0,0,5012,4823,1,0,0,0,5012,4830,1,0,0,0,5012,4837, - 1,0,0,0,5012,4846,1,0,0,0,5012,4853,1,0,0,0,5012,4860,1,0,0,0,5012, - 4870,1,0,0,0,5012,4883,1,0,0,0,5012,4896,1,0,0,0,5012,4927,1,0,0, - 0,5012,4943,1,0,0,0,5012,4959,1,0,0,0,5012,4979,1,0,0,0,5012,4986, - 1,0,0,0,5012,4992,1,0,0,0,5012,5001,1,0,0,0,5013,427,1,0,0,0,5014, - 5031,5,138,0,0,5015,5016,5,211,0,0,5016,5032,3,376,188,0,5017,5018, - 5,296,0,0,5018,5032,3,372,186,0,5019,5020,5,442,0,0,5020,5032,3, - 368,184,0,5021,5022,5,357,0,0,5022,5023,3,812,406,0,5023,5024,5, - 80,0,0,5024,5025,3,774,387,0,5025,5032,1,0,0,0,5026,5027,5,259,0, - 0,5027,5028,5,376,0,0,5028,5032,3,772,386,0,5029,5030,5,226,0,0, - 5030,5032,3,774,387,0,5031,5015,1,0,0,0,5031,5017,1,0,0,0,5031,5019, - 1,0,0,0,5031,5021,1,0,0,0,5031,5026,1,0,0,0,5031,5029,1,0,0,0,5032, - 5034,1,0,0,0,5033,5035,5,269,0,0,5034,5033,1,0,0,0,5034,5035,1,0, - 0,0,5035,5036,1,0,0,0,5036,5037,5,462,0,0,5037,5038,5,80,0,0,5038, - 5039,5,204,0,0,5039,5040,3,812,406,0,5040,429,1,0,0,0,5041,5080, - 5,138,0,0,5042,5043,5,136,0,0,5043,5081,3,388,194,0,5044,5045,5, - 204,0,0,5045,5081,3,812,406,0,5046,5047,5,211,0,0,5047,5081,3,376, - 188,0,5048,5049,5,278,0,0,5049,5081,3,410,205,0,5050,5051,5,278, - 0,0,5051,5052,7,32,0,0,5052,5053,3,310,155,0,5053,5054,3,164,82, - 0,5054,5081,1,0,0,0,5055,5056,5,296,0,0,5056,5081,3,372,186,0,5057, - 5058,5,442,0,0,5058,5081,3,368,184,0,5059,5061,5,328,0,0,5060,5062, - 3,416,208,0,5061,5060,1,0,0,0,5061,5062,1,0,0,0,5062,5063,1,0,0, - 0,5063,5081,3,774,387,0,5064,5066,5,259,0,0,5065,5064,1,0,0,0,5065, - 5066,1,0,0,0,5066,5067,1,0,0,0,5067,5069,5,376,0,0,5068,5070,3,416, - 208,0,5069,5068,1,0,0,0,5069,5070,1,0,0,0,5070,5071,1,0,0,0,5071, - 5081,3,772,386,0,5072,5074,5,63,0,0,5073,5072,1,0,0,0,5073,5074, - 1,0,0,0,5074,5075,1,0,0,0,5075,5077,5,92,0,0,5076,5078,3,416,208, - 0,5077,5076,1,0,0,0,5077,5078,1,0,0,0,5078,5079,1,0,0,0,5079,5081, - 3,618,309,0,5080,5042,1,0,0,0,5080,5044,1,0,0,0,5080,5046,1,0,0, - 0,5080,5048,1,0,0,0,5080,5050,1,0,0,0,5080,5055,1,0,0,0,5080,5057, - 1,0,0,0,5080,5059,1,0,0,0,5080,5065,1,0,0,0,5080,5073,1,0,0,0,5081, - 5082,1,0,0,0,5082,5083,5,333,0,0,5083,5084,5,323,0,0,5084,5085,3, - 784,392,0,5085,5103,1,0,0,0,5086,5095,5,138,0,0,5087,5088,5,355, - 0,0,5088,5089,5,325,0,0,5089,5096,7,42,0,0,5090,5096,5,108,0,0,5091, - 5096,5,168,0,0,5092,5096,5,189,0,0,5093,5096,5,342,0,0,5094,5096, - 5,360,0,0,5095,5087,1,0,0,0,5095,5090,1,0,0,0,5095,5091,1,0,0,0, - 5095,5092,1,0,0,0,5095,5093,1,0,0,0,5095,5094,1,0,0,0,5096,5097, - 1,0,0,0,5097,5098,3,310,155,0,5098,5099,5,333,0,0,5099,5100,5,323, - 0,0,5100,5101,3,784,392,0,5101,5103,1,0,0,0,5102,5041,1,0,0,0,5102, - 5086,1,0,0,0,5103,431,1,0,0,0,5104,5105,5,138,0,0,5105,5106,5,278, - 0,0,5106,5107,3,410,205,0,5107,5108,5,333,0,0,5108,5109,3,434,217, - 0,5109,433,1,0,0,0,5110,5111,5,2,0,0,5111,5116,3,436,218,0,5112, - 5113,5,6,0,0,5113,5115,3,436,218,0,5114,5112,1,0,0,0,5115,5118,1, - 0,0,0,5116,5114,1,0,0,0,5116,5117,1,0,0,0,5117,5119,1,0,0,0,5118, - 5116,1,0,0,0,5119,5120,5,3,0,0,5120,435,1,0,0,0,5121,5122,3,818, - 409,0,5122,5129,5,10,0,0,5123,5130,5,407,0,0,5124,5130,3,382,191, - 0,5125,5130,3,828,414,0,5126,5130,3,720,360,0,5127,5130,3,196,98, - 0,5128,5130,3,802,401,0,5129,5123,1,0,0,0,5129,5124,1,0,0,0,5129, - 5125,1,0,0,0,5129,5126,1,0,0,0,5129,5127,1,0,0,0,5129,5128,1,0,0, - 0,5130,437,1,0,0,0,5131,5132,5,138,0,0,5132,5133,5,360,0,0,5133, - 5134,3,310,155,0,5134,5135,5,333,0,0,5135,5136,3,434,217,0,5136, - 439,1,0,0,0,5137,5138,5,138,0,0,5138,5139,5,278,0,0,5139,5140,7, - 32,0,0,5140,5141,3,310,155,0,5141,5142,3,164,82,0,5142,5143,5,282, - 0,0,5143,5144,5,94,0,0,5144,5145,3,808,404,0,5145,5212,1,0,0,0,5146, - 5173,5,138,0,0,5147,5148,5,136,0,0,5148,5174,3,388,194,0,5149,5150, - 5,175,0,0,5150,5174,3,782,391,0,5151,5152,5,211,0,0,5152,5174,3, - 376,188,0,5153,5155,5,295,0,0,5154,5153,1,0,0,0,5154,5155,1,0,0, - 0,5155,5156,1,0,0,0,5156,5157,5,247,0,0,5157,5174,3,812,406,0,5158, - 5159,5,248,0,0,5159,5160,5,274,0,0,5160,5174,3,196,98,0,5161,5162, - 5,248,0,0,5162,5163,5,274,0,0,5163,5174,3,196,98,0,5164,5165,5,278, - 0,0,5165,5174,3,410,205,0,5166,5167,5,296,0,0,5167,5174,3,372,186, - 0,5168,5169,5,442,0,0,5169,5174,3,368,184,0,5170,5171,5,323,0,0, - 5171,5174,3,784,392,0,5172,5174,3,170,85,0,5173,5147,1,0,0,0,5173, - 5149,1,0,0,0,5173,5151,1,0,0,0,5173,5154,1,0,0,0,5173,5158,1,0,0, - 0,5173,5161,1,0,0,0,5173,5164,1,0,0,0,5173,5166,1,0,0,0,5173,5168, - 1,0,0,0,5173,5170,1,0,0,0,5173,5172,1,0,0,0,5174,5175,1,0,0,0,5175, - 5176,5,282,0,0,5176,5177,5,94,0,0,5177,5178,3,808,404,0,5178,5212, - 1,0,0,0,5179,5188,5,138,0,0,5180,5181,5,355,0,0,5181,5182,5,325, - 0,0,5182,5189,7,64,0,0,5183,5189,5,108,0,0,5184,5189,5,168,0,0,5185, - 5189,5,189,0,0,5186,5189,5,360,0,0,5187,5189,5,342,0,0,5188,5180, - 1,0,0,0,5188,5183,1,0,0,0,5188,5184,1,0,0,0,5188,5185,1,0,0,0,5188, - 5186,1,0,0,0,5188,5187,1,0,0,0,5189,5190,1,0,0,0,5190,5191,3,310, - 155,0,5191,5192,5,282,0,0,5192,5193,5,94,0,0,5193,5194,3,808,404, - 0,5194,5212,1,0,0,0,5195,5204,5,138,0,0,5196,5205,5,331,0,0,5197, - 5198,5,63,0,0,5198,5199,5,174,0,0,5199,5205,5,381,0,0,5200,5201, - 5,198,0,0,5201,5205,5,357,0,0,5202,5205,5,452,0,0,5203,5205,5,451, - 0,0,5204,5196,1,0,0,0,5204,5197,1,0,0,0,5204,5200,1,0,0,0,5204,5202, - 1,0,0,0,5204,5203,1,0,0,0,5205,5206,1,0,0,0,5206,5207,3,812,406, - 0,5207,5208,5,282,0,0,5208,5209,5,94,0,0,5209,5210,3,808,404,0,5210, - 5212,1,0,0,0,5211,5137,1,0,0,0,5211,5146,1,0,0,0,5211,5179,1,0,0, - 0,5211,5195,1,0,0,0,5212,441,1,0,0,0,5213,5214,5,46,0,0,5214,5215, - 5,452,0,0,5215,5222,3,812,406,0,5216,5217,5,62,0,0,5217,5218,5,92, - 0,0,5218,5223,3,622,311,0,5219,5220,5,62,0,0,5220,5221,5,30,0,0, - 5221,5223,5,350,0,0,5222,5216,1,0,0,0,5222,5219,1,0,0,0,5222,5223, - 1,0,0,0,5223,5225,1,0,0,0,5224,5226,3,394,197,0,5225,5224,1,0,0, - 0,5225,5226,1,0,0,0,5226,443,1,0,0,0,5227,5228,5,138,0,0,5228,5229, - 5,452,0,0,5229,5247,3,812,406,0,5230,5231,5,282,0,0,5231,5232,5, - 94,0,0,5232,5248,3,808,404,0,5233,5234,5,333,0,0,5234,5248,3,278, - 139,0,5235,5236,5,309,0,0,5236,5237,5,94,0,0,5237,5248,3,812,406, - 0,5238,5239,7,35,0,0,5239,5244,3,620,310,0,5240,5241,5,6,0,0,5241, - 5243,3,620,310,0,5242,5240,1,0,0,0,5243,5246,1,0,0,0,5244,5242,1, - 0,0,0,5244,5245,1,0,0,0,5245,5248,1,0,0,0,5246,5244,1,0,0,0,5247, - 5230,1,0,0,0,5247,5233,1,0,0,0,5247,5235,1,0,0,0,5247,5238,1,0,0, - 0,5248,445,1,0,0,0,5249,5250,5,46,0,0,5250,5251,5,451,0,0,5251,5252, - 3,812,406,0,5252,5253,5,164,0,0,5253,5254,3,802,401,0,5254,5255, - 5,452,0,0,5255,5260,3,818,409,0,5256,5257,5,6,0,0,5257,5259,3,818, - 409,0,5258,5256,1,0,0,0,5259,5262,1,0,0,0,5260,5258,1,0,0,0,5260, - 5261,1,0,0,0,5261,5264,1,0,0,0,5262,5260,1,0,0,0,5263,5265,3,394, - 197,0,5264,5263,1,0,0,0,5264,5265,1,0,0,0,5265,447,1,0,0,0,5266, - 5267,5,138,0,0,5267,5268,5,451,0,0,5268,5269,3,812,406,0,5269,5270, - 5,333,0,0,5270,5271,3,278,139,0,5271,5323,1,0,0,0,5272,5273,5,138, - 0,0,5273,5274,5,451,0,0,5274,5275,3,812,406,0,5275,5276,5,164,0, - 0,5276,5277,3,802,401,0,5277,5323,1,0,0,0,5278,5279,5,138,0,0,5279, - 5280,5,451,0,0,5280,5281,3,812,406,0,5281,5282,5,305,0,0,5282,5284, - 5,452,0,0,5283,5285,3,394,197,0,5284,5283,1,0,0,0,5284,5285,1,0, - 0,0,5285,5323,1,0,0,0,5286,5287,5,138,0,0,5287,5288,5,451,0,0,5288, - 5289,3,812,406,0,5289,5290,7,35,0,0,5290,5291,5,452,0,0,5291,5296, - 3,818,409,0,5292,5293,5,6,0,0,5293,5295,3,818,409,0,5294,5292,1, - 0,0,0,5295,5298,1,0,0,0,5296,5294,1,0,0,0,5296,5297,1,0,0,0,5297, - 5300,1,0,0,0,5298,5296,1,0,0,0,5299,5301,3,394,197,0,5300,5299,1, - 0,0,0,5300,5301,1,0,0,0,5301,5323,1,0,0,0,5302,5303,5,138,0,0,5303, - 5304,5,451,0,0,5304,5305,3,812,406,0,5305,5306,7,65,0,0,5306,5323, - 1,0,0,0,5307,5308,5,138,0,0,5308,5309,5,451,0,0,5309,5310,3,812, - 406,0,5310,5311,5,465,0,0,5311,5312,5,2,0,0,5312,5313,3,284,142, - 0,5313,5314,5,3,0,0,5314,5323,1,0,0,0,5315,5316,5,138,0,0,5316,5317, - 5,451,0,0,5317,5318,3,812,406,0,5318,5319,5,282,0,0,5319,5320,5, - 94,0,0,5320,5321,3,808,404,0,5321,5323,1,0,0,0,5322,5266,1,0,0,0, - 5322,5272,1,0,0,0,5322,5278,1,0,0,0,5322,5286,1,0,0,0,5322,5302, - 1,0,0,0,5322,5307,1,0,0,0,5322,5315,1,0,0,0,5323,449,1,0,0,0,5324, - 5326,5,46,0,0,5325,5327,3,360,180,0,5326,5325,1,0,0,0,5326,5327, - 1,0,0,0,5327,5328,1,0,0,0,5328,5329,5,321,0,0,5329,5330,3,812,406, - 0,5330,5331,5,36,0,0,5331,5332,5,80,0,0,5332,5333,7,66,0,0,5333, - 5334,5,94,0,0,5334,5336,3,774,387,0,5335,5337,3,632,316,0,5336,5335, - 1,0,0,0,5336,5337,1,0,0,0,5337,5338,1,0,0,0,5338,5340,5,57,0,0,5339, - 5341,7,67,0,0,5340,5339,1,0,0,0,5340,5341,1,0,0,0,5341,5358,1,0, - 0,0,5342,5359,5,270,0,0,5343,5359,3,452,226,0,5344,5346,5,2,0,0, - 5345,5347,3,452,226,0,5346,5345,1,0,0,0,5346,5347,1,0,0,0,5347,5354, - 1,0,0,0,5348,5350,5,7,0,0,5349,5351,3,452,226,0,5350,5349,1,0,0, - 0,5350,5351,1,0,0,0,5351,5353,1,0,0,0,5352,5348,1,0,0,0,5353,5356, - 1,0,0,0,5354,5352,1,0,0,0,5354,5355,1,0,0,0,5355,5357,1,0,0,0,5356, - 5354,1,0,0,0,5357,5359,5,3,0,0,5358,5342,1,0,0,0,5358,5343,1,0,0, - 0,5358,5344,1,0,0,0,5359,451,1,0,0,0,5360,5366,3,554,277,0,5361, - 5366,3,532,266,0,5362,5366,3,546,273,0,5363,5366,3,542,271,0,5364, - 5366,3,454,227,0,5365,5360,1,0,0,0,5365,5361,1,0,0,0,5365,5362,1, - 0,0,0,5365,5363,1,0,0,0,5365,5364,1,0,0,0,5366,453,1,0,0,0,5367, - 5368,5,271,0,0,5368,5370,3,812,406,0,5369,5371,3,456,228,0,5370, - 5369,1,0,0,0,5370,5371,1,0,0,0,5371,455,1,0,0,0,5372,5373,5,6,0, - 0,5373,5374,3,802,401,0,5374,457,1,0,0,0,5375,5376,5,252,0,0,5376, - 5377,3,812,406,0,5377,459,1,0,0,0,5378,5381,5,366,0,0,5379,5382, - 3,812,406,0,5380,5382,5,9,0,0,5381,5379,1,0,0,0,5381,5380,1,0,0, - 0,5382,461,1,0,0,0,5383,5385,5,146,0,0,5384,5386,3,464,232,0,5385, - 5384,1,0,0,0,5385,5386,1,0,0,0,5386,5388,1,0,0,0,5387,5389,3,468, - 234,0,5388,5387,1,0,0,0,5388,5389,1,0,0,0,5389,5429,1,0,0,0,5390, - 5391,5,340,0,0,5391,5393,5,356,0,0,5392,5394,3,468,234,0,5393,5392, - 1,0,0,0,5393,5394,1,0,0,0,5394,5429,1,0,0,0,5395,5396,5,322,0,0, - 5396,5429,3,812,406,0,5397,5399,5,308,0,0,5398,5400,5,322,0,0,5399, - 5398,1,0,0,0,5399,5400,1,0,0,0,5400,5401,1,0,0,0,5401,5429,3,812, - 406,0,5402,5403,5,290,0,0,5403,5404,5,356,0,0,5404,5429,3,802,401, - 0,5405,5406,7,68,0,0,5406,5407,5,291,0,0,5407,5429,3,802,401,0,5408, - 5410,7,69,0,0,5409,5411,3,464,232,0,5410,5409,1,0,0,0,5410,5411, - 1,0,0,0,5411,5417,1,0,0,0,5412,5414,5,33,0,0,5413,5415,5,269,0,0, - 5414,5413,1,0,0,0,5414,5415,1,0,0,0,5415,5416,1,0,0,0,5416,5418, - 5,153,0,0,5417,5412,1,0,0,0,5417,5418,1,0,0,0,5418,5429,1,0,0,0, - 5419,5421,5,319,0,0,5420,5422,3,464,232,0,5421,5420,1,0,0,0,5421, - 5422,1,0,0,0,5422,5423,1,0,0,0,5423,5425,5,94,0,0,5424,5426,5,322, - 0,0,5425,5424,1,0,0,0,5425,5426,1,0,0,0,5426,5427,1,0,0,0,5427,5429, - 3,812,406,0,5428,5383,1,0,0,0,5428,5390,1,0,0,0,5428,5395,1,0,0, - 0,5428,5397,1,0,0,0,5428,5402,1,0,0,0,5428,5405,1,0,0,0,5428,5408, - 1,0,0,0,5428,5419,1,0,0,0,5429,463,1,0,0,0,5430,5431,7,70,0,0,5431, - 465,1,0,0,0,5432,5433,5,244,0,0,5433,5434,5,251,0,0,5434,5442,3, - 50,25,0,5435,5436,5,300,0,0,5436,5442,7,71,0,0,5437,5439,5,77,0, - 0,5438,5437,1,0,0,0,5438,5439,1,0,0,0,5439,5440,1,0,0,0,5440,5442, - 5,54,0,0,5441,5432,1,0,0,0,5441,5435,1,0,0,0,5441,5438,1,0,0,0,5442, - 467,1,0,0,0,5443,5450,3,466,233,0,5444,5446,5,6,0,0,5445,5444,1, - 0,0,0,5445,5446,1,0,0,0,5446,5447,1,0,0,0,5447,5449,3,466,233,0, - 5448,5445,1,0,0,0,5449,5452,1,0,0,0,5450,5448,1,0,0,0,5450,5451, - 1,0,0,0,5451,469,1,0,0,0,5452,5450,1,0,0,0,5453,5456,5,46,0,0,5454, - 5455,5,82,0,0,5455,5457,5,311,0,0,5456,5454,1,0,0,0,5456,5457,1, - 0,0,0,5457,5459,1,0,0,0,5458,5460,3,116,58,0,5459,5458,1,0,0,0,5459, - 5460,1,0,0,0,5460,5476,1,0,0,0,5461,5462,5,376,0,0,5462,5464,3,770, - 385,0,5463,5465,3,140,70,0,5464,5463,1,0,0,0,5464,5465,1,0,0,0,5465, - 5467,1,0,0,0,5466,5468,3,94,47,0,5467,5466,1,0,0,0,5467,5468,1,0, - 0,0,5468,5477,1,0,0,0,5469,5470,5,303,0,0,5470,5471,5,376,0,0,5471, - 5472,3,770,385,0,5472,5474,3,138,69,0,5473,5475,3,94,47,0,5474,5473, - 1,0,0,0,5474,5475,1,0,0,0,5475,5477,1,0,0,0,5476,5461,1,0,0,0,5476, - 5469,1,0,0,0,5477,5478,1,0,0,0,5478,5479,5,36,0,0,5479,5486,3,554, - 277,0,5480,5482,5,105,0,0,5481,5483,7,72,0,0,5482,5481,1,0,0,0,5482, - 5483,1,0,0,0,5483,5484,1,0,0,0,5484,5485,5,42,0,0,5485,5487,5,279, - 0,0,5486,5480,1,0,0,0,5486,5487,1,0,0,0,5487,471,1,0,0,0,5488,5489, - 5,253,0,0,5489,5490,3,802,401,0,5490,473,1,0,0,0,5491,5492,5,46, - 0,0,5492,5493,5,175,0,0,5493,5495,3,780,390,0,5494,5496,5,105,0, - 0,5495,5494,1,0,0,0,5495,5496,1,0,0,0,5496,5502,1,0,0,0,5497,5499, - 3,476,238,0,5498,5497,1,0,0,0,5499,5500,1,0,0,0,5500,5498,1,0,0, - 0,5500,5501,1,0,0,0,5501,5503,1,0,0,0,5502,5498,1,0,0,0,5502,5503, - 1,0,0,0,5503,475,1,0,0,0,5504,5505,5,164,0,0,5505,5513,5,74,0,0, - 5506,5513,5,194,0,0,5507,5513,5,255,0,0,5508,5513,5,282,0,0,5509, - 5513,5,351,0,0,5510,5513,5,353,0,0,5511,5513,3,820,410,0,5512,5504, - 1,0,0,0,5512,5506,1,0,0,0,5512,5507,1,0,0,0,5512,5508,1,0,0,0,5512, - 5509,1,0,0,0,5512,5510,1,0,0,0,5512,5511,1,0,0,0,5513,5515,1,0,0, - 0,5514,5516,5,10,0,0,5515,5514,1,0,0,0,5515,5516,1,0,0,0,5516,5520, - 1,0,0,0,5517,5521,3,806,403,0,5518,5521,3,54,27,0,5519,5521,5,53, - 0,0,5520,5517,1,0,0,0,5520,5518,1,0,0,0,5520,5519,1,0,0,0,5521,477, - 1,0,0,0,5522,5523,5,138,0,0,5523,5524,5,175,0,0,5524,5540,3,782, - 391,0,5525,5526,5,333,0,0,5526,5527,5,351,0,0,5527,5529,3,764,382, - 0,5528,5525,1,0,0,0,5528,5529,1,0,0,0,5529,5541,1,0,0,0,5530,5532, - 5,105,0,0,5531,5530,1,0,0,0,5531,5532,1,0,0,0,5532,5534,1,0,0,0, - 5533,5535,3,476,238,0,5534,5533,1,0,0,0,5535,5536,1,0,0,0,5536,5534, - 1,0,0,0,5536,5537,1,0,0,0,5537,5539,1,0,0,0,5538,5531,1,0,0,0,5538, - 5539,1,0,0,0,5539,5541,1,0,0,0,5540,5528,1,0,0,0,5540,5538,1,0,0, - 0,5541,479,1,0,0,0,5542,5543,5,138,0,0,5543,5544,5,175,0,0,5544, - 5546,3,782,391,0,5545,5547,3,64,32,0,5546,5545,1,0,0,0,5546,5547, - 1,0,0,0,5547,481,1,0,0,0,5548,5549,5,138,0,0,5549,5550,5,108,0,0, - 5550,5551,3,310,155,0,5551,5552,5,305,0,0,5552,5553,5,375,0,0,5553, - 483,1,0,0,0,5554,5555,5,138,0,0,5555,5556,5,349,0,0,5556,5557,7, - 16,0,0,5557,5558,3,40,20,0,5558,485,1,0,0,0,5559,5560,5,46,0,0,5560, - 5561,5,189,0,0,5561,5563,3,310,155,0,5562,5564,5,36,0,0,5563,5562, - 1,0,0,0,5563,5564,1,0,0,0,5564,5565,1,0,0,0,5565,5569,3,646,323, - 0,5566,5568,3,128,64,0,5567,5566,1,0,0,0,5568,5571,1,0,0,0,5569, - 5567,1,0,0,0,5569,5570,1,0,0,0,5570,487,1,0,0,0,5571,5569,1,0,0, - 0,5572,5573,5,138,0,0,5573,5574,5,189,0,0,5574,5597,3,310,155,0, - 5575,5598,3,86,43,0,5576,5577,7,15,0,0,5577,5578,5,77,0,0,5578,5598, - 5,78,0,0,5579,5582,5,133,0,0,5580,5581,5,45,0,0,5581,5583,3,812, - 406,0,5582,5580,1,0,0,0,5582,5583,1,0,0,0,5583,5584,1,0,0,0,5584, - 5598,3,136,68,0,5585,5586,5,191,0,0,5586,5588,5,45,0,0,5587,5589, - 3,416,208,0,5588,5587,1,0,0,0,5588,5589,1,0,0,0,5589,5590,1,0,0, - 0,5590,5592,3,812,406,0,5591,5593,3,88,44,0,5592,5591,1,0,0,0,5592, - 5593,1,0,0,0,5593,5598,1,0,0,0,5594,5595,5,372,0,0,5595,5596,5,45, - 0,0,5596,5598,3,812,406,0,5597,5575,1,0,0,0,5597,5576,1,0,0,0,5597, - 5579,1,0,0,0,5597,5585,1,0,0,0,5597,5594,1,0,0,0,5598,489,1,0,0, - 0,5599,5600,5,138,0,0,5600,5601,5,355,0,0,5601,5602,5,325,0,0,5602, - 5603,5,185,0,0,5603,5604,3,310,155,0,5604,5605,3,278,139,0,5605, - 491,1,0,0,0,5606,5607,5,138,0,0,5607,5608,5,355,0,0,5608,5609,5, - 325,0,0,5609,5610,5,163,0,0,5610,5611,3,310,155,0,5611,5612,7,73, - 0,0,5612,5613,5,257,0,0,5613,5614,5,62,0,0,5614,5615,3,778,389,0, - 5615,5616,5,105,0,0,5616,5617,3,308,154,0,5617,5648,1,0,0,0,5618, - 5619,5,138,0,0,5619,5620,5,355,0,0,5620,5621,5,325,0,0,5621,5622, - 5,163,0,0,5622,5623,3,310,155,0,5623,5624,5,138,0,0,5624,5627,5, - 257,0,0,5625,5626,5,62,0,0,5626,5628,3,778,389,0,5627,5625,1,0,0, - 0,5627,5628,1,0,0,0,5628,5629,1,0,0,0,5629,5630,5,311,0,0,5630,5631, - 3,310,155,0,5631,5632,5,105,0,0,5632,5633,3,310,155,0,5633,5648, - 1,0,0,0,5634,5635,5,138,0,0,5635,5636,5,355,0,0,5636,5637,5,325, - 0,0,5637,5638,5,163,0,0,5638,5639,3,310,155,0,5639,5640,5,191,0, - 0,5640,5642,5,257,0,0,5641,5643,3,416,208,0,5642,5641,1,0,0,0,5642, - 5643,1,0,0,0,5643,5644,1,0,0,0,5644,5645,5,62,0,0,5645,5646,3,778, - 389,0,5646,5648,1,0,0,0,5647,5606,1,0,0,0,5647,5618,1,0,0,0,5647, - 5634,1,0,0,0,5648,493,1,0,0,0,5649,5651,5,46,0,0,5650,5652,5,53, - 0,0,5651,5650,1,0,0,0,5651,5652,1,0,0,0,5652,5653,1,0,0,0,5653,5654, - 5,168,0,0,5654,5655,3,310,155,0,5655,5656,5,62,0,0,5656,5657,3,802, - 401,0,5657,5658,5,94,0,0,5658,5659,3,802,401,0,5659,5660,5,64,0, - 0,5660,5661,3,310,155,0,5661,495,1,0,0,0,5662,5664,5,158,0,0,5663, - 5665,3,508,254,0,5664,5663,1,0,0,0,5664,5665,1,0,0,0,5665,5670,1, - 0,0,0,5666,5668,3,768,384,0,5667,5669,3,164,82,0,5668,5667,1,0,0, - 0,5668,5669,1,0,0,0,5669,5671,1,0,0,0,5670,5666,1,0,0,0,5670,5671, - 1,0,0,0,5671,5688,1,0,0,0,5672,5673,5,158,0,0,5673,5674,5,2,0,0, - 5674,5679,3,508,254,0,5675,5676,5,6,0,0,5676,5678,3,508,254,0,5677, - 5675,1,0,0,0,5678,5681,1,0,0,0,5679,5677,1,0,0,0,5679,5680,1,0,0, - 0,5680,5682,1,0,0,0,5681,5679,1,0,0,0,5682,5683,5,3,0,0,5683,5685, - 3,768,384,0,5684,5686,3,164,82,0,5685,5684,1,0,0,0,5685,5686,1,0, - 0,0,5686,5688,1,0,0,0,5687,5662,1,0,0,0,5687,5672,1,0,0,0,5688,497, - 1,0,0,0,5689,5705,5,370,0,0,5690,5692,5,113,0,0,5691,5690,1,0,0, - 0,5691,5692,1,0,0,0,5692,5694,1,0,0,0,5693,5695,5,112,0,0,5694,5693, - 1,0,0,0,5694,5695,1,0,0,0,5695,5697,1,0,0,0,5696,5698,3,508,254, - 0,5697,5696,1,0,0,0,5697,5698,1,0,0,0,5698,5700,1,0,0,0,5699,5701, - 3,502,251,0,5700,5699,1,0,0,0,5700,5701,1,0,0,0,5701,5706,1,0,0, - 0,5702,5704,3,518,259,0,5703,5702,1,0,0,0,5703,5704,1,0,0,0,5704, - 5706,1,0,0,0,5705,5691,1,0,0,0,5705,5703,1,0,0,0,5706,5708,1,0,0, - 0,5707,5709,3,512,256,0,5708,5707,1,0,0,0,5708,5709,1,0,0,0,5709, - 499,1,0,0,0,5710,5725,3,502,251,0,5711,5713,3,508,254,0,5712,5711, - 1,0,0,0,5712,5713,1,0,0,0,5713,5726,1,0,0,0,5714,5715,5,2,0,0,5715, - 5720,3,506,253,0,5716,5717,5,6,0,0,5717,5719,3,506,253,0,5718,5716, - 1,0,0,0,5719,5722,1,0,0,0,5720,5718,1,0,0,0,5720,5721,1,0,0,0,5721, - 5723,1,0,0,0,5722,5720,1,0,0,0,5723,5724,5,3,0,0,5724,5726,1,0,0, - 0,5725,5712,1,0,0,0,5725,5714,1,0,0,0,5726,5728,1,0,0,0,5727,5729, - 3,512,256,0,5728,5727,1,0,0,0,5728,5729,1,0,0,0,5729,501,1,0,0,0, - 5730,5731,7,74,0,0,5731,503,1,0,0,0,5732,5735,3,816,408,0,5733,5735, - 3,502,251,0,5734,5732,1,0,0,0,5734,5733,1,0,0,0,5735,5738,1,0,0, - 0,5736,5739,3,54,27,0,5737,5739,3,196,98,0,5738,5736,1,0,0,0,5738, - 5737,1,0,0,0,5738,5739,1,0,0,0,5739,505,1,0,0,0,5740,5742,7,75,0, - 0,5741,5743,7,76,0,0,5742,5741,1,0,0,0,5742,5743,1,0,0,0,5743,5750, - 1,0,0,0,5744,5747,5,548,0,0,5745,5748,3,196,98,0,5746,5748,3,802, - 401,0,5747,5745,1,0,0,0,5747,5746,1,0,0,0,5748,5750,1,0,0,0,5749, - 5740,1,0,0,0,5749,5744,1,0,0,0,5750,507,1,0,0,0,5751,5753,5,128, - 0,0,5752,5754,7,76,0,0,5753,5752,1,0,0,0,5753,5754,1,0,0,0,5754, - 509,1,0,0,0,5755,5757,3,768,384,0,5756,5758,3,138,69,0,5757,5756, - 1,0,0,0,5757,5758,1,0,0,0,5758,511,1,0,0,0,5759,5764,3,510,255,0, - 5760,5761,5,6,0,0,5761,5763,3,510,255,0,5762,5760,1,0,0,0,5763,5766, - 1,0,0,0,5764,5762,1,0,0,0,5764,5765,1,0,0,0,5765,513,1,0,0,0,5766, - 5764,1,0,0,0,5767,5778,5,203,0,0,5768,5779,3,518,259,0,5769,5771, - 5,128,0,0,5770,5769,1,0,0,0,5770,5771,1,0,0,0,5771,5779,1,0,0,0, - 5772,5774,3,502,251,0,5773,5775,3,508,254,0,5774,5773,1,0,0,0,5774, - 5775,1,0,0,0,5775,5777,1,0,0,0,5776,5772,1,0,0,0,5776,5777,1,0,0, - 0,5777,5779,1,0,0,0,5778,5768,1,0,0,0,5778,5770,1,0,0,0,5778,5776, - 1,0,0,0,5779,5780,1,0,0,0,5780,5781,3,516,258,0,5781,515,1,0,0,0, - 5782,5792,3,554,277,0,5783,5792,3,532,266,0,5784,5792,3,546,273, - 0,5785,5792,3,542,271,0,5786,5792,3,552,276,0,5787,5792,3,180,90, - 0,5788,5792,3,186,93,0,5789,5792,3,188,94,0,5790,5792,3,526,263, - 0,5791,5782,1,0,0,0,5791,5783,1,0,0,0,5791,5784,1,0,0,0,5791,5785, - 1,0,0,0,5791,5786,1,0,0,0,5791,5787,1,0,0,0,5791,5788,1,0,0,0,5791, - 5789,1,0,0,0,5791,5790,1,0,0,0,5792,517,1,0,0,0,5793,5794,5,2,0, - 0,5794,5799,3,504,252,0,5795,5796,5,6,0,0,5796,5798,3,504,252,0, - 5797,5795,1,0,0,0,5798,5801,1,0,0,0,5799,5797,1,0,0,0,5799,5800, - 1,0,0,0,5800,5802,1,0,0,0,5801,5799,1,0,0,0,5802,5803,5,3,0,0,5803, - 519,1,0,0,0,5804,5805,5,290,0,0,5805,5807,3,812,406,0,5806,5808, - 3,522,261,0,5807,5806,1,0,0,0,5807,5808,1,0,0,0,5808,5809,1,0,0, - 0,5809,5810,5,36,0,0,5810,5811,3,524,262,0,5811,521,1,0,0,0,5812, - 5813,5,2,0,0,5813,5818,3,646,323,0,5814,5815,5,6,0,0,5815,5817,3, - 646,323,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,5821,1,0,0,0,5820,5818,1,0,0,0,5821,5822, - 5,3,0,0,5822,523,1,0,0,0,5823,5829,3,554,277,0,5824,5829,3,532,266, - 0,5825,5829,3,546,273,0,5826,5829,3,542,271,0,5827,5829,3,894,447, - 0,5828,5823,1,0,0,0,5828,5824,1,0,0,0,5828,5825,1,0,0,0,5828,5826, - 1,0,0,0,5828,5827,1,0,0,0,5829,525,1,0,0,0,5830,5831,5,202,0,0,5831, - 5833,3,812,406,0,5832,5834,3,528,264,0,5833,5832,1,0,0,0,5833,5834, - 1,0,0,0,5834,5854,1,0,0,0,5835,5837,5,46,0,0,5836,5838,3,116,58, - 0,5837,5836,1,0,0,0,5837,5838,1,0,0,0,5838,5839,1,0,0,0,5839,5841, - 5,92,0,0,5840,5842,3,288,144,0,5841,5840,1,0,0,0,5841,5842,1,0,0, - 0,5842,5843,1,0,0,0,5843,5844,3,182,91,0,5844,5845,5,36,0,0,5845, - 5846,5,202,0,0,5846,5848,3,812,406,0,5847,5849,3,528,264,0,5848, - 5847,1,0,0,0,5848,5849,1,0,0,0,5849,5851,1,0,0,0,5850,5852,3,184, - 92,0,5851,5850,1,0,0,0,5851,5852,1,0,0,0,5852,5854,1,0,0,0,5853, - 5830,1,0,0,0,5853,5835,1,0,0,0,5854,527,1,0,0,0,5855,5856,5,2,0, - 0,5856,5857,3,724,362,0,5857,5858,5,3,0,0,5858,529,1,0,0,0,5859, - 5861,5,177,0,0,5860,5862,5,290,0,0,5861,5860,1,0,0,0,5861,5862,1, - 0,0,0,5862,5865,1,0,0,0,5863,5866,3,812,406,0,5864,5866,5,30,0,0, - 5865,5863,1,0,0,0,5865,5864,1,0,0,0,5866,531,1,0,0,0,5867,5869,3, - 566,283,0,5868,5867,1,0,0,0,5868,5869,1,0,0,0,5869,5870,1,0,0,0, - 5870,5871,5,241,0,0,5871,5872,5,71,0,0,5872,5875,3,768,384,0,5873, - 5874,5,36,0,0,5874,5876,3,812,406,0,5875,5873,1,0,0,0,5875,5876, - 1,0,0,0,5876,5877,1,0,0,0,5877,5899,3,534,267,0,5878,5879,5,80,0, - 0,5879,5887,5,464,0,0,5880,5882,3,354,177,0,5881,5883,3,632,316, - 0,5882,5881,1,0,0,0,5882,5883,1,0,0,0,5883,5888,1,0,0,0,5884,5885, - 5,80,0,0,5885,5886,5,45,0,0,5886,5888,3,812,406,0,5887,5880,1,0, - 0,0,5887,5884,1,0,0,0,5887,5888,1,0,0,0,5888,5889,1,0,0,0,5889,5897, - 5,57,0,0,5890,5891,5,369,0,0,5891,5892,5,333,0,0,5892,5894,3,548, - 274,0,5893,5895,3,632,316,0,5894,5893,1,0,0,0,5894,5895,1,0,0,0, - 5895,5898,1,0,0,0,5896,5898,5,270,0,0,5897,5890,1,0,0,0,5897,5896, - 1,0,0,0,5898,5900,1,0,0,0,5899,5878,1,0,0,0,5899,5900,1,0,0,0,5900, - 5902,1,0,0,0,5901,5903,3,540,270,0,5902,5901,1,0,0,0,5902,5903,1, - 0,0,0,5903,533,1,0,0,0,5904,5905,5,2,0,0,5905,5906,3,536,268,0,5906, - 5907,5,3,0,0,5907,5909,1,0,0,0,5908,5904,1,0,0,0,5908,5909,1,0,0, - 0,5909,5913,1,0,0,0,5910,5911,5,463,0,0,5911,5912,7,77,0,0,5912, - 5914,5,450,0,0,5913,5910,1,0,0,0,5913,5914,1,0,0,0,5914,5917,1,0, - 0,0,5915,5918,3,904,452,0,5916,5918,3,554,277,0,5917,5915,1,0,0, - 0,5917,5916,1,0,0,0,5918,535,1,0,0,0,5919,5924,3,538,269,0,5920, - 5921,5,6,0,0,5921,5923,3,538,269,0,5922,5920,1,0,0,0,5923,5926,1, - 0,0,0,5924,5922,1,0,0,0,5924,5925,1,0,0,0,5925,537,1,0,0,0,5926, - 5924,1,0,0,0,5927,5928,3,794,397,0,5928,5929,3,748,374,0,5929,539, - 1,0,0,0,5930,5931,5,87,0,0,5931,5932,3,750,375,0,5932,541,1,0,0, - 0,5933,5935,3,566,283,0,5934,5933,1,0,0,0,5934,5935,1,0,0,0,5935, - 5936,1,0,0,0,5936,5937,5,182,0,0,5937,5938,5,64,0,0,5938,5941,3, - 624,312,0,5939,5940,5,100,0,0,5940,5942,3,606,303,0,5941,5939,1, - 0,0,0,5941,5942,1,0,0,0,5942,5944,1,0,0,0,5943,5945,3,634,317,0, - 5944,5943,1,0,0,0,5944,5945,1,0,0,0,5945,5947,1,0,0,0,5946,5948, - 3,540,270,0,5947,5946,1,0,0,0,5947,5948,1,0,0,0,5948,543,1,0,0,0, - 5949,5951,5,256,0,0,5950,5952,5,92,0,0,5951,5950,1,0,0,0,5951,5952, - 1,0,0,0,5952,5953,1,0,0,0,5953,5968,3,622,311,0,5954,5965,5,68,0, - 0,5955,5956,7,78,0,0,5956,5966,7,79,0,0,5957,5962,5,334,0,0,5958, - 5959,5,369,0,0,5959,5963,5,201,0,0,5960,5961,5,414,0,0,5961,5963, - 5,201,0,0,5962,5958,1,0,0,0,5962,5960,1,0,0,0,5962,5963,1,0,0,0, - 5963,5966,1,0,0,0,5964,5966,5,201,0,0,5965,5955,1,0,0,0,5965,5957, - 1,0,0,0,5965,5964,1,0,0,0,5966,5967,1,0,0,0,5967,5969,5,263,0,0, - 5968,5954,1,0,0,0,5968,5969,1,0,0,0,5969,5971,1,0,0,0,5970,5972, - 5,272,0,0,5971,5970,1,0,0,0,5971,5972,1,0,0,0,5972,545,1,0,0,0,5973, - 5975,3,566,283,0,5974,5973,1,0,0,0,5974,5975,1,0,0,0,5975,5976,1, - 0,0,0,5976,5977,5,369,0,0,5977,5978,3,624,312,0,5978,5979,5,333, - 0,0,5979,5981,3,548,274,0,5980,5982,3,604,302,0,5981,5980,1,0,0, - 0,5981,5982,1,0,0,0,5982,5984,1,0,0,0,5983,5985,3,634,317,0,5984, - 5983,1,0,0,0,5984,5985,1,0,0,0,5985,5987,1,0,0,0,5986,5988,3,540, - 270,0,5987,5986,1,0,0,0,5987,5988,1,0,0,0,5988,547,1,0,0,0,5989, - 5994,3,550,275,0,5990,5991,5,6,0,0,5991,5993,3,550,275,0,5992,5990, - 1,0,0,0,5993,5996,1,0,0,0,5994,5992,1,0,0,0,5994,5995,1,0,0,0,5995, - 549,1,0,0,0,5996,5994,1,0,0,0,5997,5998,3,538,269,0,5998,5999,5, - 10,0,0,5999,6000,3,668,334,0,6000,6016,1,0,0,0,6001,6002,5,2,0,0, - 6002,6003,3,536,268,0,6003,6004,5,3,0,0,6004,6013,5,10,0,0,6005, - 6007,5,414,0,0,6006,6005,1,0,0,0,6006,6007,1,0,0,0,6007,6008,1,0, - 0,0,6008,6014,3,668,334,0,6009,6010,5,2,0,0,6010,6011,3,560,280, - 0,6011,6012,5,3,0,0,6012,6014,1,0,0,0,6013,6006,1,0,0,0,6013,6009, - 1,0,0,0,6014,6016,1,0,0,0,6015,5997,1,0,0,0,6015,6001,1,0,0,0,6016, - 551,1,0,0,0,6017,6018,5,178,0,0,6018,6027,3,812,406,0,6019,6021, - 5,269,0,0,6020,6019,1,0,0,0,6020,6021,1,0,0,0,6021,6022,1,0,0,0, - 6022,6026,5,324,0,0,6023,6026,5,107,0,0,6024,6026,5,240,0,0,6025, - 6020,1,0,0,0,6025,6023,1,0,0,0,6025,6024,1,0,0,0,6026,6029,1,0,0, - 0,6027,6025,1,0,0,0,6027,6028,1,0,0,0,6028,6030,1,0,0,0,6029,6027, - 1,0,0,0,6030,6033,5,172,0,0,6031,6032,7,27,0,0,6032,6034,5,217,0, - 0,6033,6031,1,0,0,0,6033,6034,1,0,0,0,6034,6035,1,0,0,0,6035,6036, - 5,62,0,0,6036,6037,3,554,277,0,6037,553,1,0,0,0,6038,6041,3,558, - 279,0,6039,6041,3,556,278,0,6040,6038,1,0,0,0,6040,6039,1,0,0,0, - 6041,555,1,0,0,0,6042,6045,5,2,0,0,6043,6046,3,558,279,0,6044,6046, - 3,556,278,0,6045,6043,1,0,0,0,6045,6044,1,0,0,0,6046,6047,1,0,0, - 0,6047,6048,5,3,0,0,6048,557,1,0,0,0,6049,6051,3,566,283,0,6050, - 6049,1,0,0,0,6050,6051,1,0,0,0,6051,6052,1,0,0,0,6052,6054,3,560, - 280,0,6053,6055,3,580,290,0,6054,6053,1,0,0,0,6054,6055,1,0,0,0, - 6055,6064,1,0,0,0,6056,6058,3,600,300,0,6057,6059,3,584,292,0,6058, - 6057,1,0,0,0,6058,6059,1,0,0,0,6059,6065,1,0,0,0,6060,6062,3,584, - 292,0,6061,6063,3,600,300,0,6062,6061,1,0,0,0,6062,6063,1,0,0,0, - 6063,6065,1,0,0,0,6064,6056,1,0,0,0,6064,6060,1,0,0,0,6064,6065, - 1,0,0,0,6065,559,1,0,0,0,6066,6069,3,562,281,0,6067,6069,3,556,278, - 0,6068,6066,1,0,0,0,6068,6067,1,0,0,0,6069,561,1,0,0,0,6070,6080, - 5,88,0,0,6071,6073,5,30,0,0,6072,6071,1,0,0,0,6072,6073,1,0,0,0, - 6073,6075,1,0,0,0,6074,6076,3,574,287,0,6075,6074,1,0,0,0,6075,6076, - 1,0,0,0,6076,6081,1,0,0,0,6077,6079,3,578,289,0,6078,6077,1,0,0, - 0,6078,6079,1,0,0,0,6079,6081,1,0,0,0,6080,6072,1,0,0,0,6080,6078, - 1,0,0,0,6081,6082,1,0,0,0,6082,6093,3,924,462,0,6083,6093,3,602, - 301,0,6084,6085,5,92,0,0,6085,6093,3,618,309,0,6086,6087,3,556,278, - 0,6087,6090,3,564,282,0,6088,6091,3,562,281,0,6089,6091,3,556,278, - 0,6090,6088,1,0,0,0,6090,6089,1,0,0,0,6091,6093,1,0,0,0,6092,6070, - 1,0,0,0,6092,6083,1,0,0,0,6092,6084,1,0,0,0,6092,6086,1,0,0,0,6093, - 6101,1,0,0,0,6094,6097,3,564,282,0,6095,6098,3,562,281,0,6096,6098, - 3,556,278,0,6097,6095,1,0,0,0,6097,6096,1,0,0,0,6098,6100,1,0,0, - 0,6099,6094,1,0,0,0,6100,6103,1,0,0,0,6101,6099,1,0,0,0,6101,6102, - 1,0,0,0,6102,563,1,0,0,0,6103,6101,1,0,0,0,6104,6106,7,80,0,0,6105, - 6107,7,81,0,0,6106,6105,1,0,0,0,6106,6107,1,0,0,0,6107,565,1,0,0, - 0,6108,6110,5,105,0,0,6109,6111,5,303,0,0,6110,6109,1,0,0,0,6110, - 6111,1,0,0,0,6111,6112,1,0,0,0,6112,6117,3,568,284,0,6113,6114,5, - 6,0,0,6114,6116,3,568,284,0,6115,6113,1,0,0,0,6116,6119,1,0,0,0, - 6117,6115,1,0,0,0,6117,6118,1,0,0,0,6118,567,1,0,0,0,6119,6117,1, - 0,0,0,6120,6122,3,812,406,0,6121,6123,3,138,69,0,6122,6121,1,0,0, - 0,6122,6123,1,0,0,0,6123,6124,1,0,0,0,6124,6129,5,36,0,0,6125,6127, - 5,77,0,0,6126,6125,1,0,0,0,6126,6127,1,0,0,0,6127,6128,1,0,0,0,6128, - 6130,5,259,0,0,6129,6126,1,0,0,0,6129,6130,1,0,0,0,6130,6131,1,0, - 0,0,6131,6132,5,2,0,0,6132,6133,3,524,262,0,6133,6135,5,3,0,0,6134, - 6136,3,570,285,0,6135,6134,1,0,0,0,6135,6136,1,0,0,0,6136,6138,1, - 0,0,0,6137,6139,3,572,286,0,6138,6137,1,0,0,0,6138,6139,1,0,0,0, - 6139,569,1,0,0,0,6140,6141,5,325,0,0,6141,6142,7,82,0,0,6142,6143, - 5,207,0,0,6143,6144,5,147,0,0,6144,6145,3,142,71,0,6145,6146,5,333, - 0,0,6146,6147,3,794,397,0,6147,571,1,0,0,0,6148,6149,5,173,0,0,6149, - 6150,3,142,71,0,6150,6151,5,333,0,0,6151,6157,3,794,397,0,6152,6153, - 5,94,0,0,6153,6154,3,812,406,0,6154,6155,5,53,0,0,6155,6156,3,812, - 406,0,6156,6158,1,0,0,0,6157,6152,1,0,0,0,6157,6158,1,0,0,0,6158, - 6159,1,0,0,0,6159,6160,5,100,0,0,6160,6161,3,794,397,0,6161,573, - 1,0,0,0,6162,6168,5,71,0,0,6163,6165,5,346,0,0,6164,6163,1,0,0,0, - 6164,6165,1,0,0,0,6165,6166,1,0,0,0,6166,6169,3,576,288,0,6167,6169, - 3,724,362,0,6168,6164,1,0,0,0,6168,6167,1,0,0,0,6169,575,1,0,0,0, - 6170,6172,7,21,0,0,6171,6170,1,0,0,0,6171,6172,1,0,0,0,6172,6173, - 1,0,0,0,6173,6175,7,22,0,0,6174,6176,5,92,0,0,6175,6174,1,0,0,0, - 6175,6176,1,0,0,0,6176,6177,1,0,0,0,6177,6186,3,766,383,0,6178,6180, - 5,367,0,0,6179,6178,1,0,0,0,6179,6180,1,0,0,0,6180,6182,1,0,0,0, - 6181,6183,5,92,0,0,6182,6181,1,0,0,0,6182,6183,1,0,0,0,6183,6184, - 1,0,0,0,6184,6186,3,766,383,0,6185,6171,1,0,0,0,6185,6179,1,0,0, - 0,6186,577,1,0,0,0,6187,6190,5,56,0,0,6188,6189,5,80,0,0,6189,6191, - 3,528,264,0,6190,6188,1,0,0,0,6190,6191,1,0,0,0,6191,579,1,0,0,0, - 6192,6193,5,83,0,0,6193,6194,5,147,0,0,6194,6199,3,582,291,0,6195, - 6196,5,6,0,0,6196,6198,3,582,291,0,6197,6195,1,0,0,0,6198,6201,1, - 0,0,0,6199,6197,1,0,0,0,6199,6200,1,0,0,0,6200,581,1,0,0,0,6201, - 6199,1,0,0,0,6202,6206,3,728,364,0,6203,6204,5,100,0,0,6204,6207, - 3,720,360,0,6205,6207,7,56,0,0,6206,6203,1,0,0,0,6206,6205,1,0,0, - 0,6206,6207,1,0,0,0,6207,6210,1,0,0,0,6208,6209,5,273,0,0,6209,6211, - 7,57,0,0,6210,6208,1,0,0,0,6210,6211,1,0,0,0,6211,583,1,0,0,0,6212, - 6214,3,590,295,0,6213,6215,3,588,294,0,6214,6213,1,0,0,0,6214,6215, - 1,0,0,0,6215,6224,1,0,0,0,6216,6219,3,586,293,0,6217,6219,3,588, - 294,0,6218,6216,1,0,0,0,6218,6217,1,0,0,0,6219,6221,1,0,0,0,6220, - 6222,3,590,295,0,6221,6220,1,0,0,0,6221,6222,1,0,0,0,6222,6224,1, - 0,0,0,6223,6212,1,0,0,0,6223,6218,1,0,0,0,6224,585,1,0,0,0,6225, - 6228,5,74,0,0,6226,6229,3,668,334,0,6227,6229,5,30,0,0,6228,6226, - 1,0,0,0,6228,6227,1,0,0,0,6229,6232,1,0,0,0,6230,6231,5,6,0,0,6231, - 6233,3,668,334,0,6232,6230,1,0,0,0,6232,6233,1,0,0,0,6233,587,1, - 0,0,0,6234,6235,5,61,0,0,6235,6237,7,83,0,0,6236,6238,3,592,296, - 0,6237,6236,1,0,0,0,6237,6238,1,0,0,0,6238,6239,1,0,0,0,6239,6243, - 7,84,0,0,6240,6244,5,81,0,0,6241,6242,5,105,0,0,6242,6244,5,467, - 0,0,6243,6240,1,0,0,0,6243,6241,1,0,0,0,6244,589,1,0,0,0,6245,6250, - 5,79,0,0,6246,6247,3,592,296,0,6247,6248,7,84,0,0,6248,6251,1,0, - 0,0,6249,6251,3,668,334,0,6250,6246,1,0,0,0,6250,6249,1,0,0,0,6251, - 591,1,0,0,0,6252,6253,7,30,0,0,6253,6256,7,85,0,0,6254,6256,3,676, - 338,0,6255,6252,1,0,0,0,6255,6254,1,0,0,0,6256,593,1,0,0,0,6257, - 6258,5,66,0,0,6258,6260,5,147,0,0,6259,6261,7,81,0,0,6260,6259,1, - 0,0,0,6260,6261,1,0,0,0,6261,6262,1,0,0,0,6262,6263,3,596,298,0, - 6263,595,1,0,0,0,6264,6269,3,598,299,0,6265,6266,5,6,0,0,6266,6268, - 3,598,299,0,6267,6265,1,0,0,0,6268,6271,1,0,0,0,6269,6267,1,0,0, - 0,6269,6270,1,0,0,0,6270,597,1,0,0,0,6271,6269,1,0,0,0,6272,6296, - 3,728,364,0,6273,6274,5,2,0,0,6274,6296,5,3,0,0,6275,6277,7,86,0, - 0,6276,6275,1,0,0,0,6276,6277,1,0,0,0,6277,6278,1,0,0,0,6278,6279, - 5,2,0,0,6279,6284,3,728,364,0,6280,6281,5,6,0,0,6281,6283,3,728, - 364,0,6282,6280,1,0,0,0,6283,6286,1,0,0,0,6284,6282,1,0,0,0,6284, - 6285,1,0,0,0,6285,6287,1,0,0,0,6286,6284,1,0,0,0,6287,6288,5,3,0, - 0,6288,6296,1,0,0,0,6289,6290,5,470,0,0,6290,6291,5,471,0,0,6291, - 6292,5,2,0,0,6292,6293,3,596,298,0,6293,6294,5,3,0,0,6294,6296,1, - 0,0,0,6295,6272,1,0,0,0,6295,6273,1,0,0,0,6295,6276,1,0,0,0,6295, - 6289,1,0,0,0,6296,599,1,0,0,0,6297,6307,5,62,0,0,6298,6299,5,269, - 0,0,6299,6301,5,245,0,0,6300,6298,1,0,0,0,6300,6301,1,0,0,0,6301, - 6302,1,0,0,0,6302,6308,5,369,0,0,6303,6305,5,245,0,0,6304,6303,1, - 0,0,0,6304,6305,1,0,0,0,6305,6306,1,0,0,0,6306,6308,5,334,0,0,6307, - 6300,1,0,0,0,6307,6304,1,0,0,0,6308,6311,1,0,0,0,6309,6310,5,275, - 0,0,6310,6312,3,754,377,0,6311,6309,1,0,0,0,6311,6312,1,0,0,0,6312, - 6316,1,0,0,0,6313,6317,5,272,0,0,6314,6315,5,465,0,0,6315,6317,5, - 466,0,0,6316,6313,1,0,0,0,6316,6314,1,0,0,0,6316,6317,1,0,0,0,6317, - 6319,1,0,0,0,6318,6297,1,0,0,0,6319,6320,1,0,0,0,6320,6318,1,0,0, - 0,6320,6321,1,0,0,0,6321,6326,1,0,0,0,6322,6323,5,62,0,0,6323,6324, - 5,300,0,0,6324,6326,5,81,0,0,6325,6318,1,0,0,0,6325,6322,1,0,0,0, - 6326,601,1,0,0,0,6327,6328,5,422,0,0,6328,6333,3,528,264,0,6329, - 6330,5,6,0,0,6330,6332,3,528,264,0,6331,6329,1,0,0,0,6332,6335,1, - 0,0,0,6333,6331,1,0,0,0,6333,6334,1,0,0,0,6334,603,1,0,0,0,6335, - 6333,1,0,0,0,6336,6337,5,64,0,0,6337,6338,3,606,303,0,6338,605,1, - 0,0,0,6339,6344,3,608,304,0,6340,6341,5,6,0,0,6341,6343,3,608,304, - 0,6342,6340,1,0,0,0,6343,6346,1,0,0,0,6344,6342,1,0,0,0,6344,6345, - 1,0,0,0,6345,607,1,0,0,0,6346,6344,1,0,0,0,6347,6362,3,618,309,0, - 6348,6350,5,81,0,0,6349,6348,1,0,0,0,6349,6350,1,0,0,0,6350,6351, - 1,0,0,0,6351,6353,3,772,386,0,6352,6354,5,9,0,0,6353,6352,1,0,0, - 0,6353,6354,1,0,0,0,6354,6356,1,0,0,0,6355,6357,3,142,71,0,6356, - 6355,1,0,0,0,6356,6357,1,0,0,0,6357,6359,1,0,0,0,6358,6360,3,632, - 316,0,6359,6358,1,0,0,0,6359,6360,1,0,0,0,6360,6362,1,0,0,0,6361, - 6347,1,0,0,0,6361,6349,1,0,0,0,6362,6364,1,0,0,0,6363,6365,3,610, - 305,0,6364,6363,1,0,0,0,6364,6365,1,0,0,0,6365,6367,1,0,0,0,6366, - 6368,3,626,313,0,6367,6366,1,0,0,0,6367,6368,1,0,0,0,6368,6411,1, - 0,0,0,6369,6371,5,72,0,0,6370,6369,1,0,0,0,6370,6371,1,0,0,0,6371, - 6384,1,0,0,0,6372,6374,3,640,320,0,6373,6375,3,610,305,0,6374,6373, - 1,0,0,0,6374,6375,1,0,0,0,6375,6385,1,0,0,0,6376,6378,3,628,314, - 0,6377,6379,3,612,306,0,6378,6377,1,0,0,0,6378,6379,1,0,0,0,6379, - 6385,1,0,0,0,6380,6382,3,556,278,0,6381,6383,3,610,305,0,6382,6381, - 1,0,0,0,6382,6383,1,0,0,0,6383,6385,1,0,0,0,6384,6372,1,0,0,0,6384, - 6376,1,0,0,0,6384,6380,1,0,0,0,6385,6411,1,0,0,0,6386,6387,5,2,0, - 0,6387,6404,3,608,304,0,6388,6389,5,110,0,0,6389,6390,5,118,0,0, - 6390,6405,3,608,304,0,6391,6393,5,121,0,0,6392,6394,3,614,307,0, - 6393,6392,1,0,0,0,6393,6394,1,0,0,0,6394,6395,1,0,0,0,6395,6396, - 5,118,0,0,6396,6405,3,608,304,0,6397,6399,3,614,307,0,6398,6397, - 1,0,0,0,6398,6399,1,0,0,0,6399,6400,1,0,0,0,6400,6401,5,118,0,0, - 6401,6402,3,608,304,0,6402,6403,3,616,308,0,6403,6405,1,0,0,0,6404, - 6388,1,0,0,0,6404,6391,1,0,0,0,6404,6398,1,0,0,0,6404,6405,1,0,0, - 0,6405,6406,1,0,0,0,6406,6408,5,3,0,0,6407,6409,3,610,305,0,6408, - 6407,1,0,0,0,6408,6409,1,0,0,0,6409,6411,1,0,0,0,6410,6361,1,0,0, - 0,6410,6370,1,0,0,0,6410,6386,1,0,0,0,6411,6430,1,0,0,0,6412,6413, - 5,110,0,0,6413,6414,5,118,0,0,6414,6429,3,608,304,0,6415,6417,5, - 121,0,0,6416,6418,3,614,307,0,6417,6416,1,0,0,0,6417,6418,1,0,0, - 0,6418,6419,1,0,0,0,6419,6420,5,118,0,0,6420,6429,3,608,304,0,6421, - 6423,3,614,307,0,6422,6421,1,0,0,0,6422,6423,1,0,0,0,6423,6424,1, - 0,0,0,6424,6425,5,118,0,0,6425,6426,3,608,304,0,6426,6427,3,616, - 308,0,6427,6429,1,0,0,0,6428,6412,1,0,0,0,6428,6415,1,0,0,0,6428, - 6422,1,0,0,0,6429,6432,1,0,0,0,6430,6428,1,0,0,0,6430,6431,1,0,0, - 0,6431,609,1,0,0,0,6432,6430,1,0,0,0,6433,6435,5,36,0,0,6434,6433, - 1,0,0,0,6434,6435,1,0,0,0,6435,6436,1,0,0,0,6436,6441,3,812,406, - 0,6437,6438,5,2,0,0,6438,6439,3,778,389,0,6439,6440,5,3,0,0,6440, - 6442,1,0,0,0,6441,6437,1,0,0,0,6441,6442,1,0,0,0,6442,611,1,0,0, - 0,6443,6456,3,610,305,0,6444,6446,5,36,0,0,6445,6447,3,812,406,0, - 6446,6445,1,0,0,0,6446,6447,1,0,0,0,6447,6450,1,0,0,0,6448,6450, - 3,812,406,0,6449,6444,1,0,0,0,6449,6448,1,0,0,0,6450,6451,1,0,0, - 0,6451,6452,5,2,0,0,6452,6453,3,636,318,0,6453,6454,5,3,0,0,6454, - 6456,1,0,0,0,6455,6443,1,0,0,0,6455,6449,1,0,0,0,6456,613,1,0,0, - 0,6457,6459,7,87,0,0,6458,6460,5,123,0,0,6459,6458,1,0,0,0,6459, - 6460,1,0,0,0,6460,615,1,0,0,0,6461,6462,5,100,0,0,6462,6466,3,138, - 69,0,6463,6464,5,80,0,0,6464,6466,3,668,334,0,6465,6461,1,0,0,0, - 6465,6463,1,0,0,0,6466,617,1,0,0,0,6467,6483,3,316,158,0,6468,6474, - 5,81,0,0,6469,6475,3,768,384,0,6470,6471,5,2,0,0,6471,6472,3,768, - 384,0,6472,6473,5,3,0,0,6473,6475,1,0,0,0,6474,6469,1,0,0,0,6474, - 6470,1,0,0,0,6475,6483,1,0,0,0,6476,6477,5,68,0,0,6477,6480,5,323, - 0,0,6478,6481,3,784,392,0,6479,6481,5,111,0,0,6480,6478,1,0,0,0, - 6480,6479,1,0,0,0,6481,6483,1,0,0,0,6482,6467,1,0,0,0,6482,6468, - 1,0,0,0,6482,6476,1,0,0,0,6483,619,1,0,0,0,6484,6485,5,92,0,0,6485, - 6487,3,316,158,0,6486,6488,3,138,69,0,6487,6486,1,0,0,0,6487,6488, - 1,0,0,0,6488,6490,1,0,0,0,6489,6491,3,632,316,0,6490,6489,1,0,0, - 0,6490,6491,1,0,0,0,6491,6509,1,0,0,0,6492,6493,5,92,0,0,6493,6499, - 5,81,0,0,6494,6500,3,768,384,0,6495,6496,5,2,0,0,6496,6497,3,768, - 384,0,6497,6498,5,3,0,0,6498,6500,1,0,0,0,6499,6494,1,0,0,0,6499, - 6495,1,0,0,0,6500,6509,1,0,0,0,6501,6502,5,350,0,0,6502,6503,5,68, - 0,0,6503,6506,5,323,0,0,6504,6507,3,784,392,0,6505,6507,5,111,0, - 0,6506,6504,1,0,0,0,6506,6505,1,0,0,0,6507,6509,1,0,0,0,6508,6484, - 1,0,0,0,6508,6492,1,0,0,0,6508,6501,1,0,0,0,6509,621,1,0,0,0,6510, - 6515,3,618,309,0,6511,6512,5,6,0,0,6512,6514,3,618,309,0,6513,6511, - 1,0,0,0,6514,6517,1,0,0,0,6515,6513,1,0,0,0,6515,6516,1,0,0,0,6516, - 623,1,0,0,0,6517,6515,1,0,0,0,6518,6523,3,618,309,0,6519,6521,5, - 36,0,0,6520,6519,1,0,0,0,6520,6521,1,0,0,0,6521,6522,1,0,0,0,6522, - 6524,3,812,406,0,6523,6520,1,0,0,0,6523,6524,1,0,0,0,6524,625,1, - 0,0,0,6525,6526,5,472,0,0,6526,6527,3,800,400,0,6527,6533,3,528, - 264,0,6528,6529,5,310,0,0,6529,6530,5,2,0,0,6530,6531,3,668,334, - 0,6531,6532,5,3,0,0,6532,6534,1,0,0,0,6533,6528,1,0,0,0,6533,6534, - 1,0,0,0,6534,627,1,0,0,0,6535,6550,3,682,341,0,6536,6537,5,320,0, - 0,6537,6538,5,64,0,0,6538,6539,5,2,0,0,6539,6544,3,630,315,0,6540, - 6541,5,6,0,0,6541,6543,3,630,315,0,6542,6540,1,0,0,0,6543,6546,1, - 0,0,0,6544,6542,1,0,0,0,6544,6545,1,0,0,0,6545,6547,1,0,0,0,6546, - 6544,1,0,0,0,6547,6548,5,3,0,0,6548,6550,1,0,0,0,6549,6535,1,0,0, - 0,6549,6536,1,0,0,0,6550,6553,1,0,0,0,6551,6552,5,105,0,0,6552,6554, - 5,473,0,0,6553,6551,1,0,0,0,6553,6554,1,0,0,0,6554,629,1,0,0,0,6555, - 6561,3,682,341,0,6556,6557,5,36,0,0,6557,6558,5,2,0,0,6558,6559, - 3,636,318,0,6559,6560,5,3,0,0,6560,6562,1,0,0,0,6561,6556,1,0,0, - 0,6561,6562,1,0,0,0,6562,631,1,0,0,0,6563,6564,5,103,0,0,6564,6565, - 3,728,364,0,6565,633,1,0,0,0,6566,6571,5,103,0,0,6567,6568,5,434, - 0,0,6568,6569,5,275,0,0,6569,6572,3,812,406,0,6570,6572,3,668,334, - 0,6571,6567,1,0,0,0,6571,6570,1,0,0,0,6572,635,1,0,0,0,6573,6578, - 3,638,319,0,6574,6575,5,6,0,0,6575,6577,3,638,319,0,6576,6574,1, - 0,0,0,6577,6580,1,0,0,0,6578,6576,1,0,0,0,6578,6579,1,0,0,0,6579, - 637,1,0,0,0,6580,6578,1,0,0,0,6581,6582,3,812,406,0,6582,6584,3, - 646,323,0,6583,6585,3,90,45,0,6584,6583,1,0,0,0,6584,6585,1,0,0, - 0,6585,639,1,0,0,0,6586,6587,5,474,0,0,6587,6601,5,2,0,0,6588,6589, - 5,476,0,0,6589,6590,5,2,0,0,6590,6595,3,644,322,0,6591,6592,5,6, - 0,0,6592,6594,3,644,322,0,6593,6591,1,0,0,0,6594,6597,1,0,0,0,6595, - 6593,1,0,0,0,6595,6596,1,0,0,0,6596,6598,1,0,0,0,6597,6595,1,0,0, - 0,6598,6599,5,3,0,0,6599,6600,5,6,0,0,6600,6602,1,0,0,0,6601,6588, - 1,0,0,0,6601,6602,1,0,0,0,6602,6603,1,0,0,0,6603,6604,3,676,338, - 0,6604,6605,3,692,346,0,6605,6606,5,475,0,0,6606,6611,3,642,321, - 0,6607,6608,5,6,0,0,6608,6610,3,642,321,0,6609,6607,1,0,0,0,6610, - 6613,1,0,0,0,6611,6609,1,0,0,0,6611,6612,1,0,0,0,6612,6614,1,0,0, - 0,6613,6611,1,0,0,0,6614,6615,5,3,0,0,6615,641,1,0,0,0,6616,6635, - 3,812,406,0,6617,6631,3,646,323,0,6618,6621,5,53,0,0,6619,6621,3, - 820,410,0,6620,6618,1,0,0,0,6620,6619,1,0,0,0,6621,6622,1,0,0,0, - 6622,6628,3,668,334,0,6623,6625,5,77,0,0,6624,6623,1,0,0,0,6624, - 6625,1,0,0,0,6625,6626,1,0,0,0,6626,6628,5,78,0,0,6627,6620,1,0, - 0,0,6627,6624,1,0,0,0,6628,6629,1,0,0,0,6629,6627,1,0,0,0,6629,6630, - 1,0,0,0,6630,6632,1,0,0,0,6631,6627,1,0,0,0,6631,6632,1,0,0,0,6632, - 6636,1,0,0,0,6633,6634,5,62,0,0,6634,6636,5,473,0,0,6635,6617,1, - 0,0,0,6635,6633,1,0,0,0,6636,643,1,0,0,0,6637,6638,3,676,338,0,6638, - 6639,5,36,0,0,6639,6640,3,818,409,0,6640,6644,1,0,0,0,6641,6642, - 5,53,0,0,6642,6644,3,676,338,0,6643,6637,1,0,0,0,6643,6641,1,0,0, - 0,6644,645,1,0,0,0,6645,6647,5,415,0,0,6646,6645,1,0,0,0,6646,6647, - 1,0,0,0,6647,6648,1,0,0,0,6648,6665,3,648,324,0,6649,6651,5,4,0, - 0,6650,6652,5,574,0,0,6651,6650,1,0,0,0,6651,6652,1,0,0,0,6652,6653, - 1,0,0,0,6653,6655,5,5,0,0,6654,6649,1,0,0,0,6655,6658,1,0,0,0,6656, - 6654,1,0,0,0,6656,6657,1,0,0,0,6657,6666,1,0,0,0,6658,6656,1,0,0, - 0,6659,6663,5,35,0,0,6660,6661,5,4,0,0,6661,6662,5,574,0,0,6662, - 6664,5,5,0,0,6663,6660,1,0,0,0,6663,6664,1,0,0,0,6664,6666,1,0,0, - 0,6665,6656,1,0,0,0,6665,6659,1,0,0,0,6666,6672,1,0,0,0,6667,6668, - 3,774,387,0,6668,6669,5,27,0,0,6669,6670,7,88,0,0,6670,6672,1,0, - 0,0,6671,6646,1,0,0,0,6671,6667,1,0,0,0,6672,647,1,0,0,0,6673,6675, - 3,814,407,0,6674,6676,3,312,156,0,6675,6674,1,0,0,0,6675,6676,1, - 0,0,0,6676,6678,1,0,0,0,6677,6679,3,528,264,0,6678,6677,1,0,0,0, - 6678,6679,1,0,0,0,6679,6689,1,0,0,0,6680,6689,3,650,325,0,6681,6686, - 5,403,0,0,6682,6684,3,662,331,0,6683,6682,1,0,0,0,6683,6684,1,0, - 0,0,6684,6687,1,0,0,0,6685,6687,3,654,327,0,6686,6683,1,0,0,0,6686, - 6685,1,0,0,0,6687,6689,1,0,0,0,6688,6673,1,0,0,0,6688,6680,1,0,0, - 0,6688,6681,1,0,0,0,6689,649,1,0,0,0,6690,6695,3,652,326,0,6691, - 6695,3,656,328,0,6692,6695,3,658,329,0,6693,6695,3,660,330,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,651,1,0,0,0,6696,6713,5,401,0,0,6697,6713,5,402,0,0,6698, - 6713,5,416,0,0,6699,6713,5,388,0,0,6700,6713,5,413,0,0,6701,6703, - 5,398,0,0,6702,6704,3,654,327,0,6703,6702,1,0,0,0,6703,6704,1,0, - 0,0,6704,6713,1,0,0,0,6705,6706,5,190,0,0,6706,6713,5,412,0,0,6707, - 6709,7,89,0,0,6708,6710,3,528,264,0,6709,6708,1,0,0,0,6709,6710, - 1,0,0,0,6710,6713,1,0,0,0,6711,6713,5,390,0,0,6712,6696,1,0,0,0, - 6712,6697,1,0,0,0,6712,6698,1,0,0,0,6712,6699,1,0,0,0,6712,6700, - 1,0,0,0,6712,6701,1,0,0,0,6712,6705,1,0,0,0,6712,6707,1,0,0,0,6712, - 6711,1,0,0,0,6713,653,1,0,0,0,6714,6715,5,2,0,0,6715,6716,5,574, - 0,0,6716,6717,5,3,0,0,6717,655,1,0,0,0,6718,6720,5,389,0,0,6719, - 6721,5,374,0,0,6720,6719,1,0,0,0,6720,6721,1,0,0,0,6721,6723,1,0, - 0,0,6722,6724,3,528,264,0,6723,6722,1,0,0,0,6723,6724,1,0,0,0,6724, - 657,1,0,0,0,6725,6727,7,90,0,0,6726,6728,5,374,0,0,6727,6726,1,0, - 0,0,6727,6728,1,0,0,0,6728,6736,1,0,0,0,6729,6736,5,423,0,0,6730, - 6731,5,405,0,0,6731,6733,7,91,0,0,6732,6734,5,374,0,0,6733,6732, - 1,0,0,0,6733,6734,1,0,0,0,6734,6736,1,0,0,0,6735,6725,1,0,0,0,6735, - 6729,1,0,0,0,6735,6730,1,0,0,0,6736,6738,1,0,0,0,6737,6739,3,654, - 327,0,6738,6737,1,0,0,0,6738,6739,1,0,0,0,6739,659,1,0,0,0,6740, - 6742,7,92,0,0,6741,6743,3,654,327,0,6742,6741,1,0,0,0,6742,6743, - 1,0,0,0,6743,6747,1,0,0,0,6744,6745,7,27,0,0,6745,6746,5,418,0,0, - 6746,6748,5,386,0,0,6747,6744,1,0,0,0,6747,6748,1,0,0,0,6748,661, - 1,0,0,0,6749,6779,5,264,0,0,6750,6779,3,664,332,0,6751,6754,5,384, - 0,0,6752,6753,5,94,0,0,6753,6755,5,264,0,0,6754,6752,1,0,0,0,6754, - 6755,1,0,0,0,6755,6779,1,0,0,0,6756,6763,5,176,0,0,6757,6761,5,94, - 0,0,6758,6762,5,218,0,0,6759,6762,5,261,0,0,6760,6762,3,664,332, - 0,6761,6758,1,0,0,0,6761,6759,1,0,0,0,6761,6760,1,0,0,0,6762,6764, - 1,0,0,0,6763,6757,1,0,0,0,6763,6764,1,0,0,0,6764,6779,1,0,0,0,6765, - 6771,5,218,0,0,6766,6769,5,94,0,0,6767,6770,5,261,0,0,6768,6770, - 3,664,332,0,6769,6767,1,0,0,0,6769,6768,1,0,0,0,6770,6772,1,0,0, - 0,6771,6766,1,0,0,0,6771,6772,1,0,0,0,6772,6779,1,0,0,0,6773,6776, - 5,261,0,0,6774,6775,5,94,0,0,6775,6777,3,664,332,0,6776,6774,1,0, - 0,0,6776,6777,1,0,0,0,6777,6779,1,0,0,0,6778,6749,1,0,0,0,6778,6750, - 1,0,0,0,6778,6751,1,0,0,0,6778,6756,1,0,0,0,6778,6765,1,0,0,0,6778, - 6773,1,0,0,0,6779,663,1,0,0,0,6780,6782,5,326,0,0,6781,6783,3,654, - 327,0,6782,6781,1,0,0,0,6782,6783,1,0,0,0,6783,665,1,0,0,0,6784, - 6785,7,93,0,0,6785,667,1,0,0,0,6786,6787,3,670,335,0,6787,669,1, - 0,0,0,6788,6789,6,335,-1,0,6789,6791,3,674,337,0,6790,6792,3,672, - 336,0,6791,6790,1,0,0,0,6791,6792,1,0,0,0,6792,6796,1,0,0,0,6793, - 6794,5,77,0,0,6794,6796,3,670,335,3,6795,6788,1,0,0,0,6795,6793, - 1,0,0,0,6796,6805,1,0,0,0,6797,6798,10,2,0,0,6798,6799,5,33,0,0, - 6799,6804,3,670,335,3,6800,6801,10,1,0,0,6801,6802,5,82,0,0,6802, - 6804,3,670,335,2,6803,6797,1,0,0,0,6803,6800,1,0,0,0,6804,6807,1, - 0,0,0,6805,6803,1,0,0,0,6805,6806,1,0,0,0,6806,671,1,0,0,0,6807, - 6805,1,0,0,0,6808,6809,3,666,333,0,6809,6810,3,674,337,0,6810,6880, - 1,0,0,0,6811,6812,3,666,333,0,6812,6813,3,722,361,0,6813,6819,3, - 712,356,0,6814,6820,3,556,278,0,6815,6816,5,2,0,0,6816,6817,3,668, - 334,0,6817,6818,5,3,0,0,6818,6820,1,0,0,0,6819,6814,1,0,0,0,6819, - 6815,1,0,0,0,6820,6880,1,0,0,0,6821,6823,5,77,0,0,6822,6821,1,0, - 0,0,6822,6823,1,0,0,0,6823,6824,1,0,0,0,6824,6825,5,387,0,0,6825, - 6826,3,674,337,0,6826,6827,5,33,0,0,6827,6828,3,674,337,0,6828,6880, - 1,0,0,0,6829,6831,5,77,0,0,6830,6829,1,0,0,0,6830,6831,1,0,0,0,6831, - 6832,1,0,0,0,6832,6833,5,68,0,0,6833,6834,5,2,0,0,6834,6839,3,668, - 334,0,6835,6836,5,6,0,0,6836,6838,3,668,334,0,6837,6835,1,0,0,0, - 6838,6841,1,0,0,0,6839,6837,1,0,0,0,6839,6840,1,0,0,0,6840,6842, - 1,0,0,0,6841,6839,1,0,0,0,6842,6843,5,3,0,0,6843,6880,1,0,0,0,6844, - 6846,5,77,0,0,6845,6844,1,0,0,0,6845,6846,1,0,0,0,6846,6847,1,0, - 0,0,6847,6848,5,68,0,0,6848,6880,3,556,278,0,6849,6851,5,77,0,0, - 6850,6849,1,0,0,0,6850,6851,1,0,0,0,6851,6860,1,0,0,0,6852,6861, - 5,120,0,0,6853,6861,5,114,0,0,6854,6855,5,127,0,0,6855,6861,5,94, - 0,0,6856,6858,5,387,0,0,6857,6859,5,91,0,0,6858,6857,1,0,0,0,6858, - 6859,1,0,0,0,6859,6861,1,0,0,0,6860,6852,1,0,0,0,6860,6853,1,0,0, - 0,6860,6854,1,0,0,0,6860,6856,1,0,0,0,6861,6862,1,0,0,0,6862,6865, - 3,674,337,0,6863,6864,5,197,0,0,6864,6866,3,674,337,0,6865,6863, - 1,0,0,0,6865,6866,1,0,0,0,6866,6880,1,0,0,0,6867,6869,5,116,0,0, - 6868,6870,5,77,0,0,6869,6868,1,0,0,0,6869,6870,1,0,0,0,6870,6871, - 1,0,0,0,6871,6880,5,78,0,0,6872,6874,5,116,0,0,6873,6875,5,77,0, - 0,6874,6873,1,0,0,0,6874,6875,1,0,0,0,6875,6876,1,0,0,0,6876,6877, - 5,56,0,0,6877,6878,5,64,0,0,6878,6880,3,674,337,0,6879,6808,1,0, - 0,0,6879,6811,1,0,0,0,6879,6822,1,0,0,0,6879,6830,1,0,0,0,6879,6845, - 1,0,0,0,6879,6850,1,0,0,0,6879,6867,1,0,0,0,6879,6872,1,0,0,0,6880, - 673,1,0,0,0,6881,6882,6,337,-1,0,6882,6886,3,676,338,0,6883,6884, - 7,30,0,0,6884,6886,3,674,337,4,6885,6881,1,0,0,0,6885,6883,1,0,0, - 0,6886,6903,1,0,0,0,6887,6888,10,3,0,0,6888,6889,7,94,0,0,6889,6902, - 3,674,337,4,6890,6891,10,2,0,0,6891,6892,7,30,0,0,6892,6902,3,674, - 337,3,6893,6894,10,1,0,0,6894,6895,5,15,0,0,6895,6902,3,674,337, - 2,6896,6897,10,5,0,0,6897,6898,5,142,0,0,6898,6899,5,418,0,0,6899, - 6900,5,386,0,0,6900,6902,3,668,334,0,6901,6887,1,0,0,0,6901,6890, - 1,0,0,0,6901,6893,1,0,0,0,6901,6896,1,0,0,0,6902,6905,1,0,0,0,6903, - 6901,1,0,0,0,6903,6904,1,0,0,0,6904,675,1,0,0,0,6905,6903,1,0,0, - 0,6906,6907,6,338,-1,0,6907,6908,7,95,0,0,6908,6995,3,556,278,0, - 6909,6912,5,35,0,0,6910,6913,3,556,278,0,6911,6913,3,734,367,0,6912, - 6910,1,0,0,0,6912,6911,1,0,0,0,6913,6995,1,0,0,0,6914,6915,5,28, - 0,0,6915,6995,3,748,374,0,6916,6917,5,470,0,0,6917,6995,3,528,264, - 0,6918,6995,5,574,0,0,6919,6995,5,576,0,0,6920,6995,5,566,0,0,6921, - 6995,5,570,0,0,6922,6932,3,800,400,0,6923,6933,3,802,401,0,6924, - 6925,5,2,0,0,6925,6927,3,730,365,0,6926,6928,3,580,290,0,6927,6926, - 1,0,0,0,6927,6928,1,0,0,0,6928,6929,1,0,0,0,6929,6930,5,3,0,0,6930, - 6931,3,802,401,0,6931,6933,1,0,0,0,6932,6923,1,0,0,0,6932,6924,1, - 0,0,0,6933,6995,1,0,0,0,6934,6936,3,650,325,0,6935,6934,1,0,0,0, - 6935,6936,1,0,0,0,6936,6937,1,0,0,0,6937,6995,3,802,401,0,6938,6946, - 5,403,0,0,6939,6941,3,802,401,0,6940,6942,3,662,331,0,6941,6940, - 1,0,0,0,6941,6942,1,0,0,0,6942,6947,1,0,0,0,6943,6944,3,654,327, - 0,6944,6945,3,802,401,0,6945,6947,1,0,0,0,6946,6939,1,0,0,0,6946, - 6943,1,0,0,0,6947,6995,1,0,0,0,6948,6995,5,96,0,0,6949,6995,5,60, - 0,0,6950,6995,5,78,0,0,6951,6995,5,577,0,0,6952,6953,5,2,0,0,6953, - 6954,3,668,334,0,6954,6955,5,3,0,0,6955,6956,3,748,374,0,6956,6995, - 1,0,0,0,6957,6959,5,40,0,0,6958,6960,3,668,334,0,6959,6958,1,0,0, - 0,6959,6960,1,0,0,0,6960,6962,1,0,0,0,6961,6963,3,742,371,0,6962, - 6961,1,0,0,0,6963,6964,1,0,0,0,6964,6962,1,0,0,0,6964,6965,1,0,0, - 0,6965,6968,1,0,0,0,6966,6967,5,58,0,0,6967,6969,3,668,334,0,6968, - 6966,1,0,0,0,6968,6969,1,0,0,0,6969,6970,1,0,0,0,6970,6971,5,454, - 0,0,6971,6995,1,0,0,0,6972,6995,3,680,340,0,6973,6975,3,556,278, - 0,6974,6976,3,746,373,0,6975,6974,1,0,0,0,6975,6976,1,0,0,0,6976, - 6995,1,0,0,0,6977,6995,3,710,355,0,6978,6979,5,2,0,0,6979,6980,3, - 668,334,0,6980,6981,5,6,0,0,6981,6982,3,724,362,0,6982,6983,5,3, - 0,0,6983,6995,1,0,0,0,6984,6985,3,708,354,0,6985,6986,5,125,0,0, - 6986,6987,3,708,354,0,6987,6995,1,0,0,0,6988,6995,3,774,387,0,6989, - 6990,7,30,0,0,6990,6995,3,676,338,5,6991,6992,3,718,359,0,6992,6993, - 3,676,338,2,6993,6995,1,0,0,0,6994,6906,1,0,0,0,6994,6909,1,0,0, - 0,6994,6914,1,0,0,0,6994,6916,1,0,0,0,6994,6918,1,0,0,0,6994,6919, - 1,0,0,0,6994,6920,1,0,0,0,6994,6921,1,0,0,0,6994,6922,1,0,0,0,6994, - 6935,1,0,0,0,6994,6938,1,0,0,0,6994,6948,1,0,0,0,6994,6949,1,0,0, - 0,6994,6950,1,0,0,0,6994,6951,1,0,0,0,6994,6952,1,0,0,0,6994,6957, - 1,0,0,0,6994,6972,1,0,0,0,6994,6973,1,0,0,0,6994,6977,1,0,0,0,6994, - 6978,1,0,0,0,6994,6984,1,0,0,0,6994,6988,1,0,0,0,6994,6989,1,0,0, - 0,6994,6991,1,0,0,0,6995,7023,1,0,0,0,6996,6997,10,3,0,0,6997,6998, - 3,716,358,0,6998,6999,3,676,338,4,6999,7022,1,0,0,0,7000,7001,10, - 6,0,0,7001,7002,5,26,0,0,7002,7022,3,646,323,0,7003,7004,10,4,0, - 0,7004,7006,3,718,359,0,7005,7007,3,676,338,0,7006,7005,1,0,0,0, - 7006,7007,1,0,0,0,7007,7022,1,0,0,0,7008,7009,10,1,0,0,7009,7011, - 5,116,0,0,7010,7012,5,77,0,0,7011,7010,1,0,0,0,7011,7012,1,0,0,0, - 7012,7019,1,0,0,0,7013,7014,5,56,0,0,7014,7015,5,64,0,0,7015,7020, - 3,676,338,0,7016,7017,5,275,0,0,7017,7020,3,522,261,0,7018,7020, - 5,188,0,0,7019,7013,1,0,0,0,7019,7016,1,0,0,0,7019,7018,1,0,0,0, - 7020,7022,1,0,0,0,7021,6996,1,0,0,0,7021,7000,1,0,0,0,7021,7003, - 1,0,0,0,7021,7008,1,0,0,0,7022,7025,1,0,0,0,7023,7021,1,0,0,0,7023, - 7024,1,0,0,0,7024,677,1,0,0,0,7025,7023,1,0,0,0,7026,7027,3,800, - 400,0,7027,7048,5,2,0,0,7028,7032,3,730,365,0,7029,7030,5,6,0,0, - 7030,7031,5,101,0,0,7031,7033,3,732,366,0,7032,7029,1,0,0,0,7032, - 7033,1,0,0,0,7033,7035,1,0,0,0,7034,7036,3,580,290,0,7035,7034,1, - 0,0,0,7035,7036,1,0,0,0,7036,7049,1,0,0,0,7037,7038,5,101,0,0,7038, - 7040,3,732,366,0,7039,7041,3,580,290,0,7040,7039,1,0,0,0,7040,7041, - 1,0,0,0,7041,7049,1,0,0,0,7042,7043,7,81,0,0,7043,7045,3,730,365, - 0,7044,7046,3,580,290,0,7045,7044,1,0,0,0,7045,7046,1,0,0,0,7046, - 7049,1,0,0,0,7047,7049,5,9,0,0,7048,7028,1,0,0,0,7048,7037,1,0,0, - 0,7048,7042,1,0,0,0,7048,7047,1,0,0,0,7048,7049,1,0,0,0,7049,7050, - 1,0,0,0,7050,7051,5,3,0,0,7051,679,1,0,0,0,7052,7059,3,678,339,0, - 7053,7054,5,479,0,0,7054,7055,5,66,0,0,7055,7056,5,2,0,0,7056,7057, - 3,580,290,0,7057,7058,5,3,0,0,7058,7060,1,0,0,0,7059,7053,1,0,0, - 0,7059,7060,1,0,0,0,7060,7067,1,0,0,0,7061,7062,5,480,0,0,7062,7063, - 5,2,0,0,7063,7064,5,103,0,0,7064,7065,3,668,334,0,7065,7066,5,3, - 0,0,7066,7068,1,0,0,0,7067,7061,1,0,0,0,7067,7068,1,0,0,0,7068,7074, - 1,0,0,0,7069,7072,5,124,0,0,7070,7073,3,702,351,0,7071,7073,3,812, - 406,0,7072,7070,1,0,0,0,7072,7071,1,0,0,0,7073,7075,1,0,0,0,7074, - 7069,1,0,0,0,7074,7075,1,0,0,0,7075,7078,1,0,0,0,7076,7078,3,684, - 342,0,7077,7052,1,0,0,0,7077,7076,1,0,0,0,7078,681,1,0,0,0,7079, - 7082,3,678,339,0,7080,7082,3,684,342,0,7081,7079,1,0,0,0,7081,7080, - 1,0,0,0,7082,683,1,0,0,0,7083,7084,5,108,0,0,7084,7085,5,62,0,0, - 7085,7086,5,2,0,0,7086,7087,3,668,334,0,7087,7088,5,3,0,0,7088,7258, - 1,0,0,0,7089,7258,5,48,0,0,7090,7092,7,96,0,0,7091,7093,3,654,327, - 0,7092,7091,1,0,0,0,7092,7093,1,0,0,0,7093,7258,1,0,0,0,7094,7258, - 5,49,0,0,7095,7258,5,52,0,0,7096,7258,5,89,0,0,7097,7258,5,99,0, - 0,7098,7258,5,47,0,0,7099,7258,5,111,0,0,7100,7101,7,97,0,0,7101, - 7102,5,2,0,0,7102,7103,3,668,334,0,7103,7104,5,36,0,0,7104,7105, - 3,646,323,0,7105,7106,5,3,0,0,7106,7258,1,0,0,0,7107,7108,5,397, - 0,0,7108,7113,5,2,0,0,7109,7110,3,736,368,0,7110,7111,5,64,0,0,7111, - 7112,3,668,334,0,7112,7114,1,0,0,0,7113,7109,1,0,0,0,7113,7114,1, - 0,0,0,7114,7115,1,0,0,0,7115,7258,5,3,0,0,7116,7117,5,489,0,0,7117, - 7118,5,2,0,0,7118,7121,3,668,334,0,7119,7120,5,6,0,0,7120,7122,3, - 738,369,0,7121,7119,1,0,0,0,7121,7122,1,0,0,0,7122,7123,1,0,0,0, - 7123,7124,5,3,0,0,7124,7258,1,0,0,0,7125,7126,5,410,0,0,7126,7127, - 5,2,0,0,7127,7128,3,668,334,0,7128,7129,5,84,0,0,7129,7130,3,668, - 334,0,7130,7131,5,64,0,0,7131,7134,3,668,334,0,7132,7133,5,62,0, - 0,7133,7135,3,668,334,0,7134,7132,1,0,0,0,7134,7135,1,0,0,0,7135, - 7136,1,0,0,0,7136,7137,5,3,0,0,7137,7258,1,0,0,0,7138,7139,5,411, - 0,0,7139,7144,5,2,0,0,7140,7141,3,676,338,0,7141,7142,5,68,0,0,7142, - 7143,3,676,338,0,7143,7145,1,0,0,0,7144,7140,1,0,0,0,7144,7145,1, - 0,0,0,7145,7146,1,0,0,0,7146,7258,5,3,0,0,7147,7148,5,417,0,0,7148, - 7150,5,2,0,0,7149,7151,3,740,370,0,7150,7149,1,0,0,0,7150,7151,1, - 0,0,0,7151,7152,1,0,0,0,7152,7258,5,3,0,0,7153,7154,5,421,0,0,7154, - 7156,5,2,0,0,7155,7157,7,98,0,0,7156,7155,1,0,0,0,7156,7157,1,0, - 0,0,7157,7162,1,0,0,0,7158,7160,3,668,334,0,7159,7158,1,0,0,0,7159, - 7160,1,0,0,0,7160,7161,1,0,0,0,7161,7163,5,64,0,0,7162,7159,1,0, - 0,0,7162,7163,1,0,0,0,7163,7164,1,0,0,0,7164,7165,3,724,362,0,7165, - 7166,1,0,0,0,7166,7167,5,3,0,0,7167,7258,1,0,0,0,7168,7169,5,408, - 0,0,7169,7170,5,2,0,0,7170,7171,3,668,334,0,7171,7172,5,6,0,0,7172, - 7173,3,668,334,0,7173,7174,5,3,0,0,7174,7258,1,0,0,0,7175,7176,7, - 99,0,0,7176,7258,3,528,264,0,7177,7178,5,426,0,0,7178,7179,5,2,0, - 0,7179,7180,5,266,0,0,7180,7190,3,818,409,0,7181,7188,5,6,0,0,7182, - 7183,5,424,0,0,7183,7184,5,2,0,0,7184,7185,3,686,343,0,7185,7186, - 5,3,0,0,7186,7189,1,0,0,0,7187,7189,3,724,362,0,7188,7182,1,0,0, - 0,7188,7187,1,0,0,0,7189,7191,1,0,0,0,7190,7181,1,0,0,0,7190,7191, - 1,0,0,0,7191,7192,1,0,0,0,7192,7193,5,3,0,0,7193,7258,1,0,0,0,7194, - 7195,5,427,0,0,7195,7196,5,2,0,0,7196,7197,3,676,338,0,7197,7198, - 3,692,346,0,7198,7199,5,3,0,0,7199,7258,1,0,0,0,7200,7201,5,428, - 0,0,7201,7202,5,2,0,0,7202,7203,3,686,343,0,7203,7204,5,3,0,0,7204, - 7258,1,0,0,0,7205,7206,5,429,0,0,7206,7207,5,2,0,0,7207,7208,3,690, - 345,0,7208,7211,3,668,334,0,7209,7210,7,100,0,0,7210,7212,5,378, - 0,0,7211,7209,1,0,0,0,7211,7212,1,0,0,0,7212,7213,1,0,0,0,7213,7214, - 5,3,0,0,7214,7258,1,0,0,0,7215,7216,5,430,0,0,7216,7217,5,2,0,0, - 7217,7218,5,266,0,0,7218,7221,3,818,409,0,7219,7220,5,6,0,0,7220, - 7222,3,668,334,0,7221,7219,1,0,0,0,7221,7222,1,0,0,0,7222,7223,1, - 0,0,0,7223,7224,5,3,0,0,7224,7258,1,0,0,0,7225,7226,5,431,0,0,7226, - 7227,5,2,0,0,7227,7228,5,383,0,0,7228,7229,3,668,334,0,7229,7230, - 5,6,0,0,7230,7234,5,375,0,0,7231,7232,5,269,0,0,7232,7235,5,450, - 0,0,7233,7235,3,668,334,0,7234,7231,1,0,0,0,7234,7233,1,0,0,0,7235, - 7245,1,0,0,0,7236,7237,5,6,0,0,7237,7243,5,339,0,0,7238,7240,5,269, - 0,0,7239,7238,1,0,0,0,7239,7240,1,0,0,0,7240,7241,1,0,0,0,7241,7244, - 5,450,0,0,7242,7244,5,385,0,0,7243,7239,1,0,0,0,7243,7242,1,0,0, - 0,7244,7246,1,0,0,0,7245,7236,1,0,0,0,7245,7246,1,0,0,0,7246,7247, - 1,0,0,0,7247,7248,5,3,0,0,7248,7258,1,0,0,0,7249,7250,5,432,0,0, - 7250,7251,5,2,0,0,7251,7252,3,690,345,0,7252,7253,3,668,334,0,7253, - 7254,5,36,0,0,7254,7255,3,648,324,0,7255,7256,5,3,0,0,7256,7258, - 1,0,0,0,7257,7083,1,0,0,0,7257,7089,1,0,0,0,7257,7090,1,0,0,0,7257, - 7094,1,0,0,0,7257,7095,1,0,0,0,7257,7096,1,0,0,0,7257,7097,1,0,0, - 0,7257,7098,1,0,0,0,7257,7099,1,0,0,0,7257,7100,1,0,0,0,7257,7107, - 1,0,0,0,7257,7116,1,0,0,0,7257,7125,1,0,0,0,7257,7138,1,0,0,0,7257, - 7147,1,0,0,0,7257,7153,1,0,0,0,7257,7168,1,0,0,0,7257,7175,1,0,0, - 0,7257,7177,1,0,0,0,7257,7194,1,0,0,0,7257,7200,1,0,0,0,7257,7205, - 1,0,0,0,7257,7215,1,0,0,0,7257,7225,1,0,0,0,7257,7249,1,0,0,0,7258, - 685,1,0,0,0,7259,7264,3,688,344,0,7260,7261,5,6,0,0,7261,7263,3, - 688,344,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,687,1,0,0,0,7266,7264,1,0,0,0,7267,7270,3, - 668,334,0,7268,7269,5,36,0,0,7269,7271,3,818,409,0,7270,7268,1,0, - 0,0,7270,7271,1,0,0,0,7271,689,1,0,0,0,7272,7273,7,101,0,0,7273, - 691,1,0,0,0,7274,7276,5,286,0,0,7275,7277,3,694,347,0,7276,7275, - 1,0,0,0,7276,7277,1,0,0,0,7277,7278,1,0,0,0,7278,7280,3,676,338, - 0,7279,7281,3,694,347,0,7280,7279,1,0,0,0,7280,7281,1,0,0,0,7281, - 693,1,0,0,0,7282,7283,5,147,0,0,7283,7284,7,102,0,0,7284,695,1,0, - 0,0,7285,7286,5,104,0,0,7286,7291,3,698,349,0,7287,7288,5,6,0,0, - 7288,7290,3,698,349,0,7289,7287,1,0,0,0,7290,7293,1,0,0,0,7291,7289, - 1,0,0,0,7291,7292,1,0,0,0,7292,697,1,0,0,0,7293,7291,1,0,0,0,7294, - 7295,3,812,406,0,7295,7296,5,36,0,0,7296,7297,3,702,351,0,7297,699, - 1,0,0,0,7298,7301,5,124,0,0,7299,7302,3,702,351,0,7300,7302,3,812, - 406,0,7301,7299,1,0,0,0,7301,7300,1,0,0,0,7302,701,1,0,0,0,7303, - 7305,5,2,0,0,7304,7306,3,812,406,0,7305,7304,1,0,0,0,7305,7306,1, - 0,0,0,7306,7310,1,0,0,0,7307,7308,5,285,0,0,7308,7309,5,147,0,0, - 7309,7311,3,724,362,0,7310,7307,1,0,0,0,7310,7311,1,0,0,0,7311,7313, - 1,0,0,0,7312,7314,3,580,290,0,7313,7312,1,0,0,0,7313,7314,1,0,0, - 0,7314,7316,1,0,0,0,7315,7317,3,704,352,0,7316,7315,1,0,0,0,7316, - 7317,1,0,0,0,7317,7318,1,0,0,0,7318,7319,5,3,0,0,7319,703,1,0,0, - 0,7320,7325,7,103,0,0,7321,7322,5,387,0,0,7322,7323,3,706,353,0, - 7323,7324,5,33,0,0,7324,7326,1,0,0,0,7325,7321,1,0,0,0,7325,7326, - 1,0,0,0,7326,7327,1,0,0,0,7327,7328,3,706,353,0,7328,7338,1,0,0, - 0,7329,7336,5,199,0,0,7330,7331,5,434,0,0,7331,7337,5,414,0,0,7332, - 7337,5,66,0,0,7333,7337,5,467,0,0,7334,7335,5,269,0,0,7335,7337, - 5,482,0,0,7336,7330,1,0,0,0,7336,7332,1,0,0,0,7336,7333,1,0,0,0, - 7336,7334,1,0,0,0,7337,7339,1,0,0,0,7338,7329,1,0,0,0,7338,7339, - 1,0,0,0,7339,705,1,0,0,0,7340,7343,5,362,0,0,7341,7343,3,668,334, - 0,7342,7340,1,0,0,0,7342,7341,1,0,0,0,7343,7344,1,0,0,0,7344,7348, - 7,104,0,0,7345,7346,5,434,0,0,7346,7348,5,414,0,0,7347,7342,1,0, - 0,0,7347,7345,1,0,0,0,7348,707,1,0,0,0,7349,7357,3,710,355,0,7350, - 7351,5,2,0,0,7351,7352,3,724,362,0,7352,7353,5,6,0,0,7353,7354,3, - 668,334,0,7354,7355,5,3,0,0,7355,7357,1,0,0,0,7356,7349,1,0,0,0, - 7356,7350,1,0,0,0,7357,709,1,0,0,0,7358,7359,5,414,0,0,7359,7361, - 5,2,0,0,7360,7362,3,724,362,0,7361,7360,1,0,0,0,7361,7362,1,0,0, - 0,7362,7363,1,0,0,0,7363,7364,5,3,0,0,7364,711,1,0,0,0,7365,7366, - 7,105,0,0,7366,713,1,0,0,0,7367,7370,5,29,0,0,7368,7370,3,716,358, - 0,7369,7367,1,0,0,0,7369,7368,1,0,0,0,7370,715,1,0,0,0,7371,7372, - 7,106,0,0,7372,717,1,0,0,0,7373,7380,5,29,0,0,7374,7375,5,278,0, - 0,7375,7376,5,2,0,0,7376,7377,3,408,204,0,7377,7378,5,3,0,0,7378, - 7380,1,0,0,0,7379,7373,1,0,0,0,7379,7374,1,0,0,0,7380,719,1,0,0, - 0,7381,7388,3,714,357,0,7382,7383,5,278,0,0,7383,7384,5,2,0,0,7384, + 900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,0,119, + 2,0,195,195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134, + 134,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,158,158, + 277,277,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,4,0, + 78,78,183,183,197,197,298,298,1,0,549,551,2,0,213,213,254,254,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,2,0,105,105,379,379,2,0,260,260,262, + 262,3,0,173,173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0, + 156,156,206,206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133, + 133,191,191,333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0, + 9,9,94,94,2,0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341, + 341,414,414,4,0,163,163,185,185,283,283,353,353,2,0,135,135,145, + 145,2,0,211,211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99, + 99,318,318,5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167, + 314,314,2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2, + 0,130,130,307,307,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,455,455,457,457,5,0,212,212,329,329,350,350,361,361, + 455,456,2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0, + 181,181,243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108, + 108,168,168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163, + 163,185,185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369, + 2,0,137,137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319, + 319,454,454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254, + 254,2,0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60, + 96,96,2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334, + 3,0,59,59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268, + 268,2,0,320,320,414,414,2,0,574,574,576,576,1,0,468,469,4,0,113, + 113,115,115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409, + 409,2,0,391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17, + 21,21,23,23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51, + 75,76,2,0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399, + 404,404,425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304, + 304,450,450,3,0,299,299,320,320,481,481,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,114, + 114,120,120,2,0,20,20,22,22,1,0,483,486,17,0,53,53,116,116,123,124, + 129,228,238,386,433,452,455,469,471,471,473,473,475,475,477,488, + 490,502,504,504,506,518,520,520,524,524,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,434,434,501,501,2,0,167,167,507,507,1,0,512,517, + 2,0,144,144,210,210,9924,0,933,1,0,0,0,2,938,1,0,0,0,4,1062,1,0, + 0,0,6,1064,1,0,0,0,8,1067,1,0,0,0,10,1117,1,0,0,0,12,1127,1,0,0, + 0,14,1129,1,0,0,0,16,1141,1,0,0,0,18,1153,1,0,0,0,20,1164,1,0,0, + 0,22,1198,1,0,0,0,24,1242,1,0,0,0,26,1244,1,0,0,0,28,1256,1,0,0, + 0,30,1263,1,0,0,0,32,1282,1,0,0,0,34,1290,1,0,0,0,36,1292,1,0,0, + 0,38,1306,1,0,0,0,40,1310,1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0, + 0,46,1357,1,0,0,0,48,1367,1,0,0,0,50,1374,1,0,0,0,52,1382,1,0,0, + 0,54,1388,1,0,0,0,56,1404,1,0,0,0,58,1408,1,0,0,0,60,1410,1,0,0, + 0,62,1422,1,0,0,0,64,1427,1,0,0,0,66,1432,1,0,0,0,68,1434,1,0,0, + 0,70,1446,1,0,0,0,72,1454,1,0,0,0,74,1456,1,0,0,0,76,1576,1,0,0, + 0,78,1578,1,0,0,0,80,1592,1,0,0,0,82,1594,1,0,0,0,84,1831,1,0,0, + 0,86,1838,1,0,0,0,88,1840,1,0,0,0,90,1842,1,0,0,0,92,1845,1,0,0, + 0,94,1856,1,0,0,0,96,1859,1,0,0,0,98,1889,1,0,0,0,100,1891,1,0,0, + 0,102,1932,1,0,0,0,104,1934,1,0,0,0,106,1988,1,0,0,0,108,2034,1, + 0,0,0,110,2055,1,0,0,0,112,2057,1,0,0,0,114,2074,1,0,0,0,116,2155, + 1,0,0,0,118,2157,1,0,0,0,120,2168,1,0,0,0,122,2191,1,0,0,0,124,2209, + 1,0,0,0,126,2211,1,0,0,0,128,2246,1,0,0,0,130,2339,1,0,0,0,132,2344, + 1,0,0,0,134,2346,1,0,0,0,136,2444,1,0,0,0,138,2446,1,0,0,0,140,2450, + 1,0,0,0,142,2461,1,0,0,0,144,2469,1,0,0,0,146,2472,1,0,0,0,148,2475, + 1,0,0,0,150,2493,1,0,0,0,152,2495,1,0,0,0,154,2499,1,0,0,0,156,2512, + 1,0,0,0,158,2514,1,0,0,0,160,2519,1,0,0,0,162,2539,1,0,0,0,164,2547, + 1,0,0,0,166,2554,1,0,0,0,168,2556,1,0,0,0,170,2565,1,0,0,0,172,2568, + 1,0,0,0,174,2572,1,0,0,0,176,2576,1,0,0,0,178,2601,1,0,0,0,180,2611, + 1,0,0,0,182,2625,1,0,0,0,184,2641,1,0,0,0,186,2647,1,0,0,0,188,2674, + 1,0,0,0,190,2684,1,0,0,0,192,2700,1,0,0,0,194,2744,1,0,0,0,196,2751, + 1,0,0,0,198,2753,1,0,0,0,200,2779,1,0,0,0,202,2790,1,0,0,0,204,2809, + 1,0,0,0,206,2820,1,0,0,0,208,2858,1,0,0,0,210,2879,1,0,0,0,212,2881, + 1,0,0,0,214,2901,1,0,0,0,216,2913,1,0,0,0,218,2925,1,0,0,0,220,2928, + 1,0,0,0,222,2931,1,0,0,0,224,2951,1,0,0,0,226,2956,1,0,0,0,228,3005, + 1,0,0,0,230,3007,1,0,0,0,232,3030,1,0,0,0,234,3046,1,0,0,0,236,3058, + 1,0,0,0,238,3085,1,0,0,0,240,3100,1,0,0,0,242,3163,1,0,0,0,244,3165, + 1,0,0,0,246,3170,1,0,0,0,248,3176,1,0,0,0,250,3263,1,0,0,0,252,3269, + 1,0,0,0,254,3271,1,0,0,0,256,3287,1,0,0,0,258,3289,1,0,0,0,260,3298, + 1,0,0,0,262,3302,1,0,0,0,264,3315,1,0,0,0,266,3327,1,0,0,0,268,3329, + 1,0,0,0,270,3351,1,0,0,0,272,3363,1,0,0,0,274,3374,1,0,0,0,276,3465, + 1,0,0,0,278,3467,1,0,0,0,280,3478,1,0,0,0,282,3489,1,0,0,0,284,3491, + 1,0,0,0,286,3517,1,0,0,0,288,3519,1,0,0,0,290,3523,1,0,0,0,292,3573, + 1,0,0,0,294,3575,1,0,0,0,296,3581,1,0,0,0,298,3606,1,0,0,0,300,3610, + 1,0,0,0,302,3824,1,0,0,0,304,3842,1,0,0,0,306,3868,1,0,0,0,308,3870, + 1,0,0,0,310,3878,1,0,0,0,312,3884,1,0,0,0,314,3888,1,0,0,0,316,3908, + 1,0,0,0,318,3914,1,0,0,0,320,3981,1,0,0,0,322,4012,1,0,0,0,324,4058, + 1,0,0,0,326,4060,1,0,0,0,328,4062,1,0,0,0,330,4073,1,0,0,0,332,4110, + 1,0,0,0,334,4112,1,0,0,0,336,4118,1,0,0,0,338,4168,1,0,0,0,340,4171, + 1,0,0,0,342,4185,1,0,0,0,344,4206,1,0,0,0,346,4230,1,0,0,0,348,4271, + 1,0,0,0,350,4273,1,0,0,0,352,4275,1,0,0,0,354,4315,1,0,0,0,356,4332, + 1,0,0,0,358,4352,1,0,0,0,360,4405,1,0,0,0,362,4408,1,0,0,0,364,4414, + 1,0,0,0,366,4422,1,0,0,0,368,4435,1,0,0,0,370,4437,1,0,0,0,372,4450, + 1,0,0,0,374,4452,1,0,0,0,376,4465,1,0,0,0,378,4475,1,0,0,0,380,4486, + 1,0,0,0,382,4497,1,0,0,0,384,4499,1,0,0,0,386,4504,1,0,0,0,388,4518, + 1,0,0,0,390,4550,1,0,0,0,392,4587,1,0,0,0,394,4589,1,0,0,0,396,4592, + 1,0,0,0,398,4595,1,0,0,0,400,4612,1,0,0,0,402,4633,1,0,0,0,404,4649, + 1,0,0,0,406,4665,1,0,0,0,408,4687,1,0,0,0,410,4692,1,0,0,0,412,4695, + 1,0,0,0,414,4703,1,0,0,0,416,4728,1,0,0,0,418,4731,1,0,0,0,420,4759, + 1,0,0,0,422,4764,1,0,0,0,424,4804,1,0,0,0,426,5016,1,0,0,0,428,5018, + 1,0,0,0,430,5106,1,0,0,0,432,5108,1,0,0,0,434,5114,1,0,0,0,436,5125, + 1,0,0,0,438,5135,1,0,0,0,440,5215,1,0,0,0,442,5217,1,0,0,0,444,5231, + 1,0,0,0,446,5253,1,0,0,0,448,5326,1,0,0,0,450,5328,1,0,0,0,452,5369, + 1,0,0,0,454,5371,1,0,0,0,456,5376,1,0,0,0,458,5379,1,0,0,0,460,5382, + 1,0,0,0,462,5432,1,0,0,0,464,5434,1,0,0,0,466,5445,1,0,0,0,468,5447, + 1,0,0,0,470,5457,1,0,0,0,472,5492,1,0,0,0,474,5495,1,0,0,0,476,5516, + 1,0,0,0,478,5526,1,0,0,0,480,5546,1,0,0,0,482,5552,1,0,0,0,484,5558, + 1,0,0,0,486,5563,1,0,0,0,488,5576,1,0,0,0,490,5603,1,0,0,0,492,5651, + 1,0,0,0,494,5653,1,0,0,0,496,5691,1,0,0,0,498,5693,1,0,0,0,500,5714, + 1,0,0,0,502,5734,1,0,0,0,504,5738,1,0,0,0,506,5753,1,0,0,0,508,5755, + 1,0,0,0,510,5759,1,0,0,0,512,5763,1,0,0,0,514,5771,1,0,0,0,516,5795, + 1,0,0,0,518,5797,1,0,0,0,520,5808,1,0,0,0,522,5816,1,0,0,0,524,5832, + 1,0,0,0,526,5857,1,0,0,0,528,5859,1,0,0,0,530,5863,1,0,0,0,532,5872, + 1,0,0,0,534,5912,1,0,0,0,536,5923,1,0,0,0,538,5931,1,0,0,0,540,5934, + 1,0,0,0,542,5938,1,0,0,0,544,5953,1,0,0,0,546,5978,1,0,0,0,548,5993, + 1,0,0,0,550,6019,1,0,0,0,552,6021,1,0,0,0,554,6044,1,0,0,0,556,6046, + 1,0,0,0,558,6054,1,0,0,0,560,6072,1,0,0,0,562,6096,1,0,0,0,564,6108, + 1,0,0,0,566,6112,1,0,0,0,568,6124,1,0,0,0,570,6144,1,0,0,0,572,6152, + 1,0,0,0,574,6166,1,0,0,0,576,6189,1,0,0,0,578,6191,1,0,0,0,580,6196, + 1,0,0,0,582,6206,1,0,0,0,584,6227,1,0,0,0,586,6229,1,0,0,0,588,6238, + 1,0,0,0,590,6249,1,0,0,0,592,6259,1,0,0,0,594,6261,1,0,0,0,596,6268, + 1,0,0,0,598,6299,1,0,0,0,600,6329,1,0,0,0,602,6331,1,0,0,0,604,6340, + 1,0,0,0,606,6343,1,0,0,0,608,6414,1,0,0,0,610,6438,1,0,0,0,612,6459, + 1,0,0,0,614,6461,1,0,0,0,616,6469,1,0,0,0,618,6486,1,0,0,0,620,6512, + 1,0,0,0,622,6514,1,0,0,0,624,6522,1,0,0,0,626,6529,1,0,0,0,628,6553, + 1,0,0,0,630,6559,1,0,0,0,632,6567,1,0,0,0,634,6570,1,0,0,0,636,6577, + 1,0,0,0,638,6585,1,0,0,0,640,6590,1,0,0,0,642,6620,1,0,0,0,644,6647, + 1,0,0,0,646,6675,1,0,0,0,648,6692,1,0,0,0,650,6698,1,0,0,0,652,6716, + 1,0,0,0,654,6718,1,0,0,0,656,6722,1,0,0,0,658,6739,1,0,0,0,660,6744, + 1,0,0,0,662,6782,1,0,0,0,664,6784,1,0,0,0,666,6788,1,0,0,0,668,6790, + 1,0,0,0,670,6799,1,0,0,0,672,6883,1,0,0,0,674,6889,1,0,0,0,676,6999, + 1,0,0,0,678,7031,1,0,0,0,680,7082,1,0,0,0,682,7086,1,0,0,0,684,7262, + 1,0,0,0,686,7264,1,0,0,0,688,7272,1,0,0,0,690,7277,1,0,0,0,692,7279, + 1,0,0,0,694,7287,1,0,0,0,696,7290,1,0,0,0,698,7299,1,0,0,0,700,7302, + 1,0,0,0,702,7306,1,0,0,0,704,7311,1,0,0,0,706,7328,1,0,0,0,708,7355, + 1,0,0,0,710,7364,1,0,0,0,712,7366,1,0,0,0,714,7373,1,0,0,0,716,7377, + 1,0,0,0,718,7379,1,0,0,0,720,7387,1,0,0,0,722,7395,1,0,0,0,724,7402, + 1,0,0,0,726,7404,1,0,0,0,728,7417,1,0,0,0,730,7421,1,0,0,0,732,7423, + 1,0,0,0,734,7438,1,0,0,0,736,7440,1,0,0,0,738,7462,1,0,0,0,740,7464, + 1,0,0,0,742,7487,1,0,0,0,744,7489,1,0,0,0,746,7511,1,0,0,0,748,7514, + 1,0,0,0,750,7521,1,0,0,0,752,7524,1,0,0,0,754,7540,1,0,0,0,756,7542, + 1,0,0,0,758,7550,1,0,0,0,760,7558,1,0,0,0,762,7566,1,0,0,0,764,7574, + 1,0,0,0,766,7576,1,0,0,0,768,7578,1,0,0,0,770,7580,1,0,0,0,772,7582, + 1,0,0,0,774,7584,1,0,0,0,776,7586,1,0,0,0,778,7590,1,0,0,0,780,7598, + 1,0,0,0,782,7606,1,0,0,0,784,7608,1,0,0,0,786,7610,1,0,0,0,788,7612, + 1,0,0,0,790,7614,1,0,0,0,792,7620,1,0,0,0,794,7626,1,0,0,0,796,7632, + 1,0,0,0,798,7634,1,0,0,0,800,7637,1,0,0,0,802,7643,1,0,0,0,804,7649, + 1,0,0,0,806,7651,1,0,0,0,808,7667,1,0,0,0,810,7670,1,0,0,0,812,7679, + 1,0,0,0,814,7681,1,0,0,0,816,7691,1,0,0,0,818,7695,1,0,0,0,820,7700, + 1,0,0,0,822,7706,1,0,0,0,824,7719,1,0,0,0,826,7721,1,0,0,0,828,7774, + 1,0,0,0,830,7776,1,0,0,0,832,7778,1,0,0,0,834,7781,1,0,0,0,836,7809, + 1,0,0,0,838,7813,1,0,0,0,840,7864,1,0,0,0,842,7867,1,0,0,0,844,7893, + 1,0,0,0,846,7895,1,0,0,0,848,7918,1,0,0,0,850,7920,1,0,0,0,852,7925, + 1,0,0,0,854,7940,1,0,0,0,856,7946,1,0,0,0,858,7957,1,0,0,0,860,7987, + 1,0,0,0,862,7994,1,0,0,0,864,8019,1,0,0,0,866,8029,1,0,0,0,868,8056, + 1,0,0,0,870,8069,1,0,0,0,872,8079,1,0,0,0,874,8098,1,0,0,0,876,8130, + 1,0,0,0,878,8134,1,0,0,0,880,8142,1,0,0,0,882,8156,1,0,0,0,884,8162, + 1,0,0,0,886,8183,1,0,0,0,888,8189,1,0,0,0,890,8228,1,0,0,0,892,8232, + 1,0,0,0,894,8258,1,0,0,0,896,8260,1,0,0,0,898,8268,1,0,0,0,900,8308, + 1,0,0,0,902,8342,1,0,0,0,904,8344,1,0,0,0,906,8355,1,0,0,0,908,8392, + 1,0,0,0,910,8396,1,0,0,0,912,8398,1,0,0,0,914,8402,1,0,0,0,916,8405, + 1,0,0,0,918,8427,1,0,0,0,920,8431,1,0,0,0,922,8433,1,0,0,0,924,8457, + 1,0,0,0,926,8461,1,0,0,0,928,8464,1,0,0,0,930,932,3,2,1,0,931,930, + 1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933,934,1,0,0,0,934,936, + 1,0,0,0,935,933,1,0,0,0,936,937,5,0,0,1,937,1,1,0,0,0,938,940,3, + 4,2,0,939,941,5,7,0,0,940,939,1,0,0,0,940,941,1,0,0,0,941,3,1,0, + 0,0,942,1063,3,272,136,0,943,1063,3,482,241,0,944,1063,3,478,239, + 0,945,1063,3,480,240,0,946,1063,3,346,173,0,947,1063,3,488,244,0, + 948,1063,3,286,143,0,949,1063,3,204,102,0,950,1063,3,206,103,0,951, + 1063,3,212,106,0,952,1063,3,226,113,0,953,1063,3,398,199,0,954,1063, + 3,28,14,0,955,1063,3,428,214,0,956,1063,3,430,215,0,957,1063,3,440, + 220,0,958,1063,3,432,216,0,959,1063,3,438,219,0,960,1063,3,238,119, + 0,961,1063,3,240,120,0,962,1063,3,192,96,0,963,1063,3,484,242,0, + 964,1063,3,76,38,0,965,1063,3,424,212,0,966,1063,3,100,50,0,967, + 1063,3,444,222,0,968,1063,3,18,9,0,969,1063,3,20,10,0,970,1063,3, + 16,8,0,971,1063,3,448,224,0,972,1063,3,178,89,0,973,1063,3,492,246, + 0,974,1063,3,490,245,0,975,1063,3,234,117,0,976,1063,3,500,250,0, + 977,1063,3,6,3,0,978,1063,3,72,36,0,979,1063,3,104,52,0,980,1063, + 3,496,248,0,981,1063,3,318,159,0,982,1063,3,70,35,0,983,1063,3,106, + 53,0,984,1063,3,248,124,0,985,1063,3,180,90,0,986,1063,3,274,137, + 0,987,1063,3,414,207,0,988,1063,3,494,247,0,989,1063,3,486,243,0, + 990,1063,3,202,101,0,991,1063,3,208,104,0,992,1063,3,222,111,0,993, + 1063,3,228,114,0,994,1063,3,358,179,0,995,1063,3,26,13,0,996,1063, + 3,186,93,0,997,1063,3,290,145,0,998,1063,3,294,147,0,999,1063,3, + 442,221,0,1000,1063,3,296,148,0,1001,1063,3,236,118,0,1002,1063, + 3,198,99,0,1003,1063,3,30,15,0,1004,1063,3,190,95,0,1005,1063,3, + 114,57,0,1006,1063,3,446,223,0,1007,1063,3,176,88,0,1008,1063,3, + 200,100,0,1009,1063,3,418,209,0,1010,1063,3,250,125,0,1011,1063, + 3,268,134,0,1012,1063,3,8,4,0,1013,1063,3,14,7,0,1014,1063,3,232, + 116,0,1015,1063,3,474,237,0,1016,1063,3,530,265,0,1017,1063,3,552, + 276,0,1018,1063,3,276,138,0,1019,1063,3,542,271,0,1020,1063,3,74, + 37,0,1021,1063,3,412,206,0,1022,1063,3,302,151,0,1023,1063,3,526, + 263,0,1024,1063,3,514,257,0,1025,1063,3,322,161,0,1026,1063,3,328, + 164,0,1027,1063,3,342,171,0,1028,1063,3,898,449,0,1029,1063,3,230, + 115,0,1030,1063,3,352,176,0,1031,1063,3,532,266,0,1032,1063,3,458, + 229,0,1033,1063,3,188,94,0,1034,1063,3,472,236,0,1035,1063,3,544, + 272,0,1036,1063,3,454,227,0,1037,1063,3,520,260,0,1038,1063,3,300, + 150,0,1039,1063,3,422,211,0,1040,1063,3,402,201,0,1041,1063,3,400, + 200,0,1042,1063,3,404,202,0,1043,1063,3,426,213,0,1044,1063,3,330, + 165,0,1045,1063,3,344,172,0,1046,1063,3,450,225,0,1047,1063,3,320, + 160,0,1048,1063,3,554,277,0,1049,1063,3,462,231,0,1050,1063,3,314, + 157,0,1051,1063,3,460,230,0,1052,1063,3,546,273,0,1053,1063,3,498, + 249,0,1054,1063,3,60,30,0,1055,1063,3,36,18,0,1056,1063,3,68,34, + 0,1057,1063,3,470,235,0,1058,1060,5,583,0,0,1059,1061,5,584,0,0, + 1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1063,1,0,0,0,1062,942,1, + 0,0,0,1062,943,1,0,0,0,1062,944,1,0,0,0,1062,945,1,0,0,0,1062,946, + 1,0,0,0,1062,947,1,0,0,0,1062,948,1,0,0,0,1062,949,1,0,0,0,1062, + 950,1,0,0,0,1062,951,1,0,0,0,1062,952,1,0,0,0,1062,953,1,0,0,0,1062, + 954,1,0,0,0,1062,955,1,0,0,0,1062,956,1,0,0,0,1062,957,1,0,0,0,1062, + 958,1,0,0,0,1062,959,1,0,0,0,1062,960,1,0,0,0,1062,961,1,0,0,0,1062, + 962,1,0,0,0,1062,963,1,0,0,0,1062,964,1,0,0,0,1062,965,1,0,0,0,1062, + 966,1,0,0,0,1062,967,1,0,0,0,1062,968,1,0,0,0,1062,969,1,0,0,0,1062, + 970,1,0,0,0,1062,971,1,0,0,0,1062,972,1,0,0,0,1062,973,1,0,0,0,1062, + 974,1,0,0,0,1062,975,1,0,0,0,1062,976,1,0,0,0,1062,977,1,0,0,0,1062, + 978,1,0,0,0,1062,979,1,0,0,0,1062,980,1,0,0,0,1062,981,1,0,0,0,1062, + 982,1,0,0,0,1062,983,1,0,0,0,1062,984,1,0,0,0,1062,985,1,0,0,0,1062, + 986,1,0,0,0,1062,987,1,0,0,0,1062,988,1,0,0,0,1062,989,1,0,0,0,1062, + 990,1,0,0,0,1062,991,1,0,0,0,1062,992,1,0,0,0,1062,993,1,0,0,0,1062, + 994,1,0,0,0,1062,995,1,0,0,0,1062,996,1,0,0,0,1062,997,1,0,0,0,1062, + 998,1,0,0,0,1062,999,1,0,0,0,1062,1000,1,0,0,0,1062,1001,1,0,0,0, + 1062,1002,1,0,0,0,1062,1003,1,0,0,0,1062,1004,1,0,0,0,1062,1005, + 1,0,0,0,1062,1006,1,0,0,0,1062,1007,1,0,0,0,1062,1008,1,0,0,0,1062, + 1009,1,0,0,0,1062,1010,1,0,0,0,1062,1011,1,0,0,0,1062,1012,1,0,0, + 0,1062,1013,1,0,0,0,1062,1014,1,0,0,0,1062,1015,1,0,0,0,1062,1016, + 1,0,0,0,1062,1017,1,0,0,0,1062,1018,1,0,0,0,1062,1019,1,0,0,0,1062, + 1020,1,0,0,0,1062,1021,1,0,0,0,1062,1022,1,0,0,0,1062,1023,1,0,0, + 0,1062,1024,1,0,0,0,1062,1025,1,0,0,0,1062,1026,1,0,0,0,1062,1027, + 1,0,0,0,1062,1028,1,0,0,0,1062,1029,1,0,0,0,1062,1030,1,0,0,0,1062, + 1031,1,0,0,0,1062,1032,1,0,0,0,1062,1033,1,0,0,0,1062,1034,1,0,0, + 0,1062,1035,1,0,0,0,1062,1036,1,0,0,0,1062,1037,1,0,0,0,1062,1038, + 1,0,0,0,1062,1039,1,0,0,0,1062,1040,1,0,0,0,1062,1041,1,0,0,0,1062, + 1042,1,0,0,0,1062,1043,1,0,0,0,1062,1044,1,0,0,0,1062,1045,1,0,0, + 0,1062,1046,1,0,0,0,1062,1047,1,0,0,0,1062,1048,1,0,0,0,1062,1049, + 1,0,0,0,1062,1050,1,0,0,0,1062,1051,1,0,0,0,1062,1052,1,0,0,0,1062, + 1053,1,0,0,0,1062,1054,1,0,0,0,1062,1055,1,0,0,0,1062,1056,1,0,0, + 0,1062,1057,1,0,0,0,1062,1058,1,0,0,0,1063,5,1,0,0,0,1064,1065,5, + 433,0,0,1065,1066,3,678,339,0,1066,7,1,0,0,0,1067,1068,5,46,0,0, + 1068,1069,5,318,0,0,1069,1071,3,812,406,0,1070,1072,5,105,0,0,1071, + 1070,1,0,0,0,1071,1072,1,0,0,0,1072,1076,1,0,0,0,1073,1075,3,12, + 6,0,1074,1073,1,0,0,0,1075,1078,1,0,0,0,1076,1074,1,0,0,0,1076,1077, + 1,0,0,0,1077,9,1,0,0,0,1078,1076,1,0,0,0,1079,1082,5,287,0,0,1080, + 1083,3,806,403,0,1081,1083,5,78,0,0,1082,1080,1,0,0,0,1082,1081, + 1,0,0,0,1083,1118,1,0,0,0,1084,1085,7,0,0,0,1085,1086,5,287,0,0, + 1086,1118,3,806,403,0,1087,1118,5,228,0,0,1088,1118,5,229,0,0,1089, + 1118,5,236,0,0,1090,1118,5,237,0,0,1091,1118,5,234,0,0,1092,1118, + 5,235,0,0,1093,1118,5,232,0,0,1094,1118,5,233,0,0,1095,1118,5,230, + 0,0,1096,1118,5,231,0,0,1097,1118,5,535,0,0,1098,1118,5,536,0,0, + 1099,1118,5,537,0,0,1100,1118,5,538,0,0,1101,1118,5,539,0,0,1102, + 1118,5,540,0,0,1103,1104,5,164,0,0,1104,1105,5,74,0,0,1105,1118, + 3,810,405,0,1106,1107,5,371,0,0,1107,1108,5,368,0,0,1108,1118,3, + 806,403,0,1109,1110,5,68,0,0,1110,1111,7,1,0,0,1111,1118,3,780,390, + 0,1112,1113,7,2,0,0,1113,1118,3,814,407,0,1114,1115,5,134,0,0,1115, + 1118,3,780,390,0,1116,1118,3,824,412,0,1117,1079,1,0,0,0,1117,1084, + 1,0,0,0,1117,1087,1,0,0,0,1117,1088,1,0,0,0,1117,1089,1,0,0,0,1117, + 1090,1,0,0,0,1117,1091,1,0,0,0,1117,1092,1,0,0,0,1117,1093,1,0,0, + 0,1117,1094,1,0,0,0,1117,1095,1,0,0,0,1117,1096,1,0,0,0,1117,1097, + 1,0,0,0,1117,1098,1,0,0,0,1117,1099,1,0,0,0,1117,1100,1,0,0,0,1117, + 1101,1,0,0,0,1117,1102,1,0,0,0,1117,1103,1,0,0,0,1117,1106,1,0,0, + 0,1117,1109,1,0,0,0,1117,1112,1,0,0,0,1117,1114,1,0,0,0,1117,1116, + 1,0,0,0,1118,11,1,0,0,0,1119,1128,3,10,5,0,1120,1121,5,348,0,0,1121, + 1128,5,574,0,0,1122,1123,7,3,0,0,1123,1128,3,814,407,0,1124,1125, + 5,68,0,0,1125,1126,7,1,0,0,1126,1128,3,814,407,0,1127,1119,1,0,0, + 0,1127,1120,1,0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1128,13, + 1,0,0,0,1129,1130,5,46,0,0,1130,1131,5,99,0,0,1131,1133,3,812,406, + 0,1132,1134,5,105,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134,1138, + 1,0,0,0,1135,1137,3,12,6,0,1136,1135,1,0,0,0,1137,1140,1,0,0,0,1138, + 1136,1,0,0,0,1138,1139,1,0,0,0,1139,15,1,0,0,0,1140,1138,1,0,0,0, + 1141,1142,5,138,0,0,1142,1143,7,2,0,0,1143,1145,3,812,406,0,1144, + 1146,5,105,0,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1150,1,0, + 0,0,1147,1149,3,10,5,0,1148,1147,1,0,0,0,1149,1152,1,0,0,0,1150, + 1148,1,0,0,0,1150,1151,1,0,0,0,1151,17,1,0,0,0,1152,1150,1,0,0,0, + 1153,1154,5,138,0,0,1154,1157,7,2,0,0,1155,1158,5,30,0,0,1156,1158, + 3,812,406,0,1157,1155,1,0,0,0,1157,1156,1,0,0,0,1158,1159,1,0,0, + 0,1159,1160,5,68,0,0,1160,1161,5,175,0,0,1161,1162,3,784,392,0,1162, + 1163,3,64,32,0,1163,19,1,0,0,0,1164,1165,5,138,0,0,1165,1166,5,442, + 0,0,1166,1168,3,790,395,0,1167,1169,3,362,181,0,1168,1167,1,0,0, + 0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171,3,22,11,0,1171,21, + 1,0,0,0,1172,1176,3,24,12,0,1173,1175,3,24,12,0,1174,1173,1,0,0, + 0,1175,1178,1,0,0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180, + 1,0,0,0,1178,1176,1,0,0,0,1179,1181,5,315,0,0,1180,1179,1,0,0,0, + 1180,1181,1,0,0,0,1181,1199,1,0,0,0,1182,1183,5,309,0,0,1183,1184, + 5,94,0,0,1184,1199,3,788,394,0,1185,1186,5,282,0,0,1186,1187,5,94, + 0,0,1187,1199,3,812,406,0,1188,1189,5,333,0,0,1189,1190,5,323,0, + 0,1190,1199,3,32,16,0,1191,1193,5,269,0,0,1192,1191,1,0,0,0,1192, + 1193,1,0,0,0,1193,1194,1,0,0,0,1194,1195,5,462,0,0,1195,1196,5,80, + 0,0,1196,1197,5,204,0,0,1197,1199,3,816,408,0,1198,1172,1,0,0,0, + 1198,1182,1,0,0,0,1198,1185,1,0,0,0,1198,1188,1,0,0,0,1198,1192, + 1,0,0,0,1199,23,1,0,0,0,1200,1243,5,222,0,0,1201,1243,5,338,0,0, + 1202,1243,5,377,0,0,1203,1205,5,77,0,0,1204,1203,1,0,0,0,1204,1205, + 1,0,0,0,1205,1206,1,0,0,0,1206,1243,5,250,0,0,1207,1209,5,205,0, + 0,1208,1207,1,0,0,0,1208,1209,1,0,0,0,1209,1210,1,0,0,0,1210,1211, + 5,327,0,0,1211,1218,5,243,0,0,1212,1214,5,205,0,0,1213,1212,1,0, + 0,0,1213,1214,1,0,0,0,1214,1215,1,0,0,0,1215,1216,5,327,0,0,1216, + 1218,5,181,0,0,1217,1208,1,0,0,0,1217,1213,1,0,0,0,1218,1243,1,0, + 0,0,1219,1220,5,460,0,0,1220,1243,7,4,0,0,1221,1222,5,170,0,0,1222, + 1243,3,822,411,0,1223,1224,5,320,0,0,1224,1243,3,816,408,0,1225, + 1226,5,333,0,0,1226,1227,3,816,408,0,1227,1230,7,5,0,0,1228,1231, + 3,816,408,0,1229,1231,5,53,0,0,1230,1228,1,0,0,0,1230,1229,1,0,0, + 0,1231,1243,1,0,0,0,1232,1233,5,333,0,0,1233,1234,3,816,408,0,1234, + 1235,5,64,0,0,1235,1236,5,434,0,0,1236,1243,1,0,0,0,1237,1240,5, + 313,0,0,1238,1241,3,816,408,0,1239,1241,5,30,0,0,1240,1238,1,0,0, + 0,1240,1239,1,0,0,0,1241,1243,1,0,0,0,1242,1200,1,0,0,0,1242,1201, + 1,0,0,0,1242,1202,1,0,0,0,1242,1204,1,0,0,0,1242,1217,1,0,0,0,1242, + 1219,1,0,0,0,1242,1221,1,0,0,0,1242,1223,1,0,0,0,1242,1225,1,0,0, + 0,1242,1232,1,0,0,0,1242,1237,1,0,0,0,1243,25,1,0,0,0,1244,1245, + 5,46,0,0,1245,1246,5,66,0,0,1246,1248,3,812,406,0,1247,1249,5,105, + 0,0,1248,1247,1,0,0,0,1248,1249,1,0,0,0,1249,1253,1,0,0,0,1250,1252, + 3,12,6,0,1251,1250,1,0,0,0,1252,1255,1,0,0,0,1253,1251,1,0,0,0,1253, + 1254,1,0,0,0,1254,27,1,0,0,0,1255,1253,1,0,0,0,1256,1257,5,138,0, + 0,1257,1258,5,66,0,0,1258,1259,3,812,406,0,1259,1260,7,6,0,0,1260, + 1261,5,99,0,0,1261,1262,3,814,407,0,1262,29,1,0,0,0,1263,1264,5, + 46,0,0,1264,1266,5,323,0,0,1265,1267,3,288,144,0,1266,1265,1,0,0, + 0,1266,1267,1,0,0,0,1267,1274,1,0,0,0,1268,1270,3,32,16,0,1269,1268, + 1,0,0,0,1269,1270,1,0,0,0,1270,1271,1,0,0,0,1271,1272,5,106,0,0, + 1272,1275,3,812,406,0,1273,1275,3,32,16,0,1274,1269,1,0,0,0,1274, + 1273,1,0,0,0,1275,1279,1,0,0,0,1276,1278,3,34,17,0,1277,1276,1,0, + 0,0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,31, + 1,0,0,0,1281,1279,1,0,0,0,1282,1283,3,310,155,0,1283,33,1,0,0,0, + 1284,1291,3,114,57,0,1285,1291,3,352,176,0,1286,1291,3,190,95,0, + 1287,1291,3,250,125,0,1288,1291,3,328,164,0,1289,1291,3,470,235, + 0,1290,1284,1,0,0,0,1290,1285,1,0,0,0,1290,1286,1,0,0,0,1290,1287, + 1,0,0,0,1290,1288,1,0,0,0,1290,1289,1,0,0,0,1291,35,1,0,0,0,1292, + 1294,5,333,0,0,1293,1295,7,7,0,0,1294,1293,1,0,0,0,1294,1295,1,0, + 0,0,1295,1296,1,0,0,0,1296,1297,3,38,19,0,1297,37,1,0,0,0,1298,1299, + 5,356,0,0,1299,1307,3,468,234,0,1300,1301,5,332,0,0,1301,1302,5, + 154,0,0,1302,1303,5,36,0,0,1303,1304,5,356,0,0,1304,1307,3,468,234, + 0,1305,1307,3,42,21,0,1306,1298,1,0,0,0,1306,1300,1,0,0,0,1306,1305, + 1,0,0,0,1307,39,1,0,0,0,1308,1311,5,30,0,0,1309,1311,3,44,22,0,1310, + 1308,1,0,0,0,1310,1309,1,0,0,0,1311,1313,1,0,0,0,1312,1314,7,5,0, + 0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1317,1,0,0,0,1315,1318, + 5,53,0,0,1316,1318,3,46,23,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0, + 1317,1318,1,0,0,0,1318,41,1,0,0,0,1319,1320,5,418,0,0,1320,1321, + 5,386,0,0,1321,1348,3,56,28,0,1322,1323,5,152,0,0,1323,1348,3,806, + 403,0,1324,1325,5,323,0,0,1325,1348,3,786,393,0,1326,1329,5,267, + 0,0,1327,1330,3,806,403,0,1328,1330,5,53,0,0,1329,1327,1,0,0,0,1329, + 1328,1,0,0,0,1329,1330,1,0,0,0,1330,1348,1,0,0,0,1331,1332,5,318, + 0,0,1332,1348,3,58,29,0,1333,1334,5,332,0,0,1334,1335,5,106,0,0, + 1335,1348,3,58,29,0,1336,1337,5,383,0,0,1337,1338,5,279,0,0,1338, + 1348,3,690,345,0,1339,1340,5,356,0,0,1340,1341,5,337,0,0,1341,1348, + 3,806,403,0,1342,1343,3,44,22,0,1343,1344,5,64,0,0,1344,1345,5,434, + 0,0,1345,1348,1,0,0,0,1346,1348,3,40,20,0,1347,1319,1,0,0,0,1347, + 1322,1,0,0,0,1347,1324,1,0,0,0,1347,1326,1,0,0,0,1347,1331,1,0,0, + 0,1347,1333,1,0,0,0,1347,1336,1,0,0,0,1347,1339,1,0,0,0,1347,1342, + 1,0,0,0,1347,1346,1,0,0,0,1348,43,1,0,0,0,1349,1354,3,816,408,0, + 1350,1351,5,11,0,0,1351,1353,3,816,408,0,1352,1350,1,0,0,0,1353, + 1356,1,0,0,0,1354,1352,1,0,0,0,1354,1355,1,0,0,0,1355,45,1,0,0,0, + 1356,1354,1,0,0,0,1357,1362,3,48,24,0,1358,1359,5,6,0,0,1359,1361, + 3,48,24,0,1360,1358,1,0,0,0,1361,1364,1,0,0,0,1362,1360,1,0,0,0, + 1362,1363,1,0,0,0,1363,47,1,0,0,0,1364,1362,1,0,0,0,1365,1368,3, + 54,27,0,1366,1368,3,196,98,0,1367,1365,1,0,0,0,1367,1366,1,0,0,0, + 1368,49,1,0,0,0,1369,1370,5,300,0,0,1370,1375,7,8,0,0,1371,1372, + 5,310,0,0,1372,1375,5,300,0,0,1373,1375,5,330,0,0,1374,1369,1,0, + 0,0,1374,1371,1,0,0,0,1374,1373,1,0,0,0,1375,51,1,0,0,0,1376,1383, + 5,96,0,0,1377,1383,5,60,0,0,1378,1383,5,80,0,0,1379,1383,3,796,398, + 0,1380,1383,3,830,415,0,1381,1383,3,806,403,0,1382,1376,1,0,0,0, + 1382,1377,1,0,0,0,1382,1378,1,0,0,0,1382,1379,1,0,0,0,1382,1380, + 1,0,0,0,1382,1381,1,0,0,0,1383,53,1,0,0,0,1384,1389,5,96,0,0,1385, + 1389,5,60,0,0,1386,1389,5,80,0,0,1387,1389,3,58,29,0,1388,1384,1, + 0,0,0,1388,1385,1,0,0,0,1388,1386,1,0,0,0,1388,1387,1,0,0,0,1389, + 55,1,0,0,0,1390,1405,3,806,403,0,1391,1405,5,53,0,0,1392,1405,3, + 824,412,0,1393,1394,5,403,0,0,1394,1396,3,806,403,0,1395,1397,3, + 662,331,0,1396,1395,1,0,0,0,1396,1397,1,0,0,0,1397,1405,1,0,0,0, + 1398,1399,5,403,0,0,1399,1400,3,654,327,0,1400,1401,3,806,403,0, + 1401,1405,1,0,0,0,1402,1405,3,196,98,0,1403,1405,5,254,0,0,1404, + 1390,1,0,0,0,1404,1391,1,0,0,0,1404,1392,1,0,0,0,1404,1393,1,0,0, + 0,1404,1398,1,0,0,0,1404,1402,1,0,0,0,1404,1403,1,0,0,0,1405,57, + 1,0,0,0,1406,1409,3,820,410,0,1407,1409,3,806,403,0,1408,1406,1, + 0,0,0,1408,1407,1,0,0,0,1409,59,1,0,0,0,1410,1411,5,313,0,0,1411, + 1412,3,62,31,0,1412,61,1,0,0,0,1413,1414,5,418,0,0,1414,1423,5,386, + 0,0,1415,1416,5,356,0,0,1416,1417,5,244,0,0,1417,1423,5,251,0,0, + 1418,1419,5,332,0,0,1419,1423,5,106,0,0,1420,1423,5,30,0,0,1421, + 1423,3,44,22,0,1422,1413,1,0,0,0,1422,1415,1,0,0,0,1422,1418,1,0, + 0,0,1422,1420,1,0,0,0,1422,1421,1,0,0,0,1423,63,1,0,0,0,1424,1425, + 5,333,0,0,1425,1428,3,38,19,0,1426,1428,3,60,30,0,1427,1424,1,0, + 0,0,1427,1426,1,0,0,0,1428,65,1,0,0,0,1429,1430,5,333,0,0,1430,1433, + 3,42,21,0,1431,1433,3,60,30,0,1432,1429,1,0,0,0,1432,1431,1,0,0, + 0,1433,67,1,0,0,0,1434,1444,5,335,0,0,1435,1445,3,44,22,0,1436,1437, + 5,418,0,0,1437,1445,5,386,0,0,1438,1439,5,356,0,0,1439,1440,5,244, + 0,0,1440,1445,5,251,0,0,1441,1442,5,332,0,0,1442,1445,5,106,0,0, + 1443,1445,5,30,0,0,1444,1435,1,0,0,0,1444,1436,1,0,0,0,1444,1438, + 1,0,0,0,1444,1441,1,0,0,0,1444,1443,1,0,0,0,1445,69,1,0,0,0,1446, + 1447,5,333,0,0,1447,1450,5,165,0,0,1448,1451,5,30,0,0,1449,1451, + 3,756,378,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451,1452,1,0,0, + 0,1452,1453,7,9,0,0,1453,71,1,0,0,0,1454,1455,5,155,0,0,1455,73, + 1,0,0,0,1456,1457,5,187,0,0,1457,1458,7,10,0,0,1458,75,1,0,0,0,1459, + 1460,5,138,0,0,1460,1462,5,92,0,0,1461,1463,3,416,208,0,1462,1461, + 1,0,0,0,1462,1463,1,0,0,0,1463,1464,1,0,0,0,1464,1467,3,618,309, + 0,1465,1468,3,78,39,0,1466,1468,3,80,40,0,1467,1465,1,0,0,0,1467, + 1466,1,0,0,0,1468,1577,1,0,0,0,1469,1470,5,138,0,0,1470,1471,5,92, + 0,0,1471,1472,5,30,0,0,1472,1473,5,68,0,0,1473,1477,3,170,85,0,1474, + 1475,5,281,0,0,1475,1476,5,147,0,0,1476,1478,3,814,407,0,1477,1474, + 1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479,1480,5,333,0,0, + 1480,1481,5,351,0,0,1481,1483,3,766,383,0,1482,1484,5,272,0,0,1483, + 1482,1,0,0,0,1483,1484,1,0,0,0,1484,1577,1,0,0,0,1485,1486,5,138, + 0,0,1486,1488,5,92,0,0,1487,1489,3,416,208,0,1488,1487,1,0,0,0,1488, + 1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,3,770,385,0,1491,1492,3, + 82,41,0,1492,1493,3,98,49,0,1493,1577,1,0,0,0,1494,1495,5,138,0, + 0,1495,1497,5,92,0,0,1496,1498,3,416,208,0,1497,1496,1,0,0,0,1497, + 1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,3,770,385,0,1500,1501,5, + 436,0,0,1501,1502,5,285,0,0,1502,1504,3,776,388,0,1503,1505,7,11, + 0,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1577,1,0,0,0,1506,1507, + 5,138,0,0,1507,1509,5,226,0,0,1508,1510,3,416,208,0,1509,1508,1, + 0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511,1514,3,776,388,0, + 1512,1515,3,78,39,0,1513,1515,3,82,41,0,1514,1512,1,0,0,0,1514,1513, + 1,0,0,0,1515,1577,1,0,0,0,1516,1517,5,138,0,0,1517,1518,5,226,0, + 0,1518,1519,5,30,0,0,1519,1520,5,68,0,0,1520,1524,3,170,85,0,1521, + 1522,5,281,0,0,1522,1523,5,147,0,0,1523,1525,3,814,407,0,1524,1521, + 1,0,0,0,1524,1525,1,0,0,0,1525,1526,1,0,0,0,1526,1527,5,333,0,0, + 1527,1529,3,170,85,0,1528,1530,5,272,0,0,1529,1528,1,0,0,0,1529, + 1530,1,0,0,0,1530,1577,1,0,0,0,1531,1532,5,138,0,0,1532,1534,5,328, + 0,0,1533,1535,3,416,208,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535, + 1536,1,0,0,0,1536,1537,3,776,388,0,1537,1538,3,78,39,0,1538,1577, + 1,0,0,0,1539,1541,5,138,0,0,1540,1542,5,259,0,0,1541,1540,1,0,0, + 0,1541,1542,1,0,0,0,1542,1543,1,0,0,0,1543,1545,5,376,0,0,1544,1546, + 3,416,208,0,1545,1544,1,0,0,0,1545,1546,1,0,0,0,1546,1547,1,0,0, + 0,1547,1548,3,774,387,0,1548,1549,3,78,39,0,1549,1577,1,0,0,0,1550, + 1551,5,138,0,0,1551,1552,5,259,0,0,1552,1553,5,376,0,0,1553,1554, + 5,30,0,0,1554,1555,5,68,0,0,1555,1559,3,170,85,0,1556,1557,5,281, + 0,0,1557,1558,5,147,0,0,1558,1560,3,814,407,0,1559,1556,1,0,0,0, + 1559,1560,1,0,0,0,1560,1561,1,0,0,0,1561,1562,5,333,0,0,1562,1563, + 5,351,0,0,1563,1565,3,766,383,0,1564,1566,5,272,0,0,1565,1564,1, + 0,0,0,1565,1566,1,0,0,0,1566,1577,1,0,0,0,1567,1568,5,138,0,0,1568, + 1569,5,63,0,0,1569,1571,5,92,0,0,1570,1572,3,416,208,0,1571,1570, + 1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0,1573,1574,3,618,309, + 0,1574,1575,3,78,39,0,1575,1577,1,0,0,0,1576,1459,1,0,0,0,1576,1469, + 1,0,0,0,1576,1485,1,0,0,0,1576,1494,1,0,0,0,1576,1506,1,0,0,0,1576, + 1516,1,0,0,0,1576,1531,1,0,0,0,1576,1539,1,0,0,0,1576,1550,1,0,0, + 0,1576,1567,1,0,0,0,1577,77,1,0,0,0,1578,1583,3,84,42,0,1579,1580, + 5,6,0,0,1580,1582,3,84,42,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,79,1,0,0,0,1585,1583,1, + 0,0,0,1586,1587,3,82,41,0,1587,1588,3,98,49,0,1588,1593,1,0,0,0, + 1589,1590,5,436,0,0,1590,1591,5,285,0,0,1591,1593,3,776,388,0,1592, + 1586,1,0,0,0,1592,1589,1,0,0,0,1593,81,1,0,0,0,1594,1595,5,435,0, + 0,1595,1596,5,285,0,0,1596,1597,3,776,388,0,1597,83,1,0,0,0,1598, + 1601,5,133,0,0,1599,1600,5,45,0,0,1600,1602,3,816,408,0,1601,1599, + 1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1832,3,136,68,0, + 1604,1605,5,138,0,0,1605,1606,5,45,0,0,1606,1610,3,816,408,0,1607, + 1609,3,266,133,0,1608,1607,1,0,0,0,1609,1612,1,0,0,0,1610,1608,1, + 0,0,0,1610,1611,1,0,0,0,1611,1832,1,0,0,0,1612,1610,1,0,0,0,1613, + 1614,5,372,0,0,1614,1615,5,45,0,0,1615,1832,3,816,408,0,1616,1617, + 5,191,0,0,1617,1619,5,45,0,0,1618,1620,3,416,208,0,1619,1618,1,0, + 0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621,1623,3,816,408,0,1622, + 1624,3,88,44,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624,1832,1,0, + 0,0,1625,1626,5,333,0,0,1626,1627,5,379,0,0,1627,1832,7,12,0,0,1628, + 1629,5,158,0,0,1629,1630,5,80,0,0,1630,1832,3,816,408,0,1631,1632, + 5,333,0,0,1632,1832,7,13,0,0,1633,1635,5,193,0,0,1634,1636,7,14, + 0,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0,1636,1637,1,0,0,0,1637,1832, + 5,357,0,0,1638,1639,5,186,0,0,1639,1643,5,357,0,0,1640,1644,5,30, + 0,0,1641,1644,5,99,0,0,1642,1644,3,816,408,0,1643,1640,1,0,0,0,1643, + 1641,1,0,0,0,1643,1642,1,0,0,0,1644,1832,1,0,0,0,1645,1646,5,193, + 0,0,1646,1647,7,14,0,0,1647,1648,5,321,0,0,1648,1832,3,816,408,0, + 1649,1650,5,186,0,0,1650,1651,5,321,0,0,1651,1832,3,816,408,0,1652, + 1654,5,269,0,0,1653,1652,1,0,0,0,1653,1654,1,0,0,0,1654,1655,1,0, + 0,0,1655,1656,5,228,0,0,1656,1832,3,776,388,0,1657,1658,5,275,0, + 0,1658,1832,3,310,155,0,1659,1660,5,77,0,0,1660,1832,5,275,0,0,1661, + 1662,5,282,0,0,1662,1663,5,94,0,0,1663,1832,3,812,406,0,1664,1665, + 5,333,0,0,1665,1666,5,351,0,0,1666,1832,3,766,383,0,1667,1668,5, + 312,0,0,1668,1673,5,219,0,0,1669,1674,5,270,0,0,1670,1674,5,113, + 0,0,1671,1674,5,53,0,0,1672,1674,3,174,87,0,1673,1669,1,0,0,0,1673, + 1670,1,0,0,0,1673,1671,1,0,0,0,1673,1672,1,0,0,0,1674,1832,1,0,0, + 0,1675,1682,5,193,0,0,1676,1682,5,186,0,0,1677,1679,5,269,0,0,1678, + 1677,1,0,0,0,1678,1679,1,0,0,0,1679,1680,1,0,0,0,1680,1682,5,209, + 0,0,1681,1675,1,0,0,0,1681,1676,1,0,0,0,1681,1678,1,0,0,0,1682,1683, + 1,0,0,0,1683,1684,5,414,0,0,1684,1685,5,251,0,0,1685,1832,5,327, + 0,0,1686,1688,5,191,0,0,1687,1689,5,44,0,0,1688,1687,1,0,0,0,1688, + 1689,1,0,0,0,1689,1691,1,0,0,0,1690,1692,3,416,208,0,1691,1690,1, + 0,0,0,1691,1692,1,0,0,0,1692,1693,1,0,0,0,1693,1695,3,796,398,0, + 1694,1696,3,88,44,0,1695,1694,1,0,0,0,1695,1696,1,0,0,0,1696,1832, + 1,0,0,0,1697,1699,5,133,0,0,1698,1700,5,44,0,0,1699,1698,1,0,0,0, + 1699,1700,1,0,0,0,1700,1702,1,0,0,0,1701,1703,3,288,144,0,1702,1701, + 1,0,0,0,1702,1703,1,0,0,0,1703,1704,1,0,0,0,1704,1832,3,126,63,0, + 1705,1707,5,138,0,0,1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708, + 1,0,0,0,1708,1709,1,0,0,0,1709,1712,3,796,398,0,1710,1713,3,86,43, + 0,1711,1713,3,216,108,0,1712,1710,1,0,0,0,1712,1711,1,0,0,0,1713, + 1832,1,0,0,0,1714,1716,5,138,0,0,1715,1717,5,44,0,0,1716,1715,1, + 0,0,0,1716,1717,1,0,0,0,1717,1718,1,0,0,0,1718,1719,3,796,398,0, + 1719,1720,7,15,0,0,1720,1721,5,77,0,0,1721,1722,5,78,0,0,1722,1832, + 1,0,0,0,1723,1725,5,138,0,0,1724,1726,5,44,0,0,1725,1724,1,0,0,0, + 1725,1726,1,0,0,0,1726,1727,1,0,0,0,1727,1728,3,796,398,0,1728,1729, + 5,191,0,0,1729,1731,5,437,0,0,1730,1732,3,416,208,0,1731,1730,1, + 0,0,0,1731,1732,1,0,0,0,1732,1832,1,0,0,0,1733,1735,5,138,0,0,1734, + 1736,5,44,0,0,1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0, + 0,0,1737,1738,3,796,398,0,1738,1739,5,333,0,0,1739,1740,5,342,0, + 0,1740,1741,3,810,405,0,1741,1832,1,0,0,0,1742,1744,5,138,0,0,1743, + 1745,5,44,0,0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1746,1,0, + 0,0,1746,1748,3,796,398,0,1747,1742,1,0,0,0,1747,1748,1,0,0,0,1748, + 1749,1,0,0,0,1749,1750,7,16,0,0,1750,1832,3,92,46,0,1751,1753,5, + 138,0,0,1752,1754,5,44,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754, + 1755,1,0,0,0,1755,1756,3,796,398,0,1756,1757,5,333,0,0,1757,1758, + 5,345,0,0,1758,1759,3,816,408,0,1759,1832,1,0,0,0,1760,1762,5,138, + 0,0,1761,1763,5,44,0,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763, + 1764,1,0,0,0,1764,1765,3,796,398,0,1765,1766,5,133,0,0,1766,1767, + 5,438,0,0,1767,1768,3,132,66,0,1768,1769,5,36,0,0,1769,1778,5,219, + 0,0,1770,1772,5,2,0,0,1771,1773,3,194,97,0,1772,1771,1,0,0,0,1773, + 1774,1,0,0,0,1774,1772,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0, + 0,1776,1777,5,3,0,0,1777,1779,1,0,0,0,1778,1770,1,0,0,0,1778,1779, + 1,0,0,0,1779,1832,1,0,0,0,1780,1782,5,138,0,0,1781,1783,5,44,0,0, + 1782,1781,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784,1798, + 3,796,398,0,1785,1790,5,314,0,0,1786,1788,5,105,0,0,1787,1786,1, + 0,0,0,1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1791,3,196,98,0,1790, + 1787,1,0,0,0,1790,1791,1,0,0,0,1791,1799,1,0,0,0,1792,1796,5,333, + 0,0,1793,1797,3,194,97,0,1794,1795,5,438,0,0,1795,1797,3,132,66, + 0,1796,1793,1,0,0,0,1796,1794,1,0,0,0,1797,1799,1,0,0,0,1798,1785, + 1,0,0,0,1798,1792,1,0,0,0,1799,1800,1,0,0,0,1800,1798,1,0,0,0,1800, + 1801,1,0,0,0,1801,1832,1,0,0,0,1802,1804,5,138,0,0,1803,1805,5,44, + 0,0,1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1807, + 3,796,398,0,1807,1808,5,191,0,0,1808,1810,5,219,0,0,1809,1811,3, + 416,208,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0,1811,1832,1,0,0,0, + 1812,1814,5,138,0,0,1813,1815,5,44,0,0,1814,1813,1,0,0,0,1814,1815, + 1,0,0,0,1815,1816,1,0,0,0,1816,1819,3,796,398,0,1817,1818,5,333, + 0,0,1818,1820,5,174,0,0,1819,1817,1,0,0,0,1819,1820,1,0,0,0,1820, + 1821,1,0,0,0,1821,1822,5,360,0,0,1822,1824,3,646,323,0,1823,1825, + 3,90,45,0,1824,1823,1,0,0,0,1824,1825,1,0,0,0,1825,1828,1,0,0,0, + 1826,1827,5,100,0,0,1827,1829,3,668,334,0,1828,1826,1,0,0,0,1828, + 1829,1,0,0,0,1829,1832,1,0,0,0,1830,1832,3,216,108,0,1831,1598,1, + 0,0,0,1831,1604,1,0,0,0,1831,1613,1,0,0,0,1831,1616,1,0,0,0,1831, + 1625,1,0,0,0,1831,1628,1,0,0,0,1831,1631,1,0,0,0,1831,1633,1,0,0, + 0,1831,1638,1,0,0,0,1831,1645,1,0,0,0,1831,1649,1,0,0,0,1831,1653, + 1,0,0,0,1831,1657,1,0,0,0,1831,1659,1,0,0,0,1831,1661,1,0,0,0,1831, + 1664,1,0,0,0,1831,1667,1,0,0,0,1831,1681,1,0,0,0,1831,1686,1,0,0, + 0,1831,1697,1,0,0,0,1831,1705,1,0,0,0,1831,1714,1,0,0,0,1831,1723, + 1,0,0,0,1831,1733,1,0,0,0,1831,1747,1,0,0,0,1831,1751,1,0,0,0,1831, + 1760,1,0,0,0,1831,1780,1,0,0,0,1831,1802,1,0,0,0,1831,1812,1,0,0, + 0,1831,1830,1,0,0,0,1832,85,1,0,0,0,1833,1834,5,333,0,0,1834,1835, + 5,53,0,0,1835,1839,3,668,334,0,1836,1837,5,191,0,0,1837,1839,5,53, + 0,0,1838,1833,1,0,0,0,1838,1836,1,0,0,0,1839,87,1,0,0,0,1840,1841, + 7,17,0,0,1841,89,1,0,0,0,1842,1843,5,43,0,0,1843,1844,3,310,155, + 0,1844,91,1,0,0,0,1845,1846,5,2,0,0,1846,1851,3,96,48,0,1847,1848, + 5,6,0,0,1848,1850,3,96,48,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0, + 1851,1849,1,0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851, + 1,0,0,0,1854,1855,5,3,0,0,1855,93,1,0,0,0,1856,1857,5,105,0,0,1857, + 1858,3,92,46,0,1858,95,1,0,0,0,1859,1864,3,822,411,0,1860,1861,5, + 10,0,0,1861,1865,3,282,141,0,1862,1863,5,11,0,0,1863,1865,3,280, + 140,0,1864,1860,1,0,0,0,1864,1862,1,0,0,0,1864,1865,1,0,0,0,1865, + 97,1,0,0,0,1866,1867,5,62,0,0,1867,1868,5,422,0,0,1868,1869,5,105, + 0,0,1869,1870,5,2,0,0,1870,1871,5,533,0,0,1871,1872,3,196,98,0,1872, + 1873,5,6,0,0,1873,1874,5,534,0,0,1874,1875,3,196,98,0,1875,1876, + 5,3,0,0,1876,1890,1,0,0,0,1877,1878,5,62,0,0,1878,1879,5,422,0,0, + 1879,1880,5,68,0,0,1880,1890,3,528,264,0,1881,1882,5,62,0,0,1882, + 1883,5,422,0,0,1883,1884,5,64,0,0,1884,1885,3,528,264,0,1885,1886, + 5,94,0,0,1886,1887,3,528,264,0,1887,1890,1,0,0,0,1888,1890,5,53, + 0,0,1889,1866,1,0,0,0,1889,1877,1,0,0,0,1889,1881,1,0,0,0,1889,1888, + 1,0,0,0,1890,99,1,0,0,0,1891,1892,5,138,0,0,1892,1893,5,360,0,0, + 1893,1894,3,310,155,0,1894,1899,3,102,51,0,1895,1896,5,6,0,0,1896, + 1898,3,102,51,0,1897,1895,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1, + 0,0,0,1899,1900,1,0,0,0,1900,101,1,0,0,0,1901,1899,1,0,0,0,1902, + 1903,5,133,0,0,1903,1904,5,143,0,0,1904,1906,3,638,319,0,1905,1907, + 3,88,44,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1933,1,0,0,0, + 1908,1909,5,191,0,0,1909,1911,5,143,0,0,1910,1912,3,416,208,0,1911, + 1910,1,0,0,0,1911,1912,1,0,0,0,1912,1913,1,0,0,0,1913,1915,3,816, + 408,0,1914,1916,3,88,44,0,1915,1914,1,0,0,0,1915,1916,1,0,0,0,1916, + 1933,1,0,0,0,1917,1918,5,138,0,0,1918,1919,5,143,0,0,1919,1922,3, + 816,408,0,1920,1921,5,333,0,0,1921,1923,5,174,0,0,1922,1920,1,0, + 0,0,1922,1923,1,0,0,0,1923,1924,1,0,0,0,1924,1925,5,360,0,0,1925, + 1927,3,646,323,0,1926,1928,3,90,45,0,1927,1926,1,0,0,0,1927,1928, + 1,0,0,0,1928,1930,1,0,0,0,1929,1931,3,88,44,0,1930,1929,1,0,0,0, + 1930,1931,1,0,0,0,1931,1933,1,0,0,0,1932,1902,1,0,0,0,1932,1908, + 1,0,0,0,1932,1917,1,0,0,0,1933,103,1,0,0,0,1934,1937,5,157,0,0,1935, + 1938,3,816,408,0,1936,1938,5,30,0,0,1937,1935,1,0,0,0,1937,1936, + 1,0,0,0,1938,105,1,0,0,0,1939,1941,5,169,0,0,1940,1942,5,107,0,0, + 1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942,1943,1,0,0,0,1943,1945, + 3,770,385,0,1944,1946,3,138,69,0,1945,1944,1,0,0,0,1945,1946,1,0, + 0,0,1946,1947,1,0,0,0,1947,1949,7,18,0,0,1948,1950,5,297,0,0,1949, + 1948,1,0,0,0,1949,1950,1,0,0,0,1950,1954,1,0,0,0,1951,1955,3,806, + 403,0,1952,1955,5,343,0,0,1953,1955,5,344,0,0,1954,1951,1,0,0,0, + 1954,1952,1,0,0,0,1954,1953,1,0,0,0,1955,1961,1,0,0,0,1956,1958, + 5,100,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958,1959,1,0,0,0, + 1959,1960,5,184,0,0,1960,1962,3,806,403,0,1961,1957,1,0,0,0,1961, + 1962,1,0,0,0,1962,1964,1,0,0,0,1963,1965,5,105,0,0,1964,1963,1,0, + 0,0,1964,1965,1,0,0,0,1965,1966,1,0,0,0,1966,1968,3,110,55,0,1967, + 1969,3,632,316,0,1968,1967,1,0,0,0,1968,1969,1,0,0,0,1969,1989,1, + 0,0,0,1970,1971,5,169,0,0,1971,1972,5,2,0,0,1972,1973,3,524,262, + 0,1973,1974,5,3,0,0,1974,1976,5,94,0,0,1975,1977,5,297,0,0,1976, + 1975,1,0,0,0,1976,1977,1,0,0,0,1977,1981,1,0,0,0,1978,1982,3,806, + 403,0,1979,1982,5,343,0,0,1980,1982,5,344,0,0,1981,1978,1,0,0,0, + 1981,1979,1,0,0,0,1981,1980,1,0,0,0,1982,1984,1,0,0,0,1983,1985, + 5,105,0,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1986,1,0,0,0, + 1986,1987,3,110,55,0,1987,1989,1,0,0,0,1988,1939,1,0,0,0,1988,1970, + 1,0,0,0,1989,107,1,0,0,0,1990,2033,5,107,0,0,1991,2033,5,112,0,0, + 1992,1994,7,19,0,0,1993,1995,5,36,0,0,1994,1993,1,0,0,0,1994,1995, + 1,0,0,0,1995,1996,1,0,0,0,1996,2033,3,806,403,0,1997,2033,5,171, + 0,0,1998,2033,5,216,0,0,1999,2000,5,209,0,0,2000,2003,5,298,0,0, + 2001,2004,3,142,71,0,2002,2004,5,9,0,0,2003,2001,1,0,0,0,2003,2002, + 1,0,0,0,2004,2033,1,0,0,0,2005,2007,5,209,0,0,2006,2008,5,77,0,0, + 2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009,2010, + 5,78,0,0,2010,2033,3,142,71,0,2011,2012,5,194,0,0,2012,2033,3,806, + 403,0,2013,2030,7,20,0,0,2014,2017,5,2,0,0,2015,2018,3,142,71,0, + 2016,2018,5,9,0,0,2017,2015,1,0,0,0,2017,2016,1,0,0,0,2018,2026, + 1,0,0,0,2019,2022,5,6,0,0,2020,2023,3,142,71,0,2021,2023,5,9,0,0, + 2022,2020,1,0,0,0,2022,2021,1,0,0,0,2023,2025,1,0,0,0,2024,2019, + 1,0,0,0,2025,2028,1,0,0,0,2026,2024,1,0,0,0,2026,2027,1,0,0,0,2027, + 2029,1,0,0,0,2028,2026,1,0,0,0,2029,2031,5,3,0,0,2030,2014,1,0,0, + 0,2030,2031,1,0,0,0,2031,2033,1,0,0,0,2032,1990,1,0,0,0,2032,1991, + 1,0,0,0,2032,1992,1,0,0,0,2032,1997,1,0,0,0,2032,1998,1,0,0,0,2032, + 1999,1,0,0,0,2032,2005,1,0,0,0,2032,2011,1,0,0,0,2032,2013,1,0,0, + 0,2033,2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035,109, + 1,0,0,0,2036,2034,1,0,0,0,2037,2056,3,108,54,0,2038,2041,5,2,0,0, + 2039,2042,3,108,54,0,2040,2042,3,112,56,0,2041,2039,1,0,0,0,2041, + 2040,1,0,0,0,2042,2050,1,0,0,0,2043,2046,5,6,0,0,2044,2047,3,108, + 54,0,2045,2047,3,112,56,0,2046,2044,1,0,0,0,2046,2045,1,0,0,0,2047, + 2049,1,0,0,0,2048,2043,1,0,0,0,2049,2052,1,0,0,0,2050,2048,1,0,0, + 0,2050,2051,1,0,0,0,2051,2053,1,0,0,0,2052,2050,1,0,0,0,2053,2054, + 5,3,0,0,2054,2056,1,0,0,0,2055,2037,1,0,0,0,2055,2038,1,0,0,0,2056, + 111,1,0,0,0,2057,2072,3,822,411,0,2058,2073,3,54,27,0,2059,2073, + 3,196,98,0,2060,2073,5,9,0,0,2061,2062,5,2,0,0,2062,2067,3,52,26, + 0,2063,2064,5,6,0,0,2064,2066,3,52,26,0,2065,2063,1,0,0,0,2066,2069, + 1,0,0,0,2067,2065,1,0,0,0,2067,2068,1,0,0,0,2068,2070,1,0,0,0,2069, + 2067,1,0,0,0,2070,2071,5,3,0,0,2071,2073,1,0,0,0,2072,2058,1,0,0, + 0,2072,2059,1,0,0,0,2072,2060,1,0,0,0,2072,2061,1,0,0,0,2072,2073, + 1,0,0,0,2073,113,1,0,0,0,2074,2076,5,46,0,0,2075,2077,3,116,58,0, + 2076,2075,1,0,0,0,2076,2077,1,0,0,0,2077,2078,1,0,0,0,2078,2080, + 5,92,0,0,2079,2081,3,288,144,0,2080,2079,1,0,0,0,2080,2081,1,0,0, + 0,2081,2082,1,0,0,0,2082,2148,3,768,384,0,2083,2085,5,2,0,0,2084, + 2086,3,120,60,0,2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1, + 0,0,0,2087,2089,5,3,0,0,2088,2090,3,158,79,0,2089,2088,1,0,0,0,2089, + 2090,1,0,0,0,2090,2092,1,0,0,0,2091,2093,3,160,80,0,2092,2091,1, + 0,0,0,2092,2093,1,0,0,0,2093,2095,1,0,0,0,2094,2096,3,164,82,0,2095, + 2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097,2099,3,166, + 83,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1,0,0,0,2100, + 2102,3,168,84,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102,2104,1, + 0,0,0,2103,2105,3,170,85,0,2104,2103,1,0,0,0,2104,2105,1,0,0,0,2105, + 2149,1,0,0,0,2106,2107,5,275,0,0,2107,2109,3,310,155,0,2108,2110, + 3,118,59,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0, + 2111,2113,3,160,80,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2115, + 1,0,0,0,2114,2116,3,164,82,0,2115,2114,1,0,0,0,2115,2116,1,0,0,0, + 2116,2118,1,0,0,0,2117,2119,3,166,83,0,2118,2117,1,0,0,0,2118,2119, + 1,0,0,0,2119,2121,1,0,0,0,2120,2122,3,168,84,0,2121,2120,1,0,0,0, + 2121,2122,1,0,0,0,2122,2124,1,0,0,0,2123,2125,3,170,85,0,2124,2123, + 1,0,0,0,2124,2125,1,0,0,0,2125,2149,1,0,0,0,2126,2127,5,285,0,0, + 2127,2128,5,275,0,0,2128,2130,3,776,388,0,2129,2131,3,118,59,0,2130, + 2129,1,0,0,0,2130,2131,1,0,0,0,2131,2132,1,0,0,0,2132,2134,3,98, + 49,0,2133,2135,3,160,80,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, + 2137,1,0,0,0,2136,2138,3,164,82,0,2137,2136,1,0,0,0,2137,2138,1, + 0,0,0,2138,2140,1,0,0,0,2139,2141,3,166,83,0,2140,2139,1,0,0,0,2140, + 2141,1,0,0,0,2141,2143,1,0,0,0,2142,2144,3,168,84,0,2143,2142,1, + 0,0,0,2143,2144,1,0,0,0,2144,2146,1,0,0,0,2145,2147,3,170,85,0,2146, + 2145,1,0,0,0,2146,2147,1,0,0,0,2147,2149,1,0,0,0,2148,2083,1,0,0, + 0,2148,2106,1,0,0,0,2148,2126,1,0,0,0,2149,115,1,0,0,0,2150,2156, + 5,354,0,0,2151,2156,5,352,0,0,2152,2153,7,21,0,0,2153,2156,7,22, + 0,0,2154,2156,5,367,0,0,2155,2150,1,0,0,0,2155,2151,1,0,0,0,2155, + 2152,1,0,0,0,2155,2154,1,0,0,0,2156,117,1,0,0,0,2157,2158,5,2,0, + 0,2158,2163,3,124,62,0,2159,2160,5,6,0,0,2160,2162,3,124,62,0,2161, + 2159,1,0,0,0,2162,2165,1,0,0,0,2163,2161,1,0,0,0,2163,2164,1,0,0, + 0,2164,2166,1,0,0,0,2165,2163,1,0,0,0,2166,2167,5,3,0,0,2167,119, + 1,0,0,0,2168,2173,3,122,61,0,2169,2170,5,6,0,0,2170,2172,3,122,61, + 0,2171,2169,1,0,0,0,2172,2175,1,0,0,0,2173,2171,1,0,0,0,2173,2174, + 1,0,0,0,2174,121,1,0,0,0,2175,2173,1,0,0,0,2176,2177,5,45,0,0,2177, + 2179,3,816,408,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,2180,1, + 0,0,0,2180,2192,3,136,68,0,2181,2192,3,126,63,0,2182,2183,5,120, + 0,0,2183,2188,3,776,388,0,2184,2185,7,23,0,0,2185,2187,3,134,67, + 0,2186,2184,1,0,0,0,2187,2190,1,0,0,0,2188,2186,1,0,0,0,2188,2189, + 1,0,0,0,2189,2192,1,0,0,0,2190,2188,1,0,0,0,2191,2178,1,0,0,0,2191, + 2181,1,0,0,0,2191,2182,1,0,0,0,2192,123,1,0,0,0,2193,2196,3,800, + 400,0,2194,2195,5,105,0,0,2195,2197,5,280,0,0,2196,2194,1,0,0,0, + 2196,2197,1,0,0,0,2197,2201,1,0,0,0,2198,2200,3,128,64,0,2199,2198, + 1,0,0,0,2200,2203,1,0,0,0,2201,2199,1,0,0,0,2201,2202,1,0,0,0,2202, + 2210,1,0,0,0,2203,2201,1,0,0,0,2204,2205,5,45,0,0,2205,2207,3,816, + 408,0,2206,2204,1,0,0,0,2206,2207,1,0,0,0,2207,2208,1,0,0,0,2208, + 2210,3,136,68,0,2209,2193,1,0,0,0,2209,2206,1,0,0,0,2210,125,1,0, + 0,0,2211,2212,3,800,400,0,2212,2214,3,646,323,0,2213,2215,3,214, + 107,0,2214,2213,1,0,0,0,2214,2215,1,0,0,0,2215,2225,1,0,0,0,2216, + 2223,5,345,0,0,2217,2224,5,544,0,0,2218,2224,5,205,0,0,2219,2224, + 5,545,0,0,2220,2224,5,546,0,0,2221,2224,5,53,0,0,2222,2224,3,816, + 408,0,2223,2217,1,0,0,0,2223,2218,1,0,0,0,2223,2219,1,0,0,0,2223, + 2220,1,0,0,0,2223,2221,1,0,0,0,2223,2222,1,0,0,0,2224,2226,1,0,0, + 0,2225,2216,1,0,0,0,2225,2226,1,0,0,0,2226,2229,1,0,0,0,2227,2228, + 5,543,0,0,2228,2230,3,816,408,0,2229,2227,1,0,0,0,2229,2230,1,0, + 0,0,2230,2232,1,0,0,0,2231,2233,3,90,45,0,2232,2231,1,0,0,0,2232, + 2233,1,0,0,0,2233,2236,1,0,0,0,2234,2235,5,105,0,0,2235,2237,5,280, + 0,0,2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237,2241,1,0,0,0,2238,2240, + 3,128,64,0,2239,2238,1,0,0,0,2240,2243,1,0,0,0,2241,2239,1,0,0,0, + 2241,2242,1,0,0,0,2242,127,1,0,0,0,2243,2241,1,0,0,0,2244,2245,5, + 45,0,0,2245,2247,3,816,408,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0, + 2247,2248,1,0,0,0,2248,2253,3,130,65,0,2249,2251,5,77,0,0,2250,2249, + 1,0,0,0,2250,2251,1,0,0,0,2251,2252,1,0,0,0,2252,2254,5,54,0,0,2253, + 2250,1,0,0,0,2253,2254,1,0,0,0,2254,2257,1,0,0,0,2255,2256,5,69, + 0,0,2256,2258,7,9,0,0,2257,2255,1,0,0,0,2257,2258,1,0,0,0,2258,129, + 1,0,0,0,2259,2261,5,77,0,0,2260,2259,1,0,0,0,2260,2261,1,0,0,0,2261, + 2262,1,0,0,0,2262,2340,5,78,0,0,2263,2265,5,98,0,0,2264,2266,3,394, + 197,0,2265,2264,1,0,0,0,2265,2266,1,0,0,0,2266,2268,1,0,0,0,2267, + 2269,3,172,86,0,2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269,2340,1, + 0,0,0,2270,2276,5,98,0,0,2271,2273,5,273,0,0,2272,2274,5,77,0,0, + 2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274,2275,1,0,0,0,2275,2277, + 5,56,0,0,2276,2271,1,0,0,0,2276,2277,1,0,0,0,2277,2280,1,0,0,0,2278, + 2279,5,441,0,0,2279,2281,3,354,177,0,2280,2278,1,0,0,0,2280,2281, + 1,0,0,0,2281,2283,1,0,0,0,2282,2284,3,566,283,0,2283,2282,1,0,0, + 0,2283,2284,1,0,0,0,2284,2286,1,0,0,0,2285,2287,3,172,86,0,2286, + 2285,1,0,0,0,2286,2287,1,0,0,0,2287,2340,1,0,0,0,2288,2289,5,85, + 0,0,2289,2291,5,245,0,0,2290,2292,3,394,197,0,2291,2290,1,0,0,0, + 2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293,2295,3,172,86,0,2294,2293, + 1,0,0,0,2294,2295,1,0,0,0,2295,2340,1,0,0,0,2296,2297,5,42,0,0,2297, + 2298,5,2,0,0,2298,2299,3,668,334,0,2299,2302,5,3,0,0,2300,2301,5, + 269,0,0,2301,2303,5,228,0,0,2302,2300,1,0,0,0,2302,2303,1,0,0,0, + 2303,2340,1,0,0,0,2304,2305,5,53,0,0,2305,2340,3,676,338,0,2306, + 2307,5,438,0,0,2307,2308,3,132,66,0,2308,2325,5,36,0,0,2309,2318, + 5,219,0,0,2310,2312,5,2,0,0,2311,2313,3,194,97,0,2312,2311,1,0,0, + 0,2313,2314,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2316, + 1,0,0,0,2316,2317,5,3,0,0,2317,2319,1,0,0,0,2318,2310,1,0,0,0,2318, + 2319,1,0,0,0,2319,2326,1,0,0,0,2320,2321,5,2,0,0,2321,2322,3,668, + 334,0,2322,2323,5,3,0,0,2323,2324,5,440,0,0,2324,2326,1,0,0,0,2325, + 2309,1,0,0,0,2325,2320,1,0,0,0,2326,2340,1,0,0,0,2327,2328,5,86, + 0,0,2328,2330,3,776,388,0,2329,2331,3,138,69,0,2330,2329,1,0,0,0, + 2330,2331,1,0,0,0,2331,2333,1,0,0,0,2332,2334,3,146,73,0,2333,2332, + 1,0,0,0,2333,2334,1,0,0,0,2334,2336,1,0,0,0,2335,2337,3,150,75,0, + 2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337,2340,1,0,0,0,2338,2340, + 3,90,45,0,2339,2260,1,0,0,0,2339,2263,1,0,0,0,2339,2270,1,0,0,0, + 2339,2288,1,0,0,0,2339,2296,1,0,0,0,2339,2304,1,0,0,0,2339,2306, + 1,0,0,0,2339,2327,1,0,0,0,2339,2338,1,0,0,0,2340,131,1,0,0,0,2341, + 2345,5,139,0,0,2342,2343,5,147,0,0,2343,2345,5,53,0,0,2344,2341, + 1,0,0,0,2344,2342,1,0,0,0,2345,133,1,0,0,0,2346,2347,7,24,0,0,2347, + 135,1,0,0,0,2348,2349,5,42,0,0,2349,2350,5,2,0,0,2350,2351,3,668, + 334,0,2351,2355,5,3,0,0,2352,2354,3,266,133,0,2353,2352,1,0,0,0, + 2354,2357,1,0,0,0,2355,2353,1,0,0,0,2355,2356,1,0,0,0,2356,2445, + 1,0,0,0,2357,2355,1,0,0,0,2358,2362,5,98,0,0,2359,2360,5,85,0,0, + 2360,2362,5,245,0,0,2361,2358,1,0,0,0,2361,2359,1,0,0,0,2362,2386, + 1,0,0,0,2363,2365,3,138,69,0,2364,2366,3,144,72,0,2365,2364,1,0, + 0,0,2365,2366,1,0,0,0,2366,2368,1,0,0,0,2367,2369,3,394,197,0,2368, + 2367,1,0,0,0,2368,2369,1,0,0,0,2369,2371,1,0,0,0,2370,2372,3,172, + 86,0,2371,2370,1,0,0,0,2371,2372,1,0,0,0,2372,2376,1,0,0,0,2373, + 2375,3,266,133,0,2374,2373,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1, + 0,0,0,2376,2377,1,0,0,0,2377,2387,1,0,0,0,2378,2376,1,0,0,0,2379, + 2383,3,174,87,0,2380,2382,3,266,133,0,2381,2380,1,0,0,0,2382,2385, + 1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0,0,2384,2387,1,0,0,0,2385, + 2383,1,0,0,0,2386,2363,1,0,0,0,2386,2379,1,0,0,0,2387,2445,1,0,0, + 0,2388,2390,5,199,0,0,2389,2391,3,164,82,0,2390,2389,1,0,0,0,2390, + 2391,1,0,0,0,2391,2392,1,0,0,0,2392,2393,5,2,0,0,2393,2398,3,148, + 74,0,2394,2395,5,6,0,0,2395,2397,3,148,74,0,2396,2394,1,0,0,0,2397, + 2400,1,0,0,0,2398,2396,1,0,0,0,2398,2399,1,0,0,0,2399,2401,1,0,0, + 0,2400,2398,1,0,0,0,2401,2403,5,3,0,0,2402,2404,3,144,72,0,2403, + 2402,1,0,0,0,2403,2404,1,0,0,0,2404,2406,1,0,0,0,2405,2407,3,394, + 197,0,2406,2405,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0,0,2408, + 2410,3,172,86,0,2409,2408,1,0,0,0,2409,2410,1,0,0,0,2410,2416,1, + 0,0,0,2411,2412,5,103,0,0,2412,2413,5,2,0,0,2413,2414,3,668,334, + 0,2414,2415,5,3,0,0,2415,2417,1,0,0,0,2416,2411,1,0,0,0,2416,2417, + 1,0,0,0,2417,2421,1,0,0,0,2418,2420,3,266,133,0,2419,2418,1,0,0, + 0,2420,2423,1,0,0,0,2421,2419,1,0,0,0,2421,2422,1,0,0,0,2422,2445, + 1,0,0,0,2423,2421,1,0,0,0,2424,2425,5,63,0,0,2425,2426,5,245,0,0, + 2426,2427,3,138,69,0,2427,2428,5,86,0,0,2428,2430,3,776,388,0,2429, + 2431,3,138,69,0,2430,2429,1,0,0,0,2430,2431,1,0,0,0,2431,2433,1, + 0,0,0,2432,2434,3,146,73,0,2433,2432,1,0,0,0,2433,2434,1,0,0,0,2434, + 2436,1,0,0,0,2435,2437,3,150,75,0,2436,2435,1,0,0,0,2436,2437,1, + 0,0,0,2437,2441,1,0,0,0,2438,2440,3,266,133,0,2439,2438,1,0,0,0, + 2440,2443,1,0,0,0,2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2445, + 1,0,0,0,2443,2441,1,0,0,0,2444,2348,1,0,0,0,2444,2361,1,0,0,0,2444, + 2388,1,0,0,0,2444,2424,1,0,0,0,2445,137,1,0,0,0,2446,2447,5,2,0, + 0,2447,2448,3,142,71,0,2448,2449,5,3,0,0,2449,139,1,0,0,0,2450,2451, + 5,2,0,0,2451,2456,3,800,400,0,2452,2453,5,6,0,0,2453,2455,3,800, + 400,0,2454,2452,1,0,0,0,2455,2458,1,0,0,0,2456,2454,1,0,0,0,2456, + 2457,1,0,0,0,2457,2459,1,0,0,0,2458,2456,1,0,0,0,2459,2460,5,3,0, + 0,2460,141,1,0,0,0,2461,2466,3,796,398,0,2462,2463,5,6,0,0,2463, + 2465,3,796,398,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0,2466,2464,1, + 0,0,0,2466,2467,1,0,0,0,2467,143,1,0,0,0,2468,2466,1,0,0,0,2469, + 2470,5,441,0,0,2470,2471,3,138,69,0,2471,145,1,0,0,0,2472,2473,5, + 258,0,0,2473,2474,7,25,0,0,2474,147,1,0,0,0,2475,2476,3,356,178, + 0,2476,2483,5,105,0,0,2477,2484,3,408,204,0,2478,2479,5,278,0,0, + 2479,2480,5,2,0,0,2480,2481,3,408,204,0,2481,2482,5,3,0,0,2482,2484, + 1,0,0,0,2483,2477,1,0,0,0,2483,2478,1,0,0,0,2484,149,1,0,0,0,2485, + 2487,3,152,76,0,2486,2488,3,154,77,0,2487,2486,1,0,0,0,2487,2488, + 1,0,0,0,2488,2494,1,0,0,0,2489,2491,3,154,77,0,2490,2492,3,152,76, + 0,2491,2490,1,0,0,0,2491,2492,1,0,0,0,2492,2494,1,0,0,0,2493,2485, + 1,0,0,0,2493,2489,1,0,0,0,2494,151,1,0,0,0,2495,2496,5,80,0,0,2496, + 2497,5,369,0,0,2497,2498,3,156,78,0,2498,153,1,0,0,0,2499,2500,5, + 80,0,0,2500,2501,5,182,0,0,2501,2502,3,156,78,0,2502,155,1,0,0,0, + 2503,2504,5,269,0,0,2504,2513,5,132,0,0,2505,2513,5,315,0,0,2506, + 2513,5,150,0,0,2507,2508,5,333,0,0,2508,2510,7,26,0,0,2509,2511, + 3,142,71,0,2510,2509,1,0,0,0,2510,2511,1,0,0,0,2511,2513,1,0,0,0, + 2512,2503,1,0,0,0,2512,2505,1,0,0,0,2512,2506,1,0,0,0,2512,2507, + 1,0,0,0,2513,157,1,0,0,0,2514,2515,5,238,0,0,2515,2516,5,2,0,0,2516, + 2517,3,756,378,0,2517,2518,5,3,0,0,2518,159,1,0,0,0,2519,2520,5, + 285,0,0,2520,2521,5,147,0,0,2521,2522,3,816,408,0,2522,2523,5,2, + 0,0,2523,2528,3,162,81,0,2524,2525,5,6,0,0,2525,2527,3,162,81,0, + 2526,2524,1,0,0,0,2527,2530,1,0,0,0,2528,2526,1,0,0,0,2528,2529, + 1,0,0,0,2529,2531,1,0,0,0,2530,2528,1,0,0,0,2531,2532,5,3,0,0,2532, + 161,1,0,0,0,2533,2540,3,796,398,0,2534,2540,3,682,341,0,2535,2536, + 5,2,0,0,2536,2537,3,668,334,0,2537,2538,5,3,0,0,2538,2540,1,0,0, + 0,2539,2533,1,0,0,0,2539,2534,1,0,0,0,2539,2535,1,0,0,0,2540,2542, + 1,0,0,0,2541,2543,3,90,45,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0, + 2543,2545,1,0,0,0,2544,2546,3,310,155,0,2545,2544,1,0,0,0,2545,2546, + 1,0,0,0,2546,163,1,0,0,0,2547,2548,5,100,0,0,2548,2549,3,816,408, + 0,2549,165,1,0,0,0,2550,2551,5,105,0,0,2551,2555,3,92,46,0,2552, + 2553,7,27,0,0,2553,2555,5,277,0,0,2554,2550,1,0,0,0,2554,2552,1, + 0,0,0,2555,167,1,0,0,0,2556,2557,5,80,0,0,2557,2563,5,161,0,0,2558, + 2564,5,191,0,0,2559,2560,5,182,0,0,2560,2564,5,320,0,0,2561,2562, + 5,292,0,0,2562,2564,5,320,0,0,2563,2558,1,0,0,0,2563,2559,1,0,0, + 0,2563,2561,1,0,0,0,2564,169,1,0,0,0,2565,2566,5,351,0,0,2566,2567, + 3,766,383,0,2567,171,1,0,0,0,2568,2569,5,100,0,0,2569,2570,5,226, + 0,0,2570,2571,3,170,85,0,2571,173,1,0,0,0,2572,2573,5,100,0,0,2573, + 2574,5,226,0,0,2574,2575,3,816,408,0,2575,175,1,0,0,0,2576,2577, + 5,46,0,0,2577,2582,5,342,0,0,2578,2580,3,288,144,0,2579,2578,1,0, + 0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0,2581,2583,3,310,155,0,2582, + 2579,1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0,2584,2586,3,138, + 69,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0,2586,2587,1,0,0,0,2587, + 2597,5,80,0,0,2588,2593,3,728,364,0,2589,2590,5,6,0,0,2590,2592, + 3,728,364,0,2591,2589,1,0,0,0,2592,2595,1,0,0,0,2593,2591,1,0,0, + 0,2593,2594,1,0,0,0,2594,2598,1,0,0,0,2595,2593,1,0,0,0,2596,2598, + 3,726,363,0,2597,2588,1,0,0,0,2597,2596,1,0,0,0,2598,2599,1,0,0, + 0,2599,2600,3,604,302,0,2600,177,1,0,0,0,2601,2602,5,138,0,0,2602, + 2604,5,342,0,0,2603,2605,3,416,208,0,2604,2603,1,0,0,0,2604,2605, + 1,0,0,0,2605,2606,1,0,0,0,2606,2607,3,310,155,0,2607,2608,5,333, + 0,0,2608,2609,5,342,0,0,2609,2610,3,810,405,0,2610,179,1,0,0,0,2611, + 2613,5,46,0,0,2612,2614,3,116,58,0,2613,2612,1,0,0,0,2613,2614,1, + 0,0,0,2614,2615,1,0,0,0,2615,2617,5,92,0,0,2616,2618,3,288,144,0, + 2617,2616,1,0,0,0,2617,2618,1,0,0,0,2618,2619,1,0,0,0,2619,2620, + 3,182,91,0,2620,2621,5,36,0,0,2621,2623,3,554,277,0,2622,2624,3, + 184,92,0,2623,2622,1,0,0,0,2623,2624,1,0,0,0,2624,181,1,0,0,0,2625, + 2627,3,768,384,0,2626,2628,3,140,70,0,2627,2626,1,0,0,0,2627,2628, + 1,0,0,0,2628,2630,1,0,0,0,2629,2631,3,164,82,0,2630,2629,1,0,0,0, + 2630,2631,1,0,0,0,2631,2633,1,0,0,0,2632,2634,3,166,83,0,2633,2632, + 1,0,0,0,2633,2634,1,0,0,0,2634,2636,1,0,0,0,2635,2637,3,168,84,0, + 2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0,0,2638,2640, + 3,170,85,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,183,1,0,0,0, + 2641,2645,5,105,0,0,2642,2646,5,174,0,0,2643,2644,5,269,0,0,2644, + 2646,5,174,0,0,2645,2642,1,0,0,0,2645,2643,1,0,0,0,2646,185,1,0, + 0,0,2647,2649,5,46,0,0,2648,2650,5,367,0,0,2649,2648,1,0,0,0,2649, + 2650,1,0,0,0,2650,2651,1,0,0,0,2651,2652,5,259,0,0,2652,2654,5,376, + 0,0,2653,2655,3,288,144,0,2654,2653,1,0,0,0,2654,2655,1,0,0,0,2655, + 2656,1,0,0,0,2656,2658,3,772,386,0,2657,2659,3,140,70,0,2658,2657, + 1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0,0,2660,2662,3,164,82,0, + 2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2664,1,0,0,0,2663,2665, + 3,94,47,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2667,1,0,0,0, + 2666,2668,3,170,85,0,2667,2666,1,0,0,0,2667,2668,1,0,0,0,2668,2669, + 1,0,0,0,2669,2670,5,36,0,0,2670,2672,3,554,277,0,2671,2673,3,184, + 92,0,2672,2671,1,0,0,0,2672,2673,1,0,0,0,2673,187,1,0,0,0,2674,2675, + 5,305,0,0,2675,2676,5,259,0,0,2676,2678,5,376,0,0,2677,2679,5,109, + 0,0,2678,2677,1,0,0,0,2678,2679,1,0,0,0,2679,2680,1,0,0,0,2680,2682, + 3,774,387,0,2681,2683,3,184,92,0,2682,2681,1,0,0,0,2682,2683,1,0, + 0,0,2683,189,1,0,0,0,2684,2686,5,46,0,0,2685,2687,3,116,58,0,2686, + 2685,1,0,0,0,2686,2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690,5,328, + 0,0,2689,2691,3,288,144,0,2690,2689,1,0,0,0,2690,2691,1,0,0,0,2691, + 2692,1,0,0,0,2692,2698,3,776,388,0,2693,2695,3,194,97,0,2694,2693, + 1,0,0,0,2695,2696,1,0,0,0,2696,2694,1,0,0,0,2696,2697,1,0,0,0,2697, + 2699,1,0,0,0,2698,2694,1,0,0,0,2698,2699,1,0,0,0,2699,191,1,0,0, + 0,2700,2701,5,138,0,0,2701,2703,5,328,0,0,2702,2704,3,416,208,0, + 2703,2702,1,0,0,0,2703,2704,1,0,0,0,2704,2705,1,0,0,0,2705,2707, + 3,776,388,0,2706,2708,3,194,97,0,2707,2706,1,0,0,0,2708,2709,1,0, + 0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710,193,1,0,0,0,2711,2712, + 5,36,0,0,2712,2745,3,648,324,0,2713,2715,5,148,0,0,2714,2716,3,196, + 98,0,2715,2714,1,0,0,0,2715,2716,1,0,0,0,2716,2745,1,0,0,0,2717, + 2719,5,225,0,0,2718,2720,5,147,0,0,2719,2718,1,0,0,0,2719,2720,1, + 0,0,0,2720,2721,1,0,0,0,2721,2745,3,196,98,0,2722,2723,7,28,0,0, + 2723,2745,3,196,98,0,2724,2725,5,269,0,0,2725,2745,7,29,0,0,2726, + 2727,5,281,0,0,2727,2728,5,147,0,0,2728,2745,3,796,398,0,2729,2730, + 5,328,0,0,2730,2731,5,266,0,0,2731,2745,3,310,155,0,2732,2734,5, + 340,0,0,2733,2735,5,105,0,0,2734,2733,1,0,0,0,2734,2735,1,0,0,0, + 2735,2736,1,0,0,0,2736,2745,3,196,98,0,2737,2739,5,314,0,0,2738, + 2740,5,105,0,0,2739,2738,1,0,0,0,2739,2740,1,0,0,0,2740,2742,1,0, + 0,0,2741,2743,3,196,98,0,2742,2741,1,0,0,0,2742,2743,1,0,0,0,2743, + 2745,1,0,0,0,2744,2711,1,0,0,0,2744,2713,1,0,0,0,2744,2717,1,0,0, + 0,2744,2722,1,0,0,0,2744,2724,1,0,0,0,2744,2726,1,0,0,0,2744,2729, + 1,0,0,0,2744,2732,1,0,0,0,2744,2737,1,0,0,0,2745,195,1,0,0,0,2746, + 2748,7,30,0,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748,2749,1,0, + 0,0,2749,2752,5,576,0,0,2750,2752,3,810,405,0,2751,2747,1,0,0,0, + 2751,2750,1,0,0,0,2752,197,1,0,0,0,2753,2755,5,46,0,0,2754,2756, + 3,360,180,0,2755,2754,1,0,0,0,2755,2756,1,0,0,0,2756,2758,1,0,0, + 0,2757,2759,5,359,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759,2761, + 1,0,0,0,2760,2762,5,295,0,0,2761,2760,1,0,0,0,2761,2762,1,0,0,0, + 2762,2763,1,0,0,0,2763,2764,5,247,0,0,2764,2777,3,816,408,0,2765, + 2766,5,215,0,0,2766,2769,3,310,155,0,2767,2768,5,239,0,0,2768,2770, + 3,310,155,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770,2775,1,0,0, + 0,2771,2772,5,373,0,0,2772,2776,3,310,155,0,2773,2774,5,269,0,0, + 2774,2776,5,373,0,0,2775,2771,1,0,0,0,2775,2773,1,0,0,0,2775,2776, + 1,0,0,0,2776,2778,1,0,0,0,2777,2765,1,0,0,0,2777,2778,1,0,0,0,2778, + 199,1,0,0,0,2779,2780,5,46,0,0,2780,2783,3,170,85,0,2781,2782,5, + 282,0,0,2782,2784,3,812,406,0,2783,2781,1,0,0,0,2783,2784,1,0,0, + 0,2784,2785,1,0,0,0,2785,2786,5,255,0,0,2786,2788,3,806,403,0,2787, + 2789,3,94,47,0,2788,2787,1,0,0,0,2788,2789,1,0,0,0,2789,201,1,0, + 0,0,2790,2791,5,46,0,0,2791,2793,5,204,0,0,2792,2794,3,288,144,0, + 2793,2792,1,0,0,0,2793,2794,1,0,0,0,2794,2795,1,0,0,0,2795,2797, + 3,816,408,0,2796,2798,5,105,0,0,2797,2796,1,0,0,0,2797,2798,1,0, + 0,0,2798,2806,1,0,0,0,2799,2800,5,323,0,0,2800,2805,3,786,393,0, + 2801,2802,7,31,0,0,2802,2805,3,58,29,0,2803,2805,5,150,0,0,2804, + 2799,1,0,0,0,2804,2801,1,0,0,0,2804,2803,1,0,0,0,2805,2808,1,0,0, + 0,2806,2804,1,0,0,0,2806,2807,1,0,0,0,2807,203,1,0,0,0,2808,2806, + 1,0,0,0,2809,2810,5,138,0,0,2810,2811,5,204,0,0,2811,2812,3,816, + 408,0,2812,2817,5,369,0,0,2813,2814,5,94,0,0,2814,2816,3,58,29,0, + 2815,2813,1,0,0,0,2816,2819,1,0,0,0,2817,2815,1,0,0,0,2817,2818, + 1,0,0,0,2818,205,1,0,0,0,2819,2817,1,0,0,0,2820,2821,5,138,0,0,2821, + 2822,5,204,0,0,2822,2823,3,816,408,0,2823,2856,7,6,0,0,2824,2825, + 5,443,0,0,2825,2826,5,62,0,0,2826,2827,3,646,323,0,2827,2828,5,247, + 0,0,2828,2829,3,816,408,0,2829,2857,1,0,0,0,2830,2831,5,442,0,0, + 2831,2857,3,368,184,0,2832,2833,5,296,0,0,2833,2857,3,372,186,0, + 2834,2835,5,278,0,0,2835,2836,7,32,0,0,2836,2837,3,310,155,0,2837, + 2838,3,164,82,0,2838,2857,1,0,0,0,2839,2840,5,278,0,0,2840,2857, + 3,410,205,0,2841,2842,5,211,0,0,2842,2857,3,376,188,0,2843,2844, + 7,33,0,0,2844,2857,3,646,323,0,2845,2846,5,41,0,0,2846,2847,5,2, + 0,0,2847,2848,3,646,323,0,2848,2849,5,36,0,0,2849,2850,3,646,323, + 0,2850,2851,5,3,0,0,2851,2857,1,0,0,0,2852,2853,5,136,0,0,2853,2857, + 3,388,194,0,2854,2857,3,306,153,0,2855,2857,3,304,152,0,2856,2824, + 1,0,0,0,2856,2830,1,0,0,0,2856,2832,1,0,0,0,2856,2834,1,0,0,0,2856, + 2839,1,0,0,0,2856,2841,1,0,0,0,2856,2843,1,0,0,0,2856,2845,1,0,0, + 0,2856,2852,1,0,0,0,2856,2854,1,0,0,0,2856,2855,1,0,0,0,2857,207, + 1,0,0,0,2858,2859,5,46,0,0,2859,2860,5,63,0,0,2860,2861,5,174,0, + 0,2861,2862,5,381,0,0,2862,2868,3,816,408,0,2863,2865,3,210,105, + 0,2864,2863,1,0,0,0,2865,2866,1,0,0,0,2866,2864,1,0,0,0,2866,2867, + 1,0,0,0,2867,2869,1,0,0,0,2868,2864,1,0,0,0,2868,2869,1,0,0,0,2869, + 2871,1,0,0,0,2870,2872,3,214,107,0,2871,2870,1,0,0,0,2871,2872,1, + 0,0,0,2872,209,1,0,0,0,2873,2875,7,34,0,0,2874,2876,3,310,155,0, + 2875,2874,1,0,0,0,2875,2876,1,0,0,0,2876,2880,1,0,0,0,2877,2878, + 5,269,0,0,2878,2880,7,34,0,0,2879,2873,1,0,0,0,2879,2877,1,0,0,0, + 2880,211,1,0,0,0,2881,2882,5,138,0,0,2882,2883,5,63,0,0,2883,2884, + 5,174,0,0,2884,2885,5,381,0,0,2885,2899,3,816,408,0,2886,2888,3, + 210,105,0,2887,2886,1,0,0,0,2888,2889,1,0,0,0,2889,2887,1,0,0,0, + 2889,2890,1,0,0,0,2890,2892,1,0,0,0,2891,2887,1,0,0,0,2891,2892, + 1,0,0,0,2892,2893,1,0,0,0,2893,2900,3,216,108,0,2894,2896,3,210, + 105,0,2895,2894,1,0,0,0,2896,2897,1,0,0,0,2897,2895,1,0,0,0,2897, + 2898,1,0,0,0,2898,2900,1,0,0,0,2899,2891,1,0,0,0,2899,2895,1,0,0, + 0,2900,213,1,0,0,0,2901,2902,5,280,0,0,2902,2903,5,2,0,0,2903,2908, + 3,220,110,0,2904,2905,5,6,0,0,2905,2907,3,220,110,0,2906,2904,1, + 0,0,0,2907,2910,1,0,0,0,2908,2906,1,0,0,0,2908,2909,1,0,0,0,2909, + 2911,1,0,0,0,2910,2908,1,0,0,0,2911,2912,5,3,0,0,2912,215,1,0,0, + 0,2913,2914,5,280,0,0,2914,2915,5,2,0,0,2915,2920,3,218,109,0,2916, + 2917,5,6,0,0,2917,2919,3,218,109,0,2918,2916,1,0,0,0,2919,2922,1, + 0,0,0,2920,2918,1,0,0,0,2920,2921,1,0,0,0,2921,2923,1,0,0,0,2922, + 2920,1,0,0,0,2923,2924,5,3,0,0,2924,217,1,0,0,0,2925,2926,7,35,0, + 0,2926,2927,3,220,110,0,2927,219,1,0,0,0,2928,2929,3,822,411,0,2929, + 2930,3,806,403,0,2930,221,1,0,0,0,2931,2932,5,46,0,0,2932,2934,5, + 331,0,0,2933,2935,3,288,144,0,2934,2933,1,0,0,0,2934,2935,1,0,0, + 0,2935,2936,1,0,0,0,2936,2939,3,816,408,0,2937,2938,5,360,0,0,2938, + 2940,3,806,403,0,2939,2937,1,0,0,0,2939,2940,1,0,0,0,2940,2942,1, + 0,0,0,2941,2943,3,224,112,0,2942,2941,1,0,0,0,2942,2943,1,0,0,0, + 2943,2944,1,0,0,0,2944,2945,5,63,0,0,2945,2946,5,174,0,0,2946,2947, + 5,381,0,0,2947,2949,3,816,408,0,2948,2950,3,214,107,0,2949,2948, + 1,0,0,0,2949,2950,1,0,0,0,2950,223,1,0,0,0,2951,2954,5,375,0,0,2952, + 2955,3,806,403,0,2953,2955,5,78,0,0,2954,2952,1,0,0,0,2954,2953, + 1,0,0,0,2955,225,1,0,0,0,2956,2957,5,138,0,0,2957,2958,5,331,0,0, + 2958,2964,3,816,408,0,2959,2965,3,216,108,0,2960,2962,3,224,112, + 0,2961,2963,3,216,108,0,2962,2961,1,0,0,0,2962,2963,1,0,0,0,2963, + 2965,1,0,0,0,2964,2959,1,0,0,0,2964,2960,1,0,0,0,2965,227,1,0,0, + 0,2966,2967,5,46,0,0,2967,2968,5,63,0,0,2968,2970,5,92,0,0,2969, + 2971,3,288,144,0,2970,2969,1,0,0,0,2970,2971,1,0,0,0,2971,2972,1, + 0,0,0,2972,2973,3,768,384,0,2973,2975,5,2,0,0,2974,2976,3,120,60, + 0,2975,2974,1,0,0,0,2975,2976,1,0,0,0,2976,2977,1,0,0,0,2977,2979, + 5,3,0,0,2978,2980,3,158,79,0,2979,2978,1,0,0,0,2979,2980,1,0,0,0, + 2980,2981,1,0,0,0,2981,2982,5,331,0,0,2982,2984,3,816,408,0,2983, + 2985,3,214,107,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985,3006,1, + 0,0,0,2986,2987,5,46,0,0,2987,2988,5,63,0,0,2988,2990,5,92,0,0,2989, + 2991,3,288,144,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991,2992,1, + 0,0,0,2992,2993,3,768,384,0,2993,2994,5,285,0,0,2994,2995,5,275, + 0,0,2995,2997,3,770,385,0,2996,2998,3,118,59,0,2997,2996,1,0,0,0, + 2997,2998,1,0,0,0,2998,2999,1,0,0,0,2999,3000,3,98,49,0,3000,3001, + 5,331,0,0,3001,3003,3,816,408,0,3002,3004,3,214,107,0,3003,3002, + 1,0,0,0,3003,3004,1,0,0,0,3004,3006,1,0,0,0,3005,2966,1,0,0,0,3005, + 2986,1,0,0,0,3006,229,1,0,0,0,3007,3008,5,444,0,0,3008,3009,5,63, + 0,0,3009,3010,5,323,0,0,3010,3020,3,786,393,0,3011,3012,5,74,0,0, + 3012,3015,5,94,0,0,3013,3015,5,59,0,0,3014,3011,1,0,0,0,3014,3013, + 1,0,0,0,3015,3016,1,0,0,0,3016,3017,5,2,0,0,3017,3018,3,622,311, + 0,3018,3019,5,3,0,0,3019,3021,1,0,0,0,3020,3014,1,0,0,0,3020,3021, + 1,0,0,0,3021,3022,1,0,0,0,3022,3023,5,64,0,0,3023,3024,5,331,0,0, + 3024,3025,3,816,408,0,3025,3026,5,71,0,0,3026,3028,3,816,408,0,3027, + 3029,3,214,107,0,3028,3027,1,0,0,0,3028,3029,1,0,0,0,3029,231,1, + 0,0,0,3030,3031,5,46,0,0,3031,3032,5,99,0,0,3032,3034,5,257,0,0, + 3033,3035,3,288,144,0,3034,3033,1,0,0,0,3034,3035,1,0,0,0,3035,3036, + 1,0,0,0,3036,3039,5,62,0,0,3037,3040,3,812,406,0,3038,3040,5,99, + 0,0,3039,3037,1,0,0,0,3039,3038,1,0,0,0,3040,3041,1,0,0,0,3041,3042, + 5,331,0,0,3042,3044,3,816,408,0,3043,3045,3,214,107,0,3044,3043, + 1,0,0,0,3044,3045,1,0,0,0,3045,233,1,0,0,0,3046,3047,5,138,0,0,3047, + 3048,5,99,0,0,3048,3049,5,257,0,0,3049,3052,5,62,0,0,3050,3053,3, + 812,406,0,3051,3053,5,99,0,0,3052,3050,1,0,0,0,3052,3051,1,0,0,0, + 3053,3054,1,0,0,0,3054,3055,5,331,0,0,3055,3056,3,816,408,0,3056, + 3057,3,216,108,0,3057,235,1,0,0,0,3058,3059,5,46,0,0,3059,3060,5, + 445,0,0,3060,3061,3,816,408,0,3061,3062,5,80,0,0,3062,3069,3,776, + 388,0,3063,3067,5,36,0,0,3064,3068,5,541,0,0,3065,3068,5,542,0,0, + 3066,3068,3,824,412,0,3067,3064,1,0,0,0,3067,3065,1,0,0,0,3067,3066, + 1,0,0,0,3068,3070,1,0,0,0,3069,3063,1,0,0,0,3069,3070,1,0,0,0,3070, + 3073,1,0,0,0,3071,3072,5,62,0,0,3072,3074,7,36,0,0,3073,3071,1,0, + 0,0,3073,3074,1,0,0,0,3074,3077,1,0,0,0,3075,3076,5,94,0,0,3076, + 3078,3,814,407,0,3077,3075,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1, + 0,0,0,3079,3081,3,244,122,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0, + 3081,3083,1,0,0,0,3082,3084,3,246,123,0,3083,3082,1,0,0,0,3083,3084, + 1,0,0,0,3084,237,1,0,0,0,3085,3086,5,138,0,0,3086,3087,5,445,0,0, + 3087,3088,3,816,408,0,3088,3089,5,80,0,0,3089,3092,3,776,388,0,3090, + 3091,5,94,0,0,3091,3093,3,814,407,0,3092,3090,1,0,0,0,3092,3093, + 1,0,0,0,3093,3095,1,0,0,0,3094,3096,3,244,122,0,3095,3094,1,0,0, + 0,3095,3096,1,0,0,0,3096,3098,1,0,0,0,3097,3099,3,246,123,0,3098, + 3097,1,0,0,0,3098,3099,1,0,0,0,3099,239,1,0,0,0,3100,3101,5,138, + 0,0,3101,3102,5,296,0,0,3102,3104,3,792,396,0,3103,3105,3,362,181, + 0,3104,3103,1,0,0,0,3104,3105,1,0,0,0,3105,3132,1,0,0,0,3106,3110, + 3,242,121,0,3107,3109,3,242,121,0,3108,3107,1,0,0,0,3109,3112,1, + 0,0,0,3110,3108,1,0,0,0,3110,3111,1,0,0,0,3111,3114,1,0,0,0,3112, + 3110,1,0,0,0,3113,3115,5,315,0,0,3114,3113,1,0,0,0,3114,3115,1,0, + 0,0,3115,3133,1,0,0,0,3116,3117,5,309,0,0,3117,3118,5,94,0,0,3118, + 3133,3,794,397,0,3119,3120,5,282,0,0,3120,3121,5,94,0,0,3121,3133, + 3,812,406,0,3122,3123,5,333,0,0,3123,3124,5,323,0,0,3124,3133,3, + 32,16,0,3125,3127,5,269,0,0,3126,3125,1,0,0,0,3126,3127,1,0,0,0, + 3127,3128,1,0,0,0,3128,3129,5,462,0,0,3129,3130,5,80,0,0,3130,3131, + 5,204,0,0,3131,3133,3,816,408,0,3132,3106,1,0,0,0,3132,3116,1,0, + 0,0,3132,3119,1,0,0,0,3132,3122,1,0,0,0,3132,3126,1,0,0,0,3133,241, + 1,0,0,0,3134,3136,5,205,0,0,3135,3134,1,0,0,0,3135,3136,1,0,0,0, + 3136,3137,1,0,0,0,3137,3138,5,327,0,0,3138,3145,5,243,0,0,3139,3141, + 5,205,0,0,3140,3139,1,0,0,0,3140,3141,1,0,0,0,3141,3142,1,0,0,0, + 3142,3143,5,327,0,0,3143,3145,5,181,0,0,3144,3135,1,0,0,0,3144,3140, + 1,0,0,0,3145,3164,1,0,0,0,3146,3147,5,333,0,0,3147,3148,3,816,408, + 0,3148,3151,7,37,0,0,3149,3152,3,816,408,0,3150,3152,5,53,0,0,3151, + 3149,1,0,0,0,3151,3150,1,0,0,0,3152,3164,1,0,0,0,3153,3154,5,333, + 0,0,3154,3155,3,816,408,0,3155,3156,5,64,0,0,3156,3157,5,434,0,0, + 3157,3164,1,0,0,0,3158,3161,5,313,0,0,3159,3162,3,816,408,0,3160, + 3162,5,30,0,0,3161,3159,1,0,0,0,3161,3160,1,0,0,0,3162,3164,1,0, + 0,0,3163,3144,1,0,0,0,3163,3146,1,0,0,0,3163,3153,1,0,0,0,3163,3158, + 1,0,0,0,3164,243,1,0,0,0,3165,3166,5,100,0,0,3166,3167,5,2,0,0,3167, + 3168,3,668,334,0,3168,3169,5,3,0,0,3169,245,1,0,0,0,3170,3171,5, + 105,0,0,3171,3172,5,42,0,0,3172,3173,5,2,0,0,3173,3174,3,668,334, + 0,3174,3175,5,3,0,0,3175,247,1,0,0,0,3176,3177,5,46,0,0,3177,3178, + 5,131,0,0,3178,3179,5,446,0,0,3179,3180,3,816,408,0,3180,3181,5, + 360,0,0,3181,3182,7,38,0,0,3182,3183,5,215,0,0,3183,3184,3,310,155, + 0,3184,249,1,0,0,0,3185,3187,5,46,0,0,3186,3188,3,360,180,0,3187, + 3186,1,0,0,0,3187,3188,1,0,0,0,3188,3189,1,0,0,0,3189,3190,5,357, + 0,0,3190,3191,3,816,408,0,3191,3192,3,252,126,0,3192,3193,3,254, + 127,0,3193,3194,5,80,0,0,3194,3206,3,770,385,0,3195,3202,5,447,0, + 0,3196,3197,7,39,0,0,3197,3199,7,40,0,0,3198,3200,5,36,0,0,3199, + 3198,1,0,0,0,3199,3200,1,0,0,0,3200,3201,1,0,0,0,3201,3203,3,816, + 408,0,3202,3196,1,0,0,0,3203,3204,1,0,0,0,3204,3202,1,0,0,0,3204, + 3205,1,0,0,0,3205,3207,1,0,0,0,3206,3195,1,0,0,0,3206,3207,1,0,0, + 0,3207,3213,1,0,0,0,3208,3210,5,62,0,0,3209,3211,5,192,0,0,3210, + 3209,1,0,0,0,3210,3211,1,0,0,0,3211,3212,1,0,0,0,3212,3214,7,41, + 0,0,3213,3208,1,0,0,0,3213,3214,1,0,0,0,3214,3216,1,0,0,0,3215,3217, + 3,258,129,0,3216,3215,1,0,0,0,3216,3217,1,0,0,0,3217,3218,1,0,0, + 0,3218,3219,5,202,0,0,3219,3220,3,260,130,0,3220,3221,5,2,0,0,3221, + 3222,3,262,131,0,3222,3223,5,3,0,0,3223,3264,1,0,0,0,3224,3226,5, + 46,0,0,3225,3227,3,360,180,0,3226,3225,1,0,0,0,3226,3227,1,0,0,0, + 3227,3229,1,0,0,0,3228,3230,5,45,0,0,3229,3228,1,0,0,0,3229,3230, + 1,0,0,0,3230,3231,1,0,0,0,3231,3232,5,357,0,0,3232,3233,3,816,408, + 0,3233,3234,3,252,126,0,3234,3235,3,254,127,0,3235,3236,5,80,0,0, + 3236,3239,3,770,385,0,3237,3238,5,64,0,0,3238,3240,3,776,388,0,3239, + 3237,1,0,0,0,3239,3240,1,0,0,0,3240,3244,1,0,0,0,3241,3243,3,266, + 133,0,3242,3241,1,0,0,0,3243,3246,1,0,0,0,3244,3242,1,0,0,0,3244, + 3245,1,0,0,0,3245,3252,1,0,0,0,3246,3244,1,0,0,0,3247,3249,5,62, + 0,0,3248,3250,5,192,0,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250, + 3251,1,0,0,0,3251,3253,7,41,0,0,3252,3247,1,0,0,0,3252,3253,1,0, + 0,0,3253,3255,1,0,0,0,3254,3256,3,258,129,0,3255,3254,1,0,0,0,3255, + 3256,1,0,0,0,3256,3257,1,0,0,0,3257,3258,5,202,0,0,3258,3259,3,260, + 130,0,3259,3260,5,2,0,0,3260,3261,3,262,131,0,3261,3262,5,3,0,0, + 3262,3264,1,0,0,0,3263,3185,1,0,0,0,3263,3224,1,0,0,0,3264,251,1, + 0,0,0,3265,3270,5,145,0,0,3266,3270,5,135,0,0,3267,3268,5,242,0, + 0,3268,3270,5,275,0,0,3269,3265,1,0,0,0,3269,3266,1,0,0,0,3269,3267, + 1,0,0,0,3270,253,1,0,0,0,3271,3276,3,256,128,0,3272,3273,5,82,0, + 0,3273,3275,3,256,128,0,3274,3272,1,0,0,0,3275,3278,1,0,0,0,3276, + 3274,1,0,0,0,3276,3277,1,0,0,0,3277,255,1,0,0,0,3278,3276,1,0,0, + 0,3279,3288,5,241,0,0,3280,3288,5,182,0,0,3281,3284,5,369,0,0,3282, + 3283,5,275,0,0,3283,3285,3,142,71,0,3284,3282,1,0,0,0,3284,3285, + 1,0,0,0,3285,3288,1,0,0,0,3286,3288,5,358,0,0,3287,3279,1,0,0,0, + 3287,3280,1,0,0,0,3287,3281,1,0,0,0,3287,3286,1,0,0,0,3288,257,1, + 0,0,0,3289,3290,5,102,0,0,3290,3291,5,2,0,0,3291,3292,3,668,334, + 0,3292,3293,5,3,0,0,3293,259,1,0,0,0,3294,3295,5,211,0,0,3295,3299, + 3,804,402,0,3296,3297,5,296,0,0,3297,3299,3,792,396,0,3298,3294, + 1,0,0,0,3298,3296,1,0,0,0,3299,261,1,0,0,0,3300,3303,3,264,132,0, + 3301,3303,1,0,0,0,3302,3300,1,0,0,0,3302,3301,1,0,0,0,3303,3308, + 1,0,0,0,3304,3305,5,6,0,0,3305,3307,3,264,132,0,3306,3304,1,0,0, + 0,3307,3310,1,0,0,0,3308,3306,1,0,0,0,3308,3309,1,0,0,0,3309,263, + 1,0,0,0,3310,3308,1,0,0,0,3311,3316,5,574,0,0,3312,3316,5,576,0, + 0,3313,3316,3,806,403,0,3314,3316,3,822,411,0,3315,3311,1,0,0,0, + 3315,3312,1,0,0,0,3315,3313,1,0,0,0,3315,3314,1,0,0,0,3316,265,1, + 0,0,0,3317,3319,5,77,0,0,3318,3317,1,0,0,0,3318,3319,1,0,0,0,3319, + 3320,1,0,0,0,3320,3328,5,54,0,0,3321,3322,5,69,0,0,3322,3328,7,9, + 0,0,3323,3324,5,77,0,0,3324,3328,5,371,0,0,3325,3326,5,269,0,0,3326, + 3328,5,228,0,0,3327,3318,1,0,0,0,3327,3321,1,0,0,0,3327,3323,1,0, + 0,0,3327,3325,1,0,0,0,3328,267,1,0,0,0,3329,3330,5,46,0,0,3330,3331, + 5,198,0,0,3331,3332,5,357,0,0,3332,3333,3,816,408,0,3333,3334,5, + 80,0,0,3334,3344,3,822,411,0,3335,3336,5,102,0,0,3336,3341,3,270, + 135,0,3337,3338,5,33,0,0,3338,3340,3,270,135,0,3339,3337,1,0,0,0, + 3340,3343,1,0,0,0,3341,3339,1,0,0,0,3341,3342,1,0,0,0,3342,3345, + 1,0,0,0,3343,3341,1,0,0,0,3344,3335,1,0,0,0,3344,3345,1,0,0,0,3345, + 3346,1,0,0,0,3346,3347,5,202,0,0,3347,3348,3,260,130,0,3348,3349, + 5,2,0,0,3349,3350,5,3,0,0,3350,269,1,0,0,0,3351,3352,3,816,408,0, + 3352,3353,5,68,0,0,3353,3354,5,2,0,0,3354,3358,3,806,403,0,3355, + 3357,3,456,228,0,3356,3355,1,0,0,0,3357,3360,1,0,0,0,3358,3356,1, + 0,0,0,3358,3359,1,0,0,0,3359,3361,1,0,0,0,3360,3358,1,0,0,0,3361, + 3362,5,3,0,0,3362,271,1,0,0,0,3363,3364,5,138,0,0,3364,3365,5,198, + 0,0,3365,3366,5,357,0,0,3366,3372,3,816,408,0,3367,3369,5,193,0, + 0,3368,3370,7,14,0,0,3369,3368,1,0,0,0,3369,3370,1,0,0,0,3370,3373, + 1,0,0,0,3371,3373,5,186,0,0,3372,3367,1,0,0,0,3372,3371,1,0,0,0, + 3373,273,1,0,0,0,3374,3375,5,46,0,0,3375,3376,5,140,0,0,3376,3377, + 3,310,155,0,3377,3378,5,42,0,0,3378,3379,5,2,0,0,3379,3380,3,668, + 334,0,3380,3384,5,3,0,0,3381,3383,3,266,133,0,3382,3381,1,0,0,0, + 3383,3386,1,0,0,0,3384,3382,1,0,0,0,3384,3385,1,0,0,0,3385,275,1, + 0,0,0,3386,3384,1,0,0,0,3387,3389,5,46,0,0,3388,3390,3,360,180,0, + 3389,3388,1,0,0,0,3389,3390,1,0,0,0,3390,3391,1,0,0,0,3391,3392, + 5,136,0,0,3392,3407,3,804,402,0,3393,3394,3,386,193,0,3394,3395, + 3,278,139,0,3395,3408,1,0,0,0,3396,3397,5,2,0,0,3397,3402,3,284, + 142,0,3398,3399,5,6,0,0,3399,3401,3,284,142,0,3400,3398,1,0,0,0, + 3401,3404,1,0,0,0,3402,3400,1,0,0,0,3402,3403,1,0,0,0,3403,3405, + 1,0,0,0,3404,3402,1,0,0,0,3405,3406,5,3,0,0,3406,3408,1,0,0,0,3407, + 3393,1,0,0,0,3407,3396,1,0,0,0,3408,3466,1,0,0,0,3409,3410,5,46, + 0,0,3410,3411,5,278,0,0,3411,3412,3,408,204,0,3412,3413,3,278,139, + 0,3413,3466,1,0,0,0,3414,3415,5,46,0,0,3415,3416,5,360,0,0,3416, + 3417,3,310,155,0,3417,3435,5,36,0,0,3418,3420,5,2,0,0,3419,3421, + 3,636,318,0,3420,3419,1,0,0,0,3420,3421,1,0,0,0,3421,3422,1,0,0, + 0,3422,3436,5,3,0,0,3423,3424,5,196,0,0,3424,3432,5,2,0,0,3425,3429, + 3,806,403,0,3426,3428,3,456,228,0,3427,3426,1,0,0,0,3428,3431,1, + 0,0,0,3429,3427,1,0,0,0,3429,3430,1,0,0,0,3430,3433,1,0,0,0,3431, + 3429,1,0,0,0,3432,3425,1,0,0,0,3432,3433,1,0,0,0,3433,3434,1,0,0, + 0,3434,3436,5,3,0,0,3435,3418,1,0,0,0,3435,3423,1,0,0,0,3436,3466, + 1,0,0,0,3437,3438,5,46,0,0,3438,3439,5,360,0,0,3439,3445,3,310,155, + 0,3440,3441,5,36,0,0,3441,3443,5,299,0,0,3442,3440,1,0,0,0,3442, + 3443,1,0,0,0,3443,3444,1,0,0,0,3444,3446,3,278,139,0,3445,3442,1, + 0,0,0,3445,3446,1,0,0,0,3446,3466,1,0,0,0,3447,3448,5,46,0,0,3448, + 3449,5,355,0,0,3449,3450,5,325,0,0,3450,3451,7,42,0,0,3451,3452, + 3,310,155,0,3452,3453,3,278,139,0,3453,3466,1,0,0,0,3454,3455,5, + 46,0,0,3455,3457,5,108,0,0,3456,3458,3,288,144,0,3457,3456,1,0,0, + 0,3457,3458,1,0,0,0,3458,3459,1,0,0,0,3459,3463,3,310,155,0,3460, + 3464,3,278,139,0,3461,3462,5,64,0,0,3462,3464,3,310,155,0,3463,3460, + 1,0,0,0,3463,3461,1,0,0,0,3464,3466,1,0,0,0,3465,3387,1,0,0,0,3465, + 3409,1,0,0,0,3465,3414,1,0,0,0,3465,3437,1,0,0,0,3465,3447,1,0,0, + 0,3465,3454,1,0,0,0,3466,277,1,0,0,0,3467,3468,5,2,0,0,3468,3473, + 3,280,140,0,3469,3470,5,6,0,0,3470,3472,3,280,140,0,3471,3469,1, + 0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3473,3474,1,0,0,0,3474, + 3476,1,0,0,0,3475,3473,1,0,0,0,3476,3477,5,3,0,0,3477,279,1,0,0, + 0,3478,3481,3,822,411,0,3479,3480,5,10,0,0,3480,3482,3,282,141,0, + 3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482,281,1,0,0,0,3483,3490,3, + 382,191,0,3484,3490,3,832,416,0,3485,3490,3,722,361,0,3486,3490, + 3,196,98,0,3487,3490,3,806,403,0,3488,3490,5,407,0,0,3489,3483,1, + 0,0,0,3489,3484,1,0,0,0,3489,3485,1,0,0,0,3489,3486,1,0,0,0,3489, + 3487,1,0,0,0,3489,3488,1,0,0,0,3490,283,1,0,0,0,3491,3492,3,824, + 412,0,3492,3493,5,10,0,0,3493,3494,3,282,141,0,3494,285,1,0,0,0, + 3495,3496,5,138,0,0,3496,3497,5,360,0,0,3497,3498,3,310,155,0,3498, + 3499,5,133,0,0,3499,3501,5,450,0,0,3500,3502,3,288,144,0,3501,3500, + 1,0,0,0,3501,3502,1,0,0,0,3502,3503,1,0,0,0,3503,3506,3,806,403, + 0,3504,3505,7,43,0,0,3505,3507,3,806,403,0,3506,3504,1,0,0,0,3506, + 3507,1,0,0,0,3507,3518,1,0,0,0,3508,3509,5,138,0,0,3509,3510,5,360, + 0,0,3510,3511,3,310,155,0,3511,3512,5,309,0,0,3512,3513,5,450,0, + 0,3513,3514,3,806,403,0,3514,3515,5,94,0,0,3515,3516,3,806,403,0, + 3516,3518,1,0,0,0,3517,3495,1,0,0,0,3517,3508,1,0,0,0,3518,287,1, + 0,0,0,3519,3520,5,220,0,0,3520,3521,5,77,0,0,3521,3522,5,396,0,0, + 3522,289,1,0,0,0,3523,3524,5,46,0,0,3524,3525,5,278,0,0,3525,3526, + 5,156,0,0,3526,3528,3,310,155,0,3527,3529,5,53,0,0,3528,3527,1,0, + 0,0,3528,3529,1,0,0,0,3529,3530,1,0,0,0,3530,3531,5,62,0,0,3531, + 3532,5,360,0,0,3532,3533,3,646,323,0,3533,3536,3,164,82,0,3534,3535, + 5,206,0,0,3535,3537,3,310,155,0,3536,3534,1,0,0,0,3536,3537,1,0, + 0,0,3537,3538,1,0,0,0,3538,3539,5,36,0,0,3539,3544,3,292,146,0,3540, + 3541,5,6,0,0,3541,3543,3,292,146,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,291,1,0,0,0,3546, + 3544,1,0,0,0,3547,3548,5,278,0,0,3548,3549,5,574,0,0,3549,3551,3, + 408,204,0,3550,3552,3,406,203,0,3551,3550,1,0,0,0,3551,3552,1,0, + 0,0,3552,3560,1,0,0,0,3553,3558,5,62,0,0,3554,3559,5,325,0,0,3555, + 3556,5,83,0,0,3556,3557,5,147,0,0,3557,3559,3,310,155,0,3558,3554, + 1,0,0,0,3558,3555,1,0,0,0,3559,3561,1,0,0,0,3560,3553,1,0,0,0,3560, + 3561,1,0,0,0,3561,3563,1,0,0,0,3562,3564,5,302,0,0,3563,3562,1,0, + 0,0,3563,3564,1,0,0,0,3564,3574,1,0,0,0,3565,3566,5,211,0,0,3566, + 3568,5,574,0,0,3567,3569,3,522,261,0,3568,3567,1,0,0,0,3568,3569, + 1,0,0,0,3569,3570,1,0,0,0,3570,3574,3,376,188,0,3571,3572,5,345, + 0,0,3572,3574,3,646,323,0,3573,3547,1,0,0,0,3573,3565,1,0,0,0,3573, + 3571,1,0,0,0,3574,293,1,0,0,0,3575,3576,5,46,0,0,3576,3577,5,278, + 0,0,3577,3578,5,206,0,0,3578,3579,3,310,155,0,3579,3580,3,164,82, + 0,3580,295,1,0,0,0,3581,3582,5,138,0,0,3582,3583,5,278,0,0,3583, + 3584,5,206,0,0,3584,3585,3,310,155,0,3585,3604,3,164,82,0,3586,3587, + 5,133,0,0,3587,3592,3,292,146,0,3588,3589,5,6,0,0,3589,3591,3,292, + 146,0,3590,3588,1,0,0,0,3591,3594,1,0,0,0,3592,3590,1,0,0,0,3592, + 3593,1,0,0,0,3593,3605,1,0,0,0,3594,3592,1,0,0,0,3595,3596,5,191, + 0,0,3596,3601,3,298,149,0,3597,3598,5,6,0,0,3598,3600,3,298,149, + 0,3599,3597,1,0,0,0,3600,3603,1,0,0,0,3601,3599,1,0,0,0,3601,3602, + 1,0,0,0,3602,3605,1,0,0,0,3603,3601,1,0,0,0,3604,3586,1,0,0,0,3604, + 3595,1,0,0,0,3605,297,1,0,0,0,3606,3607,7,44,0,0,3607,3608,5,574, + 0,0,3608,3609,3,522,261,0,3609,299,1,0,0,0,3610,3611,5,301,0,0,3611, + 3612,5,281,0,0,3612,3613,5,147,0,0,3613,3614,3,814,407,0,3614,3615, + 5,94,0,0,3615,3616,3,812,406,0,3616,301,1,0,0,0,3617,3640,5,191, + 0,0,3618,3641,5,328,0,0,3619,3641,5,226,0,0,3620,3641,5,108,0,0, + 3621,3641,5,168,0,0,3622,3641,5,342,0,0,3623,3641,5,452,0,0,3624, + 3641,5,331,0,0,3625,3626,5,131,0,0,3626,3641,5,446,0,0,3627,3628, + 5,198,0,0,3628,3641,5,357,0,0,3629,3641,5,204,0,0,3630,3632,5,295, + 0,0,3631,3630,1,0,0,0,3631,3632,1,0,0,0,3632,3633,1,0,0,0,3633,3641, + 5,247,0,0,3634,3635,5,63,0,0,3635,3636,5,174,0,0,3636,3641,5,381, + 0,0,3637,3638,5,355,0,0,3638,3639,5,325,0,0,3639,3641,7,42,0,0,3640, + 3618,1,0,0,0,3640,3619,1,0,0,0,3640,3620,1,0,0,0,3640,3621,1,0,0, + 0,3640,3622,1,0,0,0,3640,3623,1,0,0,0,3640,3624,1,0,0,0,3640,3625, + 1,0,0,0,3640,3627,1,0,0,0,3640,3629,1,0,0,0,3640,3631,1,0,0,0,3640, + 3634,1,0,0,0,3640,3637,1,0,0,0,3641,3643,1,0,0,0,3642,3644,3,416, + 208,0,3643,3642,1,0,0,0,3643,3644,1,0,0,0,3644,3645,1,0,0,0,3645, + 3647,3,780,390,0,3646,3648,3,88,44,0,3647,3646,1,0,0,0,3647,3648, + 1,0,0,0,3648,3825,1,0,0,0,3649,3651,5,191,0,0,3650,3652,5,259,0, + 0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3655, + 5,376,0,0,3654,3656,3,416,208,0,3655,3654,1,0,0,0,3655,3656,1,0, + 0,0,3656,3657,1,0,0,0,3657,3662,3,774,387,0,3658,3659,5,6,0,0,3659, + 3661,3,774,387,0,3660,3658,1,0,0,0,3661,3664,1,0,0,0,3662,3660,1, + 0,0,0,3662,3663,1,0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3665, + 3667,3,88,44,0,3666,3665,1,0,0,0,3666,3667,1,0,0,0,3667,3825,1,0, + 0,0,3668,3670,5,191,0,0,3669,3671,5,63,0,0,3670,3669,1,0,0,0,3670, + 3671,1,0,0,0,3671,3672,1,0,0,0,3672,3674,5,92,0,0,3673,3675,3,416, + 208,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3676,1,0,0,0,3676, + 3678,3,758,379,0,3677,3679,3,88,44,0,3678,3677,1,0,0,0,3678,3679, + 1,0,0,0,3679,3825,1,0,0,0,3680,3681,5,191,0,0,3681,3683,5,323,0, + 0,3682,3684,3,416,208,0,3683,3682,1,0,0,0,3683,3684,1,0,0,0,3684, + 3685,1,0,0,0,3685,3687,3,760,380,0,3686,3688,3,88,44,0,3687,3686, + 1,0,0,0,3687,3688,1,0,0,0,3688,3825,1,0,0,0,3689,3690,5,191,0,0, + 3690,3692,7,45,0,0,3691,3693,3,416,208,0,3692,3691,1,0,0,0,3692, + 3693,1,0,0,0,3693,3694,1,0,0,0,3694,3695,3,816,408,0,3695,3696,5, + 80,0,0,3696,3698,3,310,155,0,3697,3699,3,88,44,0,3698,3697,1,0,0, + 0,3698,3699,1,0,0,0,3699,3825,1,0,0,0,3700,3701,5,191,0,0,3701,3703, + 7,33,0,0,3702,3704,3,416,208,0,3703,3702,1,0,0,0,3703,3704,1,0,0, + 0,3704,3705,1,0,0,0,3705,3710,3,646,323,0,3706,3707,5,6,0,0,3707, + 3709,3,646,323,0,3708,3706,1,0,0,0,3709,3712,1,0,0,0,3710,3708,1, + 0,0,0,3710,3711,1,0,0,0,3711,3714,1,0,0,0,3712,3710,1,0,0,0,3713, + 3715,3,88,44,0,3714,3713,1,0,0,0,3714,3715,1,0,0,0,3715,3825,1,0, + 0,0,3716,3717,5,191,0,0,3717,3718,5,226,0,0,3718,3720,5,109,0,0, + 3719,3721,3,416,208,0,3720,3719,1,0,0,0,3720,3721,1,0,0,0,3721,3722, + 1,0,0,0,3722,3724,3,308,154,0,3723,3725,3,88,44,0,3724,3723,1,0, + 0,0,3724,3725,1,0,0,0,3725,3825,1,0,0,0,3726,3727,5,191,0,0,3727, + 3729,5,41,0,0,3728,3730,3,416,208,0,3729,3728,1,0,0,0,3729,3730, + 1,0,0,0,3730,3731,1,0,0,0,3731,3732,5,2,0,0,3732,3733,3,646,323, + 0,3733,3734,5,36,0,0,3734,3735,3,646,323,0,3735,3737,5,3,0,0,3736, + 3738,3,88,44,0,3737,3736,1,0,0,0,3737,3738,1,0,0,0,3738,3825,1,0, + 0,0,3739,3740,5,191,0,0,3740,3741,5,278,0,0,3741,3743,7,32,0,0,3742, + 3744,3,416,208,0,3743,3742,1,0,0,0,3743,3744,1,0,0,0,3744,3745,1, + 0,0,0,3745,3746,3,310,155,0,3746,3748,3,164,82,0,3747,3749,3,88, + 44,0,3748,3747,1,0,0,0,3748,3749,1,0,0,0,3749,3825,1,0,0,0,3750, + 3751,5,191,0,0,3751,3752,5,281,0,0,3752,3753,5,147,0,0,3753,3755, + 3,814,407,0,3754,3756,3,88,44,0,3755,3754,1,0,0,0,3755,3756,1,0, + 0,0,3756,3825,1,0,0,0,3757,3758,5,191,0,0,3758,3760,5,451,0,0,3759, + 3761,3,416,208,0,3760,3759,1,0,0,0,3760,3761,1,0,0,0,3761,3762,1, + 0,0,0,3762,3764,3,816,408,0,3763,3765,3,88,44,0,3764,3763,1,0,0, + 0,3764,3765,1,0,0,0,3765,3825,1,0,0,0,3766,3767,5,191,0,0,3767,3769, + 5,351,0,0,3768,3770,3,416,208,0,3769,3768,1,0,0,0,3769,3770,1,0, + 0,0,3770,3771,1,0,0,0,3771,3825,3,766,383,0,3772,3773,5,191,0,0, + 3773,3775,5,443,0,0,3774,3776,3,416,208,0,3775,3774,1,0,0,0,3775, + 3776,1,0,0,0,3776,3777,1,0,0,0,3777,3778,5,62,0,0,3778,3779,3,646, + 323,0,3779,3780,5,247,0,0,3780,3782,3,816,408,0,3781,3783,3,88,44, + 0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,3825,1,0,0,0,3784,3785, + 5,191,0,0,3785,3787,7,46,0,0,3786,3788,3,416,208,0,3787,3786,1,0, + 0,0,3787,3788,1,0,0,0,3788,3789,1,0,0,0,3789,3825,3,814,407,0,3790, + 3791,5,191,0,0,3791,3792,5,99,0,0,3792,3794,5,257,0,0,3793,3795, + 3,416,208,0,3794,3793,1,0,0,0,3794,3795,1,0,0,0,3795,3796,1,0,0, + 0,3796,3799,5,62,0,0,3797,3800,3,812,406,0,3798,3800,5,99,0,0,3799, + 3797,1,0,0,0,3799,3798,1,0,0,0,3800,3801,1,0,0,0,3801,3802,5,331, + 0,0,3802,3825,3,816,408,0,3803,3804,5,191,0,0,3804,3806,5,175,0, + 0,3805,3807,3,416,208,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807, + 3808,1,0,0,0,3808,3822,3,784,392,0,3809,3811,5,105,0,0,3810,3809, + 1,0,0,0,3810,3811,1,0,0,0,3811,3812,1,0,0,0,3812,3813,5,2,0,0,3813, + 3818,5,209,0,0,3814,3815,5,6,0,0,3815,3817,5,209,0,0,3816,3814,1, + 0,0,0,3817,3820,1,0,0,0,3818,3816,1,0,0,0,3818,3819,1,0,0,0,3819, + 3821,1,0,0,0,3820,3818,1,0,0,0,3821,3823,5,3,0,0,3822,3810,1,0,0, + 0,3822,3823,1,0,0,0,3823,3825,1,0,0,0,3824,3617,1,0,0,0,3824,3649, + 1,0,0,0,3824,3668,1,0,0,0,3824,3680,1,0,0,0,3824,3689,1,0,0,0,3824, + 3700,1,0,0,0,3824,3716,1,0,0,0,3824,3726,1,0,0,0,3824,3739,1,0,0, + 0,3824,3750,1,0,0,0,3824,3757,1,0,0,0,3824,3766,1,0,0,0,3824,3772, + 1,0,0,0,3824,3784,1,0,0,0,3824,3790,1,0,0,0,3824,3803,1,0,0,0,3825, + 303,1,0,0,0,3826,3828,5,63,0,0,3827,3826,1,0,0,0,3827,3828,1,0,0, + 0,3828,3829,1,0,0,0,3829,3830,5,92,0,0,3830,3843,3,770,385,0,3831, + 3833,5,259,0,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0,3833,3834,1,0, + 0,0,3834,3835,5,376,0,0,3835,3843,3,774,387,0,3836,3837,7,47,0,0, + 3837,3843,3,310,155,0,3838,3839,5,355,0,0,3839,3840,5,325,0,0,3840, + 3841,7,42,0,0,3841,3843,3,310,155,0,3842,3827,1,0,0,0,3842,3832, + 1,0,0,0,3842,3836,1,0,0,0,3842,3838,1,0,0,0,3843,305,1,0,0,0,3844, + 3845,5,198,0,0,3845,3861,5,357,0,0,3846,3847,5,131,0,0,3847,3861, + 5,446,0,0,3848,3861,5,204,0,0,3849,3861,5,452,0,0,3850,3861,5,331, + 0,0,3851,3861,5,318,0,0,3852,3861,5,451,0,0,3853,3854,5,63,0,0,3854, + 3855,5,174,0,0,3855,3861,5,381,0,0,3856,3858,5,295,0,0,3857,3856, + 1,0,0,0,3857,3858,1,0,0,0,3858,3859,1,0,0,0,3859,3861,5,247,0,0, + 3860,3844,1,0,0,0,3860,3846,1,0,0,0,3860,3848,1,0,0,0,3860,3849, + 1,0,0,0,3860,3850,1,0,0,0,3860,3851,1,0,0,0,3860,3852,1,0,0,0,3860, + 3853,1,0,0,0,3860,3857,1,0,0,0,3861,3862,1,0,0,0,3862,3869,3,816, + 408,0,3863,3864,5,323,0,0,3864,3869,3,786,393,0,3865,3866,5,175, + 0,0,3866,3869,3,784,392,0,3867,3869,3,170,85,0,3868,3860,1,0,0,0, + 3868,3863,1,0,0,0,3868,3865,1,0,0,0,3868,3867,1,0,0,0,3869,307,1, + 0,0,0,3870,3875,3,310,155,0,3871,3872,5,6,0,0,3872,3874,3,310,155, + 0,3873,3871,1,0,0,0,3874,3877,1,0,0,0,3875,3873,1,0,0,0,3875,3876, + 1,0,0,0,3876,309,1,0,0,0,3877,3875,1,0,0,0,3878,3880,3,816,408,0, + 3879,3881,3,312,156,0,3880,3879,1,0,0,0,3880,3881,1,0,0,0,3881,311, + 1,0,0,0,3882,3883,5,11,0,0,3883,3885,3,822,411,0,3884,3882,1,0,0, + 0,3885,3886,1,0,0,0,3886,3884,1,0,0,0,3886,3887,1,0,0,0,3887,313, + 1,0,0,0,3888,3890,5,358,0,0,3889,3891,5,92,0,0,3890,3889,1,0,0,0, + 3890,3891,1,0,0,0,3891,3892,1,0,0,0,3892,3897,3,316,158,0,3893,3894, + 5,6,0,0,3894,3896,3,316,158,0,3895,3893,1,0,0,0,3896,3899,1,0,0, + 0,3897,3895,1,0,0,0,3897,3898,1,0,0,0,3898,3902,1,0,0,0,3899,3897, + 1,0,0,0,3900,3901,7,48,0,0,3901,3903,5,219,0,0,3902,3900,1,0,0,0, + 3902,3903,1,0,0,0,3903,3905,1,0,0,0,3904,3906,3,88,44,0,3905,3904, + 1,0,0,0,3905,3906,1,0,0,0,3906,315,1,0,0,0,3907,3909,5,81,0,0,3908, + 3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910,1,0,0,0,3910,3912,3,770, + 385,0,3911,3913,5,9,0,0,3912,3911,1,0,0,0,3912,3913,1,0,0,0,3913, + 317,1,0,0,0,3914,3915,5,159,0,0,3915,3974,5,80,0,0,3916,3975,3,304, + 152,0,3917,3975,3,306,153,0,3918,3919,5,44,0,0,3919,3921,3,816,408, + 0,3920,3922,3,312,156,0,3921,3920,1,0,0,0,3921,3922,1,0,0,0,3922, + 3923,1,0,0,0,3923,3924,5,11,0,0,3924,3925,3,796,398,0,3925,3975, + 1,0,0,0,3926,3927,7,33,0,0,3927,3975,3,646,323,0,3928,3929,5,136, + 0,0,3929,3975,3,388,194,0,3930,3931,5,211,0,0,3931,3975,3,376,188, + 0,3932,3933,5,278,0,0,3933,3975,3,410,205,0,3934,3935,5,45,0,0,3935, + 3936,3,816,408,0,3936,3942,5,80,0,0,3937,3943,3,770,385,0,3938,3940, + 5,189,0,0,3939,3938,1,0,0,0,3939,3940,1,0,0,0,3940,3941,1,0,0,0, + 3941,3943,3,310,155,0,3942,3937,1,0,0,0,3942,3939,1,0,0,0,3943,3975, + 1,0,0,0,3944,3945,7,45,0,0,3945,3946,3,816,408,0,3946,3947,5,80, + 0,0,3947,3948,3,310,155,0,3948,3975,1,0,0,0,3949,3950,5,296,0,0, + 3950,3975,3,372,186,0,3951,3952,5,442,0,0,3952,3975,3,368,184,0, + 3953,3954,5,443,0,0,3954,3955,5,62,0,0,3955,3956,3,646,323,0,3956, + 3957,5,247,0,0,3957,3958,3,816,408,0,3958,3975,1,0,0,0,3959,3960, + 5,278,0,0,3960,3961,7,32,0,0,3961,3962,3,310,155,0,3962,3963,3,164, + 82,0,3963,3975,1,0,0,0,3964,3965,5,248,0,0,3965,3966,5,274,0,0,3966, + 3975,3,196,98,0,3967,3968,5,41,0,0,3968,3969,5,2,0,0,3969,3970,3, + 646,323,0,3970,3971,5,36,0,0,3971,3972,3,646,323,0,3972,3973,5,3, + 0,0,3973,3975,1,0,0,0,3974,3916,1,0,0,0,3974,3917,1,0,0,0,3974,3918, + 1,0,0,0,3974,3926,1,0,0,0,3974,3928,1,0,0,0,3974,3930,1,0,0,0,3974, + 3932,1,0,0,0,3974,3934,1,0,0,0,3974,3944,1,0,0,0,3974,3949,1,0,0, + 0,3974,3951,1,0,0,0,3974,3953,1,0,0,0,3974,3959,1,0,0,0,3974,3964, + 1,0,0,0,3974,3967,1,0,0,0,3975,3976,1,0,0,0,3976,3979,5,116,0,0, + 3977,3980,3,806,403,0,3978,3980,5,78,0,0,3979,3977,1,0,0,0,3979, + 3978,1,0,0,0,3980,319,1,0,0,0,3981,3982,5,327,0,0,3982,3985,5,246, + 0,0,3983,3984,5,62,0,0,3984,3986,3,58,29,0,3985,3983,1,0,0,0,3985, + 3986,1,0,0,0,3986,3987,1,0,0,0,3987,4005,5,80,0,0,3988,3989,7,33, + 0,0,3989,4006,3,646,323,0,3990,3991,5,136,0,0,3991,4006,3,388,194, + 0,3992,3993,5,44,0,0,3993,4006,3,796,398,0,3994,3995,5,211,0,0,3995, + 4006,3,376,188,0,3996,3997,5,248,0,0,3997,3998,5,274,0,0,3998,4006, + 3,196,98,0,3999,4000,5,296,0,0,4000,4006,3,372,186,0,4001,4002,5, + 442,0,0,4002,4006,3,368,184,0,4003,4006,3,304,152,0,4004,4006,3, + 306,153,0,4005,3988,1,0,0,0,4005,3990,1,0,0,0,4005,3992,1,0,0,0, + 4005,3994,1,0,0,0,4005,3996,1,0,0,0,4005,3999,1,0,0,0,4005,4001, + 1,0,0,0,4005,4003,1,0,0,0,4005,4004,1,0,0,0,4006,4007,1,0,0,0,4007, + 4010,5,116,0,0,4008,4011,3,806,403,0,4009,4011,5,78,0,0,4010,4008, + 1,0,0,0,4010,4009,1,0,0,0,4011,321,1,0,0,0,4012,4013,7,49,0,0,4013, + 4014,3,324,162,0,4014,323,1,0,0,0,4015,4017,7,50,0,0,4016,4015,1, + 0,0,0,4016,4017,1,0,0,0,4017,4019,1,0,0,0,4018,4020,3,326,163,0, + 4019,4018,1,0,0,0,4019,4020,1,0,0,0,4020,4021,1,0,0,0,4021,4059, + 3,816,408,0,4022,4024,7,51,0,0,4023,4022,1,0,0,0,4023,4024,1,0,0, + 0,4024,4025,1,0,0,0,4025,4027,3,810,405,0,4026,4028,3,326,163,0, + 4027,4026,1,0,0,0,4027,4028,1,0,0,0,4028,4029,1,0,0,0,4029,4030, + 3,816,408,0,4030,4059,1,0,0,0,4031,4033,5,210,0,0,4032,4034,3,810, + 405,0,4033,4032,1,0,0,0,4033,4034,1,0,0,0,4034,4036,1,0,0,0,4035, + 4037,3,326,163,0,4036,4035,1,0,0,0,4036,4037,1,0,0,0,4037,4038,1, + 0,0,0,4038,4059,3,816,408,0,4039,4041,5,210,0,0,4040,4039,1,0,0, + 0,4040,4041,1,0,0,0,4041,4042,1,0,0,0,4042,4044,5,30,0,0,4043,4045, + 3,326,163,0,4044,4043,1,0,0,0,4044,4045,1,0,0,0,4045,4046,1,0,0, + 0,4046,4059,3,816,408,0,4047,4052,5,144,0,0,4048,4050,5,30,0,0,4049, + 4048,1,0,0,0,4049,4050,1,0,0,0,4050,4053,1,0,0,0,4051,4053,3,810, + 405,0,4052,4049,1,0,0,0,4052,4051,1,0,0,0,4053,4055,1,0,0,0,4054, + 4056,3,326,163,0,4055,4054,1,0,0,0,4055,4056,1,0,0,0,4056,4057,1, + 0,0,0,4057,4059,3,816,408,0,4058,4016,1,0,0,0,4058,4023,1,0,0,0, + 4058,4031,1,0,0,0,4058,4040,1,0,0,0,4058,4047,1,0,0,0,4059,325,1, + 0,0,0,4060,4061,7,52,0,0,4061,327,1,0,0,0,4062,4063,5,65,0,0,4063, + 4064,3,332,166,0,4064,4065,5,80,0,0,4065,4066,3,338,169,0,4066,4067, + 5,94,0,0,4067,4071,3,340,170,0,4068,4069,5,105,0,0,4069,4070,5,65, + 0,0,4070,4072,5,279,0,0,4071,4068,1,0,0,0,4071,4072,1,0,0,0,4072, + 329,1,0,0,0,4073,4077,5,317,0,0,4074,4075,5,65,0,0,4075,4076,5,279, + 0,0,4076,4078,5,62,0,0,4077,4074,1,0,0,0,4077,4078,1,0,0,0,4078, + 4079,1,0,0,0,4079,4080,3,332,166,0,4080,4081,5,80,0,0,4081,4082, + 3,338,169,0,4082,4083,5,64,0,0,4083,4085,3,340,170,0,4084,4086,3, + 88,44,0,4085,4084,1,0,0,0,4085,4086,1,0,0,0,4086,331,1,0,0,0,4087, + 4092,3,336,168,0,4088,4089,5,6,0,0,4089,4091,3,336,168,0,4090,4088, + 1,0,0,0,4091,4094,1,0,0,0,4092,4090,1,0,0,0,4092,4093,1,0,0,0,4093, + 4111,1,0,0,0,4094,4092,1,0,0,0,4095,4097,5,30,0,0,4096,4098,5,294, + 0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4100,1,0,0,0,4099,4101, + 3,138,69,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4111,1,0,0,0, + 4102,4107,3,334,167,0,4103,4104,5,6,0,0,4104,4106,3,334,167,0,4105, + 4103,1,0,0,0,4106,4109,1,0,0,0,4107,4105,1,0,0,0,4107,4108,1,0,0, + 0,4108,4111,1,0,0,0,4109,4107,1,0,0,0,4110,4087,1,0,0,0,4110,4095, + 1,0,0,0,4110,4102,1,0,0,0,4111,333,1,0,0,0,4112,4113,7,53,0,0,4113, + 335,1,0,0,0,4114,4119,5,88,0,0,4115,4119,5,86,0,0,4116,4119,5,46, + 0,0,4117,4119,3,816,408,0,4118,4114,1,0,0,0,4118,4115,1,0,0,0,4118, + 4116,1,0,0,0,4118,4117,1,0,0,0,4119,4121,1,0,0,0,4120,4122,3,138, + 69,0,4121,4120,1,0,0,0,4121,4122,1,0,0,0,4122,337,1,0,0,0,4123,4124, + 5,92,0,0,4124,4169,3,758,379,0,4125,4127,5,328,0,0,4126,4125,1,0, + 0,0,4126,4127,1,0,0,0,4127,4128,1,0,0,0,4128,4169,3,756,378,0,4129, + 4133,5,63,0,0,4130,4131,5,174,0,0,4131,4134,5,381,0,0,4132,4134, + 5,331,0,0,4133,4130,1,0,0,0,4133,4132,1,0,0,0,4134,4137,1,0,0,0, + 4135,4137,5,247,0,0,4136,4129,1,0,0,0,4136,4135,1,0,0,0,4137,4138, + 1,0,0,0,4138,4169,3,780,390,0,4139,4140,5,211,0,0,4140,4169,3,374, + 187,0,4141,4142,5,296,0,0,4142,4169,3,370,185,0,4143,4144,5,442, + 0,0,4144,4169,3,366,183,0,4145,4146,5,175,0,0,4146,4169,3,762,381, + 0,4147,4148,7,33,0,0,4148,4169,3,308,154,0,4149,4150,5,248,0,0,4150, + 4151,5,274,0,0,4151,4156,3,196,98,0,4152,4153,5,6,0,0,4153,4155, + 3,196,98,0,4154,4152,1,0,0,0,4155,4158,1,0,0,0,4156,4154,1,0,0,0, + 4156,4157,1,0,0,0,4157,4169,1,0,0,0,4158,4156,1,0,0,0,4159,4160, + 5,323,0,0,4160,4169,3,760,380,0,4161,4162,5,351,0,0,4162,4169,3, + 778,389,0,4163,4164,5,30,0,0,4164,4165,7,54,0,0,4165,4166,5,68,0, + 0,4166,4167,5,323,0,0,4167,4169,3,760,380,0,4168,4123,1,0,0,0,4168, + 4126,1,0,0,0,4168,4136,1,0,0,0,4168,4139,1,0,0,0,4168,4141,1,0,0, + 0,4168,4143,1,0,0,0,4168,4145,1,0,0,0,4168,4147,1,0,0,0,4168,4149, + 1,0,0,0,4168,4159,1,0,0,0,4168,4161,1,0,0,0,4168,4163,1,0,0,0,4169, + 339,1,0,0,0,4170,4172,5,66,0,0,4171,4170,1,0,0,0,4171,4172,1,0,0, + 0,4172,4173,1,0,0,0,4173,4174,3,812,406,0,4174,4182,1,0,0,0,4175, + 4177,5,6,0,0,4176,4178,5,66,0,0,4177,4176,1,0,0,0,4177,4178,1,0, + 0,0,4178,4179,1,0,0,0,4179,4181,3,812,406,0,4180,4175,1,0,0,0,4181, + 4184,1,0,0,0,4182,4180,1,0,0,0,4182,4183,1,0,0,0,4183,341,1,0,0, + 0,4184,4182,1,0,0,0,4185,4186,5,65,0,0,4186,4191,3,336,168,0,4187, + 4188,5,6,0,0,4188,4190,3,336,168,0,4189,4187,1,0,0,0,4190,4193,1, + 0,0,0,4191,4189,1,0,0,0,4191,4192,1,0,0,0,4192,4194,1,0,0,0,4193, + 4191,1,0,0,0,4194,4195,5,94,0,0,4195,4199,3,814,407,0,4196,4197, + 5,105,0,0,4197,4198,5,134,0,0,4198,4200,5,279,0,0,4199,4196,1,0, + 0,0,4199,4200,1,0,0,0,4200,4204,1,0,0,0,4201,4202,5,214,0,0,4202, + 4203,5,147,0,0,4203,4205,3,812,406,0,4204,4201,1,0,0,0,4204,4205, + 1,0,0,0,4205,343,1,0,0,0,4206,4210,5,317,0,0,4207,4208,5,134,0,0, + 4208,4209,5,279,0,0,4209,4211,5,62,0,0,4210,4207,1,0,0,0,4210,4211, + 1,0,0,0,4211,4212,1,0,0,0,4212,4217,3,336,168,0,4213,4214,5,6,0, + 0,4214,4216,3,336,168,0,4215,4213,1,0,0,0,4216,4219,1,0,0,0,4217, + 4215,1,0,0,0,4217,4218,1,0,0,0,4218,4220,1,0,0,0,4219,4217,1,0,0, + 0,4220,4221,5,64,0,0,4221,4225,3,814,407,0,4222,4223,5,214,0,0,4223, + 4224,5,147,0,0,4224,4226,3,812,406,0,4225,4222,1,0,0,0,4225,4226, + 1,0,0,0,4226,4228,1,0,0,0,4227,4229,3,88,44,0,4228,4227,1,0,0,0, + 4228,4229,1,0,0,0,4229,345,1,0,0,0,4230,4231,5,138,0,0,4231,4232, + 5,53,0,0,4232,4241,5,294,0,0,4233,4234,5,68,0,0,4234,4235,5,323, + 0,0,4235,4240,3,760,380,0,4236,4237,5,62,0,0,4237,4238,7,2,0,0,4238, + 4240,3,814,407,0,4239,4233,1,0,0,0,4239,4236,1,0,0,0,4240,4243,1, + 0,0,0,4241,4239,1,0,0,0,4241,4242,1,0,0,0,4242,4244,1,0,0,0,4243, + 4241,1,0,0,0,4244,4245,3,348,174,0,4245,347,1,0,0,0,4246,4247,5, + 65,0,0,4247,4248,3,332,166,0,4248,4249,5,80,0,0,4249,4250,3,350, + 175,0,4250,4251,5,94,0,0,4251,4255,3,340,170,0,4252,4253,5,105,0, + 0,4253,4254,5,65,0,0,4254,4256,5,279,0,0,4255,4252,1,0,0,0,4255, + 4256,1,0,0,0,4256,4272,1,0,0,0,4257,4261,5,317,0,0,4258,4259,5,65, + 0,0,4259,4260,5,279,0,0,4260,4262,5,62,0,0,4261,4258,1,0,0,0,4261, + 4262,1,0,0,0,4262,4263,1,0,0,0,4263,4264,3,332,166,0,4264,4265,5, + 80,0,0,4265,4266,3,350,175,0,4266,4267,5,64,0,0,4267,4269,3,340, + 170,0,4268,4270,3,88,44,0,4269,4268,1,0,0,0,4269,4270,1,0,0,0,4270, + 4272,1,0,0,0,4271,4246,1,0,0,0,4271,4257,1,0,0,0,4272,349,1,0,0, + 0,4273,4274,7,55,0,0,4274,351,1,0,0,0,4275,4277,5,46,0,0,4276,4278, + 5,98,0,0,4277,4276,1,0,0,0,4277,4278,1,0,0,0,4278,4279,1,0,0,0,4279, + 4281,5,226,0,0,4280,4282,5,109,0,0,4281,4280,1,0,0,0,4281,4282,1, + 0,0,0,4282,4284,1,0,0,0,4283,4285,3,288,144,0,4284,4283,1,0,0,0, + 4284,4285,1,0,0,0,4285,4287,1,0,0,0,4286,4288,3,816,408,0,4287,4286, + 1,0,0,0,4287,4288,1,0,0,0,4288,4289,1,0,0,0,4289,4290,5,80,0,0,4290, + 4292,3,618,309,0,4291,4293,3,164,82,0,4292,4291,1,0,0,0,4292,4293, + 1,0,0,0,4293,4294,1,0,0,0,4294,4297,3,354,177,0,4295,4296,5,441, + 0,0,4296,4298,3,354,177,0,4297,4295,1,0,0,0,4297,4298,1,0,0,0,4298, + 4304,1,0,0,0,4299,4301,5,273,0,0,4300,4302,5,77,0,0,4301,4300,1, + 0,0,0,4301,4302,1,0,0,0,4302,4303,1,0,0,0,4303,4305,5,56,0,0,4304, + 4299,1,0,0,0,4304,4305,1,0,0,0,4305,4307,1,0,0,0,4306,4308,3,94, + 47,0,4307,4306,1,0,0,0,4307,4308,1,0,0,0,4308,4310,1,0,0,0,4309, + 4311,3,170,85,0,4310,4309,1,0,0,0,4310,4311,1,0,0,0,4311,4313,1, + 0,0,0,4312,4314,3,632,316,0,4313,4312,1,0,0,0,4313,4314,1,0,0,0, + 4314,353,1,0,0,0,4315,4316,5,2,0,0,4316,4321,3,356,178,0,4317,4318, + 5,6,0,0,4318,4320,3,356,178,0,4319,4317,1,0,0,0,4320,4323,1,0,0, + 0,4321,4319,1,0,0,0,4321,4322,1,0,0,0,4322,4324,1,0,0,0,4323,4321, + 1,0,0,0,4324,4325,5,3,0,0,4325,355,1,0,0,0,4326,4333,3,796,398,0, + 4327,4333,3,682,341,0,4328,4329,5,2,0,0,4329,4330,3,668,334,0,4330, + 4331,5,3,0,0,4331,4333,1,0,0,0,4332,4326,1,0,0,0,4332,4327,1,0,0, + 0,4332,4328,1,0,0,0,4333,4335,1,0,0,0,4334,4336,3,90,45,0,4335,4334, + 1,0,0,0,4335,4336,1,0,0,0,4336,4343,1,0,0,0,4337,4339,3,310,155, + 0,4338,4337,1,0,0,0,4338,4339,1,0,0,0,4339,4344,1,0,0,0,4340,4341, + 3,310,155,0,4341,4342,3,92,46,0,4342,4344,1,0,0,0,4343,4338,1,0, + 0,0,4343,4340,1,0,0,0,4344,4346,1,0,0,0,4345,4347,7,56,0,0,4346, + 4345,1,0,0,0,4346,4347,1,0,0,0,4347,4350,1,0,0,0,4348,4349,5,273, + 0,0,4349,4351,7,57,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351, + 357,1,0,0,0,4352,4354,5,46,0,0,4353,4355,3,360,180,0,4354,4353,1, + 0,0,0,4354,4355,1,0,0,0,4355,4360,1,0,0,0,4356,4357,5,211,0,0,4357, + 4361,3,802,401,0,4358,4359,5,296,0,0,4359,4361,3,794,397,0,4360, + 4356,1,0,0,0,4360,4358,1,0,0,0,4361,4362,1,0,0,0,4362,4371,5,2,0, + 0,4363,4368,3,384,192,0,4364,4365,5,6,0,0,4365,4367,3,384,192,0, + 4366,4364,1,0,0,0,4367,4370,1,0,0,0,4368,4366,1,0,0,0,4368,4369, + 1,0,0,0,4369,4372,1,0,0,0,4370,4368,1,0,0,0,4371,4363,1,0,0,0,4371, + 4372,1,0,0,0,4372,4373,1,0,0,0,4373,4374,5,3,0,0,4374,4391,1,0,0, + 0,4375,4389,5,316,0,0,4376,4390,3,382,191,0,4377,4378,5,92,0,0,4378, + 4379,5,2,0,0,4379,4384,3,396,198,0,4380,4381,5,6,0,0,4381,4383,3, + 396,198,0,4382,4380,1,0,0,0,4383,4386,1,0,0,0,4384,4382,1,0,0,0, + 4384,4385,1,0,0,0,4385,4387,1,0,0,0,4386,4384,1,0,0,0,4387,4388, + 5,3,0,0,4388,4390,1,0,0,0,4389,4376,1,0,0,0,4389,4377,1,0,0,0,4390, + 4392,1,0,0,0,4391,4375,1,0,0,0,4391,4392,1,0,0,0,4392,4394,1,0,0, + 0,4393,4395,3,392,196,0,4394,4393,1,0,0,0,4395,4396,1,0,0,0,4396, + 4394,1,0,0,0,4396,4397,1,0,0,0,4397,4403,1,0,0,0,4398,4399,5,105, + 0,0,4399,4400,5,2,0,0,4400,4401,3,780,390,0,4401,4402,5,3,0,0,4402, + 4404,1,0,0,0,4403,4398,1,0,0,0,4403,4404,1,0,0,0,4404,359,1,0,0, + 0,4405,4406,5,82,0,0,4406,4407,5,311,0,0,4407,361,1,0,0,0,4408,4410, + 5,2,0,0,4409,4411,3,364,182,0,4410,4409,1,0,0,0,4410,4411,1,0,0, + 0,4411,4412,1,0,0,0,4412,4413,5,3,0,0,4413,363,1,0,0,0,4414,4419, + 3,378,189,0,4415,4416,5,6,0,0,4416,4418,3,378,189,0,4417,4415,1, + 0,0,0,4418,4421,1,0,0,0,4419,4417,1,0,0,0,4419,4420,1,0,0,0,4420, + 365,1,0,0,0,4421,4419,1,0,0,0,4422,4427,3,368,184,0,4423,4424,5, + 6,0,0,4424,4426,3,368,184,0,4425,4423,1,0,0,0,4426,4429,1,0,0,0, + 4427,4425,1,0,0,0,4427,4428,1,0,0,0,4428,367,1,0,0,0,4429,4427,1, + 0,0,0,4430,4431,3,790,395,0,4431,4432,3,362,181,0,4432,4436,1,0, + 0,0,4433,4436,3,830,415,0,4434,4436,3,776,388,0,4435,4430,1,0,0, + 0,4435,4433,1,0,0,0,4435,4434,1,0,0,0,4436,369,1,0,0,0,4437,4442, + 3,372,186,0,4438,4439,5,6,0,0,4439,4441,3,372,186,0,4440,4438,1, + 0,0,0,4441,4444,1,0,0,0,4442,4440,1,0,0,0,4442,4443,1,0,0,0,4443, + 371,1,0,0,0,4444,4442,1,0,0,0,4445,4446,3,792,396,0,4446,4447,3, + 362,181,0,4447,4451,1,0,0,0,4448,4451,3,830,415,0,4449,4451,3,776, + 388,0,4450,4445,1,0,0,0,4450,4448,1,0,0,0,4450,4449,1,0,0,0,4451, + 373,1,0,0,0,4452,4457,3,376,188,0,4453,4454,5,6,0,0,4454,4456,3, + 376,188,0,4455,4453,1,0,0,0,4456,4459,1,0,0,0,4457,4455,1,0,0,0, + 4457,4458,1,0,0,0,4458,375,1,0,0,0,4459,4457,1,0,0,0,4460,4461,3, + 804,402,0,4461,4462,3,362,181,0,4462,4466,1,0,0,0,4463,4466,3,830, + 415,0,4464,4466,3,776,388,0,4465,4460,1,0,0,0,4465,4463,1,0,0,0, + 4465,4464,1,0,0,0,4466,377,1,0,0,0,4467,4469,3,380,190,0,4468,4470, + 3,818,409,0,4469,4468,1,0,0,0,4469,4470,1,0,0,0,4470,4476,1,0,0, + 0,4471,4473,3,818,409,0,4472,4474,3,380,190,0,4473,4472,1,0,0,0, + 4473,4474,1,0,0,0,4474,4476,1,0,0,0,4475,4467,1,0,0,0,4475,4471, + 1,0,0,0,4475,4476,1,0,0,0,4476,4477,1,0,0,0,4477,4478,3,382,191, + 0,4478,379,1,0,0,0,4479,4481,5,68,0,0,4480,4482,5,453,0,0,4481,4480, + 1,0,0,0,4481,4482,1,0,0,0,4482,4487,1,0,0,0,4483,4487,5,453,0,0, + 4484,4487,5,400,0,0,4485,4487,5,101,0,0,4486,4479,1,0,0,0,4486,4483, + 1,0,0,0,4486,4484,1,0,0,0,4486,4485,1,0,0,0,4487,381,1,0,0,0,4488, + 4498,3,646,323,0,4489,4491,5,415,0,0,4490,4489,1,0,0,0,4490,4491, + 1,0,0,0,4491,4492,1,0,0,0,4492,4493,3,818,409,0,4493,4494,3,312, + 156,0,4494,4495,5,27,0,0,4495,4496,5,360,0,0,4496,4498,1,0,0,0,4497, + 4488,1,0,0,0,4497,4490,1,0,0,0,4498,383,1,0,0,0,4499,4502,3,378, + 189,0,4500,4501,7,58,0,0,4501,4503,3,668,334,0,4502,4500,1,0,0,0, + 4502,4503,1,0,0,0,4503,385,1,0,0,0,4504,4514,5,2,0,0,4505,4515,5, + 9,0,0,4506,4508,3,364,182,0,4507,4506,1,0,0,0,4507,4508,1,0,0,0, + 4508,4512,1,0,0,0,4509,4510,5,83,0,0,4510,4511,5,147,0,0,4511,4513, + 3,364,182,0,4512,4509,1,0,0,0,4512,4513,1,0,0,0,4513,4515,1,0,0, + 0,4514,4505,1,0,0,0,4514,4507,1,0,0,0,4515,4516,1,0,0,0,4516,4517, + 5,3,0,0,4517,387,1,0,0,0,4518,4519,3,804,402,0,4519,4520,3,386,193, + 0,4520,389,1,0,0,0,4521,4522,5,316,0,0,4522,4525,5,78,0,0,4523,4525, + 5,149,0,0,4524,4521,1,0,0,0,4524,4523,1,0,0,0,4525,4526,1,0,0,0, + 4526,4527,5,80,0,0,4527,4528,5,78,0,0,4528,4551,5,458,0,0,4529,4551, + 5,346,0,0,4530,4551,5,222,0,0,4531,4551,5,338,0,0,4532,4551,5,377, + 0,0,4533,4535,5,205,0,0,4534,4533,1,0,0,0,4534,4535,1,0,0,0,4535, + 4536,1,0,0,0,4536,4537,5,327,0,0,4537,4551,7,59,0,0,4538,4551,5, + 250,0,0,4539,4540,5,77,0,0,4540,4551,5,250,0,0,4541,4542,7,60,0, + 0,4542,4551,3,196,98,0,4543,4544,5,459,0,0,4544,4551,3,310,155,0, + 4545,4546,5,333,0,0,4546,4551,3,42,21,0,4547,4551,3,60,30,0,4548, + 4549,5,460,0,0,4549,4551,3,816,408,0,4550,4524,1,0,0,0,4550,4529, + 1,0,0,0,4550,4530,1,0,0,0,4550,4531,1,0,0,0,4550,4532,1,0,0,0,4550, + 4534,1,0,0,0,4550,4538,1,0,0,0,4550,4539,1,0,0,0,4550,4541,1,0,0, + 0,4550,4543,1,0,0,0,4550,4545,1,0,0,0,4550,4547,1,0,0,0,4550,4548, + 1,0,0,0,4551,391,1,0,0,0,4552,4553,5,36,0,0,4553,4554,3,806,403, + 0,4554,4555,3,456,228,0,4555,4588,1,0,0,0,4556,4557,5,247,0,0,4557, + 4588,3,58,29,0,4558,4559,5,443,0,0,4559,4560,5,62,0,0,4560,4561, + 5,360,0,0,4561,4568,3,646,323,0,4562,4563,5,6,0,0,4563,4564,5,62, + 0,0,4564,4565,5,360,0,0,4565,4567,3,646,323,0,4566,4562,1,0,0,0, + 4567,4570,1,0,0,0,4568,4566,1,0,0,0,4568,4569,1,0,0,0,4569,4588, + 1,0,0,0,4570,4568,1,0,0,0,4571,4588,5,104,0,0,4572,4573,5,333,0, + 0,4573,4580,3,816,408,0,4574,4575,5,94,0,0,4575,4581,3,816,408,0, + 4576,4577,5,10,0,0,4577,4581,3,816,408,0,4578,4579,5,64,0,0,4579, + 4581,5,434,0,0,4580,4574,1,0,0,0,4580,4576,1,0,0,0,4580,4578,1,0, + 0,0,4581,4588,1,0,0,0,4582,4583,5,36,0,0,4583,4588,3,816,408,0,4584, + 4588,3,4,2,0,4585,4588,3,390,195,0,4586,4588,3,816,408,0,4587,4552, + 1,0,0,0,4587,4556,1,0,0,0,4587,4558,1,0,0,0,4587,4571,1,0,0,0,4587, + 4572,1,0,0,0,4587,4582,1,0,0,0,4587,4584,1,0,0,0,4587,4585,1,0,0, + 0,4587,4586,1,0,0,0,4588,393,1,0,0,0,4589,4590,5,105,0,0,4590,4591, + 3,278,139,0,4591,395,1,0,0,0,4592,4593,3,796,398,0,4593,4594,3,382, + 191,0,4594,397,1,0,0,0,4595,4602,5,138,0,0,4596,4597,5,211,0,0,4597, + 4603,3,376,188,0,4598,4599,5,296,0,0,4599,4603,3,372,186,0,4600, + 4601,5,442,0,0,4601,4603,3,368,184,0,4602,4596,1,0,0,0,4602,4598, + 1,0,0,0,4602,4600,1,0,0,0,4603,4605,1,0,0,0,4604,4606,3,390,195, + 0,4605,4604,1,0,0,0,4606,4607,1,0,0,0,4607,4605,1,0,0,0,4607,4608, + 1,0,0,0,4608,4610,1,0,0,0,4609,4611,5,315,0,0,4610,4609,1,0,0,0, + 4610,4611,1,0,0,0,4611,399,1,0,0,0,4612,4628,5,191,0,0,4613,4615, + 5,211,0,0,4614,4616,3,416,208,0,4615,4614,1,0,0,0,4615,4616,1,0, + 0,0,4616,4617,1,0,0,0,4617,4629,3,374,187,0,4618,4620,5,296,0,0, + 4619,4621,3,416,208,0,4620,4619,1,0,0,0,4620,4621,1,0,0,0,4621,4622, + 1,0,0,0,4622,4629,3,370,185,0,4623,4625,5,442,0,0,4624,4626,3,416, + 208,0,4625,4624,1,0,0,0,4625,4626,1,0,0,0,4626,4627,1,0,0,0,4627, + 4629,3,366,183,0,4628,4613,1,0,0,0,4628,4618,1,0,0,0,4628,4623,1, + 0,0,0,4629,4631,1,0,0,0,4630,4632,3,88,44,0,4631,4630,1,0,0,0,4631, + 4632,1,0,0,0,4632,401,1,0,0,0,4633,4634,5,191,0,0,4634,4636,5,136, + 0,0,4635,4637,3,416,208,0,4636,4635,1,0,0,0,4636,4637,1,0,0,0,4637, + 4638,1,0,0,0,4638,4643,3,388,194,0,4639,4640,5,6,0,0,4640,4642,3, + 388,194,0,4641,4639,1,0,0,0,4642,4645,1,0,0,0,4643,4641,1,0,0,0, + 4643,4644,1,0,0,0,4644,4647,1,0,0,0,4645,4643,1,0,0,0,4646,4648, + 3,88,44,0,4647,4646,1,0,0,0,4647,4648,1,0,0,0,4648,403,1,0,0,0,4649, + 4650,5,191,0,0,4650,4652,5,278,0,0,4651,4653,3,416,208,0,4652,4651, + 1,0,0,0,4652,4653,1,0,0,0,4653,4654,1,0,0,0,4654,4659,3,410,205, + 0,4655,4656,5,6,0,0,4656,4658,3,410,205,0,4657,4655,1,0,0,0,4658, + 4661,1,0,0,0,4659,4657,1,0,0,0,4659,4660,1,0,0,0,4660,4663,1,0,0, + 0,4661,4659,1,0,0,0,4662,4664,3,88,44,0,4663,4662,1,0,0,0,4663,4664, + 1,0,0,0,4664,405,1,0,0,0,4665,4678,5,2,0,0,4666,4669,3,646,323,0, + 4667,4668,5,6,0,0,4668,4670,3,646,323,0,4669,4667,1,0,0,0,4669,4670, + 1,0,0,0,4670,4679,1,0,0,0,4671,4672,5,407,0,0,4672,4673,5,6,0,0, + 4673,4679,3,646,323,0,4674,4675,3,646,323,0,4675,4676,5,6,0,0,4676, + 4677,5,407,0,0,4677,4679,1,0,0,0,4678,4666,1,0,0,0,4678,4671,1,0, + 0,0,4678,4674,1,0,0,0,4679,4680,1,0,0,0,4680,4681,5,3,0,0,4681,407, + 1,0,0,0,4682,4683,3,816,408,0,4683,4684,5,11,0,0,4684,4686,1,0,0, + 0,4685,4682,1,0,0,0,4686,4689,1,0,0,0,4687,4685,1,0,0,0,4687,4688, + 1,0,0,0,4688,4690,1,0,0,0,4689,4687,1,0,0,0,4690,4691,3,716,358, + 0,4691,409,1,0,0,0,4692,4693,3,408,204,0,4693,4694,3,406,203,0,4694, + 411,1,0,0,0,4695,4699,5,57,0,0,4696,4700,3,806,403,0,4697,4698,5, + 247,0,0,4698,4700,3,58,29,0,4699,4696,1,0,0,0,4699,4697,1,0,0,0, + 4700,4701,1,0,0,0,4701,4699,1,0,0,0,4701,4702,1,0,0,0,4702,413,1, + 0,0,0,4703,4704,5,46,0,0,4704,4705,5,41,0,0,4705,4706,5,2,0,0,4706, + 4707,3,646,323,0,4707,4708,5,36,0,0,4708,4709,3,646,323,0,4709,4726, + 5,3,0,0,4710,4711,5,379,0,0,4711,4714,5,211,0,0,4712,4713,5,36,0, + 0,4713,4715,7,61,0,0,4714,4712,1,0,0,0,4714,4715,1,0,0,0,4715,4727, + 1,0,0,0,4716,4720,5,105,0,0,4717,4718,5,211,0,0,4718,4721,3,376, + 188,0,4719,4721,5,400,0,0,4720,4717,1,0,0,0,4720,4719,1,0,0,0,4721, + 4724,1,0,0,0,4722,4723,5,36,0,0,4723,4725,7,61,0,0,4724,4722,1,0, + 0,0,4724,4725,1,0,0,0,4725,4727,1,0,0,0,4726,4710,1,0,0,0,4726,4716, + 1,0,0,0,4727,415,1,0,0,0,4728,4729,5,220,0,0,4729,4730,5,396,0,0, + 4730,417,1,0,0,0,4731,4733,5,46,0,0,4732,4734,3,360,180,0,4733,4732, + 1,0,0,0,4733,4734,1,0,0,0,4734,4735,1,0,0,0,4735,4736,5,443,0,0, + 4736,4737,5,62,0,0,4737,4738,3,646,323,0,4738,4739,5,247,0,0,4739, + 4740,3,816,408,0,4740,4755,5,2,0,0,4741,4742,5,64,0,0,4742,4746, + 3,420,210,0,4743,4744,5,6,0,0,4744,4745,5,94,0,0,4745,4747,3,420, + 210,0,4746,4743,1,0,0,0,4746,4747,1,0,0,0,4747,4756,1,0,0,0,4748, + 4749,5,94,0,0,4749,4753,3,420,210,0,4750,4751,5,6,0,0,4751,4752, + 5,64,0,0,4752,4754,3,420,210,0,4753,4750,1,0,0,0,4753,4754,1,0,0, + 0,4754,4756,1,0,0,0,4755,4741,1,0,0,0,4755,4748,1,0,0,0,4756,4757, + 1,0,0,0,4757,4758,5,3,0,0,4758,419,1,0,0,0,4759,4760,5,461,0,0,4760, + 4761,5,105,0,0,4761,4762,5,211,0,0,4762,4763,3,376,188,0,4763,421, + 1,0,0,0,4764,4775,5,306,0,0,4765,4766,5,2,0,0,4766,4771,5,128,0, + 0,4767,4768,5,6,0,0,4768,4770,5,128,0,0,4769,4767,1,0,0,0,4770,4773, + 1,0,0,0,4771,4769,1,0,0,0,4771,4772,1,0,0,0,4772,4774,1,0,0,0,4773, + 4771,1,0,0,0,4774,4776,5,3,0,0,4775,4765,1,0,0,0,4775,4776,1,0,0, + 0,4776,4802,1,0,0,0,4777,4779,5,226,0,0,4778,4780,5,109,0,0,4779, + 4778,1,0,0,0,4779,4780,1,0,0,0,4780,4781,1,0,0,0,4781,4803,3,776, + 388,0,4782,4784,5,92,0,0,4783,4785,5,109,0,0,4784,4783,1,0,0,0,4784, + 4785,1,0,0,0,4785,4786,1,0,0,0,4786,4803,3,770,385,0,4787,4789,5, + 323,0,0,4788,4790,5,109,0,0,4789,4788,1,0,0,0,4789,4790,1,0,0,0, + 4790,4791,1,0,0,0,4791,4803,3,786,393,0,4792,4794,5,349,0,0,4793, + 4795,5,109,0,0,4794,4793,1,0,0,0,4794,4795,1,0,0,0,4795,4796,1,0, + 0,0,4796,4803,3,816,408,0,4797,4799,5,175,0,0,4798,4800,5,109,0, + 0,4799,4798,1,0,0,0,4799,4800,1,0,0,0,4800,4801,1,0,0,0,4801,4803, + 3,784,392,0,4802,4777,1,0,0,0,4802,4782,1,0,0,0,4802,4787,1,0,0, + 0,4802,4792,1,0,0,0,4802,4797,1,0,0,0,4803,423,1,0,0,0,4804,4805, + 5,138,0,0,4805,4806,3,170,85,0,4806,4807,7,16,0,0,4807,4808,3,92, + 46,0,4808,425,1,0,0,0,4809,4814,5,138,0,0,4810,4811,5,136,0,0,4811, + 4815,3,388,194,0,4812,4813,5,442,0,0,4813,4815,3,368,184,0,4814, + 4810,1,0,0,0,4814,4812,1,0,0,0,4815,4816,1,0,0,0,4816,4817,5,309, + 0,0,4817,4818,5,94,0,0,4818,4819,3,816,408,0,4819,5017,1,0,0,0,4820, + 4821,5,138,0,0,4821,4822,5,175,0,0,4822,4823,3,784,392,0,4823,4824, + 5,309,0,0,4824,4825,5,94,0,0,4825,4826,3,782,391,0,4826,5017,1,0, + 0,0,4827,4828,5,138,0,0,4828,4829,7,62,0,0,4829,4830,3,310,155,0, + 4830,4831,5,309,0,0,4831,4832,5,94,0,0,4832,4833,3,816,408,0,4833, + 5017,1,0,0,0,4834,4835,5,138,0,0,4835,4836,5,211,0,0,4836,4837,3, + 376,188,0,4837,4838,5,309,0,0,4838,4839,5,94,0,0,4839,4840,3,802, + 401,0,4840,5017,1,0,0,0,4841,4842,5,138,0,0,4842,4843,5,278,0,0, + 4843,4844,7,32,0,0,4844,4845,3,310,155,0,4845,4846,3,164,82,0,4846, + 4847,5,309,0,0,4847,4848,5,94,0,0,4848,4849,3,816,408,0,4849,5017, + 1,0,0,0,4850,4851,5,138,0,0,4851,4852,5,296,0,0,4852,4853,3,372, + 186,0,4853,4854,5,309,0,0,4854,4855,5,94,0,0,4855,4856,3,794,397, + 0,4856,5017,1,0,0,0,4857,4858,5,138,0,0,4858,4859,5,323,0,0,4859, + 4860,3,786,393,0,4860,4861,5,309,0,0,4861,4862,5,94,0,0,4862,4863, + 3,32,16,0,4863,5017,1,0,0,0,4864,4865,5,138,0,0,4865,4867,7,63,0, + 0,4866,4868,3,416,208,0,4867,4866,1,0,0,0,4867,4868,1,0,0,0,4868, + 4869,1,0,0,0,4869,4870,3,776,388,0,4870,4871,5,309,0,0,4871,4872, + 5,94,0,0,4872,4873,3,816,408,0,4873,5017,1,0,0,0,4874,4876,5,138, + 0,0,4875,4877,5,259,0,0,4876,4875,1,0,0,0,4876,4877,1,0,0,0,4877, + 4878,1,0,0,0,4878,4880,5,376,0,0,4879,4881,3,416,208,0,4880,4879, + 1,0,0,0,4880,4881,1,0,0,0,4881,4882,1,0,0,0,4882,4883,3,774,387, + 0,4883,4884,5,309,0,0,4884,4885,5,94,0,0,4885,4886,3,772,386,0,4886, + 5017,1,0,0,0,4887,4889,5,138,0,0,4888,4890,5,63,0,0,4889,4888,1, + 0,0,0,4889,4890,1,0,0,0,4890,4891,1,0,0,0,4891,4893,5,92,0,0,4892, + 4894,3,416,208,0,4893,4892,1,0,0,0,4893,4894,1,0,0,0,4894,4895,1, + 0,0,0,4895,4896,3,618,309,0,4896,4897,5,309,0,0,4897,4898,5,94,0, + 0,4898,4899,3,768,384,0,4899,5017,1,0,0,0,4900,4925,5,138,0,0,4901, + 4903,5,63,0,0,4902,4901,1,0,0,0,4902,4903,1,0,0,0,4903,4904,1,0, + 0,0,4904,4906,5,92,0,0,4905,4907,3,416,208,0,4906,4905,1,0,0,0,4906, + 4907,1,0,0,0,4907,4908,1,0,0,0,4908,4909,3,618,309,0,4909,4911,5, + 309,0,0,4910,4912,5,44,0,0,4911,4910,1,0,0,0,4911,4912,1,0,0,0,4912, + 4926,1,0,0,0,4913,4915,5,259,0,0,4914,4913,1,0,0,0,4914,4915,1,0, + 0,0,4915,4916,1,0,0,0,4916,4918,5,376,0,0,4917,4919,3,416,208,0, + 4918,4917,1,0,0,0,4918,4919,1,0,0,0,4919,4920,1,0,0,0,4920,4921, + 3,774,387,0,4921,4923,5,309,0,0,4922,4924,5,44,0,0,4923,4922,1,0, + 0,0,4923,4924,1,0,0,0,4924,4926,1,0,0,0,4925,4902,1,0,0,0,4925,4914, + 1,0,0,0,4926,4927,1,0,0,0,4927,4928,3,796,398,0,4928,4929,5,94,0, + 0,4929,4930,3,800,400,0,4930,5017,1,0,0,0,4931,4939,5,138,0,0,4932, + 4934,5,92,0,0,4933,4935,3,416,208,0,4934,4933,1,0,0,0,4934,4935, + 1,0,0,0,4935,4936,1,0,0,0,4936,4940,3,618,309,0,4937,4938,5,189, + 0,0,4938,4940,3,310,155,0,4939,4932,1,0,0,0,4939,4937,1,0,0,0,4940, + 4941,1,0,0,0,4941,4942,5,309,0,0,4942,4943,5,45,0,0,4943,4944,3, + 816,408,0,4944,4945,5,94,0,0,4945,4946,3,816,408,0,4946,5017,1,0, + 0,0,4947,4954,5,138,0,0,4948,4950,5,445,0,0,4949,4951,3,416,208, + 0,4950,4949,1,0,0,0,4950,4951,1,0,0,0,4951,4955,1,0,0,0,4952,4955, + 5,321,0,0,4953,4955,5,357,0,0,4954,4948,1,0,0,0,4954,4952,1,0,0, + 0,4954,4953,1,0,0,0,4955,4956,1,0,0,0,4956,4957,3,816,408,0,4957, + 4958,5,80,0,0,4958,4959,3,776,388,0,4959,4960,5,309,0,0,4960,4961, + 5,94,0,0,4961,4962,3,816,408,0,4962,5017,1,0,0,0,4963,4976,5,138, + 0,0,4964,4965,5,63,0,0,4965,4966,5,174,0,0,4966,4977,5,381,0,0,4967, + 4969,5,295,0,0,4968,4967,1,0,0,0,4968,4969,1,0,0,0,4969,4970,1,0, + 0,0,4970,4977,5,247,0,0,4971,4977,5,452,0,0,4972,4977,5,331,0,0, + 4973,4977,5,451,0,0,4974,4975,5,198,0,0,4975,4977,5,357,0,0,4976, + 4964,1,0,0,0,4976,4968,1,0,0,0,4976,4971,1,0,0,0,4976,4972,1,0,0, + 0,4976,4973,1,0,0,0,4976,4974,1,0,0,0,4977,4978,1,0,0,0,4978,4979, + 3,816,408,0,4979,4980,5,309,0,0,4980,4981,5,94,0,0,4981,4982,3,816, + 408,0,4982,5017,1,0,0,0,4983,4984,5,138,0,0,4984,4985,7,46,0,0,4985, + 4986,3,812,406,0,4986,4987,5,309,0,0,4987,4988,5,94,0,0,4988,4989, + 3,812,406,0,4989,5017,1,0,0,0,4990,4991,5,138,0,0,4991,4992,3,170, + 85,0,4992,4993,5,309,0,0,4993,4994,5,94,0,0,4994,4995,3,766,383, + 0,4995,5017,1,0,0,0,4996,4997,5,138,0,0,4997,4998,5,355,0,0,4998, + 4999,5,325,0,0,4999,5000,7,42,0,0,5000,5001,3,310,155,0,5001,5002, + 5,309,0,0,5002,5003,5,94,0,0,5003,5004,3,816,408,0,5004,5017,1,0, + 0,0,5005,5006,5,138,0,0,5006,5007,5,360,0,0,5007,5008,3,310,155, + 0,5008,5009,5,309,0,0,5009,5010,5,143,0,0,5010,5011,3,816,408,0, + 5011,5012,5,94,0,0,5012,5014,3,816,408,0,5013,5015,3,88,44,0,5014, + 5013,1,0,0,0,5014,5015,1,0,0,0,5015,5017,1,0,0,0,5016,4809,1,0,0, + 0,5016,4820,1,0,0,0,5016,4827,1,0,0,0,5016,4834,1,0,0,0,5016,4841, + 1,0,0,0,5016,4850,1,0,0,0,5016,4857,1,0,0,0,5016,4864,1,0,0,0,5016, + 4874,1,0,0,0,5016,4887,1,0,0,0,5016,4900,1,0,0,0,5016,4931,1,0,0, + 0,5016,4947,1,0,0,0,5016,4963,1,0,0,0,5016,4983,1,0,0,0,5016,4990, + 1,0,0,0,5016,4996,1,0,0,0,5016,5005,1,0,0,0,5017,427,1,0,0,0,5018, + 5035,5,138,0,0,5019,5020,5,211,0,0,5020,5036,3,376,188,0,5021,5022, + 5,296,0,0,5022,5036,3,372,186,0,5023,5024,5,442,0,0,5024,5036,3, + 368,184,0,5025,5026,5,357,0,0,5026,5027,3,816,408,0,5027,5028,5, + 80,0,0,5028,5029,3,776,388,0,5029,5036,1,0,0,0,5030,5031,5,259,0, + 0,5031,5032,5,376,0,0,5032,5036,3,774,387,0,5033,5034,5,226,0,0, + 5034,5036,3,776,388,0,5035,5019,1,0,0,0,5035,5021,1,0,0,0,5035,5023, + 1,0,0,0,5035,5025,1,0,0,0,5035,5030,1,0,0,0,5035,5033,1,0,0,0,5036, + 5038,1,0,0,0,5037,5039,5,269,0,0,5038,5037,1,0,0,0,5038,5039,1,0, + 0,0,5039,5040,1,0,0,0,5040,5041,5,462,0,0,5041,5042,5,80,0,0,5042, + 5043,5,204,0,0,5043,5044,3,816,408,0,5044,429,1,0,0,0,5045,5084, + 5,138,0,0,5046,5047,5,136,0,0,5047,5085,3,388,194,0,5048,5049,5, + 204,0,0,5049,5085,3,816,408,0,5050,5051,5,211,0,0,5051,5085,3,376, + 188,0,5052,5053,5,278,0,0,5053,5085,3,410,205,0,5054,5055,5,278, + 0,0,5055,5056,7,32,0,0,5056,5057,3,310,155,0,5057,5058,3,164,82, + 0,5058,5085,1,0,0,0,5059,5060,5,296,0,0,5060,5085,3,372,186,0,5061, + 5062,5,442,0,0,5062,5085,3,368,184,0,5063,5065,5,328,0,0,5064,5066, + 3,416,208,0,5065,5064,1,0,0,0,5065,5066,1,0,0,0,5066,5067,1,0,0, + 0,5067,5085,3,776,388,0,5068,5070,5,259,0,0,5069,5068,1,0,0,0,5069, + 5070,1,0,0,0,5070,5071,1,0,0,0,5071,5073,5,376,0,0,5072,5074,3,416, + 208,0,5073,5072,1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0,0,5075, + 5085,3,774,387,0,5076,5078,5,63,0,0,5077,5076,1,0,0,0,5077,5078, + 1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,92,0,0,5080,5082,3,416,208, + 0,5081,5080,1,0,0,0,5081,5082,1,0,0,0,5082,5083,1,0,0,0,5083,5085, + 3,618,309,0,5084,5046,1,0,0,0,5084,5048,1,0,0,0,5084,5050,1,0,0, + 0,5084,5052,1,0,0,0,5084,5054,1,0,0,0,5084,5059,1,0,0,0,5084,5061, + 1,0,0,0,5084,5063,1,0,0,0,5084,5069,1,0,0,0,5084,5077,1,0,0,0,5085, + 5086,1,0,0,0,5086,5087,5,333,0,0,5087,5088,5,323,0,0,5088,5089,3, + 786,393,0,5089,5107,1,0,0,0,5090,5099,5,138,0,0,5091,5092,5,355, + 0,0,5092,5093,5,325,0,0,5093,5100,7,42,0,0,5094,5100,5,108,0,0,5095, + 5100,5,168,0,0,5096,5100,5,189,0,0,5097,5100,5,342,0,0,5098,5100, + 5,360,0,0,5099,5091,1,0,0,0,5099,5094,1,0,0,0,5099,5095,1,0,0,0, + 5099,5096,1,0,0,0,5099,5097,1,0,0,0,5099,5098,1,0,0,0,5100,5101, + 1,0,0,0,5101,5102,3,310,155,0,5102,5103,5,333,0,0,5103,5104,5,323, + 0,0,5104,5105,3,786,393,0,5105,5107,1,0,0,0,5106,5045,1,0,0,0,5106, + 5090,1,0,0,0,5107,431,1,0,0,0,5108,5109,5,138,0,0,5109,5110,5,278, + 0,0,5110,5111,3,410,205,0,5111,5112,5,333,0,0,5112,5113,3,434,217, + 0,5113,433,1,0,0,0,5114,5115,5,2,0,0,5115,5120,3,436,218,0,5116, + 5117,5,6,0,0,5117,5119,3,436,218,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,3,0,0,5124,435,1,0,0,0,5125,5126,3,822, + 411,0,5126,5133,5,10,0,0,5127,5134,5,407,0,0,5128,5134,3,382,191, + 0,5129,5134,3,832,416,0,5130,5134,3,722,361,0,5131,5134,3,196,98, + 0,5132,5134,3,806,403,0,5133,5127,1,0,0,0,5133,5128,1,0,0,0,5133, + 5129,1,0,0,0,5133,5130,1,0,0,0,5133,5131,1,0,0,0,5133,5132,1,0,0, + 0,5134,437,1,0,0,0,5135,5136,5,138,0,0,5136,5137,5,360,0,0,5137, + 5138,3,310,155,0,5138,5139,5,333,0,0,5139,5140,3,434,217,0,5140, + 439,1,0,0,0,5141,5142,5,138,0,0,5142,5143,5,278,0,0,5143,5144,7, + 32,0,0,5144,5145,3,310,155,0,5145,5146,3,164,82,0,5146,5147,5,282, + 0,0,5147,5148,5,94,0,0,5148,5149,3,812,406,0,5149,5216,1,0,0,0,5150, + 5177,5,138,0,0,5151,5152,5,136,0,0,5152,5178,3,388,194,0,5153,5154, + 5,175,0,0,5154,5178,3,784,392,0,5155,5156,5,211,0,0,5156,5178,3, + 376,188,0,5157,5159,5,295,0,0,5158,5157,1,0,0,0,5158,5159,1,0,0, + 0,5159,5160,1,0,0,0,5160,5161,5,247,0,0,5161,5178,3,816,408,0,5162, + 5163,5,248,0,0,5163,5164,5,274,0,0,5164,5178,3,196,98,0,5165,5166, + 5,248,0,0,5166,5167,5,274,0,0,5167,5178,3,196,98,0,5168,5169,5,278, + 0,0,5169,5178,3,410,205,0,5170,5171,5,296,0,0,5171,5178,3,372,186, + 0,5172,5173,5,442,0,0,5173,5178,3,368,184,0,5174,5175,5,323,0,0, + 5175,5178,3,786,393,0,5176,5178,3,170,85,0,5177,5151,1,0,0,0,5177, + 5153,1,0,0,0,5177,5155,1,0,0,0,5177,5158,1,0,0,0,5177,5162,1,0,0, + 0,5177,5165,1,0,0,0,5177,5168,1,0,0,0,5177,5170,1,0,0,0,5177,5172, + 1,0,0,0,5177,5174,1,0,0,0,5177,5176,1,0,0,0,5178,5179,1,0,0,0,5179, + 5180,5,282,0,0,5180,5181,5,94,0,0,5181,5182,3,812,406,0,5182,5216, + 1,0,0,0,5183,5192,5,138,0,0,5184,5185,5,355,0,0,5185,5186,5,325, + 0,0,5186,5193,7,64,0,0,5187,5193,5,108,0,0,5188,5193,5,168,0,0,5189, + 5193,5,189,0,0,5190,5193,5,360,0,0,5191,5193,5,342,0,0,5192,5184, + 1,0,0,0,5192,5187,1,0,0,0,5192,5188,1,0,0,0,5192,5189,1,0,0,0,5192, + 5190,1,0,0,0,5192,5191,1,0,0,0,5193,5194,1,0,0,0,5194,5195,3,310, + 155,0,5195,5196,5,282,0,0,5196,5197,5,94,0,0,5197,5198,3,812,406, + 0,5198,5216,1,0,0,0,5199,5208,5,138,0,0,5200,5209,5,331,0,0,5201, + 5202,5,63,0,0,5202,5203,5,174,0,0,5203,5209,5,381,0,0,5204,5205, + 5,198,0,0,5205,5209,5,357,0,0,5206,5209,5,452,0,0,5207,5209,5,451, + 0,0,5208,5200,1,0,0,0,5208,5201,1,0,0,0,5208,5204,1,0,0,0,5208,5206, + 1,0,0,0,5208,5207,1,0,0,0,5209,5210,1,0,0,0,5210,5211,3,816,408, + 0,5211,5212,5,282,0,0,5212,5213,5,94,0,0,5213,5214,3,812,406,0,5214, + 5216,1,0,0,0,5215,5141,1,0,0,0,5215,5150,1,0,0,0,5215,5183,1,0,0, + 0,5215,5199,1,0,0,0,5216,441,1,0,0,0,5217,5218,5,46,0,0,5218,5219, + 5,452,0,0,5219,5226,3,816,408,0,5220,5221,5,62,0,0,5221,5222,5,92, + 0,0,5222,5227,3,622,311,0,5223,5224,5,62,0,0,5224,5225,5,30,0,0, + 5225,5227,5,350,0,0,5226,5220,1,0,0,0,5226,5223,1,0,0,0,5226,5227, + 1,0,0,0,5227,5229,1,0,0,0,5228,5230,3,394,197,0,5229,5228,1,0,0, + 0,5229,5230,1,0,0,0,5230,443,1,0,0,0,5231,5232,5,138,0,0,5232,5233, + 5,452,0,0,5233,5251,3,816,408,0,5234,5235,5,282,0,0,5235,5236,5, + 94,0,0,5236,5252,3,812,406,0,5237,5238,5,333,0,0,5238,5252,3,278, + 139,0,5239,5240,5,309,0,0,5240,5241,5,94,0,0,5241,5252,3,816,408, + 0,5242,5243,7,35,0,0,5243,5248,3,620,310,0,5244,5245,5,6,0,0,5245, + 5247,3,620,310,0,5246,5244,1,0,0,0,5247,5250,1,0,0,0,5248,5246,1, + 0,0,0,5248,5249,1,0,0,0,5249,5252,1,0,0,0,5250,5248,1,0,0,0,5251, + 5234,1,0,0,0,5251,5237,1,0,0,0,5251,5239,1,0,0,0,5251,5242,1,0,0, + 0,5252,445,1,0,0,0,5253,5254,5,46,0,0,5254,5255,5,451,0,0,5255,5256, + 3,816,408,0,5256,5257,5,164,0,0,5257,5258,3,806,403,0,5258,5259, + 5,452,0,0,5259,5264,3,822,411,0,5260,5261,5,6,0,0,5261,5263,3,822, + 411,0,5262,5260,1,0,0,0,5263,5266,1,0,0,0,5264,5262,1,0,0,0,5264, + 5265,1,0,0,0,5265,5268,1,0,0,0,5266,5264,1,0,0,0,5267,5269,3,394, + 197,0,5268,5267,1,0,0,0,5268,5269,1,0,0,0,5269,447,1,0,0,0,5270, + 5271,5,138,0,0,5271,5272,5,451,0,0,5272,5273,3,816,408,0,5273,5274, + 5,333,0,0,5274,5275,3,278,139,0,5275,5327,1,0,0,0,5276,5277,5,138, + 0,0,5277,5278,5,451,0,0,5278,5279,3,816,408,0,5279,5280,5,164,0, + 0,5280,5281,3,806,403,0,5281,5327,1,0,0,0,5282,5283,5,138,0,0,5283, + 5284,5,451,0,0,5284,5285,3,816,408,0,5285,5286,5,305,0,0,5286,5288, + 5,452,0,0,5287,5289,3,394,197,0,5288,5287,1,0,0,0,5288,5289,1,0, + 0,0,5289,5327,1,0,0,0,5290,5291,5,138,0,0,5291,5292,5,451,0,0,5292, + 5293,3,816,408,0,5293,5294,7,35,0,0,5294,5295,5,452,0,0,5295,5300, + 3,822,411,0,5296,5297,5,6,0,0,5297,5299,3,822,411,0,5298,5296,1, + 0,0,0,5299,5302,1,0,0,0,5300,5298,1,0,0,0,5300,5301,1,0,0,0,5301, + 5304,1,0,0,0,5302,5300,1,0,0,0,5303,5305,3,394,197,0,5304,5303,1, + 0,0,0,5304,5305,1,0,0,0,5305,5327,1,0,0,0,5306,5307,5,138,0,0,5307, + 5308,5,451,0,0,5308,5309,3,816,408,0,5309,5310,7,65,0,0,5310,5327, + 1,0,0,0,5311,5312,5,138,0,0,5312,5313,5,451,0,0,5313,5314,3,816, + 408,0,5314,5315,5,465,0,0,5315,5316,5,2,0,0,5316,5317,3,284,142, + 0,5317,5318,5,3,0,0,5318,5327,1,0,0,0,5319,5320,5,138,0,0,5320,5321, + 5,451,0,0,5321,5322,3,816,408,0,5322,5323,5,282,0,0,5323,5324,5, + 94,0,0,5324,5325,3,812,406,0,5325,5327,1,0,0,0,5326,5270,1,0,0,0, + 5326,5276,1,0,0,0,5326,5282,1,0,0,0,5326,5290,1,0,0,0,5326,5306, + 1,0,0,0,5326,5311,1,0,0,0,5326,5319,1,0,0,0,5327,449,1,0,0,0,5328, + 5330,5,46,0,0,5329,5331,3,360,180,0,5330,5329,1,0,0,0,5330,5331, + 1,0,0,0,5331,5332,1,0,0,0,5332,5333,5,321,0,0,5333,5334,3,816,408, + 0,5334,5335,5,36,0,0,5335,5336,5,80,0,0,5336,5337,7,66,0,0,5337, + 5338,5,94,0,0,5338,5340,3,776,388,0,5339,5341,3,632,316,0,5340,5339, + 1,0,0,0,5340,5341,1,0,0,0,5341,5342,1,0,0,0,5342,5344,5,57,0,0,5343, + 5345,7,67,0,0,5344,5343,1,0,0,0,5344,5345,1,0,0,0,5345,5362,1,0, + 0,0,5346,5363,5,270,0,0,5347,5363,3,452,226,0,5348,5350,5,2,0,0, + 5349,5351,3,452,226,0,5350,5349,1,0,0,0,5350,5351,1,0,0,0,5351,5358, + 1,0,0,0,5352,5354,5,7,0,0,5353,5355,3,452,226,0,5354,5353,1,0,0, + 0,5354,5355,1,0,0,0,5355,5357,1,0,0,0,5356,5352,1,0,0,0,5357,5360, + 1,0,0,0,5358,5356,1,0,0,0,5358,5359,1,0,0,0,5359,5361,1,0,0,0,5360, + 5358,1,0,0,0,5361,5363,5,3,0,0,5362,5346,1,0,0,0,5362,5347,1,0,0, + 0,5362,5348,1,0,0,0,5363,451,1,0,0,0,5364,5370,3,554,277,0,5365, + 5370,3,532,266,0,5366,5370,3,546,273,0,5367,5370,3,542,271,0,5368, + 5370,3,454,227,0,5369,5364,1,0,0,0,5369,5365,1,0,0,0,5369,5366,1, + 0,0,0,5369,5367,1,0,0,0,5369,5368,1,0,0,0,5370,453,1,0,0,0,5371, + 5372,5,271,0,0,5372,5374,3,816,408,0,5373,5375,3,456,228,0,5374, + 5373,1,0,0,0,5374,5375,1,0,0,0,5375,455,1,0,0,0,5376,5377,5,6,0, + 0,5377,5378,3,806,403,0,5378,457,1,0,0,0,5379,5380,5,252,0,0,5380, + 5381,3,816,408,0,5381,459,1,0,0,0,5382,5385,5,366,0,0,5383,5386, + 3,816,408,0,5384,5386,5,9,0,0,5385,5383,1,0,0,0,5385,5384,1,0,0, + 0,5386,461,1,0,0,0,5387,5389,5,146,0,0,5388,5390,3,464,232,0,5389, + 5388,1,0,0,0,5389,5390,1,0,0,0,5390,5392,1,0,0,0,5391,5393,3,468, + 234,0,5392,5391,1,0,0,0,5392,5393,1,0,0,0,5393,5433,1,0,0,0,5394, + 5395,5,340,0,0,5395,5397,5,356,0,0,5396,5398,3,468,234,0,5397,5396, + 1,0,0,0,5397,5398,1,0,0,0,5398,5433,1,0,0,0,5399,5400,5,322,0,0, + 5400,5433,3,816,408,0,5401,5403,5,308,0,0,5402,5404,5,322,0,0,5403, + 5402,1,0,0,0,5403,5404,1,0,0,0,5404,5405,1,0,0,0,5405,5433,3,816, + 408,0,5406,5407,5,290,0,0,5407,5408,5,356,0,0,5408,5433,3,806,403, + 0,5409,5410,7,68,0,0,5410,5411,5,291,0,0,5411,5433,3,806,403,0,5412, + 5414,7,69,0,0,5413,5415,3,464,232,0,5414,5413,1,0,0,0,5414,5415, + 1,0,0,0,5415,5421,1,0,0,0,5416,5418,5,33,0,0,5417,5419,5,269,0,0, + 5418,5417,1,0,0,0,5418,5419,1,0,0,0,5419,5420,1,0,0,0,5420,5422, + 5,153,0,0,5421,5416,1,0,0,0,5421,5422,1,0,0,0,5422,5433,1,0,0,0, + 5423,5425,5,319,0,0,5424,5426,3,464,232,0,5425,5424,1,0,0,0,5425, + 5426,1,0,0,0,5426,5427,1,0,0,0,5427,5429,5,94,0,0,5428,5430,5,322, + 0,0,5429,5428,1,0,0,0,5429,5430,1,0,0,0,5430,5431,1,0,0,0,5431,5433, + 3,816,408,0,5432,5387,1,0,0,0,5432,5394,1,0,0,0,5432,5399,1,0,0, + 0,5432,5401,1,0,0,0,5432,5406,1,0,0,0,5432,5409,1,0,0,0,5432,5412, + 1,0,0,0,5432,5423,1,0,0,0,5433,463,1,0,0,0,5434,5435,7,70,0,0,5435, + 465,1,0,0,0,5436,5437,5,244,0,0,5437,5438,5,251,0,0,5438,5446,3, + 50,25,0,5439,5440,5,300,0,0,5440,5446,7,71,0,0,5441,5443,5,77,0, + 0,5442,5441,1,0,0,0,5442,5443,1,0,0,0,5443,5444,1,0,0,0,5444,5446, + 5,54,0,0,5445,5436,1,0,0,0,5445,5439,1,0,0,0,5445,5442,1,0,0,0,5446, + 467,1,0,0,0,5447,5454,3,466,233,0,5448,5450,5,6,0,0,5449,5448,1, + 0,0,0,5449,5450,1,0,0,0,5450,5451,1,0,0,0,5451,5453,3,466,233,0, + 5452,5449,1,0,0,0,5453,5456,1,0,0,0,5454,5452,1,0,0,0,5454,5455, + 1,0,0,0,5455,469,1,0,0,0,5456,5454,1,0,0,0,5457,5460,5,46,0,0,5458, + 5459,5,82,0,0,5459,5461,5,311,0,0,5460,5458,1,0,0,0,5460,5461,1, + 0,0,0,5461,5463,1,0,0,0,5462,5464,3,116,58,0,5463,5462,1,0,0,0,5463, + 5464,1,0,0,0,5464,5480,1,0,0,0,5465,5466,5,376,0,0,5466,5468,3,772, + 386,0,5467,5469,3,140,70,0,5468,5467,1,0,0,0,5468,5469,1,0,0,0,5469, + 5471,1,0,0,0,5470,5472,3,94,47,0,5471,5470,1,0,0,0,5471,5472,1,0, + 0,0,5472,5481,1,0,0,0,5473,5474,5,303,0,0,5474,5475,5,376,0,0,5475, + 5476,3,772,386,0,5476,5478,3,138,69,0,5477,5479,3,94,47,0,5478,5477, + 1,0,0,0,5478,5479,1,0,0,0,5479,5481,1,0,0,0,5480,5465,1,0,0,0,5480, + 5473,1,0,0,0,5481,5482,1,0,0,0,5482,5483,5,36,0,0,5483,5490,3,554, + 277,0,5484,5486,5,105,0,0,5485,5487,7,72,0,0,5486,5485,1,0,0,0,5486, + 5487,1,0,0,0,5487,5488,1,0,0,0,5488,5489,5,42,0,0,5489,5491,5,279, + 0,0,5490,5484,1,0,0,0,5490,5491,1,0,0,0,5491,471,1,0,0,0,5492,5493, + 5,253,0,0,5493,5494,3,806,403,0,5494,473,1,0,0,0,5495,5496,5,46, + 0,0,5496,5497,5,175,0,0,5497,5499,3,782,391,0,5498,5500,5,105,0, + 0,5499,5498,1,0,0,0,5499,5500,1,0,0,0,5500,5506,1,0,0,0,5501,5503, + 3,476,238,0,5502,5501,1,0,0,0,5503,5504,1,0,0,0,5504,5502,1,0,0, + 0,5504,5505,1,0,0,0,5505,5507,1,0,0,0,5506,5502,1,0,0,0,5506,5507, + 1,0,0,0,5507,475,1,0,0,0,5508,5509,5,164,0,0,5509,5517,5,74,0,0, + 5510,5517,5,194,0,0,5511,5517,5,255,0,0,5512,5517,5,282,0,0,5513, + 5517,5,351,0,0,5514,5517,5,353,0,0,5515,5517,3,824,412,0,5516,5508, + 1,0,0,0,5516,5510,1,0,0,0,5516,5511,1,0,0,0,5516,5512,1,0,0,0,5516, + 5513,1,0,0,0,5516,5514,1,0,0,0,5516,5515,1,0,0,0,5517,5519,1,0,0, + 0,5518,5520,5,10,0,0,5519,5518,1,0,0,0,5519,5520,1,0,0,0,5520,5524, + 1,0,0,0,5521,5525,3,810,405,0,5522,5525,3,54,27,0,5523,5525,5,53, + 0,0,5524,5521,1,0,0,0,5524,5522,1,0,0,0,5524,5523,1,0,0,0,5525,477, + 1,0,0,0,5526,5527,5,138,0,0,5527,5528,5,175,0,0,5528,5544,3,784, + 392,0,5529,5530,5,333,0,0,5530,5531,5,351,0,0,5531,5533,3,766,383, + 0,5532,5529,1,0,0,0,5532,5533,1,0,0,0,5533,5545,1,0,0,0,5534,5536, + 5,105,0,0,5535,5534,1,0,0,0,5535,5536,1,0,0,0,5536,5538,1,0,0,0, + 5537,5539,3,476,238,0,5538,5537,1,0,0,0,5539,5540,1,0,0,0,5540,5538, + 1,0,0,0,5540,5541,1,0,0,0,5541,5543,1,0,0,0,5542,5535,1,0,0,0,5542, + 5543,1,0,0,0,5543,5545,1,0,0,0,5544,5532,1,0,0,0,5544,5542,1,0,0, + 0,5545,479,1,0,0,0,5546,5547,5,138,0,0,5547,5548,5,175,0,0,5548, + 5550,3,784,392,0,5549,5551,3,64,32,0,5550,5549,1,0,0,0,5550,5551, + 1,0,0,0,5551,481,1,0,0,0,5552,5553,5,138,0,0,5553,5554,5,108,0,0, + 5554,5555,3,310,155,0,5555,5556,5,305,0,0,5556,5557,5,375,0,0,5557, + 483,1,0,0,0,5558,5559,5,138,0,0,5559,5560,5,349,0,0,5560,5561,7, + 16,0,0,5561,5562,3,40,20,0,5562,485,1,0,0,0,5563,5564,5,46,0,0,5564, + 5565,5,189,0,0,5565,5567,3,310,155,0,5566,5568,5,36,0,0,5567,5566, + 1,0,0,0,5567,5568,1,0,0,0,5568,5569,1,0,0,0,5569,5573,3,646,323, + 0,5570,5572,3,128,64,0,5571,5570,1,0,0,0,5572,5575,1,0,0,0,5573, + 5571,1,0,0,0,5573,5574,1,0,0,0,5574,487,1,0,0,0,5575,5573,1,0,0, + 0,5576,5577,5,138,0,0,5577,5578,5,189,0,0,5578,5601,3,310,155,0, + 5579,5602,3,86,43,0,5580,5581,7,15,0,0,5581,5582,5,77,0,0,5582,5602, + 5,78,0,0,5583,5586,5,133,0,0,5584,5585,5,45,0,0,5585,5587,3,816, + 408,0,5586,5584,1,0,0,0,5586,5587,1,0,0,0,5587,5588,1,0,0,0,5588, + 5602,3,136,68,0,5589,5590,5,191,0,0,5590,5592,5,45,0,0,5591,5593, + 3,416,208,0,5592,5591,1,0,0,0,5592,5593,1,0,0,0,5593,5594,1,0,0, + 0,5594,5596,3,816,408,0,5595,5597,3,88,44,0,5596,5595,1,0,0,0,5596, + 5597,1,0,0,0,5597,5602,1,0,0,0,5598,5599,5,372,0,0,5599,5600,5,45, + 0,0,5600,5602,3,816,408,0,5601,5579,1,0,0,0,5601,5580,1,0,0,0,5601, + 5583,1,0,0,0,5601,5589,1,0,0,0,5601,5598,1,0,0,0,5602,489,1,0,0, + 0,5603,5604,5,138,0,0,5604,5605,5,355,0,0,5605,5606,5,325,0,0,5606, + 5607,5,185,0,0,5607,5608,3,310,155,0,5608,5609,3,278,139,0,5609, + 491,1,0,0,0,5610,5611,5,138,0,0,5611,5612,5,355,0,0,5612,5613,5, + 325,0,0,5613,5614,5,163,0,0,5614,5615,3,310,155,0,5615,5616,7,73, + 0,0,5616,5617,5,257,0,0,5617,5618,5,62,0,0,5618,5619,3,780,390,0, + 5619,5620,5,105,0,0,5620,5621,3,308,154,0,5621,5652,1,0,0,0,5622, + 5623,5,138,0,0,5623,5624,5,355,0,0,5624,5625,5,325,0,0,5625,5626, + 5,163,0,0,5626,5627,3,310,155,0,5627,5628,5,138,0,0,5628,5631,5, + 257,0,0,5629,5630,5,62,0,0,5630,5632,3,780,390,0,5631,5629,1,0,0, + 0,5631,5632,1,0,0,0,5632,5633,1,0,0,0,5633,5634,5,311,0,0,5634,5635, + 3,310,155,0,5635,5636,5,105,0,0,5636,5637,3,310,155,0,5637,5652, + 1,0,0,0,5638,5639,5,138,0,0,5639,5640,5,355,0,0,5640,5641,5,325, + 0,0,5641,5642,5,163,0,0,5642,5643,3,310,155,0,5643,5644,5,191,0, + 0,5644,5646,5,257,0,0,5645,5647,3,416,208,0,5646,5645,1,0,0,0,5646, + 5647,1,0,0,0,5647,5648,1,0,0,0,5648,5649,5,62,0,0,5649,5650,3,780, + 390,0,5650,5652,1,0,0,0,5651,5610,1,0,0,0,5651,5622,1,0,0,0,5651, + 5638,1,0,0,0,5652,493,1,0,0,0,5653,5655,5,46,0,0,5654,5656,5,53, + 0,0,5655,5654,1,0,0,0,5655,5656,1,0,0,0,5656,5657,1,0,0,0,5657,5658, + 5,168,0,0,5658,5659,3,310,155,0,5659,5660,5,62,0,0,5660,5661,3,806, + 403,0,5661,5662,5,94,0,0,5662,5663,3,806,403,0,5663,5664,5,64,0, + 0,5664,5665,3,310,155,0,5665,495,1,0,0,0,5666,5668,5,158,0,0,5667, + 5669,3,508,254,0,5668,5667,1,0,0,0,5668,5669,1,0,0,0,5669,5674,1, + 0,0,0,5670,5672,3,770,385,0,5671,5673,3,164,82,0,5672,5671,1,0,0, + 0,5672,5673,1,0,0,0,5673,5675,1,0,0,0,5674,5670,1,0,0,0,5674,5675, + 1,0,0,0,5675,5692,1,0,0,0,5676,5677,5,158,0,0,5677,5678,5,2,0,0, + 5678,5683,3,508,254,0,5679,5680,5,6,0,0,5680,5682,3,508,254,0,5681, + 5679,1,0,0,0,5682,5685,1,0,0,0,5683,5681,1,0,0,0,5683,5684,1,0,0, + 0,5684,5686,1,0,0,0,5685,5683,1,0,0,0,5686,5687,5,3,0,0,5687,5689, + 3,770,385,0,5688,5690,3,164,82,0,5689,5688,1,0,0,0,5689,5690,1,0, + 0,0,5690,5692,1,0,0,0,5691,5666,1,0,0,0,5691,5676,1,0,0,0,5692,497, + 1,0,0,0,5693,5709,5,370,0,0,5694,5696,5,113,0,0,5695,5694,1,0,0, + 0,5695,5696,1,0,0,0,5696,5698,1,0,0,0,5697,5699,5,112,0,0,5698,5697, + 1,0,0,0,5698,5699,1,0,0,0,5699,5701,1,0,0,0,5700,5702,3,508,254, + 0,5701,5700,1,0,0,0,5701,5702,1,0,0,0,5702,5704,1,0,0,0,5703,5705, + 3,502,251,0,5704,5703,1,0,0,0,5704,5705,1,0,0,0,5705,5710,1,0,0, + 0,5706,5708,3,518,259,0,5707,5706,1,0,0,0,5707,5708,1,0,0,0,5708, + 5710,1,0,0,0,5709,5695,1,0,0,0,5709,5707,1,0,0,0,5710,5712,1,0,0, + 0,5711,5713,3,512,256,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713, + 499,1,0,0,0,5714,5729,3,502,251,0,5715,5717,3,508,254,0,5716,5715, + 1,0,0,0,5716,5717,1,0,0,0,5717,5730,1,0,0,0,5718,5719,5,2,0,0,5719, + 5724,3,506,253,0,5720,5721,5,6,0,0,5721,5723,3,506,253,0,5722,5720, + 1,0,0,0,5723,5726,1,0,0,0,5724,5722,1,0,0,0,5724,5725,1,0,0,0,5725, + 5727,1,0,0,0,5726,5724,1,0,0,0,5727,5728,5,3,0,0,5728,5730,1,0,0, + 0,5729,5716,1,0,0,0,5729,5718,1,0,0,0,5730,5732,1,0,0,0,5731,5733, + 3,512,256,0,5732,5731,1,0,0,0,5732,5733,1,0,0,0,5733,501,1,0,0,0, + 5734,5735,7,74,0,0,5735,503,1,0,0,0,5736,5739,3,820,410,0,5737,5739, + 3,502,251,0,5738,5736,1,0,0,0,5738,5737,1,0,0,0,5739,5742,1,0,0, + 0,5740,5743,3,54,27,0,5741,5743,3,196,98,0,5742,5740,1,0,0,0,5742, + 5741,1,0,0,0,5742,5743,1,0,0,0,5743,505,1,0,0,0,5744,5746,7,75,0, + 0,5745,5747,7,76,0,0,5746,5745,1,0,0,0,5746,5747,1,0,0,0,5747,5754, + 1,0,0,0,5748,5751,5,548,0,0,5749,5752,3,196,98,0,5750,5752,3,806, + 403,0,5751,5749,1,0,0,0,5751,5750,1,0,0,0,5752,5754,1,0,0,0,5753, + 5744,1,0,0,0,5753,5748,1,0,0,0,5754,507,1,0,0,0,5755,5757,5,128, + 0,0,5756,5758,7,76,0,0,5757,5756,1,0,0,0,5757,5758,1,0,0,0,5758, + 509,1,0,0,0,5759,5761,3,770,385,0,5760,5762,3,138,69,0,5761,5760, + 1,0,0,0,5761,5762,1,0,0,0,5762,511,1,0,0,0,5763,5768,3,510,255,0, + 5764,5765,5,6,0,0,5765,5767,3,510,255,0,5766,5764,1,0,0,0,5767,5770, + 1,0,0,0,5768,5766,1,0,0,0,5768,5769,1,0,0,0,5769,513,1,0,0,0,5770, + 5768,1,0,0,0,5771,5782,5,203,0,0,5772,5783,3,518,259,0,5773,5775, + 5,128,0,0,5774,5773,1,0,0,0,5774,5775,1,0,0,0,5775,5783,1,0,0,0, + 5776,5778,3,502,251,0,5777,5779,3,508,254,0,5778,5777,1,0,0,0,5778, + 5779,1,0,0,0,5779,5781,1,0,0,0,5780,5776,1,0,0,0,5780,5781,1,0,0, + 0,5781,5783,1,0,0,0,5782,5772,1,0,0,0,5782,5774,1,0,0,0,5782,5780, + 1,0,0,0,5783,5784,1,0,0,0,5784,5785,3,516,258,0,5785,515,1,0,0,0, + 5786,5796,3,554,277,0,5787,5796,3,532,266,0,5788,5796,3,546,273, + 0,5789,5796,3,542,271,0,5790,5796,3,552,276,0,5791,5796,3,180,90, + 0,5792,5796,3,186,93,0,5793,5796,3,188,94,0,5794,5796,3,526,263, + 0,5795,5786,1,0,0,0,5795,5787,1,0,0,0,5795,5788,1,0,0,0,5795,5789, + 1,0,0,0,5795,5790,1,0,0,0,5795,5791,1,0,0,0,5795,5792,1,0,0,0,5795, + 5793,1,0,0,0,5795,5794,1,0,0,0,5796,517,1,0,0,0,5797,5798,5,2,0, + 0,5798,5803,3,504,252,0,5799,5800,5,6,0,0,5800,5802,3,504,252,0, + 5801,5799,1,0,0,0,5802,5805,1,0,0,0,5803,5801,1,0,0,0,5803,5804, + 1,0,0,0,5804,5806,1,0,0,0,5805,5803,1,0,0,0,5806,5807,5,3,0,0,5807, + 519,1,0,0,0,5808,5809,5,290,0,0,5809,5811,3,816,408,0,5810,5812, + 3,522,261,0,5811,5810,1,0,0,0,5811,5812,1,0,0,0,5812,5813,1,0,0, + 0,5813,5814,5,36,0,0,5814,5815,3,524,262,0,5815,521,1,0,0,0,5816, + 5817,5,2,0,0,5817,5822,3,646,323,0,5818,5819,5,6,0,0,5819,5821,3, + 646,323,0,5820,5818,1,0,0,0,5821,5824,1,0,0,0,5822,5820,1,0,0,0, + 5822,5823,1,0,0,0,5823,5825,1,0,0,0,5824,5822,1,0,0,0,5825,5826, + 5,3,0,0,5826,523,1,0,0,0,5827,5833,3,554,277,0,5828,5833,3,532,266, + 0,5829,5833,3,546,273,0,5830,5833,3,542,271,0,5831,5833,3,898,449, + 0,5832,5827,1,0,0,0,5832,5828,1,0,0,0,5832,5829,1,0,0,0,5832,5830, + 1,0,0,0,5832,5831,1,0,0,0,5833,525,1,0,0,0,5834,5835,5,202,0,0,5835, + 5837,3,816,408,0,5836,5838,3,528,264,0,5837,5836,1,0,0,0,5837,5838, + 1,0,0,0,5838,5858,1,0,0,0,5839,5841,5,46,0,0,5840,5842,3,116,58, + 0,5841,5840,1,0,0,0,5841,5842,1,0,0,0,5842,5843,1,0,0,0,5843,5845, + 5,92,0,0,5844,5846,3,288,144,0,5845,5844,1,0,0,0,5845,5846,1,0,0, + 0,5846,5847,1,0,0,0,5847,5848,3,182,91,0,5848,5849,5,36,0,0,5849, + 5850,5,202,0,0,5850,5852,3,816,408,0,5851,5853,3,528,264,0,5852, + 5851,1,0,0,0,5852,5853,1,0,0,0,5853,5855,1,0,0,0,5854,5856,3,184, + 92,0,5855,5854,1,0,0,0,5855,5856,1,0,0,0,5856,5858,1,0,0,0,5857, + 5834,1,0,0,0,5857,5839,1,0,0,0,5858,527,1,0,0,0,5859,5860,5,2,0, + 0,5860,5861,3,726,363,0,5861,5862,5,3,0,0,5862,529,1,0,0,0,5863, + 5865,5,177,0,0,5864,5866,5,290,0,0,5865,5864,1,0,0,0,5865,5866,1, + 0,0,0,5866,5869,1,0,0,0,5867,5870,3,816,408,0,5868,5870,5,30,0,0, + 5869,5867,1,0,0,0,5869,5868,1,0,0,0,5870,531,1,0,0,0,5871,5873,3, + 566,283,0,5872,5871,1,0,0,0,5872,5873,1,0,0,0,5873,5874,1,0,0,0, + 5874,5875,5,241,0,0,5875,5876,5,71,0,0,5876,5879,3,770,385,0,5877, + 5878,5,36,0,0,5878,5880,3,816,408,0,5879,5877,1,0,0,0,5879,5880, + 1,0,0,0,5880,5881,1,0,0,0,5881,5903,3,534,267,0,5882,5883,5,80,0, + 0,5883,5891,5,464,0,0,5884,5886,3,354,177,0,5885,5887,3,632,316, + 0,5886,5885,1,0,0,0,5886,5887,1,0,0,0,5887,5892,1,0,0,0,5888,5889, + 5,80,0,0,5889,5890,5,45,0,0,5890,5892,3,816,408,0,5891,5884,1,0, + 0,0,5891,5888,1,0,0,0,5891,5892,1,0,0,0,5892,5893,1,0,0,0,5893,5901, + 5,57,0,0,5894,5895,5,369,0,0,5895,5896,5,333,0,0,5896,5898,3,548, + 274,0,5897,5899,3,632,316,0,5898,5897,1,0,0,0,5898,5899,1,0,0,0, + 5899,5902,1,0,0,0,5900,5902,5,270,0,0,5901,5894,1,0,0,0,5901,5900, + 1,0,0,0,5902,5904,1,0,0,0,5903,5882,1,0,0,0,5903,5904,1,0,0,0,5904, + 5906,1,0,0,0,5905,5907,3,540,270,0,5906,5905,1,0,0,0,5906,5907,1, + 0,0,0,5907,533,1,0,0,0,5908,5909,5,2,0,0,5909,5910,3,536,268,0,5910, + 5911,5,3,0,0,5911,5913,1,0,0,0,5912,5908,1,0,0,0,5912,5913,1,0,0, + 0,5913,5917,1,0,0,0,5914,5915,5,463,0,0,5915,5916,7,77,0,0,5916, + 5918,5,450,0,0,5917,5914,1,0,0,0,5917,5918,1,0,0,0,5918,5921,1,0, + 0,0,5919,5922,3,908,454,0,5920,5922,3,554,277,0,5921,5919,1,0,0, + 0,5921,5920,1,0,0,0,5922,535,1,0,0,0,5923,5928,3,538,269,0,5924, + 5925,5,6,0,0,5925,5927,3,538,269,0,5926,5924,1,0,0,0,5927,5930,1, + 0,0,0,5928,5926,1,0,0,0,5928,5929,1,0,0,0,5929,537,1,0,0,0,5930, + 5928,1,0,0,0,5931,5932,3,796,398,0,5932,5933,3,750,375,0,5933,539, + 1,0,0,0,5934,5935,5,87,0,0,5935,5936,3,752,376,0,5936,541,1,0,0, + 0,5937,5939,3,566,283,0,5938,5937,1,0,0,0,5938,5939,1,0,0,0,5939, + 5940,1,0,0,0,5940,5941,5,182,0,0,5941,5942,5,64,0,0,5942,5945,3, + 624,312,0,5943,5944,5,100,0,0,5944,5946,3,606,303,0,5945,5943,1, + 0,0,0,5945,5946,1,0,0,0,5946,5948,1,0,0,0,5947,5949,3,634,317,0, + 5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949,5951,1,0,0,0,5950,5952, + 3,540,270,0,5951,5950,1,0,0,0,5951,5952,1,0,0,0,5952,543,1,0,0,0, + 5953,5955,5,256,0,0,5954,5956,5,92,0,0,5955,5954,1,0,0,0,5955,5956, + 1,0,0,0,5956,5957,1,0,0,0,5957,5972,3,622,311,0,5958,5969,5,68,0, + 0,5959,5960,7,78,0,0,5960,5970,7,79,0,0,5961,5966,5,334,0,0,5962, + 5963,5,369,0,0,5963,5967,5,201,0,0,5964,5965,5,414,0,0,5965,5967, + 5,201,0,0,5966,5962,1,0,0,0,5966,5964,1,0,0,0,5966,5967,1,0,0,0, + 5967,5970,1,0,0,0,5968,5970,5,201,0,0,5969,5959,1,0,0,0,5969,5961, + 1,0,0,0,5969,5968,1,0,0,0,5970,5971,1,0,0,0,5971,5973,5,263,0,0, + 5972,5958,1,0,0,0,5972,5973,1,0,0,0,5973,5975,1,0,0,0,5974,5976, + 5,272,0,0,5975,5974,1,0,0,0,5975,5976,1,0,0,0,5976,545,1,0,0,0,5977, + 5979,3,566,283,0,5978,5977,1,0,0,0,5978,5979,1,0,0,0,5979,5980,1, + 0,0,0,5980,5981,5,369,0,0,5981,5982,3,624,312,0,5982,5983,5,333, + 0,0,5983,5985,3,548,274,0,5984,5986,3,604,302,0,5985,5984,1,0,0, + 0,5985,5986,1,0,0,0,5986,5988,1,0,0,0,5987,5989,3,634,317,0,5988, + 5987,1,0,0,0,5988,5989,1,0,0,0,5989,5991,1,0,0,0,5990,5992,3,540, + 270,0,5991,5990,1,0,0,0,5991,5992,1,0,0,0,5992,547,1,0,0,0,5993, + 5998,3,550,275,0,5994,5995,5,6,0,0,5995,5997,3,550,275,0,5996,5994, + 1,0,0,0,5997,6000,1,0,0,0,5998,5996,1,0,0,0,5998,5999,1,0,0,0,5999, + 549,1,0,0,0,6000,5998,1,0,0,0,6001,6002,3,538,269,0,6002,6003,5, + 10,0,0,6003,6004,3,668,334,0,6004,6020,1,0,0,0,6005,6006,5,2,0,0, + 6006,6007,3,536,268,0,6007,6008,5,3,0,0,6008,6017,5,10,0,0,6009, + 6011,5,414,0,0,6010,6009,1,0,0,0,6010,6011,1,0,0,0,6011,6012,1,0, + 0,0,6012,6018,3,668,334,0,6013,6014,5,2,0,0,6014,6015,3,560,280, + 0,6015,6016,5,3,0,0,6016,6018,1,0,0,0,6017,6010,1,0,0,0,6017,6013, + 1,0,0,0,6018,6020,1,0,0,0,6019,6001,1,0,0,0,6019,6005,1,0,0,0,6020, + 551,1,0,0,0,6021,6022,5,178,0,0,6022,6031,3,816,408,0,6023,6025, + 5,269,0,0,6024,6023,1,0,0,0,6024,6025,1,0,0,0,6025,6026,1,0,0,0, + 6026,6030,5,324,0,0,6027,6030,5,107,0,0,6028,6030,5,240,0,0,6029, + 6024,1,0,0,0,6029,6027,1,0,0,0,6029,6028,1,0,0,0,6030,6033,1,0,0, + 0,6031,6029,1,0,0,0,6031,6032,1,0,0,0,6032,6034,1,0,0,0,6033,6031, + 1,0,0,0,6034,6037,5,172,0,0,6035,6036,7,27,0,0,6036,6038,5,217,0, + 0,6037,6035,1,0,0,0,6037,6038,1,0,0,0,6038,6039,1,0,0,0,6039,6040, + 5,62,0,0,6040,6041,3,554,277,0,6041,553,1,0,0,0,6042,6045,3,558, + 279,0,6043,6045,3,556,278,0,6044,6042,1,0,0,0,6044,6043,1,0,0,0, + 6045,555,1,0,0,0,6046,6049,5,2,0,0,6047,6050,3,558,279,0,6048,6050, + 3,556,278,0,6049,6047,1,0,0,0,6049,6048,1,0,0,0,6050,6051,1,0,0, + 0,6051,6052,5,3,0,0,6052,557,1,0,0,0,6053,6055,3,566,283,0,6054, + 6053,1,0,0,0,6054,6055,1,0,0,0,6055,6056,1,0,0,0,6056,6058,3,560, + 280,0,6057,6059,3,580,290,0,6058,6057,1,0,0,0,6058,6059,1,0,0,0, + 6059,6068,1,0,0,0,6060,6062,3,600,300,0,6061,6063,3,584,292,0,6062, + 6061,1,0,0,0,6062,6063,1,0,0,0,6063,6069,1,0,0,0,6064,6066,3,584, + 292,0,6065,6067,3,600,300,0,6066,6065,1,0,0,0,6066,6067,1,0,0,0, + 6067,6069,1,0,0,0,6068,6060,1,0,0,0,6068,6064,1,0,0,0,6068,6069, + 1,0,0,0,6069,559,1,0,0,0,6070,6073,3,562,281,0,6071,6073,3,556,278, + 0,6072,6070,1,0,0,0,6072,6071,1,0,0,0,6073,561,1,0,0,0,6074,6084, + 5,88,0,0,6075,6077,5,30,0,0,6076,6075,1,0,0,0,6076,6077,1,0,0,0, + 6077,6079,1,0,0,0,6078,6080,3,574,287,0,6079,6078,1,0,0,0,6079,6080, + 1,0,0,0,6080,6085,1,0,0,0,6081,6083,3,578,289,0,6082,6081,1,0,0, + 0,6082,6083,1,0,0,0,6083,6085,1,0,0,0,6084,6076,1,0,0,0,6084,6082, + 1,0,0,0,6085,6086,1,0,0,0,6086,6097,3,928,464,0,6087,6097,3,602, + 301,0,6088,6089,5,92,0,0,6089,6097,3,618,309,0,6090,6091,3,556,278, + 0,6091,6094,3,564,282,0,6092,6095,3,562,281,0,6093,6095,3,556,278, + 0,6094,6092,1,0,0,0,6094,6093,1,0,0,0,6095,6097,1,0,0,0,6096,6074, + 1,0,0,0,6096,6087,1,0,0,0,6096,6088,1,0,0,0,6096,6090,1,0,0,0,6097, + 6105,1,0,0,0,6098,6101,3,564,282,0,6099,6102,3,562,281,0,6100,6102, + 3,556,278,0,6101,6099,1,0,0,0,6101,6100,1,0,0,0,6102,6104,1,0,0, + 0,6103,6098,1,0,0,0,6104,6107,1,0,0,0,6105,6103,1,0,0,0,6105,6106, + 1,0,0,0,6106,563,1,0,0,0,6107,6105,1,0,0,0,6108,6110,7,80,0,0,6109, + 6111,7,81,0,0,6110,6109,1,0,0,0,6110,6111,1,0,0,0,6111,565,1,0,0, + 0,6112,6114,5,105,0,0,6113,6115,5,303,0,0,6114,6113,1,0,0,0,6114, + 6115,1,0,0,0,6115,6116,1,0,0,0,6116,6121,3,568,284,0,6117,6118,5, + 6,0,0,6118,6120,3,568,284,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,567,1,0,0,0,6123,6121,1, + 0,0,0,6124,6126,3,816,408,0,6125,6127,3,138,69,0,6126,6125,1,0,0, + 0,6126,6127,1,0,0,0,6127,6128,1,0,0,0,6128,6133,5,36,0,0,6129,6131, + 5,77,0,0,6130,6129,1,0,0,0,6130,6131,1,0,0,0,6131,6132,1,0,0,0,6132, + 6134,5,259,0,0,6133,6130,1,0,0,0,6133,6134,1,0,0,0,6134,6135,1,0, + 0,0,6135,6136,5,2,0,0,6136,6137,3,524,262,0,6137,6139,5,3,0,0,6138, + 6140,3,570,285,0,6139,6138,1,0,0,0,6139,6140,1,0,0,0,6140,6142,1, + 0,0,0,6141,6143,3,572,286,0,6142,6141,1,0,0,0,6142,6143,1,0,0,0, + 6143,569,1,0,0,0,6144,6145,5,325,0,0,6145,6146,7,82,0,0,6146,6147, + 5,207,0,0,6147,6148,5,147,0,0,6148,6149,3,142,71,0,6149,6150,5,333, + 0,0,6150,6151,3,796,398,0,6151,571,1,0,0,0,6152,6153,5,173,0,0,6153, + 6154,3,142,71,0,6154,6155,5,333,0,0,6155,6161,3,796,398,0,6156,6157, + 5,94,0,0,6157,6158,3,816,408,0,6158,6159,5,53,0,0,6159,6160,3,816, + 408,0,6160,6162,1,0,0,0,6161,6156,1,0,0,0,6161,6162,1,0,0,0,6162, + 6163,1,0,0,0,6163,6164,5,100,0,0,6164,6165,3,796,398,0,6165,573, + 1,0,0,0,6166,6172,5,71,0,0,6167,6169,5,346,0,0,6168,6167,1,0,0,0, + 6168,6169,1,0,0,0,6169,6170,1,0,0,0,6170,6173,3,576,288,0,6171,6173, + 3,726,363,0,6172,6168,1,0,0,0,6172,6171,1,0,0,0,6173,575,1,0,0,0, + 6174,6176,7,21,0,0,6175,6174,1,0,0,0,6175,6176,1,0,0,0,6176,6177, + 1,0,0,0,6177,6179,7,22,0,0,6178,6180,5,92,0,0,6179,6178,1,0,0,0, + 6179,6180,1,0,0,0,6180,6181,1,0,0,0,6181,6190,3,768,384,0,6182,6184, + 5,367,0,0,6183,6182,1,0,0,0,6183,6184,1,0,0,0,6184,6186,1,0,0,0, + 6185,6187,5,92,0,0,6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,6188, + 1,0,0,0,6188,6190,3,768,384,0,6189,6175,1,0,0,0,6189,6183,1,0,0, + 0,6190,577,1,0,0,0,6191,6194,5,56,0,0,6192,6193,5,80,0,0,6193,6195, + 3,528,264,0,6194,6192,1,0,0,0,6194,6195,1,0,0,0,6195,579,1,0,0,0, + 6196,6197,5,83,0,0,6197,6198,5,147,0,0,6198,6203,3,582,291,0,6199, + 6200,5,6,0,0,6200,6202,3,582,291,0,6201,6199,1,0,0,0,6202,6205,1, + 0,0,0,6203,6201,1,0,0,0,6203,6204,1,0,0,0,6204,581,1,0,0,0,6205, + 6203,1,0,0,0,6206,6210,3,730,365,0,6207,6208,5,100,0,0,6208,6211, + 3,722,361,0,6209,6211,7,56,0,0,6210,6207,1,0,0,0,6210,6209,1,0,0, + 0,6210,6211,1,0,0,0,6211,6214,1,0,0,0,6212,6213,5,273,0,0,6213,6215, + 7,57,0,0,6214,6212,1,0,0,0,6214,6215,1,0,0,0,6215,583,1,0,0,0,6216, + 6218,3,590,295,0,6217,6219,3,588,294,0,6218,6217,1,0,0,0,6218,6219, + 1,0,0,0,6219,6228,1,0,0,0,6220,6223,3,586,293,0,6221,6223,3,588, + 294,0,6222,6220,1,0,0,0,6222,6221,1,0,0,0,6223,6225,1,0,0,0,6224, + 6226,3,590,295,0,6225,6224,1,0,0,0,6225,6226,1,0,0,0,6226,6228,1, + 0,0,0,6227,6216,1,0,0,0,6227,6222,1,0,0,0,6228,585,1,0,0,0,6229, + 6232,5,74,0,0,6230,6233,3,668,334,0,6231,6233,5,30,0,0,6232,6230, + 1,0,0,0,6232,6231,1,0,0,0,6233,6236,1,0,0,0,6234,6235,5,6,0,0,6235, + 6237,3,668,334,0,6236,6234,1,0,0,0,6236,6237,1,0,0,0,6237,587,1, + 0,0,0,6238,6239,5,61,0,0,6239,6241,7,83,0,0,6240,6242,3,592,296, + 0,6241,6240,1,0,0,0,6241,6242,1,0,0,0,6242,6243,1,0,0,0,6243,6247, + 7,84,0,0,6244,6248,5,81,0,0,6245,6246,5,105,0,0,6246,6248,5,467, + 0,0,6247,6244,1,0,0,0,6247,6245,1,0,0,0,6248,589,1,0,0,0,6249,6254, + 5,79,0,0,6250,6251,3,592,296,0,6251,6252,7,84,0,0,6252,6255,1,0, + 0,0,6253,6255,3,668,334,0,6254,6250,1,0,0,0,6254,6253,1,0,0,0,6255, + 591,1,0,0,0,6256,6257,7,30,0,0,6257,6260,7,85,0,0,6258,6260,3,676, + 338,0,6259,6256,1,0,0,0,6259,6258,1,0,0,0,6260,593,1,0,0,0,6261, + 6262,5,66,0,0,6262,6264,5,147,0,0,6263,6265,7,81,0,0,6264,6263,1, + 0,0,0,6264,6265,1,0,0,0,6265,6266,1,0,0,0,6266,6267,3,596,298,0, + 6267,595,1,0,0,0,6268,6273,3,598,299,0,6269,6270,5,6,0,0,6270,6272, + 3,598,299,0,6271,6269,1,0,0,0,6272,6275,1,0,0,0,6273,6271,1,0,0, + 0,6273,6274,1,0,0,0,6274,597,1,0,0,0,6275,6273,1,0,0,0,6276,6300, + 3,730,365,0,6277,6278,5,2,0,0,6278,6300,5,3,0,0,6279,6281,7,86,0, + 0,6280,6279,1,0,0,0,6280,6281,1,0,0,0,6281,6282,1,0,0,0,6282,6283, + 5,2,0,0,6283,6288,3,730,365,0,6284,6285,5,6,0,0,6285,6287,3,730, + 365,0,6286,6284,1,0,0,0,6287,6290,1,0,0,0,6288,6286,1,0,0,0,6288, + 6289,1,0,0,0,6289,6291,1,0,0,0,6290,6288,1,0,0,0,6291,6292,5,3,0, + 0,6292,6300,1,0,0,0,6293,6294,5,470,0,0,6294,6295,5,471,0,0,6295, + 6296,5,2,0,0,6296,6297,3,596,298,0,6297,6298,5,3,0,0,6298,6300,1, + 0,0,0,6299,6276,1,0,0,0,6299,6277,1,0,0,0,6299,6280,1,0,0,0,6299, + 6293,1,0,0,0,6300,599,1,0,0,0,6301,6311,5,62,0,0,6302,6303,5,269, + 0,0,6303,6305,5,245,0,0,6304,6302,1,0,0,0,6304,6305,1,0,0,0,6305, + 6306,1,0,0,0,6306,6312,5,369,0,0,6307,6309,5,245,0,0,6308,6307,1, + 0,0,0,6308,6309,1,0,0,0,6309,6310,1,0,0,0,6310,6312,5,334,0,0,6311, + 6304,1,0,0,0,6311,6308,1,0,0,0,6312,6315,1,0,0,0,6313,6314,5,275, + 0,0,6314,6316,3,756,378,0,6315,6313,1,0,0,0,6315,6316,1,0,0,0,6316, + 6320,1,0,0,0,6317,6321,5,272,0,0,6318,6319,5,465,0,0,6319,6321,5, + 466,0,0,6320,6317,1,0,0,0,6320,6318,1,0,0,0,6320,6321,1,0,0,0,6321, + 6323,1,0,0,0,6322,6301,1,0,0,0,6323,6324,1,0,0,0,6324,6322,1,0,0, + 0,6324,6325,1,0,0,0,6325,6330,1,0,0,0,6326,6327,5,62,0,0,6327,6328, + 5,300,0,0,6328,6330,5,81,0,0,6329,6322,1,0,0,0,6329,6326,1,0,0,0, + 6330,601,1,0,0,0,6331,6332,5,422,0,0,6332,6337,3,528,264,0,6333, + 6334,5,6,0,0,6334,6336,3,528,264,0,6335,6333,1,0,0,0,6336,6339,1, + 0,0,0,6337,6335,1,0,0,0,6337,6338,1,0,0,0,6338,603,1,0,0,0,6339, + 6337,1,0,0,0,6340,6341,5,64,0,0,6341,6342,3,606,303,0,6342,605,1, + 0,0,0,6343,6348,3,608,304,0,6344,6345,5,6,0,0,6345,6347,3,608,304, + 0,6346,6344,1,0,0,0,6347,6350,1,0,0,0,6348,6346,1,0,0,0,6348,6349, + 1,0,0,0,6349,607,1,0,0,0,6350,6348,1,0,0,0,6351,6366,3,618,309,0, + 6352,6354,5,81,0,0,6353,6352,1,0,0,0,6353,6354,1,0,0,0,6354,6355, + 1,0,0,0,6355,6357,3,774,387,0,6356,6358,5,9,0,0,6357,6356,1,0,0, + 0,6357,6358,1,0,0,0,6358,6360,1,0,0,0,6359,6361,3,142,71,0,6360, + 6359,1,0,0,0,6360,6361,1,0,0,0,6361,6363,1,0,0,0,6362,6364,3,632, + 316,0,6363,6362,1,0,0,0,6363,6364,1,0,0,0,6364,6366,1,0,0,0,6365, + 6351,1,0,0,0,6365,6353,1,0,0,0,6366,6368,1,0,0,0,6367,6369,3,610, + 305,0,6368,6367,1,0,0,0,6368,6369,1,0,0,0,6369,6371,1,0,0,0,6370, + 6372,3,626,313,0,6371,6370,1,0,0,0,6371,6372,1,0,0,0,6372,6415,1, + 0,0,0,6373,6375,5,72,0,0,6374,6373,1,0,0,0,6374,6375,1,0,0,0,6375, + 6388,1,0,0,0,6376,6378,3,640,320,0,6377,6379,3,610,305,0,6378,6377, + 1,0,0,0,6378,6379,1,0,0,0,6379,6389,1,0,0,0,6380,6382,3,628,314, + 0,6381,6383,3,612,306,0,6382,6381,1,0,0,0,6382,6383,1,0,0,0,6383, + 6389,1,0,0,0,6384,6386,3,556,278,0,6385,6387,3,610,305,0,6386,6385, + 1,0,0,0,6386,6387,1,0,0,0,6387,6389,1,0,0,0,6388,6376,1,0,0,0,6388, + 6380,1,0,0,0,6388,6384,1,0,0,0,6389,6415,1,0,0,0,6390,6391,5,2,0, + 0,6391,6408,3,608,304,0,6392,6393,5,110,0,0,6393,6394,5,118,0,0, + 6394,6409,3,608,304,0,6395,6397,5,121,0,0,6396,6398,3,614,307,0, + 6397,6396,1,0,0,0,6397,6398,1,0,0,0,6398,6399,1,0,0,0,6399,6400, + 5,118,0,0,6400,6409,3,608,304,0,6401,6403,3,614,307,0,6402,6401, + 1,0,0,0,6402,6403,1,0,0,0,6403,6404,1,0,0,0,6404,6405,5,118,0,0, + 6405,6406,3,608,304,0,6406,6407,3,616,308,0,6407,6409,1,0,0,0,6408, + 6392,1,0,0,0,6408,6395,1,0,0,0,6408,6402,1,0,0,0,6408,6409,1,0,0, + 0,6409,6410,1,0,0,0,6410,6412,5,3,0,0,6411,6413,3,610,305,0,6412, + 6411,1,0,0,0,6412,6413,1,0,0,0,6413,6415,1,0,0,0,6414,6365,1,0,0, + 0,6414,6374,1,0,0,0,6414,6390,1,0,0,0,6415,6434,1,0,0,0,6416,6417, + 5,110,0,0,6417,6418,5,118,0,0,6418,6433,3,608,304,0,6419,6421,5, + 121,0,0,6420,6422,3,614,307,0,6421,6420,1,0,0,0,6421,6422,1,0,0, + 0,6422,6423,1,0,0,0,6423,6424,5,118,0,0,6424,6433,3,608,304,0,6425, + 6427,3,614,307,0,6426,6425,1,0,0,0,6426,6427,1,0,0,0,6427,6428,1, + 0,0,0,6428,6429,5,118,0,0,6429,6430,3,608,304,0,6430,6431,3,616, + 308,0,6431,6433,1,0,0,0,6432,6416,1,0,0,0,6432,6419,1,0,0,0,6432, + 6426,1,0,0,0,6433,6436,1,0,0,0,6434,6432,1,0,0,0,6434,6435,1,0,0, + 0,6435,609,1,0,0,0,6436,6434,1,0,0,0,6437,6439,5,36,0,0,6438,6437, + 1,0,0,0,6438,6439,1,0,0,0,6439,6440,1,0,0,0,6440,6445,3,816,408, + 0,6441,6442,5,2,0,0,6442,6443,3,780,390,0,6443,6444,5,3,0,0,6444, + 6446,1,0,0,0,6445,6441,1,0,0,0,6445,6446,1,0,0,0,6446,611,1,0,0, + 0,6447,6460,3,610,305,0,6448,6450,5,36,0,0,6449,6451,3,816,408,0, + 6450,6449,1,0,0,0,6450,6451,1,0,0,0,6451,6454,1,0,0,0,6452,6454, + 3,816,408,0,6453,6448,1,0,0,0,6453,6452,1,0,0,0,6454,6455,1,0,0, + 0,6455,6456,5,2,0,0,6456,6457,3,636,318,0,6457,6458,5,3,0,0,6458, + 6460,1,0,0,0,6459,6447,1,0,0,0,6459,6453,1,0,0,0,6460,613,1,0,0, + 0,6461,6463,7,87,0,0,6462,6464,5,123,0,0,6463,6462,1,0,0,0,6463, + 6464,1,0,0,0,6464,615,1,0,0,0,6465,6466,5,100,0,0,6466,6470,3,138, + 69,0,6467,6468,5,80,0,0,6468,6470,3,668,334,0,6469,6465,1,0,0,0, + 6469,6467,1,0,0,0,6470,617,1,0,0,0,6471,6487,3,316,158,0,6472,6478, + 5,81,0,0,6473,6479,3,770,385,0,6474,6475,5,2,0,0,6475,6476,3,770, + 385,0,6476,6477,5,3,0,0,6477,6479,1,0,0,0,6478,6473,1,0,0,0,6478, + 6474,1,0,0,0,6479,6487,1,0,0,0,6480,6481,5,68,0,0,6481,6484,5,323, + 0,0,6482,6485,3,786,393,0,6483,6485,5,111,0,0,6484,6482,1,0,0,0, + 6484,6483,1,0,0,0,6485,6487,1,0,0,0,6486,6471,1,0,0,0,6486,6472, + 1,0,0,0,6486,6480,1,0,0,0,6487,619,1,0,0,0,6488,6489,5,92,0,0,6489, + 6491,3,316,158,0,6490,6492,3,138,69,0,6491,6490,1,0,0,0,6491,6492, + 1,0,0,0,6492,6494,1,0,0,0,6493,6495,3,632,316,0,6494,6493,1,0,0, + 0,6494,6495,1,0,0,0,6495,6513,1,0,0,0,6496,6497,5,92,0,0,6497,6503, + 5,81,0,0,6498,6504,3,770,385,0,6499,6500,5,2,0,0,6500,6501,3,770, + 385,0,6501,6502,5,3,0,0,6502,6504,1,0,0,0,6503,6498,1,0,0,0,6503, + 6499,1,0,0,0,6504,6513,1,0,0,0,6505,6506,5,350,0,0,6506,6507,5,68, + 0,0,6507,6510,5,323,0,0,6508,6511,3,786,393,0,6509,6511,5,111,0, + 0,6510,6508,1,0,0,0,6510,6509,1,0,0,0,6511,6513,1,0,0,0,6512,6488, + 1,0,0,0,6512,6496,1,0,0,0,6512,6505,1,0,0,0,6513,621,1,0,0,0,6514, + 6519,3,618,309,0,6515,6516,5,6,0,0,6516,6518,3,618,309,0,6517,6515, + 1,0,0,0,6518,6521,1,0,0,0,6519,6517,1,0,0,0,6519,6520,1,0,0,0,6520, + 623,1,0,0,0,6521,6519,1,0,0,0,6522,6527,3,618,309,0,6523,6525,5, + 36,0,0,6524,6523,1,0,0,0,6524,6525,1,0,0,0,6525,6526,1,0,0,0,6526, + 6528,3,816,408,0,6527,6524,1,0,0,0,6527,6528,1,0,0,0,6528,625,1, + 0,0,0,6529,6530,5,472,0,0,6530,6531,3,804,402,0,6531,6537,3,528, + 264,0,6532,6533,5,310,0,0,6533,6534,5,2,0,0,6534,6535,3,668,334, + 0,6535,6536,5,3,0,0,6536,6538,1,0,0,0,6537,6532,1,0,0,0,6537,6538, + 1,0,0,0,6538,627,1,0,0,0,6539,6554,3,682,341,0,6540,6541,5,320,0, + 0,6541,6542,5,64,0,0,6542,6543,5,2,0,0,6543,6548,3,630,315,0,6544, + 6545,5,6,0,0,6545,6547,3,630,315,0,6546,6544,1,0,0,0,6547,6550,1, + 0,0,0,6548,6546,1,0,0,0,6548,6549,1,0,0,0,6549,6551,1,0,0,0,6550, + 6548,1,0,0,0,6551,6552,5,3,0,0,6552,6554,1,0,0,0,6553,6539,1,0,0, + 0,6553,6540,1,0,0,0,6554,6557,1,0,0,0,6555,6556,5,105,0,0,6556,6558, + 5,473,0,0,6557,6555,1,0,0,0,6557,6558,1,0,0,0,6558,629,1,0,0,0,6559, + 6565,3,682,341,0,6560,6561,5,36,0,0,6561,6562,5,2,0,0,6562,6563, + 3,636,318,0,6563,6564,5,3,0,0,6564,6566,1,0,0,0,6565,6560,1,0,0, + 0,6565,6566,1,0,0,0,6566,631,1,0,0,0,6567,6568,5,103,0,0,6568,6569, + 3,730,365,0,6569,633,1,0,0,0,6570,6575,5,103,0,0,6571,6572,5,434, + 0,0,6572,6573,5,275,0,0,6573,6576,3,816,408,0,6574,6576,3,668,334, + 0,6575,6571,1,0,0,0,6575,6574,1,0,0,0,6576,635,1,0,0,0,6577,6582, + 3,638,319,0,6578,6579,5,6,0,0,6579,6581,3,638,319,0,6580,6578,1, + 0,0,0,6581,6584,1,0,0,0,6582,6580,1,0,0,0,6582,6583,1,0,0,0,6583, + 637,1,0,0,0,6584,6582,1,0,0,0,6585,6586,3,816,408,0,6586,6588,3, + 646,323,0,6587,6589,3,90,45,0,6588,6587,1,0,0,0,6588,6589,1,0,0, + 0,6589,639,1,0,0,0,6590,6591,5,474,0,0,6591,6605,5,2,0,0,6592,6593, + 5,476,0,0,6593,6594,5,2,0,0,6594,6599,3,644,322,0,6595,6596,5,6, + 0,0,6596,6598,3,644,322,0,6597,6595,1,0,0,0,6598,6601,1,0,0,0,6599, + 6597,1,0,0,0,6599,6600,1,0,0,0,6600,6602,1,0,0,0,6601,6599,1,0,0, + 0,6602,6603,5,3,0,0,6603,6604,5,6,0,0,6604,6606,1,0,0,0,6605,6592, + 1,0,0,0,6605,6606,1,0,0,0,6606,6607,1,0,0,0,6607,6608,3,676,338, + 0,6608,6609,3,692,346,0,6609,6610,5,475,0,0,6610,6615,3,642,321, + 0,6611,6612,5,6,0,0,6612,6614,3,642,321,0,6613,6611,1,0,0,0,6614, + 6617,1,0,0,0,6615,6613,1,0,0,0,6615,6616,1,0,0,0,6616,6618,1,0,0, + 0,6617,6615,1,0,0,0,6618,6619,5,3,0,0,6619,641,1,0,0,0,6620,6639, + 3,816,408,0,6621,6635,3,646,323,0,6622,6625,5,53,0,0,6623,6625,3, + 824,412,0,6624,6622,1,0,0,0,6624,6623,1,0,0,0,6625,6626,1,0,0,0, + 6626,6632,3,668,334,0,6627,6629,5,77,0,0,6628,6627,1,0,0,0,6628, + 6629,1,0,0,0,6629,6630,1,0,0,0,6630,6632,5,78,0,0,6631,6624,1,0, + 0,0,6631,6628,1,0,0,0,6632,6633,1,0,0,0,6633,6631,1,0,0,0,6633,6634, + 1,0,0,0,6634,6636,1,0,0,0,6635,6631,1,0,0,0,6635,6636,1,0,0,0,6636, + 6640,1,0,0,0,6637,6638,5,62,0,0,6638,6640,5,473,0,0,6639,6621,1, + 0,0,0,6639,6637,1,0,0,0,6640,643,1,0,0,0,6641,6642,3,676,338,0,6642, + 6643,5,36,0,0,6643,6644,3,822,411,0,6644,6648,1,0,0,0,6645,6646, + 5,53,0,0,6646,6648,3,676,338,0,6647,6641,1,0,0,0,6647,6645,1,0,0, + 0,6648,645,1,0,0,0,6649,6651,5,415,0,0,6650,6649,1,0,0,0,6650,6651, + 1,0,0,0,6651,6652,1,0,0,0,6652,6669,3,648,324,0,6653,6655,5,4,0, + 0,6654,6656,5,574,0,0,6655,6654,1,0,0,0,6655,6656,1,0,0,0,6656,6657, + 1,0,0,0,6657,6659,5,5,0,0,6658,6653,1,0,0,0,6659,6662,1,0,0,0,6660, + 6658,1,0,0,0,6660,6661,1,0,0,0,6661,6670,1,0,0,0,6662,6660,1,0,0, + 0,6663,6667,5,35,0,0,6664,6665,5,4,0,0,6665,6666,5,574,0,0,6666, + 6668,5,5,0,0,6667,6664,1,0,0,0,6667,6668,1,0,0,0,6668,6670,1,0,0, + 0,6669,6660,1,0,0,0,6669,6663,1,0,0,0,6670,6676,1,0,0,0,6671,6672, + 3,776,388,0,6672,6673,5,27,0,0,6673,6674,7,88,0,0,6674,6676,1,0, + 0,0,6675,6650,1,0,0,0,6675,6671,1,0,0,0,6676,647,1,0,0,0,6677,6679, + 3,818,409,0,6678,6680,3,312,156,0,6679,6678,1,0,0,0,6679,6680,1, + 0,0,0,6680,6682,1,0,0,0,6681,6683,3,528,264,0,6682,6681,1,0,0,0, + 6682,6683,1,0,0,0,6683,6693,1,0,0,0,6684,6693,3,650,325,0,6685,6690, + 5,403,0,0,6686,6688,3,662,331,0,6687,6686,1,0,0,0,6687,6688,1,0, + 0,0,6688,6691,1,0,0,0,6689,6691,3,654,327,0,6690,6687,1,0,0,0,6690, + 6689,1,0,0,0,6691,6693,1,0,0,0,6692,6677,1,0,0,0,6692,6684,1,0,0, + 0,6692,6685,1,0,0,0,6693,649,1,0,0,0,6694,6699,3,652,326,0,6695, + 6699,3,656,328,0,6696,6699,3,658,329,0,6697,6699,3,660,330,0,6698, + 6694,1,0,0,0,6698,6695,1,0,0,0,6698,6696,1,0,0,0,6698,6697,1,0,0, + 0,6699,651,1,0,0,0,6700,6717,5,401,0,0,6701,6717,5,402,0,0,6702, + 6717,5,416,0,0,6703,6717,5,388,0,0,6704,6717,5,413,0,0,6705,6707, + 5,398,0,0,6706,6708,3,654,327,0,6707,6706,1,0,0,0,6707,6708,1,0, + 0,0,6708,6717,1,0,0,0,6709,6710,5,190,0,0,6710,6717,5,412,0,0,6711, + 6713,7,89,0,0,6712,6714,3,528,264,0,6713,6712,1,0,0,0,6713,6714, + 1,0,0,0,6714,6717,1,0,0,0,6715,6717,5,390,0,0,6716,6700,1,0,0,0, + 6716,6701,1,0,0,0,6716,6702,1,0,0,0,6716,6703,1,0,0,0,6716,6704, + 1,0,0,0,6716,6705,1,0,0,0,6716,6709,1,0,0,0,6716,6711,1,0,0,0,6716, + 6715,1,0,0,0,6717,653,1,0,0,0,6718,6719,5,2,0,0,6719,6720,5,574, + 0,0,6720,6721,5,3,0,0,6721,655,1,0,0,0,6722,6724,5,389,0,0,6723, + 6725,5,374,0,0,6724,6723,1,0,0,0,6724,6725,1,0,0,0,6725,6727,1,0, + 0,0,6726,6728,3,528,264,0,6727,6726,1,0,0,0,6727,6728,1,0,0,0,6728, + 657,1,0,0,0,6729,6731,7,90,0,0,6730,6732,5,374,0,0,6731,6730,1,0, + 0,0,6731,6732,1,0,0,0,6732,6740,1,0,0,0,6733,6740,5,423,0,0,6734, + 6735,5,405,0,0,6735,6737,7,91,0,0,6736,6738,5,374,0,0,6737,6736, + 1,0,0,0,6737,6738,1,0,0,0,6738,6740,1,0,0,0,6739,6729,1,0,0,0,6739, + 6733,1,0,0,0,6739,6734,1,0,0,0,6740,6742,1,0,0,0,6741,6743,3,654, + 327,0,6742,6741,1,0,0,0,6742,6743,1,0,0,0,6743,659,1,0,0,0,6744, + 6746,7,92,0,0,6745,6747,3,654,327,0,6746,6745,1,0,0,0,6746,6747, + 1,0,0,0,6747,6751,1,0,0,0,6748,6749,7,27,0,0,6749,6750,5,418,0,0, + 6750,6752,5,386,0,0,6751,6748,1,0,0,0,6751,6752,1,0,0,0,6752,661, + 1,0,0,0,6753,6783,5,264,0,0,6754,6783,3,664,332,0,6755,6758,5,384, + 0,0,6756,6757,5,94,0,0,6757,6759,5,264,0,0,6758,6756,1,0,0,0,6758, + 6759,1,0,0,0,6759,6783,1,0,0,0,6760,6767,5,176,0,0,6761,6765,5,94, + 0,0,6762,6766,5,218,0,0,6763,6766,5,261,0,0,6764,6766,3,664,332, + 0,6765,6762,1,0,0,0,6765,6763,1,0,0,0,6765,6764,1,0,0,0,6766,6768, + 1,0,0,0,6767,6761,1,0,0,0,6767,6768,1,0,0,0,6768,6783,1,0,0,0,6769, + 6775,5,218,0,0,6770,6773,5,94,0,0,6771,6774,5,261,0,0,6772,6774, + 3,664,332,0,6773,6771,1,0,0,0,6773,6772,1,0,0,0,6774,6776,1,0,0, + 0,6775,6770,1,0,0,0,6775,6776,1,0,0,0,6776,6783,1,0,0,0,6777,6780, + 5,261,0,0,6778,6779,5,94,0,0,6779,6781,3,664,332,0,6780,6778,1,0, + 0,0,6780,6781,1,0,0,0,6781,6783,1,0,0,0,6782,6753,1,0,0,0,6782,6754, + 1,0,0,0,6782,6755,1,0,0,0,6782,6760,1,0,0,0,6782,6769,1,0,0,0,6782, + 6777,1,0,0,0,6783,663,1,0,0,0,6784,6786,5,326,0,0,6785,6787,3,654, + 327,0,6786,6785,1,0,0,0,6786,6787,1,0,0,0,6787,665,1,0,0,0,6788, + 6789,7,93,0,0,6789,667,1,0,0,0,6790,6791,3,670,335,0,6791,669,1, + 0,0,0,6792,6793,6,335,-1,0,6793,6795,3,674,337,0,6794,6796,3,672, + 336,0,6795,6794,1,0,0,0,6795,6796,1,0,0,0,6796,6800,1,0,0,0,6797, + 6798,5,77,0,0,6798,6800,3,670,335,3,6799,6792,1,0,0,0,6799,6797, + 1,0,0,0,6800,6809,1,0,0,0,6801,6802,10,2,0,0,6802,6803,5,33,0,0, + 6803,6808,3,670,335,3,6804,6805,10,1,0,0,6805,6806,5,82,0,0,6806, + 6808,3,670,335,2,6807,6801,1,0,0,0,6807,6804,1,0,0,0,6808,6811,1, + 0,0,0,6809,6807,1,0,0,0,6809,6810,1,0,0,0,6810,671,1,0,0,0,6811, + 6809,1,0,0,0,6812,6813,3,666,333,0,6813,6814,3,674,337,0,6814,6884, + 1,0,0,0,6815,6816,3,666,333,0,6816,6817,3,724,362,0,6817,6823,3, + 714,357,0,6818,6824,3,556,278,0,6819,6820,5,2,0,0,6820,6821,3,668, + 334,0,6821,6822,5,3,0,0,6822,6824,1,0,0,0,6823,6818,1,0,0,0,6823, + 6819,1,0,0,0,6824,6884,1,0,0,0,6825,6827,5,77,0,0,6826,6825,1,0, + 0,0,6826,6827,1,0,0,0,6827,6828,1,0,0,0,6828,6829,5,387,0,0,6829, + 6830,3,674,337,0,6830,6831,5,33,0,0,6831,6832,3,674,337,0,6832,6884, + 1,0,0,0,6833,6835,5,77,0,0,6834,6833,1,0,0,0,6834,6835,1,0,0,0,6835, + 6836,1,0,0,0,6836,6837,5,68,0,0,6837,6838,5,2,0,0,6838,6843,3,668, + 334,0,6839,6840,5,6,0,0,6840,6842,3,668,334,0,6841,6839,1,0,0,0, + 6842,6845,1,0,0,0,6843,6841,1,0,0,0,6843,6844,1,0,0,0,6844,6846, + 1,0,0,0,6845,6843,1,0,0,0,6846,6847,5,3,0,0,6847,6884,1,0,0,0,6848, + 6850,5,77,0,0,6849,6848,1,0,0,0,6849,6850,1,0,0,0,6850,6851,1,0, + 0,0,6851,6852,5,68,0,0,6852,6884,3,556,278,0,6853,6855,5,77,0,0, + 6854,6853,1,0,0,0,6854,6855,1,0,0,0,6855,6864,1,0,0,0,6856,6865, + 5,120,0,0,6857,6865,5,114,0,0,6858,6859,5,127,0,0,6859,6865,5,94, + 0,0,6860,6862,5,387,0,0,6861,6863,5,91,0,0,6862,6861,1,0,0,0,6862, + 6863,1,0,0,0,6863,6865,1,0,0,0,6864,6856,1,0,0,0,6864,6857,1,0,0, + 0,6864,6858,1,0,0,0,6864,6860,1,0,0,0,6865,6866,1,0,0,0,6866,6869, + 3,674,337,0,6867,6868,5,197,0,0,6868,6870,3,674,337,0,6869,6867, + 1,0,0,0,6869,6870,1,0,0,0,6870,6884,1,0,0,0,6871,6873,5,116,0,0, + 6872,6874,5,77,0,0,6873,6872,1,0,0,0,6873,6874,1,0,0,0,6874,6875, + 1,0,0,0,6875,6884,5,78,0,0,6876,6878,5,116,0,0,6877,6879,5,77,0, + 0,6878,6877,1,0,0,0,6878,6879,1,0,0,0,6879,6880,1,0,0,0,6880,6881, + 5,56,0,0,6881,6882,5,64,0,0,6882,6884,3,674,337,0,6883,6812,1,0, + 0,0,6883,6815,1,0,0,0,6883,6826,1,0,0,0,6883,6834,1,0,0,0,6883,6849, + 1,0,0,0,6883,6854,1,0,0,0,6883,6871,1,0,0,0,6883,6876,1,0,0,0,6884, + 673,1,0,0,0,6885,6886,6,337,-1,0,6886,6890,3,676,338,0,6887,6888, + 7,30,0,0,6888,6890,3,674,337,4,6889,6885,1,0,0,0,6889,6887,1,0,0, + 0,6890,6907,1,0,0,0,6891,6892,10,3,0,0,6892,6893,7,94,0,0,6893,6906, + 3,674,337,4,6894,6895,10,2,0,0,6895,6896,7,30,0,0,6896,6906,3,674, + 337,3,6897,6898,10,1,0,0,6898,6899,5,15,0,0,6899,6906,3,674,337, + 2,6900,6901,10,5,0,0,6901,6902,5,142,0,0,6902,6903,5,418,0,0,6903, + 6904,5,386,0,0,6904,6906,3,668,334,0,6905,6891,1,0,0,0,6905,6894, + 1,0,0,0,6905,6897,1,0,0,0,6905,6900,1,0,0,0,6906,6909,1,0,0,0,6907, + 6905,1,0,0,0,6907,6908,1,0,0,0,6908,675,1,0,0,0,6909,6907,1,0,0, + 0,6910,6911,6,338,-1,0,6911,6912,7,95,0,0,6912,7000,3,556,278,0, + 6913,6916,5,35,0,0,6914,6917,3,556,278,0,6915,6917,3,736,368,0,6916, + 6914,1,0,0,0,6916,6915,1,0,0,0,6917,7000,1,0,0,0,6918,6919,5,28, + 0,0,6919,7000,3,750,375,0,6920,6921,5,470,0,0,6921,7000,3,528,264, + 0,6922,7000,5,574,0,0,6923,7000,5,576,0,0,6924,7000,5,566,0,0,6925, + 7000,5,570,0,0,6926,6936,3,804,402,0,6927,6937,3,806,403,0,6928, + 6929,5,2,0,0,6929,6931,3,732,366,0,6930,6932,3,580,290,0,6931,6930, + 1,0,0,0,6931,6932,1,0,0,0,6932,6933,1,0,0,0,6933,6934,5,3,0,0,6934, + 6935,3,806,403,0,6935,6937,1,0,0,0,6936,6927,1,0,0,0,6936,6928,1, + 0,0,0,6937,7000,1,0,0,0,6938,6940,3,650,325,0,6939,6938,1,0,0,0, + 6939,6940,1,0,0,0,6940,6941,1,0,0,0,6941,7000,3,806,403,0,6942,6950, + 5,403,0,0,6943,6945,3,806,403,0,6944,6946,3,662,331,0,6945,6944, + 1,0,0,0,6945,6946,1,0,0,0,6946,6951,1,0,0,0,6947,6948,3,654,327, + 0,6948,6949,3,806,403,0,6949,6951,1,0,0,0,6950,6943,1,0,0,0,6950, + 6947,1,0,0,0,6951,7000,1,0,0,0,6952,7000,5,96,0,0,6953,7000,5,60, + 0,0,6954,7000,5,78,0,0,6955,7000,5,577,0,0,6956,6957,5,2,0,0,6957, + 6958,3,668,334,0,6958,6959,5,3,0,0,6959,6960,3,750,375,0,6960,7000, + 1,0,0,0,6961,6963,5,40,0,0,6962,6964,3,668,334,0,6963,6962,1,0,0, + 0,6963,6964,1,0,0,0,6964,6966,1,0,0,0,6965,6967,3,744,372,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,6972,1,0,0,0,6970,6971,5,58,0,0,6971,6973,3,668,334,0,6972, + 6970,1,0,0,0,6972,6973,1,0,0,0,6973,6974,1,0,0,0,6974,6975,5,454, + 0,0,6975,7000,1,0,0,0,6976,7000,3,680,340,0,6977,6979,3,556,278, + 0,6978,6980,3,748,374,0,6979,6978,1,0,0,0,6979,6980,1,0,0,0,6980, + 7000,1,0,0,0,6981,7000,3,712,356,0,6982,6983,5,2,0,0,6983,6984,3, + 668,334,0,6984,6985,5,6,0,0,6985,6986,3,726,363,0,6986,6987,5,3, + 0,0,6987,7000,1,0,0,0,6988,6989,3,710,355,0,6989,6990,5,125,0,0, + 6990,6991,3,710,355,0,6991,7000,1,0,0,0,6992,7000,3,798,399,0,6993, + 7000,3,776,388,0,6994,6995,7,30,0,0,6995,7000,3,676,338,5,6996,6997, + 3,720,360,0,6997,6998,3,676,338,2,6998,7000,1,0,0,0,6999,6910,1, + 0,0,0,6999,6913,1,0,0,0,6999,6918,1,0,0,0,6999,6920,1,0,0,0,6999, + 6922,1,0,0,0,6999,6923,1,0,0,0,6999,6924,1,0,0,0,6999,6925,1,0,0, + 0,6999,6926,1,0,0,0,6999,6939,1,0,0,0,6999,6942,1,0,0,0,6999,6952, + 1,0,0,0,6999,6953,1,0,0,0,6999,6954,1,0,0,0,6999,6955,1,0,0,0,6999, + 6956,1,0,0,0,6999,6961,1,0,0,0,6999,6976,1,0,0,0,6999,6977,1,0,0, + 0,6999,6981,1,0,0,0,6999,6982,1,0,0,0,6999,6988,1,0,0,0,6999,6992, + 1,0,0,0,6999,6993,1,0,0,0,6999,6994,1,0,0,0,6999,6996,1,0,0,0,7000, + 7028,1,0,0,0,7001,7002,10,3,0,0,7002,7003,3,718,359,0,7003,7004, + 3,676,338,4,7004,7027,1,0,0,0,7005,7006,10,6,0,0,7006,7007,5,26, + 0,0,7007,7027,3,646,323,0,7008,7009,10,4,0,0,7009,7011,3,720,360, + 0,7010,7012,3,676,338,0,7011,7010,1,0,0,0,7011,7012,1,0,0,0,7012, + 7027,1,0,0,0,7013,7014,10,1,0,0,7014,7016,5,116,0,0,7015,7017,5, + 77,0,0,7016,7015,1,0,0,0,7016,7017,1,0,0,0,7017,7024,1,0,0,0,7018, + 7019,5,56,0,0,7019,7020,5,64,0,0,7020,7025,3,676,338,0,7021,7022, + 5,275,0,0,7022,7025,3,522,261,0,7023,7025,5,188,0,0,7024,7018,1, + 0,0,0,7024,7021,1,0,0,0,7024,7023,1,0,0,0,7025,7027,1,0,0,0,7026, + 7001,1,0,0,0,7026,7005,1,0,0,0,7026,7008,1,0,0,0,7026,7013,1,0,0, + 0,7027,7030,1,0,0,0,7028,7026,1,0,0,0,7028,7029,1,0,0,0,7029,677, + 1,0,0,0,7030,7028,1,0,0,0,7031,7032,3,804,402,0,7032,7053,5,2,0, + 0,7033,7037,3,732,366,0,7034,7035,5,6,0,0,7035,7036,5,101,0,0,7036, + 7038,3,734,367,0,7037,7034,1,0,0,0,7037,7038,1,0,0,0,7038,7040,1, + 0,0,0,7039,7041,3,580,290,0,7040,7039,1,0,0,0,7040,7041,1,0,0,0, + 7041,7054,1,0,0,0,7042,7043,5,101,0,0,7043,7045,3,734,367,0,7044, + 7046,3,580,290,0,7045,7044,1,0,0,0,7045,7046,1,0,0,0,7046,7054,1, + 0,0,0,7047,7048,7,81,0,0,7048,7050,3,732,366,0,7049,7051,3,580,290, + 0,7050,7049,1,0,0,0,7050,7051,1,0,0,0,7051,7054,1,0,0,0,7052,7054, + 5,9,0,0,7053,7033,1,0,0,0,7053,7042,1,0,0,0,7053,7047,1,0,0,0,7053, + 7052,1,0,0,0,7053,7054,1,0,0,0,7054,7055,1,0,0,0,7055,7056,5,3,0, + 0,7056,679,1,0,0,0,7057,7064,3,678,339,0,7058,7059,5,479,0,0,7059, + 7060,5,66,0,0,7060,7061,5,2,0,0,7061,7062,3,580,290,0,7062,7063, + 5,3,0,0,7063,7065,1,0,0,0,7064,7058,1,0,0,0,7064,7065,1,0,0,0,7065, + 7072,1,0,0,0,7066,7067,5,480,0,0,7067,7068,5,2,0,0,7068,7069,5,103, + 0,0,7069,7070,3,668,334,0,7070,7071,5,3,0,0,7071,7073,1,0,0,0,7072, + 7066,1,0,0,0,7072,7073,1,0,0,0,7073,7079,1,0,0,0,7074,7077,5,124, + 0,0,7075,7078,3,704,352,0,7076,7078,3,816,408,0,7077,7075,1,0,0, + 0,7077,7076,1,0,0,0,7078,7080,1,0,0,0,7079,7074,1,0,0,0,7079,7080, + 1,0,0,0,7080,7083,1,0,0,0,7081,7083,3,684,342,0,7082,7057,1,0,0, + 0,7082,7081,1,0,0,0,7083,681,1,0,0,0,7084,7087,3,678,339,0,7085, + 7087,3,684,342,0,7086,7084,1,0,0,0,7086,7085,1,0,0,0,7087,683,1, + 0,0,0,7088,7089,5,108,0,0,7089,7090,5,62,0,0,7090,7091,5,2,0,0,7091, + 7092,3,668,334,0,7092,7093,5,3,0,0,7093,7263,1,0,0,0,7094,7263,5, + 48,0,0,7095,7097,7,96,0,0,7096,7098,3,654,327,0,7097,7096,1,0,0, + 0,7097,7098,1,0,0,0,7098,7263,1,0,0,0,7099,7263,5,49,0,0,7100,7263, + 5,52,0,0,7101,7263,5,89,0,0,7102,7263,5,99,0,0,7103,7263,5,47,0, + 0,7104,7263,5,111,0,0,7105,7106,7,97,0,0,7106,7107,5,2,0,0,7107, + 7108,3,668,334,0,7108,7109,5,36,0,0,7109,7110,3,646,323,0,7110,7111, + 5,3,0,0,7111,7263,1,0,0,0,7112,7113,5,397,0,0,7113,7118,5,2,0,0, + 7114,7115,3,738,369,0,7115,7116,5,64,0,0,7116,7117,3,668,334,0,7117, + 7119,1,0,0,0,7118,7114,1,0,0,0,7118,7119,1,0,0,0,7119,7120,1,0,0, + 0,7120,7263,5,3,0,0,7121,7122,5,489,0,0,7122,7123,5,2,0,0,7123,7126, + 3,668,334,0,7124,7125,5,6,0,0,7125,7127,3,740,370,0,7126,7124,1, + 0,0,0,7126,7127,1,0,0,0,7127,7128,1,0,0,0,7128,7129,5,3,0,0,7129, + 7263,1,0,0,0,7130,7131,5,410,0,0,7131,7132,5,2,0,0,7132,7133,3,668, + 334,0,7133,7134,5,84,0,0,7134,7135,3,668,334,0,7135,7136,5,64,0, + 0,7136,7139,3,668,334,0,7137,7138,5,62,0,0,7138,7140,3,668,334,0, + 7139,7137,1,0,0,0,7139,7140,1,0,0,0,7140,7141,1,0,0,0,7141,7142, + 5,3,0,0,7142,7263,1,0,0,0,7143,7144,5,411,0,0,7144,7149,5,2,0,0, + 7145,7146,3,676,338,0,7146,7147,5,68,0,0,7147,7148,3,676,338,0,7148, + 7150,1,0,0,0,7149,7145,1,0,0,0,7149,7150,1,0,0,0,7150,7151,1,0,0, + 0,7151,7263,5,3,0,0,7152,7153,5,417,0,0,7153,7155,5,2,0,0,7154,7156, + 3,742,371,0,7155,7154,1,0,0,0,7155,7156,1,0,0,0,7156,7157,1,0,0, + 0,7157,7263,5,3,0,0,7158,7159,5,421,0,0,7159,7161,5,2,0,0,7160,7162, + 7,98,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7167,1,0,0,0,7163, + 7165,3,668,334,0,7164,7163,1,0,0,0,7164,7165,1,0,0,0,7165,7166,1, + 0,0,0,7166,7168,5,64,0,0,7167,7164,1,0,0,0,7167,7168,1,0,0,0,7168, + 7169,1,0,0,0,7169,7170,3,726,363,0,7170,7171,1,0,0,0,7171,7172,5, + 3,0,0,7172,7263,1,0,0,0,7173,7174,5,408,0,0,7174,7175,5,2,0,0,7175, + 7176,3,668,334,0,7176,7177,5,6,0,0,7177,7178,3,668,334,0,7178,7179, + 5,3,0,0,7179,7263,1,0,0,0,7180,7181,7,99,0,0,7181,7263,3,528,264, + 0,7182,7183,5,426,0,0,7183,7184,5,2,0,0,7184,7185,5,266,0,0,7185, + 7195,3,822,411,0,7186,7193,5,6,0,0,7187,7188,5,424,0,0,7188,7189, + 5,2,0,0,7189,7190,3,686,343,0,7190,7191,5,3,0,0,7191,7194,1,0,0, + 0,7192,7194,3,726,363,0,7193,7187,1,0,0,0,7193,7192,1,0,0,0,7194, + 7196,1,0,0,0,7195,7186,1,0,0,0,7195,7196,1,0,0,0,7196,7197,1,0,0, + 0,7197,7198,5,3,0,0,7198,7263,1,0,0,0,7199,7200,5,427,0,0,7200,7201, + 5,2,0,0,7201,7202,3,676,338,0,7202,7203,3,692,346,0,7203,7204,5, + 3,0,0,7204,7263,1,0,0,0,7205,7206,5,428,0,0,7206,7207,5,2,0,0,7207, + 7208,3,686,343,0,7208,7209,5,3,0,0,7209,7263,1,0,0,0,7210,7211,5, + 429,0,0,7211,7212,5,2,0,0,7212,7213,3,690,345,0,7213,7216,3,668, + 334,0,7214,7215,7,100,0,0,7215,7217,5,378,0,0,7216,7214,1,0,0,0, + 7216,7217,1,0,0,0,7217,7218,1,0,0,0,7218,7219,5,3,0,0,7219,7263, + 1,0,0,0,7220,7221,5,430,0,0,7221,7222,5,2,0,0,7222,7223,5,266,0, + 0,7223,7226,3,822,411,0,7224,7225,5,6,0,0,7225,7227,3,668,334,0, + 7226,7224,1,0,0,0,7226,7227,1,0,0,0,7227,7228,1,0,0,0,7228,7229, + 5,3,0,0,7229,7263,1,0,0,0,7230,7231,5,431,0,0,7231,7232,5,2,0,0, + 7232,7233,5,383,0,0,7233,7234,3,668,334,0,7234,7235,5,6,0,0,7235, + 7239,5,375,0,0,7236,7237,5,269,0,0,7237,7240,5,450,0,0,7238,7240, + 3,668,334,0,7239,7236,1,0,0,0,7239,7238,1,0,0,0,7240,7250,1,0,0, + 0,7241,7242,5,6,0,0,7242,7248,5,339,0,0,7243,7245,5,269,0,0,7244, + 7243,1,0,0,0,7244,7245,1,0,0,0,7245,7246,1,0,0,0,7246,7249,5,450, + 0,0,7247,7249,5,385,0,0,7248,7244,1,0,0,0,7248,7247,1,0,0,0,7249, + 7251,1,0,0,0,7250,7241,1,0,0,0,7250,7251,1,0,0,0,7251,7252,1,0,0, + 0,7252,7253,5,3,0,0,7253,7263,1,0,0,0,7254,7255,5,432,0,0,7255,7256, + 5,2,0,0,7256,7257,3,690,345,0,7257,7258,3,668,334,0,7258,7259,5, + 36,0,0,7259,7260,3,648,324,0,7260,7261,5,3,0,0,7261,7263,1,0,0,0, + 7262,7088,1,0,0,0,7262,7094,1,0,0,0,7262,7095,1,0,0,0,7262,7099, + 1,0,0,0,7262,7100,1,0,0,0,7262,7101,1,0,0,0,7262,7102,1,0,0,0,7262, + 7103,1,0,0,0,7262,7104,1,0,0,0,7262,7105,1,0,0,0,7262,7112,1,0,0, + 0,7262,7121,1,0,0,0,7262,7130,1,0,0,0,7262,7143,1,0,0,0,7262,7152, + 1,0,0,0,7262,7158,1,0,0,0,7262,7173,1,0,0,0,7262,7180,1,0,0,0,7262, + 7182,1,0,0,0,7262,7199,1,0,0,0,7262,7205,1,0,0,0,7262,7210,1,0,0, + 0,7262,7220,1,0,0,0,7262,7230,1,0,0,0,7262,7254,1,0,0,0,7263,685, + 1,0,0,0,7264,7269,3,688,344,0,7265,7266,5,6,0,0,7266,7268,3,688, + 344,0,7267,7265,1,0,0,0,7268,7271,1,0,0,0,7269,7267,1,0,0,0,7269, + 7270,1,0,0,0,7270,687,1,0,0,0,7271,7269,1,0,0,0,7272,7275,3,668, + 334,0,7273,7274,5,36,0,0,7274,7276,3,822,411,0,7275,7273,1,0,0,0, + 7275,7276,1,0,0,0,7276,689,1,0,0,0,7277,7278,7,101,0,0,7278,691, + 1,0,0,0,7279,7281,5,286,0,0,7280,7282,3,694,347,0,7281,7280,1,0, + 0,0,7281,7282,1,0,0,0,7282,7283,1,0,0,0,7283,7285,3,676,338,0,7284, + 7286,3,694,347,0,7285,7284,1,0,0,0,7285,7286,1,0,0,0,7286,693,1, + 0,0,0,7287,7288,5,147,0,0,7288,7289,7,102,0,0,7289,695,1,0,0,0,7290, + 7291,5,104,0,0,7291,7296,3,700,350,0,7292,7293,5,6,0,0,7293,7295, + 3,700,350,0,7294,7292,1,0,0,0,7295,7298,1,0,0,0,7296,7294,1,0,0, + 0,7296,7297,1,0,0,0,7297,697,1,0,0,0,7298,7296,1,0,0,0,7299,7300, + 5,67,0,0,7300,7301,3,668,334,0,7301,699,1,0,0,0,7302,7303,3,816, + 408,0,7303,7304,5,36,0,0,7304,7305,3,704,352,0,7305,701,1,0,0,0, + 7306,7309,5,124,0,0,7307,7310,3,704,352,0,7308,7310,3,816,408,0, + 7309,7307,1,0,0,0,7309,7308,1,0,0,0,7310,703,1,0,0,0,7311,7313,5, + 2,0,0,7312,7314,3,816,408,0,7313,7312,1,0,0,0,7313,7314,1,0,0,0, + 7314,7318,1,0,0,0,7315,7316,5,285,0,0,7316,7317,5,147,0,0,7317,7319, + 3,726,363,0,7318,7315,1,0,0,0,7318,7319,1,0,0,0,7319,7321,1,0,0, + 0,7320,7322,3,580,290,0,7321,7320,1,0,0,0,7321,7322,1,0,0,0,7322, + 7324,1,0,0,0,7323,7325,3,706,353,0,7324,7323,1,0,0,0,7324,7325,1, + 0,0,0,7325,7326,1,0,0,0,7326,7327,5,3,0,0,7327,705,1,0,0,0,7328, + 7333,7,103,0,0,7329,7330,5,387,0,0,7330,7331,3,708,354,0,7331,7332, + 5,33,0,0,7332,7334,1,0,0,0,7333,7329,1,0,0,0,7333,7334,1,0,0,0,7334, + 7335,1,0,0,0,7335,7336,3,708,354,0,7336,7346,1,0,0,0,7337,7344,5, + 199,0,0,7338,7339,5,434,0,0,7339,7345,5,414,0,0,7340,7345,5,66,0, + 0,7341,7345,5,467,0,0,7342,7343,5,269,0,0,7343,7345,5,482,0,0,7344, + 7338,1,0,0,0,7344,7340,1,0,0,0,7344,7341,1,0,0,0,7344,7342,1,0,0, + 0,7345,7347,1,0,0,0,7346,7337,1,0,0,0,7346,7347,1,0,0,0,7347,707, + 1,0,0,0,7348,7351,5,362,0,0,7349,7351,3,668,334,0,7350,7348,1,0, + 0,0,7350,7349,1,0,0,0,7351,7352,1,0,0,0,7352,7356,7,104,0,0,7353, + 7354,5,434,0,0,7354,7356,5,414,0,0,7355,7350,1,0,0,0,7355,7353,1, + 0,0,0,7356,709,1,0,0,0,7357,7365,3,712,356,0,7358,7359,5,2,0,0,7359, + 7360,3,726,363,0,7360,7361,5,6,0,0,7361,7362,3,668,334,0,7362,7363, + 5,3,0,0,7363,7365,1,0,0,0,7364,7357,1,0,0,0,7364,7358,1,0,0,0,7365, + 711,1,0,0,0,7366,7367,5,414,0,0,7367,7369,5,2,0,0,7368,7370,3,726, + 363,0,7369,7368,1,0,0,0,7369,7370,1,0,0,0,7370,7371,1,0,0,0,7371, + 7372,5,3,0,0,7372,713,1,0,0,0,7373,7374,7,105,0,0,7374,715,1,0,0, + 0,7375,7378,5,29,0,0,7376,7378,3,718,359,0,7377,7375,1,0,0,0,7377, + 7376,1,0,0,0,7378,717,1,0,0,0,7379,7380,7,106,0,0,7380,719,1,0,0, + 0,7381,7388,5,29,0,0,7382,7383,5,278,0,0,7383,7384,5,2,0,0,7384, 7385,3,408,204,0,7385,7386,5,3,0,0,7386,7388,1,0,0,0,7387,7381,1, - 0,0,0,7387,7382,1,0,0,0,7388,721,1,0,0,0,7389,7395,3,720,360,0,7390, - 7392,5,77,0,0,7391,7390,1,0,0,0,7391,7392,1,0,0,0,7392,7393,1,0, - 0,0,7393,7395,7,107,0,0,7394,7389,1,0,0,0,7394,7391,1,0,0,0,7395, - 723,1,0,0,0,7396,7401,3,668,334,0,7397,7398,5,6,0,0,7398,7400,3, - 668,334,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,725,1,0,0,0,7403,7401,1,0,0,0,7404,7405,5, - 2,0,0,7405,7406,3,668,334,0,7406,7407,5,3,0,0,7407,7410,1,0,0,0, - 7408,7410,3,794,397,0,7409,7404,1,0,0,0,7409,7408,1,0,0,0,7410,727, - 1,0,0,0,7411,7414,3,668,334,0,7412,7414,3,794,397,0,7413,7411,1, - 0,0,0,7413,7412,1,0,0,0,7414,729,1,0,0,0,7415,7420,3,732,366,0,7416, - 7417,5,6,0,0,7417,7419,3,732,366,0,7418,7416,1,0,0,0,7419,7422,1, - 0,0,0,7420,7418,1,0,0,0,7420,7421,1,0,0,0,7421,731,1,0,0,0,7422, - 7420,1,0,0,0,7423,7431,3,794,397,0,7424,7431,3,668,334,0,7425,7428, - 3,814,407,0,7426,7427,7,108,0,0,7427,7429,3,668,334,0,7428,7426, - 1,0,0,0,7428,7429,1,0,0,0,7429,7431,1,0,0,0,7430,7423,1,0,0,0,7430, - 7424,1,0,0,0,7430,7425,1,0,0,0,7431,733,1,0,0,0,7432,7442,5,4,0, - 0,7433,7443,3,724,362,0,7434,7439,3,734,367,0,7435,7436,5,6,0,0, - 7436,7438,3,734,367,0,7437,7435,1,0,0,0,7438,7441,1,0,0,0,7439,7437, - 1,0,0,0,7439,7440,1,0,0,0,7440,7443,1,0,0,0,7441,7439,1,0,0,0,7442, - 7433,1,0,0,0,7442,7434,1,0,0,0,7442,7443,1,0,0,0,7443,7444,1,0,0, - 0,7444,7445,5,5,0,0,7445,735,1,0,0,0,7446,7455,3,820,410,0,7447, - 7455,5,384,0,0,7448,7455,5,264,0,0,7449,7455,5,176,0,0,7450,7455, - 5,218,0,0,7451,7455,5,261,0,0,7452,7455,5,326,0,0,7453,7455,3,802, - 401,0,7454,7446,1,0,0,0,7454,7447,1,0,0,0,7454,7448,1,0,0,0,7454, - 7449,1,0,0,0,7454,7450,1,0,0,0,7454,7451,1,0,0,0,7454,7452,1,0,0, - 0,7454,7453,1,0,0,0,7455,737,1,0,0,0,7456,7457,7,109,0,0,7457,739, - 1,0,0,0,7458,7459,3,668,334,0,7459,7460,5,64,0,0,7460,7463,3,668, - 334,0,7461,7462,5,62,0,0,7462,7464,3,668,334,0,7463,7461,1,0,0,0, - 7463,7464,1,0,0,0,7464,7480,1,0,0,0,7465,7466,3,668,334,0,7466,7467, - 5,62,0,0,7467,7470,3,668,334,0,7468,7469,5,64,0,0,7469,7471,3,668, - 334,0,7470,7468,1,0,0,0,7470,7471,1,0,0,0,7471,7480,1,0,0,0,7472, - 7473,3,668,334,0,7473,7474,5,127,0,0,7474,7475,3,668,334,0,7475, - 7476,5,197,0,0,7476,7477,3,668,334,0,7477,7480,1,0,0,0,7478,7480, - 3,724,362,0,7479,7458,1,0,0,0,7479,7465,1,0,0,0,7479,7472,1,0,0, - 0,7479,7478,1,0,0,0,7480,741,1,0,0,0,7481,7482,5,102,0,0,7482,7483, - 3,668,334,0,7483,7484,5,93,0,0,7484,7485,3,668,334,0,7485,743,1, - 0,0,0,7486,7489,5,11,0,0,7487,7490,3,818,409,0,7488,7490,5,9,0,0, - 7489,7487,1,0,0,0,7489,7488,1,0,0,0,7490,7504,1,0,0,0,7491,7500, - 5,4,0,0,7492,7501,3,668,334,0,7493,7495,3,668,334,0,7494,7493,1, - 0,0,0,7494,7495,1,0,0,0,7495,7496,1,0,0,0,7496,7498,5,8,0,0,7497, - 7499,3,668,334,0,7498,7497,1,0,0,0,7498,7499,1,0,0,0,7499,7501,1, - 0,0,0,7500,7492,1,0,0,0,7500,7494,1,0,0,0,7501,7502,1,0,0,0,7502, - 7504,5,5,0,0,7503,7486,1,0,0,0,7503,7491,1,0,0,0,7504,745,1,0,0, - 0,7505,7507,3,744,372,0,7506,7505,1,0,0,0,7507,7508,1,0,0,0,7508, - 7506,1,0,0,0,7508,7509,1,0,0,0,7509,747,1,0,0,0,7510,7512,3,744, - 372,0,7511,7510,1,0,0,0,7512,7515,1,0,0,0,7513,7511,1,0,0,0,7513, - 7514,1,0,0,0,7514,749,1,0,0,0,7515,7513,1,0,0,0,7516,7521,3,752, - 376,0,7517,7518,5,6,0,0,7518,7520,3,752,376,0,7519,7517,1,0,0,0, - 7520,7523,1,0,0,0,7521,7519,1,0,0,0,7521,7522,1,0,0,0,7522,751,1, - 0,0,0,7523,7521,1,0,0,0,7524,7529,3,728,364,0,7525,7526,5,36,0,0, - 7526,7530,3,818,409,0,7527,7530,3,820,410,0,7528,7530,1,0,0,0,7529, - 7525,1,0,0,0,7529,7527,1,0,0,0,7529,7528,1,0,0,0,7530,7533,1,0,0, - 0,7531,7533,5,9,0,0,7532,7524,1,0,0,0,7532,7531,1,0,0,0,7533,753, - 1,0,0,0,7534,7539,3,774,387,0,7535,7536,5,6,0,0,7536,7538,3,774, - 387,0,7537,7535,1,0,0,0,7538,7541,1,0,0,0,7539,7537,1,0,0,0,7539, - 7540,1,0,0,0,7540,755,1,0,0,0,7541,7539,1,0,0,0,7542,7547,3,768, - 384,0,7543,7544,5,6,0,0,7544,7546,3,768,384,0,7545,7543,1,0,0,0, - 7546,7549,1,0,0,0,7547,7545,1,0,0,0,7547,7548,1,0,0,0,7548,757,1, - 0,0,0,7549,7547,1,0,0,0,7550,7555,3,784,392,0,7551,7552,5,6,0,0, - 7552,7554,3,784,392,0,7553,7551,1,0,0,0,7554,7557,1,0,0,0,7555,7553, - 1,0,0,0,7555,7556,1,0,0,0,7556,759,1,0,0,0,7557,7555,1,0,0,0,7558, - 7563,3,782,391,0,7559,7560,5,6,0,0,7560,7562,3,782,391,0,7561,7559, - 1,0,0,0,7562,7565,1,0,0,0,7563,7561,1,0,0,0,7563,7564,1,0,0,0,7564, - 761,1,0,0,0,7565,7563,1,0,0,0,7566,7567,3,774,387,0,7567,763,1,0, - 0,0,7568,7569,3,774,387,0,7569,765,1,0,0,0,7570,7571,3,774,387,0, - 7571,767,1,0,0,0,7572,7573,3,774,387,0,7573,769,1,0,0,0,7574,7575, - 3,774,387,0,7575,771,1,0,0,0,7576,7577,3,310,155,0,7577,773,1,0, - 0,0,7578,7580,3,812,406,0,7579,7581,3,746,373,0,7580,7579,1,0,0, - 0,7580,7581,1,0,0,0,7581,775,1,0,0,0,7582,7587,3,764,382,0,7583, - 7584,5,6,0,0,7584,7586,3,764,382,0,7585,7583,1,0,0,0,7586,7589,1, - 0,0,0,7587,7585,1,0,0,0,7587,7588,1,0,0,0,7588,777,1,0,0,0,7589, - 7587,1,0,0,0,7590,7595,3,812,406,0,7591,7592,5,6,0,0,7592,7594,3, - 812,406,0,7593,7591,1,0,0,0,7594,7597,1,0,0,0,7595,7593,1,0,0,0, - 7595,7596,1,0,0,0,7596,779,1,0,0,0,7597,7595,1,0,0,0,7598,7599,3, - 310,155,0,7599,781,1,0,0,0,7600,7601,3,310,155,0,7601,783,1,0,0, - 0,7602,7603,3,310,155,0,7603,785,1,0,0,0,7604,7605,3,812,406,0,7605, - 787,1,0,0,0,7606,7607,3,812,406,0,7607,789,1,0,0,0,7608,7613,3,814, - 407,0,7609,7610,3,812,406,0,7610,7611,3,746,373,0,7611,7613,1,0, - 0,0,7612,7608,1,0,0,0,7612,7609,1,0,0,0,7613,791,1,0,0,0,7614,7619, - 3,814,407,0,7615,7616,3,812,406,0,7616,7617,3,746,373,0,7617,7619, - 1,0,0,0,7618,7614,1,0,0,0,7618,7615,1,0,0,0,7619,793,1,0,0,0,7620, - 7621,3,812,406,0,7621,7622,3,748,374,0,7622,7625,1,0,0,0,7623,7625, - 4,397,10,0,7624,7620,1,0,0,0,7624,7623,1,0,0,0,7625,795,1,0,0,0, - 7626,7627,3,812,406,0,7627,797,1,0,0,0,7628,7633,3,814,407,0,7629, - 7630,3,812,406,0,7630,7631,3,746,373,0,7631,7633,1,0,0,0,7632,7628, - 1,0,0,0,7632,7629,1,0,0,0,7633,799,1,0,0,0,7634,7639,3,814,407,0, - 7635,7636,3,812,406,0,7636,7637,3,746,373,0,7637,7639,1,0,0,0,7638, - 7634,1,0,0,0,7638,7635,1,0,0,0,7639,801,1,0,0,0,7640,7643,3,804, - 402,0,7641,7642,5,487,0,0,7642,7644,3,804,402,0,7643,7641,1,0,0, - 0,7643,7644,1,0,0,0,7644,803,1,0,0,0,7645,7657,5,561,0,0,7646,7657, - 5,563,0,0,7647,7651,5,565,0,0,7648,7650,5,591,0,0,7649,7648,1,0, - 0,0,7650,7653,1,0,0,0,7651,7649,1,0,0,0,7651,7652,1,0,0,0,7652,7654, - 1,0,0,0,7653,7651,1,0,0,0,7654,7657,5,592,0,0,7655,7657,5,587,0, - 0,7656,7645,1,0,0,0,7656,7646,1,0,0,0,7656,7647,1,0,0,0,7656,7655, - 1,0,0,0,7657,805,1,0,0,0,7658,7660,7,30,0,0,7659,7658,1,0,0,0,7659, - 7660,1,0,0,0,7660,7661,1,0,0,0,7661,7662,5,574,0,0,7662,807,1,0, - 0,0,7663,7669,3,816,408,0,7664,7669,5,52,0,0,7665,7669,5,49,0,0, - 7666,7669,5,89,0,0,7667,7669,5,524,0,0,7668,7663,1,0,0,0,7668,7664, - 1,0,0,0,7668,7665,1,0,0,0,7668,7666,1,0,0,0,7668,7667,1,0,0,0,7669, - 809,1,0,0,0,7670,7675,3,808,404,0,7671,7672,5,6,0,0,7672,7674,3, - 808,404,0,7673,7671,1,0,0,0,7674,7677,1,0,0,0,7675,7673,1,0,0,0, - 7675,7676,1,0,0,0,7676,811,1,0,0,0,7677,7675,1,0,0,0,7678,7681,3, - 820,410,0,7679,7681,3,824,412,0,7680,7678,1,0,0,0,7680,7679,1,0, - 0,0,7681,813,1,0,0,0,7682,7685,3,820,410,0,7683,7685,3,826,413,0, - 7684,7682,1,0,0,0,7684,7683,1,0,0,0,7685,815,1,0,0,0,7686,7690,3, - 820,410,0,7687,7690,3,824,412,0,7688,7690,3,826,413,0,7689,7686, - 1,0,0,0,7689,7687,1,0,0,0,7689,7688,1,0,0,0,7690,817,1,0,0,0,7691, - 7696,3,820,410,0,7692,7696,3,824,412,0,7693,7696,3,826,413,0,7694, - 7696,3,828,414,0,7695,7691,1,0,0,0,7695,7692,1,0,0,0,7695,7693,1, - 0,0,0,7695,7694,1,0,0,0,7696,819,1,0,0,0,7697,7700,5,552,0,0,7698, - 7699,5,487,0,0,7699,7701,3,804,402,0,7700,7698,1,0,0,0,7700,7701, - 1,0,0,0,7701,7709,1,0,0,0,7702,7709,3,802,401,0,7703,7709,5,553, - 0,0,7704,7709,5,557,0,0,7705,7709,5,577,0,0,7706,7709,5,578,0,0, - 7707,7709,3,822,411,0,7708,7697,1,0,0,0,7708,7702,1,0,0,0,7708,7703, - 1,0,0,0,7708,7704,1,0,0,0,7708,7705,1,0,0,0,7708,7706,1,0,0,0,7708, - 7707,1,0,0,0,7709,821,1,0,0,0,7710,7711,7,110,0,0,7711,823,1,0,0, - 0,7712,7764,5,387,0,0,7713,7764,5,388,0,0,7714,7764,3,656,328,0, - 7715,7764,5,390,0,0,7716,7764,5,391,0,0,7717,7764,3,658,329,0,7718, - 7764,5,393,0,0,7719,7764,5,394,0,0,7720,7764,5,395,0,0,7721,7764, - 5,396,0,0,7722,7764,5,397,0,0,7723,7764,5,398,0,0,7724,7764,5,399, - 0,0,7725,7764,5,470,0,0,7726,7764,5,400,0,0,7727,7764,5,401,0,0, - 7728,7764,5,402,0,0,7729,7764,5,403,0,0,7730,7764,5,404,0,0,7731, - 7764,5,405,0,0,7732,7764,5,406,0,0,7733,7764,5,407,0,0,7734,7764, - 5,489,0,0,7735,7764,5,408,0,0,7736,7764,3,652,326,0,7737,7764,5, - 453,0,0,7738,7764,5,410,0,0,7739,7764,5,411,0,0,7740,7764,5,412, - 0,0,7741,7764,5,413,0,0,7742,7764,5,414,0,0,7743,7764,5,415,0,0, - 7744,7764,5,416,0,0,7745,7764,5,417,0,0,7746,7764,5,418,0,0,7747, - 7764,5,419,0,0,7748,7764,5,420,0,0,7749,7764,5,421,0,0,7750,7764, - 5,422,0,0,7751,7764,5,423,0,0,7752,7764,5,424,0,0,7753,7764,5,425, - 0,0,7754,7764,5,426,0,0,7755,7764,5,427,0,0,7756,7764,5,428,0,0, - 7757,7764,5,476,0,0,7758,7764,5,429,0,0,7759,7764,5,430,0,0,7760, - 7764,5,431,0,0,7761,7764,5,432,0,0,7762,7764,5,474,0,0,7763,7712, - 1,0,0,0,7763,7713,1,0,0,0,7763,7714,1,0,0,0,7763,7715,1,0,0,0,7763, - 7716,1,0,0,0,7763,7717,1,0,0,0,7763,7718,1,0,0,0,7763,7719,1,0,0, - 0,7763,7720,1,0,0,0,7763,7721,1,0,0,0,7763,7722,1,0,0,0,7763,7723, - 1,0,0,0,7763,7724,1,0,0,0,7763,7725,1,0,0,0,7763,7726,1,0,0,0,7763, - 7727,1,0,0,0,7763,7728,1,0,0,0,7763,7729,1,0,0,0,7763,7730,1,0,0, - 0,7763,7731,1,0,0,0,7763,7732,1,0,0,0,7763,7733,1,0,0,0,7763,7734, - 1,0,0,0,7763,7735,1,0,0,0,7763,7736,1,0,0,0,7763,7737,1,0,0,0,7763, - 7738,1,0,0,0,7763,7739,1,0,0,0,7763,7740,1,0,0,0,7763,7741,1,0,0, - 0,7763,7742,1,0,0,0,7763,7743,1,0,0,0,7763,7744,1,0,0,0,7763,7745, - 1,0,0,0,7763,7746,1,0,0,0,7763,7747,1,0,0,0,7763,7748,1,0,0,0,7763, - 7749,1,0,0,0,7763,7750,1,0,0,0,7763,7751,1,0,0,0,7763,7752,1,0,0, - 0,7763,7753,1,0,0,0,7763,7754,1,0,0,0,7763,7755,1,0,0,0,7763,7756, - 1,0,0,0,7763,7757,1,0,0,0,7763,7758,1,0,0,0,7763,7759,1,0,0,0,7763, - 7760,1,0,0,0,7763,7761,1,0,0,0,7763,7762,1,0,0,0,7764,825,1,0,0, - 0,7765,7766,7,111,0,0,7766,827,1,0,0,0,7767,7768,7,112,0,0,7768, - 829,1,0,0,0,7769,7771,3,832,416,0,7770,7769,1,0,0,0,7770,7771,1, - 0,0,0,7771,7782,1,0,0,0,7772,7780,5,178,0,0,7773,7777,3,834,417, - 0,7774,7777,5,178,0,0,7775,7777,3,832,416,0,7776,7773,1,0,0,0,7776, - 7774,1,0,0,0,7776,7775,1,0,0,0,7777,7778,1,0,0,0,7778,7776,1,0,0, - 0,7778,7779,1,0,0,0,7779,7781,1,0,0,0,7780,7776,1,0,0,0,7780,7781, - 1,0,0,0,7781,7783,1,0,0,0,7782,7772,1,0,0,0,7782,7783,1,0,0,0,7783, - 7784,1,0,0,0,7784,7788,5,146,0,0,7785,7787,3,840,420,0,7786,7785, - 1,0,0,0,7787,7790,1,0,0,0,7788,7786,1,0,0,0,7788,7789,1,0,0,0,7789, - 7792,1,0,0,0,7790,7788,1,0,0,0,7791,7793,3,918,459,0,7792,7791,1, - 0,0,0,7792,7793,1,0,0,0,7793,7794,1,0,0,0,7794,7796,5,454,0,0,7795, - 7797,3,922,461,0,7796,7795,1,0,0,0,7796,7797,1,0,0,0,7797,831,1, - 0,0,0,7798,7799,5,18,0,0,7799,7800,3,922,461,0,7800,7801,5,19,0, - 0,7801,833,1,0,0,0,7802,7849,3,922,461,0,7803,7804,5,496,0,0,7804, - 7807,5,62,0,0,7805,7808,5,28,0,0,7806,7808,3,812,406,0,7807,7805, - 1,0,0,0,7807,7806,1,0,0,0,7808,7850,1,0,0,0,7809,7811,5,497,0,0, - 7810,7809,1,0,0,0,7810,7811,1,0,0,0,7811,7812,1,0,0,0,7812,7814, - 3,646,323,0,7813,7815,3,90,45,0,7814,7813,1,0,0,0,7814,7815,1,0, - 0,0,7815,7818,1,0,0,0,7816,7817,5,77,0,0,7817,7819,5,78,0,0,7818, - 7816,1,0,0,0,7818,7819,1,0,0,0,7819,7825,1,0,0,0,7820,7823,3,838, - 419,0,7821,7823,5,53,0,0,7822,7820,1,0,0,0,7822,7821,1,0,0,0,7823, - 7824,1,0,0,0,7824,7826,3,924,462,0,7825,7822,1,0,0,0,7825,7826,1, - 0,0,0,7826,7850,1,0,0,0,7827,7829,5,269,0,0,7828,7827,1,0,0,0,7828, - 7829,1,0,0,0,7829,7830,1,0,0,0,7830,7832,5,324,0,0,7831,7828,1,0, - 0,0,7831,7832,1,0,0,0,7832,7833,1,0,0,0,7833,7845,5,172,0,0,7834, - 7835,5,2,0,0,7835,7840,3,836,418,0,7836,7837,5,6,0,0,7837,7839,3, - 836,418,0,7838,7836,1,0,0,0,7839,7842,1,0,0,0,7840,7838,1,0,0,0, - 7840,7841,1,0,0,0,7841,7843,1,0,0,0,7842,7840,1,0,0,0,7843,7844, - 5,3,0,0,7844,7846,1,0,0,0,7845,7834,1,0,0,0,7845,7846,1,0,0,0,7846, - 7847,1,0,0,0,7847,7848,7,113,0,0,7848,7850,3,554,277,0,7849,7803, - 1,0,0,0,7849,7810,1,0,0,0,7849,7831,1,0,0,0,7850,7851,1,0,0,0,7851, - 7852,5,7,0,0,7852,835,1,0,0,0,7853,7854,3,922,461,0,7854,7855,3, - 646,323,0,7855,837,1,0,0,0,7856,7857,7,114,0,0,7857,839,1,0,0,0, - 7858,7859,3,830,415,0,7859,7860,5,7,0,0,7860,7883,1,0,0,0,7861,7883, - 3,868,434,0,7862,7883,3,870,435,0,7863,7883,3,846,423,0,7864,7883, - 3,854,427,0,7865,7883,3,858,429,0,7866,7883,3,860,430,0,7867,7883, - 3,864,432,0,7868,7883,3,866,433,0,7869,7883,3,874,437,0,7870,7883, - 3,878,439,0,7871,7883,3,880,440,0,7872,7883,3,842,421,0,7873,7883, - 3,844,422,0,7874,7883,3,848,424,0,7875,7883,3,884,442,0,7876,7883, - 3,888,444,0,7877,7883,3,892,446,0,7878,7883,3,908,454,0,7879,7883, - 3,910,455,0,7880,7883,3,912,456,0,7881,7883,3,914,457,0,7882,7858, - 1,0,0,0,7882,7861,1,0,0,0,7882,7862,1,0,0,0,7882,7863,1,0,0,0,7882, - 7864,1,0,0,0,7882,7865,1,0,0,0,7882,7866,1,0,0,0,7882,7867,1,0,0, - 0,7882,7868,1,0,0,0,7882,7869,1,0,0,0,7882,7870,1,0,0,0,7882,7871, - 1,0,0,0,7882,7872,1,0,0,0,7882,7873,1,0,0,0,7882,7874,1,0,0,0,7882, - 7875,1,0,0,0,7882,7876,1,0,0,0,7882,7877,1,0,0,0,7882,7878,1,0,0, - 0,7882,7879,1,0,0,0,7882,7880,1,0,0,0,7882,7881,1,0,0,0,7883,841, - 1,0,0,0,7884,7885,5,498,0,0,7885,7886,3,924,462,0,7886,7887,5,7, - 0,0,7887,843,1,0,0,0,7888,7889,5,433,0,0,7889,7896,3,922,461,0,7890, - 7892,5,2,0,0,7891,7893,3,724,362,0,7892,7891,1,0,0,0,7892,7893,1, - 0,0,0,7893,7894,1,0,0,0,7894,7895,5,3,0,0,7895,7897,5,7,0,0,7896, - 7890,1,0,0,0,7896,7897,1,0,0,0,7897,7908,1,0,0,0,7898,7899,5,57, - 0,0,7899,7900,3,922,461,0,7900,7902,5,2,0,0,7901,7903,3,724,362, - 0,7902,7901,1,0,0,0,7902,7903,1,0,0,0,7903,7904,1,0,0,0,7904,7905, - 5,3,0,0,7905,7906,5,7,0,0,7906,7908,1,0,0,0,7907,7888,1,0,0,0,7907, - 7898,1,0,0,0,7908,845,1,0,0,0,7909,7910,3,852,426,0,7910,7911,3, - 838,419,0,7911,7912,3,924,462,0,7912,7913,5,7,0,0,7913,847,1,0,0, - 0,7914,7916,5,499,0,0,7915,7917,7,115,0,0,7916,7915,1,0,0,0,7916, - 7917,1,0,0,0,7917,7918,1,0,0,0,7918,7919,5,500,0,0,7919,7924,3,850, - 425,0,7920,7921,5,6,0,0,7921,7923,3,850,425,0,7922,7920,1,0,0,0, - 7923,7926,1,0,0,0,7924,7922,1,0,0,0,7924,7925,1,0,0,0,7925,7927, - 1,0,0,0,7926,7924,1,0,0,0,7927,7928,5,7,0,0,7928,849,1,0,0,0,7929, - 7930,3,852,426,0,7930,7931,3,838,419,0,7931,7932,3,812,406,0,7932, - 851,1,0,0,0,7933,7936,3,310,155,0,7934,7936,5,28,0,0,7935,7933,1, - 0,0,0,7935,7934,1,0,0,0,7936,7943,1,0,0,0,7937,7938,5,4,0,0,7938, - 7939,3,668,334,0,7939,7940,5,5,0,0,7940,7942,1,0,0,0,7941,7937,1, - 0,0,0,7942,7945,1,0,0,0,7943,7941,1,0,0,0,7943,7944,1,0,0,0,7944, - 853,1,0,0,0,7945,7943,1,0,0,0,7946,7947,5,220,0,0,7947,7948,3,924, - 462,0,7948,7952,5,93,0,0,7949,7951,3,840,420,0,7950,7949,1,0,0,0, - 7951,7954,1,0,0,0,7952,7950,1,0,0,0,7952,7953,1,0,0,0,7953,7966, - 1,0,0,0,7954,7952,1,0,0,0,7955,7956,5,502,0,0,7956,7957,3,668,334, - 0,7957,7961,5,93,0,0,7958,7960,3,840,420,0,7959,7958,1,0,0,0,7960, - 7963,1,0,0,0,7961,7959,1,0,0,0,7961,7962,1,0,0,0,7962,7965,1,0,0, - 0,7963,7961,1,0,0,0,7964,7955,1,0,0,0,7965,7968,1,0,0,0,7966,7964, - 1,0,0,0,7966,7967,1,0,0,0,7967,7970,1,0,0,0,7968,7966,1,0,0,0,7969, - 7971,3,856,428,0,7970,7969,1,0,0,0,7970,7971,1,0,0,0,7971,7972,1, - 0,0,0,7972,7973,5,454,0,0,7973,7974,5,220,0,0,7974,7975,5,7,0,0, - 7975,855,1,0,0,0,7976,7980,5,58,0,0,7977,7979,3,840,420,0,7978,7977, - 1,0,0,0,7979,7982,1,0,0,0,7980,7978,1,0,0,0,7980,7981,1,0,0,0,7981, - 857,1,0,0,0,7982,7980,1,0,0,0,7983,7985,5,40,0,0,7984,7986,3,924, - 462,0,7985,7984,1,0,0,0,7985,7986,1,0,0,0,7986,7996,1,0,0,0,7987, - 7988,5,102,0,0,7988,7989,3,724,362,0,7989,7993,5,93,0,0,7990,7992, - 3,840,420,0,7991,7990,1,0,0,0,7992,7995,1,0,0,0,7993,7991,1,0,0, - 0,7993,7994,1,0,0,0,7994,7997,1,0,0,0,7995,7993,1,0,0,0,7996,7987, - 1,0,0,0,7997,7998,1,0,0,0,7998,7996,1,0,0,0,7998,7999,1,0,0,0,7999, - 8001,1,0,0,0,8000,8002,3,856,428,0,8001,8000,1,0,0,0,8001,8002,1, - 0,0,0,8002,8003,1,0,0,0,8003,8004,5,454,0,0,8004,8005,5,40,0,0,8005, - 8006,5,7,0,0,8006,859,1,0,0,0,8007,8009,3,832,416,0,8008,8007,1, - 0,0,0,8008,8009,1,0,0,0,8009,8014,1,0,0,0,8010,8011,5,503,0,0,8011, - 8015,3,668,334,0,8012,8013,5,62,0,0,8013,8015,3,862,431,0,8014,8010, - 1,0,0,0,8014,8012,1,0,0,0,8014,8015,1,0,0,0,8015,8016,1,0,0,0,8016, - 8017,3,876,438,0,8017,861,1,0,0,0,8018,8019,3,308,154,0,8019,8042, - 5,68,0,0,8020,8022,3,812,406,0,8021,8023,3,528,264,0,8022,8021,1, - 0,0,0,8022,8023,1,0,0,0,8023,8043,1,0,0,0,8024,8043,3,554,277,0, - 8025,8043,3,514,257,0,8026,8027,5,202,0,0,8027,8030,3,668,334,0, - 8028,8029,5,100,0,0,8029,8031,3,724,362,0,8030,8028,1,0,0,0,8030, - 8031,1,0,0,0,8031,8043,1,0,0,0,8032,8034,5,504,0,0,8033,8032,1,0, - 0,0,8033,8034,1,0,0,0,8034,8035,1,0,0,0,8035,8036,3,668,334,0,8036, - 8037,5,24,0,0,8037,8040,3,668,334,0,8038,8039,5,147,0,0,8039,8041, - 3,668,334,0,8040,8038,1,0,0,0,8040,8041,1,0,0,0,8041,8043,1,0,0, - 0,8042,8020,1,0,0,0,8042,8024,1,0,0,0,8042,8025,1,0,0,0,8042,8026, - 1,0,0,0,8042,8033,1,0,0,0,8043,863,1,0,0,0,8044,8046,3,832,416,0, - 8045,8044,1,0,0,0,8045,8046,1,0,0,0,8046,8047,1,0,0,0,8047,8048, - 5,505,0,0,8048,8051,3,308,154,0,8049,8050,5,506,0,0,8050,8052,5, - 574,0,0,8051,8049,1,0,0,0,8051,8052,1,0,0,0,8052,8053,1,0,0,0,8053, - 8054,5,68,0,0,8054,8055,5,35,0,0,8055,8056,3,668,334,0,8056,8057, - 3,876,438,0,8057,865,1,0,0,0,8058,8060,7,116,0,0,8059,8061,3,922, - 461,0,8060,8059,1,0,0,0,8060,8061,1,0,0,0,8061,8064,1,0,0,0,8062, - 8063,5,102,0,0,8063,8065,3,924,462,0,8064,8062,1,0,0,0,8064,8065, - 1,0,0,0,8065,8066,1,0,0,0,8066,8067,5,7,0,0,8067,867,1,0,0,0,8068, - 8083,5,508,0,0,8069,8070,5,268,0,0,8070,8084,3,924,462,0,8071,8078, - 5,509,0,0,8072,8073,5,202,0,0,8073,8074,3,668,334,0,8074,8075,5, - 100,0,0,8075,8076,3,724,362,0,8076,8079,1,0,0,0,8077,8079,3,554, - 277,0,8078,8072,1,0,0,0,8078,8077,1,0,0,0,8079,8084,1,0,0,0,8080, - 8082,3,924,462,0,8081,8080,1,0,0,0,8081,8082,1,0,0,0,8082,8084,1, - 0,0,0,8083,8069,1,0,0,0,8083,8071,1,0,0,0,8083,8081,1,0,0,0,8084, - 8085,1,0,0,0,8085,8086,5,7,0,0,8086,869,1,0,0,0,8087,8117,5,510, - 0,0,8088,8090,7,117,0,0,8089,8088,1,0,0,0,8089,8090,1,0,0,0,8090, - 8103,1,0,0,0,8091,8104,3,820,410,0,8092,8093,5,511,0,0,8093,8104, - 3,802,401,0,8094,8101,3,802,401,0,8095,8096,5,6,0,0,8096,8098,3, - 668,334,0,8097,8095,1,0,0,0,8098,8099,1,0,0,0,8099,8097,1,0,0,0, - 8099,8100,1,0,0,0,8100,8102,1,0,0,0,8101,8097,1,0,0,0,8101,8102, - 1,0,0,0,8102,8104,1,0,0,0,8103,8091,1,0,0,0,8103,8092,1,0,0,0,8103, - 8094,1,0,0,0,8103,8104,1,0,0,0,8104,8114,1,0,0,0,8105,8106,5,100, - 0,0,8106,8111,3,872,436,0,8107,8108,5,6,0,0,8108,8110,3,872,436, - 0,8109,8107,1,0,0,0,8110,8113,1,0,0,0,8111,8109,1,0,0,0,8111,8112, - 1,0,0,0,8112,8115,1,0,0,0,8113,8111,1,0,0,0,8114,8105,1,0,0,0,8114, - 8115,1,0,0,0,8115,8116,1,0,0,0,8116,8118,5,7,0,0,8117,8089,1,0,0, - 0,8117,8118,1,0,0,0,8118,871,1,0,0,0,8119,8120,3,820,410,0,8120, - 8121,5,10,0,0,8121,8122,3,668,334,0,8122,873,1,0,0,0,8123,8124,5, - 518,0,0,8124,8127,3,924,462,0,8125,8126,5,6,0,0,8126,8128,3,924, - 462,0,8127,8125,1,0,0,0,8127,8128,1,0,0,0,8128,8129,1,0,0,0,8129, - 8130,5,7,0,0,8130,875,1,0,0,0,8131,8135,5,519,0,0,8132,8134,3,840, - 420,0,8133,8132,1,0,0,0,8134,8137,1,0,0,0,8135,8133,1,0,0,0,8135, - 8136,1,0,0,0,8136,8138,1,0,0,0,8137,8135,1,0,0,0,8138,8139,5,454, - 0,0,8139,8141,5,519,0,0,8140,8142,3,922,461,0,8141,8140,1,0,0,0, - 8141,8142,1,0,0,0,8142,8143,1,0,0,0,8143,8144,5,7,0,0,8144,877,1, - 0,0,0,8145,8147,3,4,2,0,8146,8148,3,882,441,0,8147,8146,1,0,0,0, - 8147,8148,1,0,0,0,8148,8149,1,0,0,0,8149,8150,5,7,0,0,8150,879,1, - 0,0,0,8151,8152,5,202,0,0,8152,8168,3,668,334,0,8153,8155,3,882, - 441,0,8154,8153,1,0,0,0,8154,8155,1,0,0,0,8155,8158,1,0,0,0,8156, - 8157,5,100,0,0,8157,8159,3,724,362,0,8158,8156,1,0,0,0,8158,8159, - 1,0,0,0,8159,8169,1,0,0,0,8160,8161,5,100,0,0,8161,8163,3,724,362, - 0,8162,8160,1,0,0,0,8162,8163,1,0,0,0,8163,8165,1,0,0,0,8164,8166, - 3,882,441,0,8165,8164,1,0,0,0,8165,8166,1,0,0,0,8166,8169,1,0,0, - 0,8167,8169,1,0,0,0,8168,8154,1,0,0,0,8168,8162,1,0,0,0,8168,8167, - 1,0,0,0,8169,8170,1,0,0,0,8170,8171,5,7,0,0,8171,881,1,0,0,0,8172, - 8174,5,71,0,0,8173,8175,5,346,0,0,8174,8173,1,0,0,0,8174,8175,1, - 0,0,0,8175,8176,1,0,0,0,8176,8177,3,724,362,0,8177,883,1,0,0,0,8178, - 8210,5,520,0,0,8179,8184,3,916,458,0,8180,8182,5,269,0,0,8181,8180, - 1,0,0,0,8181,8182,1,0,0,0,8182,8183,1,0,0,0,8183,8185,5,324,0,0, - 8184,8181,1,0,0,0,8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8194, - 5,62,0,0,8187,8195,3,554,277,0,8188,8189,5,202,0,0,8189,8192,3,924, - 462,0,8190,8191,5,100,0,0,8191,8193,3,724,362,0,8192,8190,1,0,0, - 0,8192,8193,1,0,0,0,8193,8195,1,0,0,0,8194,8187,1,0,0,0,8194,8188, - 1,0,0,0,8195,8211,1,0,0,0,8196,8208,3,812,406,0,8197,8198,5,2,0, - 0,8198,8203,3,886,443,0,8199,8200,5,6,0,0,8200,8202,3,886,443,0, - 8201,8199,1,0,0,0,8202,8205,1,0,0,0,8203,8201,1,0,0,0,8203,8204, - 1,0,0,0,8204,8206,1,0,0,0,8205,8203,1,0,0,0,8206,8207,5,3,0,0,8207, - 8209,1,0,0,0,8208,8197,1,0,0,0,8208,8209,1,0,0,0,8209,8211,1,0,0, - 0,8210,8179,1,0,0,0,8210,8196,1,0,0,0,8211,8212,1,0,0,0,8212,8213, - 5,7,0,0,8213,885,1,0,0,0,8214,8215,3,812,406,0,8215,8216,5,20,0, - 0,8216,8218,1,0,0,0,8217,8214,1,0,0,0,8217,8218,1,0,0,0,8218,8219, - 1,0,0,0,8219,8220,3,668,334,0,8220,887,1,0,0,0,8221,8223,5,61,0, - 0,8222,8224,3,890,445,0,8223,8222,1,0,0,0,8223,8224,1,0,0,0,8224, - 8226,1,0,0,0,8225,8227,3,326,163,0,8226,8225,1,0,0,0,8226,8227,1, - 0,0,0,8227,8228,1,0,0,0,8228,8229,3,916,458,0,8229,8230,5,71,0,0, - 8230,8231,3,724,362,0,8231,8232,5,7,0,0,8232,889,1,0,0,0,8233,8248, - 5,268,0,0,8234,8248,5,293,0,0,8235,8248,5,207,0,0,8236,8248,5,249, - 0,0,8237,8239,7,51,0,0,8238,8237,1,0,0,0,8238,8239,1,0,0,0,8239, - 8240,1,0,0,0,8240,8248,3,668,334,0,8241,8248,5,30,0,0,8242,8245, - 7,118,0,0,8243,8246,3,668,334,0,8244,8246,5,30,0,0,8245,8243,1,0, - 0,0,8245,8244,1,0,0,0,8245,8246,1,0,0,0,8246,8248,1,0,0,0,8247,8233, - 1,0,0,0,8247,8234,1,0,0,0,8247,8235,1,0,0,0,8247,8236,1,0,0,0,8247, - 8238,1,0,0,0,8247,8241,1,0,0,0,8247,8242,1,0,0,0,8248,891,1,0,0, - 0,8249,8251,5,265,0,0,8250,8252,3,890,445,0,8251,8250,1,0,0,0,8251, - 8252,1,0,0,0,8252,8253,1,0,0,0,8253,8254,3,916,458,0,8254,8255,5, - 7,0,0,8255,893,1,0,0,0,8256,8258,3,566,283,0,8257,8256,1,0,0,0,8257, - 8258,1,0,0,0,8258,8259,1,0,0,0,8259,8260,5,525,0,0,8260,8262,5,71, - 0,0,8261,8263,5,81,0,0,8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263, - 8264,1,0,0,0,8264,8266,3,768,384,0,8265,8267,5,9,0,0,8266,8265,1, - 0,0,0,8266,8267,1,0,0,0,8267,8272,1,0,0,0,8268,8270,5,36,0,0,8269, - 8268,1,0,0,0,8269,8270,1,0,0,0,8270,8271,1,0,0,0,8271,8273,3,812, - 406,0,8272,8269,1,0,0,0,8272,8273,1,0,0,0,8273,8274,1,0,0,0,8274, - 8275,5,100,0,0,8275,8276,3,896,448,0,8276,8277,5,80,0,0,8277,8279, - 3,668,334,0,8278,8280,3,898,449,0,8279,8278,1,0,0,0,8280,8281,1, - 0,0,0,8281,8279,1,0,0,0,8281,8282,1,0,0,0,8282,8284,1,0,0,0,8283, - 8285,3,540,270,0,8284,8283,1,0,0,0,8284,8285,1,0,0,0,8285,895,1, - 0,0,0,8286,8288,5,81,0,0,8287,8286,1,0,0,0,8287,8288,1,0,0,0,8288, - 8289,1,0,0,0,8289,8291,3,768,384,0,8290,8292,5,9,0,0,8291,8290,1, - 0,0,0,8291,8292,1,0,0,0,8292,8298,1,0,0,0,8293,8296,3,558,279,0, - 8294,8296,3,602,301,0,8295,8293,1,0,0,0,8295,8294,1,0,0,0,8296,8298, - 1,0,0,0,8297,8287,1,0,0,0,8297,8295,1,0,0,0,8298,8303,1,0,0,0,8299, - 8301,5,36,0,0,8300,8299,1,0,0,0,8300,8301,1,0,0,0,8301,8302,1,0, - 0,0,8302,8304,3,812,406,0,8303,8300,1,0,0,0,8303,8304,1,0,0,0,8304, - 897,1,0,0,0,8305,8306,5,102,0,0,8306,8309,5,526,0,0,8307,8308,5, - 33,0,0,8308,8310,3,668,334,0,8309,8307,1,0,0,0,8309,8310,1,0,0,0, - 8310,8311,1,0,0,0,8311,8316,5,93,0,0,8312,8317,3,902,451,0,8313, - 8317,5,182,0,0,8314,8315,5,57,0,0,8315,8317,5,270,0,0,8316,8312, - 1,0,0,0,8316,8313,1,0,0,0,8316,8314,1,0,0,0,8317,8332,1,0,0,0,8318, - 8319,5,102,0,0,8319,8320,5,77,0,0,8320,8323,5,526,0,0,8321,8322, - 5,33,0,0,8322,8324,3,668,334,0,8323,8321,1,0,0,0,8323,8324,1,0,0, - 0,8324,8325,1,0,0,0,8325,8329,5,93,0,0,8326,8330,3,900,450,0,8327, - 8328,5,57,0,0,8328,8330,5,270,0,0,8329,8326,1,0,0,0,8329,8327,1, - 0,0,0,8330,8332,1,0,0,0,8331,8305,1,0,0,0,8331,8318,1,0,0,0,8332, - 899,1,0,0,0,8333,8335,5,241,0,0,8334,8336,3,138,69,0,8335,8334,1, - 0,0,0,8335,8336,1,0,0,0,8336,8340,1,0,0,0,8337,8338,5,463,0,0,8338, - 8339,7,77,0,0,8339,8341,5,450,0,0,8340,8337,1,0,0,0,8340,8341,1, - 0,0,0,8341,8342,1,0,0,0,8342,8343,3,904,452,0,8343,901,1,0,0,0,8344, - 8345,5,369,0,0,8345,8363,5,333,0,0,8346,8347,3,794,397,0,8347,8348, - 5,10,0,0,8348,8349,3,906,453,0,8349,8364,1,0,0,0,8350,8351,3,138, - 69,0,8351,8352,5,10,0,0,8352,8353,5,2,0,0,8353,8358,3,906,453,0, - 8354,8355,5,6,0,0,8355,8357,3,906,453,0,8356,8354,1,0,0,0,8357,8360, - 1,0,0,0,8358,8356,1,0,0,0,8358,8359,1,0,0,0,8359,8361,1,0,0,0,8360, - 8358,1,0,0,0,8361,8362,5,3,0,0,8362,8364,1,0,0,0,8363,8346,1,0,0, - 0,8363,8350,1,0,0,0,8364,8365,1,0,0,0,8365,8363,1,0,0,0,8365,8366, - 1,0,0,0,8366,903,1,0,0,0,8367,8368,5,422,0,0,8368,8369,5,2,0,0,8369, - 8374,3,906,453,0,8370,8371,5,6,0,0,8371,8373,3,906,453,0,8372,8370, - 1,0,0,0,8373,8376,1,0,0,0,8374,8372,1,0,0,0,8374,8375,1,0,0,0,8375, - 8377,1,0,0,0,8376,8374,1,0,0,0,8377,8378,5,3,0,0,8378,8382,1,0,0, - 0,8379,8380,5,53,0,0,8380,8382,5,422,0,0,8381,8367,1,0,0,0,8381, - 8379,1,0,0,0,8382,905,1,0,0,0,8383,8386,3,582,291,0,8384,8386,5, - 53,0,0,8385,8383,1,0,0,0,8385,8384,1,0,0,0,8386,907,1,0,0,0,8387, - 8388,5,157,0,0,8388,8389,3,916,458,0,8389,8390,5,7,0,0,8390,909, - 1,0,0,0,8391,8392,5,78,0,0,8392,8393,5,7,0,0,8393,911,1,0,0,0,8394, - 8400,7,68,0,0,8395,8397,5,33,0,0,8396,8398,5,269,0,0,8397,8396,1, - 0,0,0,8397,8398,1,0,0,0,8398,8399,1,0,0,0,8399,8401,5,153,0,0,8400, - 8395,1,0,0,0,8400,8401,1,0,0,0,8401,8402,1,0,0,0,8402,8403,5,7,0, - 0,8403,913,1,0,0,0,8404,8405,5,333,0,0,8405,8406,3,310,155,0,8406, - 8407,5,94,0,0,8407,8408,5,53,0,0,8408,8409,5,7,0,0,8409,8417,1,0, - 0,0,8410,8413,5,313,0,0,8411,8414,3,310,155,0,8412,8414,5,30,0,0, - 8413,8411,1,0,0,0,8413,8412,1,0,0,0,8414,8415,1,0,0,0,8415,8417, - 5,7,0,0,8416,8404,1,0,0,0,8416,8410,1,0,0,0,8417,915,1,0,0,0,8418, - 8421,3,812,406,0,8419,8421,5,28,0,0,8420,8418,1,0,0,0,8420,8419, - 1,0,0,0,8421,917,1,0,0,0,8422,8439,5,517,0,0,8423,8424,5,102,0,0, - 8424,8429,3,920,460,0,8425,8426,5,82,0,0,8426,8428,3,920,460,0,8427, - 8425,1,0,0,0,8428,8431,1,0,0,0,8429,8427,1,0,0,0,8429,8430,1,0,0, - 0,8430,8432,1,0,0,0,8431,8429,1,0,0,0,8432,8436,5,93,0,0,8433,8435, - 3,840,420,0,8434,8433,1,0,0,0,8435,8438,1,0,0,0,8436,8434,1,0,0, - 0,8436,8437,1,0,0,0,8437,8440,1,0,0,0,8438,8436,1,0,0,0,8439,8423, - 1,0,0,0,8440,8441,1,0,0,0,8441,8439,1,0,0,0,8441,8442,1,0,0,0,8442, - 919,1,0,0,0,8443,8447,3,922,461,0,8444,8445,5,511,0,0,8445,8447, - 3,802,401,0,8446,8443,1,0,0,0,8446,8444,1,0,0,0,8447,921,1,0,0,0, - 8448,8451,3,812,406,0,8449,8451,3,822,411,0,8450,8448,1,0,0,0,8450, - 8449,1,0,0,0,8451,923,1,0,0,0,8452,8454,3,750,375,0,8453,8452,1, - 0,0,0,8453,8454,1,0,0,0,8454,8456,1,0,0,0,8455,8457,3,574,287,0, - 8456,8455,1,0,0,0,8456,8457,1,0,0,0,8457,8459,1,0,0,0,8458,8460, - 3,604,302,0,8459,8458,1,0,0,0,8459,8460,1,0,0,0,8460,8462,1,0,0, - 0,8461,8463,3,632,316,0,8462,8461,1,0,0,0,8462,8463,1,0,0,0,8463, - 8465,1,0,0,0,8464,8466,3,594,297,0,8465,8464,1,0,0,0,8465,8466,1, - 0,0,0,8466,8469,1,0,0,0,8467,8468,5,67,0,0,8468,8470,3,668,334,0, - 8469,8467,1,0,0,0,8469,8470,1,0,0,0,8470,8472,1,0,0,0,8471,8473, - 3,696,348,0,8472,8471,1,0,0,0,8472,8473,1,0,0,0,8473,925,1,0,0,0, - 1190,929,936,1056,1058,1067,1072,1078,1113,1123,1129,1134,1141,1146, - 1153,1164,1172,1176,1188,1194,1200,1204,1209,1213,1226,1236,1238, - 1244,1249,1262,1265,1270,1275,1286,1290,1302,1306,1309,1313,1325, - 1343,1350,1358,1363,1370,1378,1384,1392,1400,1404,1418,1423,1428, - 1440,1446,1458,1463,1473,1479,1484,1493,1500,1505,1510,1520,1525, - 1530,1537,1541,1555,1561,1567,1572,1579,1588,1597,1606,1615,1619, - 1631,1639,1649,1669,1674,1677,1684,1687,1691,1695,1698,1703,1708, - 1712,1721,1727,1731,1740,1743,1749,1758,1770,1774,1778,1783,1786, - 1792,1794,1796,1800,1806,1810,1815,1820,1824,1827,1834,1847,1860, - 1885,1895,1902,1907,1911,1918,1923,1926,1928,1933,1937,1941,1945, - 1950,1953,1957,1960,1964,1972,1977,1980,1984,1990,1999,2003,2013, - 2018,2022,2026,2028,2030,2037,2042,2046,2051,2063,2068,2072,2076, - 2081,2085,2088,2091,2094,2097,2100,2105,2108,2111,2114,2117,2120, - 2126,2130,2133,2136,2139,2142,2144,2151,2159,2169,2174,2184,2187, - 2192,2197,2202,2205,2210,2219,2221,2225,2228,2232,2237,2242,2246, - 2249,2253,2256,2261,2264,2269,2272,2276,2279,2282,2287,2290,2298, - 2310,2314,2321,2326,2329,2332,2335,2340,2351,2357,2361,2364,2367, - 2372,2379,2382,2386,2394,2399,2402,2405,2412,2417,2426,2429,2432, - 2437,2440,2452,2462,2479,2483,2487,2489,2506,2508,2524,2535,2538, - 2541,2550,2559,2575,2578,2581,2589,2593,2600,2609,2613,2619,2623, - 2626,2629,2632,2635,2641,2645,2650,2654,2657,2660,2663,2668,2674, - 2678,2682,2686,2692,2694,2699,2705,2711,2715,2730,2735,2738,2740, - 2743,2747,2751,2754,2757,2765,2771,2773,2779,2784,2789,2793,2800, - 2802,2813,2852,2862,2864,2867,2871,2875,2885,2887,2893,2895,2904, - 2916,2930,2935,2938,2945,2950,2958,2960,2966,2971,2975,2980,2986, - 2993,2999,3001,3010,3016,3024,3030,3035,3040,3048,3063,3065,3069, - 3073,3076,3079,3088,3091,3094,3100,3106,3110,3122,3128,3131,3136, - 3140,3147,3157,3159,3183,3195,3200,3202,3206,3209,3212,3222,3225, - 3235,3240,3245,3248,3251,3259,3265,3272,3280,3283,3294,3298,3304, - 3311,3314,3323,3337,3340,3354,3365,3368,3380,3385,3398,3403,3416, - 3425,3428,3431,3438,3441,3453,3459,3461,3469,3477,3485,3497,3502, - 3513,3524,3532,3540,3547,3554,3556,3559,3564,3569,3588,3597,3600, - 3627,3636,3639,3643,3647,3651,3658,3662,3666,3670,3674,3679,3683, - 3688,3694,3699,3706,3710,3716,3720,3725,3733,3739,3744,3751,3756, - 3760,3765,3771,3778,3783,3790,3795,3802,3806,3814,3818,3820,3823, - 3828,3838,3853,3856,3864,3871,3876,3882,3886,3893,3898,3901,3904, - 3908,3917,3935,3938,3970,3975,3981,4001,4006,4012,4015,4019,4023, - 4029,4032,4036,4040,4045,4048,4051,4054,4067,4073,4081,4088,4093, - 4096,4103,4106,4114,4117,4122,4129,4132,4152,4164,4167,4173,4178, - 4187,4195,4200,4206,4213,4221,4224,4235,4237,4251,4257,4265,4267, - 4273,4277,4280,4283,4288,4293,4297,4300,4303,4306,4309,4317,4328, - 4331,4334,4339,4342,4346,4350,4356,4364,4367,4380,4385,4387,4392, - 4399,4406,4415,4423,4431,4438,4446,4453,4461,4465,4469,4471,4477, - 4482,4486,4493,4498,4503,4508,4510,4520,4530,4546,4564,4576,4583, - 4598,4603,4606,4611,4616,4621,4624,4627,4632,4639,4643,4648,4655, - 4659,4665,4674,4683,4695,4697,4710,4716,4720,4722,4729,4742,4749, - 4751,4767,4771,4775,4780,4785,4790,4795,4798,4810,4863,4872,4876, - 4885,4889,4898,4902,4907,4910,4914,4919,4921,4930,4935,4946,4950, - 4964,4972,5010,5012,5031,5034,5061,5065,5069,5073,5077,5080,5095, - 5102,5116,5129,5154,5173,5188,5204,5211,5222,5225,5244,5247,5260, - 5264,5284,5296,5300,5322,5326,5336,5340,5346,5350,5354,5358,5365, - 5370,5381,5385,5388,5393,5399,5410,5414,5417,5421,5425,5428,5438, - 5441,5445,5450,5456,5459,5464,5467,5474,5476,5482,5486,5495,5500, - 5502,5512,5515,5520,5528,5531,5536,5538,5540,5546,5563,5569,5582, - 5588,5592,5597,5627,5642,5647,5651,5664,5668,5670,5679,5685,5687, - 5691,5694,5697,5700,5703,5705,5708,5712,5720,5725,5728,5734,5738, - 5742,5747,5749,5753,5757,5764,5770,5774,5776,5778,5791,5799,5807, - 5818,5828,5833,5837,5841,5848,5851,5853,5861,5865,5868,5875,5882, - 5887,5894,5897,5899,5902,5908,5913,5917,5924,5934,5941,5944,5947, - 5951,5962,5965,5968,5971,5974,5981,5984,5987,5994,6006,6013,6015, - 6020,6025,6027,6033,6040,6045,6050,6054,6058,6062,6064,6068,6072, - 6075,6078,6080,6090,6092,6097,6101,6106,6110,6117,6122,6126,6129, - 6135,6138,6157,6164,6168,6171,6175,6179,6182,6185,6190,6199,6206, - 6210,6214,6218,6221,6223,6228,6232,6237,6243,6250,6255,6260,6269, - 6276,6284,6295,6300,6304,6307,6311,6316,6320,6325,6333,6344,6349, - 6353,6356,6359,6361,6364,6367,6370,6374,6378,6382,6384,6393,6398, - 6404,6408,6410,6417,6422,6428,6430,6434,6441,6446,6449,6455,6459, - 6465,6474,6480,6482,6487,6490,6499,6506,6508,6515,6520,6523,6533, - 6544,6549,6553,6561,6571,6578,6584,6595,6601,6611,6620,6624,6627, - 6629,6631,6635,6643,6646,6651,6656,6663,6665,6671,6675,6678,6683, - 6686,6688,6694,6703,6709,6712,6720,6723,6727,6733,6735,6738,6742, - 6747,6754,6761,6763,6769,6771,6776,6778,6782,6791,6795,6803,6805, - 6819,6822,6830,6839,6845,6850,6858,6860,6865,6869,6874,6879,6885, - 6901,6903,6912,6927,6932,6935,6941,6946,6959,6964,6968,6975,6994, - 7006,7011,7019,7021,7023,7032,7035,7040,7045,7048,7059,7067,7072, - 7074,7077,7081,7092,7113,7121,7134,7144,7150,7156,7159,7162,7188, - 7190,7211,7221,7234,7239,7243,7245,7257,7264,7270,7276,7280,7291, - 7301,7305,7310,7313,7316,7325,7336,7338,7342,7347,7356,7361,7369, - 7379,7387,7391,7394,7401,7409,7413,7420,7428,7430,7439,7442,7454, - 7463,7470,7479,7489,7494,7498,7500,7503,7508,7513,7521,7529,7532, - 7539,7547,7555,7563,7580,7587,7595,7612,7618,7624,7632,7638,7643, - 7651,7656,7659,7668,7675,7680,7684,7689,7695,7700,7708,7763,7770, - 7776,7778,7780,7782,7788,7792,7796,7807,7810,7814,7818,7822,7825, - 7828,7831,7840,7845,7849,7882,7892,7896,7902,7907,7916,7924,7935, - 7943,7952,7961,7966,7970,7980,7985,7993,7998,8001,8008,8014,8022, - 8030,8033,8040,8042,8045,8051,8060,8064,8078,8081,8083,8089,8099, - 8101,8103,8111,8114,8117,8127,8135,8141,8147,8154,8158,8162,8165, - 8168,8174,8181,8184,8192,8194,8203,8208,8210,8217,8223,8226,8238, - 8245,8247,8251,8257,8262,8266,8269,8272,8281,8284,8287,8291,8295, - 8297,8300,8303,8309,8316,8323,8329,8331,8335,8340,8358,8363,8365, - 8374,8381,8385,8397,8400,8413,8416,8420,8429,8436,8441,8446,8450, - 8453,8456,8459,8462,8465,8469,8472 + 0,0,0,7387,7382,1,0,0,0,7388,721,1,0,0,0,7389,7396,3,716,358,0,7390, + 7391,5,278,0,0,7391,7392,5,2,0,0,7392,7393,3,408,204,0,7393,7394, + 5,3,0,0,7394,7396,1,0,0,0,7395,7389,1,0,0,0,7395,7390,1,0,0,0,7396, + 723,1,0,0,0,7397,7403,3,722,361,0,7398,7400,5,77,0,0,7399,7398,1, + 0,0,0,7399,7400,1,0,0,0,7400,7401,1,0,0,0,7401,7403,7,107,0,0,7402, + 7397,1,0,0,0,7402,7399,1,0,0,0,7403,725,1,0,0,0,7404,7409,3,668, + 334,0,7405,7406,5,6,0,0,7406,7408,3,668,334,0,7407,7405,1,0,0,0, + 7408,7411,1,0,0,0,7409,7407,1,0,0,0,7409,7410,1,0,0,0,7410,727,1, + 0,0,0,7411,7409,1,0,0,0,7412,7413,5,2,0,0,7413,7414,3,668,334,0, + 7414,7415,5,3,0,0,7415,7418,1,0,0,0,7416,7418,3,796,398,0,7417,7412, + 1,0,0,0,7417,7416,1,0,0,0,7418,729,1,0,0,0,7419,7422,3,668,334,0, + 7420,7422,3,796,398,0,7421,7419,1,0,0,0,7421,7420,1,0,0,0,7422,731, + 1,0,0,0,7423,7428,3,734,367,0,7424,7425,5,6,0,0,7425,7427,3,734, + 367,0,7426,7424,1,0,0,0,7427,7430,1,0,0,0,7428,7426,1,0,0,0,7428, + 7429,1,0,0,0,7429,733,1,0,0,0,7430,7428,1,0,0,0,7431,7439,3,796, + 398,0,7432,7439,3,668,334,0,7433,7436,3,818,409,0,7434,7435,7,108, + 0,0,7435,7437,3,668,334,0,7436,7434,1,0,0,0,7436,7437,1,0,0,0,7437, + 7439,1,0,0,0,7438,7431,1,0,0,0,7438,7432,1,0,0,0,7438,7433,1,0,0, + 0,7439,735,1,0,0,0,7440,7450,5,4,0,0,7441,7451,3,726,363,0,7442, + 7447,3,736,368,0,7443,7444,5,6,0,0,7444,7446,3,736,368,0,7445,7443, + 1,0,0,0,7446,7449,1,0,0,0,7447,7445,1,0,0,0,7447,7448,1,0,0,0,7448, + 7451,1,0,0,0,7449,7447,1,0,0,0,7450,7441,1,0,0,0,7450,7442,1,0,0, + 0,7450,7451,1,0,0,0,7451,7452,1,0,0,0,7452,7453,5,5,0,0,7453,737, + 1,0,0,0,7454,7463,3,824,412,0,7455,7463,5,384,0,0,7456,7463,5,264, + 0,0,7457,7463,5,176,0,0,7458,7463,5,218,0,0,7459,7463,5,261,0,0, + 7460,7463,5,326,0,0,7461,7463,3,806,403,0,7462,7454,1,0,0,0,7462, + 7455,1,0,0,0,7462,7456,1,0,0,0,7462,7457,1,0,0,0,7462,7458,1,0,0, + 0,7462,7459,1,0,0,0,7462,7460,1,0,0,0,7462,7461,1,0,0,0,7463,739, + 1,0,0,0,7464,7465,7,109,0,0,7465,741,1,0,0,0,7466,7467,3,668,334, + 0,7467,7468,5,64,0,0,7468,7471,3,668,334,0,7469,7470,5,62,0,0,7470, + 7472,3,668,334,0,7471,7469,1,0,0,0,7471,7472,1,0,0,0,7472,7488,1, + 0,0,0,7473,7474,3,668,334,0,7474,7475,5,62,0,0,7475,7478,3,668,334, + 0,7476,7477,5,64,0,0,7477,7479,3,668,334,0,7478,7476,1,0,0,0,7478, + 7479,1,0,0,0,7479,7488,1,0,0,0,7480,7481,3,668,334,0,7481,7482,5, + 127,0,0,7482,7483,3,668,334,0,7483,7484,5,197,0,0,7484,7485,3,668, + 334,0,7485,7488,1,0,0,0,7486,7488,3,726,363,0,7487,7466,1,0,0,0, + 7487,7473,1,0,0,0,7487,7480,1,0,0,0,7487,7486,1,0,0,0,7488,743,1, + 0,0,0,7489,7490,5,102,0,0,7490,7491,3,668,334,0,7491,7492,5,93,0, + 0,7492,7493,3,668,334,0,7493,745,1,0,0,0,7494,7497,5,11,0,0,7495, + 7498,3,822,411,0,7496,7498,5,9,0,0,7497,7495,1,0,0,0,7497,7496,1, + 0,0,0,7498,7512,1,0,0,0,7499,7508,5,4,0,0,7500,7509,3,668,334,0, + 7501,7503,3,668,334,0,7502,7501,1,0,0,0,7502,7503,1,0,0,0,7503,7504, + 1,0,0,0,7504,7506,5,8,0,0,7505,7507,3,668,334,0,7506,7505,1,0,0, + 0,7506,7507,1,0,0,0,7507,7509,1,0,0,0,7508,7500,1,0,0,0,7508,7502, + 1,0,0,0,7509,7510,1,0,0,0,7510,7512,5,5,0,0,7511,7494,1,0,0,0,7511, + 7499,1,0,0,0,7512,747,1,0,0,0,7513,7515,3,746,373,0,7514,7513,1, + 0,0,0,7515,7516,1,0,0,0,7516,7514,1,0,0,0,7516,7517,1,0,0,0,7517, + 749,1,0,0,0,7518,7520,3,746,373,0,7519,7518,1,0,0,0,7520,7523,1, + 0,0,0,7521,7519,1,0,0,0,7521,7522,1,0,0,0,7522,751,1,0,0,0,7523, + 7521,1,0,0,0,7524,7529,3,754,377,0,7525,7526,5,6,0,0,7526,7528,3, + 754,377,0,7527,7525,1,0,0,0,7528,7531,1,0,0,0,7529,7527,1,0,0,0, + 7529,7530,1,0,0,0,7530,753,1,0,0,0,7531,7529,1,0,0,0,7532,7537,3, + 730,365,0,7533,7534,5,36,0,0,7534,7538,3,822,411,0,7535,7538,3,824, + 412,0,7536,7538,1,0,0,0,7537,7533,1,0,0,0,7537,7535,1,0,0,0,7537, + 7536,1,0,0,0,7538,7541,1,0,0,0,7539,7541,5,9,0,0,7540,7532,1,0,0, + 0,7540,7539,1,0,0,0,7541,755,1,0,0,0,7542,7547,3,776,388,0,7543, + 7544,5,6,0,0,7544,7546,3,776,388,0,7545,7543,1,0,0,0,7546,7549,1, + 0,0,0,7547,7545,1,0,0,0,7547,7548,1,0,0,0,7548,757,1,0,0,0,7549, + 7547,1,0,0,0,7550,7555,3,770,385,0,7551,7552,5,6,0,0,7552,7554,3, + 770,385,0,7553,7551,1,0,0,0,7554,7557,1,0,0,0,7555,7553,1,0,0,0, + 7555,7556,1,0,0,0,7556,759,1,0,0,0,7557,7555,1,0,0,0,7558,7563,3, + 786,393,0,7559,7560,5,6,0,0,7560,7562,3,786,393,0,7561,7559,1,0, + 0,0,7562,7565,1,0,0,0,7563,7561,1,0,0,0,7563,7564,1,0,0,0,7564,761, + 1,0,0,0,7565,7563,1,0,0,0,7566,7571,3,784,392,0,7567,7568,5,6,0, + 0,7568,7570,3,784,392,0,7569,7567,1,0,0,0,7570,7573,1,0,0,0,7571, + 7569,1,0,0,0,7571,7572,1,0,0,0,7572,763,1,0,0,0,7573,7571,1,0,0, + 0,7574,7575,3,776,388,0,7575,765,1,0,0,0,7576,7577,3,776,388,0,7577, + 767,1,0,0,0,7578,7579,3,776,388,0,7579,769,1,0,0,0,7580,7581,3,776, + 388,0,7581,771,1,0,0,0,7582,7583,3,776,388,0,7583,773,1,0,0,0,7584, + 7585,3,310,155,0,7585,775,1,0,0,0,7586,7588,3,816,408,0,7587,7589, + 3,748,374,0,7588,7587,1,0,0,0,7588,7589,1,0,0,0,7589,777,1,0,0,0, + 7590,7595,3,766,383,0,7591,7592,5,6,0,0,7592,7594,3,766,383,0,7593, + 7591,1,0,0,0,7594,7597,1,0,0,0,7595,7593,1,0,0,0,7595,7596,1,0,0, + 0,7596,779,1,0,0,0,7597,7595,1,0,0,0,7598,7603,3,816,408,0,7599, + 7600,5,6,0,0,7600,7602,3,816,408,0,7601,7599,1,0,0,0,7602,7605,1, + 0,0,0,7603,7601,1,0,0,0,7603,7604,1,0,0,0,7604,781,1,0,0,0,7605, + 7603,1,0,0,0,7606,7607,3,310,155,0,7607,783,1,0,0,0,7608,7609,3, + 310,155,0,7609,785,1,0,0,0,7610,7611,3,310,155,0,7611,787,1,0,0, + 0,7612,7613,3,816,408,0,7613,789,1,0,0,0,7614,7615,3,816,408,0,7615, + 791,1,0,0,0,7616,7621,3,818,409,0,7617,7618,3,816,408,0,7618,7619, + 3,748,374,0,7619,7621,1,0,0,0,7620,7616,1,0,0,0,7620,7617,1,0,0, + 0,7621,793,1,0,0,0,7622,7627,3,818,409,0,7623,7624,3,816,408,0,7624, + 7625,3,748,374,0,7625,7627,1,0,0,0,7626,7622,1,0,0,0,7626,7623,1, + 0,0,0,7627,795,1,0,0,0,7628,7629,3,816,408,0,7629,7630,3,750,375, + 0,7630,7633,1,0,0,0,7631,7633,4,398,10,0,7632,7628,1,0,0,0,7632, + 7631,1,0,0,0,7633,797,1,0,0,0,7634,7635,3,816,408,0,7635,7636,3, + 750,375,0,7636,799,1,0,0,0,7637,7638,3,816,408,0,7638,801,1,0,0, + 0,7639,7644,3,818,409,0,7640,7641,3,816,408,0,7641,7642,3,748,374, + 0,7642,7644,1,0,0,0,7643,7639,1,0,0,0,7643,7640,1,0,0,0,7644,803, + 1,0,0,0,7645,7650,3,818,409,0,7646,7647,3,816,408,0,7647,7648,3, + 748,374,0,7648,7650,1,0,0,0,7649,7645,1,0,0,0,7649,7646,1,0,0,0, + 7650,805,1,0,0,0,7651,7654,3,808,404,0,7652,7653,5,487,0,0,7653, + 7655,3,808,404,0,7654,7652,1,0,0,0,7654,7655,1,0,0,0,7655,807,1, + 0,0,0,7656,7668,5,561,0,0,7657,7668,5,563,0,0,7658,7662,5,565,0, + 0,7659,7661,5,590,0,0,7660,7659,1,0,0,0,7661,7664,1,0,0,0,7662,7660, + 1,0,0,0,7662,7663,1,0,0,0,7663,7665,1,0,0,0,7664,7662,1,0,0,0,7665, + 7668,5,591,0,0,7666,7668,5,586,0,0,7667,7656,1,0,0,0,7667,7657,1, + 0,0,0,7667,7658,1,0,0,0,7667,7666,1,0,0,0,7668,809,1,0,0,0,7669, + 7671,7,30,0,0,7670,7669,1,0,0,0,7670,7671,1,0,0,0,7671,7672,1,0, + 0,0,7672,7673,5,574,0,0,7673,811,1,0,0,0,7674,7680,3,820,410,0,7675, + 7680,5,52,0,0,7676,7680,5,49,0,0,7677,7680,5,89,0,0,7678,7680,5, + 524,0,0,7679,7674,1,0,0,0,7679,7675,1,0,0,0,7679,7676,1,0,0,0,7679, + 7677,1,0,0,0,7679,7678,1,0,0,0,7680,813,1,0,0,0,7681,7686,3,812, + 406,0,7682,7683,5,6,0,0,7683,7685,3,812,406,0,7684,7682,1,0,0,0, + 7685,7688,1,0,0,0,7686,7684,1,0,0,0,7686,7687,1,0,0,0,7687,815,1, + 0,0,0,7688,7686,1,0,0,0,7689,7692,3,824,412,0,7690,7692,3,828,414, + 0,7691,7689,1,0,0,0,7691,7690,1,0,0,0,7692,817,1,0,0,0,7693,7696, + 3,824,412,0,7694,7696,3,830,415,0,7695,7693,1,0,0,0,7695,7694,1, + 0,0,0,7696,819,1,0,0,0,7697,7701,3,824,412,0,7698,7701,3,828,414, + 0,7699,7701,3,830,415,0,7700,7697,1,0,0,0,7700,7698,1,0,0,0,7700, + 7699,1,0,0,0,7701,821,1,0,0,0,7702,7707,3,824,412,0,7703,7707,3, + 828,414,0,7704,7707,3,830,415,0,7705,7707,3,832,416,0,7706,7702, + 1,0,0,0,7706,7703,1,0,0,0,7706,7704,1,0,0,0,7706,7705,1,0,0,0,7707, + 823,1,0,0,0,7708,7711,5,552,0,0,7709,7710,5,487,0,0,7710,7712,3, + 808,404,0,7711,7709,1,0,0,0,7711,7712,1,0,0,0,7712,7720,1,0,0,0, + 7713,7720,3,806,403,0,7714,7720,5,553,0,0,7715,7720,5,557,0,0,7716, + 7720,5,577,0,0,7717,7720,5,578,0,0,7718,7720,3,826,413,0,7719,7708, + 1,0,0,0,7719,7713,1,0,0,0,7719,7714,1,0,0,0,7719,7715,1,0,0,0,7719, + 7716,1,0,0,0,7719,7717,1,0,0,0,7719,7718,1,0,0,0,7720,825,1,0,0, + 0,7721,7722,7,110,0,0,7722,827,1,0,0,0,7723,7775,5,387,0,0,7724, + 7775,5,388,0,0,7725,7775,3,656,328,0,7726,7775,5,390,0,0,7727,7775, + 5,391,0,0,7728,7775,3,658,329,0,7729,7775,5,393,0,0,7730,7775,5, + 394,0,0,7731,7775,5,395,0,0,7732,7775,5,396,0,0,7733,7775,5,397, + 0,0,7734,7775,5,398,0,0,7735,7775,5,399,0,0,7736,7775,5,470,0,0, + 7737,7775,5,400,0,0,7738,7775,5,401,0,0,7739,7775,5,402,0,0,7740, + 7775,5,403,0,0,7741,7775,5,404,0,0,7742,7775,5,405,0,0,7743,7775, + 5,406,0,0,7744,7775,5,407,0,0,7745,7775,5,489,0,0,7746,7775,5,408, + 0,0,7747,7775,3,652,326,0,7748,7775,5,453,0,0,7749,7775,5,410,0, + 0,7750,7775,5,411,0,0,7751,7775,5,412,0,0,7752,7775,5,413,0,0,7753, + 7775,5,414,0,0,7754,7775,5,415,0,0,7755,7775,5,416,0,0,7756,7775, + 5,417,0,0,7757,7775,5,418,0,0,7758,7775,5,419,0,0,7759,7775,5,420, + 0,0,7760,7775,5,421,0,0,7761,7775,5,422,0,0,7762,7775,5,423,0,0, + 7763,7775,5,424,0,0,7764,7775,5,425,0,0,7765,7775,5,426,0,0,7766, + 7775,5,427,0,0,7767,7775,5,428,0,0,7768,7775,5,476,0,0,7769,7775, + 5,429,0,0,7770,7775,5,430,0,0,7771,7775,5,431,0,0,7772,7775,5,432, + 0,0,7773,7775,5,474,0,0,7774,7723,1,0,0,0,7774,7724,1,0,0,0,7774, + 7725,1,0,0,0,7774,7726,1,0,0,0,7774,7727,1,0,0,0,7774,7728,1,0,0, + 0,7774,7729,1,0,0,0,7774,7730,1,0,0,0,7774,7731,1,0,0,0,7774,7732, + 1,0,0,0,7774,7733,1,0,0,0,7774,7734,1,0,0,0,7774,7735,1,0,0,0,7774, + 7736,1,0,0,0,7774,7737,1,0,0,0,7774,7738,1,0,0,0,7774,7739,1,0,0, + 0,7774,7740,1,0,0,0,7774,7741,1,0,0,0,7774,7742,1,0,0,0,7774,7743, + 1,0,0,0,7774,7744,1,0,0,0,7774,7745,1,0,0,0,7774,7746,1,0,0,0,7774, + 7747,1,0,0,0,7774,7748,1,0,0,0,7774,7749,1,0,0,0,7774,7750,1,0,0, + 0,7774,7751,1,0,0,0,7774,7752,1,0,0,0,7774,7753,1,0,0,0,7774,7754, + 1,0,0,0,7774,7755,1,0,0,0,7774,7756,1,0,0,0,7774,7757,1,0,0,0,7774, + 7758,1,0,0,0,7774,7759,1,0,0,0,7774,7760,1,0,0,0,7774,7761,1,0,0, + 0,7774,7762,1,0,0,0,7774,7763,1,0,0,0,7774,7764,1,0,0,0,7774,7765, + 1,0,0,0,7774,7766,1,0,0,0,7774,7767,1,0,0,0,7774,7768,1,0,0,0,7774, + 7769,1,0,0,0,7774,7770,1,0,0,0,7774,7771,1,0,0,0,7774,7772,1,0,0, + 0,7774,7773,1,0,0,0,7775,829,1,0,0,0,7776,7777,7,111,0,0,7777,831, + 1,0,0,0,7778,7779,7,112,0,0,7779,833,1,0,0,0,7780,7782,3,836,418, + 0,7781,7780,1,0,0,0,7781,7782,1,0,0,0,7782,7793,1,0,0,0,7783,7791, + 5,178,0,0,7784,7788,3,838,419,0,7785,7788,5,178,0,0,7786,7788,3, + 836,418,0,7787,7784,1,0,0,0,7787,7785,1,0,0,0,7787,7786,1,0,0,0, + 7788,7789,1,0,0,0,7789,7787,1,0,0,0,7789,7790,1,0,0,0,7790,7792, + 1,0,0,0,7791,7787,1,0,0,0,7791,7792,1,0,0,0,7792,7794,1,0,0,0,7793, + 7783,1,0,0,0,7793,7794,1,0,0,0,7794,7795,1,0,0,0,7795,7799,5,146, + 0,0,7796,7798,3,844,422,0,7797,7796,1,0,0,0,7798,7801,1,0,0,0,7799, + 7797,1,0,0,0,7799,7800,1,0,0,0,7800,7803,1,0,0,0,7801,7799,1,0,0, + 0,7802,7804,3,922,461,0,7803,7802,1,0,0,0,7803,7804,1,0,0,0,7804, + 7805,1,0,0,0,7805,7807,5,454,0,0,7806,7808,3,926,463,0,7807,7806, + 1,0,0,0,7807,7808,1,0,0,0,7808,835,1,0,0,0,7809,7810,5,18,0,0,7810, + 7811,3,926,463,0,7811,7812,5,19,0,0,7812,837,1,0,0,0,7813,7860,3, + 926,463,0,7814,7815,5,496,0,0,7815,7818,5,62,0,0,7816,7819,5,28, + 0,0,7817,7819,3,816,408,0,7818,7816,1,0,0,0,7818,7817,1,0,0,0,7819, + 7861,1,0,0,0,7820,7822,5,497,0,0,7821,7820,1,0,0,0,7821,7822,1,0, + 0,0,7822,7823,1,0,0,0,7823,7825,3,646,323,0,7824,7826,3,90,45,0, + 7825,7824,1,0,0,0,7825,7826,1,0,0,0,7826,7829,1,0,0,0,7827,7828, + 5,77,0,0,7828,7830,5,78,0,0,7829,7827,1,0,0,0,7829,7830,1,0,0,0, + 7830,7836,1,0,0,0,7831,7834,3,842,421,0,7832,7834,5,53,0,0,7833, + 7831,1,0,0,0,7833,7832,1,0,0,0,7834,7835,1,0,0,0,7835,7837,3,928, + 464,0,7836,7833,1,0,0,0,7836,7837,1,0,0,0,7837,7861,1,0,0,0,7838, + 7840,5,269,0,0,7839,7838,1,0,0,0,7839,7840,1,0,0,0,7840,7841,1,0, + 0,0,7841,7843,5,324,0,0,7842,7839,1,0,0,0,7842,7843,1,0,0,0,7843, + 7844,1,0,0,0,7844,7856,5,172,0,0,7845,7846,5,2,0,0,7846,7851,3,840, + 420,0,7847,7848,5,6,0,0,7848,7850,3,840,420,0,7849,7847,1,0,0,0, + 7850,7853,1,0,0,0,7851,7849,1,0,0,0,7851,7852,1,0,0,0,7852,7854, + 1,0,0,0,7853,7851,1,0,0,0,7854,7855,5,3,0,0,7855,7857,1,0,0,0,7856, + 7845,1,0,0,0,7856,7857,1,0,0,0,7857,7858,1,0,0,0,7858,7859,7,113, + 0,0,7859,7861,3,554,277,0,7860,7814,1,0,0,0,7860,7821,1,0,0,0,7860, + 7842,1,0,0,0,7861,7862,1,0,0,0,7862,7863,5,7,0,0,7863,839,1,0,0, + 0,7864,7865,3,926,463,0,7865,7866,3,646,323,0,7866,841,1,0,0,0,7867, + 7868,7,114,0,0,7868,843,1,0,0,0,7869,7870,3,834,417,0,7870,7871, + 5,7,0,0,7871,7894,1,0,0,0,7872,7894,3,872,436,0,7873,7894,3,874, + 437,0,7874,7894,3,850,425,0,7875,7894,3,858,429,0,7876,7894,3,862, + 431,0,7877,7894,3,864,432,0,7878,7894,3,868,434,0,7879,7894,3,870, + 435,0,7880,7894,3,878,439,0,7881,7894,3,882,441,0,7882,7894,3,884, + 442,0,7883,7894,3,846,423,0,7884,7894,3,848,424,0,7885,7894,3,852, + 426,0,7886,7894,3,888,444,0,7887,7894,3,892,446,0,7888,7894,3,896, + 448,0,7889,7894,3,912,456,0,7890,7894,3,914,457,0,7891,7894,3,916, + 458,0,7892,7894,3,918,459,0,7893,7869,1,0,0,0,7893,7872,1,0,0,0, + 7893,7873,1,0,0,0,7893,7874,1,0,0,0,7893,7875,1,0,0,0,7893,7876, + 1,0,0,0,7893,7877,1,0,0,0,7893,7878,1,0,0,0,7893,7879,1,0,0,0,7893, + 7880,1,0,0,0,7893,7881,1,0,0,0,7893,7882,1,0,0,0,7893,7883,1,0,0, + 0,7893,7884,1,0,0,0,7893,7885,1,0,0,0,7893,7886,1,0,0,0,7893,7887, + 1,0,0,0,7893,7888,1,0,0,0,7893,7889,1,0,0,0,7893,7890,1,0,0,0,7893, + 7891,1,0,0,0,7893,7892,1,0,0,0,7894,845,1,0,0,0,7895,7896,5,498, + 0,0,7896,7897,3,928,464,0,7897,7898,5,7,0,0,7898,847,1,0,0,0,7899, + 7900,5,433,0,0,7900,7907,3,926,463,0,7901,7903,5,2,0,0,7902,7904, + 3,726,363,0,7903,7902,1,0,0,0,7903,7904,1,0,0,0,7904,7905,1,0,0, + 0,7905,7906,5,3,0,0,7906,7908,5,7,0,0,7907,7901,1,0,0,0,7907,7908, + 1,0,0,0,7908,7919,1,0,0,0,7909,7910,5,57,0,0,7910,7911,3,926,463, + 0,7911,7913,5,2,0,0,7912,7914,3,726,363,0,7913,7912,1,0,0,0,7913, + 7914,1,0,0,0,7914,7915,1,0,0,0,7915,7916,5,3,0,0,7916,7917,5,7,0, + 0,7917,7919,1,0,0,0,7918,7899,1,0,0,0,7918,7909,1,0,0,0,7919,849, + 1,0,0,0,7920,7921,3,856,428,0,7921,7922,3,842,421,0,7922,7923,3, + 928,464,0,7923,7924,5,7,0,0,7924,851,1,0,0,0,7925,7927,5,499,0,0, + 7926,7928,7,115,0,0,7927,7926,1,0,0,0,7927,7928,1,0,0,0,7928,7929, + 1,0,0,0,7929,7930,5,500,0,0,7930,7935,3,854,427,0,7931,7932,5,6, + 0,0,7932,7934,3,854,427,0,7933,7931,1,0,0,0,7934,7937,1,0,0,0,7935, + 7933,1,0,0,0,7935,7936,1,0,0,0,7936,7938,1,0,0,0,7937,7935,1,0,0, + 0,7938,7939,5,7,0,0,7939,853,1,0,0,0,7940,7941,3,856,428,0,7941, + 7942,3,842,421,0,7942,7943,3,816,408,0,7943,855,1,0,0,0,7944,7947, + 3,310,155,0,7945,7947,5,28,0,0,7946,7944,1,0,0,0,7946,7945,1,0,0, + 0,7947,7954,1,0,0,0,7948,7949,5,4,0,0,7949,7950,3,668,334,0,7950, + 7951,5,5,0,0,7951,7953,1,0,0,0,7952,7948,1,0,0,0,7953,7956,1,0,0, + 0,7954,7952,1,0,0,0,7954,7955,1,0,0,0,7955,857,1,0,0,0,7956,7954, + 1,0,0,0,7957,7958,5,220,0,0,7958,7959,3,928,464,0,7959,7963,5,93, + 0,0,7960,7962,3,844,422,0,7961,7960,1,0,0,0,7962,7965,1,0,0,0,7963, + 7961,1,0,0,0,7963,7964,1,0,0,0,7964,7977,1,0,0,0,7965,7963,1,0,0, + 0,7966,7967,5,502,0,0,7967,7968,3,668,334,0,7968,7972,5,93,0,0,7969, + 7971,3,844,422,0,7970,7969,1,0,0,0,7971,7974,1,0,0,0,7972,7970,1, + 0,0,0,7972,7973,1,0,0,0,7973,7976,1,0,0,0,7974,7972,1,0,0,0,7975, + 7966,1,0,0,0,7976,7979,1,0,0,0,7977,7975,1,0,0,0,7977,7978,1,0,0, + 0,7978,7981,1,0,0,0,7979,7977,1,0,0,0,7980,7982,3,860,430,0,7981, + 7980,1,0,0,0,7981,7982,1,0,0,0,7982,7983,1,0,0,0,7983,7984,5,454, + 0,0,7984,7985,5,220,0,0,7985,7986,5,7,0,0,7986,859,1,0,0,0,7987, + 7991,5,58,0,0,7988,7990,3,844,422,0,7989,7988,1,0,0,0,7990,7993, + 1,0,0,0,7991,7989,1,0,0,0,7991,7992,1,0,0,0,7992,861,1,0,0,0,7993, + 7991,1,0,0,0,7994,7996,5,40,0,0,7995,7997,3,928,464,0,7996,7995, + 1,0,0,0,7996,7997,1,0,0,0,7997,8007,1,0,0,0,7998,7999,5,102,0,0, + 7999,8000,3,726,363,0,8000,8004,5,93,0,0,8001,8003,3,844,422,0,8002, + 8001,1,0,0,0,8003,8006,1,0,0,0,8004,8002,1,0,0,0,8004,8005,1,0,0, + 0,8005,8008,1,0,0,0,8006,8004,1,0,0,0,8007,7998,1,0,0,0,8008,8009, + 1,0,0,0,8009,8007,1,0,0,0,8009,8010,1,0,0,0,8010,8012,1,0,0,0,8011, + 8013,3,860,430,0,8012,8011,1,0,0,0,8012,8013,1,0,0,0,8013,8014,1, + 0,0,0,8014,8015,5,454,0,0,8015,8016,5,40,0,0,8016,8017,5,7,0,0,8017, + 863,1,0,0,0,8018,8020,3,836,418,0,8019,8018,1,0,0,0,8019,8020,1, + 0,0,0,8020,8025,1,0,0,0,8021,8022,5,503,0,0,8022,8026,3,668,334, + 0,8023,8024,5,62,0,0,8024,8026,3,866,433,0,8025,8021,1,0,0,0,8025, + 8023,1,0,0,0,8025,8026,1,0,0,0,8026,8027,1,0,0,0,8027,8028,3,880, + 440,0,8028,865,1,0,0,0,8029,8030,3,308,154,0,8030,8053,5,68,0,0, + 8031,8033,3,816,408,0,8032,8034,3,528,264,0,8033,8032,1,0,0,0,8033, + 8034,1,0,0,0,8034,8054,1,0,0,0,8035,8054,3,554,277,0,8036,8054,3, + 514,257,0,8037,8038,5,202,0,0,8038,8041,3,668,334,0,8039,8040,5, + 100,0,0,8040,8042,3,726,363,0,8041,8039,1,0,0,0,8041,8042,1,0,0, + 0,8042,8054,1,0,0,0,8043,8045,5,504,0,0,8044,8043,1,0,0,0,8044,8045, + 1,0,0,0,8045,8046,1,0,0,0,8046,8047,3,668,334,0,8047,8048,5,24,0, + 0,8048,8051,3,668,334,0,8049,8050,5,147,0,0,8050,8052,3,668,334, + 0,8051,8049,1,0,0,0,8051,8052,1,0,0,0,8052,8054,1,0,0,0,8053,8031, + 1,0,0,0,8053,8035,1,0,0,0,8053,8036,1,0,0,0,8053,8037,1,0,0,0,8053, + 8044,1,0,0,0,8054,867,1,0,0,0,8055,8057,3,836,418,0,8056,8055,1, + 0,0,0,8056,8057,1,0,0,0,8057,8058,1,0,0,0,8058,8059,5,505,0,0,8059, + 8062,3,308,154,0,8060,8061,5,506,0,0,8061,8063,5,574,0,0,8062,8060, + 1,0,0,0,8062,8063,1,0,0,0,8063,8064,1,0,0,0,8064,8065,5,68,0,0,8065, + 8066,5,35,0,0,8066,8067,3,668,334,0,8067,8068,3,880,440,0,8068,869, + 1,0,0,0,8069,8071,7,116,0,0,8070,8072,3,926,463,0,8071,8070,1,0, + 0,0,8071,8072,1,0,0,0,8072,8075,1,0,0,0,8073,8074,5,102,0,0,8074, + 8076,3,928,464,0,8075,8073,1,0,0,0,8075,8076,1,0,0,0,8076,8077,1, + 0,0,0,8077,8078,5,7,0,0,8078,871,1,0,0,0,8079,8094,5,508,0,0,8080, + 8081,5,268,0,0,8081,8095,3,928,464,0,8082,8089,5,509,0,0,8083,8084, + 5,202,0,0,8084,8085,3,668,334,0,8085,8086,5,100,0,0,8086,8087,3, + 726,363,0,8087,8090,1,0,0,0,8088,8090,3,554,277,0,8089,8083,1,0, + 0,0,8089,8088,1,0,0,0,8090,8095,1,0,0,0,8091,8093,3,928,464,0,8092, + 8091,1,0,0,0,8092,8093,1,0,0,0,8093,8095,1,0,0,0,8094,8080,1,0,0, + 0,8094,8082,1,0,0,0,8094,8092,1,0,0,0,8095,8096,1,0,0,0,8096,8097, + 5,7,0,0,8097,873,1,0,0,0,8098,8128,5,510,0,0,8099,8101,7,117,0,0, + 8100,8099,1,0,0,0,8100,8101,1,0,0,0,8101,8114,1,0,0,0,8102,8115, + 3,824,412,0,8103,8104,5,511,0,0,8104,8115,3,806,403,0,8105,8112, + 3,806,403,0,8106,8107,5,6,0,0,8107,8109,3,668,334,0,8108,8106,1, + 0,0,0,8109,8110,1,0,0,0,8110,8108,1,0,0,0,8110,8111,1,0,0,0,8111, + 8113,1,0,0,0,8112,8108,1,0,0,0,8112,8113,1,0,0,0,8113,8115,1,0,0, + 0,8114,8102,1,0,0,0,8114,8103,1,0,0,0,8114,8105,1,0,0,0,8114,8115, + 1,0,0,0,8115,8125,1,0,0,0,8116,8117,5,100,0,0,8117,8122,3,876,438, + 0,8118,8119,5,6,0,0,8119,8121,3,876,438,0,8120,8118,1,0,0,0,8121, + 8124,1,0,0,0,8122,8120,1,0,0,0,8122,8123,1,0,0,0,8123,8126,1,0,0, + 0,8124,8122,1,0,0,0,8125,8116,1,0,0,0,8125,8126,1,0,0,0,8126,8127, + 1,0,0,0,8127,8129,5,7,0,0,8128,8100,1,0,0,0,8128,8129,1,0,0,0,8129, + 875,1,0,0,0,8130,8131,3,824,412,0,8131,8132,5,10,0,0,8132,8133,3, + 668,334,0,8133,877,1,0,0,0,8134,8135,5,518,0,0,8135,8138,3,928,464, + 0,8136,8137,5,6,0,0,8137,8139,3,928,464,0,8138,8136,1,0,0,0,8138, + 8139,1,0,0,0,8139,8140,1,0,0,0,8140,8141,5,7,0,0,8141,879,1,0,0, + 0,8142,8146,5,519,0,0,8143,8145,3,844,422,0,8144,8143,1,0,0,0,8145, + 8148,1,0,0,0,8146,8144,1,0,0,0,8146,8147,1,0,0,0,8147,8149,1,0,0, + 0,8148,8146,1,0,0,0,8149,8150,5,454,0,0,8150,8152,5,519,0,0,8151, + 8153,3,926,463,0,8152,8151,1,0,0,0,8152,8153,1,0,0,0,8153,8154,1, + 0,0,0,8154,8155,5,7,0,0,8155,881,1,0,0,0,8156,8158,3,4,2,0,8157, + 8159,3,886,443,0,8158,8157,1,0,0,0,8158,8159,1,0,0,0,8159,8160,1, + 0,0,0,8160,8161,5,7,0,0,8161,883,1,0,0,0,8162,8163,5,202,0,0,8163, + 8179,3,668,334,0,8164,8166,3,886,443,0,8165,8164,1,0,0,0,8165,8166, + 1,0,0,0,8166,8169,1,0,0,0,8167,8168,5,100,0,0,8168,8170,3,726,363, + 0,8169,8167,1,0,0,0,8169,8170,1,0,0,0,8170,8180,1,0,0,0,8171,8172, + 5,100,0,0,8172,8174,3,726,363,0,8173,8171,1,0,0,0,8173,8174,1,0, + 0,0,8174,8176,1,0,0,0,8175,8177,3,886,443,0,8176,8175,1,0,0,0,8176, + 8177,1,0,0,0,8177,8180,1,0,0,0,8178,8180,1,0,0,0,8179,8165,1,0,0, + 0,8179,8173,1,0,0,0,8179,8178,1,0,0,0,8180,8181,1,0,0,0,8181,8182, + 5,7,0,0,8182,885,1,0,0,0,8183,8185,5,71,0,0,8184,8186,5,346,0,0, + 8185,8184,1,0,0,0,8185,8186,1,0,0,0,8186,8187,1,0,0,0,8187,8188, + 3,726,363,0,8188,887,1,0,0,0,8189,8221,5,520,0,0,8190,8195,3,920, + 460,0,8191,8193,5,269,0,0,8192,8191,1,0,0,0,8192,8193,1,0,0,0,8193, + 8194,1,0,0,0,8194,8196,5,324,0,0,8195,8192,1,0,0,0,8195,8196,1,0, + 0,0,8196,8197,1,0,0,0,8197,8205,5,62,0,0,8198,8206,3,554,277,0,8199, + 8200,5,202,0,0,8200,8203,3,928,464,0,8201,8202,5,100,0,0,8202,8204, + 3,726,363,0,8203,8201,1,0,0,0,8203,8204,1,0,0,0,8204,8206,1,0,0, + 0,8205,8198,1,0,0,0,8205,8199,1,0,0,0,8206,8222,1,0,0,0,8207,8219, + 3,816,408,0,8208,8209,5,2,0,0,8209,8214,3,890,445,0,8210,8211,5, + 6,0,0,8211,8213,3,890,445,0,8212,8210,1,0,0,0,8213,8216,1,0,0,0, + 8214,8212,1,0,0,0,8214,8215,1,0,0,0,8215,8217,1,0,0,0,8216,8214, + 1,0,0,0,8217,8218,5,3,0,0,8218,8220,1,0,0,0,8219,8208,1,0,0,0,8219, + 8220,1,0,0,0,8220,8222,1,0,0,0,8221,8190,1,0,0,0,8221,8207,1,0,0, + 0,8222,8223,1,0,0,0,8223,8224,5,7,0,0,8224,889,1,0,0,0,8225,8226, + 3,816,408,0,8226,8227,5,20,0,0,8227,8229,1,0,0,0,8228,8225,1,0,0, + 0,8228,8229,1,0,0,0,8229,8230,1,0,0,0,8230,8231,3,668,334,0,8231, + 891,1,0,0,0,8232,8234,5,61,0,0,8233,8235,3,894,447,0,8234,8233,1, + 0,0,0,8234,8235,1,0,0,0,8235,8237,1,0,0,0,8236,8238,3,326,163,0, + 8237,8236,1,0,0,0,8237,8238,1,0,0,0,8238,8239,1,0,0,0,8239,8240, + 3,920,460,0,8240,8241,5,71,0,0,8241,8242,3,726,363,0,8242,8243,5, + 7,0,0,8243,893,1,0,0,0,8244,8259,5,268,0,0,8245,8259,5,293,0,0,8246, + 8259,5,207,0,0,8247,8259,5,249,0,0,8248,8250,7,51,0,0,8249,8248, + 1,0,0,0,8249,8250,1,0,0,0,8250,8251,1,0,0,0,8251,8259,3,668,334, + 0,8252,8259,5,30,0,0,8253,8256,7,118,0,0,8254,8257,3,668,334,0,8255, + 8257,5,30,0,0,8256,8254,1,0,0,0,8256,8255,1,0,0,0,8256,8257,1,0, + 0,0,8257,8259,1,0,0,0,8258,8244,1,0,0,0,8258,8245,1,0,0,0,8258,8246, + 1,0,0,0,8258,8247,1,0,0,0,8258,8249,1,0,0,0,8258,8252,1,0,0,0,8258, + 8253,1,0,0,0,8259,895,1,0,0,0,8260,8262,5,265,0,0,8261,8263,3,894, + 447,0,8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263,8264,1,0,0,0,8264, + 8265,3,920,460,0,8265,8266,5,7,0,0,8266,897,1,0,0,0,8267,8269,3, + 566,283,0,8268,8267,1,0,0,0,8268,8269,1,0,0,0,8269,8270,1,0,0,0, + 8270,8271,5,525,0,0,8271,8273,5,71,0,0,8272,8274,5,81,0,0,8273,8272, + 1,0,0,0,8273,8274,1,0,0,0,8274,8275,1,0,0,0,8275,8277,3,770,385, + 0,8276,8278,5,9,0,0,8277,8276,1,0,0,0,8277,8278,1,0,0,0,8278,8283, + 1,0,0,0,8279,8281,5,36,0,0,8280,8279,1,0,0,0,8280,8281,1,0,0,0,8281, + 8282,1,0,0,0,8282,8284,3,816,408,0,8283,8280,1,0,0,0,8283,8284,1, + 0,0,0,8284,8285,1,0,0,0,8285,8286,5,100,0,0,8286,8287,3,900,450, + 0,8287,8288,5,80,0,0,8288,8290,3,668,334,0,8289,8291,3,902,451,0, + 8290,8289,1,0,0,0,8291,8292,1,0,0,0,8292,8290,1,0,0,0,8292,8293, + 1,0,0,0,8293,8295,1,0,0,0,8294,8296,3,540,270,0,8295,8294,1,0,0, + 0,8295,8296,1,0,0,0,8296,899,1,0,0,0,8297,8299,5,81,0,0,8298,8297, + 1,0,0,0,8298,8299,1,0,0,0,8299,8300,1,0,0,0,8300,8302,3,770,385, + 0,8301,8303,5,9,0,0,8302,8301,1,0,0,0,8302,8303,1,0,0,0,8303,8309, + 1,0,0,0,8304,8307,3,558,279,0,8305,8307,3,602,301,0,8306,8304,1, + 0,0,0,8306,8305,1,0,0,0,8307,8309,1,0,0,0,8308,8298,1,0,0,0,8308, + 8306,1,0,0,0,8309,8314,1,0,0,0,8310,8312,5,36,0,0,8311,8310,1,0, + 0,0,8311,8312,1,0,0,0,8312,8313,1,0,0,0,8313,8315,3,816,408,0,8314, + 8311,1,0,0,0,8314,8315,1,0,0,0,8315,901,1,0,0,0,8316,8317,5,102, + 0,0,8317,8320,5,526,0,0,8318,8319,5,33,0,0,8319,8321,3,668,334,0, + 8320,8318,1,0,0,0,8320,8321,1,0,0,0,8321,8322,1,0,0,0,8322,8327, + 5,93,0,0,8323,8328,3,906,453,0,8324,8328,5,182,0,0,8325,8326,5,57, + 0,0,8326,8328,5,270,0,0,8327,8323,1,0,0,0,8327,8324,1,0,0,0,8327, + 8325,1,0,0,0,8328,8343,1,0,0,0,8329,8330,5,102,0,0,8330,8331,5,77, + 0,0,8331,8334,5,526,0,0,8332,8333,5,33,0,0,8333,8335,3,668,334,0, + 8334,8332,1,0,0,0,8334,8335,1,0,0,0,8335,8336,1,0,0,0,8336,8340, + 5,93,0,0,8337,8341,3,904,452,0,8338,8339,5,57,0,0,8339,8341,5,270, + 0,0,8340,8337,1,0,0,0,8340,8338,1,0,0,0,8341,8343,1,0,0,0,8342,8316, + 1,0,0,0,8342,8329,1,0,0,0,8343,903,1,0,0,0,8344,8346,5,241,0,0,8345, + 8347,3,138,69,0,8346,8345,1,0,0,0,8346,8347,1,0,0,0,8347,8351,1, + 0,0,0,8348,8349,5,463,0,0,8349,8350,7,77,0,0,8350,8352,5,450,0,0, + 8351,8348,1,0,0,0,8351,8352,1,0,0,0,8352,8353,1,0,0,0,8353,8354, + 3,908,454,0,8354,905,1,0,0,0,8355,8356,5,369,0,0,8356,8374,5,333, + 0,0,8357,8358,3,796,398,0,8358,8359,5,10,0,0,8359,8360,3,910,455, + 0,8360,8375,1,0,0,0,8361,8362,3,138,69,0,8362,8363,5,10,0,0,8363, + 8364,5,2,0,0,8364,8369,3,910,455,0,8365,8366,5,6,0,0,8366,8368,3, + 910,455,0,8367,8365,1,0,0,0,8368,8371,1,0,0,0,8369,8367,1,0,0,0, + 8369,8370,1,0,0,0,8370,8372,1,0,0,0,8371,8369,1,0,0,0,8372,8373, + 5,3,0,0,8373,8375,1,0,0,0,8374,8357,1,0,0,0,8374,8361,1,0,0,0,8375, + 8376,1,0,0,0,8376,8374,1,0,0,0,8376,8377,1,0,0,0,8377,907,1,0,0, + 0,8378,8379,5,422,0,0,8379,8380,5,2,0,0,8380,8385,3,910,455,0,8381, + 8382,5,6,0,0,8382,8384,3,910,455,0,8383,8381,1,0,0,0,8384,8387,1, + 0,0,0,8385,8383,1,0,0,0,8385,8386,1,0,0,0,8386,8388,1,0,0,0,8387, + 8385,1,0,0,0,8388,8389,5,3,0,0,8389,8393,1,0,0,0,8390,8391,5,53, + 0,0,8391,8393,5,422,0,0,8392,8378,1,0,0,0,8392,8390,1,0,0,0,8393, + 909,1,0,0,0,8394,8397,3,582,291,0,8395,8397,5,53,0,0,8396,8394,1, + 0,0,0,8396,8395,1,0,0,0,8397,911,1,0,0,0,8398,8399,5,157,0,0,8399, + 8400,3,920,460,0,8400,8401,5,7,0,0,8401,913,1,0,0,0,8402,8403,5, + 78,0,0,8403,8404,5,7,0,0,8404,915,1,0,0,0,8405,8411,7,68,0,0,8406, + 8408,5,33,0,0,8407,8409,5,269,0,0,8408,8407,1,0,0,0,8408,8409,1, + 0,0,0,8409,8410,1,0,0,0,8410,8412,5,153,0,0,8411,8406,1,0,0,0,8411, + 8412,1,0,0,0,8412,8413,1,0,0,0,8413,8414,5,7,0,0,8414,917,1,0,0, + 0,8415,8416,5,333,0,0,8416,8417,3,310,155,0,8417,8418,5,94,0,0,8418, + 8419,5,53,0,0,8419,8420,5,7,0,0,8420,8428,1,0,0,0,8421,8424,5,313, + 0,0,8422,8425,3,310,155,0,8423,8425,5,30,0,0,8424,8422,1,0,0,0,8424, + 8423,1,0,0,0,8425,8426,1,0,0,0,8426,8428,5,7,0,0,8427,8415,1,0,0, + 0,8427,8421,1,0,0,0,8428,919,1,0,0,0,8429,8432,3,816,408,0,8430, + 8432,5,28,0,0,8431,8429,1,0,0,0,8431,8430,1,0,0,0,8432,921,1,0,0, + 0,8433,8450,5,517,0,0,8434,8435,5,102,0,0,8435,8440,3,924,462,0, + 8436,8437,5,82,0,0,8437,8439,3,924,462,0,8438,8436,1,0,0,0,8439, + 8442,1,0,0,0,8440,8438,1,0,0,0,8440,8441,1,0,0,0,8441,8443,1,0,0, + 0,8442,8440,1,0,0,0,8443,8447,5,93,0,0,8444,8446,3,844,422,0,8445, + 8444,1,0,0,0,8446,8449,1,0,0,0,8447,8445,1,0,0,0,8447,8448,1,0,0, + 0,8448,8451,1,0,0,0,8449,8447,1,0,0,0,8450,8434,1,0,0,0,8451,8452, + 1,0,0,0,8452,8450,1,0,0,0,8452,8453,1,0,0,0,8453,923,1,0,0,0,8454, + 8458,3,926,463,0,8455,8456,5,511,0,0,8456,8458,3,806,403,0,8457, + 8454,1,0,0,0,8457,8455,1,0,0,0,8458,925,1,0,0,0,8459,8462,3,816, + 408,0,8460,8462,3,826,413,0,8461,8459,1,0,0,0,8461,8460,1,0,0,0, + 8462,927,1,0,0,0,8463,8465,3,752,376,0,8464,8463,1,0,0,0,8464,8465, + 1,0,0,0,8465,8467,1,0,0,0,8466,8468,3,574,287,0,8467,8466,1,0,0, + 0,8467,8468,1,0,0,0,8468,8470,1,0,0,0,8469,8471,3,604,302,0,8470, + 8469,1,0,0,0,8470,8471,1,0,0,0,8471,8473,1,0,0,0,8472,8474,3,632, + 316,0,8473,8472,1,0,0,0,8473,8474,1,0,0,0,8474,8476,1,0,0,0,8475, + 8477,3,594,297,0,8476,8475,1,0,0,0,8476,8477,1,0,0,0,8477,8479,1, + 0,0,0,8478,8480,3,698,349,0,8479,8478,1,0,0,0,8479,8480,1,0,0,0, + 8480,8482,1,0,0,0,8481,8483,3,696,348,0,8482,8481,1,0,0,0,8482,8483, + 1,0,0,0,8483,929,1,0,0,0,1190,933,940,1060,1062,1071,1076,1082,1117, + 1127,1133,1138,1145,1150,1157,1168,1176,1180,1192,1198,1204,1208, + 1213,1217,1230,1240,1242,1248,1253,1266,1269,1274,1279,1290,1294, + 1306,1310,1313,1317,1329,1347,1354,1362,1367,1374,1382,1388,1396, + 1404,1408,1422,1427,1432,1444,1450,1462,1467,1477,1483,1488,1497, + 1504,1509,1514,1524,1529,1534,1541,1545,1559,1565,1571,1576,1583, + 1592,1601,1610,1619,1623,1635,1643,1653,1673,1678,1681,1688,1691, + 1695,1699,1702,1707,1712,1716,1725,1731,1735,1744,1747,1753,1762, + 1774,1778,1782,1787,1790,1796,1798,1800,1804,1810,1814,1819,1824, + 1828,1831,1838,1851,1864,1889,1899,1906,1911,1915,1922,1927,1930, + 1932,1937,1941,1945,1949,1954,1957,1961,1964,1968,1976,1981,1984, + 1988,1994,2003,2007,2017,2022,2026,2030,2032,2034,2041,2046,2050, + 2055,2067,2072,2076,2080,2085,2089,2092,2095,2098,2101,2104,2109, + 2112,2115,2118,2121,2124,2130,2134,2137,2140,2143,2146,2148,2155, + 2163,2173,2178,2188,2191,2196,2201,2206,2209,2214,2223,2225,2229, + 2232,2236,2241,2246,2250,2253,2257,2260,2265,2268,2273,2276,2280, + 2283,2286,2291,2294,2302,2314,2318,2325,2330,2333,2336,2339,2344, + 2355,2361,2365,2368,2371,2376,2383,2386,2390,2398,2403,2406,2409, + 2416,2421,2430,2433,2436,2441,2444,2456,2466,2483,2487,2491,2493, + 2510,2512,2528,2539,2542,2545,2554,2563,2579,2582,2585,2593,2597, + 2604,2613,2617,2623,2627,2630,2633,2636,2639,2645,2649,2654,2658, + 2661,2664,2667,2672,2678,2682,2686,2690,2696,2698,2703,2709,2715, + 2719,2734,2739,2742,2744,2747,2751,2755,2758,2761,2769,2775,2777, + 2783,2788,2793,2797,2804,2806,2817,2856,2866,2868,2871,2875,2879, + 2889,2891,2897,2899,2908,2920,2934,2939,2942,2949,2954,2962,2964, + 2970,2975,2979,2984,2990,2997,3003,3005,3014,3020,3028,3034,3039, + 3044,3052,3067,3069,3073,3077,3080,3083,3092,3095,3098,3104,3110, + 3114,3126,3132,3135,3140,3144,3151,3161,3163,3187,3199,3204,3206, + 3210,3213,3216,3226,3229,3239,3244,3249,3252,3255,3263,3269,3276, + 3284,3287,3298,3302,3308,3315,3318,3327,3341,3344,3358,3369,3372, + 3384,3389,3402,3407,3420,3429,3432,3435,3442,3445,3457,3463,3465, + 3473,3481,3489,3501,3506,3517,3528,3536,3544,3551,3558,3560,3563, + 3568,3573,3592,3601,3604,3631,3640,3643,3647,3651,3655,3662,3666, + 3670,3674,3678,3683,3687,3692,3698,3703,3710,3714,3720,3724,3729, + 3737,3743,3748,3755,3760,3764,3769,3775,3782,3787,3794,3799,3806, + 3810,3818,3822,3824,3827,3832,3842,3857,3860,3868,3875,3880,3886, + 3890,3897,3902,3905,3908,3912,3921,3939,3942,3974,3979,3985,4005, + 4010,4016,4019,4023,4027,4033,4036,4040,4044,4049,4052,4055,4058, + 4071,4077,4085,4092,4097,4100,4107,4110,4118,4121,4126,4133,4136, + 4156,4168,4171,4177,4182,4191,4199,4204,4210,4217,4225,4228,4239, + 4241,4255,4261,4269,4271,4277,4281,4284,4287,4292,4297,4301,4304, + 4307,4310,4313,4321,4332,4335,4338,4343,4346,4350,4354,4360,4368, + 4371,4384,4389,4391,4396,4403,4410,4419,4427,4435,4442,4450,4457, + 4465,4469,4473,4475,4481,4486,4490,4497,4502,4507,4512,4514,4524, + 4534,4550,4568,4580,4587,4602,4607,4610,4615,4620,4625,4628,4631, + 4636,4643,4647,4652,4659,4663,4669,4678,4687,4699,4701,4714,4720, + 4724,4726,4733,4746,4753,4755,4771,4775,4779,4784,4789,4794,4799, + 4802,4814,4867,4876,4880,4889,4893,4902,4906,4911,4914,4918,4923, + 4925,4934,4939,4950,4954,4968,4976,5014,5016,5035,5038,5065,5069, + 5073,5077,5081,5084,5099,5106,5120,5133,5158,5177,5192,5208,5215, + 5226,5229,5248,5251,5264,5268,5288,5300,5304,5326,5330,5340,5344, + 5350,5354,5358,5362,5369,5374,5385,5389,5392,5397,5403,5414,5418, + 5421,5425,5429,5432,5442,5445,5449,5454,5460,5463,5468,5471,5478, + 5480,5486,5490,5499,5504,5506,5516,5519,5524,5532,5535,5540,5542, + 5544,5550,5567,5573,5586,5592,5596,5601,5631,5646,5651,5655,5668, + 5672,5674,5683,5689,5691,5695,5698,5701,5704,5707,5709,5712,5716, + 5724,5729,5732,5738,5742,5746,5751,5753,5757,5761,5768,5774,5778, + 5780,5782,5795,5803,5811,5822,5832,5837,5841,5845,5852,5855,5857, + 5865,5869,5872,5879,5886,5891,5898,5901,5903,5906,5912,5917,5921, + 5928,5938,5945,5948,5951,5955,5966,5969,5972,5975,5978,5985,5988, + 5991,5998,6010,6017,6019,6024,6029,6031,6037,6044,6049,6054,6058, + 6062,6066,6068,6072,6076,6079,6082,6084,6094,6096,6101,6105,6110, + 6114,6121,6126,6130,6133,6139,6142,6161,6168,6172,6175,6179,6183, + 6186,6189,6194,6203,6210,6214,6218,6222,6225,6227,6232,6236,6241, + 6247,6254,6259,6264,6273,6280,6288,6299,6304,6308,6311,6315,6320, + 6324,6329,6337,6348,6353,6357,6360,6363,6365,6368,6371,6374,6378, + 6382,6386,6388,6397,6402,6408,6412,6414,6421,6426,6432,6434,6438, + 6445,6450,6453,6459,6463,6469,6478,6484,6486,6491,6494,6503,6510, + 6512,6519,6524,6527,6537,6548,6553,6557,6565,6575,6582,6588,6599, + 6605,6615,6624,6628,6631,6633,6635,6639,6647,6650,6655,6660,6667, + 6669,6675,6679,6682,6687,6690,6692,6698,6707,6713,6716,6724,6727, + 6731,6737,6739,6742,6746,6751,6758,6765,6767,6773,6775,6780,6782, + 6786,6795,6799,6807,6809,6823,6826,6834,6843,6849,6854,6862,6864, + 6869,6873,6878,6883,6889,6905,6907,6916,6931,6936,6939,6945,6950, + 6963,6968,6972,6979,6999,7011,7016,7024,7026,7028,7037,7040,7045, + 7050,7053,7064,7072,7077,7079,7082,7086,7097,7118,7126,7139,7149, + 7155,7161,7164,7167,7193,7195,7216,7226,7239,7244,7248,7250,7262, + 7269,7275,7281,7285,7296,7309,7313,7318,7321,7324,7333,7344,7346, + 7350,7355,7364,7369,7377,7387,7395,7399,7402,7409,7417,7421,7428, + 7436,7438,7447,7450,7462,7471,7478,7487,7497,7502,7506,7508,7511, + 7516,7521,7529,7537,7540,7547,7555,7563,7571,7588,7595,7603,7620, + 7626,7632,7643,7649,7654,7662,7667,7670,7679,7686,7691,7695,7700, + 7706,7711,7719,7774,7781,7787,7789,7791,7793,7799,7803,7807,7818, + 7821,7825,7829,7833,7836,7839,7842,7851,7856,7860,7893,7903,7907, + 7913,7918,7927,7935,7946,7954,7963,7972,7977,7981,7991,7996,8004, + 8009,8012,8019,8025,8033,8041,8044,8051,8053,8056,8062,8071,8075, + 8089,8092,8094,8100,8110,8112,8114,8122,8125,8128,8138,8146,8152, + 8158,8165,8169,8173,8176,8179,8185,8192,8195,8203,8205,8214,8219, + 8221,8228,8234,8237,8249,8256,8258,8262,8268,8273,8277,8280,8283, + 8292,8295,8298,8302,8306,8308,8311,8314,8320,8327,8334,8340,8342, + 8346,8351,8369,8374,8376,8385,8392,8396,8408,8411,8424,8427,8431, + 8440,8447,8452,8457,8461,8464,8467,8470,8473,8476,8479,8482 ]; private static __ATN: antlr.ATN; @@ -78534,6 +78595,9 @@ export class PrimaryExpressionContext extends antlr.ParserRuleContext { public KW_OVERLAPS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.KW_OVERLAPS, 0); } + public columnNamePath(): ColumnNamePathContext | null { + return this.getRuleContext(0, ColumnNamePathContext); + } public qualifiedName(): QualifiedNameContext | null { return this.getRuleContext(0, QualifiedNameContext); } @@ -79292,6 +79356,39 @@ export class WindowClauseContext extends antlr.ParserRuleContext { } +export class HavingClauseContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_HAVING(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.KW_HAVING, 0)!; + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_havingClause; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class WindowDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -81295,6 +81392,39 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public colId(): ColIdContext { + return this.getRuleContext(0, ColIdContext)!; + } + public optIndirection(): OptIndirectionContext { + return this.getRuleContext(0, OptIndirectionContext)!; + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_columnNamePath; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -85887,11 +86017,8 @@ export class SqlExpressionContext extends antlr.ParserRuleContext { public groupClause(): GroupClauseContext | null { return this.getRuleContext(0, GroupClauseContext); } - public KW_HAVING(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.KW_HAVING, 0); - } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } public windowClause(): WindowClauseContext | null { return this.getRuleContext(0, WindowClauseContext); diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index e4c9065a9..56a8ea0fc 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -371,6 +371,7 @@ import { DocumentOrContentContext } from "./PostgreSqlParser.js"; import { XmlExistsArgumentContext } from "./PostgreSqlParser.js"; import { XmlPassingMechContext } from "./PostgreSqlParser.js"; import { WindowClauseContext } from "./PostgreSqlParser.js"; +import { HavingClauseContext } from "./PostgreSqlParser.js"; import { WindowDefinitionContext } from "./PostgreSqlParser.js"; import { Over_clauseContext } from "./PostgreSqlParser.js"; import { WindowSpecificationContext } from "./PostgreSqlParser.js"; @@ -421,6 +422,7 @@ import { RoutineNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; +import { ColumnNamePathContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameContext } from "./PostgreSqlParser.js"; @@ -4173,6 +4175,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitWindowClause?: (ctx: WindowClauseContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.havingClause`. + * @param ctx the parse tree + */ + enterHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.havingClause`. + * @param ctx the parse tree + */ + exitHavingClause?: (ctx: HavingClauseContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.windowDefinition`. * @param ctx the parse tree @@ -4677,6 +4689,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index 608cfb6ea..c92fd7006 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -371,6 +371,7 @@ import { DocumentOrContentContext } from "./PostgreSqlParser.js"; import { XmlExistsArgumentContext } from "./PostgreSqlParser.js"; import { XmlPassingMechContext } from "./PostgreSqlParser.js"; import { WindowClauseContext } from "./PostgreSqlParser.js"; +import { HavingClauseContext } from "./PostgreSqlParser.js"; import { WindowDefinitionContext } from "./PostgreSqlParser.js"; import { Over_clauseContext } from "./PostgreSqlParser.js"; import { WindowSpecificationContext } from "./PostgreSqlParser.js"; @@ -421,6 +422,7 @@ import { RoutineNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; +import { ColumnNamePathContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameContext } from "./PostgreSqlParser.js"; @@ -2699,6 +2701,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.havingClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.windowDefinition`. * @param ctx the parse tree @@ -3001,6 +3009,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlLexer.interp b/src/lib/spark/SparkSqlLexer.interp index 24233f728..31a58564e 100644 --- a/src/lib/spark/SparkSqlLexer.interp +++ b/src/lib/spark/SparkSqlLexer.interp @@ -785,9 +785,9 @@ DOUBLE_LITERAL BIGDECIMAL_LITERAL IDENTIFIER BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED rule names: @@ -1184,9 +1184,9 @@ DECIMAL_DIGITS EXPONENT DIGIT LETTER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED channel names: diff --git a/src/lib/spark/SparkSqlLexer.tokens b/src/lib/spark/SparkSqlLexer.tokens index d88918b0b..eb87db246 100644 --- a/src/lib/spark/SparkSqlLexer.tokens +++ b/src/lib/spark/SparkSqlLexer.tokens @@ -387,9 +387,9 @@ DOUBLE_LITERAL=386 BIGDECIMAL_LITERAL=387 IDENTIFIER=388 BACKQUOTED_IDENTIFIER=389 -SIMPLE_COMMENT=390 +LINE_COMMENT=390 BRACKETED_COMMENT=391 -WS=392 +WHITE_SPACE=392 UNRECOGNIZED=393 ';'=1 '('=2 diff --git a/src/lib/spark/SparkSqlLexer.ts b/src/lib/spark/SparkSqlLexer.ts index b718eed36..22dd221a2 100644 --- a/src/lib/spark/SparkSqlLexer.ts +++ b/src/lib/spark/SparkSqlLexer.ts @@ -396,9 +396,9 @@ export class SparkSqlLexer extends antlr.Lexer { public static readonly BIGDECIMAL_LITERAL = 387; public static readonly IDENTIFIER = 388; public static readonly BACKQUOTED_IDENTIFIER = 389; - public static readonly SIMPLE_COMMENT = 390; + public static readonly LINE_COMMENT = 390; public static readonly BRACKETED_COMMENT = 391; - public static readonly WS = 392; + public static readonly WHITE_SPACE = 392; public static readonly UNRECOGNIZED = 393; public static readonly channelNames = [ @@ -549,8 +549,8 @@ export class SparkSqlLexer extends antlr.Lexer { "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", "DOUBLEQUOTED_STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", - "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" + "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "LINE_COMMENT", + "BRACKETED_COMMENT", "WHITE_SPACE", "UNRECOGNIZED" ]; public static readonly modeNames = [ @@ -632,8 +632,8 @@ export class SparkSqlLexer extends antlr.Lexer { "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "DECIMAL_DIGITS", - "EXPONENT", "DIGIT", "LETTER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", + "EXPONENT", "DIGIT", "LETTER", "LINE_COMMENT", "BRACKETED_COMMENT", + "WHITE_SPACE", "UNRECOGNIZED", ]; diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 34e9b24b0..db7ab5fa3 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -785,21 +785,16 @@ DOUBLE_LITERAL BIGDECIMAL_LITERAL IDENTIFIER BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED rule names: program singleStatement statement -timezone -configKey -configValue unsupportedHiveNativeCommands -createTableHeader -replaceTableHeader bucketSpec skewSpec locationSpec @@ -810,7 +805,6 @@ partitionSpecLocation partitionSpec partitionVal namespace -namespaces describeFuncName describeColName ctes @@ -829,7 +823,6 @@ nestedConstantList createFileFormat fileFormat storageHandler -resource dmlStatementNoWith namespaceName namespaceNameCreate @@ -838,15 +831,17 @@ tableName viewNameCreate viewName columnName +columnNamePath columnNameSeq columnNameCreate identifierReference queryOrganization -multiInsertQueryBody +limitClause +orderOrSortByClause +clusterOrDistributeBy queryTerm queryPrimary sortItem -fromStatement fromStatementBody querySpecification transformClause @@ -855,9 +850,7 @@ setClause matchedClause notMatchedClause notMatchedBySourceClause -matchedAction notMatchedAction -notMatchedBySourceAction assignmentList assignment whereClause @@ -865,33 +858,24 @@ havingClause hint hintStatement fromClause -functionKind temporalClause aggregationClause groupByClause groupingAnalytics -groupingElement groupingSet pivotClause pivotColumn pivotValue unPivotClause -unPivotNullClause -unPivotOperator unPivotSingleValueColumnClause unPivotMultiValueColumnClause unPivotColumnSet -unPivotValueColumn -unPivotNameColumn unPivotColumnAndAlias -unPivotColumn -unPivotAlias ifNotExists ifExists lateralView setQuantifier relation -relationExtension joinRelation joinType joinCriteria @@ -904,13 +888,11 @@ orderedIdentifier identifierCommentList identifierComment relationPrimary -inlineTable functionTableSubqueryArgument tableArgumentPartitioning functionTableNamedArgumentExpression functionTableReferenceArgument functionTableArgument -functionTable tableAlias rowFormat multipartIdentifierList @@ -956,20 +938,16 @@ qualifiedColTypeWithPositionForAdd qualifiedColTypeWithPositionSeqForReplace qualifiedColTypeWithPositionForReplace colDefinitionDescriptorWithPosition -defaultExpression variableDefaultExpression colTypeList columnType createOrReplaceTableColTypeList createOrReplaceTableColType colDefinitionOption -generationExpression -complexColTypeList complexColType whenClause windowClause zOrderClause -namedWindow windowSpec windowFrame frameBound @@ -982,16 +960,13 @@ errorCapturingIdentifierExtra identifier strictIdentifier quotedIdentifier -backQuotedIdentifier number alterColumnAction stringLit -commentStr -version ansiNonReserved strictNonReserved nonReserved atn: -[4, 1, 393, 3971, 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, 1, 0, 5, 0, 402, 8, 0, 10, 0, 12, 0, 405, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 411, 8, 1, 1, 2, 1, 2, 3, 2, 415, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 440, 8, 2, 10, 2, 12, 2, 443, 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, 461, 8, 2, 1, 2, 1, 2, 3, 2, 465, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 484, 8, 2, 1, 2, 3, 2, 487, 8, 2, 1, 2, 1, 2, 3, 2, 491, 8, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 511, 8, 2, 10, 2, 12, 2, 514, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 3, 2, 531, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 537, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 548, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 554, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 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, 592, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 602, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 613, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 635, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 649, 8, 2, 1, 2, 1, 2, 3, 2, 653, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 659, 8, 2, 1, 2, 1, 2, 3, 2, 663, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 674, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 700, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 711, 8, 2, 1, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 4, 2, 718, 8, 2, 11, 2, 12, 2, 719, 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, 735, 8, 2, 1, 2, 1, 2, 3, 2, 739, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 744, 8, 2, 10, 2, 12, 2, 747, 9, 2, 1, 2, 3, 2, 750, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 756, 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, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 794, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 3, 2, 817, 8, 2, 1, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 829, 8, 2, 10, 2, 12, 2, 832, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 886, 8, 2, 10, 2, 12, 2, 889, 9, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 897, 8, 2, 1, 2, 1, 2, 3, 2, 901, 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, 916, 8, 2, 10, 2, 12, 2, 919, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 3, 2, 930, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 957, 8, 2, 1, 2, 1, 2, 3, 2, 961, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 3, 2, 1039, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 3, 2, 1058, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 3, 2, 1110, 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, 1136, 8, 2, 10, 2, 12, 2, 1139, 9, 2, 3, 2, 1141, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1179, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1185, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 3, 2, 1194, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1201, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1206, 8, 2, 10, 2, 12, 2, 1209, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 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, 1231, 8, 2, 10, 2, 12, 2, 1234, 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, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 3, 2, 1263, 8, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1276, 8, 2, 10, 2, 12, 2, 1279, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1285, 8, 2, 10, 2, 12, 2, 1288, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1293, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1298, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1303, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1320, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1333, 8, 2, 10, 2, 12, 2, 1336, 9, 2, 3, 2, 1338, 8, 2, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1354, 8, 6, 1, 6, 1, 6, 3, 6, 1358, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1365, 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, 1481, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1506, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1516, 8, 6, 1, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 3, 7, 1523, 8, 7, 1, 7, 1, 7, 3, 7, 1527, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1533, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1562, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1571, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1579, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1584, 8, 14, 3, 14, 1586, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1599, 8, 14, 1, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1619, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1628, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1650, 8, 14, 3, 14, 1652, 8, 14, 1, 15, 1, 15, 3, 15, 1656, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1663, 8, 16, 10, 16, 12, 16, 1666, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1673, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1679, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1690, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1695, 8, 21, 10, 21, 12, 21, 1698, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1704, 8, 22, 10, 22, 12, 22, 1707, 9, 22, 1, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 3, 23, 1714, 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, 1, 25, 5, 25, 1737, 8, 25, 10, 25, 12, 25, 1740, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1749, 8, 27, 10, 27, 12, 27, 1752, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1758, 8, 28, 1, 28, 3, 28, 1761, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1766, 8, 29, 10, 29, 12, 29, 1769, 9, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1778, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1784, 8, 31, 10, 31, 12, 31, 1787, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1793, 8, 32, 1, 32, 3, 32, 1796, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1802, 8, 33, 10, 33, 12, 33, 1805, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1813, 8, 34, 10, 34, 12, 34, 1816, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1826, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1840, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1850, 8, 39, 11, 39, 12, 39, 1851, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1859, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1866, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1884, 8, 39, 10, 39, 12, 39, 1887, 9, 39, 1, 39, 5, 39, 1890, 8, 39, 10, 39, 12, 39, 1893, 9, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 3, 39, 1901, 8, 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, 3, 46, 1917, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1922, 8, 47, 10, 47, 12, 47, 1925, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1942, 8, 50, 10, 50, 12, 50, 1945, 9, 50, 3, 50, 1947, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 3, 50, 1986, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1991, 8, 50, 3, 50, 1993, 8, 50, 1, 50, 1, 50, 3, 50, 1997, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2014, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 5, 52, 2023, 8, 52, 10, 52, 12, 52, 2026, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 54, 1, 54, 3, 54, 2041, 8, 54, 1, 54, 3, 54, 2044, 8, 54, 1, 54, 1, 54, 3, 54, 2048, 8, 54, 1, 55, 1, 55, 4, 55, 2052, 8, 55, 11, 55, 12, 55, 2053, 1, 56, 1, 56, 3, 56, 2058, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2064, 8, 56, 10, 56, 12, 56, 2067, 9, 56, 1, 56, 3, 56, 2070, 8, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 5, 57, 2090, 8, 57, 10, 57, 12, 57, 2093, 9, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 3, 57, 2129, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2135, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2142, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2147, 8, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 3, 58, 2153, 8, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2167, 8, 58, 1, 58, 1, 58, 3, 58, 2171, 8, 58, 3, 58, 2173, 8, 58, 1, 58, 3, 58, 2176, 8, 58, 1, 58, 1, 58, 3, 58, 2180, 8, 58, 1, 59, 1, 59, 5, 59, 2184, 8, 59, 10, 59, 12, 59, 2187, 9, 59, 1, 59, 3, 59, 2190, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2201, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2211, 8, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2239, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2252, 8, 65, 10, 65, 12, 65, 2255, 9, 65, 1, 65, 1, 65, 3, 65, 2259, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2265, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2270, 8, 67, 10, 67, 12, 67, 2273, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2288, 8, 71, 1, 71, 5, 71, 2291, 8, 71, 10, 71, 12, 71, 2294, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2304, 8, 72, 10, 72, 12, 72, 2307, 9, 72, 1, 72, 1, 72, 3, 72, 2311, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2317, 8, 73, 10, 73, 12, 73, 2320, 9, 73, 1, 73, 5, 73, 2323, 8, 73, 10, 73, 12, 73, 2326, 9, 73, 1, 73, 3, 73, 2329, 8, 73, 1, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2337, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2344, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2350, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2357, 8, 76, 10, 76, 12, 76, 2360, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2367, 8, 76, 10, 76, 12, 76, 2370, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2382, 8, 76, 10, 76, 12, 76, 2385, 9, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 3, 76, 2391, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2403, 8, 78, 10, 78, 12, 78, 2406, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2416, 8, 78, 10, 78, 12, 78, 2419, 9, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2434, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2439, 8, 80, 5, 80, 2441, 8, 80, 10, 80, 12, 80, 2444, 9, 80, 3, 80, 2446, 8, 80, 1, 80, 3, 80, 2449, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2461, 8, 81, 10, 81, 12, 81, 2464, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2474, 8, 82, 10, 82, 12, 82, 2477, 9, 82, 1, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 84, 1, 84, 3, 84, 2492, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2498, 8, 84, 1, 84, 3, 84, 2501, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2508, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2518, 8, 87, 10, 87, 12, 87, 2521, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2529, 8, 88, 10, 88, 12, 88, 2532, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2542, 8, 88, 10, 88, 12, 88, 2545, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2553, 8, 89, 10, 89, 12, 89, 2556, 9, 89, 1, 89, 1, 89, 3, 89, 2560, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2568, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2573, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2587, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2594, 8, 97, 10, 97, 12, 97, 2597, 9, 97, 3, 97, 2599, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2604, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2609, 8, 97, 10, 97, 12, 97, 2612, 9, 97, 3, 97, 2614, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2620, 8, 99, 1, 99, 1, 99, 5, 99, 2624, 8, 99, 10, 99, 12, 99, 2627, 9, 99, 3, 99, 2629, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2634, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2639, 8, 101, 1, 101, 1, 101, 3, 101, 2643, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 102, 3, 102, 2656, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2661, 8, 102, 1, 102, 3, 102, 2664, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2669, 8, 102, 1, 102, 1, 102, 3, 102, 2673, 8, 102, 1, 102, 3, 102, 2676, 8, 102, 1, 102, 3, 102, 2679, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2685, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2690, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2697, 8, 104, 1, 105, 3, 105, 2700, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2718, 8, 105, 3, 105, 2720, 8, 105, 1, 105, 3, 105, 2723, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2732, 8, 107, 10, 107, 12, 107, 2735, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2741, 8, 108, 10, 108, 12, 108, 2744, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2750, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2756, 8, 110, 10, 110, 12, 110, 2759, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2765, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2770, 8, 112, 1, 112, 3, 112, 2773, 8, 112, 1, 112, 3, 112, 2776, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2784, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2804, 8, 113, 10, 113, 12, 113, 2807, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2814, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2821, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2828, 8, 114, 3, 114, 2830, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2841, 8, 115, 10, 115, 12, 115, 2844, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2849, 8, 115, 3, 115, 2851, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2859, 8, 115, 10, 115, 12, 115, 2862, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2867, 8, 115, 3, 115, 2869, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 2877, 8, 117, 1, 118, 1, 118, 3, 118, 2881, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2888, 8, 119, 10, 119, 12, 119, 2891, 9, 119, 3, 119, 2893, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 3, 120, 2899, 8, 120, 1, 120, 1, 120, 3, 120, 2903, 8, 120, 3, 120, 2905, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2914, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2926, 8, 121, 3, 121, 2928, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2935, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2942, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2948, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2954, 8, 121, 3, 121, 2956, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2961, 8, 122, 10, 122, 12, 122, 2964, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2969, 8, 123, 10, 123, 12, 123, 2972, 9, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2977, 8, 124, 10, 124, 12, 124, 2980, 9, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2985, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 3, 127, 2997, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3003, 8, 128, 1, 128, 3, 128, 3006, 8, 128, 1, 128, 1, 128, 3, 128, 3010, 8, 128, 3, 128, 3012, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 3017, 8, 129, 10, 129, 12, 129, 3020, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3026, 8, 130, 10, 130, 12, 130, 3029, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 3, 131, 3035, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3043, 8, 132, 10, 132, 12, 132, 3046, 9, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 133, 1, 133, 3, 133, 3054, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3064, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3069, 8, 137, 10, 137, 12, 137, 3072, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3084, 8, 138, 3, 138, 3086, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3094, 8, 138, 10, 138, 12, 138, 3097, 9, 138, 1, 139, 3, 139, 3100, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3108, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3115, 8, 139, 10, 139, 12, 139, 3118, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3123, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3131, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3136, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3146, 8, 139, 10, 139, 12, 139, 3149, 9, 139, 1, 139, 1, 139, 3, 139, 3153, 8, 139, 1, 139, 3, 139, 3156, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3162, 8, 139, 1, 139, 1, 139, 3, 139, 3166, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3171, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3176, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3181, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3187, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3208, 8, 140, 10, 140, 12, 140, 3211, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3221, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3233, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3243, 8, 142, 11, 142, 12, 142, 3244, 1, 142, 1, 142, 3, 142, 3249, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3256, 8, 142, 11, 142, 12, 142, 3257, 1, 142, 1, 142, 3, 142, 3262, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3278, 8, 142, 10, 142, 12, 142, 3281, 9, 142, 3, 142, 3283, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3291, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3300, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3309, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3330, 8, 142, 11, 142, 12, 142, 3331, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3348, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3353, 8, 142, 10, 142, 12, 142, 3356, 9, 142, 3, 142, 3358, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3367, 8, 142, 1, 142, 1, 142, 3, 142, 3371, 8, 142, 1, 142, 1, 142, 3, 142, 3375, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3385, 8, 142, 11, 142, 12, 142, 3386, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3412, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3419, 8, 142, 1, 142, 3, 142, 3422, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3437, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3458, 8, 142, 1, 142, 1, 142, 3, 142, 3462, 8, 142, 3, 142, 3464, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3474, 8, 142, 10, 142, 12, 142, 3477, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3486, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 4, 144, 3499, 8, 144, 11, 144, 12, 144, 3500, 3, 144, 3503, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3516, 8, 149, 1, 150, 1, 150, 3, 150, 3520, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 3525, 8, 151, 11, 151, 12, 151, 3526, 1, 152, 1, 152, 1, 152, 3, 152, 3532, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 3540, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3545, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 3554, 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, 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, 3586, 8, 158, 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, 3603, 8, 159, 1, 159, 1, 159, 3, 159, 3607, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3613, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3619, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 3626, 8, 159, 10, 159, 12, 159, 3629, 9, 159, 1, 159, 3, 159, 3632, 8, 159, 3, 159, 3634, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3639, 8, 160, 10, 160, 12, 160, 3642, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3647, 8, 161, 10, 161, 12, 161, 3650, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3655, 8, 162, 10, 162, 12, 162, 3658, 9, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3663, 8, 163, 10, 163, 12, 163, 3666, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3673, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3684, 8, 167, 10, 167, 12, 167, 3687, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3693, 8, 168, 1, 168, 3, 168, 3696, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3701, 8, 169, 10, 169, 12, 169, 3704, 9, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3709, 8, 170, 10, 170, 12, 170, 3712, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 3719, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3731, 8, 173, 10, 173, 12, 173, 3734, 9, 173, 1, 174, 1, 174, 3, 174, 3738, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3743, 8, 174, 1, 174, 3, 174, 3746, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 3757, 8, 176, 10, 176, 12, 176, 3760, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3781, 8, 179, 10, 179, 12, 179, 3784, 9, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3791, 8, 179, 10, 179, 12, 179, 3794, 9, 179, 3, 179, 3796, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3803, 8, 179, 10, 179, 12, 179, 3806, 9, 179, 3, 179, 3808, 8, 179, 3, 179, 3810, 8, 179, 1, 179, 3, 179, 3813, 8, 179, 1, 179, 3, 179, 3816, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3834, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3843, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3848, 8, 182, 10, 182, 12, 182, 3851, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3862, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 3869, 8, 185, 10, 185, 12, 185, 3872, 9, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 4, 187, 3879, 8, 187, 11, 187, 12, 187, 3880, 1, 187, 3, 187, 3884, 8, 187, 1, 188, 1, 188, 3, 188, 3888, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3894, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 3, 192, 3901, 8, 192, 1, 192, 1, 192, 3, 192, 3905, 8, 192, 1, 192, 1, 192, 3, 192, 3909, 8, 192, 1, 192, 1, 192, 3, 192, 3913, 8, 192, 1, 192, 1, 192, 3, 192, 3917, 8, 192, 1, 192, 1, 192, 3, 192, 3921, 8, 192, 1, 192, 1, 192, 3, 192, 3925, 8, 192, 1, 192, 1, 192, 3, 192, 3929, 8, 192, 1, 192, 1, 192, 3, 192, 3933, 8, 192, 1, 192, 1, 192, 3, 192, 3937, 8, 192, 1, 192, 3, 192, 3940, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3953, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3959, 8, 195, 1, 196, 1, 196, 3, 196, 3963, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 9, 1137, 1207, 1215, 1232, 1259, 1268, 1277, 1286, 1334, 4, 104, 276, 280, 284, 200, 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, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 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, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 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, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4586, 0, 403, 1, 0, 0, 0, 2, 408, 1, 0, 0, 0, 4, 1337, 1, 0, 0, 0, 6, 1341, 1, 0, 0, 0, 8, 1343, 1, 0, 0, 0, 10, 1345, 1, 0, 0, 0, 12, 1515, 1, 0, 0, 0, 14, 1517, 1, 0, 0, 0, 16, 1532, 1, 0, 0, 0, 18, 1538, 1, 0, 0, 0, 20, 1550, 1, 0, 0, 0, 22, 1563, 1, 0, 0, 0, 24, 1566, 1, 0, 0, 0, 26, 1570, 1, 0, 0, 0, 28, 1651, 1, 0, 0, 0, 30, 1653, 1, 0, 0, 0, 32, 1657, 1, 0, 0, 0, 34, 1678, 1, 0, 0, 0, 36, 1680, 1, 0, 0, 0, 38, 1682, 1, 0, 0, 0, 40, 1689, 1, 0, 0, 0, 42, 1691, 1, 0, 0, 0, 44, 1699, 1, 0, 0, 0, 46, 1708, 1, 0, 0, 0, 48, 1719, 1, 0, 0, 0, 50, 1738, 1, 0, 0, 0, 52, 1741, 1, 0, 0, 0, 54, 1744, 1, 0, 0, 0, 56, 1755, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1777, 1, 0, 0, 0, 62, 1779, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1797, 1, 0, 0, 0, 68, 1808, 1, 0, 0, 0, 70, 1825, 1, 0, 0, 0, 72, 1833, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1841, 1, 0, 0, 0, 78, 1900, 1, 0, 0, 0, 80, 1902, 1, 0, 0, 0, 82, 1904, 1, 0, 0, 0, 84, 1906, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1910, 1, 0, 0, 0, 90, 1912, 1, 0, 0, 0, 92, 1916, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1934, 1, 0, 0, 0, 100, 1946, 1, 0, 0, 0, 102, 1998, 1, 0, 0, 0, 104, 2001, 1, 0, 0, 0, 106, 2036, 1, 0, 0, 0, 108, 2040, 1, 0, 0, 0, 110, 2049, 1, 0, 0, 0, 112, 2082, 1, 0, 0, 0, 114, 2128, 1, 0, 0, 0, 116, 2149, 1, 0, 0, 0, 118, 2181, 1, 0, 0, 0, 120, 2193, 1, 0, 0, 0, 122, 2196, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2238, 1, 0, 0, 0, 130, 2258, 1, 0, 0, 0, 132, 2264, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2274, 1, 0, 0, 0, 138, 2278, 1, 0, 0, 0, 140, 2281, 1, 0, 0, 0, 142, 2284, 1, 0, 0, 0, 144, 2310, 1, 0, 0, 0, 146, 2312, 1, 0, 0, 0, 148, 2333, 1, 0, 0, 0, 150, 2349, 1, 0, 0, 0, 152, 2390, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2422, 1, 0, 0, 0, 158, 2426, 1, 0, 0, 0, 160, 2448, 1, 0, 0, 0, 162, 2450, 1, 0, 0, 0, 164, 2480, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2489, 1, 0, 0, 0, 170, 2502, 1, 0, 0, 0, 172, 2507, 1, 0, 0, 0, 174, 2509, 1, 0, 0, 0, 176, 2524, 1, 0, 0, 0, 178, 2548, 1, 0, 0, 0, 180, 2561, 1, 0, 0, 0, 182, 2563, 1, 0, 0, 0, 184, 2565, 1, 0, 0, 0, 186, 2569, 1, 0, 0, 0, 188, 2572, 1, 0, 0, 0, 190, 2576, 1, 0, 0, 0, 192, 2580, 1, 0, 0, 0, 194, 2583, 1, 0, 0, 0, 196, 2615, 1, 0, 0, 0, 198, 2628, 1, 0, 0, 0, 200, 2633, 1, 0, 0, 0, 202, 2652, 1, 0, 0, 0, 204, 2678, 1, 0, 0, 0, 206, 2684, 1, 0, 0, 0, 208, 2686, 1, 0, 0, 0, 210, 2722, 1, 0, 0, 0, 212, 2724, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2736, 1, 0, 0, 0, 218, 2747, 1, 0, 0, 0, 220, 2751, 1, 0, 0, 0, 222, 2762, 1, 0, 0, 0, 224, 2797, 1, 0, 0, 0, 226, 2799, 1, 0, 0, 0, 228, 2829, 1, 0, 0, 0, 230, 2850, 1, 0, 0, 0, 232, 2870, 1, 0, 0, 0, 234, 2876, 1, 0, 0, 0, 236, 2880, 1, 0, 0, 0, 238, 2882, 1, 0, 0, 0, 240, 2904, 1, 0, 0, 0, 242, 2955, 1, 0, 0, 0, 244, 2957, 1, 0, 0, 0, 246, 2965, 1, 0, 0, 0, 248, 2973, 1, 0, 0, 0, 250, 2981, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2996, 1, 0, 0, 0, 256, 3002, 1, 0, 0, 0, 258, 3013, 1, 0, 0, 0, 260, 3021, 1, 0, 0, 0, 262, 3034, 1, 0, 0, 0, 264, 3049, 1, 0, 0, 0, 266, 3053, 1, 0, 0, 0, 268, 3055, 1, 0, 0, 0, 270, 3057, 1, 0, 0, 0, 272, 3063, 1, 0, 0, 0, 274, 3065, 1, 0, 0, 0, 276, 3085, 1, 0, 0, 0, 278, 3180, 1, 0, 0, 0, 280, 3186, 1, 0, 0, 0, 282, 3212, 1, 0, 0, 0, 284, 3463, 1, 0, 0, 0, 286, 3485, 1, 0, 0, 0, 288, 3502, 1, 0, 0, 0, 290, 3504, 1, 0, 0, 0, 292, 3506, 1, 0, 0, 0, 294, 3508, 1, 0, 0, 0, 296, 3510, 1, 0, 0, 0, 298, 3512, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3524, 1, 0, 0, 0, 304, 3528, 1, 0, 0, 0, 306, 3533, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3546, 1, 0, 0, 0, 312, 3548, 1, 0, 0, 0, 314, 3553, 1, 0, 0, 0, 316, 3585, 1, 0, 0, 0, 318, 3633, 1, 0, 0, 0, 320, 3635, 1, 0, 0, 0, 322, 3643, 1, 0, 0, 0, 324, 3651, 1, 0, 0, 0, 326, 3659, 1, 0, 0, 0, 328, 3672, 1, 0, 0, 0, 330, 3674, 1, 0, 0, 0, 332, 3677, 1, 0, 0, 0, 334, 3680, 1, 0, 0, 0, 336, 3688, 1, 0, 0, 0, 338, 3697, 1, 0, 0, 0, 340, 3705, 1, 0, 0, 0, 342, 3718, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3727, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3747, 1, 0, 0, 0, 352, 3752, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3765, 1, 0, 0, 0, 358, 3815, 1, 0, 0, 0, 360, 3833, 1, 0, 0, 0, 362, 3842, 1, 0, 0, 0, 364, 3844, 1, 0, 0, 0, 366, 3861, 1, 0, 0, 0, 368, 3863, 1, 0, 0, 0, 370, 3865, 1, 0, 0, 0, 372, 3873, 1, 0, 0, 0, 374, 3883, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3893, 1, 0, 0, 0, 380, 3895, 1, 0, 0, 0, 382, 3897, 1, 0, 0, 0, 384, 3939, 1, 0, 0, 0, 386, 3952, 1, 0, 0, 0, 388, 3954, 1, 0, 0, 0, 390, 3958, 1, 0, 0, 0, 392, 3962, 1, 0, 0, 0, 394, 3964, 1, 0, 0, 0, 396, 3966, 1, 0, 0, 0, 398, 3968, 1, 0, 0, 0, 400, 402, 3, 2, 1, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 5, 0, 0, 1, 407, 1, 1, 0, 0, 0, 408, 410, 3, 4, 2, 0, 409, 411, 5, 1, 0, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 3, 1, 0, 0, 0, 412, 1338, 3, 26, 13, 0, 413, 415, 3, 44, 22, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1338, 3, 78, 39, 0, 417, 419, 5, 330, 0, 0, 418, 420, 3, 36, 18, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1338, 3, 80, 40, 0, 422, 423, 5, 269, 0, 0, 423, 426, 5, 37, 0, 0, 424, 427, 3, 376, 188, 0, 425, 427, 3, 388, 194, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 1338, 1, 0, 0, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 36, 18, 0, 430, 432, 3, 190, 95, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 441, 3, 82, 41, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 22, 11, 0, 436, 437, 5, 346, 0, 0, 437, 438, 7, 0, 0, 0, 438, 440, 3, 54, 27, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 1338, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 444, 445, 5, 11, 0, 0, 445, 446, 3, 36, 18, 0, 446, 447, 3, 80, 40, 0, 447, 448, 5, 269, 0, 0, 448, 449, 7, 0, 0, 0, 449, 450, 3, 54, 27, 0, 450, 1338, 1, 0, 0, 0, 451, 452, 5, 11, 0, 0, 452, 453, 3, 36, 18, 0, 453, 454, 3, 80, 40, 0, 454, 455, 5, 269, 0, 0, 455, 456, 3, 22, 11, 0, 456, 1338, 1, 0, 0, 0, 457, 458, 5, 96, 0, 0, 458, 460, 3, 36, 18, 0, 459, 461, 3, 192, 96, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 3, 80, 40, 0, 463, 465, 7, 1, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 1338, 1, 0, 0, 0, 466, 467, 5, 273, 0, 0, 467, 470, 3, 38, 19, 0, 468, 469, 7, 2, 0, 0, 469, 471, 3, 246, 123, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 476, 1, 0, 0, 0, 472, 474, 5, 163, 0, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 3, 388, 194, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1338, 1, 0, 0, 0, 478, 483, 3, 14, 7, 0, 479, 480, 5, 2, 0, 0, 480, 481, 3, 338, 169, 0, 481, 482, 5, 3, 0, 0, 482, 484, 1, 0, 0, 0, 483, 479, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 487, 3, 48, 24, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 493, 3, 50, 25, 0, 489, 491, 5, 20, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 3, 26, 13, 0, 493, 490, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1338, 1, 0, 0, 0, 495, 496, 5, 59, 0, 0, 496, 498, 5, 293, 0, 0, 497, 499, 3, 190, 95, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 84, 42, 0, 501, 502, 5, 163, 0, 0, 502, 512, 3, 86, 43, 0, 503, 511, 3, 48, 24, 0, 504, 511, 3, 242, 121, 0, 505, 511, 3, 70, 35, 0, 506, 511, 3, 22, 11, 0, 507, 508, 5, 297, 0, 0, 508, 511, 3, 54, 27, 0, 509, 511, 3, 52, 26, 0, 510, 503, 1, 0, 0, 0, 510, 504, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 510, 506, 1, 0, 0, 0, 510, 507, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 1338, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 520, 3, 16, 8, 0, 516, 517, 5, 2, 0, 0, 517, 518, 3, 338, 169, 0, 518, 519, 5, 3, 0, 0, 519, 521, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 524, 3, 48, 24, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 530, 3, 50, 25, 0, 526, 528, 5, 20, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 3, 26, 13, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 1338, 1, 0, 0, 0, 532, 533, 5, 13, 0, 0, 533, 534, 5, 293, 0, 0, 534, 536, 3, 86, 43, 0, 535, 537, 3, 32, 16, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 5, 55, 0, 0, 539, 547, 5, 282, 0, 0, 540, 548, 5, 196, 0, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 50, 0, 0, 543, 548, 3, 94, 47, 0, 544, 545, 5, 119, 0, 0, 545, 546, 5, 10, 0, 0, 546, 548, 5, 50, 0, 0, 547, 540, 1, 0, 0, 0, 547, 541, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 1338, 1, 0, 0, 0, 549, 550, 5, 13, 0, 0, 550, 553, 5, 294, 0, 0, 551, 552, 7, 2, 0, 0, 552, 554, 3, 80, 40, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 55, 0, 0, 556, 558, 5, 282, 0, 0, 557, 559, 5, 196, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 1338, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 86, 43, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 49, 0, 0, 565, 566, 3, 322, 161, 0, 566, 1338, 1, 0, 0, 0, 567, 568, 5, 11, 0, 0, 568, 569, 5, 293, 0, 0, 569, 570, 3, 86, 43, 0, 570, 571, 5, 8, 0, 0, 571, 572, 5, 50, 0, 0, 572, 573, 5, 2, 0, 0, 573, 574, 3, 320, 160, 0, 574, 575, 5, 3, 0, 0, 575, 1338, 1, 0, 0, 0, 576, 577, 5, 11, 0, 0, 577, 578, 5, 293, 0, 0, 578, 579, 3, 86, 43, 0, 579, 580, 5, 241, 0, 0, 580, 581, 5, 49, 0, 0, 581, 582, 3, 92, 46, 0, 582, 583, 5, 309, 0, 0, 583, 584, 3, 96, 48, 0, 584, 1338, 1, 0, 0, 0, 585, 586, 5, 11, 0, 0, 586, 587, 5, 293, 0, 0, 587, 588, 3, 86, 43, 0, 588, 589, 5, 96, 0, 0, 589, 591, 5, 49, 0, 0, 590, 592, 3, 192, 96, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 3, 92, 46, 0, 594, 1338, 1, 0, 0, 0, 595, 596, 5, 11, 0, 0, 596, 597, 5, 293, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 96, 0, 0, 599, 601, 5, 50, 0, 0, 600, 602, 3, 192, 96, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 2, 0, 0, 604, 605, 3, 94, 47, 0, 605, 606, 5, 3, 0, 0, 606, 1338, 1, 0, 0, 0, 607, 612, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 613, 3, 86, 43, 0, 610, 611, 5, 338, 0, 0, 611, 613, 3, 90, 45, 0, 612, 608, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 241, 0, 0, 615, 616, 5, 309, 0, 0, 616, 617, 3, 246, 123, 0, 617, 1338, 1, 0, 0, 0, 618, 623, 5, 11, 0, 0, 619, 620, 5, 293, 0, 0, 620, 624, 3, 86, 43, 0, 621, 622, 5, 338, 0, 0, 622, 624, 3, 90, 45, 0, 623, 619, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 269, 0, 0, 626, 627, 5, 297, 0, 0, 627, 628, 3, 54, 27, 0, 628, 1338, 1, 0, 0, 0, 629, 634, 5, 11, 0, 0, 630, 631, 5, 293, 0, 0, 631, 635, 3, 86, 43, 0, 632, 633, 5, 338, 0, 0, 633, 635, 3, 90, 45, 0, 634, 630, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 5, 328, 0, 0, 637, 639, 5, 297, 0, 0, 638, 640, 3, 192, 96, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 54, 27, 0, 642, 1338, 1, 0, 0, 0, 643, 644, 5, 11, 0, 0, 644, 645, 5, 293, 0, 0, 645, 646, 3, 86, 43, 0, 646, 648, 7, 3, 0, 0, 647, 649, 5, 49, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 92, 46, 0, 651, 653, 3, 386, 193, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 1338, 1, 0, 0, 0, 654, 655, 5, 11, 0, 0, 655, 656, 5, 293, 0, 0, 656, 658, 3, 86, 43, 0, 657, 659, 3, 32, 16, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 39, 0, 0, 661, 663, 5, 49, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 92, 46, 0, 665, 667, 3, 336, 168, 0, 666, 668, 3, 314, 157, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 1338, 1, 0, 0, 0, 669, 670, 5, 11, 0, 0, 670, 671, 5, 293, 0, 0, 671, 673, 3, 86, 43, 0, 672, 674, 3, 32, 16, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 244, 0, 0, 676, 677, 5, 50, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 3, 324, 162, 0, 679, 680, 5, 3, 0, 0, 680, 1338, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 269, 0, 0, 688, 689, 5, 266, 0, 0, 689, 693, 3, 388, 194, 0, 690, 691, 5, 346, 0, 0, 691, 692, 5, 267, 0, 0, 692, 694, 3, 54, 27, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 1338, 1, 0, 0, 0, 695, 696, 5, 11, 0, 0, 696, 697, 5, 293, 0, 0, 697, 699, 3, 86, 43, 0, 698, 700, 3, 32, 16, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 269, 0, 0, 702, 703, 5, 267, 0, 0, 703, 704, 3, 54, 27, 0, 704, 1338, 1, 0, 0, 0, 705, 710, 5, 11, 0, 0, 706, 707, 5, 293, 0, 0, 707, 711, 3, 86, 43, 0, 708, 709, 5, 338, 0, 0, 709, 711, 3, 90, 45, 0, 710, 706, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 5, 8, 0, 0, 713, 715, 3, 190, 95, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 30, 15, 0, 717, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 1338, 1, 0, 0, 0, 721, 722, 5, 11, 0, 0, 722, 723, 5, 293, 0, 0, 723, 724, 3, 86, 43, 0, 724, 725, 3, 32, 16, 0, 725, 726, 5, 241, 0, 0, 726, 727, 5, 309, 0, 0, 727, 728, 3, 32, 16, 0, 728, 1338, 1, 0, 0, 0, 729, 734, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 735, 3, 86, 43, 0, 732, 733, 5, 338, 0, 0, 733, 735, 3, 90, 45, 0, 734, 730, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 5, 96, 0, 0, 737, 739, 3, 192, 96, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 745, 3, 32, 16, 0, 741, 742, 5, 4, 0, 0, 742, 744, 3, 32, 16, 0, 743, 741, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 5, 230, 0, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1338, 1, 0, 0, 0, 751, 752, 5, 11, 0, 0, 752, 753, 5, 293, 0, 0, 753, 755, 3, 86, 43, 0, 754, 756, 3, 32, 16, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 22, 11, 0, 759, 1338, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 293, 0, 0, 762, 763, 3, 86, 43, 0, 763, 764, 5, 237, 0, 0, 764, 765, 5, 219, 0, 0, 765, 1338, 1, 0, 0, 0, 766, 767, 5, 11, 0, 0, 767, 768, 5, 176, 0, 0, 768, 769, 5, 338, 0, 0, 769, 770, 3, 90, 45, 0, 770, 771, 7, 4, 0, 0, 771, 772, 5, 248, 0, 0, 772, 1338, 1, 0, 0, 0, 773, 774, 5, 11, 0, 0, 774, 775, 5, 176, 0, 0, 775, 776, 5, 338, 0, 0, 776, 777, 3, 90, 45, 0, 777, 778, 5, 269, 0, 0, 778, 779, 5, 297, 0, 0, 779, 780, 3, 54, 27, 0, 780, 1338, 1, 0, 0, 0, 781, 782, 5, 96, 0, 0, 782, 784, 5, 293, 0, 0, 783, 785, 3, 192, 96, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 3, 86, 43, 0, 787, 789, 5, 230, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1338, 1, 0, 0, 0, 790, 791, 5, 96, 0, 0, 791, 793, 5, 338, 0, 0, 792, 794, 3, 192, 96, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 1338, 3, 90, 45, 0, 796, 797, 5, 96, 0, 0, 797, 798, 5, 176, 0, 0, 798, 800, 5, 338, 0, 0, 799, 801, 3, 192, 96, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 1338, 3, 90, 45, 0, 803, 806, 5, 59, 0, 0, 804, 805, 5, 208, 0, 0, 805, 807, 5, 244, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 812, 1, 0, 0, 0, 808, 810, 5, 128, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 298, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 5, 338, 0, 0, 815, 817, 3, 190, 95, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 3, 88, 44, 0, 819, 821, 3, 220, 110, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 1, 0, 0, 0, 822, 829, 3, 24, 12, 0, 823, 824, 5, 218, 0, 0, 824, 825, 5, 203, 0, 0, 825, 829, 3, 212, 106, 0, 826, 827, 5, 297, 0, 0, 827, 829, 3, 54, 27, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 20, 0, 0, 834, 835, 3, 26, 13, 0, 835, 1338, 1, 0, 0, 0, 836, 839, 5, 59, 0, 0, 837, 838, 5, 208, 0, 0, 838, 840, 5, 244, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 128, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 5, 298, 0, 0, 845, 846, 5, 338, 0, 0, 846, 851, 3, 88, 44, 0, 847, 848, 5, 2, 0, 0, 848, 849, 3, 334, 167, 0, 849, 850, 5, 3, 0, 0, 850, 852, 1, 0, 0, 0, 851, 847, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 856, 3, 48, 24, 0, 854, 855, 5, 207, 0, 0, 855, 857, 3, 54, 27, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 1338, 1, 0, 0, 0, 858, 859, 5, 11, 0, 0, 859, 860, 5, 338, 0, 0, 860, 862, 3, 90, 45, 0, 861, 863, 5, 20, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 26, 13, 0, 865, 1338, 1, 0, 0, 0, 866, 869, 5, 59, 0, 0, 867, 868, 5, 208, 0, 0, 868, 870, 5, 244, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 873, 5, 298, 0, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 125, 0, 0, 875, 877, 3, 190, 95, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 368, 184, 0, 879, 880, 5, 20, 0, 0, 880, 890, 3, 388, 194, 0, 881, 882, 5, 332, 0, 0, 882, 887, 3, 76, 38, 0, 883, 884, 5, 4, 0, 0, 884, 886, 3, 76, 38, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 881, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 1338, 1, 0, 0, 0, 892, 893, 5, 59, 0, 0, 893, 894, 5, 176, 0, 0, 894, 896, 5, 338, 0, 0, 895, 897, 3, 190, 95, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 3, 88, 44, 0, 899, 901, 3, 48, 24, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 917, 1, 0, 0, 0, 902, 903, 5, 207, 0, 0, 903, 916, 3, 54, 27, 0, 904, 905, 5, 218, 0, 0, 905, 906, 5, 31, 0, 0, 906, 916, 3, 260, 130, 0, 907, 916, 3, 20, 10, 0, 908, 916, 3, 18, 9, 0, 909, 916, 3, 242, 121, 0, 910, 916, 3, 70, 35, 0, 911, 916, 3, 22, 11, 0, 912, 916, 3, 24, 12, 0, 913, 914, 5, 297, 0, 0, 914, 916, 3, 54, 27, 0, 915, 902, 1, 0, 0, 0, 915, 904, 1, 0, 0, 0, 915, 907, 1, 0, 0, 0, 915, 908, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 910, 1, 0, 0, 0, 915, 911, 1, 0, 0, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 920, 921, 5, 20, 0, 0, 921, 922, 3, 26, 13, 0, 922, 1338, 1, 0, 0, 0, 923, 925, 5, 96, 0, 0, 924, 926, 5, 298, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 5, 125, 0, 0, 928, 930, 3, 192, 96, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 1338, 3, 366, 183, 0, 932, 935, 5, 81, 0, 0, 933, 934, 5, 208, 0, 0, 934, 936, 5, 244, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 5, 336, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 3, 366, 183, 0, 941, 943, 3, 318, 159, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 946, 3, 332, 166, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 1338, 1, 0, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 298, 0, 0, 949, 951, 5, 336, 0, 0, 950, 952, 3, 192, 96, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 956, 1, 0, 0, 0, 953, 957, 3, 86, 43, 0, 954, 957, 3, 90, 45, 0, 955, 957, 3, 366, 183, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 1338, 1, 0, 0, 0, 958, 960, 5, 106, 0, 0, 959, 961, 7, 5, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 1338, 3, 4, 2, 0, 963, 964, 5, 273, 0, 0, 964, 967, 5, 294, 0, 0, 965, 966, 7, 2, 0, 0, 966, 968, 3, 80, 40, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 973, 1, 0, 0, 0, 969, 971, 5, 163, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 388, 194, 0, 973, 970, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1338, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 293, 0, 0, 977, 980, 5, 108, 0, 0, 978, 979, 7, 2, 0, 0, 979, 981, 3, 80, 40, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 5, 163, 0, 0, 983, 985, 3, 388, 194, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1338, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 297, 0, 0, 989, 994, 3, 86, 43, 0, 990, 991, 5, 2, 0, 0, 991, 992, 3, 58, 29, 0, 992, 993, 5, 3, 0, 0, 993, 995, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1338, 1, 0, 0, 0, 996, 997, 5, 273, 0, 0, 997, 998, 5, 50, 0, 0, 998, 999, 7, 2, 0, 0, 999, 1002, 3, 86, 43, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 80, 40, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1338, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1008, 5, 339, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 80, 40, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1014, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 3, 388, 194, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1338, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1018, 5, 219, 0, 0, 1018, 1020, 3, 86, 43, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1338, 1, 0, 0, 0, 1022, 1024, 5, 273, 0, 0, 1023, 1025, 3, 148, 74, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1029, 5, 126, 0, 0, 1027, 1028, 7, 2, 0, 0, 1028, 1030, 3, 80, 40, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1038, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1036, 1, 0, 0, 0, 1034, 1037, 3, 246, 123, 0, 1035, 1037, 3, 388, 194, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1032, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1338, 1, 0, 0, 0, 1040, 1041, 5, 273, 0, 0, 1041, 1042, 5, 59, 0, 0, 1042, 1043, 5, 293, 0, 0, 1043, 1046, 3, 86, 43, 0, 1044, 1045, 5, 20, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1338, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 62, 0, 0, 1050, 1338, 3, 36, 18, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1057, 5, 38, 0, 0, 1053, 1055, 5, 163, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 3, 388, 194, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1338, 1, 0, 0, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1061, 5, 176, 0, 0, 1061, 1064, 5, 339, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1065, 3, 80, 40, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1070, 1, 0, 0, 0, 1066, 1068, 5, 163, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 388, 194, 0, 1070, 1067, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1338, 1, 0, 0, 0, 1072, 1073, 5, 273, 0, 0, 1073, 1074, 5, 59, 0, 0, 1074, 1075, 5, 176, 0, 0, 1075, 1076, 5, 338, 0, 0, 1076, 1079, 3, 90, 45, 0, 1077, 1078, 5, 20, 0, 0, 1078, 1080, 5, 266, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1338, 1, 0, 0, 0, 1081, 1082, 7, 6, 0, 0, 1082, 1084, 5, 125, 0, 0, 1083, 1085, 5, 108, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1338, 3, 40, 20, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1090, 5, 72, 0, 0, 1089, 1091, 5, 108, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1338, 3, 80, 40, 0, 1093, 1095, 7, 6, 0, 0, 1094, 1096, 5, 293, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1099, 7, 7, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 3, 86, 43, 0, 1101, 1103, 3, 32, 16, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 1106, 3, 42, 21, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1338, 1, 0, 0, 0, 1107, 1109, 7, 6, 0, 0, 1108, 1110, 5, 232, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1338, 3, 26, 13, 0, 1112, 1113, 5, 51, 0, 0, 1113, 1114, 5, 203, 0, 0, 1114, 1115, 3, 36, 18, 0, 1115, 1116, 3, 80, 40, 0, 1116, 1117, 5, 153, 0, 0, 1117, 1118, 3, 390, 195, 0, 1118, 1338, 1, 0, 0, 0, 1119, 1120, 5, 51, 0, 0, 1120, 1121, 5, 203, 0, 0, 1121, 1122, 5, 293, 0, 0, 1122, 1123, 3, 86, 43, 0, 1123, 1124, 5, 153, 0, 0, 1124, 1125, 3, 390, 195, 0, 1125, 1338, 1, 0, 0, 0, 1126, 1127, 5, 240, 0, 0, 1127, 1128, 5, 293, 0, 0, 1128, 1338, 3, 86, 43, 0, 1129, 1130, 5, 240, 0, 0, 1130, 1131, 5, 125, 0, 0, 1131, 1338, 3, 366, 183, 0, 1132, 1140, 5, 240, 0, 0, 1133, 1141, 3, 388, 194, 0, 1134, 1136, 9, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1133, 1, 0, 0, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1338, 1, 0, 0, 0, 1142, 1143, 5, 240, 0, 0, 1143, 1144, 5, 176, 0, 0, 1144, 1145, 5, 338, 0, 0, 1145, 1338, 3, 90, 45, 0, 1146, 1148, 5, 33, 0, 0, 1147, 1149, 5, 159, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 293, 0, 0, 1151, 1154, 3, 86, 43, 0, 1152, 1153, 5, 207, 0, 0, 1153, 1155, 3, 54, 27, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1158, 5, 20, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 3, 26, 13, 0, 1160, 1157, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1338, 1, 0, 0, 0, 1162, 1163, 5, 322, 0, 0, 1163, 1165, 5, 293, 0, 0, 1164, 1166, 3, 192, 96, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1338, 3, 86, 43, 0, 1168, 1169, 5, 43, 0, 0, 1169, 1338, 5, 33, 0, 0, 1170, 1171, 5, 168, 0, 0, 1171, 1173, 5, 70, 0, 0, 1172, 1174, 5, 169, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 145, 0, 0, 1176, 1178, 3, 388, 194, 0, 1177, 1179, 5, 216, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 152, 0, 0, 1181, 1182, 5, 293, 0, 0, 1182, 1184, 3, 86, 43, 0, 1183, 1185, 3, 32, 16, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1338, 1, 0, 0, 0, 1186, 1187, 5, 317, 0, 0, 1187, 1188, 5, 293, 0, 0, 1188, 1190, 3, 86, 43, 0, 1189, 1191, 3, 32, 16, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1338, 1, 0, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 242, 0, 0, 1196, 1197, 5, 293, 0, 0, 1197, 1200, 3, 86, 43, 0, 1198, 1199, 7, 8, 0, 0, 1199, 1201, 5, 219, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1338, 1, 0, 0, 0, 1202, 1203, 7, 9, 0, 0, 1203, 1207, 3, 376, 188, 0, 1204, 1206, 9, 0, 0, 0, 1205, 1204, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1338, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 269, 0, 0, 1211, 1215, 5, 253, 0, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1338, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1220, 5, 301, 0, 0, 1220, 1221, 5, 350, 0, 0, 1221, 1338, 3, 298, 149, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1224, 5, 301, 0, 0, 1224, 1225, 5, 350, 0, 0, 1225, 1338, 3, 6, 3, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1232, 5, 350, 0, 0, 1229, 1231, 9, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1338, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1338, 3, 134, 67, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 7, 10, 0, 0, 1240, 1241, 5, 2, 0, 0, 1241, 1242, 3, 244, 122, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1244, 5, 352, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 26, 13, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1338, 1, 0, 0, 0, 1248, 1249, 5, 269, 0, 0, 1249, 1250, 3, 8, 4, 0, 1250, 1251, 5, 352, 0, 0, 1251, 1252, 3, 10, 5, 0, 1252, 1338, 1, 0, 0, 0, 1253, 1254, 5, 269, 0, 0, 1254, 1262, 3, 8, 4, 0, 1255, 1259, 5, 352, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1255, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1338, 1, 0, 0, 0, 1264, 1268, 5, 269, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 352, 0, 0, 1272, 1338, 3, 10, 5, 0, 1273, 1277, 5, 269, 0, 0, 1274, 1276, 9, 0, 0, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1338, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1281, 5, 245, 0, 0, 1281, 1338, 3, 8, 4, 0, 1282, 1286, 5, 245, 0, 0, 1283, 1285, 9, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1338, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1290, 5, 59, 0, 0, 1290, 1292, 5, 142, 0, 0, 1291, 1293, 3, 190, 95, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 3, 376, 188, 0, 1295, 1297, 5, 203, 0, 0, 1296, 1298, 5, 293, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1302, 3, 86, 43, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1303, 3, 376, 188, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 2, 0, 0, 1305, 1306, 3, 248, 124, 0, 1306, 1309, 5, 3, 0, 0, 1307, 1308, 5, 207, 0, 0, 1308, 1310, 3, 54, 27, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 96, 0, 0, 1312, 1314, 5, 142, 0, 0, 1313, 1315, 3, 192, 96, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 3, 376, 188, 0, 1317, 1319, 5, 203, 0, 0, 1318, 1320, 5, 293, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 86, 43, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 205, 0, 0, 1324, 1326, 3, 86, 43, 0, 1325, 1327, 3, 138, 69, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 354, 177, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1334, 3, 12, 6, 0, 1331, 1333, 9, 0, 0, 0, 1332, 1331, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 412, 1, 0, 0, 0, 1337, 414, 1, 0, 0, 0, 1337, 417, 1, 0, 0, 0, 1337, 422, 1, 0, 0, 0, 1337, 428, 1, 0, 0, 0, 1337, 444, 1, 0, 0, 0, 1337, 451, 1, 0, 0, 0, 1337, 457, 1, 0, 0, 0, 1337, 466, 1, 0, 0, 0, 1337, 478, 1, 0, 0, 0, 1337, 495, 1, 0, 0, 0, 1337, 515, 1, 0, 0, 0, 1337, 532, 1, 0, 0, 0, 1337, 549, 1, 0, 0, 0, 1337, 560, 1, 0, 0, 0, 1337, 567, 1, 0, 0, 0, 1337, 576, 1, 0, 0, 0, 1337, 585, 1, 0, 0, 0, 1337, 595, 1, 0, 0, 0, 1337, 607, 1, 0, 0, 0, 1337, 618, 1, 0, 0, 0, 1337, 629, 1, 0, 0, 0, 1337, 643, 1, 0, 0, 0, 1337, 654, 1, 0, 0, 0, 1337, 669, 1, 0, 0, 0, 1337, 681, 1, 0, 0, 0, 1337, 695, 1, 0, 0, 0, 1337, 705, 1, 0, 0, 0, 1337, 721, 1, 0, 0, 0, 1337, 729, 1, 0, 0, 0, 1337, 751, 1, 0, 0, 0, 1337, 760, 1, 0, 0, 0, 1337, 766, 1, 0, 0, 0, 1337, 773, 1, 0, 0, 0, 1337, 781, 1, 0, 0, 0, 1337, 790, 1, 0, 0, 0, 1337, 796, 1, 0, 0, 0, 1337, 803, 1, 0, 0, 0, 1337, 836, 1, 0, 0, 0, 1337, 858, 1, 0, 0, 0, 1337, 866, 1, 0, 0, 0, 1337, 892, 1, 0, 0, 0, 1337, 923, 1, 0, 0, 0, 1337, 932, 1, 0, 0, 0, 1337, 947, 1, 0, 0, 0, 1337, 958, 1, 0, 0, 0, 1337, 963, 1, 0, 0, 0, 1337, 975, 1, 0, 0, 0, 1337, 987, 1, 0, 0, 0, 1337, 996, 1, 0, 0, 0, 1337, 1004, 1, 0, 0, 0, 1337, 1016, 1, 0, 0, 0, 1337, 1022, 1, 0, 0, 0, 1337, 1040, 1, 0, 0, 0, 1337, 1048, 1, 0, 0, 0, 1337, 1051, 1, 0, 0, 0, 1337, 1059, 1, 0, 0, 0, 1337, 1072, 1, 0, 0, 0, 1337, 1081, 1, 0, 0, 0, 1337, 1087, 1, 0, 0, 0, 1337, 1093, 1, 0, 0, 0, 1337, 1107, 1, 0, 0, 0, 1337, 1112, 1, 0, 0, 0, 1337, 1119, 1, 0, 0, 0, 1337, 1126, 1, 0, 0, 0, 1337, 1129, 1, 0, 0, 0, 1337, 1132, 1, 0, 0, 0, 1337, 1142, 1, 0, 0, 0, 1337, 1146, 1, 0, 0, 0, 1337, 1162, 1, 0, 0, 0, 1337, 1168, 1, 0, 0, 0, 1337, 1170, 1, 0, 0, 0, 1337, 1186, 1, 0, 0, 0, 1337, 1193, 1, 0, 0, 0, 1337, 1202, 1, 0, 0, 0, 1337, 1210, 1, 0, 0, 0, 1337, 1218, 1, 0, 0, 0, 1337, 1222, 1, 0, 0, 0, 1337, 1226, 1, 0, 0, 0, 1337, 1235, 1, 0, 0, 0, 1337, 1238, 1, 0, 0, 0, 1337, 1248, 1, 0, 0, 0, 1337, 1253, 1, 0, 0, 0, 1337, 1264, 1, 0, 0, 0, 1337, 1273, 1, 0, 0, 0, 1337, 1280, 1, 0, 0, 0, 1337, 1282, 1, 0, 0, 0, 1337, 1289, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 5, 1, 0, 0, 0, 1339, 1342, 3, 388, 194, 0, 1340, 1342, 5, 169, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 7, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 9, 1, 0, 0, 0, 1345, 1346, 3, 382, 191, 0, 1346, 11, 1, 0, 0, 0, 1347, 1348, 5, 59, 0, 0, 1348, 1516, 5, 253, 0, 0, 1349, 1350, 5, 96, 0, 0, 1350, 1516, 5, 253, 0, 0, 1351, 1353, 5, 129, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1516, 1, 0, 0, 0, 1355, 1357, 5, 249, 0, 0, 1356, 1358, 5, 253, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1516, 1, 0, 0, 0, 1359, 1360, 5, 273, 0, 0, 1360, 1516, 5, 129, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1364, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1516, 1, 0, 0, 0, 1366, 1367, 5, 273, 0, 0, 1367, 1516, 5, 228, 0, 0, 1368, 1369, 5, 273, 0, 0, 1369, 1516, 5, 254, 0, 0, 1370, 1371, 5, 273, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1516, 5, 254, 0, 0, 1373, 1374, 5, 107, 0, 0, 1374, 1516, 5, 293, 0, 0, 1375, 1376, 5, 139, 0, 0, 1376, 1516, 5, 293, 0, 0, 1377, 1378, 5, 273, 0, 0, 1378, 1516, 5, 54, 0, 0, 1379, 1380, 5, 273, 0, 0, 1380, 1381, 5, 59, 0, 0, 1381, 1516, 5, 293, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1516, 5, 313, 0, 0, 1384, 1385, 5, 273, 0, 0, 1385, 1516, 5, 143, 0, 0, 1386, 1387, 5, 273, 0, 0, 1387, 1516, 5, 172, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1516, 5, 142, 0, 0, 1390, 1391, 5, 96, 0, 0, 1391, 1516, 5, 142, 0, 0, 1392, 1393, 5, 11, 0, 0, 1393, 1516, 5, 142, 0, 0, 1394, 1395, 5, 171, 0, 0, 1395, 1516, 5, 293, 0, 0, 1396, 1397, 5, 171, 0, 0, 1397, 1516, 5, 72, 0, 0, 1398, 1399, 5, 326, 0, 0, 1399, 1516, 5, 293, 0, 0, 1400, 1401, 5, 326, 0, 0, 1401, 1516, 5, 72, 0, 0, 1402, 1403, 5, 59, 0, 0, 1403, 1404, 5, 298, 0, 0, 1404, 1516, 5, 175, 0, 0, 1405, 1406, 5, 96, 0, 0, 1406, 1407, 5, 298, 0, 0, 1407, 1516, 5, 175, 0, 0, 1408, 1409, 5, 11, 0, 0, 1409, 1410, 5, 293, 0, 0, 1410, 1411, 3, 86, 43, 0, 1411, 1412, 5, 197, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1516, 1, 0, 0, 0, 1414, 1415, 5, 11, 0, 0, 1415, 1416, 5, 293, 0, 0, 1416, 1417, 3, 86, 43, 0, 1417, 1418, 5, 45, 0, 0, 1418, 1419, 5, 31, 0, 0, 1419, 1516, 1, 0, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 279, 0, 0, 1425, 1516, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 275, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1516, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 275, 0, 0, 1437, 1516, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 197, 0, 0, 1442, 1443, 5, 283, 0, 0, 1443, 1444, 5, 20, 0, 0, 1444, 1445, 5, 89, 0, 0, 1445, 1516, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 269, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 170, 0, 0, 1452, 1516, 1, 0, 0, 0, 1453, 1454, 5, 11, 0, 0, 1454, 1455, 5, 293, 0, 0, 1455, 1456, 3, 86, 43, 0, 1456, 1457, 5, 103, 0, 0, 1457, 1458, 5, 217, 0, 0, 1458, 1516, 1, 0, 0, 0, 1459, 1460, 5, 11, 0, 0, 1460, 1461, 5, 293, 0, 0, 1461, 1462, 3, 86, 43, 0, 1462, 1463, 5, 18, 0, 0, 1463, 1464, 5, 217, 0, 0, 1464, 1516, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 320, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1516, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 310, 0, 0, 1475, 1516, 1, 0, 0, 0, 1476, 1477, 5, 11, 0, 0, 1477, 1478, 5, 293, 0, 0, 1478, 1480, 3, 86, 43, 0, 1479, 1481, 3, 32, 16, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 53, 0, 0, 1483, 1516, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 56, 0, 0, 1491, 1516, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 269, 0, 0, 1499, 1500, 5, 115, 0, 0, 1500, 1516, 1, 0, 0, 0, 1501, 1502, 5, 11, 0, 0, 1502, 1503, 5, 293, 0, 0, 1503, 1505, 3, 86, 43, 0, 1504, 1506, 3, 32, 16, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 244, 0, 0, 1508, 1509, 5, 50, 0, 0, 1509, 1516, 1, 0, 0, 0, 1510, 1511, 5, 281, 0, 0, 1511, 1516, 5, 312, 0, 0, 1512, 1516, 5, 52, 0, 0, 1513, 1516, 5, 255, 0, 0, 1514, 1516, 5, 88, 0, 0, 1515, 1347, 1, 0, 0, 0, 1515, 1349, 1, 0, 0, 0, 1515, 1351, 1, 0, 0, 0, 1515, 1355, 1, 0, 0, 0, 1515, 1359, 1, 0, 0, 0, 1515, 1361, 1, 0, 0, 0, 1515, 1366, 1, 0, 0, 0, 1515, 1368, 1, 0, 0, 0, 1515, 1370, 1, 0, 0, 0, 1515, 1373, 1, 0, 0, 0, 1515, 1375, 1, 0, 0, 0, 1515, 1377, 1, 0, 0, 0, 1515, 1379, 1, 0, 0, 0, 1515, 1382, 1, 0, 0, 0, 1515, 1384, 1, 0, 0, 0, 1515, 1386, 1, 0, 0, 0, 1515, 1388, 1, 0, 0, 0, 1515, 1390, 1, 0, 0, 0, 1515, 1392, 1, 0, 0, 0, 1515, 1394, 1, 0, 0, 0, 1515, 1396, 1, 0, 0, 0, 1515, 1398, 1, 0, 0, 0, 1515, 1400, 1, 0, 0, 0, 1515, 1402, 1, 0, 0, 0, 1515, 1405, 1, 0, 0, 0, 1515, 1408, 1, 0, 0, 0, 1515, 1414, 1, 0, 0, 0, 1515, 1420, 1, 0, 0, 0, 1515, 1426, 1, 0, 0, 0, 1515, 1432, 1, 0, 0, 0, 1515, 1438, 1, 0, 0, 0, 1515, 1446, 1, 0, 0, 0, 1515, 1453, 1, 0, 0, 0, 1515, 1459, 1, 0, 0, 0, 1515, 1465, 1, 0, 0, 0, 1515, 1471, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1484, 1, 0, 0, 0, 1515, 1492, 1, 0, 0, 0, 1515, 1501, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 13, 1, 0, 0, 0, 1517, 1519, 5, 59, 0, 0, 1518, 1520, 5, 298, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 5, 109, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 293, 0, 0, 1525, 1527, 3, 190, 95, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 3, 84, 42, 0, 1529, 15, 1, 0, 0, 0, 1530, 1531, 5, 59, 0, 0, 1531, 1533, 5, 208, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 244, 0, 0, 1535, 1536, 5, 293, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 17, 1, 0, 0, 0, 1538, 1539, 5, 45, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1544, 3, 212, 106, 0, 1541, 1542, 5, 279, 0, 0, 1542, 1543, 5, 31, 0, 0, 1543, 1545, 3, 216, 108, 0, 1544, 1541, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 152, 0, 0, 1547, 1548, 5, 382, 0, 0, 1548, 1549, 5, 30, 0, 0, 1549, 19, 1, 0, 0, 0, 1550, 1551, 5, 275, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1553, 3, 212, 106, 0, 1553, 1556, 5, 203, 0, 0, 1554, 1557, 3, 66, 33, 0, 1555, 1557, 3, 68, 34, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1555, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 283, 0, 0, 1559, 1560, 5, 20, 0, 0, 1560, 1562, 5, 89, 0, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 21, 1, 0, 0, 0, 1563, 1564, 5, 170, 0, 0, 1564, 1565, 3, 388, 194, 0, 1565, 23, 1, 0, 0, 0, 1566, 1567, 5, 51, 0, 0, 1567, 1568, 3, 388, 194, 0, 1568, 25, 1, 0, 0, 0, 1569, 1571, 3, 44, 22, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 104, 52, 0, 1573, 1574, 3, 100, 50, 0, 1574, 27, 1, 0, 0, 0, 1575, 1576, 5, 147, 0, 0, 1576, 1578, 5, 216, 0, 0, 1577, 1579, 5, 293, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1585, 3, 86, 43, 0, 1581, 1583, 3, 32, 16, 0, 1582, 1584, 3, 190, 95, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1581, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1593, 1, 0, 0, 0, 1587, 1588, 5, 31, 0, 0, 1588, 1594, 5, 189, 0, 0, 1589, 1590, 5, 2, 0, 0, 1590, 1591, 3, 94, 47, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1652, 1, 0, 0, 0, 1595, 1596, 5, 147, 0, 0, 1596, 1598, 5, 152, 0, 0, 1597, 1599, 5, 293, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1603, 3, 32, 16, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 1, 0, 0, 0, 1604, 1606, 3, 190, 95, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1613, 1, 0, 0, 0, 1607, 1608, 5, 31, 0, 0, 1608, 1614, 5, 189, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 3, 94, 47, 0, 1611, 1612, 5, 3, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1607, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1652, 1, 0, 0, 0, 1615, 1616, 5, 147, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 293, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 86, 43, 0, 1621, 1622, 5, 244, 0, 0, 1622, 1623, 3, 138, 69, 0, 1623, 1652, 1, 0, 0, 0, 1624, 1625, 5, 147, 0, 0, 1625, 1627, 5, 216, 0, 0, 1626, 1628, 5, 169, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 90, 0, 0, 1630, 1632, 3, 388, 194, 0, 1631, 1633, 3, 242, 121, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 70, 35, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1652, 1, 0, 0, 0, 1637, 1638, 5, 147, 0, 0, 1638, 1640, 5, 216, 0, 0, 1639, 1641, 5, 169, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 90, 0, 0, 1643, 1645, 3, 388, 194, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 3, 48, 24, 0, 1647, 1648, 5, 207, 0, 0, 1648, 1650, 3, 54, 27, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1575, 1, 0, 0, 0, 1651, 1595, 1, 0, 0, 0, 1651, 1615, 1, 0, 0, 0, 1651, 1624, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1652, 29, 1, 0, 0, 0, 1653, 1655, 3, 32, 16, 0, 1654, 1656, 3, 22, 11, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 31, 1, 0, 0, 0, 1657, 1658, 5, 217, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 34, 17, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 34, 17, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 33, 1, 0, 0, 0, 1669, 1672, 3, 376, 188, 0, 1670, 1671, 5, 352, 0, 0, 1671, 1673, 3, 288, 144, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1679, 1, 0, 0, 0, 1674, 1675, 3, 376, 188, 0, 1675, 1676, 5, 352, 0, 0, 1676, 1677, 5, 82, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1669, 1, 0, 0, 0, 1678, 1674, 1, 0, 0, 0, 1679, 35, 1, 0, 0, 0, 1680, 1681, 7, 11, 0, 0, 1681, 37, 1, 0, 0, 0, 1682, 1683, 7, 12, 0, 0, 1683, 39, 1, 0, 0, 0, 1684, 1690, 3, 98, 49, 0, 1685, 1690, 3, 388, 194, 0, 1686, 1690, 3, 290, 145, 0, 1687, 1690, 3, 292, 146, 0, 1688, 1690, 3, 294, 147, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1688, 1, 0, 0, 0, 1690, 41, 1, 0, 0, 0, 1691, 1696, 3, 376, 188, 0, 1692, 1693, 5, 5, 0, 0, 1693, 1695, 3, 376, 188, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 43, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1700, 5, 346, 0, 0, 1700, 1705, 3, 46, 23, 0, 1701, 1702, 5, 4, 0, 0, 1702, 1704, 3, 46, 23, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 45, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1710, 3, 372, 186, 0, 1709, 1711, 3, 212, 106, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 5, 20, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 2, 0, 0, 1716, 1717, 3, 26, 13, 0, 1717, 1718, 5, 3, 0, 0, 1718, 47, 1, 0, 0, 0, 1719, 1720, 5, 332, 0, 0, 1720, 1721, 3, 246, 123, 0, 1721, 49, 1, 0, 0, 0, 1722, 1723, 5, 207, 0, 0, 1723, 1737, 3, 62, 31, 0, 1724, 1725, 5, 218, 0, 0, 1725, 1726, 5, 31, 0, 0, 1726, 1737, 3, 260, 130, 0, 1727, 1737, 3, 20, 10, 0, 1728, 1737, 3, 18, 9, 0, 1729, 1737, 3, 242, 121, 0, 1730, 1737, 3, 70, 35, 0, 1731, 1737, 3, 22, 11, 0, 1732, 1737, 3, 24, 12, 0, 1733, 1734, 5, 297, 0, 0, 1734, 1737, 3, 54, 27, 0, 1735, 1737, 3, 52, 26, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1729, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 51, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 162, 0, 0, 1742, 1743, 5, 382, 0, 0, 1743, 53, 1, 0, 0, 0, 1744, 1745, 5, 2, 0, 0, 1745, 1750, 3, 56, 28, 0, 1746, 1747, 5, 4, 0, 0, 1747, 1749, 3, 56, 28, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 3, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 58, 29, 0, 1756, 1758, 5, 352, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 3, 60, 30, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 57, 1, 0, 0, 0, 1762, 1767, 3, 376, 188, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1766, 3, 376, 188, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1772, 3, 388, 194, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1778, 5, 382, 0, 0, 1774, 1778, 5, 384, 0, 0, 1775, 1778, 3, 296, 148, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1773, 1, 0, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 61, 1, 0, 0, 0, 1779, 1780, 5, 2, 0, 0, 1780, 1785, 3, 64, 32, 0, 1781, 1782, 5, 4, 0, 0, 1782, 1784, 3, 64, 32, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1795, 3, 58, 29, 0, 1791, 1793, 5, 352, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 3, 268, 134, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 65, 1, 0, 0, 0, 1797, 1798, 5, 2, 0, 0, 1798, 1803, 3, 288, 144, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 288, 144, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 5, 3, 0, 0, 1807, 67, 1, 0, 0, 0, 1808, 1809, 5, 2, 0, 0, 1809, 1814, 3, 66, 33, 0, 1810, 1811, 5, 4, 0, 0, 1811, 1813, 3, 66, 33, 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, 3, 0, 0, 1818, 69, 1, 0, 0, 0, 1819, 1820, 5, 283, 0, 0, 1820, 1821, 5, 20, 0, 0, 1821, 1826, 3, 72, 36, 0, 1822, 1823, 5, 283, 0, 0, 1823, 1824, 5, 31, 0, 0, 1824, 1826, 3, 74, 37, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 71, 1, 0, 0, 0, 1827, 1828, 5, 146, 0, 0, 1828, 1829, 3, 388, 194, 0, 1829, 1830, 5, 212, 0, 0, 1830, 1831, 3, 388, 194, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1834, 3, 376, 188, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1839, 3, 388, 194, 0, 1836, 1837, 5, 346, 0, 0, 1837, 1838, 5, 267, 0, 0, 1838, 1840, 3, 54, 27, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 75, 1, 0, 0, 0, 1841, 1842, 3, 376, 188, 0, 1842, 1843, 3, 388, 194, 0, 1843, 77, 1, 0, 0, 0, 1844, 1845, 3, 28, 14, 0, 1845, 1846, 3, 26, 13, 0, 1846, 1901, 1, 0, 0, 0, 1847, 1849, 3, 146, 73, 0, 1848, 1850, 3, 102, 51, 0, 1849, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1901, 1, 0, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 123, 0, 0, 1855, 1856, 3, 86, 43, 0, 1856, 1858, 3, 240, 120, 0, 1857, 1859, 3, 138, 69, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1901, 1, 0, 0, 0, 1860, 1861, 5, 329, 0, 0, 1861, 1862, 3, 86, 43, 0, 1862, 1863, 3, 240, 120, 0, 1863, 1865, 3, 120, 60, 0, 1864, 1866, 3, 138, 69, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1901, 1, 0, 0, 0, 1867, 1868, 5, 179, 0, 0, 1868, 1869, 5, 152, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 240, 120, 0, 1871, 1877, 5, 332, 0, 0, 1872, 1878, 3, 98, 49, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1875, 3, 26, 13, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 3, 240, 120, 0, 1880, 1881, 5, 203, 0, 0, 1881, 1885, 3, 276, 138, 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, 1897, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1896, 3, 126, 63, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1844, 1, 0, 0, 0, 1900, 1847, 1, 0, 0, 0, 1900, 1853, 1, 0, 0, 0, 1900, 1860, 1, 0, 0, 0, 1900, 1867, 1, 0, 0, 0, 1901, 79, 1, 0, 0, 0, 1902, 1903, 3, 98, 49, 0, 1903, 81, 1, 0, 0, 0, 1904, 1905, 3, 98, 49, 0, 1905, 83, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 85, 1, 0, 0, 0, 1908, 1909, 3, 252, 126, 0, 1909, 87, 1, 0, 0, 0, 1910, 1911, 3, 254, 127, 0, 1911, 89, 1, 0, 0, 0, 1912, 1913, 3, 254, 127, 0, 1913, 91, 1, 0, 0, 0, 1914, 1917, 3, 246, 123, 0, 1915, 1917, 4, 46, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1923, 3, 92, 46, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1922, 3, 92, 46, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 95, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1927, 3, 372, 186, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 136, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 268, 134, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1935, 3, 246, 123, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 99, 1, 0, 0, 0, 1936, 1937, 5, 209, 0, 0, 1937, 1938, 5, 31, 0, 0, 1938, 1943, 3, 108, 54, 0, 1939, 1940, 5, 4, 0, 0, 1940, 1942, 3, 108, 54, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1936, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1958, 1, 0, 0, 0, 1948, 1949, 5, 44, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 268, 134, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 268, 134, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 93, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 268, 134, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 268, 134, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 278, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 108, 54, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 108, 54, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 352, 176, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1992, 1, 0, 0, 0, 1987, 1990, 5, 165, 0, 0, 1988, 1991, 5, 10, 0, 0, 1989, 1991, 3, 268, 134, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1989, 1, 0, 0, 0, 1991, 1993, 1, 0, 0, 0, 1992, 1987, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1995, 5, 202, 0, 0, 1995, 1997, 3, 268, 134, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 101, 1, 0, 0, 0, 1998, 1999, 3, 28, 14, 0, 1999, 2000, 3, 112, 56, 0, 2000, 103, 1, 0, 0, 0, 2001, 2002, 6, 52, -1, 0, 2002, 2003, 3, 106, 53, 0, 2003, 2024, 1, 0, 0, 0, 2004, 2005, 10, 3, 0, 0, 2005, 2007, 7, 13, 0, 0, 2006, 2008, 3, 196, 98, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2023, 3, 104, 52, 4, 2010, 2011, 10, 2, 0, 0, 2011, 2013, 5, 148, 0, 0, 2012, 2014, 3, 196, 98, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2023, 3, 104, 52, 3, 2016, 2017, 10, 1, 0, 0, 2017, 2019, 7, 14, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2023, 3, 104, 52, 2, 2022, 2004, 1, 0, 0, 0, 2022, 2010, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 105, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2037, 3, 114, 57, 0, 2028, 2037, 3, 110, 55, 0, 2029, 2030, 5, 293, 0, 0, 2030, 2037, 3, 86, 43, 0, 2031, 2037, 3, 226, 113, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2034, 3, 26, 13, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2036, 2032, 1, 0, 0, 0, 2037, 107, 1, 0, 0, 0, 2038, 2041, 3, 92, 46, 0, 2039, 2041, 3, 268, 134, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 7, 15, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 199, 0, 0, 2046, 2048, 7, 16, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 109, 1, 0, 0, 0, 2049, 2051, 3, 146, 73, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 111, 1, 0, 0, 0, 2055, 2057, 3, 116, 58, 0, 2056, 2058, 3, 138, 69, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 3, 100, 50, 0, 2060, 2083, 1, 0, 0, 0, 2061, 2065, 3, 118, 59, 0, 2062, 2064, 3, 194, 97, 0, 2063, 2062, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2070, 3, 138, 69, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2072, 1, 0, 0, 0, 2071, 2073, 3, 152, 76, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2076, 3, 140, 70, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2079, 3, 352, 176, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 100, 50, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2055, 1, 0, 0, 0, 2082, 2061, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 3, 116, 58, 0, 2085, 2087, 3, 146, 73, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2090, 3, 194, 97, 0, 2089, 2088, 1, 0, 0, 0, 2090, 2093, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2096, 3, 138, 69, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 152, 76, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 140, 70, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 352, 176, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2108, 3, 118, 59, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 352, 176, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2084, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2129, 115, 1, 0, 0, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2132, 5, 314, 0, 0, 2132, 2134, 5, 2, 0, 0, 2133, 2135, 3, 196, 98, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 3, 274, 137, 0, 2137, 2138, 5, 3, 0, 0, 2138, 2150, 1, 0, 0, 0, 2139, 2141, 5, 177, 0, 0, 2140, 2142, 3, 196, 98, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2150, 3, 274, 137, 0, 2144, 2146, 5, 238, 0, 0, 2145, 2147, 3, 196, 98, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 274, 137, 0, 2149, 2130, 1, 0, 0, 0, 2149, 2139, 1, 0, 0, 0, 2149, 2144, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 242, 121, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2155, 5, 236, 0, 0, 2155, 2157, 3, 388, 194, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 5, 332, 0, 0, 2159, 2172, 3, 388, 194, 0, 2160, 2170, 5, 20, 0, 0, 2161, 2171, 3, 214, 107, 0, 2162, 2171, 3, 334, 167, 0, 2163, 2166, 5, 2, 0, 0, 2164, 2167, 3, 214, 107, 0, 2165, 2167, 3, 334, 167, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 3, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2161, 1, 0, 0, 0, 2170, 2162, 1, 0, 0, 0, 2170, 2163, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2176, 3, 242, 121, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2178, 5, 235, 0, 0, 2178, 2180, 3, 388, 194, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 117, 1, 0, 0, 0, 2181, 2185, 5, 263, 0, 0, 2182, 2184, 3, 142, 71, 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, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2190, 3, 196, 98, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 3, 258, 129, 0, 2192, 119, 1, 0, 0, 0, 2193, 2194, 5, 269, 0, 0, 2194, 2195, 3, 134, 67, 0, 2195, 121, 1, 0, 0, 0, 2196, 2197, 5, 343, 0, 0, 2197, 2200, 5, 178, 0, 0, 2198, 2199, 5, 14, 0, 0, 2199, 2201, 3, 276, 138, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 5, 300, 0, 0, 2203, 2204, 3, 128, 64, 0, 2204, 123, 1, 0, 0, 0, 2205, 2206, 5, 343, 0, 0, 2206, 2207, 5, 197, 0, 0, 2207, 2210, 5, 178, 0, 0, 2208, 2209, 5, 31, 0, 0, 2209, 2211, 5, 296, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2213, 5, 14, 0, 0, 2213, 2215, 3, 276, 138, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 300, 0, 0, 2217, 2218, 3, 130, 65, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 5, 343, 0, 0, 2220, 2221, 5, 197, 0, 0, 2221, 2222, 5, 178, 0, 0, 2222, 2223, 5, 31, 0, 0, 2223, 2226, 5, 280, 0, 0, 2224, 2225, 5, 14, 0, 0, 2225, 2227, 3, 276, 138, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 5, 300, 0, 0, 2229, 2230, 3, 132, 66, 0, 2230, 127, 1, 0, 0, 0, 2231, 2239, 5, 84, 0, 0, 2232, 2233, 5, 329, 0, 0, 2233, 2234, 5, 269, 0, 0, 2234, 2239, 5, 363, 0, 0, 2235, 2236, 5, 329, 0, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2239, 3, 134, 67, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2232, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2239, 129, 1, 0, 0, 0, 2240, 2241, 5, 147, 0, 0, 2241, 2259, 5, 363, 0, 0, 2242, 2243, 5, 147, 0, 0, 2243, 2244, 5, 2, 0, 0, 2244, 2245, 3, 244, 122, 0, 2245, 2246, 5, 3, 0, 0, 2246, 2247, 5, 333, 0, 0, 2247, 2248, 5, 2, 0, 0, 2248, 2253, 3, 268, 134, 0, 2249, 2250, 5, 4, 0, 0, 2250, 2252, 3, 268, 134, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 3, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2240, 1, 0, 0, 0, 2258, 2242, 1, 0, 0, 0, 2259, 131, 1, 0, 0, 0, 2260, 2265, 5, 84, 0, 0, 2261, 2262, 5, 329, 0, 0, 2262, 2263, 5, 269, 0, 0, 2263, 2265, 3, 134, 67, 0, 2264, 2260, 1, 0, 0, 0, 2264, 2261, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 136, 68, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 246, 123, 0, 2275, 2276, 5, 352, 0, 0, 2276, 2277, 3, 268, 134, 0, 2277, 137, 1, 0, 0, 0, 2278, 2279, 5, 344, 0, 0, 2279, 2280, 3, 276, 138, 0, 2280, 139, 1, 0, 0, 0, 2281, 2282, 5, 132, 0, 0, 2282, 2283, 3, 276, 138, 0, 2283, 141, 1, 0, 0, 0, 2284, 2285, 5, 374, 0, 0, 2285, 2292, 3, 144, 72, 0, 2286, 2288, 5, 4, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 3, 144, 72, 0, 2290, 2287, 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, 375, 0, 0, 2296, 143, 1, 0, 0, 0, 2297, 2311, 3, 376, 188, 0, 2298, 2299, 3, 376, 188, 0, 2299, 2300, 5, 2, 0, 0, 2300, 2305, 3, 284, 142, 0, 2301, 2302, 5, 4, 0, 0, 2302, 2304, 3, 284, 142, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 3, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2297, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2311, 145, 1, 0, 0, 0, 2312, 2313, 5, 123, 0, 0, 2313, 2318, 3, 198, 99, 0, 2314, 2315, 5, 4, 0, 0, 2315, 2317, 3, 198, 99, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2324, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2329, 3, 162, 81, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 168, 84, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 7, 17, 0, 0, 2334, 149, 1, 0, 0, 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, 18, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 201, 0, 0, 2341, 2350, 3, 392, 196, 0, 2342, 2344, 5, 119, 0, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2346, 7, 19, 0, 0, 2346, 2347, 5, 20, 0, 0, 2347, 2348, 5, 201, 0, 0, 2348, 2350, 3, 280, 140, 0, 2349, 2336, 1, 0, 0, 0, 2349, 2343, 1, 0, 0, 0, 2350, 151, 1, 0, 0, 0, 2351, 2352, 5, 130, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2358, 3, 154, 77, 0, 2354, 2355, 5, 4, 0, 0, 2355, 2357, 3, 154, 77, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2391, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 130, 0, 0, 2362, 2363, 5, 31, 0, 0, 2363, 2368, 3, 268, 134, 0, 2364, 2365, 5, 4, 0, 0, 2365, 2367, 3, 268, 134, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2388, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2372, 5, 346, 0, 0, 2372, 2389, 5, 256, 0, 0, 2373, 2374, 5, 346, 0, 0, 2374, 2389, 5, 61, 0, 0, 2375, 2376, 5, 131, 0, 0, 2376, 2377, 5, 271, 0, 0, 2377, 2378, 5, 2, 0, 0, 2378, 2383, 3, 160, 80, 0, 2379, 2380, 5, 4, 0, 0, 2380, 2382, 3, 160, 80, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2371, 1, 0, 0, 0, 2388, 2373, 1, 0, 0, 0, 2388, 2375, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2391, 1, 0, 0, 0, 2390, 2351, 1, 0, 0, 0, 2390, 2361, 1, 0, 0, 0, 2391, 153, 1, 0, 0, 0, 2392, 2396, 3, 92, 46, 0, 2393, 2396, 3, 156, 78, 0, 2394, 2396, 3, 268, 134, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 155, 1, 0, 0, 0, 2397, 2398, 7, 20, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2404, 3, 160, 80, 0, 2400, 2401, 5, 4, 0, 0, 2401, 2403, 3, 160, 80, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2423, 1, 0, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2411, 5, 271, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 158, 79, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 158, 79, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2397, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2423, 157, 1, 0, 0, 0, 2424, 2427, 3, 156, 78, 0, 2425, 2427, 3, 160, 80, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 159, 1, 0, 0, 0, 2428, 2449, 3, 92, 46, 0, 2429, 2449, 3, 268, 134, 0, 2430, 2445, 5, 2, 0, 0, 2431, 2434, 3, 92, 46, 0, 2432, 2434, 3, 268, 134, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2442, 1, 0, 0, 0, 2435, 2438, 5, 4, 0, 0, 2436, 2439, 3, 92, 46, 0, 2437, 2439, 3, 268, 134, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2437, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2435, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2433, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 5, 3, 0, 0, 2448, 2428, 1, 0, 0, 0, 2448, 2429, 1, 0, 0, 0, 2448, 2430, 1, 0, 0, 0, 2449, 161, 1, 0, 0, 0, 2450, 2451, 5, 223, 0, 0, 2451, 2452, 5, 2, 0, 0, 2452, 2453, 3, 258, 129, 0, 2453, 2454, 5, 119, 0, 0, 2454, 2455, 3, 164, 82, 0, 2455, 2456, 5, 140, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 166, 83, 0, 2458, 2459, 5, 4, 0, 0, 2459, 2461, 3, 166, 83, 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, 2467, 5, 3, 0, 0, 2467, 163, 1, 0, 0, 0, 2468, 2481, 3, 376, 188, 0, 2469, 2470, 5, 2, 0, 0, 2470, 2475, 3, 376, 188, 0, 2471, 2472, 5, 4, 0, 0, 2472, 2474, 3, 376, 188, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 3, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2468, 1, 0, 0, 0, 2480, 2469, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2487, 3, 268, 134, 0, 2483, 2485, 5, 20, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2488, 3, 376, 188, 0, 2487, 2484, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 167, 1, 0, 0, 0, 2489, 2491, 5, 327, 0, 0, 2490, 2492, 3, 170, 85, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 172, 86, 0, 2495, 2500, 5, 3, 0, 0, 2496, 2498, 5, 20, 0, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 3, 376, 188, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 169, 1, 0, 0, 0, 2502, 2503, 7, 21, 0, 0, 2503, 2504, 5, 199, 0, 0, 2504, 171, 1, 0, 0, 0, 2505, 2508, 3, 174, 87, 0, 2506, 2508, 3, 176, 88, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 173, 1, 0, 0, 0, 2509, 2510, 3, 180, 90, 0, 2510, 2511, 5, 119, 0, 0, 2511, 2512, 3, 182, 91, 0, 2512, 2513, 5, 140, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2519, 3, 184, 92, 0, 2515, 2516, 5, 4, 0, 0, 2516, 2518, 3, 184, 92, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2523, 5, 3, 0, 0, 2523, 175, 1, 0, 0, 0, 2524, 2525, 5, 2, 0, 0, 2525, 2530, 3, 180, 90, 0, 2526, 2527, 5, 4, 0, 0, 2527, 2529, 3, 180, 90, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2535, 5, 119, 0, 0, 2535, 2536, 3, 182, 91, 0, 2536, 2537, 5, 140, 0, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2543, 3, 178, 89, 0, 2539, 2540, 5, 4, 0, 0, 2540, 2542, 3, 178, 89, 0, 2541, 2539, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2547, 5, 3, 0, 0, 2547, 177, 1, 0, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2554, 3, 186, 93, 0, 2550, 2551, 5, 4, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2550, 1, 0, 0, 0, 2553, 2556, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2559, 5, 3, 0, 0, 2558, 2560, 3, 188, 94, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 179, 1, 0, 0, 0, 2561, 2562, 3, 376, 188, 0, 2562, 181, 1, 0, 0, 0, 2563, 2564, 3, 376, 188, 0, 2564, 183, 1, 0, 0, 0, 2565, 2567, 3, 186, 93, 0, 2566, 2568, 3, 188, 94, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 185, 1, 0, 0, 0, 2569, 2570, 3, 246, 123, 0, 2570, 187, 1, 0, 0, 0, 2571, 2573, 5, 20, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2575, 3, 376, 188, 0, 2575, 189, 1, 0, 0, 0, 2576, 2577, 5, 137, 0, 0, 2577, 2578, 5, 197, 0, 0, 2578, 2579, 5, 105, 0, 0, 2579, 191, 1, 0, 0, 0, 2580, 2581, 5, 137, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 193, 1, 0, 0, 0, 2583, 2584, 5, 158, 0, 0, 2584, 2586, 5, 338, 0, 0, 2585, 2587, 5, 211, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 3, 90, 45, 0, 2589, 2598, 5, 2, 0, 0, 2590, 2595, 3, 268, 134, 0, 2591, 2592, 5, 4, 0, 0, 2592, 2594, 3, 268, 134, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2590, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2613, 3, 240, 120, 0, 2602, 2604, 5, 20, 0, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2610, 3, 376, 188, 0, 2606, 2607, 5, 4, 0, 0, 2607, 2609, 3, 376, 188, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2603, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 195, 1, 0, 0, 0, 2615, 2616, 7, 22, 0, 0, 2616, 197, 1, 0, 0, 0, 2617, 2629, 3, 86, 43, 0, 2618, 2620, 5, 158, 0, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2625, 3, 224, 112, 0, 2622, 2624, 3, 200, 100, 0, 2623, 2622, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2617, 1, 0, 0, 0, 2628, 2619, 1, 0, 0, 0, 2629, 199, 1, 0, 0, 0, 2630, 2634, 3, 202, 101, 0, 2631, 2634, 3, 162, 81, 0, 2632, 2634, 3, 168, 84, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 201, 1, 0, 0, 0, 2635, 2636, 3, 204, 102, 0, 2636, 2638, 5, 155, 0, 0, 2637, 2639, 5, 158, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 224, 112, 0, 2641, 2643, 3, 206, 103, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2653, 1, 0, 0, 0, 2644, 2645, 5, 194, 0, 0, 2645, 2646, 3, 204, 102, 0, 2646, 2648, 5, 155, 0, 0, 2647, 2649, 5, 158, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 224, 112, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2635, 1, 0, 0, 0, 2652, 2644, 1, 0, 0, 0, 2653, 203, 1, 0, 0, 0, 2654, 2656, 5, 144, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2679, 1, 0, 0, 0, 2657, 2679, 5, 60, 0, 0, 2658, 2660, 5, 161, 0, 0, 2659, 2661, 5, 211, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2679, 1, 0, 0, 0, 2662, 2664, 5, 161, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2679, 5, 264, 0, 0, 2666, 2668, 5, 250, 0, 0, 2667, 2669, 5, 211, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2679, 1, 0, 0, 0, 2670, 2672, 5, 124, 0, 0, 2671, 2673, 5, 211, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2679, 1, 0, 0, 0, 2674, 2676, 5, 161, 0, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 5, 15, 0, 0, 2678, 2655, 1, 0, 0, 0, 2678, 2657, 1, 0, 0, 0, 2678, 2658, 1, 0, 0, 0, 2678, 2663, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2670, 1, 0, 0, 0, 2678, 2675, 1, 0, 0, 0, 2679, 205, 1, 0, 0, 0, 2680, 2681, 5, 203, 0, 0, 2681, 2685, 3, 276, 138, 0, 2682, 2683, 5, 332, 0, 0, 2683, 2685, 3, 212, 106, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 207, 1, 0, 0, 0, 2686, 2687, 5, 295, 0, 0, 2687, 2689, 5, 2, 0, 0, 2688, 2690, 3, 210, 105, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2696, 5, 3, 0, 0, 2692, 2693, 5, 243, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2695, 5, 382, 0, 0, 2695, 2697, 5, 3, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 209, 1, 0, 0, 0, 2698, 2700, 5, 362, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 7, 23, 0, 0, 2702, 2723, 5, 222, 0, 0, 2703, 2704, 3, 268, 134, 0, 2704, 2705, 5, 258, 0, 0, 2705, 2723, 1, 0, 0, 0, 2706, 2707, 5, 29, 0, 0, 2707, 2708, 5, 382, 0, 0, 2708, 2709, 5, 210, 0, 0, 2709, 2710, 5, 201, 0, 0, 2710, 2719, 5, 382, 0, 0, 2711, 2717, 5, 203, 0, 0, 2712, 2718, 3, 376, 188, 0, 2713, 2714, 3, 370, 185, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2716, 5, 3, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2712, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 268, 134, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2703, 1, 0, 0, 0, 2722, 2706, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 211, 1, 0, 0, 0, 2724, 2725, 5, 2, 0, 0, 2725, 2726, 3, 214, 107, 0, 2726, 2727, 5, 3, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2733, 3, 372, 186, 0, 2729, 2730, 5, 4, 0, 0, 2730, 2732, 3, 372, 186, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 215, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2742, 3, 218, 109, 0, 2738, 2739, 5, 4, 0, 0, 2739, 2741, 3, 218, 109, 0, 2740, 2738, 1, 0, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2746, 5, 3, 0, 0, 2746, 217, 1, 0, 0, 0, 2747, 2749, 3, 372, 186, 0, 2748, 2750, 7, 15, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 219, 1, 0, 0, 0, 2751, 2752, 5, 2, 0, 0, 2752, 2757, 3, 222, 111, 0, 2753, 2754, 5, 4, 0, 0, 2754, 2756, 3, 222, 111, 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, 2760, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2761, 5, 3, 0, 0, 2761, 221, 1, 0, 0, 0, 2762, 2764, 3, 96, 48, 0, 2763, 2765, 3, 24, 12, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 223, 1, 0, 0, 0, 2766, 2770, 3, 86, 43, 0, 2767, 2770, 3, 90, 45, 0, 2768, 2770, 3, 98, 49, 0, 2769, 2766, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 3, 150, 75, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 3, 208, 104, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 3, 240, 120, 0, 2778, 2798, 1, 0, 0, 0, 2779, 2780, 5, 2, 0, 0, 2780, 2781, 3, 26, 13, 0, 2781, 2783, 5, 3, 0, 0, 2782, 2784, 3, 208, 104, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 3, 240, 120, 0, 2786, 2798, 1, 0, 0, 0, 2787, 2788, 5, 2, 0, 0, 2788, 2789, 3, 198, 99, 0, 2789, 2791, 5, 3, 0, 0, 2790, 2792, 3, 208, 104, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 240, 120, 0, 2794, 2798, 1, 0, 0, 0, 2795, 2798, 3, 226, 113, 0, 2796, 2798, 3, 238, 119, 0, 2797, 2769, 1, 0, 0, 0, 2797, 2779, 1, 0, 0, 0, 2797, 2787, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 225, 1, 0, 0, 0, 2799, 2800, 5, 333, 0, 0, 2800, 2805, 3, 268, 134, 0, 2801, 2802, 5, 4, 0, 0, 2802, 2804, 3, 268, 134, 0, 2803, 2801, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2809, 3, 240, 120, 0, 2809, 227, 1, 0, 0, 0, 2810, 2811, 5, 293, 0, 0, 2811, 2813, 3, 86, 43, 0, 2812, 2814, 3, 230, 115, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2830, 1, 0, 0, 0, 2815, 2816, 5, 293, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 86, 43, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 230, 115, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2830, 1, 0, 0, 0, 2822, 2823, 5, 293, 0, 0, 2823, 2824, 5, 2, 0, 0, 2824, 2825, 3, 26, 13, 0, 2825, 2827, 5, 3, 0, 0, 2826, 2828, 3, 230, 115, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2830, 1, 0, 0, 0, 2829, 2810, 1, 0, 0, 0, 2829, 2815, 1, 0, 0, 0, 2829, 2822, 1, 0, 0, 0, 2830, 229, 1, 0, 0, 0, 2831, 2832, 5, 346, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2851, 5, 217, 0, 0, 2834, 2835, 7, 24, 0, 0, 2835, 2848, 5, 31, 0, 0, 2836, 2837, 5, 2, 0, 0, 2837, 2842, 3, 268, 134, 0, 2838, 2839, 5, 4, 0, 0, 2839, 2841, 3, 268, 134, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2844, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2846, 5, 3, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2849, 3, 268, 134, 0, 2848, 2836, 1, 0, 0, 0, 2848, 2847, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2831, 1, 0, 0, 0, 2850, 2834, 1, 0, 0, 0, 2851, 2868, 1, 0, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2866, 5, 31, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2860, 3, 108, 54, 0, 2856, 2857, 5, 4, 0, 0, 2857, 2859, 3, 108, 54, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2863, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2864, 5, 3, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2867, 3, 108, 54, 0, 2866, 2854, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2852, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 231, 1, 0, 0, 0, 2870, 2871, 3, 376, 188, 0, 2871, 2872, 5, 373, 0, 0, 2872, 2873, 3, 228, 114, 0, 2873, 233, 1, 0, 0, 0, 2874, 2877, 3, 228, 114, 0, 2875, 2877, 3, 232, 116, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2875, 1, 0, 0, 0, 2877, 235, 1, 0, 0, 0, 2878, 2881, 3, 234, 117, 0, 2879, 2881, 3, 272, 136, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 237, 1, 0, 0, 0, 2882, 2883, 3, 366, 183, 0, 2883, 2892, 5, 2, 0, 0, 2884, 2889, 3, 236, 118, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 236, 118, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2896, 3, 240, 120, 0, 2896, 239, 1, 0, 0, 0, 2897, 2899, 5, 20, 0, 0, 2898, 2897, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 3, 378, 189, 0, 2901, 2903, 3, 212, 106, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2898, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 241, 1, 0, 0, 0, 2906, 2907, 5, 257, 0, 0, 2907, 2908, 5, 121, 0, 0, 2908, 2909, 5, 266, 0, 0, 2909, 2913, 3, 388, 194, 0, 2910, 2911, 5, 346, 0, 0, 2911, 2912, 5, 267, 0, 0, 2912, 2914, 3, 54, 27, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2956, 1, 0, 0, 0, 2915, 2916, 5, 257, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2927, 5, 85, 0, 0, 2918, 2919, 5, 113, 0, 0, 2919, 2920, 5, 299, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2925, 3, 388, 194, 0, 2922, 2923, 5, 101, 0, 0, 2923, 2924, 5, 31, 0, 0, 2924, 2926, 3, 388, 194, 0, 2925, 2922, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2918, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 48, 0, 0, 2930, 2931, 5, 154, 0, 0, 2931, 2932, 5, 299, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 388, 194, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2941, 1, 0, 0, 0, 2936, 2937, 5, 177, 0, 0, 2937, 2938, 5, 156, 0, 0, 2938, 2939, 5, 299, 0, 0, 2939, 2940, 5, 31, 0, 0, 2940, 2942, 3, 388, 194, 0, 2941, 2936, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2947, 1, 0, 0, 0, 2943, 2944, 5, 166, 0, 0, 2944, 2945, 5, 299, 0, 0, 2945, 2946, 5, 31, 0, 0, 2946, 2948, 3, 388, 194, 0, 2947, 2943, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2953, 1, 0, 0, 0, 2949, 2950, 5, 198, 0, 0, 2950, 2951, 5, 83, 0, 0, 2951, 2952, 5, 20, 0, 0, 2952, 2954, 3, 388, 194, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2906, 1, 0, 0, 0, 2955, 2915, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2962, 3, 246, 123, 0, 2958, 2959, 5, 4, 0, 0, 2959, 2961, 3, 246, 123, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 245, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 372, 186, 0, 2966, 2967, 5, 5, 0, 0, 2967, 2969, 3, 372, 186, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 247, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2978, 3, 250, 125, 0, 2974, 2975, 5, 4, 0, 0, 2975, 2977, 3, 250, 125, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2980, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 249, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 2984, 3, 246, 123, 0, 2982, 2983, 5, 207, 0, 0, 2983, 2985, 3, 54, 27, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 372, 186, 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, 372, 186, 0, 2992, 253, 1, 0, 0, 0, 2993, 2994, 3, 372, 186, 0, 2994, 2995, 5, 5, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2993, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 372, 186, 0, 2999, 255, 1, 0, 0, 0, 3000, 3003, 3, 92, 46, 0, 3001, 3003, 3, 268, 134, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3011, 1, 0, 0, 0, 3004, 3006, 5, 20, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3009, 1, 0, 0, 0, 3007, 3010, 3, 372, 186, 0, 3008, 3010, 3, 212, 106, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3008, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3005, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3018, 3, 256, 128, 0, 3014, 3015, 5, 4, 0, 0, 3015, 3017, 3, 256, 128, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3022, 5, 2, 0, 0, 3022, 3027, 3, 262, 131, 0, 3023, 3024, 5, 4, 0, 0, 3024, 3026, 3, 262, 131, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3031, 5, 3, 0, 0, 3031, 261, 1, 0, 0, 0, 3032, 3035, 3, 264, 132, 0, 3033, 3035, 3, 336, 168, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 263, 1, 0, 0, 0, 3036, 3050, 3, 370, 185, 0, 3037, 3038, 3, 376, 188, 0, 3038, 3039, 5, 2, 0, 0, 3039, 3044, 3, 266, 133, 0, 3040, 3041, 5, 4, 0, 0, 3041, 3043, 3, 266, 133, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 3, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3037, 1, 0, 0, 0, 3050, 265, 1, 0, 0, 0, 3051, 3054, 3, 370, 185, 0, 3052, 3054, 3, 288, 144, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 267, 1, 0, 0, 0, 3055, 3056, 3, 276, 138, 0, 3056, 269, 1, 0, 0, 0, 3057, 3058, 3, 376, 188, 0, 3058, 3059, 5, 373, 0, 0, 3059, 3060, 3, 268, 134, 0, 3060, 271, 1, 0, 0, 0, 3061, 3064, 3, 268, 134, 0, 3062, 3064, 3, 270, 135, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3070, 3, 268, 134, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 268, 134, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 275, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 6, 138, -1, 0, 3074, 3075, 7, 26, 0, 0, 3075, 3086, 3, 276, 138, 5, 3076, 3077, 5, 105, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3079, 3, 26, 13, 0, 3079, 3080, 5, 3, 0, 0, 3080, 3086, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3084, 3, 278, 139, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3073, 1, 0, 0, 0, 3085, 3076, 1, 0, 0, 0, 3085, 3081, 1, 0, 0, 0, 3086, 3095, 1, 0, 0, 0, 3087, 3088, 10, 2, 0, 0, 3088, 3089, 5, 14, 0, 0, 3089, 3094, 3, 276, 138, 3, 3090, 3091, 10, 1, 0, 0, 3091, 3092, 5, 208, 0, 0, 3092, 3094, 3, 276, 138, 2, 3093, 3087, 1, 0, 0, 0, 3093, 3090, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 277, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 24, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 3104, 5, 14, 0, 0, 3104, 3105, 3, 280, 140, 0, 3105, 3181, 1, 0, 0, 0, 3106, 3108, 5, 197, 0, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 5, 140, 0, 0, 3110, 3111, 5, 2, 0, 0, 3111, 3116, 3, 268, 134, 0, 3112, 3113, 5, 4, 0, 0, 3113, 3115, 3, 268, 134, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3181, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 140, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3127, 3, 26, 13, 0, 3127, 3128, 5, 3, 0, 0, 3128, 3181, 1, 0, 0, 0, 3129, 3131, 5, 197, 0, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 7, 27, 0, 0, 3133, 3181, 3, 280, 140, 0, 3134, 3136, 5, 197, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 7, 28, 0, 0, 3138, 3152, 7, 29, 0, 0, 3139, 3140, 5, 2, 0, 0, 3140, 3153, 5, 3, 0, 0, 3141, 3142, 5, 2, 0, 0, 3142, 3147, 3, 268, 134, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3146, 3, 268, 134, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3151, 5, 3, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3139, 1, 0, 0, 0, 3152, 3141, 1, 0, 0, 0, 3153, 3181, 1, 0, 0, 0, 3154, 3156, 5, 197, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 7, 28, 0, 0, 3158, 3161, 3, 280, 140, 0, 3159, 3160, 5, 100, 0, 0, 3160, 3162, 3, 388, 194, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3181, 1, 0, 0, 0, 3163, 3165, 5, 153, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3181, 5, 198, 0, 0, 3168, 3170, 5, 153, 0, 0, 3169, 3171, 5, 197, 0, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3181, 7, 30, 0, 0, 3173, 3175, 5, 153, 0, 0, 3174, 3176, 5, 197, 0, 0, 3175, 3174, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 92, 0, 0, 3178, 3179, 5, 123, 0, 0, 3179, 3181, 3, 280, 140, 0, 3180, 3099, 1, 0, 0, 0, 3180, 3107, 1, 0, 0, 0, 3180, 3122, 1, 0, 0, 0, 3180, 3130, 1, 0, 0, 0, 3180, 3135, 1, 0, 0, 0, 3180, 3155, 1, 0, 0, 0, 3180, 3163, 1, 0, 0, 0, 3180, 3168, 1, 0, 0, 0, 3180, 3173, 1, 0, 0, 0, 3181, 279, 1, 0, 0, 0, 3182, 3183, 6, 140, -1, 0, 3183, 3187, 3, 284, 142, 0, 3184, 3185, 7, 31, 0, 0, 3185, 3187, 3, 280, 140, 7, 3186, 3182, 1, 0, 0, 0, 3186, 3184, 1, 0, 0, 0, 3187, 3209, 1, 0, 0, 0, 3188, 3189, 10, 6, 0, 0, 3189, 3190, 7, 32, 0, 0, 3190, 3208, 3, 280, 140, 7, 3191, 3192, 10, 5, 0, 0, 3192, 3193, 7, 33, 0, 0, 3193, 3208, 3, 280, 140, 6, 3194, 3195, 10, 4, 0, 0, 3195, 3196, 5, 367, 0, 0, 3196, 3208, 3, 280, 140, 5, 3197, 3198, 10, 3, 0, 0, 3198, 3199, 5, 370, 0, 0, 3199, 3208, 3, 280, 140, 4, 3200, 3201, 10, 2, 0, 0, 3201, 3202, 5, 368, 0, 0, 3202, 3208, 3, 280, 140, 3, 3203, 3204, 10, 1, 0, 0, 3204, 3205, 3, 290, 145, 0, 3205, 3206, 3, 280, 140, 2, 3206, 3208, 1, 0, 0, 0, 3207, 3188, 1, 0, 0, 0, 3207, 3191, 1, 0, 0, 0, 3207, 3194, 1, 0, 0, 0, 3207, 3197, 1, 0, 0, 0, 3207, 3200, 1, 0, 0, 0, 3207, 3203, 1, 0, 0, 0, 3208, 3211, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 281, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3212, 3213, 7, 34, 0, 0, 3213, 283, 1, 0, 0, 0, 3214, 3215, 6, 142, -1, 0, 3215, 3464, 7, 35, 0, 0, 3216, 3217, 7, 36, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 282, 141, 0, 3219, 3221, 3, 388, 194, 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, 280, 140, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 280, 140, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3464, 1, 0, 0, 0, 3228, 3229, 7, 37, 0, 0, 3229, 3232, 5, 2, 0, 0, 3230, 3233, 3, 282, 141, 0, 3231, 3233, 3, 388, 194, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 4, 0, 0, 3235, 3236, 3, 280, 140, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3238, 3, 280, 140, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3464, 1, 0, 0, 0, 3240, 3242, 5, 35, 0, 0, 3241, 3243, 3, 350, 175, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3248, 1, 0, 0, 0, 3246, 3247, 5, 97, 0, 0, 3247, 3249, 3, 268, 134, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 5, 99, 0, 0, 3251, 3464, 1, 0, 0, 0, 3252, 3253, 5, 35, 0, 0, 3253, 3255, 3, 268, 134, 0, 3254, 3256, 3, 350, 175, 0, 3255, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3261, 1, 0, 0, 0, 3259, 3260, 5, 97, 0, 0, 3260, 3262, 3, 268, 134, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 5, 99, 0, 0, 3264, 3464, 1, 0, 0, 0, 3265, 3266, 7, 38, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3268, 3, 268, 134, 0, 3268, 3269, 5, 20, 0, 0, 3269, 3270, 3, 318, 159, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3464, 1, 0, 0, 0, 3272, 3273, 5, 286, 0, 0, 3273, 3282, 5, 2, 0, 0, 3274, 3279, 3, 256, 128, 0, 3275, 3276, 5, 4, 0, 0, 3276, 3278, 3, 256, 128, 0, 3277, 3275, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 3274, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3464, 5, 3, 0, 0, 3285, 3286, 5, 116, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3290, 3, 268, 134, 0, 3288, 3289, 5, 138, 0, 0, 3289, 3291, 5, 199, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 5, 3, 0, 0, 3293, 3464, 1, 0, 0, 0, 3294, 3295, 5, 17, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 268, 134, 0, 3297, 3298, 5, 138, 0, 0, 3298, 3300, 5, 199, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3464, 1, 0, 0, 0, 3303, 3304, 5, 157, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3308, 3, 268, 134, 0, 3306, 3307, 5, 138, 0, 0, 3307, 3309, 5, 199, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3464, 1, 0, 0, 0, 3312, 3313, 5, 225, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 280, 140, 0, 3315, 3316, 5, 140, 0, 0, 3316, 3317, 3, 280, 140, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3464, 1, 0, 0, 0, 3319, 3464, 3, 288, 144, 0, 3320, 3464, 5, 363, 0, 0, 3321, 3322, 3, 370, 185, 0, 3322, 3323, 5, 5, 0, 0, 3323, 3324, 5, 363, 0, 0, 3324, 3464, 1, 0, 0, 0, 3325, 3326, 5, 2, 0, 0, 3326, 3329, 3, 256, 128, 0, 3327, 3328, 5, 4, 0, 0, 3328, 3330, 3, 256, 128, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 5, 3, 0, 0, 3334, 3464, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 3337, 3, 26, 13, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3464, 1, 0, 0, 0, 3339, 3340, 5, 136, 0, 0, 3340, 3341, 5, 2, 0, 0, 3341, 3342, 3, 268, 134, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3464, 1, 0, 0, 0, 3344, 3345, 3, 366, 183, 0, 3345, 3357, 5, 2, 0, 0, 3346, 3348, 3, 196, 98, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3354, 3, 272, 136, 0, 3350, 3351, 5, 4, 0, 0, 3351, 3353, 3, 272, 136, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3347, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 5, 3, 0, 0, 3360, 3361, 5, 114, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 344, 0, 0, 3363, 3364, 3, 276, 138, 0, 3364, 3365, 5, 3, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3369, 7, 39, 0, 0, 3369, 3371, 5, 199, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3373, 5, 213, 0, 0, 3373, 3375, 3, 358, 179, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3464, 1, 0, 0, 0, 3376, 3377, 3, 376, 188, 0, 3377, 3378, 5, 372, 0, 0, 3378, 3379, 3, 268, 134, 0, 3379, 3464, 1, 0, 0, 0, 3380, 3381, 5, 2, 0, 0, 3381, 3384, 3, 376, 188, 0, 3382, 3383, 5, 4, 0, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3390, 5, 372, 0, 0, 3390, 3391, 3, 268, 134, 0, 3391, 3464, 1, 0, 0, 0, 3392, 3464, 3, 376, 188, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 268, 134, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3464, 1, 0, 0, 0, 3397, 3398, 5, 110, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 376, 188, 0, 3400, 3401, 5, 123, 0, 0, 3401, 3402, 3, 280, 140, 0, 3402, 3403, 5, 3, 0, 0, 3403, 3464, 1, 0, 0, 0, 3404, 3405, 7, 40, 0, 0, 3405, 3406, 5, 2, 0, 0, 3406, 3407, 3, 280, 140, 0, 3407, 3408, 7, 41, 0, 0, 3408, 3411, 3, 280, 140, 0, 3409, 3410, 7, 42, 0, 0, 3410, 3412, 3, 280, 140, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3464, 1, 0, 0, 0, 3415, 3416, 5, 315, 0, 0, 3416, 3418, 5, 2, 0, 0, 3417, 3419, 7, 43, 0, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 280, 140, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 5, 123, 0, 0, 3424, 3425, 3, 280, 140, 0, 3425, 3426, 5, 3, 0, 0, 3426, 3464, 1, 0, 0, 0, 3427, 3428, 5, 215, 0, 0, 3428, 3429, 5, 2, 0, 0, 3429, 3430, 3, 280, 140, 0, 3430, 3431, 5, 224, 0, 0, 3431, 3432, 3, 280, 140, 0, 3432, 3433, 5, 123, 0, 0, 3433, 3436, 3, 280, 140, 0, 3434, 3435, 5, 119, 0, 0, 3435, 3437, 3, 280, 140, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3464, 1, 0, 0, 0, 3440, 3441, 7, 44, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 280, 140, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3445, 5, 347, 0, 0, 3445, 3446, 5, 130, 0, 0, 3446, 3447, 5, 2, 0, 0, 3447, 3448, 5, 209, 0, 0, 3448, 3449, 5, 31, 0, 0, 3449, 3450, 3, 108, 54, 0, 3450, 3457, 5, 3, 0, 0, 3451, 3452, 5, 114, 0, 0, 3452, 3453, 5, 2, 0, 0, 3453, 3454, 5, 344, 0, 0, 3454, 3455, 3, 276, 138, 0, 3455, 3456, 5, 3, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3460, 5, 213, 0, 0, 3460, 3462, 3, 358, 179, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3214, 1, 0, 0, 0, 3463, 3216, 1, 0, 0, 0, 3463, 3228, 1, 0, 0, 0, 3463, 3240, 1, 0, 0, 0, 3463, 3252, 1, 0, 0, 0, 3463, 3265, 1, 0, 0, 0, 3463, 3272, 1, 0, 0, 0, 3463, 3285, 1, 0, 0, 0, 3463, 3294, 1, 0, 0, 0, 3463, 3303, 1, 0, 0, 0, 3463, 3312, 1, 0, 0, 0, 3463, 3319, 1, 0, 0, 0, 3463, 3320, 1, 0, 0, 0, 3463, 3321, 1, 0, 0, 0, 3463, 3325, 1, 0, 0, 0, 3463, 3335, 1, 0, 0, 0, 3463, 3339, 1, 0, 0, 0, 3463, 3344, 1, 0, 0, 0, 3463, 3376, 1, 0, 0, 0, 3463, 3380, 1, 0, 0, 0, 3463, 3392, 1, 0, 0, 0, 3463, 3393, 1, 0, 0, 0, 3463, 3397, 1, 0, 0, 0, 3463, 3404, 1, 0, 0, 0, 3463, 3415, 1, 0, 0, 0, 3463, 3427, 1, 0, 0, 0, 3463, 3440, 1, 0, 0, 0, 3464, 3475, 1, 0, 0, 0, 3465, 3466, 10, 9, 0, 0, 3466, 3467, 5, 6, 0, 0, 3467, 3468, 3, 280, 140, 0, 3468, 3469, 5, 7, 0, 0, 3469, 3474, 1, 0, 0, 0, 3470, 3471, 10, 7, 0, 0, 3471, 3472, 5, 5, 0, 0, 3472, 3474, 3, 376, 188, 0, 3473, 3465, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 285, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3486, 5, 71, 0, 0, 3479, 3486, 5, 303, 0, 0, 3480, 3486, 5, 304, 0, 0, 3481, 3486, 5, 305, 0, 0, 3482, 3486, 5, 149, 0, 0, 3483, 3486, 5, 133, 0, 0, 3484, 3486, 3, 376, 188, 0, 3485, 3478, 1, 0, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 287, 1, 0, 0, 0, 3487, 3503, 5, 198, 0, 0, 3488, 3503, 5, 376, 0, 0, 3489, 3490, 5, 371, 0, 0, 3490, 3503, 3, 376, 188, 0, 3491, 3503, 3, 298, 149, 0, 3492, 3493, 3, 286, 143, 0, 3493, 3494, 3, 388, 194, 0, 3494, 3503, 1, 0, 0, 0, 3495, 3503, 3, 384, 192, 0, 3496, 3503, 3, 296, 148, 0, 3497, 3499, 3, 388, 194, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3487, 1, 0, 0, 0, 3502, 3488, 1, 0, 0, 0, 3502, 3489, 1, 0, 0, 0, 3502, 3491, 1, 0, 0, 0, 3502, 3492, 1, 0, 0, 0, 3502, 3495, 1, 0, 0, 0, 3502, 3496, 1, 0, 0, 0, 3502, 3498, 1, 0, 0, 0, 3503, 289, 1, 0, 0, 0, 3504, 3505, 7, 45, 0, 0, 3505, 291, 1, 0, 0, 0, 3506, 3507, 7, 46, 0, 0, 3507, 293, 1, 0, 0, 0, 3508, 3509, 7, 47, 0, 0, 3509, 295, 1, 0, 0, 0, 3510, 3511, 7, 48, 0, 0, 3511, 297, 1, 0, 0, 0, 3512, 3515, 5, 149, 0, 0, 3513, 3516, 3, 300, 150, 0, 3514, 3516, 3, 304, 152, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 299, 1, 0, 0, 0, 3517, 3519, 3, 302, 151, 0, 3518, 3520, 3, 306, 153, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3522, 3, 308, 154, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3525, 1, 0, 0, 0, 3524, 3521, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 303, 1, 0, 0, 0, 3528, 3531, 3, 306, 153, 0, 3529, 3532, 3, 302, 151, 0, 3530, 3532, 3, 306, 153, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 305, 1, 0, 0, 0, 3533, 3534, 3, 308, 154, 0, 3534, 3535, 3, 312, 156, 0, 3535, 3536, 5, 309, 0, 0, 3536, 3537, 3, 312, 156, 0, 3537, 307, 1, 0, 0, 0, 3538, 3540, 7, 49, 0, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3544, 1, 0, 0, 0, 3541, 3545, 5, 382, 0, 0, 3542, 3545, 5, 384, 0, 0, 3543, 3545, 3, 388, 194, 0, 3544, 3541, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3543, 1, 0, 0, 0, 3545, 309, 1, 0, 0, 0, 3546, 3547, 7, 50, 0, 0, 3547, 311, 1, 0, 0, 0, 3548, 3549, 7, 51, 0, 0, 3549, 313, 1, 0, 0, 0, 3550, 3554, 5, 116, 0, 0, 3551, 3552, 5, 9, 0, 0, 3552, 3554, 3, 372, 186, 0, 3553, 3550, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 315, 1, 0, 0, 0, 3555, 3586, 5, 27, 0, 0, 3556, 3586, 5, 308, 0, 0, 3557, 3586, 5, 32, 0, 0, 3558, 3586, 5, 276, 0, 0, 3559, 3586, 5, 272, 0, 0, 3560, 3586, 5, 150, 0, 0, 3561, 3586, 5, 151, 0, 0, 3562, 3586, 5, 25, 0, 0, 3563, 3586, 5, 174, 0, 0, 3564, 3586, 5, 117, 0, 0, 3565, 3586, 5, 234, 0, 0, 3566, 3586, 5, 95, 0, 0, 3567, 3586, 5, 71, 0, 0, 3568, 3586, 5, 303, 0, 0, 3569, 3586, 5, 305, 0, 0, 3570, 3586, 5, 304, 0, 0, 3571, 3586, 5, 285, 0, 0, 3572, 3586, 5, 41, 0, 0, 3573, 3586, 5, 40, 0, 0, 3574, 3586, 5, 334, 0, 0, 3575, 3586, 5, 26, 0, 0, 3576, 3586, 5, 80, 0, 0, 3577, 3586, 5, 79, 0, 0, 3578, 3586, 5, 200, 0, 0, 3579, 3586, 5, 340, 0, 0, 3580, 3586, 5, 149, 0, 0, 3581, 3586, 5, 19, 0, 0, 3582, 3586, 5, 286, 0, 0, 3583, 3586, 5, 177, 0, 0, 3584, 3586, 3, 376, 188, 0, 3585, 3555, 1, 0, 0, 0, 3585, 3556, 1, 0, 0, 0, 3585, 3557, 1, 0, 0, 0, 3585, 3558, 1, 0, 0, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3560, 1, 0, 0, 0, 3585, 3561, 1, 0, 0, 0, 3585, 3562, 1, 0, 0, 0, 3585, 3563, 1, 0, 0, 0, 3585, 3564, 1, 0, 0, 0, 3585, 3565, 1, 0, 0, 0, 3585, 3566, 1, 0, 0, 0, 3585, 3567, 1, 0, 0, 0, 3585, 3568, 1, 0, 0, 0, 3585, 3569, 1, 0, 0, 0, 3585, 3570, 1, 0, 0, 0, 3585, 3571, 1, 0, 0, 0, 3585, 3572, 1, 0, 0, 0, 3585, 3573, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3576, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3578, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3585, 3580, 1, 0, 0, 0, 3585, 3581, 1, 0, 0, 0, 3585, 3582, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3585, 3584, 1, 0, 0, 0, 3586, 317, 1, 0, 0, 0, 3587, 3588, 5, 19, 0, 0, 3588, 3589, 5, 356, 0, 0, 3589, 3590, 3, 318, 159, 0, 3590, 3591, 5, 358, 0, 0, 3591, 3634, 1, 0, 0, 0, 3592, 3593, 5, 177, 0, 0, 3593, 3594, 5, 356, 0, 0, 3594, 3595, 3, 318, 159, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 318, 159, 0, 3597, 3598, 5, 358, 0, 0, 3598, 3634, 1, 0, 0, 0, 3599, 3606, 5, 286, 0, 0, 3600, 3602, 5, 356, 0, 0, 3601, 3603, 3, 346, 173, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3607, 5, 358, 0, 0, 3605, 3607, 5, 354, 0, 0, 3606, 3600, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 3634, 1, 0, 0, 0, 3608, 3609, 5, 149, 0, 0, 3609, 3612, 7, 52, 0, 0, 3610, 3611, 5, 309, 0, 0, 3611, 3613, 5, 186, 0, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3634, 1, 0, 0, 0, 3614, 3615, 5, 149, 0, 0, 3615, 3618, 7, 53, 0, 0, 3616, 3617, 5, 309, 0, 0, 3617, 3619, 7, 54, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3634, 1, 0, 0, 0, 3620, 3631, 3, 316, 158, 0, 3621, 3622, 5, 2, 0, 0, 3622, 3627, 5, 382, 0, 0, 3623, 3624, 5, 4, 0, 0, 3624, 3626, 5, 382, 0, 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, 3630, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 3, 0, 0, 3631, 3621, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3587, 1, 0, 0, 0, 3633, 3592, 1, 0, 0, 0, 3633, 3599, 1, 0, 0, 0, 3633, 3608, 1, 0, 0, 0, 3633, 3614, 1, 0, 0, 0, 3633, 3620, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3640, 3, 322, 161, 0, 3636, 3637, 5, 4, 0, 0, 3637, 3639, 3, 322, 161, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 321, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3644, 3, 96, 48, 0, 3644, 3648, 3, 318, 159, 0, 3645, 3647, 3, 328, 164, 0, 3646, 3645, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 323, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3656, 3, 326, 163, 0, 3652, 3653, 5, 4, 0, 0, 3653, 3655, 3, 326, 163, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 325, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 3, 92, 46, 0, 3660, 3664, 3, 318, 159, 0, 3661, 3663, 3, 328, 164, 0, 3662, 3661, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 327, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3667, 3668, 5, 197, 0, 0, 3668, 3673, 5, 198, 0, 0, 3669, 3673, 3, 330, 165, 0, 3670, 3673, 3, 24, 12, 0, 3671, 3673, 3, 314, 157, 0, 3672, 3667, 1, 0, 0, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 329, 1, 0, 0, 0, 3674, 3675, 5, 82, 0, 0, 3675, 3676, 3, 268, 134, 0, 3676, 331, 1, 0, 0, 0, 3677, 3678, 7, 55, 0, 0, 3678, 3679, 3, 268, 134, 0, 3679, 333, 1, 0, 0, 0, 3680, 3685, 3, 336, 168, 0, 3681, 3682, 5, 4, 0, 0, 3682, 3684, 3, 336, 168, 0, 3683, 3681, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 335, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3688, 3689, 3, 372, 186, 0, 3689, 3692, 3, 318, 159, 0, 3690, 3691, 5, 197, 0, 0, 3691, 3693, 5, 198, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 3, 24, 12, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3702, 3, 340, 170, 0, 3698, 3699, 5, 4, 0, 0, 3699, 3701, 3, 340, 170, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 339, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 3, 96, 48, 0, 3706, 3710, 3, 318, 159, 0, 3707, 3709, 3, 342, 171, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 341, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 5, 197, 0, 0, 3714, 3719, 5, 198, 0, 0, 3715, 3719, 3, 330, 165, 0, 3716, 3719, 3, 344, 172, 0, 3717, 3719, 3, 24, 12, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 5, 127, 0, 0, 3721, 3722, 5, 12, 0, 0, 3722, 3723, 5, 20, 0, 0, 3723, 3724, 5, 2, 0, 0, 3724, 3725, 3, 268, 134, 0, 3725, 3726, 5, 3, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3732, 3, 348, 174, 0, 3728, 3729, 5, 4, 0, 0, 3729, 3731, 3, 348, 174, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3734, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 347, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3737, 3, 376, 188, 0, 3736, 3738, 5, 371, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3742, 3, 318, 159, 0, 3740, 3741, 5, 197, 0, 0, 3741, 3743, 5, 198, 0, 0, 3742, 3740, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 3, 24, 12, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 349, 1, 0, 0, 0, 3747, 3748, 5, 343, 0, 0, 3748, 3749, 3, 268, 134, 0, 3749, 3750, 5, 300, 0, 0, 3750, 3751, 3, 268, 134, 0, 3751, 351, 1, 0, 0, 0, 3752, 3753, 5, 345, 0, 0, 3753, 3758, 3, 356, 178, 0, 3754, 3755, 5, 4, 0, 0, 3755, 3757, 3, 356, 178, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 353, 1, 0, 0, 0, 3760, 3758, 1, 0, 0, 0, 3761, 3762, 5, 351, 0, 0, 3762, 3763, 5, 31, 0, 0, 3763, 3764, 3, 94, 47, 0, 3764, 355, 1, 0, 0, 0, 3765, 3766, 3, 372, 186, 0, 3766, 3767, 5, 20, 0, 0, 3767, 3768, 3, 358, 179, 0, 3768, 357, 1, 0, 0, 0, 3769, 3816, 3, 372, 186, 0, 3770, 3771, 5, 2, 0, 0, 3771, 3772, 3, 372, 186, 0, 3772, 3773, 5, 3, 0, 0, 3773, 3816, 1, 0, 0, 0, 3774, 3809, 5, 2, 0, 0, 3775, 3776, 5, 44, 0, 0, 3776, 3777, 5, 31, 0, 0, 3777, 3782, 3, 268, 134, 0, 3778, 3779, 5, 4, 0, 0, 3779, 3781, 3, 268, 134, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3810, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 7, 24, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 268, 134, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 268, 134, 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, 3807, 1, 0, 0, 0, 3797, 3798, 7, 25, 0, 0, 3798, 3799, 5, 31, 0, 0, 3799, 3804, 3, 108, 54, 0, 3800, 3801, 5, 4, 0, 0, 3801, 3803, 3, 108, 54, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3808, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3797, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3775, 1, 0, 0, 0, 3809, 3795, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 360, 180, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 5, 3, 0, 0, 3815, 3769, 1, 0, 0, 0, 3815, 3770, 1, 0, 0, 0, 3815, 3774, 1, 0, 0, 0, 3816, 359, 1, 0, 0, 0, 3817, 3818, 5, 233, 0, 0, 3818, 3834, 3, 362, 181, 0, 3819, 3820, 5, 258, 0, 0, 3820, 3834, 3, 362, 181, 0, 3821, 3822, 5, 233, 0, 0, 3822, 3823, 5, 24, 0, 0, 3823, 3824, 3, 362, 181, 0, 3824, 3825, 5, 14, 0, 0, 3825, 3826, 3, 362, 181, 0, 3826, 3834, 1, 0, 0, 0, 3827, 3828, 5, 258, 0, 0, 3828, 3829, 5, 24, 0, 0, 3829, 3830, 3, 362, 181, 0, 3830, 3831, 5, 14, 0, 0, 3831, 3832, 3, 362, 181, 0, 3832, 3834, 1, 0, 0, 0, 3833, 3817, 1, 0, 0, 0, 3833, 3819, 1, 0, 0, 0, 3833, 3821, 1, 0, 0, 0, 3833, 3827, 1, 0, 0, 0, 3834, 361, 1, 0, 0, 0, 3835, 3836, 5, 321, 0, 0, 3836, 3843, 7, 56, 0, 0, 3837, 3838, 5, 62, 0, 0, 3838, 3843, 5, 257, 0, 0, 3839, 3840, 3, 268, 134, 0, 3840, 3841, 7, 56, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3835, 1, 0, 0, 0, 3842, 3837, 1, 0, 0, 0, 3842, 3839, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3849, 3, 370, 185, 0, 3845, 3846, 5, 4, 0, 0, 3846, 3848, 3, 370, 185, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3853, 5, 136, 0, 0, 3853, 3854, 5, 2, 0, 0, 3854, 3855, 3, 268, 134, 0, 3855, 3856, 5, 3, 0, 0, 3856, 3862, 1, 0, 0, 0, 3857, 3862, 3, 370, 185, 0, 3858, 3862, 5, 114, 0, 0, 3859, 3862, 5, 161, 0, 0, 3860, 3862, 5, 250, 0, 0, 3861, 3852, 1, 0, 0, 0, 3861, 3857, 1, 0, 0, 0, 3861, 3858, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3861, 3860, 1, 0, 0, 0, 3862, 367, 1, 0, 0, 0, 3863, 3864, 3, 370, 185, 0, 3864, 369, 1, 0, 0, 0, 3865, 3870, 3, 376, 188, 0, 3866, 3867, 5, 5, 0, 0, 3867, 3869, 3, 376, 188, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 371, 1, 0, 0, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3874, 3, 376, 188, 0, 3874, 3875, 3, 374, 187, 0, 3875, 373, 1, 0, 0, 0, 3876, 3877, 5, 362, 0, 0, 3877, 3879, 3, 376, 188, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3878, 1, 0, 0, 0, 3883, 3882, 1, 0, 0, 0, 3884, 375, 1, 0, 0, 0, 3885, 3888, 3, 378, 189, 0, 3886, 3888, 3, 396, 198, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3886, 1, 0, 0, 0, 3888, 377, 1, 0, 0, 0, 3889, 3894, 5, 388, 0, 0, 3890, 3894, 3, 380, 190, 0, 3891, 3894, 3, 394, 197, 0, 3892, 3894, 3, 398, 199, 0, 3893, 3889, 1, 0, 0, 0, 3893, 3890, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3892, 1, 0, 0, 0, 3894, 379, 1, 0, 0, 0, 3895, 3896, 7, 57, 0, 0, 3896, 381, 1, 0, 0, 0, 3897, 3898, 5, 389, 0, 0, 3898, 383, 1, 0, 0, 0, 3899, 3901, 5, 362, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3940, 5, 383, 0, 0, 3903, 3905, 5, 362, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3940, 5, 384, 0, 0, 3907, 3909, 5, 362, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3940, 7, 58, 0, 0, 3911, 3913, 5, 362, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3940, 5, 382, 0, 0, 3915, 3917, 5, 362, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3940, 5, 379, 0, 0, 3919, 3921, 5, 362, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3940, 5, 380, 0, 0, 3923, 3925, 5, 362, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3940, 5, 381, 0, 0, 3927, 3929, 5, 362, 0, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3940, 5, 386, 0, 0, 3931, 3933, 5, 362, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3940, 5, 385, 0, 0, 3935, 3937, 5, 362, 0, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 5, 387, 0, 0, 3939, 3900, 1, 0, 0, 0, 3939, 3904, 1, 0, 0, 0, 3939, 3908, 1, 0, 0, 0, 3939, 3912, 1, 0, 0, 0, 3939, 3916, 1, 0, 0, 0, 3939, 3920, 1, 0, 0, 0, 3939, 3924, 1, 0, 0, 0, 3939, 3928, 1, 0, 0, 0, 3939, 3932, 1, 0, 0, 0, 3939, 3936, 1, 0, 0, 0, 3940, 385, 1, 0, 0, 0, 3941, 3942, 5, 319, 0, 0, 3942, 3953, 3, 318, 159, 0, 3943, 3953, 3, 24, 12, 0, 3944, 3953, 3, 314, 157, 0, 3945, 3946, 7, 59, 0, 0, 3946, 3947, 5, 197, 0, 0, 3947, 3953, 5, 198, 0, 0, 3948, 3949, 5, 269, 0, 0, 3949, 3953, 3, 330, 165, 0, 3950, 3951, 5, 96, 0, 0, 3951, 3953, 5, 82, 0, 0, 3952, 3941, 1, 0, 0, 0, 3952, 3943, 1, 0, 0, 0, 3952, 3944, 1, 0, 0, 0, 3952, 3945, 1, 0, 0, 0, 3952, 3948, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 387, 1, 0, 0, 0, 3954, 3955, 7, 60, 0, 0, 3955, 389, 1, 0, 0, 0, 3956, 3959, 3, 388, 194, 0, 3957, 3959, 5, 198, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 391, 1, 0, 0, 0, 3960, 3963, 5, 382, 0, 0, 3961, 3963, 3, 388, 194, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3961, 1, 0, 0, 0, 3963, 393, 1, 0, 0, 0, 3964, 3965, 7, 61, 0, 0, 3965, 395, 1, 0, 0, 0, 3966, 3967, 7, 62, 0, 0, 3967, 397, 1, 0, 0, 0, 3968, 3969, 7, 63, 0, 0, 3969, 399, 1, 0, 0, 0, 517, 403, 410, 414, 419, 426, 431, 439, 441, 460, 464, 470, 473, 476, 483, 486, 490, 493, 498, 510, 512, 520, 523, 527, 530, 536, 547, 553, 558, 591, 601, 612, 623, 634, 639, 648, 652, 658, 662, 667, 673, 685, 693, 699, 710, 714, 719, 734, 738, 745, 749, 755, 784, 788, 793, 800, 806, 809, 812, 816, 820, 828, 830, 839, 842, 851, 856, 862, 869, 872, 876, 887, 890, 896, 900, 915, 917, 925, 929, 935, 938, 942, 945, 951, 956, 960, 967, 970, 973, 980, 985, 994, 1002, 1008, 1011, 1014, 1020, 1024, 1029, 1032, 1036, 1038, 1046, 1054, 1057, 1064, 1067, 1070, 1079, 1084, 1090, 1095, 1098, 1102, 1105, 1109, 1137, 1140, 1148, 1154, 1157, 1160, 1165, 1173, 1178, 1184, 1190, 1193, 1200, 1207, 1215, 1232, 1259, 1262, 1268, 1277, 1286, 1292, 1297, 1302, 1309, 1314, 1319, 1326, 1334, 1337, 1341, 1353, 1357, 1364, 1480, 1488, 1496, 1505, 1515, 1519, 1522, 1526, 1532, 1544, 1556, 1561, 1570, 1578, 1583, 1585, 1593, 1598, 1602, 1605, 1613, 1618, 1627, 1632, 1635, 1640, 1644, 1649, 1651, 1655, 1664, 1672, 1678, 1689, 1696, 1705, 1710, 1713, 1736, 1738, 1750, 1757, 1760, 1767, 1771, 1777, 1785, 1792, 1795, 1803, 1814, 1825, 1833, 1839, 1851, 1858, 1865, 1877, 1885, 1891, 1897, 1900, 1916, 1923, 1934, 1943, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1985, 1990, 1992, 1996, 2007, 2013, 2019, 2022, 2024, 2036, 2040, 2043, 2047, 2053, 2057, 2065, 2069, 2072, 2075, 2078, 2082, 2086, 2091, 2095, 2098, 2101, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2128, 2134, 2141, 2146, 2149, 2152, 2156, 2166, 2170, 2172, 2175, 2179, 2185, 2189, 2200, 2210, 2214, 2226, 2238, 2253, 2258, 2264, 2271, 2287, 2292, 2305, 2310, 2318, 2324, 2328, 2331, 2336, 2343, 2349, 2358, 2368, 2383, 2388, 2390, 2395, 2404, 2417, 2422, 2426, 2433, 2438, 2442, 2445, 2448, 2462, 2475, 2480, 2484, 2487, 2491, 2497, 2500, 2507, 2519, 2530, 2543, 2554, 2559, 2567, 2572, 2586, 2595, 2598, 2603, 2610, 2613, 2619, 2625, 2628, 2633, 2638, 2642, 2648, 2652, 2655, 2660, 2663, 2668, 2672, 2675, 2678, 2684, 2689, 2696, 2699, 2717, 2719, 2722, 2733, 2742, 2749, 2757, 2764, 2769, 2772, 2775, 2783, 2791, 2797, 2805, 2813, 2820, 2827, 2829, 2842, 2848, 2850, 2860, 2866, 2868, 2876, 2880, 2889, 2892, 2898, 2902, 2904, 2913, 2925, 2927, 2934, 2941, 2947, 2953, 2955, 2962, 2970, 2978, 2984, 2989, 2996, 3002, 3005, 3009, 3011, 3018, 3027, 3034, 3044, 3049, 3053, 3063, 3070, 3083, 3085, 3093, 3095, 3099, 3107, 3116, 3122, 3130, 3135, 3147, 3152, 3155, 3161, 3165, 3170, 3175, 3180, 3186, 3207, 3209, 3220, 3232, 3244, 3248, 3257, 3261, 3279, 3282, 3290, 3299, 3308, 3331, 3347, 3354, 3357, 3366, 3370, 3374, 3386, 3411, 3418, 3421, 3436, 3457, 3461, 3463, 3473, 3475, 3485, 3500, 3502, 3515, 3519, 3526, 3531, 3539, 3544, 3553, 3585, 3602, 3606, 3612, 3618, 3627, 3631, 3633, 3640, 3648, 3656, 3664, 3672, 3685, 3692, 3695, 3702, 3710, 3718, 3732, 3737, 3742, 3745, 3758, 3782, 3792, 3795, 3804, 3807, 3809, 3812, 3815, 3833, 3842, 3849, 3861, 3870, 3880, 3883, 3887, 3893, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3939, 3952, 3958, 3962] \ No newline at end of file +[4, 1, 393, 3760, 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, 1, 0, 5, 0, 352, 8, 0, 10, 0, 12, 0, 355, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 361, 8, 1, 1, 2, 1, 2, 3, 2, 365, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 370, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 377, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 382, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 392, 8, 2, 10, 2, 12, 2, 395, 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, 3, 2, 414, 8, 2, 1, 2, 1, 2, 3, 2, 418, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 424, 8, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 2, 3, 2, 437, 8, 2, 1, 2, 1, 2, 3, 2, 441, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 448, 8, 2, 1, 2, 3, 2, 451, 8, 2, 1, 2, 1, 2, 3, 2, 455, 8, 2, 1, 2, 3, 2, 458, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 463, 8, 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, 476, 8, 2, 10, 2, 12, 2, 479, 9, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 492, 8, 2, 1, 2, 3, 2, 495, 8, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 3, 2, 502, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 508, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 519, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 525, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 530, 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, 563, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 573, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 584, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 595, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 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, 3, 2, 620, 8, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 630, 8, 2, 1, 2, 1, 2, 3, 2, 634, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 639, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 645, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 1, 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, 3, 2, 682, 8, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 4, 2, 689, 8, 2, 11, 2, 12, 2, 690, 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, 706, 8, 2, 1, 2, 1, 2, 3, 2, 710, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 715, 8, 2, 10, 2, 12, 2, 718, 9, 2, 1, 2, 3, 2, 721, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 727, 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, 3, 2, 757, 8, 2, 1, 2, 1, 2, 3, 2, 761, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 766, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 773, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 3, 2, 793, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 802, 8, 2, 10, 2, 12, 2, 805, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 3, 2, 816, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 830, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 836, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 3, 2, 846, 8, 2, 1, 2, 1, 2, 3, 2, 850, 8, 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, 863, 8, 2, 10, 2, 12, 2, 866, 9, 2, 3, 2, 868, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 874, 8, 2, 1, 2, 1, 2, 3, 2, 878, 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, 5, 2, 895, 8, 2, 10, 2, 12, 2, 898, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 905, 8, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 915, 8, 2, 1, 2, 3, 2, 918, 8, 2, 1, 2, 1, 2, 3, 2, 922, 8, 2, 1, 2, 3, 2, 925, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 3, 2, 950, 8, 2, 1, 2, 3, 2, 953, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 960, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 965, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 988, 8, 2, 1, 2, 3, 2, 991, 8, 2, 1, 2, 3, 2, 994, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1000, 8, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 1, 2, 3, 2, 1016, 8, 2, 3, 2, 1018, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1026, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1034, 8, 2, 1, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1044, 8, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 3, 2, 1050, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1064, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1070, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1075, 8, 2, 1, 2, 3, 2, 1078, 8, 2, 1, 2, 1, 2, 3, 2, 1082, 8, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 3, 2, 1089, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1115, 8, 2, 10, 2, 12, 2, 1118, 9, 2, 3, 2, 1120, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1128, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1134, 8, 2, 1, 2, 3, 2, 1137, 8, 2, 1, 2, 3, 2, 1140, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1145, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1164, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1170, 8, 2, 1, 2, 3, 2, 1173, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1185, 8, 2, 10, 2, 12, 2, 1188, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1193, 8, 2, 10, 2, 12, 2, 1196, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1207, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1213, 8, 2, 10, 2, 12, 2, 1216, 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, 1240, 8, 2, 10, 2, 12, 2, 1243, 9, 2, 3, 2, 1245, 8, 2, 1, 2, 1, 2, 5, 2, 1249, 8, 2, 10, 2, 12, 2, 1252, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1275, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1280, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1285, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1292, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1297, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1302, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1309, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1315, 8, 2, 10, 2, 12, 2, 1318, 9, 2, 3, 2, 1320, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1326, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1333, 8, 3, 1, 3, 1, 3, 3, 3, 1337, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 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, 1400, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1408, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1415, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1423, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1435, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1440, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1449, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1457, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1462, 8, 9, 3, 9, 1464, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1472, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1477, 8, 9, 1, 9, 1, 9, 3, 9, 1481, 8, 9, 1, 9, 3, 9, 1484, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1492, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1497, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1506, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1511, 8, 9, 1, 9, 3, 9, 1514, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1519, 8, 9, 1, 9, 1, 9, 3, 9, 1523, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1528, 8, 9, 3, 9, 1530, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1535, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1542, 8, 11, 10, 11, 12, 11, 1545, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1552, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1558, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1567, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1572, 8, 15, 10, 15, 12, 15, 1575, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1581, 8, 16, 10, 16, 12, 16, 1584, 9, 16, 1, 17, 1, 17, 3, 17, 1588, 8, 17, 1, 17, 3, 17, 1591, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 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, 5, 19, 1616, 8, 19, 10, 19, 12, 19, 1619, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1628, 8, 21, 10, 21, 12, 21, 1631, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1637, 8, 22, 1, 22, 3, 22, 1640, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1645, 8, 23, 10, 23, 12, 23, 1648, 9, 23, 1, 23, 3, 23, 1651, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1657, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1663, 8, 25, 10, 25, 12, 25, 1666, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1672, 8, 26, 1, 26, 3, 26, 1675, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1681, 8, 27, 10, 27, 12, 27, 1684, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1692, 8, 28, 10, 28, 12, 28, 1695, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1705, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1713, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1719, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1728, 8, 32, 11, 32, 12, 32, 1729, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1737, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1744, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1756, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1762, 8, 32, 10, 32, 12, 32, 1765, 9, 32, 1, 32, 5, 32, 1768, 8, 32, 10, 32, 12, 32, 1771, 9, 32, 1, 32, 5, 32, 1774, 8, 32, 10, 32, 12, 32, 1777, 9, 32, 3, 32, 1779, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1795, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 1802, 8, 41, 10, 41, 12, 41, 1805, 9, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1815, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 1820, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1825, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1830, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1835, 8, 44, 1, 44, 3, 44, 1838, 8, 44, 1, 44, 3, 44, 1841, 8, 44, 1, 44, 1, 44, 3, 44, 1845, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1850, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1855, 8, 46, 10, 46, 12, 46, 1858, 9, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1863, 8, 47, 10, 47, 12, 47, 1866, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1874, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1880, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 5, 48, 1889, 8, 48, 10, 48, 12, 48, 1892, 9, 48, 1, 49, 1, 49, 1, 49, 4, 49, 1897, 8, 49, 11, 49, 12, 49, 1898, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1907, 8, 49, 10, 49, 12, 49, 1910, 9, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1918, 8, 49, 1, 50, 1, 50, 3, 50, 1922, 8, 50, 1, 50, 3, 50, 1925, 8, 50, 1, 50, 1, 50, 3, 50, 1929, 8, 50, 1, 51, 1, 51, 3, 51, 1933, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1939, 8, 51, 10, 51, 12, 51, 1942, 9, 51, 1, 51, 3, 51, 1945, 8, 51, 1, 51, 3, 51, 1948, 8, 51, 1, 51, 3, 51, 1951, 8, 51, 1, 51, 3, 51, 1954, 8, 51, 1, 51, 1, 51, 3, 51, 1958, 8, 51, 1, 52, 1, 52, 3, 52, 1962, 8, 52, 1, 52, 5, 52, 1965, 8, 52, 10, 52, 12, 52, 1968, 9, 52, 1, 52, 3, 52, 1971, 8, 52, 1, 52, 3, 52, 1974, 8, 52, 1, 52, 3, 52, 1977, 8, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 52, 1, 52, 3, 52, 1984, 8, 52, 1, 52, 5, 52, 1987, 8, 52, 10, 52, 12, 52, 1990, 9, 52, 1, 52, 3, 52, 1993, 8, 52, 1, 52, 3, 52, 1996, 8, 52, 1, 52, 3, 52, 1999, 8, 52, 1, 52, 3, 52, 2002, 8, 52, 3, 52, 2004, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2010, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2017, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2022, 8, 53, 1, 53, 3, 53, 2025, 8, 53, 1, 53, 3, 53, 2028, 8, 53, 1, 53, 1, 53, 3, 53, 2032, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2042, 8, 53, 1, 53, 1, 53, 3, 53, 2046, 8, 53, 3, 53, 2048, 8, 53, 1, 53, 3, 53, 2051, 8, 53, 1, 53, 1, 53, 3, 53, 2055, 8, 53, 1, 54, 1, 54, 5, 54, 2059, 8, 54, 10, 54, 12, 54, 2062, 9, 54, 1, 54, 3, 54, 2065, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2084, 8, 56, 3, 56, 2086, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 1, 57, 3, 57, 2097, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2109, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2116, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2129, 8, 59, 10, 59, 12, 59, 2132, 9, 59, 1, 59, 1, 59, 3, 59, 2136, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2141, 8, 60, 10, 60, 12, 60, 2144, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 2159, 8, 64, 1, 64, 5, 64, 2162, 8, 64, 10, 64, 12, 64, 2165, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2175, 8, 65, 10, 65, 12, 65, 2178, 9, 65, 1, 65, 1, 65, 3, 65, 2182, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2188, 8, 66, 10, 66, 12, 66, 2191, 9, 66, 1, 66, 5, 66, 2194, 8, 66, 10, 66, 12, 66, 2197, 9, 66, 1, 66, 3, 66, 2200, 8, 66, 1, 66, 3, 66, 2203, 8, 66, 1, 67, 3, 67, 2206, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2213, 8, 67, 1, 67, 3, 67, 2216, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2222, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2229, 8, 68, 10, 68, 12, 68, 2232, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2239, 8, 68, 10, 68, 12, 68, 2242, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2254, 8, 68, 10, 68, 12, 68, 2257, 9, 68, 1, 68, 1, 68, 3, 68, 2261, 8, 68, 3, 68, 2263, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2268, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2275, 8, 70, 10, 70, 12, 70, 2278, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2287, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2292, 8, 70, 5, 70, 2294, 8, 70, 10, 70, 12, 70, 2297, 9, 70, 1, 70, 1, 70, 3, 70, 2301, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2308, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2313, 8, 71, 5, 71, 2315, 8, 71, 10, 71, 12, 71, 2318, 9, 71, 3, 71, 2320, 8, 71, 1, 71, 3, 71, 2323, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2335, 8, 72, 10, 72, 12, 72, 2338, 9, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2348, 8, 73, 10, 73, 12, 73, 2351, 9, 73, 1, 73, 1, 73, 3, 73, 2355, 8, 73, 1, 74, 1, 74, 3, 74, 2359, 8, 74, 1, 74, 3, 74, 2362, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2367, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2372, 8, 75, 1, 75, 1, 75, 3, 75, 2376, 8, 75, 1, 75, 3, 75, 2379, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2389, 8, 76, 10, 76, 12, 76, 2392, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2400, 8, 77, 10, 77, 12, 77, 2403, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2413, 8, 77, 10, 77, 12, 77, 2416, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2424, 8, 78, 10, 78, 12, 78, 2427, 9, 78, 1, 78, 1, 78, 3, 78, 2431, 8, 78, 1, 78, 3, 78, 2434, 8, 78, 1, 79, 1, 79, 3, 79, 2438, 8, 79, 1, 79, 3, 79, 2441, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2453, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2460, 8, 82, 10, 82, 12, 82, 2463, 9, 82, 3, 82, 2465, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2470, 8, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2475, 8, 82, 10, 82, 12, 82, 2478, 9, 82, 3, 82, 2480, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2486, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2492, 8, 84, 10, 84, 12, 84, 2495, 9, 84, 3, 84, 2497, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2502, 8, 85, 1, 85, 1, 85, 3, 85, 2506, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2512, 8, 85, 1, 85, 1, 85, 3, 85, 2516, 8, 85, 1, 86, 3, 86, 2519, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2524, 8, 86, 1, 86, 3, 86, 2527, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2532, 8, 86, 3, 86, 2534, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2540, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2545, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2552, 8, 88, 1, 89, 3, 89, 2555, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 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, 2573, 8, 89, 3, 89, 2575, 8, 89, 1, 89, 3, 89, 2578, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2587, 8, 91, 10, 91, 12, 91, 2590, 9, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2596, 8, 92, 10, 92, 12, 92, 2599, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2605, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2611, 8, 94, 10, 94, 12, 94, 2614, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 2621, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2626, 8, 96, 1, 96, 3, 96, 2629, 8, 96, 1, 96, 3, 96, 2632, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2640, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2648, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2656, 8, 96, 10, 96, 12, 96, 2659, 9, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2668, 8, 96, 10, 96, 12, 96, 2671, 9, 96, 3, 96, 2673, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2678, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2683, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2690, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2697, 8, 97, 3, 97, 2699, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 2710, 8, 98, 10, 98, 12, 98, 2713, 9, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2718, 8, 98, 3, 98, 2720, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2729, 8, 98, 3, 98, 2731, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 3, 100, 2739, 8, 100, 1, 101, 1, 101, 3, 101, 2743, 8, 101, 1, 102, 3, 102, 2746, 8, 102, 1, 102, 1, 102, 3, 102, 2750, 8, 102, 3, 102, 2752, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2761, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2773, 8, 103, 3, 103, 2775, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2782, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2789, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2795, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2801, 8, 103, 3, 103, 2803, 8, 103, 1, 104, 1, 104, 1, 104, 5, 104, 2808, 8, 104, 10, 104, 12, 104, 2811, 9, 104, 1, 105, 1, 105, 1, 105, 5, 105, 2816, 8, 105, 10, 105, 12, 105, 2819, 9, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2824, 8, 106, 10, 106, 12, 106, 2827, 9, 106, 1, 107, 1, 107, 1, 107, 3, 107, 2832, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 2837, 8, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 3, 109, 2844, 8, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2850, 8, 110, 1, 110, 3, 110, 2853, 8, 110, 1, 110, 1, 110, 3, 110, 2857, 8, 110, 3, 110, 2859, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2864, 8, 111, 10, 111, 12, 111, 2867, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2873, 8, 112, 10, 112, 12, 112, 2876, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 3, 113, 2882, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2890, 8, 114, 10, 114, 12, 114, 2893, 9, 114, 1, 114, 1, 114, 3, 114, 2897, 8, 114, 1, 115, 1, 115, 3, 115, 2901, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2911, 8, 118, 1, 119, 1, 119, 1, 119, 5, 119, 2916, 8, 119, 10, 119, 12, 119, 2919, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2931, 8, 120, 3, 120, 2933, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 2941, 8, 120, 10, 120, 12, 120, 2944, 9, 120, 1, 121, 3, 121, 2947, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2955, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2962, 8, 121, 10, 121, 12, 121, 2965, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2970, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2978, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2983, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2993, 8, 121, 10, 121, 12, 121, 2996, 9, 121, 1, 121, 1, 121, 3, 121, 3000, 8, 121, 1, 121, 3, 121, 3003, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3009, 8, 121, 1, 121, 1, 121, 3, 121, 3013, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3018, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3023, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3028, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3034, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3055, 8, 122, 10, 122, 12, 122, 3058, 9, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3068, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3080, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3090, 8, 124, 11, 124, 12, 124, 3091, 1, 124, 1, 124, 3, 124, 3096, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3103, 8, 124, 11, 124, 12, 124, 3104, 1, 124, 1, 124, 3, 124, 3109, 8, 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, 5, 124, 3125, 8, 124, 10, 124, 12, 124, 3128, 9, 124, 3, 124, 3130, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3138, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3147, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3156, 8, 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, 4, 124, 3177, 8, 124, 11, 124, 12, 124, 3178, 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, 3195, 8, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3200, 8, 124, 10, 124, 12, 124, 3203, 9, 124, 3, 124, 3205, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3214, 8, 124, 1, 124, 1, 124, 3, 124, 3218, 8, 124, 1, 124, 1, 124, 3, 124, 3222, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3232, 8, 124, 11, 124, 12, 124, 3233, 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, 3259, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3266, 8, 124, 1, 124, 3, 124, 3269, 8, 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, 3284, 8, 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, 3305, 8, 124, 1, 124, 1, 124, 3, 124, 3309, 8, 124, 3, 124, 3311, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3321, 8, 124, 10, 124, 12, 124, 3324, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3333, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 4, 126, 3346, 8, 126, 11, 126, 12, 126, 3347, 3, 126, 3350, 8, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 3, 131, 3363, 8, 131, 1, 132, 1, 132, 3, 132, 3367, 8, 132, 1, 133, 1, 133, 1, 133, 4, 133, 3372, 8, 133, 11, 133, 12, 133, 3373, 1, 134, 1, 134, 1, 134, 3, 134, 3379, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 3, 136, 3387, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3392, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 3, 139, 3401, 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, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 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, 3433, 8, 140, 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, 5, 141, 3452, 8, 141, 10, 141, 12, 141, 3455, 9, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 3, 141, 3461, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3467, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3473, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3480, 8, 141, 10, 141, 12, 141, 3483, 9, 141, 1, 141, 3, 141, 3486, 8, 141, 3, 141, 3488, 8, 141, 1, 142, 1, 142, 1, 142, 5, 142, 3493, 8, 142, 10, 142, 12, 142, 3496, 9, 142, 1, 143, 1, 143, 1, 143, 5, 143, 3501, 8, 143, 10, 143, 12, 143, 3504, 9, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3509, 8, 144, 10, 144, 12, 144, 3512, 9, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3517, 8, 145, 10, 145, 12, 145, 3520, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3529, 8, 146, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 5, 148, 3537, 8, 148, 10, 148, 12, 148, 3540, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3546, 8, 149, 1, 149, 1, 149, 3, 149, 3550, 8, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3555, 8, 150, 10, 150, 12, 150, 3558, 9, 150, 1, 151, 1, 151, 1, 151, 5, 151, 3563, 8, 151, 10, 151, 12, 151, 3566, 9, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3581, 8, 152, 1, 153, 1, 153, 3, 153, 3585, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3590, 8, 153, 1, 153, 1, 153, 3, 153, 3594, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 3610, 8, 155, 10, 155, 12, 155, 3613, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3630, 8, 157, 10, 157, 12, 157, 3633, 9, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3640, 8, 157, 10, 157, 12, 157, 3643, 9, 157, 3, 157, 3645, 8, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3650, 8, 157, 3, 157, 3652, 8, 157, 1, 157, 3, 157, 3655, 8, 157, 1, 157, 3, 157, 3658, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3668, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3677, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3682, 8, 160, 10, 160, 12, 160, 3685, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 3696, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3703, 8, 163, 10, 163, 12, 163, 3706, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 4, 165, 3713, 8, 165, 11, 165, 12, 165, 3714, 1, 165, 3, 165, 3718, 8, 165, 1, 166, 1, 166, 3, 166, 3722, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3728, 8, 167, 1, 168, 1, 168, 1, 169, 3, 169, 3733, 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, 3, 170, 3750, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 9, 1116, 1186, 1194, 1214, 1241, 1250, 1259, 1268, 1316, 4, 96, 240, 244, 248, 175, 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, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 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, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 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, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4353, 0, 353, 1, 0, 0, 0, 2, 358, 1, 0, 0, 0, 4, 1319, 1, 0, 0, 0, 6, 1414, 1, 0, 0, 0, 8, 1416, 1, 0, 0, 0, 10, 1428, 1, 0, 0, 0, 12, 1441, 1, 0, 0, 0, 14, 1444, 1, 0, 0, 0, 16, 1448, 1, 0, 0, 0, 18, 1529, 1, 0, 0, 0, 20, 1531, 1, 0, 0, 0, 22, 1536, 1, 0, 0, 0, 24, 1557, 1, 0, 0, 0, 26, 1559, 1, 0, 0, 0, 28, 1566, 1, 0, 0, 0, 30, 1568, 1, 0, 0, 0, 32, 1576, 1, 0, 0, 0, 34, 1585, 1, 0, 0, 0, 36, 1596, 1, 0, 0, 0, 38, 1617, 1, 0, 0, 0, 40, 1620, 1, 0, 0, 0, 42, 1623, 1, 0, 0, 0, 44, 1634, 1, 0, 0, 0, 46, 1650, 1, 0, 0, 0, 48, 1656, 1, 0, 0, 0, 50, 1658, 1, 0, 0, 0, 52, 1669, 1, 0, 0, 0, 54, 1676, 1, 0, 0, 0, 56, 1687, 1, 0, 0, 0, 58, 1704, 1, 0, 0, 0, 60, 1712, 1, 0, 0, 0, 62, 1714, 1, 0, 0, 0, 64, 1778, 1, 0, 0, 0, 66, 1780, 1, 0, 0, 0, 68, 1782, 1, 0, 0, 0, 70, 1784, 1, 0, 0, 0, 72, 1786, 1, 0, 0, 0, 74, 1788, 1, 0, 0, 0, 76, 1790, 1, 0, 0, 0, 78, 1794, 1, 0, 0, 0, 80, 1796, 1, 0, 0, 0, 82, 1798, 1, 0, 0, 0, 84, 1806, 1, 0, 0, 0, 86, 1814, 1, 0, 0, 0, 88, 1819, 1, 0, 0, 0, 90, 1846, 1, 0, 0, 0, 92, 1851, 1, 0, 0, 0, 94, 1859, 1, 0, 0, 0, 96, 1867, 1, 0, 0, 0, 98, 1917, 1, 0, 0, 0, 100, 1921, 1, 0, 0, 0, 102, 1957, 1, 0, 0, 0, 104, 2003, 1, 0, 0, 0, 106, 2024, 1, 0, 0, 0, 108, 2056, 1, 0, 0, 0, 110, 2068, 1, 0, 0, 0, 112, 2071, 1, 0, 0, 0, 114, 2087, 1, 0, 0, 0, 116, 2101, 1, 0, 0, 0, 118, 2135, 1, 0, 0, 0, 120, 2137, 1, 0, 0, 0, 122, 2145, 1, 0, 0, 0, 124, 2149, 1, 0, 0, 0, 126, 2152, 1, 0, 0, 0, 128, 2155, 1, 0, 0, 0, 130, 2181, 1, 0, 0, 0, 132, 2183, 1, 0, 0, 0, 134, 2221, 1, 0, 0, 0, 136, 2262, 1, 0, 0, 0, 138, 2267, 1, 0, 0, 0, 140, 2300, 1, 0, 0, 0, 142, 2322, 1, 0, 0, 0, 144, 2324, 1, 0, 0, 0, 146, 2354, 1, 0, 0, 0, 148, 2356, 1, 0, 0, 0, 150, 2363, 1, 0, 0, 0, 152, 2380, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2419, 1, 0, 0, 0, 158, 2435, 1, 0, 0, 0, 160, 2442, 1, 0, 0, 0, 162, 2446, 1, 0, 0, 0, 164, 2449, 1, 0, 0, 0, 166, 2481, 1, 0, 0, 0, 168, 2496, 1, 0, 0, 0, 170, 2515, 1, 0, 0, 0, 172, 2533, 1, 0, 0, 0, 174, 2539, 1, 0, 0, 0, 176, 2541, 1, 0, 0, 0, 178, 2577, 1, 0, 0, 0, 180, 2579, 1, 0, 0, 0, 182, 2583, 1, 0, 0, 0, 184, 2591, 1, 0, 0, 0, 186, 2602, 1, 0, 0, 0, 188, 2606, 1, 0, 0, 0, 190, 2617, 1, 0, 0, 0, 192, 2677, 1, 0, 0, 0, 194, 2698, 1, 0, 0, 0, 196, 2719, 1, 0, 0, 0, 198, 2732, 1, 0, 0, 0, 200, 2738, 1, 0, 0, 0, 202, 2742, 1, 0, 0, 0, 204, 2751, 1, 0, 0, 0, 206, 2802, 1, 0, 0, 0, 208, 2804, 1, 0, 0, 0, 210, 2812, 1, 0, 0, 0, 212, 2820, 1, 0, 0, 0, 214, 2828, 1, 0, 0, 0, 216, 2836, 1, 0, 0, 0, 218, 2843, 1, 0, 0, 0, 220, 2849, 1, 0, 0, 0, 222, 2860, 1, 0, 0, 0, 224, 2868, 1, 0, 0, 0, 226, 2881, 1, 0, 0, 0, 228, 2896, 1, 0, 0, 0, 230, 2900, 1, 0, 0, 0, 232, 2902, 1, 0, 0, 0, 234, 2904, 1, 0, 0, 0, 236, 2910, 1, 0, 0, 0, 238, 2912, 1, 0, 0, 0, 240, 2932, 1, 0, 0, 0, 242, 3027, 1, 0, 0, 0, 244, 3033, 1, 0, 0, 0, 246, 3059, 1, 0, 0, 0, 248, 3310, 1, 0, 0, 0, 250, 3332, 1, 0, 0, 0, 252, 3349, 1, 0, 0, 0, 254, 3351, 1, 0, 0, 0, 256, 3353, 1, 0, 0, 0, 258, 3355, 1, 0, 0, 0, 260, 3357, 1, 0, 0, 0, 262, 3359, 1, 0, 0, 0, 264, 3364, 1, 0, 0, 0, 266, 3371, 1, 0, 0, 0, 268, 3375, 1, 0, 0, 0, 270, 3380, 1, 0, 0, 0, 272, 3386, 1, 0, 0, 0, 274, 3393, 1, 0, 0, 0, 276, 3395, 1, 0, 0, 0, 278, 3400, 1, 0, 0, 0, 280, 3432, 1, 0, 0, 0, 282, 3487, 1, 0, 0, 0, 284, 3489, 1, 0, 0, 0, 286, 3497, 1, 0, 0, 0, 288, 3505, 1, 0, 0, 0, 290, 3513, 1, 0, 0, 0, 292, 3528, 1, 0, 0, 0, 294, 3530, 1, 0, 0, 0, 296, 3533, 1, 0, 0, 0, 298, 3541, 1, 0, 0, 0, 300, 3551, 1, 0, 0, 0, 302, 3559, 1, 0, 0, 0, 304, 3580, 1, 0, 0, 0, 306, 3582, 1, 0, 0, 0, 308, 3595, 1, 0, 0, 0, 310, 3600, 1, 0, 0, 0, 312, 3614, 1, 0, 0, 0, 314, 3657, 1, 0, 0, 0, 316, 3667, 1, 0, 0, 0, 318, 3676, 1, 0, 0, 0, 320, 3678, 1, 0, 0, 0, 322, 3695, 1, 0, 0, 0, 324, 3697, 1, 0, 0, 0, 326, 3699, 1, 0, 0, 0, 328, 3707, 1, 0, 0, 0, 330, 3717, 1, 0, 0, 0, 332, 3721, 1, 0, 0, 0, 334, 3727, 1, 0, 0, 0, 336, 3729, 1, 0, 0, 0, 338, 3732, 1, 0, 0, 0, 340, 3749, 1, 0, 0, 0, 342, 3751, 1, 0, 0, 0, 344, 3753, 1, 0, 0, 0, 346, 3755, 1, 0, 0, 0, 348, 3757, 1, 0, 0, 0, 350, 352, 3, 2, 1, 0, 351, 350, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 357, 5, 0, 0, 1, 357, 1, 1, 0, 0, 0, 358, 360, 3, 4, 2, 0, 359, 361, 5, 1, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 3, 1, 0, 0, 0, 362, 1320, 3, 16, 8, 0, 363, 365, 3, 32, 16, 0, 364, 363, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 1320, 3, 64, 32, 0, 367, 369, 5, 330, 0, 0, 368, 370, 3, 26, 13, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 1320, 3, 66, 33, 0, 372, 373, 5, 269, 0, 0, 373, 376, 5, 37, 0, 0, 374, 377, 3, 332, 166, 0, 375, 377, 3, 342, 171, 0, 376, 374, 1, 0, 0, 0, 376, 375, 1, 0, 0, 0, 377, 1320, 1, 0, 0, 0, 378, 379, 5, 59, 0, 0, 379, 381, 3, 26, 13, 0, 380, 382, 3, 160, 80, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 393, 3, 68, 34, 0, 384, 385, 5, 51, 0, 0, 385, 392, 3, 342, 171, 0, 386, 387, 5, 170, 0, 0, 387, 392, 3, 342, 171, 0, 388, 389, 5, 346, 0, 0, 389, 390, 7, 0, 0, 0, 390, 392, 3, 42, 21, 0, 391, 384, 1, 0, 0, 0, 391, 386, 1, 0, 0, 0, 391, 388, 1, 0, 0, 0, 392, 395, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 1320, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 396, 397, 5, 11, 0, 0, 397, 398, 3, 26, 13, 0, 398, 399, 3, 66, 33, 0, 399, 400, 5, 269, 0, 0, 400, 401, 7, 0, 0, 0, 401, 402, 3, 42, 21, 0, 402, 1320, 1, 0, 0, 0, 403, 404, 5, 11, 0, 0, 404, 405, 3, 26, 13, 0, 405, 406, 3, 66, 33, 0, 406, 407, 5, 269, 0, 0, 407, 408, 5, 170, 0, 0, 408, 409, 3, 342, 171, 0, 409, 1320, 1, 0, 0, 0, 410, 411, 5, 96, 0, 0, 411, 413, 3, 26, 13, 0, 412, 414, 3, 162, 81, 0, 413, 412, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 3, 66, 33, 0, 416, 418, 7, 1, 0, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 1320, 1, 0, 0, 0, 419, 420, 5, 273, 0, 0, 420, 423, 7, 2, 0, 0, 421, 422, 7, 3, 0, 0, 422, 424, 3, 210, 105, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 429, 1, 0, 0, 0, 425, 427, 5, 163, 0, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 430, 3, 342, 171, 0, 429, 426, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 1320, 1, 0, 0, 0, 431, 433, 5, 59, 0, 0, 432, 434, 5, 298, 0, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 437, 5, 109, 0, 0, 436, 435, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 440, 5, 293, 0, 0, 439, 441, 3, 160, 80, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 447, 3, 70, 35, 0, 443, 444, 5, 2, 0, 0, 444, 445, 3, 300, 150, 0, 445, 446, 5, 3, 0, 0, 446, 448, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 450, 1, 0, 0, 0, 449, 451, 3, 36, 18, 0, 450, 449, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 457, 3, 38, 19, 0, 453, 455, 5, 20, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 3, 16, 8, 0, 457, 454, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 1320, 1, 0, 0, 0, 459, 460, 5, 59, 0, 0, 460, 462, 5, 293, 0, 0, 461, 463, 3, 160, 80, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 3, 70, 35, 0, 465, 466, 5, 163, 0, 0, 466, 477, 3, 72, 36, 0, 467, 476, 3, 36, 18, 0, 468, 476, 3, 206, 103, 0, 469, 476, 3, 58, 29, 0, 470, 471, 5, 170, 0, 0, 471, 476, 3, 342, 171, 0, 472, 473, 5, 297, 0, 0, 473, 476, 3, 42, 21, 0, 474, 476, 3, 40, 20, 0, 475, 467, 1, 0, 0, 0, 475, 468, 1, 0, 0, 0, 475, 469, 1, 0, 0, 0, 475, 470, 1, 0, 0, 0, 475, 472, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 1320, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 5, 59, 0, 0, 481, 483, 5, 208, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 485, 5, 244, 0, 0, 485, 486, 5, 293, 0, 0, 486, 491, 3, 70, 35, 0, 487, 488, 5, 2, 0, 0, 488, 489, 3, 300, 150, 0, 489, 490, 5, 3, 0, 0, 490, 492, 1, 0, 0, 0, 491, 487, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 1, 0, 0, 0, 493, 495, 3, 36, 18, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 501, 3, 38, 19, 0, 497, 499, 5, 20, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 502, 3, 16, 8, 0, 501, 498, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 1320, 1, 0, 0, 0, 503, 504, 5, 13, 0, 0, 504, 505, 5, 293, 0, 0, 505, 507, 3, 72, 36, 0, 506, 508, 3, 22, 11, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 5, 55, 0, 0, 510, 518, 5, 282, 0, 0, 511, 519, 5, 196, 0, 0, 512, 513, 5, 119, 0, 0, 513, 514, 5, 50, 0, 0, 514, 519, 3, 82, 41, 0, 515, 516, 5, 119, 0, 0, 516, 517, 5, 10, 0, 0, 517, 519, 5, 50, 0, 0, 518, 511, 1, 0, 0, 0, 518, 512, 1, 0, 0, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 1320, 1, 0, 0, 0, 520, 521, 5, 13, 0, 0, 521, 524, 5, 294, 0, 0, 522, 523, 7, 3, 0, 0, 523, 525, 3, 66, 33, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 5, 55, 0, 0, 527, 529, 5, 282, 0, 0, 528, 530, 5, 196, 0, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 1320, 1, 0, 0, 0, 531, 532, 5, 11, 0, 0, 532, 533, 5, 293, 0, 0, 533, 534, 3, 72, 36, 0, 534, 535, 5, 8, 0, 0, 535, 536, 5, 49, 0, 0, 536, 537, 3, 286, 143, 0, 537, 1320, 1, 0, 0, 0, 538, 539, 5, 11, 0, 0, 539, 540, 5, 293, 0, 0, 540, 541, 3, 72, 36, 0, 541, 542, 5, 8, 0, 0, 542, 543, 5, 50, 0, 0, 543, 544, 5, 2, 0, 0, 544, 545, 3, 284, 142, 0, 545, 546, 5, 3, 0, 0, 546, 1320, 1, 0, 0, 0, 547, 548, 5, 11, 0, 0, 548, 549, 5, 293, 0, 0, 549, 550, 3, 72, 36, 0, 550, 551, 5, 241, 0, 0, 551, 552, 5, 49, 0, 0, 552, 553, 3, 78, 39, 0, 553, 554, 5, 309, 0, 0, 554, 555, 3, 84, 42, 0, 555, 1320, 1, 0, 0, 0, 556, 557, 5, 11, 0, 0, 557, 558, 5, 293, 0, 0, 558, 559, 3, 72, 36, 0, 559, 560, 5, 96, 0, 0, 560, 562, 5, 49, 0, 0, 561, 563, 3, 162, 81, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 3, 78, 39, 0, 565, 1320, 1, 0, 0, 0, 566, 567, 5, 11, 0, 0, 567, 568, 5, 293, 0, 0, 568, 569, 3, 72, 36, 0, 569, 570, 5, 96, 0, 0, 570, 572, 5, 50, 0, 0, 571, 573, 3, 162, 81, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 5, 2, 0, 0, 575, 576, 3, 82, 41, 0, 576, 577, 5, 3, 0, 0, 577, 1320, 1, 0, 0, 0, 578, 583, 5, 11, 0, 0, 579, 580, 5, 293, 0, 0, 580, 584, 3, 72, 36, 0, 581, 582, 5, 338, 0, 0, 582, 584, 3, 76, 38, 0, 583, 579, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 5, 241, 0, 0, 586, 587, 5, 309, 0, 0, 587, 588, 3, 210, 105, 0, 588, 1320, 1, 0, 0, 0, 589, 594, 5, 11, 0, 0, 590, 591, 5, 293, 0, 0, 591, 595, 3, 72, 36, 0, 592, 593, 5, 338, 0, 0, 593, 595, 3, 76, 38, 0, 594, 590, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 269, 0, 0, 597, 598, 5, 297, 0, 0, 598, 599, 3, 42, 21, 0, 599, 1320, 1, 0, 0, 0, 600, 605, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 606, 3, 72, 36, 0, 603, 604, 5, 338, 0, 0, 604, 606, 3, 76, 38, 0, 605, 601, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 328, 0, 0, 608, 610, 5, 297, 0, 0, 609, 611, 3, 162, 81, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 42, 21, 0, 613, 1320, 1, 0, 0, 0, 614, 615, 5, 11, 0, 0, 615, 616, 5, 293, 0, 0, 616, 617, 3, 72, 36, 0, 617, 619, 7, 4, 0, 0, 618, 620, 5, 49, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 3, 78, 39, 0, 622, 624, 3, 340, 170, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 1320, 1, 0, 0, 0, 625, 626, 5, 11, 0, 0, 626, 627, 5, 293, 0, 0, 627, 629, 3, 72, 36, 0, 628, 630, 3, 22, 11, 0, 629, 628, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 633, 5, 39, 0, 0, 632, 634, 5, 49, 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 3, 78, 39, 0, 636, 638, 3, 298, 149, 0, 637, 639, 3, 278, 139, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 1320, 1, 0, 0, 0, 640, 641, 5, 11, 0, 0, 641, 642, 5, 293, 0, 0, 642, 644, 3, 72, 36, 0, 643, 645, 3, 22, 11, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 5, 244, 0, 0, 647, 648, 5, 50, 0, 0, 648, 649, 5, 2, 0, 0, 649, 650, 3, 288, 144, 0, 650, 651, 5, 3, 0, 0, 651, 1320, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 293, 0, 0, 654, 656, 3, 72, 36, 0, 655, 657, 3, 22, 11, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 5, 269, 0, 0, 659, 660, 5, 266, 0, 0, 660, 664, 3, 342, 171, 0, 661, 662, 5, 346, 0, 0, 662, 663, 5, 267, 0, 0, 663, 665, 3, 42, 21, 0, 664, 661, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1320, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 293, 0, 0, 668, 670, 3, 72, 36, 0, 669, 671, 3, 22, 11, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 269, 0, 0, 673, 674, 5, 267, 0, 0, 674, 675, 3, 42, 21, 0, 675, 1320, 1, 0, 0, 0, 676, 681, 5, 11, 0, 0, 677, 678, 5, 293, 0, 0, 678, 682, 3, 72, 36, 0, 679, 680, 5, 338, 0, 0, 680, 682, 3, 76, 38, 0, 681, 677, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 685, 5, 8, 0, 0, 684, 686, 3, 160, 80, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 689, 3, 20, 10, 0, 688, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 1320, 1, 0, 0, 0, 692, 693, 5, 11, 0, 0, 693, 694, 5, 293, 0, 0, 694, 695, 3, 72, 36, 0, 695, 696, 3, 22, 11, 0, 696, 697, 5, 241, 0, 0, 697, 698, 5, 309, 0, 0, 698, 699, 3, 22, 11, 0, 699, 1320, 1, 0, 0, 0, 700, 705, 5, 11, 0, 0, 701, 702, 5, 293, 0, 0, 702, 706, 3, 72, 36, 0, 703, 704, 5, 338, 0, 0, 704, 706, 3, 76, 38, 0, 705, 701, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 709, 5, 96, 0, 0, 708, 710, 3, 162, 81, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 716, 3, 22, 11, 0, 712, 713, 5, 4, 0, 0, 713, 715, 3, 22, 11, 0, 714, 712, 1, 0, 0, 0, 715, 718, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 719, 721, 5, 230, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 1320, 1, 0, 0, 0, 722, 723, 5, 11, 0, 0, 723, 724, 5, 293, 0, 0, 724, 726, 3, 72, 36, 0, 725, 727, 3, 22, 11, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 269, 0, 0, 729, 730, 5, 170, 0, 0, 730, 731, 3, 342, 171, 0, 731, 1320, 1, 0, 0, 0, 732, 733, 5, 11, 0, 0, 733, 734, 5, 293, 0, 0, 734, 735, 3, 72, 36, 0, 735, 736, 5, 237, 0, 0, 736, 737, 5, 219, 0, 0, 737, 1320, 1, 0, 0, 0, 738, 739, 5, 11, 0, 0, 739, 740, 5, 176, 0, 0, 740, 741, 5, 338, 0, 0, 741, 742, 3, 76, 38, 0, 742, 743, 7, 5, 0, 0, 743, 744, 5, 248, 0, 0, 744, 1320, 1, 0, 0, 0, 745, 746, 5, 11, 0, 0, 746, 747, 5, 176, 0, 0, 747, 748, 5, 338, 0, 0, 748, 749, 3, 76, 38, 0, 749, 750, 5, 269, 0, 0, 750, 751, 5, 297, 0, 0, 751, 752, 3, 42, 21, 0, 752, 1320, 1, 0, 0, 0, 753, 754, 5, 96, 0, 0, 754, 756, 5, 293, 0, 0, 755, 757, 3, 162, 81, 0, 756, 755, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 3, 72, 36, 0, 759, 761, 5, 230, 0, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 1320, 1, 0, 0, 0, 762, 763, 5, 96, 0, 0, 763, 765, 5, 338, 0, 0, 764, 766, 3, 162, 81, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 1320, 3, 76, 38, 0, 768, 769, 5, 96, 0, 0, 769, 770, 5, 176, 0, 0, 770, 772, 5, 338, 0, 0, 771, 773, 3, 162, 81, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 1320, 3, 76, 38, 0, 775, 778, 5, 59, 0, 0, 776, 777, 5, 208, 0, 0, 777, 779, 5, 244, 0, 0, 778, 776, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 784, 1, 0, 0, 0, 780, 782, 5, 128, 0, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 5, 298, 0, 0, 784, 781, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 5, 338, 0, 0, 787, 789, 3, 160, 80, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 3, 74, 37, 0, 791, 793, 3, 188, 94, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 803, 1, 0, 0, 0, 794, 795, 5, 51, 0, 0, 795, 802, 3, 342, 171, 0, 796, 797, 5, 218, 0, 0, 797, 798, 5, 203, 0, 0, 798, 802, 3, 180, 90, 0, 799, 800, 5, 297, 0, 0, 800, 802, 3, 42, 21, 0, 801, 794, 1, 0, 0, 0, 801, 796, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 806, 807, 5, 20, 0, 0, 807, 808, 3, 16, 8, 0, 808, 1320, 1, 0, 0, 0, 809, 812, 5, 59, 0, 0, 810, 811, 5, 208, 0, 0, 811, 813, 5, 244, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 5, 128, 0, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 298, 0, 0, 818, 819, 5, 338, 0, 0, 819, 824, 3, 74, 37, 0, 820, 821, 5, 2, 0, 0, 821, 822, 3, 296, 148, 0, 822, 823, 5, 3, 0, 0, 823, 825, 1, 0, 0, 0, 824, 820, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 829, 3, 36, 18, 0, 827, 828, 5, 207, 0, 0, 828, 830, 3, 42, 21, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 1320, 1, 0, 0, 0, 831, 832, 5, 11, 0, 0, 832, 833, 5, 338, 0, 0, 833, 835, 3, 76, 38, 0, 834, 836, 5, 20, 0, 0, 835, 834, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 3, 16, 8, 0, 838, 1320, 1, 0, 0, 0, 839, 842, 5, 59, 0, 0, 840, 841, 5, 208, 0, 0, 841, 843, 5, 244, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 846, 5, 298, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 849, 5, 125, 0, 0, 848, 850, 3, 160, 80, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 3, 324, 162, 0, 852, 853, 5, 20, 0, 0, 853, 867, 3, 342, 171, 0, 854, 855, 5, 332, 0, 0, 855, 856, 3, 332, 166, 0, 856, 857, 3, 342, 171, 0, 857, 864, 1, 0, 0, 0, 858, 859, 5, 4, 0, 0, 859, 860, 3, 332, 166, 0, 860, 861, 3, 342, 171, 0, 861, 863, 1, 0, 0, 0, 862, 858, 1, 0, 0, 0, 863, 866, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 867, 854, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 1320, 1, 0, 0, 0, 869, 870, 5, 59, 0, 0, 870, 871, 5, 176, 0, 0, 871, 873, 5, 338, 0, 0, 872, 874, 3, 160, 80, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 877, 3, 74, 37, 0, 876, 878, 3, 36, 18, 0, 877, 876, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 896, 1, 0, 0, 0, 879, 880, 5, 207, 0, 0, 880, 895, 3, 42, 21, 0, 881, 882, 5, 218, 0, 0, 882, 883, 5, 31, 0, 0, 883, 895, 3, 224, 112, 0, 884, 895, 3, 10, 5, 0, 885, 895, 3, 8, 4, 0, 886, 895, 3, 206, 103, 0, 887, 895, 3, 58, 29, 0, 888, 889, 5, 170, 0, 0, 889, 895, 3, 342, 171, 0, 890, 891, 5, 51, 0, 0, 891, 895, 3, 342, 171, 0, 892, 893, 5, 297, 0, 0, 893, 895, 3, 42, 21, 0, 894, 879, 1, 0, 0, 0, 894, 881, 1, 0, 0, 0, 894, 884, 1, 0, 0, 0, 894, 885, 1, 0, 0, 0, 894, 886, 1, 0, 0, 0, 894, 887, 1, 0, 0, 0, 894, 888, 1, 0, 0, 0, 894, 890, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 20, 0, 0, 900, 901, 3, 16, 8, 0, 901, 1320, 1, 0, 0, 0, 902, 904, 5, 96, 0, 0, 903, 905, 5, 298, 0, 0, 904, 903, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 908, 5, 125, 0, 0, 907, 909, 3, 162, 81, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 1320, 3, 322, 161, 0, 911, 914, 5, 81, 0, 0, 912, 913, 5, 208, 0, 0, 913, 915, 5, 244, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 1, 0, 0, 0, 916, 918, 5, 336, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 3, 322, 161, 0, 920, 922, 3, 282, 141, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 924, 1, 0, 0, 0, 923, 925, 3, 294, 147, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 1320, 1, 0, 0, 0, 926, 927, 5, 96, 0, 0, 927, 928, 5, 298, 0, 0, 928, 930, 5, 336, 0, 0, 929, 931, 3, 162, 81, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 935, 1, 0, 0, 0, 932, 936, 3, 72, 36, 0, 933, 936, 3, 76, 38, 0, 934, 936, 3, 322, 161, 0, 935, 932, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 1320, 1, 0, 0, 0, 937, 939, 5, 106, 0, 0, 938, 940, 7, 6, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1320, 3, 4, 2, 0, 942, 943, 5, 273, 0, 0, 943, 946, 5, 294, 0, 0, 944, 945, 7, 3, 0, 0, 945, 947, 3, 66, 33, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 952, 1, 0, 0, 0, 948, 950, 5, 163, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 953, 3, 342, 171, 0, 952, 949, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 1320, 1, 0, 0, 0, 954, 955, 5, 273, 0, 0, 955, 956, 5, 293, 0, 0, 956, 959, 5, 108, 0, 0, 957, 958, 7, 3, 0, 0, 958, 960, 3, 66, 33, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 5, 163, 0, 0, 962, 964, 3, 342, 171, 0, 963, 965, 3, 22, 11, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 1320, 1, 0, 0, 0, 966, 967, 5, 273, 0, 0, 967, 968, 5, 297, 0, 0, 968, 973, 3, 72, 36, 0, 969, 970, 5, 2, 0, 0, 970, 971, 3, 46, 23, 0, 971, 972, 5, 3, 0, 0, 972, 974, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1320, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 50, 0, 0, 977, 978, 7, 3, 0, 0, 978, 981, 3, 72, 36, 0, 979, 980, 7, 3, 0, 0, 980, 982, 3, 66, 33, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1320, 1, 0, 0, 0, 983, 984, 5, 273, 0, 0, 984, 987, 5, 339, 0, 0, 985, 986, 7, 3, 0, 0, 986, 988, 3, 66, 33, 0, 987, 985, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 993, 1, 0, 0, 0, 989, 991, 5, 163, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 3, 342, 171, 0, 993, 990, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1320, 1, 0, 0, 0, 995, 996, 5, 273, 0, 0, 996, 997, 5, 219, 0, 0, 997, 999, 3, 72, 36, 0, 998, 1000, 3, 22, 11, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1320, 1, 0, 0, 0, 1001, 1003, 5, 273, 0, 0, 1002, 1004, 7, 7, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1008, 5, 126, 0, 0, 1006, 1007, 7, 3, 0, 0, 1007, 1009, 3, 66, 33, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1017, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1016, 3, 210, 105, 0, 1014, 1016, 3, 342, 171, 0, 1015, 1013, 1, 0, 0, 0, 1015, 1014, 1, 0, 0, 0, 1016, 1018, 1, 0, 0, 0, 1017, 1011, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1320, 1, 0, 0, 0, 1019, 1020, 5, 273, 0, 0, 1020, 1021, 5, 59, 0, 0, 1021, 1022, 5, 293, 0, 0, 1022, 1025, 3, 72, 36, 0, 1023, 1024, 5, 20, 0, 0, 1024, 1026, 5, 266, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1320, 1, 0, 0, 0, 1027, 1028, 5, 273, 0, 0, 1028, 1029, 5, 62, 0, 0, 1029, 1320, 3, 26, 13, 0, 1030, 1031, 5, 273, 0, 0, 1031, 1036, 5, 38, 0, 0, 1032, 1034, 5, 163, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 3, 342, 171, 0, 1036, 1033, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1320, 1, 0, 0, 0, 1038, 1039, 5, 273, 0, 0, 1039, 1040, 5, 176, 0, 0, 1040, 1043, 5, 339, 0, 0, 1041, 1042, 7, 3, 0, 0, 1042, 1044, 3, 66, 33, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1049, 1, 0, 0, 0, 1045, 1047, 5, 163, 0, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 342, 171, 0, 1049, 1046, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1320, 1, 0, 0, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1053, 5, 59, 0, 0, 1053, 1054, 5, 176, 0, 0, 1054, 1055, 5, 338, 0, 0, 1055, 1058, 3, 76, 38, 0, 1056, 1057, 5, 20, 0, 0, 1057, 1059, 5, 266, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1320, 1, 0, 0, 0, 1060, 1061, 7, 8, 0, 0, 1061, 1063, 5, 125, 0, 0, 1062, 1064, 5, 108, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1320, 3, 28, 14, 0, 1066, 1067, 7, 8, 0, 0, 1067, 1069, 5, 72, 0, 0, 1068, 1070, 5, 108, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1320, 3, 66, 33, 0, 1072, 1074, 7, 8, 0, 0, 1073, 1075, 5, 293, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1078, 7, 9, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 72, 36, 0, 1080, 1082, 3, 22, 11, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 30, 15, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1320, 1, 0, 0, 0, 1086, 1088, 7, 8, 0, 0, 1087, 1089, 5, 232, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1320, 3, 16, 8, 0, 1091, 1092, 5, 51, 0, 0, 1092, 1098, 5, 203, 0, 0, 1093, 1094, 3, 26, 13, 0, 1094, 1095, 3, 66, 33, 0, 1095, 1099, 1, 0, 0, 0, 1096, 1097, 5, 293, 0, 0, 1097, 1099, 3, 72, 36, 0, 1098, 1093, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1103, 5, 153, 0, 0, 1101, 1104, 3, 342, 171, 0, 1102, 1104, 5, 198, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1320, 1, 0, 0, 0, 1105, 1106, 5, 240, 0, 0, 1106, 1107, 5, 293, 0, 0, 1107, 1320, 3, 72, 36, 0, 1108, 1109, 5, 240, 0, 0, 1109, 1110, 5, 125, 0, 0, 1110, 1320, 3, 322, 161, 0, 1111, 1119, 5, 240, 0, 0, 1112, 1120, 3, 342, 171, 0, 1113, 1115, 9, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 1118, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1117, 1120, 1, 0, 0, 0, 1118, 1116, 1, 0, 0, 0, 1119, 1112, 1, 0, 0, 0, 1119, 1116, 1, 0, 0, 0, 1120, 1320, 1, 0, 0, 0, 1121, 1122, 5, 240, 0, 0, 1122, 1123, 5, 176, 0, 0, 1123, 1124, 5, 338, 0, 0, 1124, 1320, 3, 76, 38, 0, 1125, 1127, 5, 33, 0, 0, 1126, 1128, 5, 159, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 5, 293, 0, 0, 1130, 1133, 3, 72, 36, 0, 1131, 1132, 5, 207, 0, 0, 1132, 1134, 3, 42, 21, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1139, 1, 0, 0, 0, 1135, 1137, 5, 20, 0, 0, 1136, 1135, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 3, 16, 8, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1320, 1, 0, 0, 0, 1141, 1142, 5, 322, 0, 0, 1142, 1144, 5, 293, 0, 0, 1143, 1145, 3, 162, 81, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1320, 3, 72, 36, 0, 1147, 1148, 5, 43, 0, 0, 1148, 1320, 5, 33, 0, 0, 1149, 1150, 5, 168, 0, 0, 1150, 1152, 5, 70, 0, 0, 1151, 1153, 5, 169, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 5, 145, 0, 0, 1155, 1157, 3, 342, 171, 0, 1156, 1158, 5, 216, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 152, 0, 0, 1160, 1161, 5, 293, 0, 0, 1161, 1163, 3, 72, 36, 0, 1162, 1164, 3, 22, 11, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1320, 1, 0, 0, 0, 1165, 1166, 5, 317, 0, 0, 1166, 1167, 5, 293, 0, 0, 1167, 1169, 3, 72, 36, 0, 1168, 1170, 3, 22, 11, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1320, 1, 0, 0, 0, 1171, 1173, 5, 188, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 5, 242, 0, 0, 1175, 1176, 5, 293, 0, 0, 1176, 1179, 3, 72, 36, 0, 1177, 1178, 7, 10, 0, 0, 1178, 1180, 5, 219, 0, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1320, 1, 0, 0, 0, 1181, 1182, 7, 11, 0, 0, 1182, 1186, 3, 332, 166, 0, 1183, 1185, 9, 0, 0, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1320, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 269, 0, 0, 1190, 1194, 5, 253, 0, 0, 1191, 1193, 9, 0, 0, 0, 1192, 1191, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1320, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1198, 5, 269, 0, 0, 1198, 1199, 5, 301, 0, 0, 1199, 1200, 5, 350, 0, 0, 1200, 1320, 3, 262, 131, 0, 1201, 1202, 5, 269, 0, 0, 1202, 1203, 5, 301, 0, 0, 1203, 1206, 5, 350, 0, 0, 1204, 1207, 3, 342, 171, 0, 1205, 1207, 5, 169, 0, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1320, 1, 0, 0, 0, 1208, 1209, 5, 269, 0, 0, 1209, 1210, 5, 301, 0, 0, 1210, 1214, 5, 350, 0, 0, 1211, 1213, 9, 0, 0, 0, 1212, 1211, 1, 0, 0, 0, 1213, 1216, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1320, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1218, 5, 269, 0, 0, 1218, 1219, 7, 12, 0, 0, 1219, 1320, 3, 120, 60, 0, 1220, 1221, 5, 269, 0, 0, 1221, 1222, 7, 12, 0, 0, 1222, 1223, 5, 2, 0, 0, 1223, 1224, 3, 208, 104, 0, 1224, 1225, 5, 3, 0, 0, 1225, 1226, 5, 352, 0, 0, 1226, 1227, 5, 2, 0, 0, 1227, 1228, 3, 16, 8, 0, 1228, 1229, 5, 3, 0, 0, 1229, 1320, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 3, 336, 168, 0, 1232, 1233, 5, 352, 0, 0, 1233, 1234, 5, 389, 0, 0, 1234, 1320, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1244, 3, 336, 168, 0, 1237, 1241, 5, 352, 0, 0, 1238, 1240, 9, 0, 0, 0, 1239, 1238, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1237, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1320, 1, 0, 0, 0, 1246, 1250, 5, 269, 0, 0, 1247, 1249, 9, 0, 0, 0, 1248, 1247, 1, 0, 0, 0, 1249, 1252, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1250, 1248, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1250, 1, 0, 0, 0, 1253, 1254, 5, 352, 0, 0, 1254, 1320, 5, 389, 0, 0, 1255, 1259, 5, 269, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1320, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 245, 0, 0, 1263, 1320, 3, 336, 168, 0, 1264, 1268, 5, 245, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1320, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 59, 0, 0, 1272, 1274, 5, 142, 0, 0, 1273, 1275, 3, 160, 80, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 3, 332, 166, 0, 1277, 1279, 5, 203, 0, 0, 1278, 1280, 5, 293, 0, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1284, 3, 72, 36, 0, 1282, 1283, 5, 332, 0, 0, 1283, 1285, 3, 332, 166, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 5, 2, 0, 0, 1287, 1288, 3, 212, 106, 0, 1288, 1291, 5, 3, 0, 0, 1289, 1290, 5, 207, 0, 0, 1290, 1292, 3, 42, 21, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1320, 1, 0, 0, 0, 1293, 1294, 5, 96, 0, 0, 1294, 1296, 5, 142, 0, 0, 1295, 1297, 3, 162, 81, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 332, 166, 0, 1299, 1301, 5, 203, 0, 0, 1300, 1302, 5, 293, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 3, 72, 36, 0, 1304, 1320, 1, 0, 0, 0, 1305, 1306, 5, 205, 0, 0, 1306, 1308, 3, 72, 36, 0, 1307, 1309, 3, 124, 62, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 3, 312, 156, 0, 1311, 1320, 1, 0, 0, 0, 1312, 1316, 3, 6, 3, 0, 1313, 1315, 9, 0, 0, 0, 1314, 1313, 1, 0, 0, 0, 1315, 1318, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1319, 362, 1, 0, 0, 0, 1319, 364, 1, 0, 0, 0, 1319, 367, 1, 0, 0, 0, 1319, 372, 1, 0, 0, 0, 1319, 378, 1, 0, 0, 0, 1319, 396, 1, 0, 0, 0, 1319, 403, 1, 0, 0, 0, 1319, 410, 1, 0, 0, 0, 1319, 419, 1, 0, 0, 0, 1319, 431, 1, 0, 0, 0, 1319, 459, 1, 0, 0, 0, 1319, 482, 1, 0, 0, 0, 1319, 503, 1, 0, 0, 0, 1319, 520, 1, 0, 0, 0, 1319, 531, 1, 0, 0, 0, 1319, 538, 1, 0, 0, 0, 1319, 547, 1, 0, 0, 0, 1319, 556, 1, 0, 0, 0, 1319, 566, 1, 0, 0, 0, 1319, 578, 1, 0, 0, 0, 1319, 589, 1, 0, 0, 0, 1319, 600, 1, 0, 0, 0, 1319, 614, 1, 0, 0, 0, 1319, 625, 1, 0, 0, 0, 1319, 640, 1, 0, 0, 0, 1319, 652, 1, 0, 0, 0, 1319, 666, 1, 0, 0, 0, 1319, 676, 1, 0, 0, 0, 1319, 692, 1, 0, 0, 0, 1319, 700, 1, 0, 0, 0, 1319, 722, 1, 0, 0, 0, 1319, 732, 1, 0, 0, 0, 1319, 738, 1, 0, 0, 0, 1319, 745, 1, 0, 0, 0, 1319, 753, 1, 0, 0, 0, 1319, 762, 1, 0, 0, 0, 1319, 768, 1, 0, 0, 0, 1319, 775, 1, 0, 0, 0, 1319, 809, 1, 0, 0, 0, 1319, 831, 1, 0, 0, 0, 1319, 839, 1, 0, 0, 0, 1319, 869, 1, 0, 0, 0, 1319, 902, 1, 0, 0, 0, 1319, 911, 1, 0, 0, 0, 1319, 926, 1, 0, 0, 0, 1319, 937, 1, 0, 0, 0, 1319, 942, 1, 0, 0, 0, 1319, 954, 1, 0, 0, 0, 1319, 966, 1, 0, 0, 0, 1319, 975, 1, 0, 0, 0, 1319, 983, 1, 0, 0, 0, 1319, 995, 1, 0, 0, 0, 1319, 1001, 1, 0, 0, 0, 1319, 1019, 1, 0, 0, 0, 1319, 1027, 1, 0, 0, 0, 1319, 1030, 1, 0, 0, 0, 1319, 1038, 1, 0, 0, 0, 1319, 1051, 1, 0, 0, 0, 1319, 1060, 1, 0, 0, 0, 1319, 1066, 1, 0, 0, 0, 1319, 1072, 1, 0, 0, 0, 1319, 1086, 1, 0, 0, 0, 1319, 1091, 1, 0, 0, 0, 1319, 1105, 1, 0, 0, 0, 1319, 1108, 1, 0, 0, 0, 1319, 1111, 1, 0, 0, 0, 1319, 1121, 1, 0, 0, 0, 1319, 1125, 1, 0, 0, 0, 1319, 1141, 1, 0, 0, 0, 1319, 1147, 1, 0, 0, 0, 1319, 1149, 1, 0, 0, 0, 1319, 1165, 1, 0, 0, 0, 1319, 1172, 1, 0, 0, 0, 1319, 1181, 1, 0, 0, 0, 1319, 1189, 1, 0, 0, 0, 1319, 1197, 1, 0, 0, 0, 1319, 1201, 1, 0, 0, 0, 1319, 1208, 1, 0, 0, 0, 1319, 1217, 1, 0, 0, 0, 1319, 1220, 1, 0, 0, 0, 1319, 1230, 1, 0, 0, 0, 1319, 1235, 1, 0, 0, 0, 1319, 1246, 1, 0, 0, 0, 1319, 1255, 1, 0, 0, 0, 1319, 1262, 1, 0, 0, 0, 1319, 1264, 1, 0, 0, 0, 1319, 1271, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1305, 1, 0, 0, 0, 1319, 1312, 1, 0, 0, 0, 1320, 5, 1, 0, 0, 0, 1321, 1322, 7, 13, 0, 0, 1322, 1415, 5, 253, 0, 0, 1323, 1325, 7, 14, 0, 0, 1324, 1326, 5, 253, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1415, 1, 0, 0, 0, 1327, 1328, 5, 273, 0, 0, 1328, 1415, 7, 15, 0, 0, 1329, 1330, 5, 273, 0, 0, 1330, 1332, 5, 253, 0, 0, 1331, 1333, 5, 129, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1415, 1, 0, 0, 0, 1334, 1336, 5, 273, 0, 0, 1335, 1337, 5, 62, 0, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1415, 5, 254, 0, 0, 1339, 1340, 5, 273, 0, 0, 1340, 1341, 5, 59, 0, 0, 1341, 1415, 5, 293, 0, 0, 1342, 1343, 7, 16, 0, 0, 1343, 1415, 5, 142, 0, 0, 1344, 1345, 7, 17, 0, 0, 1345, 1415, 5, 293, 0, 0, 1346, 1347, 7, 18, 0, 0, 1347, 1415, 5, 72, 0, 0, 1348, 1349, 7, 13, 0, 0, 1349, 1350, 5, 298, 0, 0, 1350, 1415, 5, 175, 0, 0, 1351, 1352, 5, 11, 0, 0, 1352, 1353, 5, 293, 0, 0, 1353, 1354, 3, 72, 36, 0, 1354, 1355, 5, 197, 0, 0, 1355, 1356, 7, 19, 0, 0, 1356, 1415, 1, 0, 0, 0, 1357, 1358, 5, 11, 0, 0, 1358, 1359, 5, 293, 0, 0, 1359, 1360, 3, 72, 36, 0, 1360, 1361, 7, 20, 0, 0, 1361, 1362, 5, 31, 0, 0, 1362, 1415, 1, 0, 0, 0, 1363, 1364, 5, 11, 0, 0, 1364, 1365, 5, 293, 0, 0, 1365, 1366, 3, 72, 36, 0, 1366, 1367, 5, 275, 0, 0, 1367, 1368, 5, 31, 0, 0, 1368, 1415, 1, 0, 0, 0, 1369, 1370, 5, 11, 0, 0, 1370, 1371, 5, 293, 0, 0, 1371, 1372, 3, 72, 36, 0, 1372, 1373, 5, 197, 0, 0, 1373, 1374, 5, 283, 0, 0, 1374, 1375, 5, 20, 0, 0, 1375, 1376, 5, 89, 0, 0, 1376, 1415, 1, 0, 0, 0, 1377, 1378, 5, 11, 0, 0, 1378, 1379, 5, 293, 0, 0, 1379, 1380, 3, 72, 36, 0, 1380, 1381, 5, 269, 0, 0, 1381, 1382, 5, 275, 0, 0, 1382, 1383, 5, 170, 0, 0, 1383, 1415, 1, 0, 0, 0, 1384, 1385, 5, 11, 0, 0, 1385, 1386, 5, 293, 0, 0, 1386, 1387, 3, 72, 36, 0, 1387, 1388, 7, 21, 0, 0, 1388, 1389, 5, 217, 0, 0, 1389, 1415, 1, 0, 0, 0, 1390, 1391, 5, 11, 0, 0, 1391, 1392, 5, 293, 0, 0, 1392, 1393, 3, 72, 36, 0, 1393, 1394, 5, 310, 0, 0, 1394, 1415, 1, 0, 0, 0, 1395, 1396, 5, 11, 0, 0, 1396, 1397, 5, 293, 0, 0, 1397, 1399, 3, 72, 36, 0, 1398, 1400, 3, 22, 11, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1407, 1, 0, 0, 0, 1401, 1408, 5, 53, 0, 0, 1402, 1408, 5, 56, 0, 0, 1403, 1404, 5, 269, 0, 0, 1404, 1408, 5, 115, 0, 0, 1405, 1406, 5, 244, 0, 0, 1406, 1408, 5, 50, 0, 0, 1407, 1401, 1, 0, 0, 0, 1407, 1402, 1, 0, 0, 0, 1407, 1403, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1415, 1, 0, 0, 0, 1409, 1410, 5, 281, 0, 0, 1410, 1415, 5, 312, 0, 0, 1411, 1415, 5, 52, 0, 0, 1412, 1415, 5, 255, 0, 0, 1413, 1415, 5, 88, 0, 0, 1414, 1321, 1, 0, 0, 0, 1414, 1323, 1, 0, 0, 0, 1414, 1327, 1, 0, 0, 0, 1414, 1329, 1, 0, 0, 0, 1414, 1334, 1, 0, 0, 0, 1414, 1339, 1, 0, 0, 0, 1414, 1342, 1, 0, 0, 0, 1414, 1344, 1, 0, 0, 0, 1414, 1346, 1, 0, 0, 0, 1414, 1348, 1, 0, 0, 0, 1414, 1351, 1, 0, 0, 0, 1414, 1357, 1, 0, 0, 0, 1414, 1363, 1, 0, 0, 0, 1414, 1369, 1, 0, 0, 0, 1414, 1377, 1, 0, 0, 0, 1414, 1384, 1, 0, 0, 0, 1414, 1390, 1, 0, 0, 0, 1414, 1395, 1, 0, 0, 0, 1414, 1409, 1, 0, 0, 0, 1414, 1411, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 7, 1, 0, 0, 0, 1416, 1417, 5, 45, 0, 0, 1417, 1418, 5, 31, 0, 0, 1418, 1422, 3, 180, 90, 0, 1419, 1420, 5, 279, 0, 0, 1420, 1421, 5, 31, 0, 0, 1421, 1423, 3, 184, 92, 0, 1422, 1419, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 5, 152, 0, 0, 1425, 1426, 5, 382, 0, 0, 1426, 1427, 5, 30, 0, 0, 1427, 9, 1, 0, 0, 0, 1428, 1429, 5, 275, 0, 0, 1429, 1430, 5, 31, 0, 0, 1430, 1431, 3, 180, 90, 0, 1431, 1434, 5, 203, 0, 0, 1432, 1435, 3, 54, 27, 0, 1433, 1435, 3, 56, 28, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 283, 0, 0, 1437, 1438, 5, 20, 0, 0, 1438, 1440, 5, 89, 0, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 11, 1, 0, 0, 0, 1441, 1442, 5, 170, 0, 0, 1442, 1443, 3, 342, 171, 0, 1443, 13, 1, 0, 0, 0, 1444, 1445, 5, 51, 0, 0, 1445, 1446, 3, 342, 171, 0, 1446, 15, 1, 0, 0, 0, 1447, 1449, 3, 32, 16, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 3, 96, 48, 0, 1451, 1452, 3, 88, 44, 0, 1452, 17, 1, 0, 0, 0, 1453, 1454, 5, 147, 0, 0, 1454, 1456, 5, 216, 0, 0, 1455, 1457, 5, 293, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1463, 3, 72, 36, 0, 1459, 1461, 3, 22, 11, 0, 1460, 1462, 3, 160, 80, 0, 1461, 1460, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1464, 1, 0, 0, 0, 1463, 1459, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1471, 1, 0, 0, 0, 1465, 1466, 5, 31, 0, 0, 1466, 1472, 5, 189, 0, 0, 1467, 1468, 5, 2, 0, 0, 1468, 1469, 3, 82, 41, 0, 1469, 1470, 5, 3, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1465, 1, 0, 0, 0, 1471, 1467, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1530, 1, 0, 0, 0, 1473, 1474, 5, 147, 0, 0, 1474, 1476, 5, 152, 0, 0, 1475, 1477, 5, 293, 0, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 3, 72, 36, 0, 1479, 1481, 3, 22, 11, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1484, 3, 160, 80, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1491, 1, 0, 0, 0, 1485, 1486, 5, 31, 0, 0, 1486, 1492, 5, 189, 0, 0, 1487, 1488, 5, 2, 0, 0, 1488, 1489, 3, 82, 41, 0, 1489, 1490, 5, 3, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1485, 1, 0, 0, 0, 1491, 1487, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1530, 1, 0, 0, 0, 1493, 1494, 5, 147, 0, 0, 1494, 1496, 5, 152, 0, 0, 1495, 1497, 5, 293, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 3, 72, 36, 0, 1499, 1500, 5, 244, 0, 0, 1500, 1501, 3, 124, 62, 0, 1501, 1530, 1, 0, 0, 0, 1502, 1503, 5, 147, 0, 0, 1503, 1505, 5, 216, 0, 0, 1504, 1506, 5, 169, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 90, 0, 0, 1508, 1510, 3, 342, 171, 0, 1509, 1511, 3, 206, 103, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1514, 3, 58, 29, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1530, 1, 0, 0, 0, 1515, 1516, 5, 147, 0, 0, 1516, 1518, 5, 216, 0, 0, 1517, 1519, 5, 169, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 5, 90, 0, 0, 1521, 1523, 3, 342, 171, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 3, 36, 18, 0, 1525, 1526, 5, 207, 0, 0, 1526, 1528, 3, 42, 21, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1530, 1, 0, 0, 0, 1529, 1453, 1, 0, 0, 0, 1529, 1473, 1, 0, 0, 0, 1529, 1493, 1, 0, 0, 0, 1529, 1502, 1, 0, 0, 0, 1529, 1515, 1, 0, 0, 0, 1530, 19, 1, 0, 0, 0, 1531, 1534, 3, 22, 11, 0, 1532, 1533, 5, 170, 0, 0, 1533, 1535, 3, 342, 171, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 21, 1, 0, 0, 0, 1536, 1537, 5, 217, 0, 0, 1537, 1538, 5, 2, 0, 0, 1538, 1543, 3, 24, 12, 0, 1539, 1540, 5, 4, 0, 0, 1540, 1542, 3, 24, 12, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1547, 5, 3, 0, 0, 1547, 23, 1, 0, 0, 0, 1548, 1551, 3, 332, 166, 0, 1549, 1550, 5, 352, 0, 0, 1550, 1552, 3, 252, 126, 0, 1551, 1549, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1558, 1, 0, 0, 0, 1553, 1554, 3, 332, 166, 0, 1554, 1555, 5, 352, 0, 0, 1555, 1556, 5, 82, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1548, 1, 0, 0, 0, 1557, 1553, 1, 0, 0, 0, 1558, 25, 1, 0, 0, 0, 1559, 1560, 7, 22, 0, 0, 1560, 27, 1, 0, 0, 0, 1561, 1567, 3, 86, 43, 0, 1562, 1567, 3, 342, 171, 0, 1563, 1567, 3, 254, 127, 0, 1564, 1567, 3, 256, 128, 0, 1565, 1567, 3, 258, 129, 0, 1566, 1561, 1, 0, 0, 0, 1566, 1562, 1, 0, 0, 0, 1566, 1563, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1565, 1, 0, 0, 0, 1567, 29, 1, 0, 0, 0, 1568, 1573, 3, 332, 166, 0, 1569, 1570, 5, 5, 0, 0, 1570, 1572, 3, 332, 166, 0, 1571, 1569, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 31, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 346, 0, 0, 1577, 1582, 3, 34, 17, 0, 1578, 1579, 5, 4, 0, 0, 1579, 1581, 3, 34, 17, 0, 1580, 1578, 1, 0, 0, 0, 1581, 1584, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 33, 1, 0, 0, 0, 1584, 1582, 1, 0, 0, 0, 1585, 1587, 3, 328, 164, 0, 1586, 1588, 3, 180, 90, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1591, 5, 20, 0, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 5, 2, 0, 0, 1593, 1594, 3, 16, 8, 0, 1594, 1595, 5, 3, 0, 0, 1595, 35, 1, 0, 0, 0, 1596, 1597, 5, 332, 0, 0, 1597, 1598, 3, 210, 105, 0, 1598, 37, 1, 0, 0, 0, 1599, 1600, 5, 207, 0, 0, 1600, 1616, 3, 50, 25, 0, 1601, 1602, 5, 218, 0, 0, 1602, 1603, 5, 31, 0, 0, 1603, 1616, 3, 224, 112, 0, 1604, 1616, 3, 10, 5, 0, 1605, 1616, 3, 8, 4, 0, 1606, 1616, 3, 206, 103, 0, 1607, 1616, 3, 58, 29, 0, 1608, 1609, 5, 170, 0, 0, 1609, 1616, 3, 342, 171, 0, 1610, 1611, 5, 51, 0, 0, 1611, 1616, 3, 342, 171, 0, 1612, 1613, 5, 297, 0, 0, 1613, 1616, 3, 42, 21, 0, 1614, 1616, 3, 40, 20, 0, 1615, 1599, 1, 0, 0, 0, 1615, 1601, 1, 0, 0, 0, 1615, 1604, 1, 0, 0, 0, 1615, 1605, 1, 0, 0, 0, 1615, 1606, 1, 0, 0, 0, 1615, 1607, 1, 0, 0, 0, 1615, 1608, 1, 0, 0, 0, 1615, 1610, 1, 0, 0, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 39, 1, 0, 0, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1621, 5, 162, 0, 0, 1621, 1622, 5, 382, 0, 0, 1622, 41, 1, 0, 0, 0, 1623, 1624, 5, 2, 0, 0, 1624, 1629, 3, 44, 22, 0, 1625, 1626, 5, 4, 0, 0, 1626, 1628, 3, 44, 22, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1631, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1632, 1633, 5, 3, 0, 0, 1633, 43, 1, 0, 0, 0, 1634, 1639, 3, 46, 23, 0, 1635, 1637, 5, 352, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 3, 48, 24, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 45, 1, 0, 0, 0, 1641, 1646, 3, 332, 166, 0, 1642, 1643, 5, 5, 0, 0, 1643, 1645, 3, 332, 166, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1651, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1651, 3, 342, 171, 0, 1650, 1641, 1, 0, 0, 0, 1650, 1649, 1, 0, 0, 0, 1651, 47, 1, 0, 0, 0, 1652, 1657, 5, 382, 0, 0, 1653, 1657, 5, 384, 0, 0, 1654, 1657, 3, 260, 130, 0, 1655, 1657, 3, 342, 171, 0, 1656, 1652, 1, 0, 0, 0, 1656, 1653, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1655, 1, 0, 0, 0, 1657, 49, 1, 0, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 52, 26, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 52, 26, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 51, 1, 0, 0, 0, 1669, 1674, 3, 46, 23, 0, 1670, 1672, 5, 352, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 3, 232, 116, 0, 1674, 1671, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 53, 1, 0, 0, 0, 1676, 1677, 5, 2, 0, 0, 1677, 1682, 3, 252, 126, 0, 1678, 1679, 5, 4, 0, 0, 1679, 1681, 3, 252, 126, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1685, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1686, 5, 3, 0, 0, 1686, 55, 1, 0, 0, 0, 1687, 1688, 5, 2, 0, 0, 1688, 1693, 3, 54, 27, 0, 1689, 1690, 5, 4, 0, 0, 1690, 1692, 3, 54, 27, 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, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 3, 0, 0, 1697, 57, 1, 0, 0, 0, 1698, 1699, 5, 283, 0, 0, 1699, 1700, 5, 20, 0, 0, 1700, 1705, 3, 60, 30, 0, 1701, 1702, 5, 283, 0, 0, 1702, 1703, 5, 31, 0, 0, 1703, 1705, 3, 62, 31, 0, 1704, 1698, 1, 0, 0, 0, 1704, 1701, 1, 0, 0, 0, 1705, 59, 1, 0, 0, 0, 1706, 1707, 5, 146, 0, 0, 1707, 1708, 3, 342, 171, 0, 1708, 1709, 5, 212, 0, 0, 1709, 1710, 3, 342, 171, 0, 1710, 1713, 1, 0, 0, 0, 1711, 1713, 3, 332, 166, 0, 1712, 1706, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 61, 1, 0, 0, 0, 1714, 1718, 3, 342, 171, 0, 1715, 1716, 5, 346, 0, 0, 1716, 1717, 5, 267, 0, 0, 1717, 1719, 3, 42, 21, 0, 1718, 1715, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 63, 1, 0, 0, 0, 1720, 1721, 3, 18, 9, 0, 1721, 1722, 3, 16, 8, 0, 1722, 1779, 1, 0, 0, 0, 1723, 1727, 3, 132, 66, 0, 1724, 1725, 3, 18, 9, 0, 1725, 1726, 3, 102, 51, 0, 1726, 1728, 1, 0, 0, 0, 1727, 1724, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1779, 1, 0, 0, 0, 1731, 1732, 5, 84, 0, 0, 1732, 1733, 5, 123, 0, 0, 1733, 1734, 3, 72, 36, 0, 1734, 1736, 3, 204, 102, 0, 1735, 1737, 3, 124, 62, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1779, 1, 0, 0, 0, 1738, 1739, 5, 329, 0, 0, 1739, 1740, 3, 72, 36, 0, 1740, 1741, 3, 204, 102, 0, 1741, 1743, 3, 110, 55, 0, 1742, 1744, 3, 124, 62, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1779, 1, 0, 0, 0, 1745, 1746, 5, 179, 0, 0, 1746, 1747, 5, 152, 0, 0, 1747, 1748, 3, 72, 36, 0, 1748, 1749, 3, 204, 102, 0, 1749, 1755, 5, 332, 0, 0, 1750, 1756, 3, 86, 43, 0, 1751, 1752, 5, 2, 0, 0, 1752, 1753, 3, 16, 8, 0, 1753, 1754, 5, 3, 0, 0, 1754, 1756, 1, 0, 0, 0, 1755, 1750, 1, 0, 0, 0, 1755, 1751, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 3, 204, 102, 0, 1758, 1759, 5, 203, 0, 0, 1759, 1763, 3, 240, 120, 0, 1760, 1762, 3, 112, 56, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1769, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1768, 3, 114, 57, 0, 1767, 1766, 1, 0, 0, 0, 1768, 1771, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1775, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1774, 3, 116, 58, 0, 1773, 1772, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1720, 1, 0, 0, 0, 1778, 1723, 1, 0, 0, 0, 1778, 1731, 1, 0, 0, 0, 1778, 1738, 1, 0, 0, 0, 1778, 1745, 1, 0, 0, 0, 1779, 65, 1, 0, 0, 0, 1780, 1781, 3, 86, 43, 0, 1781, 67, 1, 0, 0, 0, 1782, 1783, 3, 86, 43, 0, 1783, 69, 1, 0, 0, 0, 1784, 1785, 3, 216, 108, 0, 1785, 71, 1, 0, 0, 0, 1786, 1787, 3, 216, 108, 0, 1787, 73, 1, 0, 0, 0, 1788, 1789, 3, 218, 109, 0, 1789, 75, 1, 0, 0, 0, 1790, 1791, 3, 218, 109, 0, 1791, 77, 1, 0, 0, 0, 1792, 1795, 3, 210, 105, 0, 1793, 1795, 4, 39, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 79, 1, 0, 0, 0, 1796, 1797, 3, 210, 105, 0, 1797, 81, 1, 0, 0, 0, 1798, 1803, 3, 78, 39, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 78, 39, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 83, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 3, 328, 164, 0, 1807, 85, 1, 0, 0, 0, 1808, 1809, 5, 136, 0, 0, 1809, 1810, 5, 2, 0, 0, 1810, 1811, 3, 232, 116, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1815, 1, 0, 0, 0, 1813, 1815, 3, 210, 105, 0, 1814, 1808, 1, 0, 0, 0, 1814, 1813, 1, 0, 0, 0, 1815, 87, 1, 0, 0, 0, 1816, 1817, 5, 209, 0, 0, 1817, 1818, 5, 31, 0, 0, 1818, 1820, 3, 92, 46, 0, 1819, 1816, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1824, 1, 0, 0, 0, 1821, 1822, 5, 44, 0, 0, 1822, 1823, 5, 31, 0, 0, 1823, 1825, 3, 94, 47, 0, 1824, 1821, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1829, 1, 0, 0, 0, 1826, 1827, 5, 93, 0, 0, 1827, 1828, 5, 31, 0, 0, 1828, 1830, 3, 94, 47, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1834, 1, 0, 0, 0, 1831, 1832, 5, 278, 0, 0, 1832, 1833, 5, 31, 0, 0, 1833, 1835, 3, 92, 46, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 1, 0, 0, 0, 1836, 1838, 3, 310, 155, 0, 1837, 1836, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1841, 3, 90, 45, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1843, 5, 202, 0, 0, 1843, 1845, 3, 232, 116, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 89, 1, 0, 0, 0, 1846, 1849, 5, 165, 0, 0, 1847, 1850, 5, 10, 0, 0, 1848, 1850, 3, 232, 116, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1848, 1, 0, 0, 0, 1850, 91, 1, 0, 0, 0, 1851, 1856, 3, 100, 50, 0, 1852, 1853, 5, 4, 0, 0, 1853, 1855, 3, 100, 50, 0, 1854, 1852, 1, 0, 0, 0, 1855, 1858, 1, 0, 0, 0, 1856, 1854, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 93, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1859, 1864, 3, 232, 116, 0, 1860, 1861, 5, 4, 0, 0, 1861, 1863, 3, 232, 116, 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, 95, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1868, 6, 48, -1, 0, 1868, 1869, 3, 98, 49, 0, 1869, 1890, 1, 0, 0, 0, 1870, 1871, 10, 3, 0, 0, 1871, 1873, 7, 23, 0, 0, 1872, 1874, 3, 166, 83, 0, 1873, 1872, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1889, 3, 96, 48, 4, 1876, 1877, 10, 2, 0, 0, 1877, 1879, 5, 148, 0, 0, 1878, 1880, 3, 166, 83, 0, 1879, 1878, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1889, 3, 96, 48, 3, 1882, 1883, 10, 1, 0, 0, 1883, 1885, 7, 24, 0, 0, 1884, 1886, 3, 166, 83, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1889, 3, 96, 48, 2, 1888, 1870, 1, 0, 0, 0, 1888, 1876, 1, 0, 0, 0, 1888, 1882, 1, 0, 0, 0, 1889, 1892, 1, 0, 0, 0, 1890, 1888, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 97, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1918, 3, 104, 52, 0, 1894, 1896, 3, 132, 66, 0, 1895, 1897, 3, 102, 51, 0, 1896, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1918, 1, 0, 0, 0, 1900, 1901, 5, 293, 0, 0, 1901, 1918, 3, 72, 36, 0, 1902, 1903, 5, 333, 0, 0, 1903, 1908, 3, 232, 116, 0, 1904, 1905, 5, 4, 0, 0, 1905, 1907, 3, 232, 116, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1912, 3, 204, 102, 0, 1912, 1918, 1, 0, 0, 0, 1913, 1914, 5, 2, 0, 0, 1914, 1915, 3, 16, 8, 0, 1915, 1916, 5, 3, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1893, 1, 0, 0, 0, 1917, 1894, 1, 0, 0, 0, 1917, 1900, 1, 0, 0, 0, 1917, 1902, 1, 0, 0, 0, 1917, 1913, 1, 0, 0, 0, 1918, 99, 1, 0, 0, 0, 1919, 1922, 3, 78, 39, 0, 1920, 1922, 3, 232, 116, 0, 1921, 1919, 1, 0, 0, 0, 1921, 1920, 1, 0, 0, 0, 1922, 1924, 1, 0, 0, 0, 1923, 1925, 7, 25, 0, 0, 1924, 1923, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1927, 5, 199, 0, 0, 1927, 1929, 7, 26, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 101, 1, 0, 0, 0, 1930, 1932, 3, 106, 53, 0, 1931, 1933, 3, 124, 62, 0, 1932, 1931, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 3, 88, 44, 0, 1935, 1958, 1, 0, 0, 0, 1936, 1940, 3, 108, 54, 0, 1937, 1939, 3, 164, 82, 0, 1938, 1937, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1944, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1945, 3, 124, 62, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1947, 1, 0, 0, 0, 1946, 1948, 3, 136, 68, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1951, 3, 126, 63, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1953, 1, 0, 0, 0, 1952, 1954, 3, 310, 155, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 3, 88, 44, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1930, 1, 0, 0, 0, 1957, 1936, 1, 0, 0, 0, 1958, 103, 1, 0, 0, 0, 1959, 1961, 3, 106, 53, 0, 1960, 1962, 3, 132, 66, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1966, 1, 0, 0, 0, 1963, 1965, 3, 164, 82, 0, 1964, 1963, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1971, 3, 124, 62, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1974, 3, 136, 68, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1977, 3, 126, 63, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1979, 1, 0, 0, 0, 1978, 1980, 3, 310, 155, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 2004, 1, 0, 0, 0, 1981, 1983, 3, 108, 54, 0, 1982, 1984, 3, 132, 66, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1988, 1, 0, 0, 0, 1985, 1987, 3, 164, 82, 0, 1986, 1985, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1991, 1993, 3, 124, 62, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 136, 68, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1998, 1, 0, 0, 0, 1997, 1999, 3, 126, 63, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2001, 1, 0, 0, 0, 2000, 2002, 3, 310, 155, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1959, 1, 0, 0, 0, 2003, 1981, 1, 0, 0, 0, 2004, 105, 1, 0, 0, 0, 2005, 2006, 5, 263, 0, 0, 2006, 2007, 5, 314, 0, 0, 2007, 2009, 5, 2, 0, 0, 2008, 2010, 3, 166, 83, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 3, 238, 119, 0, 2012, 2013, 5, 3, 0, 0, 2013, 2025, 1, 0, 0, 0, 2014, 2016, 5, 177, 0, 0, 2015, 2017, 3, 166, 83, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2025, 3, 238, 119, 0, 2019, 2021, 5, 238, 0, 0, 2020, 2022, 3, 166, 83, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 3, 238, 119, 0, 2024, 2005, 1, 0, 0, 0, 2024, 2014, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2027, 1, 0, 0, 0, 2026, 2028, 3, 206, 103, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2031, 1, 0, 0, 0, 2029, 2030, 5, 236, 0, 0, 2030, 2032, 3, 342, 171, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 5, 332, 0, 0, 2034, 2047, 3, 342, 171, 0, 2035, 2045, 5, 20, 0, 0, 2036, 2046, 3, 182, 91, 0, 2037, 2046, 3, 296, 148, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 182, 91, 0, 2040, 2042, 3, 296, 148, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 5, 3, 0, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2036, 1, 0, 0, 0, 2045, 2037, 1, 0, 0, 0, 2045, 2038, 1, 0, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2035, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2050, 1, 0, 0, 0, 2049, 2051, 3, 206, 103, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2054, 1, 0, 0, 0, 2052, 2053, 5, 235, 0, 0, 2053, 2055, 3, 342, 171, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 107, 1, 0, 0, 0, 2056, 2060, 5, 263, 0, 0, 2057, 2059, 3, 128, 64, 0, 2058, 2057, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2065, 3, 166, 83, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 3, 222, 111, 0, 2067, 109, 1, 0, 0, 0, 2068, 2069, 5, 269, 0, 0, 2069, 2070, 3, 120, 60, 0, 2070, 111, 1, 0, 0, 0, 2071, 2072, 5, 343, 0, 0, 2072, 2075, 5, 178, 0, 0, 2073, 2074, 5, 14, 0, 0, 2074, 2076, 3, 240, 120, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2085, 5, 300, 0, 0, 2078, 2086, 5, 84, 0, 0, 2079, 2080, 5, 329, 0, 0, 2080, 2083, 5, 269, 0, 0, 2081, 2084, 5, 363, 0, 0, 2082, 2084, 3, 120, 60, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2082, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2078, 1, 0, 0, 0, 2085, 2079, 1, 0, 0, 0, 2086, 113, 1, 0, 0, 0, 2087, 2088, 5, 343, 0, 0, 2088, 2089, 5, 197, 0, 0, 2089, 2092, 5, 178, 0, 0, 2090, 2091, 5, 31, 0, 0, 2091, 2093, 5, 296, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2095, 5, 14, 0, 0, 2095, 2097, 3, 240, 120, 0, 2096, 2094, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 5, 300, 0, 0, 2099, 2100, 3, 118, 59, 0, 2100, 115, 1, 0, 0, 0, 2101, 2102, 5, 343, 0, 0, 2102, 2103, 5, 197, 0, 0, 2103, 2104, 5, 178, 0, 0, 2104, 2105, 5, 31, 0, 0, 2105, 2108, 5, 280, 0, 0, 2106, 2107, 5, 14, 0, 0, 2107, 2109, 3, 240, 120, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2115, 5, 300, 0, 0, 2111, 2116, 5, 84, 0, 0, 2112, 2113, 5, 329, 0, 0, 2113, 2114, 5, 269, 0, 0, 2114, 2116, 3, 120, 60, 0, 2115, 2111, 1, 0, 0, 0, 2115, 2112, 1, 0, 0, 0, 2116, 117, 1, 0, 0, 0, 2117, 2118, 5, 147, 0, 0, 2118, 2136, 5, 363, 0, 0, 2119, 2120, 5, 147, 0, 0, 2120, 2121, 5, 2, 0, 0, 2121, 2122, 3, 208, 104, 0, 2122, 2123, 5, 3, 0, 0, 2123, 2124, 5, 333, 0, 0, 2124, 2125, 5, 2, 0, 0, 2125, 2130, 3, 232, 116, 0, 2126, 2127, 5, 4, 0, 0, 2127, 2129, 3, 232, 116, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2134, 5, 3, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2117, 1, 0, 0, 0, 2135, 2119, 1, 0, 0, 0, 2136, 119, 1, 0, 0, 0, 2137, 2142, 3, 122, 61, 0, 2138, 2139, 5, 4, 0, 0, 2139, 2141, 3, 122, 61, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2144, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 121, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2146, 3, 210, 105, 0, 2146, 2147, 5, 352, 0, 0, 2147, 2148, 3, 232, 116, 0, 2148, 123, 1, 0, 0, 0, 2149, 2150, 5, 344, 0, 0, 2150, 2151, 3, 240, 120, 0, 2151, 125, 1, 0, 0, 0, 2152, 2153, 5, 132, 0, 0, 2153, 2154, 3, 240, 120, 0, 2154, 127, 1, 0, 0, 0, 2155, 2156, 5, 374, 0, 0, 2156, 2163, 3, 130, 65, 0, 2157, 2159, 5, 4, 0, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 3, 130, 65, 0, 2161, 2158, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 375, 0, 0, 2167, 129, 1, 0, 0, 0, 2168, 2182, 3, 332, 166, 0, 2169, 2170, 3, 332, 166, 0, 2170, 2171, 5, 2, 0, 0, 2171, 2176, 3, 248, 124, 0, 2172, 2173, 5, 4, 0, 0, 2173, 2175, 3, 248, 124, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2180, 5, 3, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2168, 1, 0, 0, 0, 2181, 2169, 1, 0, 0, 0, 2182, 131, 1, 0, 0, 0, 2183, 2184, 5, 123, 0, 0, 2184, 2189, 3, 168, 84, 0, 2185, 2186, 5, 4, 0, 0, 2186, 2188, 3, 168, 84, 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, 2195, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2194, 3, 164, 82, 0, 2193, 2192, 1, 0, 0, 0, 2194, 2197, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2199, 1, 0, 0, 0, 2197, 2195, 1, 0, 0, 0, 2198, 2200, 3, 144, 72, 0, 2199, 2198, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2202, 1, 0, 0, 0, 2201, 2203, 3, 150, 75, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 133, 1, 0, 0, 0, 2204, 2206, 5, 119, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 7, 27, 0, 0, 2208, 2209, 5, 20, 0, 0, 2209, 2212, 5, 201, 0, 0, 2210, 2213, 5, 382, 0, 0, 2211, 2213, 3, 342, 171, 0, 2212, 2210, 1, 0, 0, 0, 2212, 2211, 1, 0, 0, 0, 2213, 2222, 1, 0, 0, 0, 2214, 2216, 5, 119, 0, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2218, 7, 28, 0, 0, 2218, 2219, 5, 20, 0, 0, 2219, 2220, 5, 201, 0, 0, 2220, 2222, 3, 244, 122, 0, 2221, 2205, 1, 0, 0, 0, 2221, 2215, 1, 0, 0, 0, 2222, 135, 1, 0, 0, 0, 2223, 2224, 5, 130, 0, 0, 2224, 2225, 5, 31, 0, 0, 2225, 2230, 3, 138, 69, 0, 2226, 2227, 5, 4, 0, 0, 2227, 2229, 3, 138, 69, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2232, 1, 0, 0, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2263, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2233, 2234, 5, 130, 0, 0, 2234, 2235, 5, 31, 0, 0, 2235, 2240, 3, 232, 116, 0, 2236, 2237, 5, 4, 0, 0, 2237, 2239, 3, 232, 116, 0, 2238, 2236, 1, 0, 0, 0, 2239, 2242, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2260, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2243, 2244, 5, 346, 0, 0, 2244, 2261, 5, 256, 0, 0, 2245, 2246, 5, 346, 0, 0, 2246, 2261, 5, 61, 0, 0, 2247, 2248, 5, 131, 0, 0, 2248, 2249, 5, 271, 0, 0, 2249, 2250, 5, 2, 0, 0, 2250, 2255, 3, 142, 71, 0, 2251, 2252, 5, 4, 0, 0, 2252, 2254, 3, 142, 71, 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, 3, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2243, 1, 0, 0, 0, 2260, 2245, 1, 0, 0, 0, 2260, 2247, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2263, 1, 0, 0, 0, 2262, 2223, 1, 0, 0, 0, 2262, 2233, 1, 0, 0, 0, 2263, 137, 1, 0, 0, 0, 2264, 2268, 3, 78, 39, 0, 2265, 2268, 3, 140, 70, 0, 2266, 2268, 3, 232, 116, 0, 2267, 2264, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2266, 1, 0, 0, 0, 2268, 139, 1, 0, 0, 0, 2269, 2270, 7, 29, 0, 0, 2270, 2271, 5, 2, 0, 0, 2271, 2276, 3, 142, 71, 0, 2272, 2273, 5, 4, 0, 0, 2273, 2275, 3, 142, 71, 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, 2280, 5, 3, 0, 0, 2280, 2301, 1, 0, 0, 0, 2281, 2282, 5, 131, 0, 0, 2282, 2283, 5, 271, 0, 0, 2283, 2286, 5, 2, 0, 0, 2284, 2287, 3, 140, 70, 0, 2285, 2287, 3, 142, 71, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2285, 1, 0, 0, 0, 2287, 2295, 1, 0, 0, 0, 2288, 2291, 5, 4, 0, 0, 2289, 2292, 3, 140, 70, 0, 2290, 2292, 3, 142, 71, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2290, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2288, 1, 0, 0, 0, 2294, 2297, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2298, 2299, 5, 3, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2269, 1, 0, 0, 0, 2300, 2281, 1, 0, 0, 0, 2301, 141, 1, 0, 0, 0, 2302, 2323, 3, 78, 39, 0, 2303, 2323, 3, 232, 116, 0, 2304, 2319, 5, 2, 0, 0, 2305, 2308, 3, 78, 39, 0, 2306, 2308, 3, 232, 116, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 2316, 1, 0, 0, 0, 2309, 2312, 5, 4, 0, 0, 2310, 2313, 3, 78, 39, 0, 2311, 2313, 3, 232, 116, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2309, 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, 2307, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 5, 3, 0, 0, 2322, 2302, 1, 0, 0, 0, 2322, 2303, 1, 0, 0, 0, 2322, 2304, 1, 0, 0, 0, 2323, 143, 1, 0, 0, 0, 2324, 2325, 5, 223, 0, 0, 2325, 2326, 5, 2, 0, 0, 2326, 2327, 3, 222, 111, 0, 2327, 2328, 5, 119, 0, 0, 2328, 2329, 3, 146, 73, 0, 2329, 2330, 5, 140, 0, 0, 2330, 2331, 5, 2, 0, 0, 2331, 2336, 3, 148, 74, 0, 2332, 2333, 5, 4, 0, 0, 2333, 2335, 3, 148, 74, 0, 2334, 2332, 1, 0, 0, 0, 2335, 2338, 1, 0, 0, 0, 2336, 2334, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2340, 5, 3, 0, 0, 2340, 2341, 5, 3, 0, 0, 2341, 145, 1, 0, 0, 0, 2342, 2355, 3, 332, 166, 0, 2343, 2344, 5, 2, 0, 0, 2344, 2349, 3, 332, 166, 0, 2345, 2346, 5, 4, 0, 0, 2346, 2348, 3, 332, 166, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2353, 5, 3, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2342, 1, 0, 0, 0, 2354, 2343, 1, 0, 0, 0, 2355, 147, 1, 0, 0, 0, 2356, 2361, 3, 232, 116, 0, 2357, 2359, 5, 20, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2362, 3, 332, 166, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 149, 1, 0, 0, 0, 2363, 2366, 5, 327, 0, 0, 2364, 2365, 7, 30, 0, 0, 2365, 2367, 5, 199, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2371, 5, 2, 0, 0, 2369, 2372, 3, 152, 76, 0, 2370, 2372, 3, 154, 77, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2378, 5, 3, 0, 0, 2374, 2376, 5, 20, 0, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 3, 332, 166, 0, 2378, 2375, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 151, 1, 0, 0, 0, 2380, 2381, 3, 332, 166, 0, 2381, 2382, 5, 119, 0, 0, 2382, 2383, 3, 332, 166, 0, 2383, 2384, 5, 140, 0, 0, 2384, 2385, 5, 2, 0, 0, 2385, 2390, 3, 158, 79, 0, 2386, 2387, 5, 4, 0, 0, 2387, 2389, 3, 158, 79, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 3, 0, 0, 2394, 153, 1, 0, 0, 0, 2395, 2396, 5, 2, 0, 0, 2396, 2401, 3, 332, 166, 0, 2397, 2398, 5, 4, 0, 0, 2398, 2400, 3, 332, 166, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2403, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2405, 5, 3, 0, 0, 2405, 2406, 5, 119, 0, 0, 2406, 2407, 3, 332, 166, 0, 2407, 2408, 5, 140, 0, 0, 2408, 2409, 5, 2, 0, 0, 2409, 2414, 3, 156, 78, 0, 2410, 2411, 5, 4, 0, 0, 2411, 2413, 3, 156, 78, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2416, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2417, 2418, 5, 3, 0, 0, 2418, 155, 1, 0, 0, 0, 2419, 2420, 5, 2, 0, 0, 2420, 2425, 3, 210, 105, 0, 2421, 2422, 5, 4, 0, 0, 2422, 2424, 3, 210, 105, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2427, 1, 0, 0, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2425, 1, 0, 0, 0, 2428, 2433, 5, 3, 0, 0, 2429, 2431, 5, 20, 0, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 3, 332, 166, 0, 2433, 2430, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 157, 1, 0, 0, 0, 2435, 2440, 3, 210, 105, 0, 2436, 2438, 5, 20, 0, 0, 2437, 2436, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 3, 332, 166, 0, 2440, 2437, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 159, 1, 0, 0, 0, 2442, 2443, 5, 137, 0, 0, 2443, 2444, 5, 197, 0, 0, 2444, 2445, 5, 105, 0, 0, 2445, 161, 1, 0, 0, 0, 2446, 2447, 5, 137, 0, 0, 2447, 2448, 5, 105, 0, 0, 2448, 163, 1, 0, 0, 0, 2449, 2450, 5, 158, 0, 0, 2450, 2452, 5, 338, 0, 0, 2451, 2453, 5, 211, 0, 0, 2452, 2451, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 3, 76, 38, 0, 2455, 2464, 5, 2, 0, 0, 2456, 2461, 3, 232, 116, 0, 2457, 2458, 5, 4, 0, 0, 2458, 2460, 3, 232, 116, 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, 2465, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2456, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 2479, 3, 204, 102, 0, 2468, 2470, 5, 20, 0, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2476, 3, 332, 166, 0, 2472, 2473, 5, 4, 0, 0, 2473, 2475, 3, 332, 166, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2480, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2469, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 165, 1, 0, 0, 0, 2481, 2482, 7, 31, 0, 0, 2482, 167, 1, 0, 0, 0, 2483, 2497, 3, 72, 36, 0, 2484, 2486, 5, 158, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2493, 3, 192, 96, 0, 2488, 2492, 3, 170, 85, 0, 2489, 2492, 3, 144, 72, 0, 2490, 2492, 3, 150, 75, 0, 2491, 2488, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2497, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2483, 1, 0, 0, 0, 2496, 2485, 1, 0, 0, 0, 2497, 169, 1, 0, 0, 0, 2498, 2499, 3, 172, 86, 0, 2499, 2501, 5, 155, 0, 0, 2500, 2502, 5, 158, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2505, 3, 192, 96, 0, 2504, 2506, 3, 174, 87, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2516, 1, 0, 0, 0, 2507, 2508, 5, 194, 0, 0, 2508, 2509, 3, 172, 86, 0, 2509, 2511, 5, 155, 0, 0, 2510, 2512, 5, 158, 0, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 3, 192, 96, 0, 2514, 2516, 1, 0, 0, 0, 2515, 2498, 1, 0, 0, 0, 2515, 2507, 1, 0, 0, 0, 2516, 171, 1, 0, 0, 0, 2517, 2519, 5, 144, 0, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2534, 1, 0, 0, 0, 2520, 2534, 5, 60, 0, 0, 2521, 2523, 5, 161, 0, 0, 2522, 2524, 5, 211, 0, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2534, 1, 0, 0, 0, 2525, 2527, 5, 161, 0, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2534, 7, 32, 0, 0, 2529, 2531, 7, 33, 0, 0, 2530, 2532, 5, 211, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2518, 1, 0, 0, 0, 2533, 2520, 1, 0, 0, 0, 2533, 2521, 1, 0, 0, 0, 2533, 2526, 1, 0, 0, 0, 2533, 2529, 1, 0, 0, 0, 2534, 173, 1, 0, 0, 0, 2535, 2536, 5, 203, 0, 0, 2536, 2540, 3, 240, 120, 0, 2537, 2538, 5, 332, 0, 0, 2538, 2540, 3, 180, 90, 0, 2539, 2535, 1, 0, 0, 0, 2539, 2537, 1, 0, 0, 0, 2540, 175, 1, 0, 0, 0, 2541, 2542, 5, 295, 0, 0, 2542, 2544, 5, 2, 0, 0, 2543, 2545, 3, 178, 89, 0, 2544, 2543, 1, 0, 0, 0, 2544, 2545, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2551, 5, 3, 0, 0, 2547, 2548, 5, 243, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2550, 5, 382, 0, 0, 2550, 2552, 5, 3, 0, 0, 2551, 2547, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 177, 1, 0, 0, 0, 2553, 2555, 5, 362, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2557, 7, 34, 0, 0, 2557, 2578, 5, 222, 0, 0, 2558, 2559, 3, 232, 116, 0, 2559, 2560, 5, 258, 0, 0, 2560, 2578, 1, 0, 0, 0, 2561, 2562, 5, 29, 0, 0, 2562, 2563, 5, 382, 0, 0, 2563, 2564, 5, 210, 0, 0, 2564, 2565, 5, 201, 0, 0, 2565, 2574, 5, 382, 0, 0, 2566, 2572, 5, 203, 0, 0, 2567, 2573, 3, 332, 166, 0, 2568, 2569, 3, 326, 163, 0, 2569, 2570, 5, 2, 0, 0, 2570, 2571, 5, 3, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2567, 1, 0, 0, 0, 2572, 2568, 1, 0, 0, 0, 2573, 2575, 1, 0, 0, 0, 2574, 2566, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2578, 3, 232, 116, 0, 2577, 2554, 1, 0, 0, 0, 2577, 2558, 1, 0, 0, 0, 2577, 2561, 1, 0, 0, 0, 2577, 2576, 1, 0, 0, 0, 2578, 179, 1, 0, 0, 0, 2579, 2580, 5, 2, 0, 0, 2580, 2581, 3, 182, 91, 0, 2581, 2582, 5, 3, 0, 0, 2582, 181, 1, 0, 0, 0, 2583, 2588, 3, 328, 164, 0, 2584, 2585, 5, 4, 0, 0, 2585, 2587, 3, 328, 164, 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, 183, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2592, 5, 2, 0, 0, 2592, 2597, 3, 186, 93, 0, 2593, 2594, 5, 4, 0, 0, 2594, 2596, 3, 186, 93, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 185, 1, 0, 0, 0, 2602, 2604, 3, 328, 164, 0, 2603, 2605, 7, 25, 0, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 187, 1, 0, 0, 0, 2606, 2607, 5, 2, 0, 0, 2607, 2612, 3, 190, 95, 0, 2608, 2609, 5, 4, 0, 0, 2609, 2611, 3, 190, 95, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2615, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 5, 3, 0, 0, 2616, 189, 1, 0, 0, 0, 2617, 2620, 3, 84, 42, 0, 2618, 2619, 5, 51, 0, 0, 2619, 2621, 3, 342, 171, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 191, 1, 0, 0, 0, 2622, 2626, 3, 72, 36, 0, 2623, 2626, 3, 76, 38, 0, 2624, 2626, 3, 86, 43, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 2628, 1, 0, 0, 0, 2627, 2629, 3, 134, 67, 0, 2628, 2627, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2632, 3, 176, 88, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 3, 204, 102, 0, 2634, 2678, 1, 0, 0, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2637, 3, 16, 8, 0, 2637, 2639, 5, 3, 0, 0, 2638, 2640, 3, 176, 88, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 3, 204, 102, 0, 2642, 2678, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2645, 3, 168, 84, 0, 2645, 2647, 5, 3, 0, 0, 2646, 2648, 3, 176, 88, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 3, 204, 102, 0, 2650, 2678, 1, 0, 0, 0, 2651, 2652, 5, 333, 0, 0, 2652, 2657, 3, 232, 116, 0, 2653, 2654, 5, 4, 0, 0, 2654, 2656, 3, 232, 116, 0, 2655, 2653, 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, 3, 204, 102, 0, 2661, 2678, 1, 0, 0, 0, 2662, 2663, 3, 322, 161, 0, 2663, 2672, 5, 2, 0, 0, 2664, 2669, 3, 202, 101, 0, 2665, 2666, 5, 4, 0, 0, 2666, 2668, 3, 202, 101, 0, 2667, 2665, 1, 0, 0, 0, 2668, 2671, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2673, 1, 0, 0, 0, 2671, 2669, 1, 0, 0, 0, 2672, 2664, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 5, 3, 0, 0, 2675, 2676, 3, 204, 102, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2625, 1, 0, 0, 0, 2677, 2635, 1, 0, 0, 0, 2677, 2643, 1, 0, 0, 0, 2677, 2651, 1, 0, 0, 0, 2677, 2662, 1, 0, 0, 0, 2678, 193, 1, 0, 0, 0, 2679, 2680, 5, 293, 0, 0, 2680, 2682, 3, 72, 36, 0, 2681, 2683, 3, 196, 98, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2699, 1, 0, 0, 0, 2684, 2685, 5, 293, 0, 0, 2685, 2686, 5, 2, 0, 0, 2686, 2687, 3, 72, 36, 0, 2687, 2689, 5, 3, 0, 0, 2688, 2690, 3, 196, 98, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2699, 1, 0, 0, 0, 2691, 2692, 5, 293, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 3, 16, 8, 0, 2694, 2696, 5, 3, 0, 0, 2695, 2697, 3, 196, 98, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2679, 1, 0, 0, 0, 2698, 2684, 1, 0, 0, 0, 2698, 2691, 1, 0, 0, 0, 2699, 195, 1, 0, 0, 0, 2700, 2701, 5, 346, 0, 0, 2701, 2702, 5, 274, 0, 0, 2702, 2720, 5, 217, 0, 0, 2703, 2704, 7, 35, 0, 0, 2704, 2717, 5, 31, 0, 0, 2705, 2706, 5, 2, 0, 0, 2706, 2711, 3, 232, 116, 0, 2707, 2708, 5, 4, 0, 0, 2708, 2710, 3, 232, 116, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2714, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2714, 2715, 5, 3, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2718, 3, 232, 116, 0, 2717, 2705, 1, 0, 0, 0, 2717, 2716, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2700, 1, 0, 0, 0, 2719, 2703, 1, 0, 0, 0, 2720, 2730, 1, 0, 0, 0, 2721, 2722, 7, 36, 0, 0, 2722, 2728, 5, 31, 0, 0, 2723, 2724, 5, 2, 0, 0, 2724, 2725, 3, 92, 46, 0, 2725, 2726, 5, 3, 0, 0, 2726, 2729, 1, 0, 0, 0, 2727, 2729, 3, 100, 50, 0, 2728, 2723, 1, 0, 0, 0, 2728, 2727, 1, 0, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2721, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 197, 1, 0, 0, 0, 2732, 2733, 3, 332, 166, 0, 2733, 2734, 5, 373, 0, 0, 2734, 2735, 3, 194, 97, 0, 2735, 199, 1, 0, 0, 0, 2736, 2739, 3, 194, 97, 0, 2737, 2739, 3, 198, 99, 0, 2738, 2736, 1, 0, 0, 0, 2738, 2737, 1, 0, 0, 0, 2739, 201, 1, 0, 0, 0, 2740, 2743, 3, 200, 100, 0, 2741, 2743, 3, 236, 118, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2741, 1, 0, 0, 0, 2743, 203, 1, 0, 0, 0, 2744, 2746, 5, 20, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2749, 3, 334, 167, 0, 2748, 2750, 3, 180, 90, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2745, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 205, 1, 0, 0, 0, 2753, 2754, 5, 257, 0, 0, 2754, 2755, 5, 121, 0, 0, 2755, 2756, 5, 266, 0, 0, 2756, 2760, 3, 342, 171, 0, 2757, 2758, 5, 346, 0, 0, 2758, 2759, 5, 267, 0, 0, 2759, 2761, 3, 42, 21, 0, 2760, 2757, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2803, 1, 0, 0, 0, 2762, 2763, 5, 257, 0, 0, 2763, 2764, 5, 121, 0, 0, 2764, 2774, 5, 85, 0, 0, 2765, 2766, 5, 113, 0, 0, 2766, 2767, 5, 299, 0, 0, 2767, 2768, 5, 31, 0, 0, 2768, 2772, 3, 342, 171, 0, 2769, 2770, 5, 101, 0, 0, 2770, 2771, 5, 31, 0, 0, 2771, 2773, 3, 342, 171, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2765, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2781, 1, 0, 0, 0, 2776, 2777, 5, 48, 0, 0, 2777, 2778, 5, 154, 0, 0, 2778, 2779, 5, 299, 0, 0, 2779, 2780, 5, 31, 0, 0, 2780, 2782, 3, 342, 171, 0, 2781, 2776, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2788, 1, 0, 0, 0, 2783, 2784, 5, 177, 0, 0, 2784, 2785, 5, 156, 0, 0, 2785, 2786, 5, 299, 0, 0, 2786, 2787, 5, 31, 0, 0, 2787, 2789, 3, 342, 171, 0, 2788, 2783, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2794, 1, 0, 0, 0, 2790, 2791, 5, 166, 0, 0, 2791, 2792, 5, 299, 0, 0, 2792, 2793, 5, 31, 0, 0, 2793, 2795, 3, 342, 171, 0, 2794, 2790, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2800, 1, 0, 0, 0, 2796, 2797, 5, 198, 0, 0, 2797, 2798, 5, 83, 0, 0, 2798, 2799, 5, 20, 0, 0, 2799, 2801, 3, 342, 171, 0, 2800, 2796, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2803, 1, 0, 0, 0, 2802, 2753, 1, 0, 0, 0, 2802, 2762, 1, 0, 0, 0, 2803, 207, 1, 0, 0, 0, 2804, 2809, 3, 210, 105, 0, 2805, 2806, 5, 4, 0, 0, 2806, 2808, 3, 210, 105, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2811, 1, 0, 0, 0, 2809, 2807, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 209, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2812, 2817, 3, 328, 164, 0, 2813, 2814, 5, 5, 0, 0, 2814, 2816, 3, 328, 164, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 211, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2825, 3, 214, 107, 0, 2821, 2822, 5, 4, 0, 0, 2822, 2824, 3, 214, 107, 0, 2823, 2821, 1, 0, 0, 0, 2824, 2827, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 213, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 3, 210, 105, 0, 2829, 2830, 5, 207, 0, 0, 2830, 2832, 3, 42, 21, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 215, 1, 0, 0, 0, 2833, 2834, 3, 328, 164, 0, 2834, 2835, 5, 5, 0, 0, 2835, 2837, 1, 0, 0, 0, 2836, 2833, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2839, 3, 328, 164, 0, 2839, 217, 1, 0, 0, 0, 2840, 2841, 3, 328, 164, 0, 2841, 2842, 5, 5, 0, 0, 2842, 2844, 1, 0, 0, 0, 2843, 2840, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 3, 328, 164, 0, 2846, 219, 1, 0, 0, 0, 2847, 2850, 3, 78, 39, 0, 2848, 2850, 3, 232, 116, 0, 2849, 2847, 1, 0, 0, 0, 2849, 2848, 1, 0, 0, 0, 2850, 2858, 1, 0, 0, 0, 2851, 2853, 5, 20, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2857, 3, 328, 164, 0, 2855, 2857, 3, 180, 90, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2852, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 221, 1, 0, 0, 0, 2860, 2865, 3, 220, 110, 0, 2861, 2862, 5, 4, 0, 0, 2862, 2864, 3, 220, 110, 0, 2863, 2861, 1, 0, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 223, 1, 0, 0, 0, 2867, 2865, 1, 0, 0, 0, 2868, 2869, 5, 2, 0, 0, 2869, 2874, 3, 226, 113, 0, 2870, 2871, 5, 4, 0, 0, 2871, 2873, 3, 226, 113, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2876, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2877, 2878, 5, 3, 0, 0, 2878, 225, 1, 0, 0, 0, 2879, 2882, 3, 228, 114, 0, 2880, 2882, 3, 298, 149, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2880, 1, 0, 0, 0, 2882, 227, 1, 0, 0, 0, 2883, 2897, 3, 326, 163, 0, 2884, 2885, 3, 332, 166, 0, 2885, 2886, 5, 2, 0, 0, 2886, 2891, 3, 230, 115, 0, 2887, 2888, 5, 4, 0, 0, 2888, 2890, 3, 230, 115, 0, 2889, 2887, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2891, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2883, 1, 0, 0, 0, 2896, 2884, 1, 0, 0, 0, 2897, 229, 1, 0, 0, 0, 2898, 2901, 3, 326, 163, 0, 2899, 2901, 3, 252, 126, 0, 2900, 2898, 1, 0, 0, 0, 2900, 2899, 1, 0, 0, 0, 2901, 231, 1, 0, 0, 0, 2902, 2903, 3, 240, 120, 0, 2903, 233, 1, 0, 0, 0, 2904, 2905, 3, 332, 166, 0, 2905, 2906, 5, 373, 0, 0, 2906, 2907, 3, 232, 116, 0, 2907, 235, 1, 0, 0, 0, 2908, 2911, 3, 232, 116, 0, 2909, 2911, 3, 234, 117, 0, 2910, 2908, 1, 0, 0, 0, 2910, 2909, 1, 0, 0, 0, 2911, 237, 1, 0, 0, 0, 2912, 2917, 3, 232, 116, 0, 2913, 2914, 5, 4, 0, 0, 2914, 2916, 3, 232, 116, 0, 2915, 2913, 1, 0, 0, 0, 2916, 2919, 1, 0, 0, 0, 2917, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 239, 1, 0, 0, 0, 2919, 2917, 1, 0, 0, 0, 2920, 2921, 6, 120, -1, 0, 2921, 2922, 7, 37, 0, 0, 2922, 2933, 3, 240, 120, 5, 2923, 2924, 5, 105, 0, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2926, 3, 16, 8, 0, 2926, 2927, 5, 3, 0, 0, 2927, 2933, 1, 0, 0, 0, 2928, 2930, 3, 244, 122, 0, 2929, 2931, 3, 242, 121, 0, 2930, 2929, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2920, 1, 0, 0, 0, 2932, 2923, 1, 0, 0, 0, 2932, 2928, 1, 0, 0, 0, 2933, 2942, 1, 0, 0, 0, 2934, 2935, 10, 2, 0, 0, 2935, 2936, 5, 14, 0, 0, 2936, 2941, 3, 240, 120, 3, 2937, 2938, 10, 1, 0, 0, 2938, 2939, 5, 208, 0, 0, 2939, 2941, 3, 240, 120, 2, 2940, 2934, 1, 0, 0, 0, 2940, 2937, 1, 0, 0, 0, 2941, 2944, 1, 0, 0, 0, 2942, 2940, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 241, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2945, 2947, 5, 197, 0, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2949, 5, 24, 0, 0, 2949, 2950, 3, 244, 122, 0, 2950, 2951, 5, 14, 0, 0, 2951, 2952, 3, 244, 122, 0, 2952, 3028, 1, 0, 0, 0, 2953, 2955, 5, 197, 0, 0, 2954, 2953, 1, 0, 0, 0, 2954, 2955, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2957, 5, 140, 0, 0, 2957, 2958, 5, 2, 0, 0, 2958, 2963, 3, 232, 116, 0, 2959, 2960, 5, 4, 0, 0, 2960, 2962, 3, 232, 116, 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, 2966, 1, 0, 0, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2967, 5, 3, 0, 0, 2967, 3028, 1, 0, 0, 0, 2968, 2970, 5, 197, 0, 0, 2969, 2968, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 5, 140, 0, 0, 2972, 2973, 5, 2, 0, 0, 2973, 2974, 3, 16, 8, 0, 2974, 2975, 5, 3, 0, 0, 2975, 3028, 1, 0, 0, 0, 2976, 2978, 5, 197, 0, 0, 2977, 2976, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 7, 38, 0, 0, 2980, 3028, 3, 244, 122, 0, 2981, 2983, 5, 197, 0, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 7, 39, 0, 0, 2985, 2999, 7, 40, 0, 0, 2986, 2987, 5, 2, 0, 0, 2987, 3000, 5, 3, 0, 0, 2988, 2989, 5, 2, 0, 0, 2989, 2994, 3, 232, 116, 0, 2990, 2991, 5, 4, 0, 0, 2991, 2993, 3, 232, 116, 0, 2992, 2990, 1, 0, 0, 0, 2993, 2996, 1, 0, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2997, 2998, 5, 3, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2986, 1, 0, 0, 0, 2999, 2988, 1, 0, 0, 0, 3000, 3028, 1, 0, 0, 0, 3001, 3003, 5, 197, 0, 0, 3002, 3001, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3005, 7, 39, 0, 0, 3005, 3008, 3, 244, 122, 0, 3006, 3007, 5, 100, 0, 0, 3007, 3009, 3, 342, 171, 0, 3008, 3006, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3028, 1, 0, 0, 0, 3010, 3012, 5, 153, 0, 0, 3011, 3013, 5, 197, 0, 0, 3012, 3011, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3028, 5, 198, 0, 0, 3015, 3017, 5, 153, 0, 0, 3016, 3018, 5, 197, 0, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3028, 7, 41, 0, 0, 3020, 3022, 5, 153, 0, 0, 3021, 3023, 5, 197, 0, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 92, 0, 0, 3025, 3026, 5, 123, 0, 0, 3026, 3028, 3, 244, 122, 0, 3027, 2946, 1, 0, 0, 0, 3027, 2954, 1, 0, 0, 0, 3027, 2969, 1, 0, 0, 0, 3027, 2977, 1, 0, 0, 0, 3027, 2982, 1, 0, 0, 0, 3027, 3002, 1, 0, 0, 0, 3027, 3010, 1, 0, 0, 0, 3027, 3015, 1, 0, 0, 0, 3027, 3020, 1, 0, 0, 0, 3028, 243, 1, 0, 0, 0, 3029, 3030, 6, 122, -1, 0, 3030, 3034, 3, 248, 124, 0, 3031, 3032, 7, 42, 0, 0, 3032, 3034, 3, 244, 122, 7, 3033, 3029, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3034, 3056, 1, 0, 0, 0, 3035, 3036, 10, 6, 0, 0, 3036, 3037, 7, 43, 0, 0, 3037, 3055, 3, 244, 122, 7, 3038, 3039, 10, 5, 0, 0, 3039, 3040, 7, 44, 0, 0, 3040, 3055, 3, 244, 122, 6, 3041, 3042, 10, 4, 0, 0, 3042, 3043, 5, 367, 0, 0, 3043, 3055, 3, 244, 122, 5, 3044, 3045, 10, 3, 0, 0, 3045, 3046, 5, 370, 0, 0, 3046, 3055, 3, 244, 122, 4, 3047, 3048, 10, 2, 0, 0, 3048, 3049, 5, 368, 0, 0, 3049, 3055, 3, 244, 122, 3, 3050, 3051, 10, 1, 0, 0, 3051, 3052, 3, 254, 127, 0, 3052, 3053, 3, 244, 122, 2, 3053, 3055, 1, 0, 0, 0, 3054, 3035, 1, 0, 0, 0, 3054, 3038, 1, 0, 0, 0, 3054, 3041, 1, 0, 0, 0, 3054, 3044, 1, 0, 0, 0, 3054, 3047, 1, 0, 0, 0, 3054, 3050, 1, 0, 0, 0, 3055, 3058, 1, 0, 0, 0, 3056, 3054, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 245, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3059, 3060, 7, 45, 0, 0, 3060, 247, 1, 0, 0, 0, 3061, 3062, 6, 124, -1, 0, 3062, 3311, 7, 46, 0, 0, 3063, 3064, 7, 47, 0, 0, 3064, 3067, 5, 2, 0, 0, 3065, 3068, 3, 246, 123, 0, 3066, 3068, 3, 342, 171, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 4, 0, 0, 3070, 3071, 3, 244, 122, 0, 3071, 3072, 5, 4, 0, 0, 3072, 3073, 3, 244, 122, 0, 3073, 3074, 5, 3, 0, 0, 3074, 3311, 1, 0, 0, 0, 3075, 3076, 7, 48, 0, 0, 3076, 3079, 5, 2, 0, 0, 3077, 3080, 3, 246, 123, 0, 3078, 3080, 3, 342, 171, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3078, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 5, 4, 0, 0, 3082, 3083, 3, 244, 122, 0, 3083, 3084, 5, 4, 0, 0, 3084, 3085, 3, 244, 122, 0, 3085, 3086, 5, 3, 0, 0, 3086, 3311, 1, 0, 0, 0, 3087, 3089, 5, 35, 0, 0, 3088, 3090, 3, 308, 154, 0, 3089, 3088, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3095, 1, 0, 0, 0, 3093, 3094, 5, 97, 0, 0, 3094, 3096, 3, 232, 116, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3098, 5, 99, 0, 0, 3098, 3311, 1, 0, 0, 0, 3099, 3100, 5, 35, 0, 0, 3100, 3102, 3, 232, 116, 0, 3101, 3103, 3, 308, 154, 0, 3102, 3101, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3108, 1, 0, 0, 0, 3106, 3107, 5, 97, 0, 0, 3107, 3109, 3, 232, 116, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3111, 5, 99, 0, 0, 3111, 3311, 1, 0, 0, 0, 3112, 3113, 7, 49, 0, 0, 3113, 3114, 5, 2, 0, 0, 3114, 3115, 3, 232, 116, 0, 3115, 3116, 5, 20, 0, 0, 3116, 3117, 3, 282, 141, 0, 3117, 3118, 5, 3, 0, 0, 3118, 3311, 1, 0, 0, 0, 3119, 3120, 5, 286, 0, 0, 3120, 3129, 5, 2, 0, 0, 3121, 3126, 3, 220, 110, 0, 3122, 3123, 5, 4, 0, 0, 3123, 3125, 3, 220, 110, 0, 3124, 3122, 1, 0, 0, 0, 3125, 3128, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3129, 3121, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3311, 5, 3, 0, 0, 3132, 3133, 5, 116, 0, 0, 3133, 3134, 5, 2, 0, 0, 3134, 3137, 3, 232, 116, 0, 3135, 3136, 5, 138, 0, 0, 3136, 3138, 5, 199, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3140, 5, 3, 0, 0, 3140, 3311, 1, 0, 0, 0, 3141, 3142, 5, 17, 0, 0, 3142, 3143, 5, 2, 0, 0, 3143, 3146, 3, 232, 116, 0, 3144, 3145, 5, 138, 0, 0, 3145, 3147, 5, 199, 0, 0, 3146, 3144, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 5, 3, 0, 0, 3149, 3311, 1, 0, 0, 0, 3150, 3151, 5, 157, 0, 0, 3151, 3152, 5, 2, 0, 0, 3152, 3155, 3, 232, 116, 0, 3153, 3154, 5, 138, 0, 0, 3154, 3156, 5, 199, 0, 0, 3155, 3153, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 5, 3, 0, 0, 3158, 3311, 1, 0, 0, 0, 3159, 3160, 5, 225, 0, 0, 3160, 3161, 5, 2, 0, 0, 3161, 3162, 3, 244, 122, 0, 3162, 3163, 5, 140, 0, 0, 3163, 3164, 3, 244, 122, 0, 3164, 3165, 5, 3, 0, 0, 3165, 3311, 1, 0, 0, 0, 3166, 3311, 3, 252, 126, 0, 3167, 3311, 5, 363, 0, 0, 3168, 3169, 3, 326, 163, 0, 3169, 3170, 5, 5, 0, 0, 3170, 3171, 5, 363, 0, 0, 3171, 3311, 1, 0, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3176, 3, 220, 110, 0, 3174, 3175, 5, 4, 0, 0, 3175, 3177, 3, 220, 110, 0, 3176, 3174, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3176, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 5, 3, 0, 0, 3181, 3311, 1, 0, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3184, 3, 16, 8, 0, 3184, 3185, 5, 3, 0, 0, 3185, 3311, 1, 0, 0, 0, 3186, 3187, 5, 136, 0, 0, 3187, 3188, 5, 2, 0, 0, 3188, 3189, 3, 232, 116, 0, 3189, 3190, 5, 3, 0, 0, 3190, 3311, 1, 0, 0, 0, 3191, 3192, 3, 322, 161, 0, 3192, 3204, 5, 2, 0, 0, 3193, 3195, 3, 166, 83, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3201, 3, 236, 118, 0, 3197, 3198, 5, 4, 0, 0, 3198, 3200, 3, 236, 118, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3205, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 3194, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3213, 5, 3, 0, 0, 3207, 3208, 5, 114, 0, 0, 3208, 3209, 5, 2, 0, 0, 3209, 3210, 5, 344, 0, 0, 3210, 3211, 3, 240, 120, 0, 3211, 3212, 5, 3, 0, 0, 3212, 3214, 1, 0, 0, 0, 3213, 3207, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3217, 1, 0, 0, 0, 3215, 3216, 7, 50, 0, 0, 3216, 3218, 5, 199, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3221, 1, 0, 0, 0, 3219, 3220, 5, 213, 0, 0, 3220, 3222, 3, 314, 157, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3311, 1, 0, 0, 0, 3223, 3224, 3, 332, 166, 0, 3224, 3225, 5, 372, 0, 0, 3225, 3226, 3, 232, 116, 0, 3226, 3311, 1, 0, 0, 0, 3227, 3228, 5, 2, 0, 0, 3228, 3231, 3, 332, 166, 0, 3229, 3230, 5, 4, 0, 0, 3230, 3232, 3, 332, 166, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3236, 5, 3, 0, 0, 3236, 3237, 5, 372, 0, 0, 3237, 3238, 3, 232, 116, 0, 3238, 3311, 1, 0, 0, 0, 3239, 3311, 3, 80, 40, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3242, 3, 232, 116, 0, 3242, 3243, 5, 3, 0, 0, 3243, 3311, 1, 0, 0, 0, 3244, 3245, 5, 110, 0, 0, 3245, 3246, 5, 2, 0, 0, 3246, 3247, 3, 332, 166, 0, 3247, 3248, 5, 123, 0, 0, 3248, 3249, 3, 244, 122, 0, 3249, 3250, 5, 3, 0, 0, 3250, 3311, 1, 0, 0, 0, 3251, 3252, 7, 51, 0, 0, 3252, 3253, 5, 2, 0, 0, 3253, 3254, 3, 244, 122, 0, 3254, 3255, 7, 52, 0, 0, 3255, 3258, 3, 244, 122, 0, 3256, 3257, 7, 53, 0, 0, 3257, 3259, 3, 244, 122, 0, 3258, 3256, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 5, 3, 0, 0, 3261, 3311, 1, 0, 0, 0, 3262, 3263, 5, 315, 0, 0, 3263, 3265, 5, 2, 0, 0, 3264, 3266, 7, 54, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 244, 122, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3271, 5, 123, 0, 0, 3271, 3272, 3, 244, 122, 0, 3272, 3273, 5, 3, 0, 0, 3273, 3311, 1, 0, 0, 0, 3274, 3275, 5, 215, 0, 0, 3275, 3276, 5, 2, 0, 0, 3276, 3277, 3, 244, 122, 0, 3277, 3278, 5, 224, 0, 0, 3278, 3279, 3, 244, 122, 0, 3279, 3280, 5, 123, 0, 0, 3280, 3283, 3, 244, 122, 0, 3281, 3282, 5, 119, 0, 0, 3282, 3284, 3, 244, 122, 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, 3311, 1, 0, 0, 0, 3287, 3288, 7, 55, 0, 0, 3288, 3289, 5, 2, 0, 0, 3289, 3290, 3, 244, 122, 0, 3290, 3291, 5, 3, 0, 0, 3291, 3292, 5, 347, 0, 0, 3292, 3293, 5, 130, 0, 0, 3293, 3294, 5, 2, 0, 0, 3294, 3295, 5, 209, 0, 0, 3295, 3296, 5, 31, 0, 0, 3296, 3297, 3, 100, 50, 0, 3297, 3304, 5, 3, 0, 0, 3298, 3299, 5, 114, 0, 0, 3299, 3300, 5, 2, 0, 0, 3300, 3301, 5, 344, 0, 0, 3301, 3302, 3, 240, 120, 0, 3302, 3303, 5, 3, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3298, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3308, 1, 0, 0, 0, 3306, 3307, 5, 213, 0, 0, 3307, 3309, 3, 314, 157, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3061, 1, 0, 0, 0, 3310, 3063, 1, 0, 0, 0, 3310, 3075, 1, 0, 0, 0, 3310, 3087, 1, 0, 0, 0, 3310, 3099, 1, 0, 0, 0, 3310, 3112, 1, 0, 0, 0, 3310, 3119, 1, 0, 0, 0, 3310, 3132, 1, 0, 0, 0, 3310, 3141, 1, 0, 0, 0, 3310, 3150, 1, 0, 0, 0, 3310, 3159, 1, 0, 0, 0, 3310, 3166, 1, 0, 0, 0, 3310, 3167, 1, 0, 0, 0, 3310, 3168, 1, 0, 0, 0, 3310, 3172, 1, 0, 0, 0, 3310, 3182, 1, 0, 0, 0, 3310, 3186, 1, 0, 0, 0, 3310, 3191, 1, 0, 0, 0, 3310, 3223, 1, 0, 0, 0, 3310, 3227, 1, 0, 0, 0, 3310, 3239, 1, 0, 0, 0, 3310, 3240, 1, 0, 0, 0, 3310, 3244, 1, 0, 0, 0, 3310, 3251, 1, 0, 0, 0, 3310, 3262, 1, 0, 0, 0, 3310, 3274, 1, 0, 0, 0, 3310, 3287, 1, 0, 0, 0, 3311, 3322, 1, 0, 0, 0, 3312, 3313, 10, 9, 0, 0, 3313, 3314, 5, 6, 0, 0, 3314, 3315, 3, 244, 122, 0, 3315, 3316, 5, 7, 0, 0, 3316, 3321, 1, 0, 0, 0, 3317, 3318, 10, 7, 0, 0, 3318, 3319, 5, 5, 0, 0, 3319, 3321, 3, 332, 166, 0, 3320, 3312, 1, 0, 0, 0, 3320, 3317, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 249, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3333, 5, 71, 0, 0, 3326, 3333, 5, 303, 0, 0, 3327, 3333, 5, 304, 0, 0, 3328, 3333, 5, 305, 0, 0, 3329, 3333, 5, 149, 0, 0, 3330, 3333, 5, 133, 0, 0, 3331, 3333, 3, 332, 166, 0, 3332, 3325, 1, 0, 0, 0, 3332, 3326, 1, 0, 0, 0, 3332, 3327, 1, 0, 0, 0, 3332, 3328, 1, 0, 0, 0, 3332, 3329, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3331, 1, 0, 0, 0, 3333, 251, 1, 0, 0, 0, 3334, 3350, 5, 198, 0, 0, 3335, 3350, 5, 376, 0, 0, 3336, 3337, 5, 371, 0, 0, 3337, 3350, 3, 332, 166, 0, 3338, 3350, 3, 262, 131, 0, 3339, 3340, 3, 250, 125, 0, 3340, 3341, 3, 342, 171, 0, 3341, 3350, 1, 0, 0, 0, 3342, 3350, 3, 338, 169, 0, 3343, 3350, 3, 260, 130, 0, 3344, 3346, 3, 342, 171, 0, 3345, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3334, 1, 0, 0, 0, 3349, 3335, 1, 0, 0, 0, 3349, 3336, 1, 0, 0, 0, 3349, 3338, 1, 0, 0, 0, 3349, 3339, 1, 0, 0, 0, 3349, 3342, 1, 0, 0, 0, 3349, 3343, 1, 0, 0, 0, 3349, 3345, 1, 0, 0, 0, 3350, 253, 1, 0, 0, 0, 3351, 3352, 7, 56, 0, 0, 3352, 255, 1, 0, 0, 0, 3353, 3354, 7, 57, 0, 0, 3354, 257, 1, 0, 0, 0, 3355, 3356, 7, 58, 0, 0, 3356, 259, 1, 0, 0, 0, 3357, 3358, 7, 59, 0, 0, 3358, 261, 1, 0, 0, 0, 3359, 3362, 5, 149, 0, 0, 3360, 3363, 3, 264, 132, 0, 3361, 3363, 3, 268, 134, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3361, 1, 0, 0, 0, 3363, 263, 1, 0, 0, 0, 3364, 3366, 3, 266, 133, 0, 3365, 3367, 3, 270, 135, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 265, 1, 0, 0, 0, 3368, 3369, 3, 272, 136, 0, 3369, 3370, 3, 274, 137, 0, 3370, 3372, 1, 0, 0, 0, 3371, 3368, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 267, 1, 0, 0, 0, 3375, 3378, 3, 270, 135, 0, 3376, 3379, 3, 266, 133, 0, 3377, 3379, 3, 270, 135, 0, 3378, 3376, 1, 0, 0, 0, 3378, 3377, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 269, 1, 0, 0, 0, 3380, 3381, 3, 272, 136, 0, 3381, 3382, 3, 276, 138, 0, 3382, 3383, 5, 309, 0, 0, 3383, 3384, 3, 276, 138, 0, 3384, 271, 1, 0, 0, 0, 3385, 3387, 7, 60, 0, 0, 3386, 3385, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3391, 1, 0, 0, 0, 3388, 3392, 5, 382, 0, 0, 3389, 3392, 5, 384, 0, 0, 3390, 3392, 3, 342, 171, 0, 3391, 3388, 1, 0, 0, 0, 3391, 3389, 1, 0, 0, 0, 3391, 3390, 1, 0, 0, 0, 3392, 273, 1, 0, 0, 0, 3393, 3394, 7, 61, 0, 0, 3394, 275, 1, 0, 0, 0, 3395, 3396, 7, 62, 0, 0, 3396, 277, 1, 0, 0, 0, 3397, 3401, 5, 116, 0, 0, 3398, 3399, 5, 9, 0, 0, 3399, 3401, 3, 328, 164, 0, 3400, 3397, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 279, 1, 0, 0, 0, 3402, 3433, 5, 27, 0, 0, 3403, 3433, 5, 308, 0, 0, 3404, 3433, 5, 32, 0, 0, 3405, 3433, 5, 276, 0, 0, 3406, 3433, 5, 272, 0, 0, 3407, 3433, 5, 150, 0, 0, 3408, 3433, 5, 151, 0, 0, 3409, 3433, 5, 25, 0, 0, 3410, 3433, 5, 174, 0, 0, 3411, 3433, 5, 117, 0, 0, 3412, 3433, 5, 234, 0, 0, 3413, 3433, 5, 95, 0, 0, 3414, 3433, 5, 71, 0, 0, 3415, 3433, 5, 303, 0, 0, 3416, 3433, 5, 305, 0, 0, 3417, 3433, 5, 304, 0, 0, 3418, 3433, 5, 285, 0, 0, 3419, 3433, 5, 41, 0, 0, 3420, 3433, 5, 40, 0, 0, 3421, 3433, 5, 334, 0, 0, 3422, 3433, 5, 26, 0, 0, 3423, 3433, 5, 80, 0, 0, 3424, 3433, 5, 79, 0, 0, 3425, 3433, 5, 200, 0, 0, 3426, 3433, 5, 340, 0, 0, 3427, 3433, 5, 149, 0, 0, 3428, 3433, 5, 19, 0, 0, 3429, 3433, 5, 286, 0, 0, 3430, 3433, 5, 177, 0, 0, 3431, 3433, 3, 332, 166, 0, 3432, 3402, 1, 0, 0, 0, 3432, 3403, 1, 0, 0, 0, 3432, 3404, 1, 0, 0, 0, 3432, 3405, 1, 0, 0, 0, 3432, 3406, 1, 0, 0, 0, 3432, 3407, 1, 0, 0, 0, 3432, 3408, 1, 0, 0, 0, 3432, 3409, 1, 0, 0, 0, 3432, 3410, 1, 0, 0, 0, 3432, 3411, 1, 0, 0, 0, 3432, 3412, 1, 0, 0, 0, 3432, 3413, 1, 0, 0, 0, 3432, 3414, 1, 0, 0, 0, 3432, 3415, 1, 0, 0, 0, 3432, 3416, 1, 0, 0, 0, 3432, 3417, 1, 0, 0, 0, 3432, 3418, 1, 0, 0, 0, 3432, 3419, 1, 0, 0, 0, 3432, 3420, 1, 0, 0, 0, 3432, 3421, 1, 0, 0, 0, 3432, 3422, 1, 0, 0, 0, 3432, 3423, 1, 0, 0, 0, 3432, 3424, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3426, 1, 0, 0, 0, 3432, 3427, 1, 0, 0, 0, 3432, 3428, 1, 0, 0, 0, 3432, 3429, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3432, 3431, 1, 0, 0, 0, 3433, 281, 1, 0, 0, 0, 3434, 3435, 5, 19, 0, 0, 3435, 3436, 5, 356, 0, 0, 3436, 3437, 3, 282, 141, 0, 3437, 3438, 5, 358, 0, 0, 3438, 3488, 1, 0, 0, 0, 3439, 3440, 5, 177, 0, 0, 3440, 3441, 5, 356, 0, 0, 3441, 3442, 3, 282, 141, 0, 3442, 3443, 5, 4, 0, 0, 3443, 3444, 3, 282, 141, 0, 3444, 3445, 5, 358, 0, 0, 3445, 3488, 1, 0, 0, 0, 3446, 3460, 5, 286, 0, 0, 3447, 3456, 5, 356, 0, 0, 3448, 3453, 3, 306, 153, 0, 3449, 3450, 5, 4, 0, 0, 3450, 3452, 3, 306, 153, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3457, 1, 0, 0, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3448, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 5, 358, 0, 0, 3459, 3461, 5, 354, 0, 0, 3460, 3447, 1, 0, 0, 0, 3460, 3459, 1, 0, 0, 0, 3461, 3488, 1, 0, 0, 0, 3462, 3463, 5, 149, 0, 0, 3463, 3466, 7, 63, 0, 0, 3464, 3465, 5, 309, 0, 0, 3465, 3467, 5, 186, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3488, 1, 0, 0, 0, 3468, 3469, 5, 149, 0, 0, 3469, 3472, 7, 64, 0, 0, 3470, 3471, 5, 309, 0, 0, 3471, 3473, 7, 65, 0, 0, 3472, 3470, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3488, 1, 0, 0, 0, 3474, 3485, 3, 280, 140, 0, 3475, 3476, 5, 2, 0, 0, 3476, 3481, 5, 382, 0, 0, 3477, 3478, 5, 4, 0, 0, 3478, 3480, 5, 382, 0, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3486, 5, 3, 0, 0, 3485, 3475, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 1, 0, 0, 0, 3487, 3434, 1, 0, 0, 0, 3487, 3439, 1, 0, 0, 0, 3487, 3446, 1, 0, 0, 0, 3487, 3462, 1, 0, 0, 0, 3487, 3468, 1, 0, 0, 0, 3487, 3474, 1, 0, 0, 0, 3488, 283, 1, 0, 0, 0, 3489, 3494, 3, 286, 143, 0, 3490, 3491, 5, 4, 0, 0, 3491, 3493, 3, 286, 143, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 285, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3498, 3, 84, 42, 0, 3498, 3502, 3, 282, 141, 0, 3499, 3501, 3, 292, 146, 0, 3500, 3499, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 287, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3510, 3, 290, 145, 0, 3506, 3507, 5, 4, 0, 0, 3507, 3509, 3, 290, 145, 0, 3508, 3506, 1, 0, 0, 0, 3509, 3512, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 289, 1, 0, 0, 0, 3512, 3510, 1, 0, 0, 0, 3513, 3514, 3, 78, 39, 0, 3514, 3518, 3, 282, 141, 0, 3515, 3517, 3, 292, 146, 0, 3516, 3515, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 291, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3522, 5, 197, 0, 0, 3522, 3529, 5, 198, 0, 0, 3523, 3524, 5, 82, 0, 0, 3524, 3529, 3, 232, 116, 0, 3525, 3526, 5, 51, 0, 0, 3526, 3529, 3, 342, 171, 0, 3527, 3529, 3, 278, 139, 0, 3528, 3521, 1, 0, 0, 0, 3528, 3523, 1, 0, 0, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 293, 1, 0, 0, 0, 3530, 3531, 7, 66, 0, 0, 3531, 3532, 3, 232, 116, 0, 3532, 295, 1, 0, 0, 0, 3533, 3538, 3, 298, 149, 0, 3534, 3535, 5, 4, 0, 0, 3535, 3537, 3, 298, 149, 0, 3536, 3534, 1, 0, 0, 0, 3537, 3540, 1, 0, 0, 0, 3538, 3536, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 297, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3541, 3542, 3, 328, 164, 0, 3542, 3545, 3, 282, 141, 0, 3543, 3544, 5, 197, 0, 0, 3544, 3546, 5, 198, 0, 0, 3545, 3543, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3549, 1, 0, 0, 0, 3547, 3548, 5, 51, 0, 0, 3548, 3550, 3, 342, 171, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 299, 1, 0, 0, 0, 3551, 3556, 3, 302, 151, 0, 3552, 3553, 5, 4, 0, 0, 3553, 3555, 3, 302, 151, 0, 3554, 3552, 1, 0, 0, 0, 3555, 3558, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 301, 1, 0, 0, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3560, 3, 84, 42, 0, 3560, 3564, 3, 282, 141, 0, 3561, 3563, 3, 304, 152, 0, 3562, 3561, 1, 0, 0, 0, 3563, 3566, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 303, 1, 0, 0, 0, 3566, 3564, 1, 0, 0, 0, 3567, 3568, 5, 197, 0, 0, 3568, 3581, 5, 198, 0, 0, 3569, 3570, 5, 82, 0, 0, 3570, 3581, 3, 232, 116, 0, 3571, 3572, 5, 127, 0, 0, 3572, 3573, 5, 12, 0, 0, 3573, 3574, 5, 20, 0, 0, 3574, 3575, 5, 2, 0, 0, 3575, 3576, 3, 232, 116, 0, 3576, 3577, 5, 3, 0, 0, 3577, 3581, 1, 0, 0, 0, 3578, 3579, 5, 51, 0, 0, 3579, 3581, 3, 342, 171, 0, 3580, 3567, 1, 0, 0, 0, 3580, 3569, 1, 0, 0, 0, 3580, 3571, 1, 0, 0, 0, 3580, 3578, 1, 0, 0, 0, 3581, 305, 1, 0, 0, 0, 3582, 3584, 3, 332, 166, 0, 3583, 3585, 5, 371, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3589, 3, 282, 141, 0, 3587, 3588, 5, 197, 0, 0, 3588, 3590, 5, 198, 0, 0, 3589, 3587, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3593, 1, 0, 0, 0, 3591, 3592, 5, 51, 0, 0, 3592, 3594, 3, 342, 171, 0, 3593, 3591, 1, 0, 0, 0, 3593, 3594, 1, 0, 0, 0, 3594, 307, 1, 0, 0, 0, 3595, 3596, 5, 343, 0, 0, 3596, 3597, 3, 232, 116, 0, 3597, 3598, 5, 300, 0, 0, 3598, 3599, 3, 232, 116, 0, 3599, 309, 1, 0, 0, 0, 3600, 3601, 5, 345, 0, 0, 3601, 3602, 3, 328, 164, 0, 3602, 3603, 5, 20, 0, 0, 3603, 3611, 3, 314, 157, 0, 3604, 3605, 5, 4, 0, 0, 3605, 3606, 3, 328, 164, 0, 3606, 3607, 5, 20, 0, 0, 3607, 3608, 3, 314, 157, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3604, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 311, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3615, 5, 351, 0, 0, 3615, 3616, 5, 31, 0, 0, 3616, 3617, 3, 82, 41, 0, 3617, 313, 1, 0, 0, 0, 3618, 3658, 3, 328, 164, 0, 3619, 3620, 5, 2, 0, 0, 3620, 3621, 3, 328, 164, 0, 3621, 3622, 5, 3, 0, 0, 3622, 3658, 1, 0, 0, 0, 3623, 3651, 5, 2, 0, 0, 3624, 3625, 5, 44, 0, 0, 3625, 3626, 5, 31, 0, 0, 3626, 3631, 3, 232, 116, 0, 3627, 3628, 5, 4, 0, 0, 3628, 3630, 3, 232, 116, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3633, 1, 0, 0, 0, 3631, 3629, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3652, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3634, 3635, 7, 35, 0, 0, 3635, 3636, 5, 31, 0, 0, 3636, 3641, 3, 232, 116, 0, 3637, 3638, 5, 4, 0, 0, 3638, 3640, 3, 232, 116, 0, 3639, 3637, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3645, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 3634, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3649, 1, 0, 0, 0, 3646, 3647, 7, 36, 0, 0, 3647, 3648, 5, 31, 0, 0, 3648, 3650, 3, 92, 46, 0, 3649, 3646, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3652, 1, 0, 0, 0, 3651, 3624, 1, 0, 0, 0, 3651, 3644, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 316, 158, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3658, 5, 3, 0, 0, 3657, 3618, 1, 0, 0, 0, 3657, 3619, 1, 0, 0, 0, 3657, 3623, 1, 0, 0, 0, 3658, 315, 1, 0, 0, 0, 3659, 3660, 7, 67, 0, 0, 3660, 3668, 3, 318, 159, 0, 3661, 3662, 7, 67, 0, 0, 3662, 3663, 5, 24, 0, 0, 3663, 3664, 3, 318, 159, 0, 3664, 3665, 5, 14, 0, 0, 3665, 3666, 3, 318, 159, 0, 3666, 3668, 1, 0, 0, 0, 3667, 3659, 1, 0, 0, 0, 3667, 3661, 1, 0, 0, 0, 3668, 317, 1, 0, 0, 0, 3669, 3670, 5, 321, 0, 0, 3670, 3677, 7, 68, 0, 0, 3671, 3672, 5, 62, 0, 0, 3672, 3677, 5, 257, 0, 0, 3673, 3674, 3, 232, 116, 0, 3674, 3675, 7, 68, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3669, 1, 0, 0, 0, 3676, 3671, 1, 0, 0, 0, 3676, 3673, 1, 0, 0, 0, 3677, 319, 1, 0, 0, 0, 3678, 3683, 3, 326, 163, 0, 3679, 3680, 5, 4, 0, 0, 3680, 3682, 3, 326, 163, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 321, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 5, 136, 0, 0, 3687, 3688, 5, 2, 0, 0, 3688, 3689, 3, 232, 116, 0, 3689, 3690, 5, 3, 0, 0, 3690, 3696, 1, 0, 0, 0, 3691, 3696, 3, 326, 163, 0, 3692, 3696, 5, 114, 0, 0, 3693, 3696, 5, 161, 0, 0, 3694, 3696, 5, 250, 0, 0, 3695, 3686, 1, 0, 0, 0, 3695, 3691, 1, 0, 0, 0, 3695, 3692, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3694, 1, 0, 0, 0, 3696, 323, 1, 0, 0, 0, 3697, 3698, 3, 326, 163, 0, 3698, 325, 1, 0, 0, 0, 3699, 3704, 3, 332, 166, 0, 3700, 3701, 5, 5, 0, 0, 3701, 3703, 3, 332, 166, 0, 3702, 3700, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 327, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, 3708, 3, 332, 166, 0, 3708, 3709, 3, 330, 165, 0, 3709, 329, 1, 0, 0, 0, 3710, 3711, 5, 362, 0, 0, 3711, 3713, 3, 332, 166, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3712, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3718, 1, 0, 0, 0, 3716, 3718, 1, 0, 0, 0, 3717, 3712, 1, 0, 0, 0, 3717, 3716, 1, 0, 0, 0, 3718, 331, 1, 0, 0, 0, 3719, 3722, 3, 334, 167, 0, 3720, 3722, 3, 346, 173, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3720, 1, 0, 0, 0, 3722, 333, 1, 0, 0, 0, 3723, 3728, 5, 388, 0, 0, 3724, 3728, 3, 336, 168, 0, 3725, 3728, 3, 344, 172, 0, 3726, 3728, 3, 348, 174, 0, 3727, 3723, 1, 0, 0, 0, 3727, 3724, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3727, 3726, 1, 0, 0, 0, 3728, 335, 1, 0, 0, 0, 3729, 3730, 7, 69, 0, 0, 3730, 337, 1, 0, 0, 0, 3731, 3733, 5, 362, 0, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3735, 7, 70, 0, 0, 3735, 339, 1, 0, 0, 0, 3736, 3737, 5, 319, 0, 0, 3737, 3750, 3, 282, 141, 0, 3738, 3739, 5, 51, 0, 0, 3739, 3750, 3, 342, 171, 0, 3740, 3750, 3, 278, 139, 0, 3741, 3742, 7, 71, 0, 0, 3742, 3743, 5, 197, 0, 0, 3743, 3750, 5, 198, 0, 0, 3744, 3745, 5, 269, 0, 0, 3745, 3746, 5, 82, 0, 0, 3746, 3750, 3, 232, 116, 0, 3747, 3748, 5, 96, 0, 0, 3748, 3750, 5, 82, 0, 0, 3749, 3736, 1, 0, 0, 0, 3749, 3738, 1, 0, 0, 0, 3749, 3740, 1, 0, 0, 0, 3749, 3741, 1, 0, 0, 0, 3749, 3744, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3750, 341, 1, 0, 0, 0, 3751, 3752, 7, 72, 0, 0, 3752, 343, 1, 0, 0, 0, 3753, 3754, 7, 73, 0, 0, 3754, 345, 1, 0, 0, 0, 3755, 3756, 7, 74, 0, 0, 3756, 347, 1, 0, 0, 0, 3757, 3758, 7, 75, 0, 0, 3758, 349, 1, 0, 0, 0, 504, 353, 360, 364, 369, 376, 381, 391, 393, 413, 417, 423, 426, 429, 433, 436, 440, 447, 450, 454, 457, 462, 475, 477, 482, 491, 494, 498, 501, 507, 518, 524, 529, 562, 572, 583, 594, 605, 610, 619, 623, 629, 633, 638, 644, 656, 664, 670, 681, 685, 690, 705, 709, 716, 720, 726, 756, 760, 765, 772, 778, 781, 784, 788, 792, 801, 803, 812, 815, 824, 829, 835, 842, 845, 849, 864, 867, 873, 877, 894, 896, 904, 908, 914, 917, 921, 924, 930, 935, 939, 946, 949, 952, 959, 964, 973, 981, 987, 990, 993, 999, 1003, 1008, 1011, 1015, 1017, 1025, 1033, 1036, 1043, 1046, 1049, 1058, 1063, 1069, 1074, 1077, 1081, 1084, 1088, 1098, 1103, 1116, 1119, 1127, 1133, 1136, 1139, 1144, 1152, 1157, 1163, 1169, 1172, 1179, 1186, 1194, 1206, 1214, 1241, 1244, 1250, 1259, 1268, 1274, 1279, 1284, 1291, 1296, 1301, 1308, 1316, 1319, 1325, 1332, 1336, 1399, 1407, 1414, 1422, 1434, 1439, 1448, 1456, 1461, 1463, 1471, 1476, 1480, 1483, 1491, 1496, 1505, 1510, 1513, 1518, 1522, 1527, 1529, 1534, 1543, 1551, 1557, 1566, 1573, 1582, 1587, 1590, 1615, 1617, 1629, 1636, 1639, 1646, 1650, 1656, 1664, 1671, 1674, 1682, 1693, 1704, 1712, 1718, 1729, 1736, 1743, 1755, 1763, 1769, 1775, 1778, 1794, 1803, 1814, 1819, 1824, 1829, 1834, 1837, 1840, 1844, 1849, 1856, 1864, 1873, 1879, 1885, 1888, 1890, 1898, 1908, 1917, 1921, 1924, 1928, 1932, 1940, 1944, 1947, 1950, 1953, 1957, 1961, 1966, 1970, 1973, 1976, 1979, 1983, 1988, 1992, 1995, 1998, 2001, 2003, 2009, 2016, 2021, 2024, 2027, 2031, 2041, 2045, 2047, 2050, 2054, 2060, 2064, 2075, 2083, 2085, 2092, 2096, 2108, 2115, 2130, 2135, 2142, 2158, 2163, 2176, 2181, 2189, 2195, 2199, 2202, 2205, 2212, 2215, 2221, 2230, 2240, 2255, 2260, 2262, 2267, 2276, 2286, 2291, 2295, 2300, 2307, 2312, 2316, 2319, 2322, 2336, 2349, 2354, 2358, 2361, 2366, 2371, 2375, 2378, 2390, 2401, 2414, 2425, 2430, 2433, 2437, 2440, 2452, 2461, 2464, 2469, 2476, 2479, 2485, 2491, 2493, 2496, 2501, 2505, 2511, 2515, 2518, 2523, 2526, 2531, 2533, 2539, 2544, 2551, 2554, 2572, 2574, 2577, 2588, 2597, 2604, 2612, 2620, 2625, 2628, 2631, 2639, 2647, 2657, 2669, 2672, 2677, 2682, 2689, 2696, 2698, 2711, 2717, 2719, 2728, 2730, 2738, 2742, 2745, 2749, 2751, 2760, 2772, 2774, 2781, 2788, 2794, 2800, 2802, 2809, 2817, 2825, 2831, 2836, 2843, 2849, 2852, 2856, 2858, 2865, 2874, 2881, 2891, 2896, 2900, 2910, 2917, 2930, 2932, 2940, 2942, 2946, 2954, 2963, 2969, 2977, 2982, 2994, 2999, 3002, 3008, 3012, 3017, 3022, 3027, 3033, 3054, 3056, 3067, 3079, 3091, 3095, 3104, 3108, 3126, 3129, 3137, 3146, 3155, 3178, 3194, 3201, 3204, 3213, 3217, 3221, 3233, 3258, 3265, 3268, 3283, 3304, 3308, 3310, 3320, 3322, 3332, 3347, 3349, 3362, 3366, 3373, 3378, 3386, 3391, 3400, 3432, 3453, 3456, 3460, 3466, 3472, 3481, 3485, 3487, 3494, 3502, 3510, 3518, 3528, 3538, 3545, 3549, 3556, 3564, 3580, 3584, 3589, 3593, 3611, 3631, 3641, 3644, 3649, 3651, 3654, 3657, 3667, 3676, 3683, 3695, 3704, 3714, 3717, 3721, 3727, 3732, 3749] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.tokens b/src/lib/spark/SparkSqlParser.tokens index d88918b0b..eb87db246 100644 --- a/src/lib/spark/SparkSqlParser.tokens +++ b/src/lib/spark/SparkSqlParser.tokens @@ -387,9 +387,9 @@ DOUBLE_LITERAL=386 BIGDECIMAL_LITERAL=387 IDENTIFIER=388 BACKQUOTED_IDENTIFIER=389 -SIMPLE_COMMENT=390 +LINE_COMMENT=390 BRACKETED_COMMENT=391 -WS=392 +WHITE_SPACE=392 UNRECOGNIZED=393 ';'=1 '('=2 diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index ace070df3..19243be2d 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -406,210 +406,185 @@ export class SparkSqlParser extends SQLParserBase { public static readonly BIGDECIMAL_LITERAL = 387; public static readonly IDENTIFIER = 388; public static readonly BACKQUOTED_IDENTIFIER = 389; - public static readonly SIMPLE_COMMENT = 390; + public static readonly LINE_COMMENT = 390; public static readonly BRACKETED_COMMENT = 391; - public static readonly WS = 392; + public static readonly WHITE_SPACE = 392; public static readonly UNRECOGNIZED = 393; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_statement = 2; - public static readonly RULE_timezone = 3; - public static readonly RULE_configKey = 4; - public static readonly RULE_configValue = 5; - public static readonly RULE_unsupportedHiveNativeCommands = 6; - public static readonly RULE_createTableHeader = 7; - public static readonly RULE_replaceTableHeader = 8; - public static readonly RULE_bucketSpec = 9; - public static readonly RULE_skewSpec = 10; - public static readonly RULE_locationSpec = 11; - public static readonly RULE_commentSpec = 12; - public static readonly RULE_query = 13; - public static readonly RULE_insertInto = 14; - public static readonly RULE_partitionSpecLocation = 15; - public static readonly RULE_partitionSpec = 16; - public static readonly RULE_partitionVal = 17; - 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; - public static readonly RULE_namedQuery = 23; - public static readonly RULE_tableProvider = 24; - public static readonly RULE_createTableClauses = 25; - public static readonly RULE_tableLifecycle = 26; - public static readonly RULE_propertyList = 27; - public static readonly RULE_property = 28; - public static readonly RULE_propertyKey = 29; - public static readonly RULE_propertyValue = 30; - public static readonly RULE_expressionPropertyList = 31; - public static readonly RULE_expressionProperty = 32; - public static readonly RULE_constantList = 33; - public static readonly RULE_nestedConstantList = 34; - public static readonly RULE_createFileFormat = 35; - public static readonly RULE_fileFormat = 36; - public static readonly RULE_storageHandler = 37; - public static readonly RULE_resource = 38; - public static readonly RULE_dmlStatementNoWith = 39; - public static readonly RULE_namespaceName = 40; - public static readonly RULE_namespaceNameCreate = 41; - public static readonly RULE_tableNameCreate = 42; - public static readonly RULE_tableName = 43; - public static readonly RULE_viewNameCreate = 44; - public static readonly RULE_viewName = 45; - public static readonly RULE_columnName = 46; - public static readonly RULE_columnNameSeq = 47; - public static readonly RULE_columnNameCreate = 48; - public static readonly RULE_identifierReference = 49; - public static readonly RULE_queryOrganization = 50; - public static readonly RULE_multiInsertQueryBody = 51; - public static readonly RULE_queryTerm = 52; - public static readonly RULE_queryPrimary = 53; - public static readonly RULE_sortItem = 54; - public static readonly RULE_fromStatement = 55; - public static readonly RULE_fromStatementBody = 56; - public static readonly RULE_querySpecification = 57; - public static readonly RULE_transformClause = 58; - public static readonly RULE_selectClause = 59; - public static readonly RULE_setClause = 60; - public static readonly RULE_matchedClause = 61; - public static readonly RULE_notMatchedClause = 62; - public static readonly RULE_notMatchedBySourceClause = 63; - public static readonly RULE_matchedAction = 64; - public static readonly RULE_notMatchedAction = 65; - public static readonly RULE_notMatchedBySourceAction = 66; - public static readonly RULE_assignmentList = 67; - public static readonly RULE_assignment = 68; - public static readonly RULE_whereClause = 69; - public static readonly RULE_havingClause = 70; - public static readonly RULE_hint = 71; - public static readonly RULE_hintStatement = 72; - public static readonly RULE_fromClause = 73; - public static readonly RULE_functionKind = 74; - public static readonly RULE_temporalClause = 75; - public static readonly RULE_aggregationClause = 76; - public static readonly RULE_groupByClause = 77; - public static readonly RULE_groupingAnalytics = 78; - public static readonly RULE_groupingElement = 79; - public static readonly RULE_groupingSet = 80; - public static readonly RULE_pivotClause = 81; - public static readonly RULE_pivotColumn = 82; - public static readonly RULE_pivotValue = 83; - public static readonly RULE_unPivotClause = 84; - public static readonly RULE_unPivotNullClause = 85; - public static readonly RULE_unPivotOperator = 86; - public static readonly RULE_unPivotSingleValueColumnClause = 87; - public static readonly RULE_unPivotMultiValueColumnClause = 88; - public static readonly RULE_unPivotColumnSet = 89; - public static readonly RULE_unPivotValueColumn = 90; - public static readonly RULE_unPivotNameColumn = 91; - public static readonly RULE_unPivotColumnAndAlias = 92; - public static readonly RULE_unPivotColumn = 93; - public static readonly RULE_unPivotAlias = 94; - public static readonly RULE_ifNotExists = 95; - public static readonly RULE_ifExists = 96; - public static readonly RULE_lateralView = 97; - public static readonly RULE_setQuantifier = 98; - public static readonly RULE_relation = 99; - public static readonly RULE_relationExtension = 100; - public static readonly RULE_joinRelation = 101; - public static readonly RULE_joinType = 102; - public static readonly RULE_joinCriteria = 103; - public static readonly RULE_sample = 104; - public static readonly RULE_sampleMethod = 105; - public static readonly RULE_identifierList = 106; - public static readonly RULE_identifierSeq = 107; - public static readonly RULE_orderedIdentifierList = 108; - public static readonly RULE_orderedIdentifier = 109; - public static readonly RULE_identifierCommentList = 110; - public static readonly RULE_identifierComment = 111; - public static readonly RULE_relationPrimary = 112; - public static readonly RULE_inlineTable = 113; - public static readonly RULE_functionTableSubqueryArgument = 114; - public static readonly RULE_tableArgumentPartitioning = 115; - public static readonly RULE_functionTableNamedArgumentExpression = 116; - public static readonly RULE_functionTableReferenceArgument = 117; - public static readonly RULE_functionTableArgument = 118; - public static readonly RULE_functionTable = 119; - public static readonly RULE_tableAlias = 120; - public static readonly RULE_rowFormat = 121; - public static readonly RULE_multipartIdentifierList = 122; - public static readonly RULE_multipartIdentifier = 123; - public static readonly RULE_multipartIdentifierPropertyList = 124; - public static readonly RULE_multipartIdentifierProperty = 125; - public static readonly RULE_tableIdentifier = 126; - public static readonly RULE_viewIdentifier = 127; - public static readonly RULE_namedExpression = 128; - public static readonly RULE_namedExpressionSeq = 129; - public static readonly RULE_partitionFieldList = 130; - public static readonly RULE_partitionField = 131; - public static readonly RULE_transform = 132; - public static readonly RULE_transformArgument = 133; - public static readonly RULE_expression = 134; - public static readonly RULE_namedArgumentExpression = 135; - public static readonly RULE_functionArgument = 136; - public static readonly RULE_expressionSeq = 137; - public static readonly RULE_booleanExpression = 138; - public static readonly RULE_predicate = 139; - public static readonly RULE_valueExpression = 140; - public static readonly RULE_datetimeUnit = 141; - public static readonly RULE_primaryExpression = 142; - public static readonly RULE_literalType = 143; - public static readonly RULE_constant = 144; - public static readonly RULE_comparisonOperator = 145; - public static readonly RULE_arithmeticOperator = 146; - public static readonly RULE_predicateOperator = 147; - public static readonly RULE_booleanValue = 148; - public static readonly RULE_interval = 149; - public static readonly RULE_errorCapturingMultiUnitsInterval = 150; - public static readonly RULE_multiUnitsInterval = 151; - public static readonly RULE_errorCapturingUnitToUnitInterval = 152; - public static readonly RULE_unitToUnitInterval = 153; - public static readonly RULE_intervalValue = 154; - public static readonly RULE_unitInMultiUnits = 155; - public static readonly RULE_unitInUnitToUnit = 156; - public static readonly RULE_colPosition = 157; - public static readonly RULE_type = 158; - public static readonly RULE_dataType = 159; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 160; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 161; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 162; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 163; - public static readonly RULE_colDefinitionDescriptorWithPosition = 164; - public static readonly RULE_defaultExpression = 165; - public static readonly RULE_variableDefaultExpression = 166; - public static readonly RULE_colTypeList = 167; - public static readonly RULE_columnType = 168; - public static readonly RULE_createOrReplaceTableColTypeList = 169; - public static readonly RULE_createOrReplaceTableColType = 170; - public static readonly RULE_colDefinitionOption = 171; - public static readonly RULE_generationExpression = 172; - public static readonly RULE_complexColTypeList = 173; - public static readonly RULE_complexColType = 174; - public static readonly RULE_whenClause = 175; - public static readonly RULE_windowClause = 176; - public static readonly RULE_zOrderClause = 177; - public static readonly RULE_namedWindow = 178; - public static readonly RULE_windowSpec = 179; - public static readonly RULE_windowFrame = 180; - public static readonly RULE_frameBound = 181; - public static readonly RULE_qualifiedNameList = 182; - public static readonly RULE_functionName = 183; - public static readonly RULE_functionNameCreate = 184; - public static readonly RULE_qualifiedName = 185; - public static readonly RULE_errorCapturingIdentifier = 186; - public static readonly RULE_errorCapturingIdentifierExtra = 187; - public static readonly RULE_identifier = 188; - public static readonly RULE_strictIdentifier = 189; - public static readonly RULE_quotedIdentifier = 190; - public static readonly RULE_backQuotedIdentifier = 191; - public static readonly RULE_number = 192; - public static readonly RULE_alterColumnAction = 193; - public static readonly RULE_stringLit = 194; - public static readonly RULE_commentStr = 195; - public static readonly RULE_version = 196; - public static readonly RULE_ansiNonReserved = 197; - public static readonly RULE_strictNonReserved = 198; - public static readonly RULE_nonReserved = 199; + public static readonly RULE_unsupportedHiveNativeCommands = 3; + public static readonly RULE_bucketSpec = 4; + public static readonly RULE_skewSpec = 5; + public static readonly RULE_locationSpec = 6; + public static readonly RULE_commentSpec = 7; + public static readonly RULE_query = 8; + public static readonly RULE_insertInto = 9; + public static readonly RULE_partitionSpecLocation = 10; + public static readonly RULE_partitionSpec = 11; + public static readonly RULE_partitionVal = 12; + public static readonly RULE_namespace = 13; + public static readonly RULE_describeFuncName = 14; + public static readonly RULE_describeColName = 15; + public static readonly RULE_ctes = 16; + public static readonly RULE_namedQuery = 17; + public static readonly RULE_tableProvider = 18; + public static readonly RULE_createTableClauses = 19; + public static readonly RULE_tableLifecycle = 20; + public static readonly RULE_propertyList = 21; + public static readonly RULE_property = 22; + public static readonly RULE_propertyKey = 23; + public static readonly RULE_propertyValue = 24; + public static readonly RULE_expressionPropertyList = 25; + public static readonly RULE_expressionProperty = 26; + public static readonly RULE_constantList = 27; + public static readonly RULE_nestedConstantList = 28; + public static readonly RULE_createFileFormat = 29; + public static readonly RULE_fileFormat = 30; + public static readonly RULE_storageHandler = 31; + public static readonly RULE_dmlStatementNoWith = 32; + public static readonly RULE_namespaceName = 33; + public static readonly RULE_namespaceNameCreate = 34; + public static readonly RULE_tableNameCreate = 35; + public static readonly RULE_tableName = 36; + public static readonly RULE_viewNameCreate = 37; + public static readonly RULE_viewName = 38; + public static readonly RULE_columnName = 39; + public static readonly RULE_columnNamePath = 40; + public static readonly RULE_columnNameSeq = 41; + public static readonly RULE_columnNameCreate = 42; + public static readonly RULE_identifierReference = 43; + public static readonly RULE_queryOrganization = 44; + public static readonly RULE_limitClause = 45; + public static readonly RULE_orderOrSortByClause = 46; + public static readonly RULE_clusterOrDistributeBy = 47; + public static readonly RULE_queryTerm = 48; + public static readonly RULE_queryPrimary = 49; + public static readonly RULE_sortItem = 50; + public static readonly RULE_fromStatementBody = 51; + public static readonly RULE_querySpecification = 52; + public static readonly RULE_transformClause = 53; + public static readonly RULE_selectClause = 54; + public static readonly RULE_setClause = 55; + public static readonly RULE_matchedClause = 56; + public static readonly RULE_notMatchedClause = 57; + public static readonly RULE_notMatchedBySourceClause = 58; + public static readonly RULE_notMatchedAction = 59; + public static readonly RULE_assignmentList = 60; + public static readonly RULE_assignment = 61; + public static readonly RULE_whereClause = 62; + public static readonly RULE_havingClause = 63; + public static readonly RULE_hint = 64; + public static readonly RULE_hintStatement = 65; + public static readonly RULE_fromClause = 66; + public static readonly RULE_temporalClause = 67; + public static readonly RULE_aggregationClause = 68; + public static readonly RULE_groupByClause = 69; + public static readonly RULE_groupingAnalytics = 70; + public static readonly RULE_groupingSet = 71; + public static readonly RULE_pivotClause = 72; + public static readonly RULE_pivotColumn = 73; + public static readonly RULE_pivotValue = 74; + public static readonly RULE_unPivotClause = 75; + public static readonly RULE_unPivotSingleValueColumnClause = 76; + public static readonly RULE_unPivotMultiValueColumnClause = 77; + public static readonly RULE_unPivotColumnSet = 78; + public static readonly RULE_unPivotColumnAndAlias = 79; + public static readonly RULE_ifNotExists = 80; + public static readonly RULE_ifExists = 81; + public static readonly RULE_lateralView = 82; + public static readonly RULE_setQuantifier = 83; + public static readonly RULE_relation = 84; + public static readonly RULE_joinRelation = 85; + public static readonly RULE_joinType = 86; + public static readonly RULE_joinCriteria = 87; + public static readonly RULE_sample = 88; + public static readonly RULE_sampleMethod = 89; + public static readonly RULE_identifierList = 90; + public static readonly RULE_identifierSeq = 91; + public static readonly RULE_orderedIdentifierList = 92; + public static readonly RULE_orderedIdentifier = 93; + public static readonly RULE_identifierCommentList = 94; + public static readonly RULE_identifierComment = 95; + public static readonly RULE_relationPrimary = 96; + public static readonly RULE_functionTableSubqueryArgument = 97; + public static readonly RULE_tableArgumentPartitioning = 98; + public static readonly RULE_functionTableNamedArgumentExpression = 99; + public static readonly RULE_functionTableReferenceArgument = 100; + public static readonly RULE_functionTableArgument = 101; + public static readonly RULE_tableAlias = 102; + public static readonly RULE_rowFormat = 103; + public static readonly RULE_multipartIdentifierList = 104; + public static readonly RULE_multipartIdentifier = 105; + public static readonly RULE_multipartIdentifierPropertyList = 106; + public static readonly RULE_multipartIdentifierProperty = 107; + public static readonly RULE_tableIdentifier = 108; + public static readonly RULE_viewIdentifier = 109; + public static readonly RULE_namedExpression = 110; + public static readonly RULE_namedExpressionSeq = 111; + public static readonly RULE_partitionFieldList = 112; + public static readonly RULE_partitionField = 113; + public static readonly RULE_transform = 114; + public static readonly RULE_transformArgument = 115; + public static readonly RULE_expression = 116; + public static readonly RULE_namedArgumentExpression = 117; + public static readonly RULE_functionArgument = 118; + public static readonly RULE_expressionSeq = 119; + public static readonly RULE_booleanExpression = 120; + public static readonly RULE_predicate = 121; + public static readonly RULE_valueExpression = 122; + public static readonly RULE_datetimeUnit = 123; + public static readonly RULE_primaryExpression = 124; + public static readonly RULE_literalType = 125; + public static readonly RULE_constant = 126; + public static readonly RULE_comparisonOperator = 127; + public static readonly RULE_arithmeticOperator = 128; + public static readonly RULE_predicateOperator = 129; + public static readonly RULE_booleanValue = 130; + public static readonly RULE_interval = 131; + public static readonly RULE_errorCapturingMultiUnitsInterval = 132; + public static readonly RULE_multiUnitsInterval = 133; + public static readonly RULE_errorCapturingUnitToUnitInterval = 134; + public static readonly RULE_unitToUnitInterval = 135; + public static readonly RULE_intervalValue = 136; + public static readonly RULE_unitInMultiUnits = 137; + public static readonly RULE_unitInUnitToUnit = 138; + public static readonly RULE_colPosition = 139; + public static readonly RULE_type = 140; + public static readonly RULE_dataType = 141; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 142; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 143; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 144; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 145; + public static readonly RULE_colDefinitionDescriptorWithPosition = 146; + public static readonly RULE_variableDefaultExpression = 147; + public static readonly RULE_colTypeList = 148; + public static readonly RULE_columnType = 149; + public static readonly RULE_createOrReplaceTableColTypeList = 150; + public static readonly RULE_createOrReplaceTableColType = 151; + public static readonly RULE_colDefinitionOption = 152; + public static readonly RULE_complexColType = 153; + public static readonly RULE_whenClause = 154; + public static readonly RULE_windowClause = 155; + public static readonly RULE_zOrderClause = 156; + public static readonly RULE_windowSpec = 157; + public static readonly RULE_windowFrame = 158; + public static readonly RULE_frameBound = 159; + public static readonly RULE_qualifiedNameList = 160; + public static readonly RULE_functionName = 161; + public static readonly RULE_functionNameCreate = 162; + public static readonly RULE_qualifiedName = 163; + public static readonly RULE_errorCapturingIdentifier = 164; + public static readonly RULE_errorCapturingIdentifierExtra = 165; + public static readonly RULE_identifier = 166; + public static readonly RULE_strictIdentifier = 167; + public static readonly RULE_quotedIdentifier = 168; + public static readonly RULE_number = 169; + public static readonly RULE_alterColumnAction = 170; + public static readonly RULE_stringLit = 171; + public static readonly RULE_ansiNonReserved = 172; + public static readonly RULE_strictNonReserved = 173; + public static readonly RULE_nonReserved = 174; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -755,62 +730,55 @@ export class SparkSqlParser extends SQLParserBase { "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", "DOUBLEQUOTED_STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", - "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" + "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "LINE_COMMENT", + "BRACKETED_COMMENT", "WHITE_SPACE", "UNRECOGNIZED" ]; public static readonly ruleNames = [ - "program", "singleStatement", "statement", "timezone", "configKey", - "configValue", "unsupportedHiveNativeCommands", "createTableHeader", - "replaceTableHeader", "bucketSpec", "skewSpec", "locationSpec", - "commentSpec", "query", "insertInto", "partitionSpecLocation", "partitionSpec", - "partitionVal", "namespace", "namespaces", "describeFuncName", "describeColName", - "ctes", "namedQuery", "tableProvider", "createTableClauses", "tableLifecycle", - "propertyList", "property", "propertyKey", "propertyValue", "expressionPropertyList", + "program", "singleStatement", "statement", "unsupportedHiveNativeCommands", + "bucketSpec", "skewSpec", "locationSpec", "commentSpec", "query", + "insertInto", "partitionSpecLocation", "partitionSpec", "partitionVal", + "namespace", "describeFuncName", "describeColName", "ctes", "namedQuery", + "tableProvider", "createTableClauses", "tableLifecycle", "propertyList", + "property", "propertyKey", "propertyValue", "expressionPropertyList", "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", - "fileFormat", "storageHandler", "resource", "dmlStatementNoWith", - "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", - "viewNameCreate", "viewName", "columnName", "columnNameSeq", "columnNameCreate", - "identifierReference", "queryOrganization", "multiInsertQueryBody", - "queryTerm", "queryPrimary", "sortItem", "fromStatement", "fromStatementBody", - "querySpecification", "transformClause", "selectClause", "setClause", - "matchedClause", "notMatchedClause", "notMatchedBySourceClause", - "matchedAction", "notMatchedAction", "notMatchedBySourceAction", - "assignmentList", "assignment", "whereClause", "havingClause", "hint", - "hintStatement", "fromClause", "functionKind", "temporalClause", - "aggregationClause", "groupByClause", "groupingAnalytics", "groupingElement", - "groupingSet", "pivotClause", "pivotColumn", "pivotValue", "unPivotClause", - "unPivotNullClause", "unPivotOperator", "unPivotSingleValueColumnClause", - "unPivotMultiValueColumnClause", "unPivotColumnSet", "unPivotValueColumn", - "unPivotNameColumn", "unPivotColumnAndAlias", "unPivotColumn", "unPivotAlias", + "fileFormat", "storageHandler", "dmlStatementNoWith", "namespaceName", + "namespaceNameCreate", "tableNameCreate", "tableName", "viewNameCreate", + "viewName", "columnName", "columnNamePath", "columnNameSeq", "columnNameCreate", + "identifierReference", "queryOrganization", "limitClause", "orderOrSortByClause", + "clusterOrDistributeBy", "queryTerm", "queryPrimary", "sortItem", + "fromStatementBody", "querySpecification", "transformClause", "selectClause", + "setClause", "matchedClause", "notMatchedClause", "notMatchedBySourceClause", + "notMatchedAction", "assignmentList", "assignment", "whereClause", + "havingClause", "hint", "hintStatement", "fromClause", "temporalClause", + "aggregationClause", "groupByClause", "groupingAnalytics", "groupingSet", + "pivotClause", "pivotColumn", "pivotValue", "unPivotClause", "unPivotSingleValueColumnClause", + "unPivotMultiValueColumnClause", "unPivotColumnSet", "unPivotColumnAndAlias", "ifNotExists", "ifExists", "lateralView", "setQuantifier", "relation", - "relationExtension", "joinRelation", "joinType", "joinCriteria", - "sample", "sampleMethod", "identifierList", "identifierSeq", "orderedIdentifierList", - "orderedIdentifier", "identifierCommentList", "identifierComment", - "relationPrimary", "inlineTable", "functionTableSubqueryArgument", - "tableArgumentPartitioning", "functionTableNamedArgumentExpression", - "functionTableReferenceArgument", "functionTableArgument", "functionTable", - "tableAlias", "rowFormat", "multipartIdentifierList", "multipartIdentifier", - "multipartIdentifierPropertyList", "multipartIdentifierProperty", - "tableIdentifier", "viewIdentifier", "namedExpression", "namedExpressionSeq", - "partitionFieldList", "partitionField", "transform", "transformArgument", - "expression", "namedArgumentExpression", "functionArgument", "expressionSeq", - "booleanExpression", "predicate", "valueExpression", "datetimeUnit", - "primaryExpression", "literalType", "constant", "comparisonOperator", - "arithmeticOperator", "predicateOperator", "booleanValue", "interval", - "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", - "unitToUnitInterval", "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", - "colPosition", "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", - "qualifiedColTypeWithPositionForAdd", "qualifiedColTypeWithPositionSeqForReplace", - "qualifiedColTypeWithPositionForReplace", "colDefinitionDescriptorWithPosition", - "defaultExpression", "variableDefaultExpression", "colTypeList", - "columnType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", - "colDefinitionOption", "generationExpression", "complexColTypeList", - "complexColType", "whenClause", "windowClause", "zOrderClause", - "namedWindow", "windowSpec", "windowFrame", "frameBound", "qualifiedNameList", - "functionName", "functionNameCreate", "qualifiedName", "errorCapturingIdentifier", - "errorCapturingIdentifierExtra", "identifier", "strictIdentifier", - "quotedIdentifier", "backQuotedIdentifier", "number", "alterColumnAction", - "stringLit", "commentStr", "version", "ansiNonReserved", "strictNonReserved", + "joinRelation", "joinType", "joinCriteria", "sample", "sampleMethod", + "identifierList", "identifierSeq", "orderedIdentifierList", "orderedIdentifier", + "identifierCommentList", "identifierComment", "relationPrimary", + "functionTableSubqueryArgument", "tableArgumentPartitioning", "functionTableNamedArgumentExpression", + "functionTableReferenceArgument", "functionTableArgument", "tableAlias", + "rowFormat", "multipartIdentifierList", "multipartIdentifier", "multipartIdentifierPropertyList", + "multipartIdentifierProperty", "tableIdentifier", "viewIdentifier", + "namedExpression", "namedExpressionSeq", "partitionFieldList", "partitionField", + "transform", "transformArgument", "expression", "namedArgumentExpression", + "functionArgument", "expressionSeq", "booleanExpression", "predicate", + "valueExpression", "datetimeUnit", "primaryExpression", "literalType", + "constant", "comparisonOperator", "arithmeticOperator", "predicateOperator", + "booleanValue", "interval", "errorCapturingMultiUnitsInterval", + "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", + "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", "colPosition", + "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", "qualifiedColTypeWithPositionForAdd", + "qualifiedColTypeWithPositionSeqForReplace", "qualifiedColTypeWithPositionForReplace", + "colDefinitionDescriptorWithPosition", "variableDefaultExpression", + "colTypeList", "columnType", "createOrReplaceTableColTypeList", + "createOrReplaceTableColType", "colDefinitionOption", "complexColType", + "whenClause", "windowClause", "zOrderClause", "windowSpec", "windowFrame", + "frameBound", "qualifiedNameList", "functionName", "functionNameCreate", + "qualifiedName", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", + "identifier", "strictIdentifier", "quotedIdentifier", "number", + "alterColumnAction", "stringLit", "ansiNonReserved", "strictNonReserved", "nonReserved", ]; @@ -835,21 +803,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 400; + this.state = 350; this.singleStatement(); } } - this.state = 405; + this.state = 355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 406; + this.state = 356; this.match(SparkSqlParser.EOF); } } @@ -874,14 +842,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 408; + this.state = 358; this.statement(); - this.state = 410; + this.state = 360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 409; + this.state = 359; this.match(SparkSqlParser.SEMICOLON); } } @@ -908,14 +876,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1337; + this.state = 1319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 412; + this.state = 362; this.query(); } break; @@ -923,17 +891,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 414; + this.state = 364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 413; + this.state = 363; this.ctes(); } } - this.state = 416; + this.state = 366; this.dmlStatementNoWith(); } break; @@ -941,19 +909,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 417; + this.state = 367; this.match(SparkSqlParser.KW_USE); - this.state = 419; + this.state = 369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 418; + this.state = 368; this.namespace(); } break; } - this.state = 421; + this.state = 371; this.namespaceName(); } break; @@ -961,22 +929,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 372; this.match(SparkSqlParser.KW_SET); - this.state = 423; + this.state = 373; this.match(SparkSqlParser.KW_CATALOG); - this.state = 426; + this.state = 376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 424; + this.state = 374; this.identifier(); } break; case 2: { - this.state = 425; + this.state = 375; this.stringLit(); } break; @@ -987,49 +955,57 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 428; + this.state = 378; this.match(SparkSqlParser.KW_CREATE); - this.state = 429; + this.state = 379; this.namespace(); - this.state = 431; + this.state = 381; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 430; + this.state = 380; this.ifNotExists(); } break; } - this.state = 433; + this.state = 383; this.namespaceNameCreate(); - this.state = 441; + this.state = 393; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 439; + this.state = 391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 434; - this.commentSpec(); + { + this.state = 384; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 385; + (localContext as CreateNamespaceContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_LOCATION: { - this.state = 435; - this.locationSpec(); + { + this.state = 386; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 387; + this.stringLit(); + } } break; case SparkSqlParser.KW_WITH: { { - this.state = 436; + this.state = 388; this.match(SparkSqlParser.KW_WITH); - this.state = 437; + this.state = 389; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1038,7 +1014,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 390; this.propertyList(); } } @@ -1048,7 +1024,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 443; + this.state = 395; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1058,15 +1034,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 444; + this.state = 396; this.match(SparkSqlParser.KW_ALTER); - this.state = 445; + this.state = 397; this.namespace(); - this.state = 446; + this.state = 398; this.namespaceName(); - this.state = 447; + this.state = 399; this.match(SparkSqlParser.KW_SET); - this.state = 448; + this.state = 400; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1075,7 +1051,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 449; + this.state = 401; this.propertyList(); } break; @@ -1083,44 +1059,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 451; + this.state = 403; this.match(SparkSqlParser.KW_ALTER); - this.state = 452; + this.state = 404; this.namespace(); - this.state = 453; + this.state = 405; this.namespaceName(); - this.state = 454; + this.state = 406; this.match(SparkSqlParser.KW_SET); - this.state = 455; - this.locationSpec(); + this.state = 407; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 408; + this.stringLit(); } break; case 8: localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 457; + this.state = 410; this.match(SparkSqlParser.KW_DROP); - this.state = 458; + this.state = 411; this.namespace(); - this.state = 460; + this.state = 413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 459; + this.state = 412; this.ifExists(); } break; } - this.state = 462; + this.state = 415; this.namespaceName(); - this.state = 464; + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 463; + this.state = 416; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1138,16 +1116,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 466; + this.state = 419; this.match(SparkSqlParser.KW_SHOW); - this.state = 467; - this.namespaces(); - this.state = 470; + this.state = 420; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 191 || _la === 262)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 468; + this.state = 421; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1156,27 +1141,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 469; + this.state = 422; this.multipartIdentifier(); } break; } - this.state = 476; + this.state = 429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 473; + this.state = 426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 472; + this.state = 425; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 475; + this.state = 428; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1187,50 +1172,84 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 478; - this.createTableHeader(); - this.state = 483; + this.state = 431; + this.match(SparkSqlParser.KW_CREATE); + this.state = 433; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 298) { + { + this.state = 432; + this.match(SparkSqlParser.KW_TEMPORARY); + } + } + + this.state = 436; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 109) { + { + this.state = 435; + this.match(SparkSqlParser.KW_EXTERNAL); + } + } + + this.state = 438; + this.match(SparkSqlParser.KW_TABLE); + this.state = 440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 479; + this.state = 439; + this.ifNotExists(); + } + break; + } + this.state = 442; + this.tableNameCreate(); + this.state = 447; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { + case 1: + { + this.state = 443; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 480; + this.state = 444; this.createOrReplaceTableColTypeList(); - this.state = 481; + this.state = 445; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 486; + this.state = 450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 485; + this.state = 449; this.tableProvider(); } } - this.state = 488; + this.state = 452; this.createTableClauses(); - this.state = 493; + this.state = 457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 490; + this.state = 454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 489; + this.state = 453; this.match(SparkSqlParser.KW_AS); } } - this.state = 492; + this.state = 456; this.query(); } break; @@ -1241,71 +1260,75 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 495; + this.state = 459; this.match(SparkSqlParser.KW_CREATE); - this.state = 496; + this.state = 460; this.match(SparkSqlParser.KW_TABLE); - this.state = 498; + this.state = 462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 497; + this.state = 461; this.ifNotExists(); } break; } - this.state = 500; + this.state = 464; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 501; + this.state = 465; this.match(SparkSqlParser.KW_LIKE); - this.state = 502; + this.state = 466; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 512; + this.state = 477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 510; + this.state = 475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 503; + this.state = 467; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 504; + this.state = 468; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 505; + this.state = 469; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 506; - this.locationSpec(); + { + this.state = 470; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 471; + this.stringLit(); + } } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 507; + this.state = 472; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 508; + this.state = 473; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 509; + this.state = 474; this.tableLifecycle(); } break; @@ -1313,7 +1336,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 514; + this.state = 479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1323,50 +1346,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 515; - this.replaceTableHeader(); - this.state = 520; + this.state = 482; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { + _la = this.tokenStream.LA(1); + if (_la === 59) { + { + this.state = 480; + this.match(SparkSqlParser.KW_CREATE); + this.state = 481; + this.match(SparkSqlParser.KW_OR); + } + } + + this.state = 484; + this.match(SparkSqlParser.KW_REPLACE); + this.state = 485; + this.match(SparkSqlParser.KW_TABLE); + this.state = 486; + this.tableNameCreate(); + this.state = 491; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 516; + this.state = 487; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 517; + this.state = 488; this.createOrReplaceTableColTypeList(); - this.state = 518; + this.state = 489; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 523; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 522; + this.state = 493; this.tableProvider(); } } - this.state = 525; + this.state = 496; this.createTableClauses(); - this.state = 530; + this.state = 501; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 527; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 526; + this.state = 497; this.match(SparkSqlParser.KW_AS); } } - this.state = 529; + this.state = 500; this.query(); } break; @@ -1377,52 +1416,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 532; + this.state = 503; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 533; + this.state = 504; this.match(SparkSqlParser.KW_TABLE); - this.state = 534; + this.state = 505; this.tableName(); - this.state = 536; + this.state = 507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 535; + this.state = 506; this.partitionSpec(); } } - this.state = 538; + this.state = 509; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 539; + this.state = 510; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 547; + this.state = 518; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 540; + this.state = 511; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 541; + this.state = 512; this.match(SparkSqlParser.KW_FOR); - this.state = 542; + this.state = 513; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 543; + this.state = 514; this.columnNameSeq(); } break; case 3: { - this.state = 544; + this.state = 515; this.match(SparkSqlParser.KW_FOR); - this.state = 545; + this.state = 516; this.match(SparkSqlParser.KW_ALL); - this.state = 546; + this.state = 517; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1433,16 +1472,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 549; + this.state = 520; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 550; + this.state = 521; this.match(SparkSqlParser.KW_TABLES); - this.state = 553; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 551; + this.state = 522; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1451,21 +1490,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 552; + this.state = 523; this.namespaceName(); } } - this.state = 555; + this.state = 526; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 556; + this.state = 527; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 558; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 557; + this.state = 528; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1476,17 +1515,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 560; + this.state = 531; this.match(SparkSqlParser.KW_ALTER); - this.state = 561; + this.state = 532; this.match(SparkSqlParser.KW_TABLE); - this.state = 562; + this.state = 533; this.tableName(); - this.state = 563; + this.state = 534; this.match(SparkSqlParser.KW_ADD); - this.state = 564; + this.state = 535; this.match(SparkSqlParser.KW_COLUMN); - this.state = 565; + this.state = 536; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1494,21 +1533,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 567; + this.state = 538; this.match(SparkSqlParser.KW_ALTER); - this.state = 568; + this.state = 539; this.match(SparkSqlParser.KW_TABLE); - this.state = 569; + this.state = 540; this.tableName(); - this.state = 570; + this.state = 541; this.match(SparkSqlParser.KW_ADD); - this.state = 571; + this.state = 542; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 572; + this.state = 543; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 573; + this.state = 544; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 574; + this.state = 545; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1516,21 +1555,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 576; + this.state = 547; this.match(SparkSqlParser.KW_ALTER); - this.state = 577; + this.state = 548; this.match(SparkSqlParser.KW_TABLE); - this.state = 578; + this.state = 549; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 579; + this.state = 550; this.match(SparkSqlParser.KW_RENAME); - this.state = 580; + this.state = 551; this.match(SparkSqlParser.KW_COLUMN); - this.state = 581; + this.state = 552; this.columnName(); - this.state = 582; + this.state = 553; this.match(SparkSqlParser.KW_TO); - this.state = 583; + this.state = 554; this.columnNameCreate(); } break; @@ -1538,27 +1577,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 585; + this.state = 556; this.match(SparkSqlParser.KW_ALTER); - this.state = 586; + this.state = 557; this.match(SparkSqlParser.KW_TABLE); - this.state = 587; + this.state = 558; this.tableName(); - this.state = 588; + this.state = 559; this.match(SparkSqlParser.KW_DROP); - this.state = 589; + this.state = 560; this.match(SparkSqlParser.KW_COLUMN); - this.state = 591; + this.state = 562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 590; + this.state = 561; this.ifExists(); } break; } - this.state = 593; + this.state = 564; this.columnName(); } break; @@ -1566,31 +1605,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 595; + this.state = 566; this.match(SparkSqlParser.KW_ALTER); - this.state = 596; + this.state = 567; this.match(SparkSqlParser.KW_TABLE); - this.state = 597; + this.state = 568; this.tableName(); - this.state = 598; + this.state = 569; this.match(SparkSqlParser.KW_DROP); - this.state = 599; + this.state = 570; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 601; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 600; + this.state = 571; this.ifExists(); } } - this.state = 603; + this.state = 574; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 604; + this.state = 575; this.columnNameSeq(); - this.state = 605; + this.state = 576; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1598,35 +1637,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 607; + this.state = 578; this.match(SparkSqlParser.KW_ALTER); - this.state = 612; + this.state = 583; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 608; + this.state = 579; this.match(SparkSqlParser.KW_TABLE); - this.state = 609; + this.state = 580; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 610; + this.state = 581; this.match(SparkSqlParser.KW_VIEW); - this.state = 611; + this.state = 582; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 614; + this.state = 585; this.match(SparkSqlParser.KW_RENAME); - this.state = 615; + this.state = 586; this.match(SparkSqlParser.KW_TO); - this.state = 616; + this.state = 587; this.multipartIdentifier(); } break; @@ -1634,35 +1673,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 618; + this.state = 589; this.match(SparkSqlParser.KW_ALTER); - this.state = 623; + this.state = 594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 619; + this.state = 590; this.match(SparkSqlParser.KW_TABLE); - this.state = 620; + this.state = 591; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 621; + this.state = 592; this.match(SparkSqlParser.KW_VIEW); - this.state = 622; + this.state = 593; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 625; + this.state = 596; this.match(SparkSqlParser.KW_SET); - this.state = 626; + this.state = 597; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 627; + this.state = 598; this.propertyList(); } break; @@ -1670,45 +1709,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 629; + this.state = 600; this.match(SparkSqlParser.KW_ALTER); - this.state = 634; + this.state = 605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 630; + this.state = 601; this.match(SparkSqlParser.KW_TABLE); - this.state = 631; + this.state = 602; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 632; + this.state = 603; this.match(SparkSqlParser.KW_VIEW); - this.state = 633; + this.state = 604; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 636; + this.state = 607; this.match(SparkSqlParser.KW_UNSET); - this.state = 637; + this.state = 608; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 639; + this.state = 610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 638; + this.state = 609; this.ifExists(); } } - this.state = 641; + this.state = 612; this.propertyList(); } break; @@ -1716,13 +1755,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 643; + this.state = 614; this.match(SparkSqlParser.KW_ALTER); - this.state = 644; + this.state = 615; this.match(SparkSqlParser.KW_TABLE); - this.state = 645; + this.state = 616; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 646; + this.state = 617; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1731,24 +1770,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 648; + this.state = 619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 647; + this.state = 618; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 650; + this.state = 621; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 652; + this.state = 623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 651; + this.state = 622; this.alterColumnAction(); } break; @@ -1759,44 +1798,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 654; + this.state = 625; this.match(SparkSqlParser.KW_ALTER); - this.state = 655; + this.state = 626; this.match(SparkSqlParser.KW_TABLE); - this.state = 656; + this.state = 627; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 658; + this.state = 629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 657; + this.state = 628; this.partitionSpec(); } } - this.state = 660; + this.state = 631; this.match(SparkSqlParser.KW_CHANGE); - this.state = 662; + this.state = 633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 661; + this.state = 632; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 664; + this.state = 635; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 665; + this.state = 636; this.columnType(); - this.state = 667; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 666; + this.state = 637; this.colPosition(); } } @@ -1807,31 +1846,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 669; + this.state = 640; this.match(SparkSqlParser.KW_ALTER); - this.state = 670; + this.state = 641; this.match(SparkSqlParser.KW_TABLE); - this.state = 671; + this.state = 642; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 673; + this.state = 644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 672; + this.state = 643; this.partitionSpec(); } } - this.state = 675; + this.state = 646; this.match(SparkSqlParser.KW_REPLACE); - this.state = 676; + this.state = 647; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 677; + this.state = 648; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 678; + this.state = 649; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 679; + this.state = 650; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1839,38 +1878,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 681; + this.state = 652; this.match(SparkSqlParser.KW_ALTER); - this.state = 682; + this.state = 653; this.match(SparkSqlParser.KW_TABLE); - this.state = 683; + this.state = 654; this.tableName(); - this.state = 685; + this.state = 656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 684; + this.state = 655; this.partitionSpec(); } } - this.state = 687; + this.state = 658; this.match(SparkSqlParser.KW_SET); - this.state = 688; + this.state = 659; this.match(SparkSqlParser.KW_SERDE); - this.state = 689; + this.state = 660; this.stringLit(); - this.state = 693; + this.state = 664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 690; + this.state = 661; this.match(SparkSqlParser.KW_WITH); - this.state = 691; + this.state = 662; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 692; + this.state = 663; this.propertyList(); } break; @@ -1881,27 +1920,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 695; + this.state = 666; this.match(SparkSqlParser.KW_ALTER); - this.state = 696; + this.state = 667; this.match(SparkSqlParser.KW_TABLE); - this.state = 697; + this.state = 668; this.tableName(); - this.state = 699; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 698; + this.state = 669; this.partitionSpec(); } } - this.state = 701; + this.state = 672; this.match(SparkSqlParser.KW_SET); - this.state = 702; + this.state = 673; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 703; + this.state = 674; this.propertyList(); } break; @@ -1909,53 +1948,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 705; + this.state = 676; this.match(SparkSqlParser.KW_ALTER); - this.state = 710; + this.state = 681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 706; + this.state = 677; this.match(SparkSqlParser.KW_TABLE); - this.state = 707; + this.state = 678; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 708; + this.state = 679; this.match(SparkSqlParser.KW_VIEW); - this.state = 709; + this.state = 680; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 712; + this.state = 683; this.match(SparkSqlParser.KW_ADD); - this.state = 714; + this.state = 685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 713; + this.state = 684; this.ifNotExists(); } } - this.state = 717; + this.state = 688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 716; + this.state = 687; this.partitionSpecLocation(); } } - this.state = 719; + this.state = 690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -1965,19 +2004,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 721; + this.state = 692; this.match(SparkSqlParser.KW_ALTER); - this.state = 722; + this.state = 693; this.match(SparkSqlParser.KW_TABLE); - this.state = 723; + this.state = 694; this.tableName(); - this.state = 724; + this.state = 695; this.partitionSpec(); - this.state = 725; + this.state = 696; this.match(SparkSqlParser.KW_RENAME); - this.state = 726; + this.state = 697; this.match(SparkSqlParser.KW_TO); - this.state = 727; + this.state = 698; this.partitionSpec(); } break; @@ -1985,66 +2024,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 729; + this.state = 700; this.match(SparkSqlParser.KW_ALTER); - this.state = 734; + this.state = 705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 730; + this.state = 701; this.match(SparkSqlParser.KW_TABLE); - this.state = 731; + this.state = 702; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 732; + this.state = 703; this.match(SparkSqlParser.KW_VIEW); - this.state = 733; + this.state = 704; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 736; + this.state = 707; this.match(SparkSqlParser.KW_DROP); - this.state = 738; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 737; + this.state = 708; this.ifExists(); } } - this.state = 740; + this.state = 711; this.partitionSpec(); - this.state = 745; + this.state = 716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 741; + this.state = 712; this.match(SparkSqlParser.COMMA); - this.state = 742; + this.state = 713; this.partitionSpec(); } } - this.state = 747; + this.state = 718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 749; + this.state = 720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 748; + this.state = 719; this.match(SparkSqlParser.KW_PURGE); } } @@ -2055,41 +2094,43 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 751; + this.state = 722; this.match(SparkSqlParser.KW_ALTER); - this.state = 752; + this.state = 723; this.match(SparkSqlParser.KW_TABLE); - this.state = 753; + this.state = 724; this.tableName(); - this.state = 755; + this.state = 726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 754; + this.state = 725; this.partitionSpec(); } } - this.state = 757; + this.state = 728; this.match(SparkSqlParser.KW_SET); - this.state = 758; - this.locationSpec(); + this.state = 729; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 730; + this.stringLit(); } break; case 32: localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 760; + this.state = 732; this.match(SparkSqlParser.KW_ALTER); - this.state = 761; + this.state = 733; this.match(SparkSqlParser.KW_TABLE); - this.state = 762; + this.state = 734; this.tableName(); - this.state = 763; + this.state = 735; this.match(SparkSqlParser.KW_RECOVER); - this.state = 764; + this.state = 736; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2097,15 +2138,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 766; + this.state = 738; this.match(SparkSqlParser.KW_ALTER); - this.state = 767; + this.state = 739; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 768; + this.state = 740; this.match(SparkSqlParser.KW_VIEW); - this.state = 769; + this.state = 741; this.viewName(); - this.state = 770; + this.state = 742; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2114,7 +2155,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 771; + this.state = 743; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2122,19 +2163,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 773; + this.state = 745; this.match(SparkSqlParser.KW_ALTER); - this.state = 774; + this.state = 746; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 775; + this.state = 747; this.match(SparkSqlParser.KW_VIEW); - this.state = 776; + this.state = 748; this.viewName(); - this.state = 777; + this.state = 749; this.match(SparkSqlParser.KW_SET); - this.state = 778; + this.state = 750; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 779; + this.state = 751; this.propertyList(); } break; @@ -2142,28 +2183,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 781; + this.state = 753; this.match(SparkSqlParser.KW_DROP); - this.state = 782; + this.state = 754; this.match(SparkSqlParser.KW_TABLE); - this.state = 784; + this.state = 756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 783; + this.state = 755; this.ifExists(); } break; } - this.state = 786; + this.state = 758; this.tableName(); - this.state = 788; + this.state = 760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 787; + this.state = 759; this.match(SparkSqlParser.KW_PURGE); } } @@ -2174,21 +2215,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 790; + this.state = 762; this.match(SparkSqlParser.KW_DROP); - this.state = 791; + this.state = 763; this.match(SparkSqlParser.KW_VIEW); - this.state = 793; + this.state = 765; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 792; + this.state = 764; this.ifExists(); } break; } - this.state = 795; + this.state = 767; this.viewName(); } break; @@ -2196,23 +2237,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 796; + this.state = 768; this.match(SparkSqlParser.KW_DROP); - this.state = 797; + this.state = 769; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 798; + this.state = 770; this.match(SparkSqlParser.KW_VIEW); - this.state = 800; + this.state = 772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 799; + this.state = 771; this.ifExists(); } break; } - this.state = 802; + this.state = 774; this.viewName(); } break; @@ -2220,86 +2261,90 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 803; + this.state = 775; this.match(SparkSqlParser.KW_CREATE); - this.state = 806; + this.state = 778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 804; + this.state = 776; this.match(SparkSqlParser.KW_OR); - this.state = 805; + this.state = 777; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 812; + this.state = 784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 809; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 808; + this.state = 780; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 811; + this.state = 783; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 814; + this.state = 786; this.match(SparkSqlParser.KW_VIEW); - this.state = 816; + this.state = 788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 815; + this.state = 787; this.ifNotExists(); } break; } - this.state = 818; + this.state = 790; this.viewNameCreate(); - this.state = 820; + this.state = 792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 819; + this.state = 791; this.identifierCommentList(); } } - this.state = 830; + this.state = 803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 828; + this.state = 801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 822; - this.commentSpec(); + { + this.state = 794; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 795; + (localContext as CreateViewContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 823; + this.state = 796; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 824; + this.state = 797; this.match(SparkSqlParser.KW_ON); - this.state = 825; + this.state = 798; this.identifierList(); } } @@ -2307,9 +2352,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 826; + this.state = 799; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 827; + this.state = 800; this.propertyList(); } } @@ -2318,13 +2363,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 832; + this.state = 805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 806; this.match(SparkSqlParser.KW_AS); - this.state = 834; + this.state = 807; this.query(); } break; @@ -2332,60 +2377,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 836; + this.state = 809; this.match(SparkSqlParser.KW_CREATE); - this.state = 839; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 837; + this.state = 810; this.match(SparkSqlParser.KW_OR); - this.state = 838; + this.state = 811; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 842; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 841; + this.state = 814; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 844; + this.state = 817; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 845; + this.state = 818; this.match(SparkSqlParser.KW_VIEW); - this.state = 846; + this.state = 819; this.viewNameCreate(); - this.state = 851; + this.state = 824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 847; + this.state = 820; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 848; + this.state = 821; this.colTypeList(); - this.state = 849; + this.state = 822; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 853; + this.state = 826; this.tableProvider(); - this.state = 856; + this.state = 829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 854; + this.state = 827; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 855; + this.state = 828; this.propertyList(); } } @@ -2396,23 +2441,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 858; + this.state = 831; this.match(SparkSqlParser.KW_ALTER); - this.state = 859; + this.state = 832; this.match(SparkSqlParser.KW_VIEW); - this.state = 860; + this.state = 833; this.viewName(); - this.state = 862; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 861; + this.state = 834; this.match(SparkSqlParser.KW_AS); } } - this.state = 864; + this.state = 837; this.query(); } break; @@ -2420,70 +2465,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 866; + this.state = 839; this.match(SparkSqlParser.KW_CREATE); - this.state = 869; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 867; + this.state = 840; this.match(SparkSqlParser.KW_OR); - this.state = 868; + this.state = 841; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 872; + this.state = 845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 871; + this.state = 844; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 874; + this.state = 847; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 876; + this.state = 849; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 875; + this.state = 848; this.ifNotExists(); } break; } - this.state = 878; + this.state = 851; this.functionNameCreate(); - this.state = 879; + this.state = 852; this.match(SparkSqlParser.KW_AS); - this.state = 880; + this.state = 853; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 890; + this.state = 867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 881; + this.state = 854; this.match(SparkSqlParser.KW_USING); - this.state = 882; - this.resource(); - this.state = 887; + { + this.state = 855; + this.identifier(); + this.state = 856; + this.stringLit(); + } + this.state = 864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 883; + this.state = 858; this.match(SparkSqlParser.COMMA); - this.state = 884; - this.resource(); + { + this.state = 859; + this.identifier(); + this.state = 860; + this.stringLit(); } } - this.state = 889; + } + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2496,48 +2549,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 892; + this.state = 869; this.match(SparkSqlParser.KW_CREATE); - this.state = 893; + this.state = 870; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 894; + this.state = 871; this.match(SparkSqlParser.KW_VIEW); - this.state = 896; + this.state = 873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 895; + this.state = 872; this.ifNotExists(); } break; } - this.state = 898; + this.state = 875; this.viewNameCreate(); - this.state = 900; + this.state = 877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 899; + this.state = 876; this.tableProvider(); } } - this.state = 917; + this.state = 896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 915; + this.state = 894; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 902; + this.state = 879; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 903; + this.state = 880; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2545,57 +2598,65 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 904; + this.state = 881; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 905; + this.state = 882; this.match(SparkSqlParser.KW_BY); - this.state = 906; + this.state = 883; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 907; + this.state = 884; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 908; + this.state = 885; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 909; + this.state = 886; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 910; + this.state = 887; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 911; - this.locationSpec(); + { + this.state = 888; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 889; + this.stringLit(); + } } break; case SparkSqlParser.KW_COMMENT: { - this.state = 912; - this.commentSpec(); + { + this.state = 890; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 891; + (localContext as CreateMaterializedViewContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 913; + this.state = 892; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 914; + this.state = 893; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2604,13 +2665,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 919; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 920; + this.state = 899; this.match(SparkSqlParser.KW_AS); - this.state = 921; + this.state = 900; this.query(); } break; @@ -2618,31 +2679,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 923; + this.state = 902; this.match(SparkSqlParser.KW_DROP); - this.state = 925; + this.state = 904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 924; + this.state = 903; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 927; + this.state = 906; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 929; + this.state = 908; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 928; + this.state = 907; this.ifExists(); } break; } - this.state = 931; + this.state = 910; this.functionName(); } break; @@ -2650,48 +2711,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 932; + this.state = 911; this.match(SparkSqlParser.KW_DECLARE); - this.state = 935; + this.state = 914; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 933; + this.state = 912; this.match(SparkSqlParser.KW_OR); - this.state = 934; + this.state = 913; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 938; + this.state = 917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 937; + this.state = 916; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 940; + this.state = 919; this.functionName(); - this.state = 942; + this.state = 921; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 941; + this.state = 920; this.dataType(); } break; } - this.state = 945; + this.state = 924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 944; + this.state = 923; this.variableDefaultExpression(); } } @@ -2702,40 +2763,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 947; + this.state = 926; this.match(SparkSqlParser.KW_DROP); - this.state = 948; + this.state = 927; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 928; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 951; + this.state = 930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 950; + this.state = 929; this.ifExists(); } break; } - this.state = 956; + this.state = 935; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 953; + this.state = 932; this.tableName(); } break; case 2: { - this.state = 954; + this.state = 933; this.viewName(); } break; case 3: { - this.state = 955; + this.state = 934; this.functionName(); } break; @@ -2746,14 +2807,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 958; + this.state = 937; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 960; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 959; + this.state = 938; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2765,7 +2826,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 941; this.statement(); } break; @@ -2773,16 +2834,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 963; + this.state = 942; this.match(SparkSqlParser.KW_SHOW); - this.state = 964; + this.state = 943; this.match(SparkSqlParser.KW_TABLES); - this.state = 967; + this.state = 946; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 965; + this.state = 944; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2791,27 +2852,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 966; + this.state = 945; this.namespaceName(); } break; } - this.state = 973; + this.state = 952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 970; + this.state = 949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 969; + this.state = 948; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 972; + this.state = 951; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2822,18 +2883,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 975; + this.state = 954; this.match(SparkSqlParser.KW_SHOW); - this.state = 976; + this.state = 955; this.match(SparkSqlParser.KW_TABLE); - this.state = 977; + this.state = 956; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 980; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 978; + this.state = 957; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2842,21 +2903,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 979; + this.state = 958; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 982; + this.state = 961; this.match(SparkSqlParser.KW_LIKE); - this.state = 983; + this.state = 962; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 985; + this.state = 964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 984; + this.state = 963; this.partitionSpec(); } } @@ -2867,22 +2928,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 987; + this.state = 966; this.match(SparkSqlParser.KW_SHOW); - this.state = 988; + this.state = 967; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 989; + this.state = 968; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 994; + this.state = 973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 990; + this.state = 969; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 991; + this.state = 970; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 992; + this.state = 971; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2893,11 +2954,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 996; + this.state = 975; this.match(SparkSqlParser.KW_SHOW); - this.state = 997; + this.state = 976; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 998; + this.state = 977; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2906,14 +2967,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 999; + this.state = 978; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 1002; + this.state = 981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1000; + this.state = 979; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2922,7 +2983,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 980; this.namespaceName(); } break; @@ -2933,16 +2994,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 1004; + this.state = 983; this.match(SparkSqlParser.KW_SHOW); - this.state = 1005; + this.state = 984; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1008; + this.state = 987; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1006; + this.state = 985; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2951,27 +3012,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 986; this.namespaceName(); } break; } - this.state = 1014; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1011; + this.state = 990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1010; + this.state = 989; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1013; + this.state = 992; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -2982,18 +3043,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1016; + this.state = 995; this.match(SparkSqlParser.KW_SHOW); - this.state = 1017; + this.state = 996; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1018; + this.state = 997; this.tableName(); - this.state = 1020; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1019; + this.state = 998; this.partitionSpec(); } } @@ -3004,26 +3065,33 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1022; + this.state = 1001; this.match(SparkSqlParser.KW_SHOW); - this.state = 1024; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1023; - this.functionKind(); + this.state = 1002; + _la = this.tokenStream.LA(1); + if(!(_la === 10 || _la === 290 || _la === 331)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } - this.state = 1026; + this.state = 1005; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1029; + this.state = 1008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1027; + this.state = 1006; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3032,38 +3100,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1028; + this.state = 1007; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1038; + this.state = 1017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1032; + this.state = 1011; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1031; + this.state = 1010; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1036; + this.state = 1015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1034; + this.state = 1013; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1035; + this.state = 1014; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3077,22 +3145,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1040; + this.state = 1019; this.match(SparkSqlParser.KW_SHOW); - this.state = 1041; + this.state = 1020; this.match(SparkSqlParser.KW_CREATE); - this.state = 1042; + this.state = 1021; this.match(SparkSqlParser.KW_TABLE); - this.state = 1043; + this.state = 1022; this.tableName(); - this.state = 1046; + this.state = 1025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1044; + this.state = 1023; this.match(SparkSqlParser.KW_AS); - this.state = 1045; + this.state = 1024; this.match(SparkSqlParser.KW_SERDE); } } @@ -3103,11 +3171,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1048; + this.state = 1027; this.match(SparkSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1028; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1050; + this.state = 1029; this.namespace(); } break; @@ -3115,26 +3183,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1051; + this.state = 1030; this.match(SparkSqlParser.KW_SHOW); - this.state = 1052; + this.state = 1031; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1057; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1054; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1053; + this.state = 1032; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1056; + this.state = 1035; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3145,18 +3213,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1059; + this.state = 1038; this.match(SparkSqlParser.KW_SHOW); - this.state = 1060; + this.state = 1039; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1061; + this.state = 1040; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1064; + this.state = 1043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1062; + this.state = 1041; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3165,27 +3233,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1063; + this.state = 1042; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1070; + this.state = 1049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1067; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1066; + this.state = 1045; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1069; + this.state = 1048; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3196,24 +3264,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1072; + this.state = 1051; this.match(SparkSqlParser.KW_SHOW); - this.state = 1073; + this.state = 1052; this.match(SparkSqlParser.KW_CREATE); - this.state = 1074; + this.state = 1053; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1075; + this.state = 1054; this.match(SparkSqlParser.KW_VIEW); - this.state = 1076; + this.state = 1055; this.viewName(); - this.state = 1079; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1077; + this.state = 1056; this.match(SparkSqlParser.KW_AS); - this.state = 1078; + this.state = 1057; this.match(SparkSqlParser.KW_SERDE); } } @@ -3224,7 +3292,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1081; + this.state = 1060; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3233,19 +3301,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1061; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1084; + this.state = 1063; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1083; + this.state = 1062; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1086; + this.state = 1065; this.describeFuncName(); } break; @@ -3253,7 +3321,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1087; + this.state = 1066; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3262,19 +3330,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1067; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1090; + this.state = 1069; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1089; + this.state = 1068; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1092; + this.state = 1071; this.namespaceName(); } break; @@ -3282,7 +3350,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1093; + this.state = 1072; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3291,22 +3359,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1094; + this.state = 1073; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1098; + this.state = 1077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1097; + this.state = 1076; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3319,24 +3387,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1100; + this.state = 1079; this.tableName(); - this.state = 1102; + this.state = 1081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1101; + this.state = 1080; this.partitionSpec(); } break; } - this.state = 1105; + this.state = 1084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1104; + this.state = 1083; this.describeColName(); } break; @@ -3347,7 +3415,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1107; + this.state = 1086; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3356,316 +3424,339 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1108; + this.state = 1087; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1111; + this.state = 1090; this.query(); } break; case 63: - localContext = new CommentNamespaceContext(localContext); + localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1112; + this.state = 1091; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1113; + this.state = 1092; this.match(SparkSqlParser.KW_ON); - this.state = 1114; - this.namespace(); - this.state = 1115; - this.namespaceName(); - this.state = 1116; - this.match(SparkSqlParser.KW_IS); - this.state = 1117; - this.commentStr(); + this.state = 1098; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DATABASE: + case SparkSqlParser.KW_NAMESPACE: + case SparkSqlParser.KW_SCHEMA: + { + { + this.state = 1093; + this.namespace(); + this.state = 1094; + this.namespaceName(); + } + } + break; + case SparkSqlParser.KW_TABLE: + { + { + this.state = 1096; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1097; + this.tableName(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; - case 64: - localContext = new CommentTableContext(localContext); - this.enterOuterAlt(localContext, 64); - { - this.state = 1119; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1120; - this.match(SparkSqlParser.KW_ON); - this.state = 1121; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1122; - this.tableName(); - this.state = 1123; + this.state = 1100; this.match(SparkSqlParser.KW_IS); - this.state = 1124; - this.commentStr(); + this.state = 1103; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 1101; + this.stringLit(); + } + break; + case SparkSqlParser.KW_NULL: + { + this.state = 1102; + this.match(SparkSqlParser.KW_NULL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - case 65: + case 64: localContext = new RefreshTableContext(localContext); - this.enterOuterAlt(localContext, 65); + this.enterOuterAlt(localContext, 64); { - this.state = 1126; + this.state = 1105; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1127; + this.state = 1106; this.match(SparkSqlParser.KW_TABLE); - this.state = 1128; + this.state = 1107; this.tableName(); } break; - case 66: + case 65: localContext = new RefreshFunctionContext(localContext); - this.enterOuterAlt(localContext, 66); + this.enterOuterAlt(localContext, 65); { - this.state = 1129; + this.state = 1108; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1130; + this.state = 1109; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1131; + this.state = 1110; this.functionName(); } break; - case 67: + case 66: localContext = new RefreshResourceContext(localContext); - this.enterOuterAlt(localContext, 67); + this.enterOuterAlt(localContext, 66); { - this.state = 1132; + this.state = 1111; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1140; + this.state = 1119; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1133; + this.state = 1112; this.stringLit(); } break; case 2: { - this.state = 1137; + this.state = 1116; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1134; + this.state = 1113; this.matchWildcard(); } } } - this.state = 1139; + this.state = 1118; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } } break; } } break; - case 68: + case 67: localContext = new RefreshMaterializedViewContext(localContext); - this.enterOuterAlt(localContext, 68); + this.enterOuterAlt(localContext, 67); { - this.state = 1142; + this.state = 1121; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1143; + this.state = 1122; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1144; + this.state = 1123; this.match(SparkSqlParser.KW_VIEW); - this.state = 1145; + this.state = 1124; this.viewName(); } break; - case 69: + case 68: localContext = new CacheTableContext(localContext); - this.enterOuterAlt(localContext, 69); + this.enterOuterAlt(localContext, 68); { - this.state = 1146; + this.state = 1125; this.match(SparkSqlParser.KW_CACHE); - this.state = 1148; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1147; + this.state = 1126; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1150; + this.state = 1129; this.match(SparkSqlParser.KW_TABLE); - this.state = 1151; + this.state = 1130; this.tableName(); - this.state = 1154; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1152; + this.state = 1131; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1153; + this.state = 1132; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1160; + this.state = 1139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1157; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1156; + this.state = 1135; this.match(SparkSqlParser.KW_AS); } } - this.state = 1159; + this.state = 1138; this.query(); } break; } } break; - case 70: + case 69: localContext = new UnCacheTableContext(localContext); - this.enterOuterAlt(localContext, 70); + this.enterOuterAlt(localContext, 69); { - this.state = 1162; + this.state = 1141; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1163; + this.state = 1142; this.match(SparkSqlParser.KW_TABLE); - this.state = 1165; + this.state = 1144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1164; + this.state = 1143; this.ifExists(); } break; } - this.state = 1167; + this.state = 1146; this.tableName(); } break; - case 71: + case 70: localContext = new ClearCacheContext(localContext); - this.enterOuterAlt(localContext, 71); + this.enterOuterAlt(localContext, 70); { - this.state = 1168; + this.state = 1147; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1169; + this.state = 1148; this.match(SparkSqlParser.KW_CACHE); } break; - case 72: + case 71: localContext = new LoadDataContext(localContext); - this.enterOuterAlt(localContext, 72); + this.enterOuterAlt(localContext, 71); { - this.state = 1170; + this.state = 1149; this.match(SparkSqlParser.KW_LOAD); - this.state = 1171; + this.state = 1150; this.match(SparkSqlParser.KW_DATA); - this.state = 1173; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1172; + this.state = 1151; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1175; + this.state = 1154; this.match(SparkSqlParser.KW_INPATH); - this.state = 1176; + this.state = 1155; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1178; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1177; + this.state = 1156; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1180; + this.state = 1159; this.match(SparkSqlParser.KW_INTO); - this.state = 1181; + this.state = 1160; this.match(SparkSqlParser.KW_TABLE); - this.state = 1182; + this.state = 1161; this.tableName(); - this.state = 1184; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1183; + this.state = 1162; this.partitionSpec(); } } } break; - case 73: + case 72: localContext = new TruncateTableContext(localContext); - this.enterOuterAlt(localContext, 73); + this.enterOuterAlt(localContext, 72); { - this.state = 1186; + this.state = 1165; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1187; + this.state = 1166; this.match(SparkSqlParser.KW_TABLE); - this.state = 1188; + this.state = 1167; this.tableName(); - this.state = 1190; + this.state = 1169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1189; + this.state = 1168; this.partitionSpec(); } } } break; - case 74: + case 73: localContext = new RepairTableContext(localContext); - this.enterOuterAlt(localContext, 74); + this.enterOuterAlt(localContext, 73); { - this.state = 1193; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1192; + this.state = 1171; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1195; + this.state = 1174; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1196; + this.state = 1175; this.match(SparkSqlParser.KW_TABLE); - this.state = 1197; + this.state = 1176; this.tableName(); - this.state = 1200; + this.state = 1179; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1198; + this.state = 1177; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3675,18 +3766,18 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1199; + this.state = 1178; this.match(SparkSqlParser.KW_PARTITIONS); } break; } } break; - case 75: + case 74: localContext = new ManageResourceContext(localContext); - this.enterOuterAlt(localContext, 75); + this.enterOuterAlt(localContext, 74); { - this.state = 1202; + this.state = 1181; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3696,115 +3787,132 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1182; this.identifier(); - this.state = 1207; + this.state = 1186; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1204; + this.state = 1183; this.matchWildcard(); } } } - this.state = 1209; + this.state = 1188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } } break; - case 76: + case 75: localContext = new FailNativeCommandContext(localContext); - this.enterOuterAlt(localContext, 76); + this.enterOuterAlt(localContext, 75); { - this.state = 1210; + this.state = 1189; this.match(SparkSqlParser.KW_SET); - this.state = 1211; + this.state = 1190; this.match(SparkSqlParser.KW_ROLE); - this.state = 1215; + this.state = 1194; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, 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 = 1212; + this.state = 1191; this.matchWildcard(); } } } - this.state = 1217; + this.state = 1196; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } } break; - case 77: + case 76: localContext = new SetTimeZoneIntervalContext(localContext); - this.enterOuterAlt(localContext, 77); + this.enterOuterAlt(localContext, 76); { - this.state = 1218; + this.state = 1197; this.match(SparkSqlParser.KW_SET); - this.state = 1219; + this.state = 1198; this.match(SparkSqlParser.KW_TIME); - this.state = 1220; + this.state = 1199; this.match(SparkSqlParser.KW_ZONE); - this.state = 1221; + this.state = 1200; this.interval(); } break; - case 78: + case 77: localContext = new SetTimeZoneContext(localContext); - this.enterOuterAlt(localContext, 78); + this.enterOuterAlt(localContext, 77); { - this.state = 1222; + this.state = 1201; this.match(SparkSqlParser.KW_SET); - this.state = 1223; + this.state = 1202; this.match(SparkSqlParser.KW_TIME); - this.state = 1224; + this.state = 1203; this.match(SparkSqlParser.KW_ZONE); - this.state = 1225; - this.timezone(); + this.state = 1206; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 1204; + this.stringLit(); + } + break; + case SparkSqlParser.KW_LOCAL: + { + this.state = 1205; + this.match(SparkSqlParser.KW_LOCAL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - case 79: + case 78: localContext = new SetTimeZoneAnyContext(localContext); - this.enterOuterAlt(localContext, 79); + this.enterOuterAlt(localContext, 78); { - this.state = 1226; + this.state = 1208; this.match(SparkSqlParser.KW_SET); - this.state = 1227; + this.state = 1209; this.match(SparkSqlParser.KW_TIME); - this.state = 1228; + this.state = 1210; this.match(SparkSqlParser.KW_ZONE); - this.state = 1232; + this.state = 1214; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1229; + this.state = 1211; this.matchWildcard(); } } } - this.state = 1234; + this.state = 1216; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); } } break; - case 80: + case 79: localContext = new SetVariableAssignmentContext(localContext); - this.enterOuterAlt(localContext, 80); + this.enterOuterAlt(localContext, 79); { - this.state = 1235; + this.state = 1217; this.match(SparkSqlParser.KW_SET); - this.state = 1236; + this.state = 1218; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3813,17 +3921,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1237; + this.state = 1219; this.assignmentList(); } break; - case 81: + case 80: localContext = new SetVariableMultiAssignmentContext(localContext); - this.enterOuterAlt(localContext, 81); + this.enterOuterAlt(localContext, 80); { - this.state = 1238; + this.state = 1220; this.match(SparkSqlParser.KW_SET); - this.state = 1239; + this.state = 1221; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3832,394 +3940,306 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1240; + this.state = 1222; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1241; + this.state = 1223; this.multipartIdentifierList(); - this.state = 1242; + this.state = 1224; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1243; + this.state = 1225; this.match(SparkSqlParser.EQ); - this.state = 1244; + this.state = 1226; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1245; + this.state = 1227; this.query(); - this.state = 1246; + this.state = 1228; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 82: + case 81: localContext = new SetConfigContext(localContext); - this.enterOuterAlt(localContext, 82); + this.enterOuterAlt(localContext, 81); { - this.state = 1248; + this.state = 1230; this.match(SparkSqlParser.KW_SET); - this.state = 1249; - this.configKey(); - this.state = 1250; + this.state = 1231; + this.quotedIdentifier(); + this.state = 1232; this.match(SparkSqlParser.EQ); - this.state = 1251; - this.configValue(); + this.state = 1233; + this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; - case 83: + case 82: localContext = new SetConfigAndValueContext(localContext); - this.enterOuterAlt(localContext, 83); + this.enterOuterAlt(localContext, 82); { - this.state = 1253; + this.state = 1235; this.match(SparkSqlParser.KW_SET); - this.state = 1254; - this.configKey(); - this.state = 1262; + this.state = 1236; + this.quotedIdentifier(); + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1255; + this.state = 1237; this.match(SparkSqlParser.EQ); - this.state = 1259; + this.state = 1241; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1256; + this.state = 1238; this.matchWildcard(); } } } - this.state = 1261; + this.state = 1243; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); } } } } break; - case 84: + case 83: localContext = new SetConfigAnyKeyContext(localContext); - this.enterOuterAlt(localContext, 84); + this.enterOuterAlt(localContext, 83); { - this.state = 1264; + this.state = 1246; this.match(SparkSqlParser.KW_SET); - this.state = 1268; + this.state = 1250; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1265; + this.state = 1247; this.matchWildcard(); } } } - this.state = 1270; + this.state = 1252; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); } - this.state = 1271; + this.state = 1253; this.match(SparkSqlParser.EQ); - this.state = 1272; - this.configValue(); + this.state = 1254; + this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; - case 85: + case 84: localContext = new SetAnyContext(localContext); - this.enterOuterAlt(localContext, 85); + this.enterOuterAlt(localContext, 84); { - this.state = 1273; + this.state = 1255; this.match(SparkSqlParser.KW_SET); - this.state = 1277; + this.state = 1259; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1274; + this.state = 1256; this.matchWildcard(); } } } - this.state = 1279; + this.state = 1261; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } } break; - case 86: + case 85: localContext = new ResetConfigContext(localContext); - this.enterOuterAlt(localContext, 86); + this.enterOuterAlt(localContext, 85); { - this.state = 1280; + this.state = 1262; this.match(SparkSqlParser.KW_RESET); - this.state = 1281; - this.configKey(); + this.state = 1263; + this.quotedIdentifier(); } break; - case 87: + case 86: localContext = new ResetAnyContext(localContext); - this.enterOuterAlt(localContext, 87); + this.enterOuterAlt(localContext, 86); { - this.state = 1282; + this.state = 1264; this.match(SparkSqlParser.KW_RESET); - this.state = 1286; + this.state = 1268; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1283; + this.state = 1265; this.matchWildcard(); } } } - this.state = 1288; + this.state = 1270; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } } break; - case 88: + case 87: localContext = new CreateIndexContext(localContext); - this.enterOuterAlt(localContext, 88); + this.enterOuterAlt(localContext, 87); { - this.state = 1289; + this.state = 1271; this.match(SparkSqlParser.KW_CREATE); - this.state = 1290; + this.state = 1272; this.match(SparkSqlParser.KW_INDEX); - this.state = 1292; + this.state = 1274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1291; + this.state = 1273; this.ifNotExists(); } break; } - this.state = 1294; + this.state = 1276; this.identifier(); - this.state = 1295; + this.state = 1277; this.match(SparkSqlParser.KW_ON); - this.state = 1297; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1296; + this.state = 1278; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1299; + this.state = 1281; this.tableName(); - this.state = 1302; + this.state = 1284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1300; + this.state = 1282; this.match(SparkSqlParser.KW_USING); - this.state = 1301; + this.state = 1283; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1304; + this.state = 1286; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1305; + this.state = 1287; this.multipartIdentifierPropertyList(); - this.state = 1306; + this.state = 1288; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1309; + this.state = 1291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1307; + this.state = 1289; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1308; + this.state = 1290; (localContext as CreateIndexContext)._options = this.propertyList(); } } } break; - case 89: + case 88: localContext = new DropIndexContext(localContext); - this.enterOuterAlt(localContext, 89); + this.enterOuterAlt(localContext, 88); { - this.state = 1311; + this.state = 1293; this.match(SparkSqlParser.KW_DROP); - this.state = 1312; + this.state = 1294; this.match(SparkSqlParser.KW_INDEX); - this.state = 1314; + this.state = 1296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1313; + this.state = 1295; this.ifExists(); } break; } - this.state = 1316; + this.state = 1298; this.identifier(); - this.state = 1317; + this.state = 1299; this.match(SparkSqlParser.KW_ON); - this.state = 1319; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1318; + this.state = 1300; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1321; + this.state = 1303; this.tableName(); } break; - case 90: + case 89: localContext = new OptimizeTableContext(localContext); - this.enterOuterAlt(localContext, 90); + this.enterOuterAlt(localContext, 89); { - this.state = 1323; + this.state = 1305; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1324; + this.state = 1306; this.tableName(); - this.state = 1326; + this.state = 1308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1325; + this.state = 1307; this.whereClause(); } } - this.state = 1328; + this.state = 1310; this.zOrderClause(); } break; - case 91: + case 90: localContext = new UnsupportHiveCommandsContext(localContext); - this.enterOuterAlt(localContext, 91); + this.enterOuterAlt(localContext, 90); { - this.state = 1330; + this.state = 1312; this.unsupportedHiveNativeCommands(); - this.state = 1334; + this.state = 1316; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1331; + this.state = 1313; this.matchWildcard(); } } } - this.state = 1336; + this.state = 1318; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); - } - } - 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 timezone(): TimezoneContext { - let localContext = new TimezoneContext(this.context, this.state); - this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); - try { - this.state = 1341; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: - this.enterOuterAlt(localContext, 1); - { - this.state = 1339; - this.stringLit(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } - break; - case SparkSqlParser.KW_LOCAL: - this.enterOuterAlt(localContext, 2); - { - this.state = 1340; - this.match(SparkSqlParser.KW_LOCAL); } 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 configKey(): ConfigKeyContext { - let localContext = new ConfigKeyContext(this.context, this.state); - this.enterRule(localContext, 8, SparkSqlParser.RULE_configKey); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1343; - this.quotedIdentifier(); - } - } - 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 configValue(): ConfigValueContext { - let localContext = new ConfigValueContext(this.context, this.state); - this.enterRule(localContext, 10, SparkSqlParser.RULE_configValue); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1345; - this.backQuotedIdentifier(); } } catch (re) { @@ -4238,59 +4258,85 @@ export class SparkSqlParser extends SQLParserBase { } public unsupportedHiveNativeCommands(): UnsupportedHiveNativeCommandsContext { let localContext = new UnsupportedHiveNativeCommandsContext(this.context, this.state); - this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); + this.enterRule(localContext, 6, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1515; + this.state = 1414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1347; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1348; + this.state = 1321; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1322; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1349; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1350; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1323; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 129 || _la === 249)) { + localContext._kw1 = this.errorHandler.recoverInline(this); } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 1351; - localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1353; + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1325; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1352; + this.state = 1324; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1327; + localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.state = 1328; + localContext._kw2 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 54 || _la === 129 || _la === 143 || _la === 172 || _la === 228 || _la === 313)) { + localContext._kw2 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1355; - localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1357; + this.state = 1329; + localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.state = 1330; + localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1332; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1356; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1331; + localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; } @@ -4299,505 +4345,374 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1359; + this.state = 1334; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1360; - localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); + this.state = 1336; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 1335; + this.match(SparkSqlParser.KW_CURRENT); + } + } + + this.state = 1338; + this.match(SparkSqlParser.KW_ROLES); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1361; + this.state = 1339; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1362; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1364; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { - case 1: - { - this.state = 1363; - localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); - } - break; - } + this.state = 1340; + localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); + this.state = 1341; + localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1366; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1367; - localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); + this.state = 1342; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 11 || _la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1343; + localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1368; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1369; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); + this.state = 1344; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 107 || _la === 139 || _la === 171 || _la === 326)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1345; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1370; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1371; - localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1372; - localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); + this.state = 1346; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 171 || _la === 326)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1347; + localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1373; - localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1374; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1348; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1349; + localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); + this.state = 1350; + localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1375; - localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1376; + this.state = 1351; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1352; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1353; + this.tableName(); + this.state = 1354; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1355; + localContext._kw4 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 45 || _la === 275 || _la === 279)) { + localContext._kw4 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1377; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1378; - localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); + this.state = 1357; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1358; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1359; + this.tableName(); + this.state = 1360; + localContext._kw3 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 45 || _la === 275)) { + localContext._kw3 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1361; + localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1379; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1380; - localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1381; - localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1363; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1364; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1365; + this.tableName(); + this.state = 1366; + localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1367; + localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1382; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1383; - localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); + this.state = 1369; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1370; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1371; + this.tableName(); + this.state = 1372; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1373; + localContext._kw4 = this.match(SparkSqlParser.KW_STORED); + this.state = 1374; + localContext._kw5 = this.match(SparkSqlParser.KW_AS); + this.state = 1375; + localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1384; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1385; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); + this.state = 1377; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1378; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1379; + this.tableName(); + this.state = 1380; + localContext._kw3 = this.match(SparkSqlParser.KW_SET); + this.state = 1381; + localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1382; + localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 16: this.enterOuterAlt(localContext, 16); { + this.state = 1384; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1385; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); this.state = 1386; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.tableName(); this.state = 1387; - localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); + localContext._kw3 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 18 || _la === 103 || _la === 320)) { + localContext._kw3 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1388; + localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1388; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1389; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); + this.state = 1390; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1391; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1392; + this.tableName(); + this.state = 1393; + localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1390; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1391; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); + this.state = 1395; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1396; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1397; + this.tableName(); + this.state = 1399; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 217) { + { + this.state = 1398; + this.partitionSpec(); + } + } + + this.state = 1407; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_COMPACT: + { + this.state = 1401; + this.match(SparkSqlParser.KW_COMPACT); + } + break; + case SparkSqlParser.KW_CONCATENATE: + { + this.state = 1402; + this.match(SparkSqlParser.KW_CONCATENATE); + } + break; + case SparkSqlParser.KW_SET: + { + { + this.state = 1403; + this.match(SparkSqlParser.KW_SET); + this.state = 1404; + this.match(SparkSqlParser.KW_FILEFORMAT); + } + } + break; + case SparkSqlParser.KW_REPLACE: + { + { + this.state = 1405; + this.match(SparkSqlParser.KW_REPLACE); + this.state = 1406; + this.match(SparkSqlParser.KW_COLUMNS); + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1392; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1393; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); + this.state = 1409; + localContext._kw1 = this.match(SparkSqlParser.KW_START); + this.state = 1410; + localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1394; - localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1395; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1411; + localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1396; - localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1397; - localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); + this.state = 1412; + localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1398; - localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1399; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 23: - this.enterOuterAlt(localContext, 23); - { - this.state = 1400; - localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1401; - localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); - } - break; - case 24: - this.enterOuterAlt(localContext, 24); - { - this.state = 1402; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1403; - localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1404; - localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); + this.state = 1413; + localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; - case 25: - this.enterOuterAlt(localContext, 25); + } + } + 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 bucketSpec(): BucketSpecContext { + let localContext = new BucketSpecContext(this.context, this.state); + this.enterRule(localContext, 8, SparkSqlParser.RULE_bucketSpec); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1416; + this.match(SparkSqlParser.KW_CLUSTERED); + this.state = 1417; + this.match(SparkSqlParser.KW_BY); + this.state = 1418; + this.identifierList(); + this.state = 1422; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 279) { { - this.state = 1405; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1406; - localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1407; - localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); - } - break; - case 26: - this.enterOuterAlt(localContext, 26); - { - this.state = 1408; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1409; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1410; - this.tableName(); - this.state = 1411; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1412; - localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); - } - break; - case 27: - this.enterOuterAlt(localContext, 27); - { - this.state = 1414; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1415; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1416; - this.tableName(); - this.state = 1417; - localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1418; - localContext._kw4 = this.match(SparkSqlParser.KW_BY); - } - break; - case 28: - this.enterOuterAlt(localContext, 28); - { - this.state = 1420; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1421; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1422; - this.tableName(); - this.state = 1423; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1424; - localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); - } - break; - case 29: - this.enterOuterAlt(localContext, 29); - { - this.state = 1426; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1427; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1428; - this.tableName(); - this.state = 1429; - localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1430; - localContext._kw4 = this.match(SparkSqlParser.KW_BY); - } - break; - case 30: - this.enterOuterAlt(localContext, 30); - { - this.state = 1432; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1433; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1434; - this.tableName(); - this.state = 1435; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1436; - localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - } - break; - case 31: - this.enterOuterAlt(localContext, 31); - { - this.state = 1438; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1439; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1440; - this.tableName(); - this.state = 1441; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1442; - localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1443; - localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1444; - localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); - } - break; - case 32: - this.enterOuterAlt(localContext, 32); - { - this.state = 1446; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1447; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1448; - this.tableName(); - this.state = 1449; - localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1450; - localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1451; - localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); - } - break; - case 33: - this.enterOuterAlt(localContext, 33); - { - this.state = 1453; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1454; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1455; - this.tableName(); - this.state = 1456; - localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); - this.state = 1457; - localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); - } - break; - case 34: - this.enterOuterAlt(localContext, 34); - { - this.state = 1459; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1460; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1461; - this.tableName(); - this.state = 1462; - localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); - this.state = 1463; - localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); - } - break; - case 35: - this.enterOuterAlt(localContext, 35); - { - this.state = 1465; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1466; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1467; - this.tableName(); - this.state = 1468; - localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); - this.state = 1469; - localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); - } - break; - case 36: - this.enterOuterAlt(localContext, 36); - { - this.state = 1471; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1472; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1473; - this.tableName(); - this.state = 1474; - localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); - } - break; - case 37: - this.enterOuterAlt(localContext, 37); - { - this.state = 1476; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1477; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1478; - this.tableName(); - this.state = 1480; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { - { - this.state = 1479; - this.partitionSpec(); - } - } - - this.state = 1482; - localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); - } - break; - case 38: - this.enterOuterAlt(localContext, 38); - { - this.state = 1484; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1485; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1486; - this.tableName(); - this.state = 1488; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { - { - this.state = 1487; - this.partitionSpec(); - } - } - - this.state = 1490; - localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); - } - break; - case 39: - this.enterOuterAlt(localContext, 39); - { - this.state = 1492; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1493; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1494; - this.tableName(); - this.state = 1496; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { - { - this.state = 1495; - this.partitionSpec(); - } - } - - this.state = 1498; - localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1499; - localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); - } - break; - case 40: - this.enterOuterAlt(localContext, 40); - { - this.state = 1501; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1502; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1503; - this.tableName(); - this.state = 1505; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { - { - this.state = 1504; - this.partitionSpec(); - } + this.state = 1419; + this.match(SparkSqlParser.KW_SORTED); + this.state = 1420; + this.match(SparkSqlParser.KW_BY); + this.state = 1421; + this.orderedIdentifierList(); } + } - this.state = 1507; - localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1508; - localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); - } - break; - case 41: - this.enterOuterAlt(localContext, 41); - { - this.state = 1510; - localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1511; - localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); - } - break; - case 42: - this.enterOuterAlt(localContext, 42); - { - this.state = 1512; - localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); - } - break; - case 43: - this.enterOuterAlt(localContext, 43); - { - this.state = 1513; - localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); - } - break; - case 44: - this.enterOuterAlt(localContext, 44); - { - this.state = 1514; - localContext._kw1 = this.match(SparkSqlParser.KW_DFS); - } - break; + this.state = 1424; + this.match(SparkSqlParser.KW_INTO); + this.state = 1425; + this.match(SparkSqlParser.INTEGER_VALUE); + this.state = 1426; + this.match(SparkSqlParser.KW_BUCKETS); } } catch (re) { @@ -4814,195 +4729,46 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public createTableHeader(): CreateTableHeaderContext { - let localContext = new CreateTableHeaderContext(this.context, this.state); - this.enterRule(localContext, 14, SparkSqlParser.RULE_createTableHeader); - let _la: number; + public skewSpec(): SkewSpecContext { + let localContext = new SkewSpecContext(this.context, this.state); + this.enterRule(localContext, 10, SparkSqlParser.RULE_skewSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1519; + this.state = 1428; + this.match(SparkSqlParser.KW_SKEWED); + this.state = 1429; + this.match(SparkSqlParser.KW_BY); + this.state = 1430; + this.identifierList(); + this.state = 1431; + this.match(SparkSqlParser.KW_ON); + this.state = 1434; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 298) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + case 1: { - this.state = 1518; - this.match(SparkSqlParser.KW_TEMPORARY); + this.state = 1432; + this.constantList(); } - } - - this.state = 1522; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 109) { + break; + case 2: { - this.state = 1521; - this.match(SparkSqlParser.KW_EXTERNAL); + this.state = 1433; + this.nestedConstantList(); } + break; } - - this.state = 1524; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1526; + this.state = 1439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1525; - this.ifNotExists(); - } - break; - } - this.state = 1528; - this.tableNameCreate(); - } - } - 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 replaceTableHeader(): ReplaceTableHeaderContext { - let localContext = new ReplaceTableHeaderContext(this.context, this.state); - this.enterRule(localContext, 16, SparkSqlParser.RULE_replaceTableHeader); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1532; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 59) { - { - this.state = 1530; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1531; - this.match(SparkSqlParser.KW_OR); - } - } - - this.state = 1534; - this.match(SparkSqlParser.KW_REPLACE); - this.state = 1535; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1536; - this.tableNameCreate(); - } - } - 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 bucketSpec(): BucketSpecContext { - let localContext = new BucketSpecContext(this.context, this.state); - this.enterRule(localContext, 18, SparkSqlParser.RULE_bucketSpec); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1538; - this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1539; - this.match(SparkSqlParser.KW_BY); - this.state = 1540; - this.identifierList(); - this.state = 1544; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 279) { - { - this.state = 1541; - this.match(SparkSqlParser.KW_SORTED); - this.state = 1542; - this.match(SparkSqlParser.KW_BY); - this.state = 1543; - this.orderedIdentifierList(); - } - } - - this.state = 1546; - this.match(SparkSqlParser.KW_INTO); - this.state = 1547; - this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1548; - this.match(SparkSqlParser.KW_BUCKETS); - } - } - 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 skewSpec(): SkewSpecContext { - let localContext = new SkewSpecContext(this.context, this.state); - this.enterRule(localContext, 20, SparkSqlParser.RULE_skewSpec); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1550; - this.match(SparkSqlParser.KW_SKEWED); - this.state = 1551; - this.match(SparkSqlParser.KW_BY); - this.state = 1552; - this.identifierList(); - this.state = 1553; - this.match(SparkSqlParser.KW_ON); - this.state = 1556; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { - case 1: - { - this.state = 1554; - this.constantList(); - } - break; - case 2: - { - this.state = 1555; - this.nestedConstantList(); - } - break; - } - this.state = 1561; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { - case 1: - { - this.state = 1558; + this.state = 1436; this.match(SparkSqlParser.KW_STORED); - this.state = 1559; + this.state = 1437; this.match(SparkSqlParser.KW_AS); - this.state = 1560; + this.state = 1438; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -5025,13 +4791,13 @@ export class SparkSqlParser extends SQLParserBase { } public locationSpec(): LocationSpecContext { let localContext = new LocationSpecContext(this.context, this.state); - this.enterRule(localContext, 22, SparkSqlParser.RULE_locationSpec); + this.enterRule(localContext, 12, SparkSqlParser.RULE_locationSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1441; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1564; + this.state = 1442; this.stringLit(); } } @@ -5051,13 +4817,13 @@ export class SparkSqlParser extends SQLParserBase { } public commentSpec(): CommentSpecContext { let localContext = new CommentSpecContext(this.context, this.state); - this.enterRule(localContext, 24, SparkSqlParser.RULE_commentSpec); + this.enterRule(localContext, 14, SparkSqlParser.RULE_commentSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1444; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1567; + this.state = 1445; localContext._comment = this.stringLit(); } } @@ -5077,25 +4843,25 @@ export class SparkSqlParser extends SQLParserBase { } public query(): QueryContext { let localContext = new QueryContext(this.context, this.state); - this.enterRule(localContext, 26, SparkSqlParser.RULE_query); + this.enterRule(localContext, 16, SparkSqlParser.RULE_query); let _la: number; try { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1569; + this.state = 1447; this.ctes(); } } - this.state = 1572; + this.state = 1450; this.queryTerm(0); - this.state = 1573; + this.state = 1451; this.queryOrganization(); } } @@ -5115,44 +4881,44 @@ export class SparkSqlParser extends SQLParserBase { } public insertInto(): InsertIntoContext { let localContext = new InsertIntoContext(this.context, this.state); - this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); + this.enterRule(localContext, 18, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1651; + this.state = 1529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1575; + this.state = 1453; this.match(SparkSqlParser.KW_INSERT); - this.state = 1576; + this.state = 1454; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1578; + this.state = 1456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1577; + this.state = 1455; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1580; + this.state = 1458; this.tableName(); - this.state = 1585; + this.state = 1463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1581; + this.state = 1459; this.partitionSpec(); - this.state = 1583; + this.state = 1461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1582; + this.state = 1460; this.ifNotExists(); } } @@ -5160,15 +4926,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1593; + this.state = 1471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1587; + this.state = 1465; this.match(SparkSqlParser.KW_BY); - this.state = 1588; + this.state = 1466; this.match(SparkSqlParser.KW_NAME); } } @@ -5176,11 +4942,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1589; + this.state = 1467; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1590; + this.state = 1468; this.columnNameSeq(); - this.state = 1591; + this.state = 1469; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5191,51 +4957,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1595; + this.state = 1473; this.match(SparkSqlParser.KW_INSERT); - this.state = 1596; + this.state = 1474; this.match(SparkSqlParser.KW_INTO); - this.state = 1598; + this.state = 1476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1597; + this.state = 1475; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1600; + this.state = 1478; this.tableName(); - this.state = 1602; + this.state = 1480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1601; + this.state = 1479; this.partitionSpec(); } } - this.state = 1605; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1604; + this.state = 1482; this.ifNotExists(); } } - this.state = 1613; + this.state = 1491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1607; + this.state = 1485; this.match(SparkSqlParser.KW_BY); - this.state = 1608; + this.state = 1486; this.match(SparkSqlParser.KW_NAME); } } @@ -5243,11 +5009,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1609; + this.state = 1487; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1610; + this.state = 1488; this.columnNameSeq(); - this.state = 1611; + this.state = 1489; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5258,65 +5024,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1615; + this.state = 1493; this.match(SparkSqlParser.KW_INSERT); - this.state = 1616; + this.state = 1494; this.match(SparkSqlParser.KW_INTO); - this.state = 1618; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1617; + this.state = 1495; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1620; + this.state = 1498; this.tableName(); - this.state = 1621; + this.state = 1499; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1622; + this.state = 1500; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1502; this.match(SparkSqlParser.KW_INSERT); - this.state = 1625; + this.state = 1503; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1627; + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1626; + this.state = 1504; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1629; + this.state = 1507; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1630; + this.state = 1508; localContext._path = this.stringLit(); - this.state = 1632; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1631; + this.state = 1509; this.rowFormat(); } } - this.state = 1635; + this.state = 1513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1634; + this.state = 1512; this.createFileFormat(); } } @@ -5326,42 +5092,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1637; + this.state = 1515; this.match(SparkSqlParser.KW_INSERT); - this.state = 1638; + this.state = 1516; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1640; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1639; + this.state = 1517; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1642; + this.state = 1520; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1644; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1643; + this.state = 1521; localContext._path = this.stringLit(); } } - this.state = 1646; + this.state = 1524; this.tableProvider(); - this.state = 1649; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1647; + this.state = 1525; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1648; + this.state = 1526; localContext._options = this.propertyList(); } } @@ -5386,20 +5152,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionSpecLocation(): PartitionSpecLocationContext { let localContext = new PartitionSpecLocationContext(this.context, this.state); - this.enterRule(localContext, 30, SparkSqlParser.RULE_partitionSpecLocation); + this.enterRule(localContext, 20, SparkSqlParser.RULE_partitionSpecLocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1531; this.partitionSpec(); - this.state = 1655; + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1654; - this.locationSpec(); + this.state = 1532; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 1533; + this.stringLit(); } } @@ -5421,34 +5189,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 32, SparkSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 22, SparkSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1536; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1658; + this.state = 1537; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1659; + this.state = 1538; this.partitionVal(); - this.state = 1664; + this.state = 1543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1660; + this.state = 1539; this.match(SparkSqlParser.COMMA); - this.state = 1661; + this.state = 1540; this.partitionVal(); } } - this.state = 1666; + this.state = 1545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1667; + this.state = 1546; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5468,25 +5236,25 @@ export class SparkSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); + this.enterRule(localContext, 24, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1678; + this.state = 1557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1548; this.identifier(); - this.state = 1672; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1670; + this.state = 1549; this.match(SparkSqlParser.EQ); - this.state = 1671; + this.state = 1550; this.constant(); } } @@ -5496,11 +5264,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1674; + this.state = 1553; this.identifier(); - this.state = 1675; + this.state = 1554; this.match(SparkSqlParser.EQ); - this.state = 1676; + this.state = 1555; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5522,12 +5290,12 @@ export class SparkSqlParser extends SQLParserBase { } public namespace(): NamespaceContext { let localContext = new NamespaceContext(this.context, this.state); - this.enterRule(localContext, 36, SparkSqlParser.RULE_namespace); + this.enterRule(localContext, 26, SparkSqlParser.RULE_namespace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1559; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5552,77 +5320,45 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - 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 = 1682; - _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 191 || _la === 262)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - 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 describeFuncName(): DescribeFuncNameContext { let localContext = new DescribeFuncNameContext(this.context, this.state); - this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); + this.enterRule(localContext, 28, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1689; + this.state = 1566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1684; + this.state = 1561; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1562; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1686; + this.state = 1563; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1687; + this.state = 1564; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1688; + this.state = 1565; this.predicateOperator(); } break; @@ -5644,28 +5380,28 @@ export class SparkSqlParser extends SQLParserBase { } public describeColName(): DescribeColNameContext { let localContext = new DescribeColNameContext(this.context, this.state); - this.enterRule(localContext, 42, SparkSqlParser.RULE_describeColName); + this.enterRule(localContext, 30, SparkSqlParser.RULE_describeColName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1691; + this.state = 1568; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1696; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1692; + this.state = 1569; this.match(SparkSqlParser.DOT); - this.state = 1693; + this.state = 1570; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1698; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5687,28 +5423,28 @@ export class SparkSqlParser extends SQLParserBase { } public ctes(): CtesContext { let localContext = new CtesContext(this.context, this.state); - this.enterRule(localContext, 44, SparkSqlParser.RULE_ctes); + this.enterRule(localContext, 32, SparkSqlParser.RULE_ctes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1699; + this.state = 1576; this.match(SparkSqlParser.KW_WITH); - this.state = 1700; + this.state = 1577; this.namedQuery(); - this.state = 1705; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1701; + this.state = 1578; this.match(SparkSqlParser.COMMA); - this.state = 1702; + this.state = 1579; this.namedQuery(); } } - this.state = 1707; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5730,38 +5466,38 @@ export class SparkSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 46, SparkSqlParser.RULE_namedQuery); + this.enterRule(localContext, 34, SparkSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1585; localContext._name = this.errorCapturingIdentifier(); - this.state = 1710; + this.state = 1587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1709; + this.state = 1586; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1713; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1712; + this.state = 1589; this.match(SparkSqlParser.KW_AS); } } - this.state = 1715; + this.state = 1592; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1716; + this.state = 1593; this.query(); - this.state = 1717; + this.state = 1594; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5781,13 +5517,13 @@ export class SparkSqlParser extends SQLParserBase { } public tableProvider(): TableProviderContext { let localContext = new TableProviderContext(this.context, this.state); - this.enterRule(localContext, 48, SparkSqlParser.RULE_tableProvider); + this.enterRule(localContext, 36, SparkSqlParser.RULE_tableProvider); try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1596; this.match(SparkSqlParser.KW_USING); - this.state = 1720; + this.state = 1597; this.multipartIdentifier(); } } @@ -5807,26 +5543,26 @@ export class SparkSqlParser extends SQLParserBase { } public createTableClauses(): CreateTableClausesContext { let localContext = new CreateTableClausesContext(this.context, this.state); - this.enterRule(localContext, 50, SparkSqlParser.RULE_createTableClauses); + this.enterRule(localContext, 38, SparkSqlParser.RULE_createTableClauses); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1617; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1736; + this.state = 1615; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1722; + this.state = 1599; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1723; + this.state = 1600; localContext._options = this.expressionPropertyList(); } } @@ -5834,64 +5570,68 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1724; + this.state = 1601; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1725; + this.state = 1602; this.match(SparkSqlParser.KW_BY); - this.state = 1726; + this.state = 1603; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1727; + this.state = 1604; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1728; + this.state = 1605; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1729; + this.state = 1606; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1730; + this.state = 1607; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1731; - this.locationSpec(); + this.state = 1608; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 1609; + this.stringLit(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1732; - this.commentSpec(); + this.state = 1610; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 1611; + localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1733; + this.state = 1612; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1734; + this.state = 1613; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1735; + this.state = 1614; this.tableLifecycle(); } break; @@ -5900,7 +5640,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1740; + this.state = 1619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5922,13 +5662,13 @@ export class SparkSqlParser extends SQLParserBase { } public tableLifecycle(): TableLifecycleContext { let localContext = new TableLifecycleContext(this.context, this.state); - this.enterRule(localContext, 52, SparkSqlParser.RULE_tableLifecycle); + this.enterRule(localContext, 40, SparkSqlParser.RULE_tableLifecycle); try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1620; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1742; + this.state = 1621; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5948,32 +5688,32 @@ export class SparkSqlParser extends SQLParserBase { } public propertyList(): PropertyListContext { let localContext = new PropertyListContext(this.context, this.state); - this.enterRule(localContext, 54, SparkSqlParser.RULE_propertyList); + this.enterRule(localContext, 42, SparkSqlParser.RULE_propertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1623; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1745; + this.state = 1624; this.property(); - this.state = 1750; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1746; + this.state = 1625; this.match(SparkSqlParser.COMMA); - this.state = 1747; + this.state = 1626; this.property(); } } - this.state = 1752; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1753; + this.state = 1632; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5993,29 +5733,29 @@ export class SparkSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 56, SparkSqlParser.RULE_property); + this.enterRule(localContext, 44, SparkSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1634; localContext._key = this.propertyKey(); - this.state = 1760; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1757; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1756; + this.state = 1635; this.match(SparkSqlParser.EQ); } } - this.state = 1759; + this.state = 1638; localContext._value = this.propertyValue(); } } @@ -6038,30 +5778,30 @@ export class SparkSqlParser extends SQLParserBase { } public propertyKey(): PropertyKeyContext { let localContext = new PropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyKey); + this.enterRule(localContext, 46, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1771; + this.state = 1650; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1641; this.identifier(); - this.state = 1767; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1763; + this.state = 1642; this.match(SparkSqlParser.DOT); - this.state = 1764; + this.state = 1643; this.identifier(); } } - this.state = 1769; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6070,7 +5810,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1649; this.stringLit(); } break; @@ -6092,22 +5832,22 @@ export class SparkSqlParser extends SQLParserBase { } public propertyValue(): PropertyValueContext { let localContext = new PropertyValueContext(this.context, this.state); - this.enterRule(localContext, 60, SparkSqlParser.RULE_propertyValue); + this.enterRule(localContext, 48, SparkSqlParser.RULE_propertyValue); try { - this.state = 1777; + this.state = 1656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1652; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1653; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -6115,7 +5855,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1775; + this.state = 1654; this.booleanValue(); } break; @@ -6123,7 +5863,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1776; + this.state = 1655; this.stringLit(); } break; @@ -6147,32 +5887,32 @@ export class SparkSqlParser extends SQLParserBase { } public expressionPropertyList(): ExpressionPropertyListContext { let localContext = new ExpressionPropertyListContext(this.context, this.state); - this.enterRule(localContext, 62, SparkSqlParser.RULE_expressionPropertyList); + this.enterRule(localContext, 50, SparkSqlParser.RULE_expressionPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1658; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1780; + this.state = 1659; this.expressionProperty(); - this.state = 1785; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1781; + this.state = 1660; this.match(SparkSqlParser.COMMA); - this.state = 1782; + this.state = 1661; this.expressionProperty(); } } - this.state = 1787; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1788; + this.state = 1667; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6192,29 +5932,29 @@ export class SparkSqlParser extends SQLParserBase { } public expressionProperty(): ExpressionPropertyContext { let localContext = new ExpressionPropertyContext(this.context, this.state); - this.enterRule(localContext, 64, SparkSqlParser.RULE_expressionProperty); + this.enterRule(localContext, 52, SparkSqlParser.RULE_expressionProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1669; localContext._key = this.propertyKey(); - this.state = 1795; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1792; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1791; + this.state = 1670; this.match(SparkSqlParser.EQ); } } - this.state = 1794; + this.state = 1673; localContext._value = this.expression(); } } @@ -6237,32 +5977,32 @@ export class SparkSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 66, SparkSqlParser.RULE_constantList); + this.enterRule(localContext, 54, SparkSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1797; + this.state = 1676; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1798; + this.state = 1677; this.constant(); - this.state = 1803; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1799; + this.state = 1678; this.match(SparkSqlParser.COMMA); - this.state = 1800; + this.state = 1679; this.constant(); } } - this.state = 1805; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1806; + this.state = 1685; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6282,32 +6022,32 @@ export class SparkSqlParser extends SQLParserBase { } public nestedConstantList(): NestedConstantListContext { let localContext = new NestedConstantListContext(this.context, this.state); - this.enterRule(localContext, 68, SparkSqlParser.RULE_nestedConstantList); + this.enterRule(localContext, 56, SparkSqlParser.RULE_nestedConstantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1687; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1809; + this.state = 1688; this.constantList(); - this.state = 1814; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1810; + this.state = 1689; this.match(SparkSqlParser.COMMA); - this.state = 1811; + this.state = 1690; this.constantList(); } } - this.state = 1816; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1817; + this.state = 1696; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6327,30 +6067,30 @@ export class SparkSqlParser extends SQLParserBase { } public createFileFormat(): CreateFileFormatContext { let localContext = new CreateFileFormatContext(this.context, this.state); - this.enterRule(localContext, 70, SparkSqlParser.RULE_createFileFormat); + this.enterRule(localContext, 58, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1825; + this.state = 1704; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1698; this.match(SparkSqlParser.KW_STORED); - this.state = 1820; + this.state = 1699; this.match(SparkSqlParser.KW_AS); - this.state = 1821; + this.state = 1700; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1822; + this.state = 1701; this.match(SparkSqlParser.KW_STORED); - this.state = 1823; + this.state = 1702; this.match(SparkSqlParser.KW_BY); - this.state = 1824; + this.state = 1703; this.storageHandler(); } break; @@ -6372,28 +6112,28 @@ export class SparkSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 72, SparkSqlParser.RULE_fileFormat); + this.enterRule(localContext, 60, SparkSqlParser.RULE_fileFormat); try { - this.state = 1833; + this.state = 1712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1706; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1828; + this.state = 1707; localContext._inFmt = this.stringLit(); - this.state = 1829; + this.state = 1708; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1830; + this.state = 1709; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1711; this.identifier(); } break; @@ -6415,22 +6155,22 @@ export class SparkSqlParser extends SQLParserBase { } public storageHandler(): StorageHandlerContext { let localContext = new StorageHandlerContext(this.context, this.state); - this.enterRule(localContext, 74, SparkSqlParser.RULE_storageHandler); + this.enterRule(localContext, 62, SparkSqlParser.RULE_storageHandler); try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1714; this.stringLit(); - this.state = 1839; + this.state = 1718; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1836; + this.state = 1715; this.match(SparkSqlParser.KW_WITH); - this.state = 1837; + this.state = 1716; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1838; + this.state = 1717; this.propertyList(); } break; @@ -6451,48 +6191,22 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public resource(): ResourceContext { - let localContext = new ResourceContext(this.context, this.state); - this.enterRule(localContext, 76, SparkSqlParser.RULE_resource); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1841; - this.identifier(); - this.state = 1842; - this.stringLit(); - } - } - 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 dmlStatementNoWith(): DmlStatementNoWithContext { let localContext = new DmlStatementNoWithContext(this.context, this.state); - this.enterRule(localContext, 78, SparkSqlParser.RULE_dmlStatementNoWith); + this.enterRule(localContext, 64, SparkSqlParser.RULE_dmlStatementNoWith); let _la: number; try { let alternative: number; - this.state = 1900; + this.state = 1778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1720; this.insertInto(); - this.state = 1845; + this.state = 1721; this.query(); } break; @@ -6500,9 +6214,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1723; this.fromClause(); - this.state = 1849; + this.state = 1727; this.errorHandler.sync(this); alternative = 1; do { @@ -6510,15 +6224,17 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1848; - this.multiInsertQueryBody(); + this.state = 1724; + this.insertInto(); + this.state = 1725; + this.fromStatementBody(); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1729; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6528,20 +6244,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1853; + this.state = 1731; this.match(SparkSqlParser.KW_DELETE); - this.state = 1854; + this.state = 1732; this.match(SparkSqlParser.KW_FROM); - this.state = 1855; + this.state = 1733; this.tableName(); - this.state = 1856; + this.state = 1734; this.tableAlias(); - this.state = 1858; + this.state = 1736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1857; + this.state = 1735; this.whereClause(); } } @@ -6552,20 +6268,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1860; + this.state = 1738; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1861; + this.state = 1739; this.tableName(); - this.state = 1862; + this.state = 1740; this.tableAlias(); - this.state = 1863; + this.state = 1741; this.setClause(); - this.state = 1865; + this.state = 1743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1864; + this.state = 1742; this.whereClause(); } } @@ -6576,17 +6292,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1745; this.match(SparkSqlParser.KW_MERGE); - this.state = 1868; + this.state = 1746; this.match(SparkSqlParser.KW_INTO); - this.state = 1869; + this.state = 1747; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1870; + this.state = 1748; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1871; + this.state = 1749; this.match(SparkSqlParser.KW_USING); - this.state = 1877; + this.state = 1755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6933,72 +6649,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1872; + this.state = 1750; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1873; + this.state = 1751; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1874; + this.state = 1752; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1875; + this.state = 1753; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1879; + this.state = 1757; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1880; + this.state = 1758; this.match(SparkSqlParser.KW_ON); - this.state = 1881; + this.state = 1759; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1885; + this.state = 1763; 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 = 1760; this.matchedClause(); } } } - this.state = 1887; + this.state = 1765; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1891; + this.state = 1769; 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 = 1888; + this.state = 1766; this.notMatchedClause(); } } } - this.state = 1893; + this.state = 1771; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1897; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1894; + this.state = 1772; this.notMatchedBySourceClause(); } } - this.state = 1899; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7024,11 +6740,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceName(): NamespaceNameContext { let localContext = new NamespaceNameContext(this.context, this.state); - this.enterRule(localContext, 80, SparkSqlParser.RULE_namespaceName); + this.enterRule(localContext, 66, SparkSqlParser.RULE_namespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1780; this.identifierReference(); } } @@ -7048,11 +6764,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceNameCreate(): NamespaceNameCreateContext { let localContext = new NamespaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 82, SparkSqlParser.RULE_namespaceNameCreate); + this.enterRule(localContext, 68, SparkSqlParser.RULE_namespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1904; + this.state = 1782; this.identifierReference(); } } @@ -7072,11 +6788,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 84, SparkSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 70, SparkSqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1784; this.tableIdentifier(); } } @@ -7096,11 +6812,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 86, SparkSqlParser.RULE_tableName); + this.enterRule(localContext, 72, SparkSqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1908; + this.state = 1786; this.tableIdentifier(); } } @@ -7120,11 +6836,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 88, SparkSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 74, SparkSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1788; this.viewIdentifier(); } } @@ -7144,11 +6860,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 90, SparkSqlParser.RULE_viewName); + this.enterRule(localContext, 76, SparkSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1790; this.viewIdentifier(); } } @@ -7168,22 +6884,22 @@ export class SparkSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 92, SparkSqlParser.RULE_columnName); + this.enterRule(localContext, 78, SparkSqlParser.RULE_columnName); try { - this.state = 1916; + this.state = 1794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1792; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1915; + this.state = 1793; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -7205,28 +6921,52 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 80, SparkSqlParser.RULE_columnNamePath); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1796; + this.multipartIdentifier(); + } + } + 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 columnNameSeq(): ColumnNameSeqContext { let localContext = new ColumnNameSeqContext(this.context, this.state); - this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNameSeq); + this.enterRule(localContext, 82, SparkSqlParser.RULE_columnNameSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1798; this.columnName(); - this.state = 1923; + this.state = 1803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1919; + this.state = 1799; this.match(SparkSqlParser.COMMA); - this.state = 1920; + this.state = 1800; this.columnName(); } } - this.state = 1925; + this.state = 1805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7248,11 +6988,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 96, SparkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 84, SparkSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1806; this.errorCapturingIdentifier(); } } @@ -7272,28 +7012,28 @@ export class SparkSqlParser extends SQLParserBase { } public identifierReference(): IdentifierReferenceContext { let localContext = new IdentifierReferenceContext(this.context, this.state); - this.enterRule(localContext, 98, SparkSqlParser.RULE_identifierReference); + this.enterRule(localContext, 86, SparkSqlParser.RULE_identifierReference); try { - this.state = 1934; + this.state = 1814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1928; + this.state = 1808; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1929; + this.state = 1809; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1930; + this.state = 1810; this.expression(); - this.state = 1931; + this.state = 1811; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1933; + this.state = 1813; this.multipartIdentifier(); } break; @@ -7315,191 +7055,94 @@ export class SparkSqlParser extends SQLParserBase { } public queryOrganization(): QueryOrganizationContext { let localContext = new QueryOrganizationContext(this.context, this.state); - this.enterRule(localContext, 100, SparkSqlParser.RULE_queryOrganization); + this.enterRule(localContext, 88, SparkSqlParser.RULE_queryOrganization); try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1819; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1936; + this.state = 1816; this.match(SparkSqlParser.KW_ORDER); - this.state = 1937; + this.state = 1817; this.match(SparkSqlParser.KW_BY); - this.state = 1938; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - this.state = 1943; - 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 = 1939; - this.match(SparkSqlParser.COMMA); - this.state = 1940; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - } - } - } - this.state = 1945; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); - } + this.state = 1818; + this.orderOrSortByClause(); } break; } - this.state = 1958; + this.state = 1824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1948; + this.state = 1821; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1949; + this.state = 1822; this.match(SparkSqlParser.KW_BY); - this.state = 1950; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); - this.state = 1955; - 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 = 1951; - this.match(SparkSqlParser.COMMA); - this.state = 1952; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); - } - } - } - this.state = 1957; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); - } + this.state = 1823; + this.clusterOrDistributeBy(); } break; } - this.state = 1970; + this.state = 1829; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1960; + this.state = 1826; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1961; + this.state = 1827; this.match(SparkSqlParser.KW_BY); - this.state = 1962; - localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); - this.state = 1967; - 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 = 1963; - this.match(SparkSqlParser.COMMA); - this.state = 1964; - localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); - } - } - } - this.state = 1969; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); - } + this.state = 1828; + this.clusterOrDistributeBy(); } break; } - this.state = 1982; + this.state = 1834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1972; + this.state = 1831; this.match(SparkSqlParser.KW_SORT); - this.state = 1973; + this.state = 1832; this.match(SparkSqlParser.KW_BY); - this.state = 1974; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); - this.state = 1979; - 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 = 1975; - this.match(SparkSqlParser.COMMA); - this.state = 1976; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); - } - } - } - this.state = 1981; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); - } + this.state = 1833; + this.orderOrSortByClause(); } break; } - this.state = 1985; + this.state = 1837; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1984; + this.state = 1836; this.windowClause(); } break; } - this.state = 1992; + this.state = 1840; 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 = 1987; - this.match(SparkSqlParser.KW_LIMIT); - this.state = 1990; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { - case 1: - { - this.state = 1988; - this.match(SparkSqlParser.KW_ALL); - } - break; - case 2: - { - this.state = 1989; - localContext._limit = this.expression(); - } - break; - } + this.state = 1839; + this.limitClause(); } break; } - this.state = 1996; + this.state = 1844; 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 = 1994; + this.state = 1842; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1995; + this.state = 1843; localContext._offset = this.expression(); } break; @@ -7520,16 +7163,116 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public multiInsertQueryBody(): MultiInsertQueryBodyContext { - let localContext = new MultiInsertQueryBodyContext(this.context, this.state); - this.enterRule(localContext, 102, SparkSqlParser.RULE_multiInsertQueryBody); + public limitClause(): LimitClauseContext { + let localContext = new LimitClauseContext(this.context, this.state); + this.enterRule(localContext, 90, SparkSqlParser.RULE_limitClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1846; + this.match(SparkSqlParser.KW_LIMIT); + this.state = 1849; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + case 1: + { + this.state = 1847; + this.match(SparkSqlParser.KW_ALL); + } + break; + case 2: + { + this.state = 1848; + localContext._limit = this.expression(); + } + 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 orderOrSortByClause(): OrderOrSortByClauseContext { + let localContext = new OrderOrSortByClauseContext(this.context, this.state); + this.enterRule(localContext, 92, SparkSqlParser.RULE_orderOrSortByClause); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1851; + this.sortItem(); + this.state = 1856; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1852; + this.match(SparkSqlParser.COMMA); + this.state = 1853; + this.sortItem(); + } + } + } + this.state = 1858; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, 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 clusterOrDistributeBy(): ClusterOrDistributeByContext { + let localContext = new ClusterOrDistributeByContext(this.context, this.state); + this.enterRule(localContext, 94, SparkSqlParser.RULE_clusterOrDistributeBy); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1998; - this.insertInto(); - this.state = 1999; - this.fromStatementBody(); + this.state = 1859; + this.expression(); + this.state = 1864; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1860; + this.match(SparkSqlParser.COMMA); + this.state = 1861; + this.expression(); + } + } + } + this.state = 1866; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); + } } } catch (re) { @@ -7558,21 +7301,21 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 104; - this.enterRecursionRule(localContext, 104, SparkSqlParser.RULE_queryTerm, _p); + let _startState = 96; + this.enterRecursionRule(localContext, 96, SparkSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 2002; + this.state = 1868; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2024; + this.state = 1890; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, 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) { @@ -7580,19 +7323,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2022; + this.state = 1888; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2004; + this.state = 1870; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2005; + this.state = 1871; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7602,17 +7345,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2007; + this.state = 1873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2006; + this.state = 1872; this.setQuantifier(); } } - this.state = 2009; + this.state = 1875; localContext._right = this.queryTerm(4); } break; @@ -7621,23 +7364,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2010; + this.state = 1876; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2011; + this.state = 1877; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2013; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2012; + this.state = 1878; this.setQuantifier(); } } - this.state = 2015; + this.state = 1881; localContext._right = this.queryTerm(3); } break; @@ -7646,11 +7389,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2016; + this.state = 1882; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2017; + this.state = 1883; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7660,26 +7403,26 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2018; + this.state = 1884; this.setQuantifier(); } } - this.state = 2021; + this.state = 1887; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2026; + this.state = 1892; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } } } @@ -7699,9 +7442,10 @@ export class SparkSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 106, SparkSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 98, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2036; + let alternative: number; + this.state = 1917; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7709,41 +7453,83 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 1893; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2028; - this.fromStatement(); - } - break; - case SparkSqlParser.KW_TABLE: - this.enterOuterAlt(localContext, 3); - { - this.state = 2029; - this.match(SparkSqlParser.KW_TABLE); - this.state = 2030; - this.tableName(); - } - break; + this.state = 1894; + this.fromClause(); + this.state = 1896; + this.errorHandler.sync(this); + alternative = 1; + do { + switch (alternative) { + case 1: + { + { + this.state = 1895; + this.fromStatementBody(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 1898; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); + } + break; + case SparkSqlParser.KW_TABLE: + this.enterOuterAlt(localContext, 3); + { + this.state = 1900; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1901; + this.tableName(); + } + break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2031; - this.inlineTable(); + this.state = 1902; + this.match(SparkSqlParser.KW_VALUES); + this.state = 1903; + this.expression(); + this.state = 1908; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1904; + this.match(SparkSqlParser.COMMA); + this.state = 1905; + this.expression(); + } + } + } + this.state = 1910; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + } + this.state = 1911; + this.tableAlias(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2032; + this.state = 1913; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2033; + this.state = 1914; this.query(); - this.state = 2034; + this.state = 1915; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7767,33 +7553,33 @@ export class SparkSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 108, SparkSqlParser.RULE_sortItem); + this.enterRule(localContext, 100, SparkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 1921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2038; + this.state = 1919; this.columnName(); } break; case 2: { - this.state = 2039; + this.state = 1920; this.expression(); } break; } - this.state = 2043; + this.state = 1924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2042; + this.state = 1923; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7806,14 +7592,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2047; + this.state = 1928; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2045; + this.state = 1926; this.match(SparkSqlParser.KW_NULLS); - this.state = 2046; + this.state = 1927; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7842,140 +7628,95 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public fromStatement(): FromStatementContext { - let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatement); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2049; - this.fromClause(); - this.state = 2051; - this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 2050; - this.fromStatementBody(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 2053; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - } - } - 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 fromStatementBody(): FromStatementBodyContext { let localContext = new FromStatementBodyContext(this.context, this.state); - this.enterRule(localContext, 112, SparkSqlParser.RULE_fromStatementBody); + this.enterRule(localContext, 102, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2082; + this.state = 1957; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 1930; this.transformClause(); - this.state = 2057; + this.state = 1932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2056; + this.state = 1931; this.whereClause(); } break; } - this.state = 2059; + this.state = 1934; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2061; + this.state = 1936; this.selectClause(); - this.state = 2065; + this.state = 1940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2062; + this.state = 1937; this.lateralView(); } } } - this.state = 2067; + this.state = 1942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); } - this.state = 2069; + this.state = 1944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2068; + this.state = 1943; this.whereClause(); } break; } - this.state = 2072; + this.state = 1947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2071; + this.state = 1946; this.aggregationClause(); } break; } - this.state = 2075; + this.state = 1950; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2074; + this.state = 1949; this.havingClause(); } break; } - this.state = 2078; + this.state = 1953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 2077; + this.state = 1952; this.windowClause(); } break; } - this.state = 2080; + this.state = 1955; this.queryOrganization(); } break; @@ -7997,79 +7738,79 @@ export class SparkSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 114, SparkSqlParser.RULE_querySpecification); + this.enterRule(localContext, 104, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2128; + this.state = 2003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 1959; this.transformClause(); - this.state = 2086; + this.state = 1961; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2085; + this.state = 1960; this.fromClause(); } break; } - this.state = 2091; + this.state = 1966; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2088; + this.state = 1963; this.lateralView(); } } } - this.state = 2093; + this.state = 1968; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } - this.state = 2095; + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2094; + this.state = 1969; this.whereClause(); } break; } - this.state = 2098; + this.state = 1973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2097; + this.state = 1972; this.aggregationClause(); } break; } - this.state = 2101; + this.state = 1976; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2100; + this.state = 1975; this.havingClause(); } break; } - this.state = 2104; + this.state = 1979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2103; + this.state = 1978; this.windowClause(); } break; @@ -8079,70 +7820,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2106; + this.state = 1981; this.selectClause(); - this.state = 2108; + this.state = 1983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2107; + this.state = 1982; this.fromClause(); } break; } - this.state = 2113; + this.state = 1988; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2110; + this.state = 1985; this.lateralView(); } } } - this.state = 2115; + this.state = 1990; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); } - this.state = 2117; + this.state = 1992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2116; + this.state = 1991; this.whereClause(); } break; } - this.state = 2120; + this.state = 1995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2119; + this.state = 1994; this.aggregationClause(); } break; } - this.state = 2123; + this.state = 1998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2122; + this.state = 1997; this.havingClause(); } break; } - this.state = 2126; + this.state = 2001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2125; + this.state = 2000; this.windowClause(); } break; @@ -8167,300 +7908,678 @@ export class SparkSqlParser extends SQLParserBase { } public transformClause(): TransformClauseContext { let localContext = new TransformClauseContext(this.context, this.state); - this.enterRule(localContext, 116, SparkSqlParser.RULE_transformClause); + this.enterRule(localContext, 106, SparkSqlParser.RULE_transformClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2024; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2130; + this.state = 2005; this.match(SparkSqlParser.KW_SELECT); - this.state = 2131; + this.state = 2006; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2132; + this.state = 2007; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2134; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2133; + this.state = 2008; this.setQuantifier(); } break; } - this.state = 2136; + this.state = 2011; this.expressionSeq(); - this.state = 2137; + this.state = 2012; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2139; + this.state = 2014; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2141; + this.state = 2016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2140; + this.state = 2015; this.setQuantifier(); } break; } - this.state = 2143; + this.state = 2018; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2144; + this.state = 2019; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2146; + this.state = 2021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2145; + this.state = 2020; this.setQuantifier(); } break; } - this.state = 2148; + this.state = 2023; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2152; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2151; + this.state = 2026; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2156; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2154; + this.state = 2029; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2155; + this.state = 2030; localContext._recordWriter = this.stringLit(); } } - this.state = 2158; + this.state = 2033; this.match(SparkSqlParser.KW_USING); - this.state = 2159; + this.state = 2034; localContext._script = this.stringLit(); - this.state = 2172; + this.state = 2047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2160; + this.state = 2035; this.match(SparkSqlParser.KW_AS); - this.state = 2170; + this.state = 2045; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2161; + this.state = 2036; this.identifierSeq(); } break; case 2: { - this.state = 2162; + this.state = 2037; this.colTypeList(); } break; case 3: { { - this.state = 2163; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2166; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { - case 1: - { - this.state = 2164; - this.identifierSeq(); - } - break; - case 2: - { - this.state = 2165; - this.colTypeList(); - } - break; - } - this.state = 2168; - this.match(SparkSqlParser.RIGHT_PAREN); - } + this.state = 2038; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2041; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + case 1: + { + this.state = 2039; + this.identifierSeq(); + } + break; + case 2: + { + this.state = 2040; + this.colTypeList(); + } + break; + } + this.state = 2043; + this.match(SparkSqlParser.RIGHT_PAREN); + } + } + break; + } + } + break; + } + this.state = 2050; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + case 1: + { + this.state = 2049; + localContext._outRowFormat = this.rowFormat(); + } + break; + } + this.state = 2054; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + case 1: + { + this.state = 2052; + this.match(SparkSqlParser.KW_RECORDREADER); + this.state = 2053; + localContext._recordReader = this.stringLit(); + } + 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 selectClause(): SelectClauseContext { + let localContext = new SelectClauseContext(this.context, this.state); + this.enterRule(localContext, 108, SparkSqlParser.RULE_selectClause); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 2056; + this.match(SparkSqlParser.KW_SELECT); + this.state = 2060; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2057; + localContext._hint = this.hint(); + localContext._hints.push(localContext._hint); + } + } + } + this.state = 2062; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); + } + this.state = 2064; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + case 1: + { + this.state = 2063; + this.setQuantifier(); + } + break; + } + this.state = 2066; + this.namedExpressionSeq(); + } + } + 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 setClause(): SetClauseContext { + let localContext = new SetClauseContext(this.context, this.state); + this.enterRule(localContext, 110, SparkSqlParser.RULE_setClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2068; + this.match(SparkSqlParser.KW_SET); + this.state = 2069; + this.assignmentList(); + } + } + 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 matchedClause(): MatchedClauseContext { + let localContext = new MatchedClauseContext(this.context, this.state); + this.enterRule(localContext, 112, SparkSqlParser.RULE_matchedClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2071; + this.match(SparkSqlParser.KW_WHEN); + this.state = 2072; + this.match(SparkSqlParser.KW_MATCHED); + this.state = 2075; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 14) { + { + this.state = 2073; + this.match(SparkSqlParser.KW_AND); + this.state = 2074; + localContext._matchedCond = this.booleanExpression(0); + } + } + + this.state = 2077; + this.match(SparkSqlParser.KW_THEN); + this.state = 2085; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DELETE: + { + this.state = 2078; + this.match(SparkSqlParser.KW_DELETE); + } + break; + case SparkSqlParser.KW_UPDATE: + { + this.state = 2079; + this.match(SparkSqlParser.KW_UPDATE); + this.state = 2080; + this.match(SparkSqlParser.KW_SET); + this.state = 2083; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.ASTERISK: + { + this.state = 2081; + this.match(SparkSqlParser.ASTERISK); + } + break; + 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_LIFECYCLE: + 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.state = 2082; + this.assignmentList(); } break; + default: + throw new antlr.NoViableAltException(this); } } break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2175; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { - case 1: - { - this.state = 2174; - localContext._outRowFormat = this.rowFormat(); - } - break; - } - this.state = 2179; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { - case 1: - { - this.state = 2177; - this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2178; - localContext._recordReader = this.stringLit(); - } - 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 selectClause(): SelectClauseContext { - let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 118, SparkSqlParser.RULE_selectClause); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2181; - this.match(SparkSqlParser.KW_SELECT); - this.state = 2185; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 2182; - localContext._hint = this.hint(); - localContext._hints.push(localContext._hint); - } - } - } - this.state = 2187; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); - } - this.state = 2189; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { - case 1: - { - this.state = 2188; - this.setQuantifier(); - } - break; - } - this.state = 2191; - this.namedExpressionSeq(); - } - } - 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 setClause(): SetClauseContext { - let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 120, SparkSqlParser.RULE_setClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2193; - this.match(SparkSqlParser.KW_SET); - this.state = 2194; - this.assignmentList(); - } - } - 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 matchedClause(): MatchedClauseContext { - let localContext = new MatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 122, SparkSqlParser.RULE_matchedClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2196; - this.match(SparkSqlParser.KW_WHEN); - this.state = 2197; - this.match(SparkSqlParser.KW_MATCHED); - this.state = 2200; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 14) { - { - this.state = 2198; - this.match(SparkSqlParser.KW_AND); - this.state = 2199; - localContext._matchedCond = this.booleanExpression(0); - } - } - - this.state = 2202; - this.match(SparkSqlParser.KW_THEN); - this.state = 2203; - this.matchedAction(); } } catch (re) { @@ -8479,44 +8598,44 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedClause(): NotMatchedClauseContext { let localContext = new NotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 124, SparkSqlParser.RULE_notMatchedClause); + this.enterRule(localContext, 114, SparkSqlParser.RULE_notMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2087; this.match(SparkSqlParser.KW_WHEN); - this.state = 2206; + this.state = 2088; this.match(SparkSqlParser.KW_NOT); - this.state = 2207; + this.state = 2089; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2210; + this.state = 2092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2208; + this.state = 2090; this.match(SparkSqlParser.KW_BY); - this.state = 2209; + this.state = 2091; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2214; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2212; + this.state = 2094; this.match(SparkSqlParser.KW_AND); - this.state = 2213; + this.state = 2095; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2216; + this.state = 2098; this.match(SparkSqlParser.KW_THEN); - this.state = 2217; + this.state = 2099; this.notMatchedAction(); } } @@ -8536,89 +8655,57 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceClause(): NotMatchedBySourceClauseContext { let localContext = new NotMatchedBySourceClauseContext(this.context, this.state); - this.enterRule(localContext, 126, SparkSqlParser.RULE_notMatchedBySourceClause); + this.enterRule(localContext, 116, SparkSqlParser.RULE_notMatchedBySourceClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2101; this.match(SparkSqlParser.KW_WHEN); - this.state = 2220; + this.state = 2102; this.match(SparkSqlParser.KW_NOT); - this.state = 2221; + this.state = 2103; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2222; + this.state = 2104; this.match(SparkSqlParser.KW_BY); - this.state = 2223; + this.state = 2105; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2226; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2224; + this.state = 2106; this.match(SparkSqlParser.KW_AND); - this.state = 2225; + this.state = 2107; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2228; + this.state = 2110; this.match(SparkSqlParser.KW_THEN); - this.state = 2229; - this.notMatchedBySourceAction(); - } - } - 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 matchedAction(): MatchedActionContext { - let localContext = new MatchedActionContext(this.context, this.state); - this.enterRule(localContext, 128, SparkSqlParser.RULE_matchedAction); - try { - this.state = 2238; + this.state = 2115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DELETE: { - this.state = 2231; + this.state = 2111; this.match(SparkSqlParser.KW_DELETE); } break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2232; - this.match(SparkSqlParser.KW_UPDATE); - this.state = 2233; - this.match(SparkSqlParser.KW_SET); - this.state = 2234; - this.match(SparkSqlParser.ASTERISK); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); + case SparkSqlParser.KW_UPDATE: { - this.state = 2235; + this.state = 2112; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2236; + this.state = 2113; this.match(SparkSqlParser.KW_SET); - this.state = 2237; + this.state = 2114; this.assignmentList(); } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -8637,101 +8724,58 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedAction(): NotMatchedActionContext { let localContext = new NotMatchedActionContext(this.context, this.state); - this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedAction); + this.enterRule(localContext, 118, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2258; + this.state = 2135; 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.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2117; this.match(SparkSqlParser.KW_INSERT); - this.state = 2241; + this.state = 2118; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2119; this.match(SparkSqlParser.KW_INSERT); - this.state = 2243; + this.state = 2120; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2244; + this.state = 2121; this.multipartIdentifierList(); - this.state = 2245; + this.state = 2122; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2246; + this.state = 2123; this.match(SparkSqlParser.KW_VALUES); - this.state = 2247; + this.state = 2124; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2248; + this.state = 2125; this.expression(); - this.state = 2253; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { - { - this.state = 2249; - this.match(SparkSqlParser.COMMA); - this.state = 2250; - this.expression(); - } - } - this.state = 2255; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2256; - this.match(SparkSqlParser.RIGHT_PAREN); - } - 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 notMatchedBySourceAction(): NotMatchedBySourceActionContext { - let localContext = new NotMatchedBySourceActionContext(this.context, this.state); - this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedBySourceAction); - try { - this.state = 2264; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_DELETE: - this.enterOuterAlt(localContext, 1); - { - this.state = 2260; - this.match(SparkSqlParser.KW_DELETE); + { + this.state = 2126; + this.match(SparkSqlParser.COMMA); + this.state = 2127; + this.expression(); + } + } + this.state = 2132; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - break; - case SparkSqlParser.KW_UPDATE: - this.enterOuterAlt(localContext, 2); - { - this.state = 2261; - this.match(SparkSqlParser.KW_UPDATE); - this.state = 2262; - this.match(SparkSqlParser.KW_SET); - this.state = 2263; - this.assignmentList(); + this.state = 2133; + this.match(SparkSqlParser.RIGHT_PAREN); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8750,26 +8794,26 @@ export class SparkSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 134, SparkSqlParser.RULE_assignmentList); + this.enterRule(localContext, 120, SparkSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2137; this.assignment(); - this.state = 2271; + this.state = 2142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2267; + this.state = 2138; this.match(SparkSqlParser.COMMA); - this.state = 2268; + this.state = 2139; this.assignment(); } } - this.state = 2273; + this.state = 2144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8791,15 +8835,15 @@ export class SparkSqlParser extends SQLParserBase { } public assignment(): AssignmentContext { let localContext = new AssignmentContext(this.context, this.state); - this.enterRule(localContext, 136, SparkSqlParser.RULE_assignment); + this.enterRule(localContext, 122, SparkSqlParser.RULE_assignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2145; localContext._key = this.multipartIdentifier(); - this.state = 2275; + this.state = 2146; this.match(SparkSqlParser.EQ); - this.state = 2276; + this.state = 2147; localContext._value = this.expression(); } } @@ -8819,13 +8863,13 @@ export class SparkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 138, SparkSqlParser.RULE_whereClause); + this.enterRule(localContext, 124, SparkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2149; this.match(SparkSqlParser.KW_WHERE); - this.state = 2279; + this.state = 2150; this.booleanExpression(0); } } @@ -8845,13 +8889,13 @@ export class SparkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 140, SparkSqlParser.RULE_havingClause); + this.enterRule(localContext, 126, SparkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2152; this.match(SparkSqlParser.KW_HAVING); - this.state = 2282; + this.state = 2153; this.booleanExpression(0); } } @@ -8871,42 +8915,42 @@ export class SparkSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 142, SparkSqlParser.RULE_hint); + this.enterRule(localContext, 128, SparkSqlParser.RULE_hint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; + this.state = 2155; this.match(SparkSqlParser.HENT_START); - this.state = 2285; + this.state = 2156; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2292; + this.state = 2163; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2287; + this.state = 2158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2286; + this.state = 2157; this.match(SparkSqlParser.COMMA); } } - this.state = 2289; + this.state = 2160; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2294; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2295; + this.state = 2166; this.match(SparkSqlParser.HENT_END); } } @@ -8926,47 +8970,47 @@ export class SparkSqlParser extends SQLParserBase { } public hintStatement(): HintStatementContext { let localContext = new HintStatementContext(this.context, this.state); - this.enterRule(localContext, 144, SparkSqlParser.RULE_hintStatement); + this.enterRule(localContext, 130, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2310; + this.state = 2181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2168; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2298; + this.state = 2169; localContext._hintName = this.identifier(); - this.state = 2299; + this.state = 2170; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2300; + this.state = 2171; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2305; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2301; + this.state = 2172; this.match(SparkSqlParser.COMMA); - this.state = 2302; + this.state = 2173; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2307; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2308; + this.state = 2179; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8988,65 +9032,65 @@ export class SparkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 146, SparkSqlParser.RULE_fromClause); + this.enterRule(localContext, 132, SparkSqlParser.RULE_fromClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2183; this.match(SparkSqlParser.KW_FROM); - this.state = 2313; + this.state = 2184; this.relation(); - this.state = 2318; + this.state = 2189; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2314; + this.state = 2185; this.match(SparkSqlParser.COMMA); - this.state = 2315; + this.state = 2186; this.relation(); } } } - this.state = 2320; + this.state = 2191; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } - this.state = 2324; + this.state = 2195; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2321; + this.state = 2192; this.lateralView(); } } } - this.state = 2326; + this.state = 2197; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2328; + this.state = 2199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2327; + this.state = 2198; this.pivotClause(); } break; } - this.state = 2331; + this.state = 2202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2330; + this.state = 2201; this.unPivotClause(); } break; @@ -9067,60 +9111,28 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public functionKind(): FunctionKindContext { - let localContext = new FunctionKindContext(this.context, this.state); - this.enterRule(localContext, 148, SparkSqlParser.RULE_functionKind); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2333; - _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 290 || _la === 331)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - 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 temporalClause(): TemporalClauseContext { let localContext = new TemporalClauseContext(this.context, this.state); - this.enterRule(localContext, 150, SparkSqlParser.RULE_temporalClause); + this.enterRule(localContext, 134, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2349; + this.state = 2221; 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.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2335; + this.state = 2204; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2338; + this.state = 2207; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9129,28 +9141,45 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2339; + this.state = 2208; this.match(SparkSqlParser.KW_AS); - this.state = 2340; + this.state = 2209; this.match(SparkSqlParser.KW_OF); - this.state = 2341; - this.version(); + this.state = 2212; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.INTEGER_VALUE: + { + this.state = 2210; + this.match(SparkSqlParser.INTEGER_VALUE); + } + break; + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 2211; + this.stringLit(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2343; + this.state = 2215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2342; + this.state = 2214; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2345; + this.state = 2217; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9159,11 +9188,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2346; + this.state = 2218; this.match(SparkSqlParser.KW_AS); - this.state = 2347; + this.state = 2219; this.match(SparkSqlParser.KW_OF); - this.state = 2348; + this.state = 2220; localContext._timestamp = this.valueExpression(0); } break; @@ -9185,119 +9214,119 @@ export class SparkSqlParser extends SQLParserBase { } public aggregationClause(): AggregationClauseContext { let localContext = new AggregationClauseContext(this.context, this.state); - this.enterRule(localContext, 152, SparkSqlParser.RULE_aggregationClause); + this.enterRule(localContext, 136, SparkSqlParser.RULE_aggregationClause); let _la: number; try { let alternative: number; - this.state = 2390; + this.state = 2262; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2223; this.match(SparkSqlParser.KW_GROUP); - this.state = 2352; + this.state = 2224; this.match(SparkSqlParser.KW_BY); - this.state = 2353; + this.state = 2225; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2358; + this.state = 2230; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, 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 = 2354; + this.state = 2226; this.match(SparkSqlParser.COMMA); - this.state = 2355; + this.state = 2227; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2360; + this.state = 2232; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2361; + this.state = 2233; this.match(SparkSqlParser.KW_GROUP); - this.state = 2362; + this.state = 2234; this.match(SparkSqlParser.KW_BY); - this.state = 2363; + this.state = 2235; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2368; + this.state = 2240; 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) { { { - this.state = 2364; + this.state = 2236; this.match(SparkSqlParser.COMMA); - this.state = 2365; + this.state = 2237; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2370; + this.state = 2242; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } - this.state = 2388; + this.state = 2260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2371; + this.state = 2243; this.match(SparkSqlParser.KW_WITH); - this.state = 2372; + this.state = 2244; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2373; + this.state = 2245; this.match(SparkSqlParser.KW_WITH); - this.state = 2374; + this.state = 2246; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2375; + this.state = 2247; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2376; + this.state = 2248; this.match(SparkSqlParser.KW_SETS); - this.state = 2377; + this.state = 2249; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2378; + this.state = 2250; this.groupingSet(); - this.state = 2383; + this.state = 2255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2379; + this.state = 2251; this.match(SparkSqlParser.COMMA); - this.state = 2380; + this.state = 2252; this.groupingSet(); } } - this.state = 2385; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2386; + this.state = 2258; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9322,29 +9351,29 @@ export class SparkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 154, SparkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 138, SparkSqlParser.RULE_groupByClause); try { - this.state = 2395; + this.state = 2267; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2392; + this.state = 2264; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2393; + this.state = 2265; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2394; + this.state = 2266; this.expression(); } break; @@ -9366,17 +9395,17 @@ export class SparkSqlParser extends SQLParserBase { } public groupingAnalytics(): GroupingAnalyticsContext { let localContext = new GroupingAnalyticsContext(this.context, this.state); - this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingAnalytics); + this.enterRule(localContext, 140, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2422; + this.state = 2300; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2269; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9385,58 +9414,86 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2398; + this.state = 2270; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2399; + this.state = 2271; this.groupingSet(); - this.state = 2404; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2400; + this.state = 2272; this.match(SparkSqlParser.COMMA); - this.state = 2401; + this.state = 2273; this.groupingSet(); } } - this.state = 2406; + this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2407; + this.state = 2279; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2409; + this.state = 2281; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2410; + this.state = 2282; this.match(SparkSqlParser.KW_SETS); - this.state = 2411; + this.state = 2283; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2412; - this.groupingElement(); - this.state = 2417; + this.state = 2286; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + case 1: + { + this.state = 2284; + this.groupingAnalytics(); + } + break; + case 2: + { + this.state = 2285; + this.groupingSet(); + } + break; + } + this.state = 2295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2413; + this.state = 2288; this.match(SparkSqlParser.COMMA); - this.state = 2414; - this.groupingElement(); + this.state = 2291; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + case 1: + { + this.state = 2289; + this.groupingAnalytics(); + } + break; + case 2: + { + this.state = 2290; + this.groupingSet(); + } + break; } } - this.state = 2419; + } + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2420; + this.state = 2298; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9458,125 +9515,88 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public groupingElement(): GroupingElementContext { - let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingElement); - try { - this.state = 2426; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2424; - this.groupingAnalytics(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2425; - this.groupingSet(); - } - 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 groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 160, SparkSqlParser.RULE_groupingSet); + this.enterRule(localContext, 142, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2448; + this.state = 2322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2428; + this.state = 2302; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2429; + this.state = 2303; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2430; + this.state = 2304; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2445; + this.state = 2319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2433; + this.state = 2307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2431; + this.state = 2305; this.columnName(); } break; case 2: { - this.state = 2432; + this.state = 2306; this.expression(); } break; } - this.state = 2442; + this.state = 2316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2435; + this.state = 2309; this.match(SparkSqlParser.COMMA); - this.state = 2438; + this.state = 2312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2436; + this.state = 2310; this.columnName(); } break; case 2: { - this.state = 2437; + this.state = 2311; this.expression(); } break; } } } - this.state = 2444; + this.state = 2318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2447; + this.state = 2321; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9598,48 +9618,48 @@ export class SparkSqlParser extends SQLParserBase { } public pivotClause(): PivotClauseContext { let localContext = new PivotClauseContext(this.context, this.state); - this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotClause); + this.enterRule(localContext, 144, SparkSqlParser.RULE_pivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2324; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2451; + this.state = 2325; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2452; + this.state = 2326; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2453; + this.state = 2327; this.match(SparkSqlParser.KW_FOR); - this.state = 2454; + this.state = 2328; this.pivotColumn(); - this.state = 2455; + this.state = 2329; this.match(SparkSqlParser.KW_IN); - this.state = 2456; + this.state = 2330; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2457; + this.state = 2331; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2462; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2458; + this.state = 2332; this.match(SparkSqlParser.COMMA); - this.state = 2459; + this.state = 2333; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2464; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2465; + this.state = 2339; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2466; + this.state = 2340; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9659,10 +9679,10 @@ export class SparkSqlParser extends SQLParserBase { } public pivotColumn(): PivotColumnContext { let localContext = new PivotColumnContext(this.context, this.state); - this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotColumn); + this.enterRule(localContext, 146, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2480; + this.state = 2354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10010,7 +10030,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2342; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10018,29 +10038,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2469; + this.state = 2343; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2470; + this.state = 2344; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2475; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2471; + this.state = 2345; this.match(SparkSqlParser.COMMA); - this.state = 2472; + this.state = 2346; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2477; + this.state = 2351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2478; + this.state = 2352; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10064,128 +10084,33 @@ export class SparkSqlParser extends SQLParserBase { } public pivotValue(): PivotValueContext { let localContext = new PivotValueContext(this.context, this.state); - this.enterRule(localContext, 166, SparkSqlParser.RULE_pivotValue); + this.enterRule(localContext, 148, SparkSqlParser.RULE_pivotValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2356; this.expression(); - this.state = 2487; + this.state = 2361; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2484; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { - case 1: - { - this.state = 2483; - this.match(SparkSqlParser.KW_AS); - } - break; - } - this.state = 2486; - this.identifier(); - } - } - - } - } - 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 unPivotClause(): UnPivotClauseContext { - let localContext = new UnPivotClauseContext(this.context, this.state); - this.enterRule(localContext, 168, SparkSqlParser.RULE_unPivotClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2489; - this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2491; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 104 || _la === 141) { - { - this.state = 2490; - localContext._nullOperator = this.unPivotNullClause(); - } - } - - this.state = 2493; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2494; - localContext._operator = this.unPivotOperator(); - this.state = 2495; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2500; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { - case 1: - { - this.state = 2497; + this.state = 2358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2496; - this.match(SparkSqlParser.KW_AS); - } - break; - } - this.state = 2499; - this.identifier(); - } - 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 unPivotNullClause(): UnPivotNullClauseContext { - let localContext = new UnPivotNullClauseContext(this.context, this.state); - this.enterRule(localContext, 170, SparkSqlParser.RULE_unPivotNullClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2502; - _la = this.tokenStream.LA(1); - if(!(_la === 104 || _la === 141)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 2357; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2360; + this.identifier(); + } } - this.state = 2503; - this.match(SparkSqlParser.KW_NULLS); + } } catch (re) { @@ -10202,13 +10127,37 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public unPivotOperator(): UnPivotOperatorContext { - let localContext = new UnPivotOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, SparkSqlParser.RULE_unPivotOperator); + public unPivotClause(): UnPivotClauseContext { + let localContext = new UnPivotClauseContext(this.context, this.state); + this.enterRule(localContext, 150, SparkSqlParser.RULE_unPivotClause); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2363; + this.match(SparkSqlParser.KW_UNPIVOT); + this.state = 2366; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 104 || _la === 141) { + { + this.state = 2364; + _la = this.tokenStream.LA(1); + if(!(_la === 104 || _la === 141)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2365; + this.match(SparkSqlParser.KW_NULLS); + } + } + + this.state = 2368; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2371; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10555,19 +10504,41 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2505; + this.state = 2369; this.unPivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2506; + this.state = 2370; this.unPivotMultiValueColumnClause(); } break; default: throw new antlr.NoViableAltException(this); } + this.state = 2373; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2378; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + case 1: + { + this.state = 2375; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + case 1: + { + this.state = 2374; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2377; + this.identifier(); + } + break; + } } } catch (re) { @@ -10586,42 +10557,42 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotSingleValueColumnClause(): UnPivotSingleValueColumnClauseContext { let localContext = new UnPivotSingleValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 174, SparkSqlParser.RULE_unPivotSingleValueColumnClause); + this.enterRule(localContext, 152, SparkSqlParser.RULE_unPivotSingleValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; - this.unPivotValueColumn(); - this.state = 2510; + this.state = 2380; + this.identifier(); + this.state = 2381; this.match(SparkSqlParser.KW_FOR); - this.state = 2511; - this.unPivotNameColumn(); - this.state = 2512; + this.state = 2382; + this.identifier(); + this.state = 2383; this.match(SparkSqlParser.KW_IN); - this.state = 2513; + this.state = 2384; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2514; + this.state = 2385; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); - this.state = 2519; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2515; + this.state = 2386; this.match(SparkSqlParser.COMMA); - this.state = 2516; + this.state = 2387; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); } } - this.state = 2521; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2522; + this.state = 2393; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10641,64 +10612,64 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotMultiValueColumnClause(): UnPivotMultiValueColumnClauseContext { let localContext = new UnPivotMultiValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 176, SparkSqlParser.RULE_unPivotMultiValueColumnClause); + this.enterRule(localContext, 154, SparkSqlParser.RULE_unPivotMultiValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2524; + this.state = 2395; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2525; - localContext._unPivotValueColumn = this.unPivotValueColumn(); - localContext._unPivotValueColumns.push(localContext._unPivotValueColumn); - this.state = 2530; + this.state = 2396; + localContext._identifier = this.identifier(); + localContext._unPivotValueColumns.push(localContext._identifier); + this.state = 2401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2526; + this.state = 2397; this.match(SparkSqlParser.COMMA); - this.state = 2527; - localContext._unPivotValueColumn = this.unPivotValueColumn(); - localContext._unPivotValueColumns.push(localContext._unPivotValueColumn); + this.state = 2398; + localContext._identifier = this.identifier(); + localContext._unPivotValueColumns.push(localContext._identifier); } } - this.state = 2532; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2533; + this.state = 2404; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2534; + this.state = 2405; this.match(SparkSqlParser.KW_FOR); - this.state = 2535; - this.unPivotNameColumn(); - this.state = 2536; + this.state = 2406; + this.identifier(); + this.state = 2407; this.match(SparkSqlParser.KW_IN); - this.state = 2537; + this.state = 2408; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2538; + this.state = 2409; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); - this.state = 2543; + this.state = 2414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2539; + this.state = 2410; this.match(SparkSqlParser.COMMA); - this.state = 2540; + this.state = 2411; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); } } - this.state = 2545; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2546; + this.state = 2417; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10718,42 +10689,52 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotColumnSet(): UnPivotColumnSetContext { let localContext = new UnPivotColumnSetContext(this.context, this.state); - this.enterRule(localContext, 178, SparkSqlParser.RULE_unPivotColumnSet); + this.enterRule(localContext, 156, SparkSqlParser.RULE_unPivotColumnSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2419; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2549; - localContext._unPivotColumn = this.unPivotColumn(); - localContext._unPivotColumns.push(localContext._unPivotColumn); - this.state = 2554; + this.state = 2420; + localContext._multipartIdentifier = this.multipartIdentifier(); + localContext._unPivotColumns.push(localContext._multipartIdentifier); + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2550; + this.state = 2421; this.match(SparkSqlParser.COMMA); - this.state = 2551; - localContext._unPivotColumn = this.unPivotColumn(); - localContext._unPivotColumns.push(localContext._unPivotColumn); + this.state = 2422; + localContext._multipartIdentifier = this.multipartIdentifier(); + localContext._unPivotColumns.push(localContext._multipartIdentifier); } } - this.state = 2556; + this.state = 2427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2557; + this.state = 2428; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2559; + this.state = 2433; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2558; - this.unPivotAlias(); + this.state = 2430; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { + case 1: + { + this.state = 2429; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2432; + this.identifier(); } } @@ -10773,131 +10754,35 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public unPivotValueColumn(): UnPivotValueColumnContext { - let localContext = new UnPivotValueColumnContext(this.context, this.state); - this.enterRule(localContext, 180, SparkSqlParser.RULE_unPivotValueColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2561; - this.identifier(); - } - } - 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 unPivotNameColumn(): UnPivotNameColumnContext { - let localContext = new UnPivotNameColumnContext(this.context, this.state); - this.enterRule(localContext, 182, SparkSqlParser.RULE_unPivotNameColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2563; - this.identifier(); - } - } - 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 unPivotColumnAndAlias(): UnPivotColumnAndAliasContext { let localContext = new UnPivotColumnAndAliasContext(this.context, this.state); - this.enterRule(localContext, 184, SparkSqlParser.RULE_unPivotColumnAndAlias); + this.enterRule(localContext, 158, SparkSqlParser.RULE_unPivotColumnAndAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; - this.unPivotColumn(); - this.state = 2567; + this.state = 2435; + this.multipartIdentifier(); + this.state = 2440; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2566; - this.unPivotAlias(); + this.state = 2437; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + case 1: + { + this.state = 2436; + this.match(SparkSqlParser.KW_AS); + } + 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 unPivotColumn(): UnPivotColumnContext { - let localContext = new UnPivotColumnContext(this.context, this.state); - this.enterRule(localContext, 186, SparkSqlParser.RULE_unPivotColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2569; - this.multipartIdentifier(); - } - } - 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 unPivotAlias(): UnPivotAliasContext { - let localContext = new UnPivotAliasContext(this.context, this.state); - this.enterRule(localContext, 188, SparkSqlParser.RULE_unPivotAlias); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2572; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { - case 1: - { - this.state = 2571; - this.match(SparkSqlParser.KW_AS); + this.state = 2439; + this.identifier(); } - break; } - this.state = 2574; - this.identifier(); + } } catch (re) { @@ -10916,15 +10801,15 @@ export class SparkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 190, SparkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 160, SparkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2442; this.match(SparkSqlParser.KW_IF); - this.state = 2577; + this.state = 2443; this.match(SparkSqlParser.KW_NOT); - this.state = 2578; + this.state = 2444; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10944,13 +10829,13 @@ export class SparkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 192, SparkSqlParser.RULE_ifExists); + this.enterRule(localContext, 162, SparkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2446; this.match(SparkSqlParser.KW_IF); - this.state = 2581; + this.state = 2447; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10970,96 +10855,96 @@ export class SparkSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_lateralView); + this.enterRule(localContext, 164, SparkSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2449; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2584; + this.state = 2450; this.match(SparkSqlParser.KW_VIEW); - this.state = 2586; + this.state = 2452; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2585; + this.state = 2451; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2588; + this.state = 2454; this.viewName(); - this.state = 2589; + this.state = 2455; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2598; + this.state = 2464; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2590; + this.state = 2456; this.expression(); - this.state = 2595; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2591; + this.state = 2457; this.match(SparkSqlParser.COMMA); - this.state = 2592; + this.state = 2458; this.expression(); } } - this.state = 2597; + this.state = 2463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2600; + this.state = 2466; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2601; + this.state = 2467; this.tableAlias(); - this.state = 2613; + this.state = 2479; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2603; + this.state = 2469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2602; + this.state = 2468; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2605; + this.state = 2471; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2610; + this.state = 2476; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, 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 = 2606; + this.state = 2472; this.match(SparkSqlParser.COMMA); - this.state = 2607; + this.state = 2473; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2612; + this.state = 2478; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); } } break; @@ -11082,12 +10967,12 @@ export class SparkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 166, SparkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2481; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11114,106 +10999,80 @@ export class SparkSqlParser extends SQLParserBase { } public relation(): RelationContext { let localContext = new RelationContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_relation); + this.enterRule(localContext, 168, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2628; + this.state = 2496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2483; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2619; + this.state = 2485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2618; + this.state = 2484; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2621; + this.state = 2487; this.relationPrimary(); - this.state = 2625; + this.state = 2493; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, 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 = 2622; - this.relationExtension(); + this.state = 2491; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_ANTI: + case SparkSqlParser.KW_CROSS: + case SparkSqlParser.KW_FULL: + case SparkSqlParser.KW_INNER: + case SparkSqlParser.KW_JOIN: + case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_NATURAL: + case SparkSqlParser.KW_RIGHT: + case SparkSqlParser.KW_SEMI: + { + this.state = 2488; + this.joinRelation(); + } + break; + case SparkSqlParser.KW_PIVOT: + { + this.state = 2489; + this.pivotClause(); + } + break; + case SparkSqlParser.KW_UNPIVOT: + { + this.state = 2490; + this.unPivotClause(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } - } - this.state = 2627; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); - } - } - 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 relationExtension(): RelationExtensionContext { - let localContext = new RelationExtensionContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_relationExtension); - try { - this.state = 2633; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_ANTI: - case SparkSqlParser.KW_CROSS: - case SparkSqlParser.KW_FULL: - case SparkSqlParser.KW_INNER: - case SparkSqlParser.KW_JOIN: - case SparkSqlParser.KW_LEFT: - case SparkSqlParser.KW_NATURAL: - case SparkSqlParser.KW_RIGHT: - case SparkSqlParser.KW_SEMI: - this.enterOuterAlt(localContext, 1); - { - this.state = 2630; - this.joinRelation(); - } - break; - case SparkSqlParser.KW_PIVOT: - this.enterOuterAlt(localContext, 2); - { - this.state = 2631; - this.pivotClause(); - } - break; - case SparkSqlParser.KW_UNPIVOT: - this.enterOuterAlt(localContext, 3); - { - this.state = 2632; - this.unPivotClause(); + } + this.state = 2495; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + } } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -11232,9 +11091,9 @@ export class SparkSqlParser extends SQLParserBase { } public joinRelation(): JoinRelationContext { let localContext = new JoinRelationContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_joinRelation); + this.enterRule(localContext, 170, SparkSqlParser.RULE_joinRelation); try { - this.state = 2652; + this.state = 2515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11248,29 +11107,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2635; + this.state = 2498; this.joinType(); } - this.state = 2636; + this.state = 2499; this.match(SparkSqlParser.KW_JOIN); - this.state = 2638; + this.state = 2501; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2637; + this.state = 2500; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2640; + this.state = 2503; localContext._right = this.relationPrimary(); - this.state = 2642; + this.state = 2505; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2641; + this.state = 2504; this.joinCriteria(); } break; @@ -11280,23 +11139,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2644; + this.state = 2507; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2645; + this.state = 2508; this.joinType(); - this.state = 2646; + this.state = 2509; this.match(SparkSqlParser.KW_JOIN); - this.state = 2648; + this.state = 2511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2647; + this.state = 2510; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2650; + this.state = 2513; localContext._right = this.relationPrimary(); } break; @@ -11320,21 +11179,21 @@ export class SparkSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_joinType); + this.enterRule(localContext, 172, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2678; + this.state = 2533; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2655; + this.state = 2518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2654; + this.state = 2517; this.match(SparkSqlParser.KW_INNER); } } @@ -11344,21 +11203,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2657; + this.state = 2520; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2658; + this.state = 2521; this.match(SparkSqlParser.KW_LEFT); - this.state = 2660; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2659; + this.state = 2522; this.match(SparkSqlParser.KW_OUTER); } } @@ -11368,69 +11227,49 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2663; + this.state = 2526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2662; + this.state = 2525; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2665; - this.match(SparkSqlParser.KW_SEMI); + this.state = 2528; + _la = this.tokenStream.LA(1); + if(!(_la === 15 || _la === 264)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2666; - this.match(SparkSqlParser.KW_RIGHT); - this.state = 2668; - this.errorHandler.sync(this); + this.state = 2529; _la = this.tokenStream.LA(1); - if (_la === 211) { - { - this.state = 2667; - this.match(SparkSqlParser.KW_OUTER); - } + if(!(_la === 124 || _la === 250)) { + this.errorHandler.recoverInline(this); } - + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 2670; - this.match(SparkSqlParser.KW_FULL); - this.state = 2672; + this.state = 2531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2671; + this.state = 2530; this.match(SparkSqlParser.KW_OUTER); } } - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 2675; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 161) { - { - this.state = 2674; - this.match(SparkSqlParser.KW_LEFT); - } - } - - this.state = 2677; - this.match(SparkSqlParser.KW_ANTI); } break; } @@ -11451,26 +11290,26 @@ export class SparkSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 174, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2684; + this.state = 2539; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2535; this.match(SparkSqlParser.KW_ON); - this.state = 2681; + this.state = 2536; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2537; this.match(SparkSqlParser.KW_USING); - this.state = 2683; + this.state = 2538; this.identifierList(); } break; @@ -11494,39 +11333,39 @@ export class SparkSqlParser extends SQLParserBase { } public sample(): SampleContext { let localContext = new SampleContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_sample); + this.enterRule(localContext, 176, SparkSqlParser.RULE_sample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2541; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2687; + this.state = 2542; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2689; + this.state = 2544; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2688; + this.state = 2543; this.sampleMethod(); } } - this.state = 2691; + this.state = 2546; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2696; + this.state = 2551; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2692; + this.state = 2547; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2693; + this.state = 2548; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2694; + this.state = 2549; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2695; + this.state = 2550; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11549,26 +11388,26 @@ export class SparkSqlParser extends SQLParserBase { } public sampleMethod(): SampleMethodContext { let localContext = new SampleMethodContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_sampleMethod); + this.enterRule(localContext, 178, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2722; + this.state = 2577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2698; + this.state = 2553; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2701; + this.state = 2556; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11578,55 +11417,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2702; + this.state = 2557; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2703; + this.state = 2558; this.expression(); - this.state = 2704; + this.state = 2559; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2706; + this.state = 2561; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2707; + this.state = 2562; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2708; + this.state = 2563; this.match(SparkSqlParser.KW_OUT); - this.state = 2709; + this.state = 2564; this.match(SparkSqlParser.KW_OF); - this.state = 2710; + this.state = 2565; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2719; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2711; + this.state = 2566; this.match(SparkSqlParser.KW_ON); - this.state = 2717; + this.state = 2572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2712; + this.state = 2567; this.identifier(); } break; case 2: { - this.state = 2713; + this.state = 2568; this.qualifiedName(); - this.state = 2714; + this.state = 2569; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2715; + this.state = 2570; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11639,7 +11478,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2721; + this.state = 2576; localContext._bytes = this.expression(); } break; @@ -11661,15 +11500,15 @@ export class SparkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_identifierList); + this.enterRule(localContext, 180, SparkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2579; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2725; + this.state = 2580; this.identifierSeq(); - this.state = 2726; + this.state = 2581; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11689,32 +11528,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 182, SparkSqlParser.RULE_identifierSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2583; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2733; + this.state = 2588; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2729; + this.state = 2584; this.match(SparkSqlParser.COMMA); - this.state = 2730; + this.state = 2585; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2735; + this.state = 2590; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); } } } @@ -11734,32 +11573,32 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifierList(): OrderedIdentifierListContext { let localContext = new OrderedIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_orderedIdentifierList); + this.enterRule(localContext, 184, SparkSqlParser.RULE_orderedIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2591; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2737; + this.state = 2592; this.orderedIdentifier(); - this.state = 2742; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2738; + this.state = 2593; this.match(SparkSqlParser.COMMA); - this.state = 2739; + this.state = 2594; this.orderedIdentifier(); } } - this.state = 2744; + this.state = 2599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2745; + this.state = 2600; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11779,19 +11618,19 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifier(): OrderedIdentifierContext { let localContext = new OrderedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_orderedIdentifier); + this.enterRule(localContext, 186, SparkSqlParser.RULE_orderedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2602; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2749; + this.state = 2604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2748; + this.state = 2603; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11822,32 +11661,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierCommentList(): IdentifierCommentListContext { let localContext = new IdentifierCommentListContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierCommentList); + this.enterRule(localContext, 188, SparkSqlParser.RULE_identifierCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2606; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2752; + this.state = 2607; this.identifierComment(); - this.state = 2757; + this.state = 2612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2753; + this.state = 2608; this.match(SparkSqlParser.COMMA); - this.state = 2754; + this.state = 2609; this.identifierComment(); } } - this.state = 2759; + this.state = 2614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2760; + this.state = 2615; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11867,20 +11706,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifierComment(): IdentifierCommentContext { let localContext = new IdentifierCommentContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_identifierComment); + this.enterRule(localContext, 190, SparkSqlParser.RULE_identifierComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2617; this.columnNameCreate(); - this.state = 2764; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2763; - this.commentSpec(); + this.state = 2618; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 2619; + localContext._comment = this.stringLit(); } } @@ -11902,167 +11743,176 @@ export class SparkSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 192, SparkSqlParser.RULE_relationPrimary); + let _la: number; try { - this.state = 2797; + let alternative: number; + this.state = 2677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2766; + this.state = 2622; this.tableName(); } break; case 2: { - this.state = 2767; + this.state = 2623; this.viewName(); } break; case 3: { - this.state = 2768; + this.state = 2624; this.identifierReference(); } break; } - this.state = 2772; + this.state = 2628; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2771; + this.state = 2627; this.temporalClause(); } break; } - this.state = 2775; + this.state = 2631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2774; + this.state = 2630; this.sample(); } break; } - this.state = 2777; + this.state = 2633; this.tableAlias(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2779; + this.state = 2635; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2780; + this.state = 2636; this.query(); - this.state = 2781; + this.state = 2637; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2783; + this.state = 2639; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2782; + this.state = 2638; this.sample(); } break; } - this.state = 2785; + this.state = 2641; this.tableAlias(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2787; + this.state = 2643; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2788; + this.state = 2644; this.relation(); - this.state = 2789; + this.state = 2645; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2791; + this.state = 2647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2790; + this.state = 2646; this.sample(); } break; } - this.state = 2793; + this.state = 2649; this.tableAlias(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2795; - this.inlineTable(); + this.state = 2651; + this.match(SparkSqlParser.KW_VALUES); + this.state = 2652; + this.expression(); + this.state = 2657; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2653; + this.match(SparkSqlParser.COMMA); + this.state = 2654; + this.expression(); + } + } + } + this.state = 2659; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + } + this.state = 2660; + this.tableAlias(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2796; - this.functionTable(); - } - 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 inlineTable(): InlineTableContext { - let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_inlineTable); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2799; - this.match(SparkSqlParser.KW_VALUES); - this.state = 2800; - this.expression(); - this.state = 2805; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { + this.state = 2662; + this.functionName(); + this.state = 2663; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2672; + 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2801; - this.match(SparkSqlParser.COMMA); - this.state = 2802; - this.expression(); + this.state = 2664; + this.functionTableArgument(); + this.state = 2669; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 2665; + this.match(SparkSqlParser.COMMA); + this.state = 2666; + this.functionTableArgument(); + } + } + this.state = 2671; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } } } - this.state = 2807; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - } - this.state = 2808; - this.tableAlias(); + + this.state = 2674; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2675; + this.tableAlias(); + } + break; } } catch (re) { @@ -12081,25 +11931,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 194, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2829; + this.state = 2698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2679; this.match(SparkSqlParser.KW_TABLE); - this.state = 2811; + this.state = 2680; this.tableName(); - this.state = 2813; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2812; + this.state = 2681; this.tableArgumentPartitioning(); } } @@ -12109,20 +11959,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2815; + this.state = 2684; this.match(SparkSqlParser.KW_TABLE); - this.state = 2816; + this.state = 2685; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2817; + this.state = 2686; this.tableName(); - this.state = 2818; + this.state = 2687; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2820; + this.state = 2689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2819; + this.state = 2688; this.tableArgumentPartitioning(); } } @@ -12132,20 +11982,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2691; this.match(SparkSqlParser.KW_TABLE); - this.state = 2823; + this.state = 2692; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2824; + this.state = 2693; this.query(); - this.state = 2825; + this.state = 2694; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2827; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2826; + this.state = 2695; this.tableArgumentPartitioning(); } } @@ -12170,22 +12020,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 196, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2831; + this.state = 2700; this.match(SparkSqlParser.KW_WITH); - this.state = 2832; + this.state = 2701; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2833; + this.state = 2702; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12194,7 +12044,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2834; + this.state = 2703; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12203,38 +12053,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2835; + this.state = 2704; this.match(SparkSqlParser.KW_BY); - this.state = 2848; + this.state = 2717; 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 = 2836; + this.state = 2705; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2837; + this.state = 2706; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2842; + this.state = 2711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2838; + this.state = 2707; this.match(SparkSqlParser.COMMA); - this.state = 2839; + this.state = 2708; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2844; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2845; + this.state = 2714; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12242,7 +12092,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2847; + this.state = 2716; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12254,12 +12104,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2868; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2852; + this.state = 2721; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12268,43 +12118,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2853; + this.state = 2722; this.match(SparkSqlParser.KW_BY); { - this.state = 2866; + this.state = 2728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: { { - this.state = 2854; + this.state = 2723; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2855; - this.sortItem(); - this.state = 2860; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 2856; - this.match(SparkSqlParser.COMMA); - this.state = 2857; - this.sortItem(); - } - } - this.state = 2862; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2863; + this.state = 2724; + this.orderOrSortByClause(); + this.state = 2725; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2865; + this.state = 2727; this.sortItem(); } break; @@ -12331,15 +12165,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 198, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2870; + this.state = 2732; localContext._key = this.identifier(); - this.state = 2871; + this.state = 2733; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2872; + this.state = 2734; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12359,15 +12193,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 200, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2876; + this.state = 2738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2874; + this.state = 2736; this.functionTableSubqueryArgument(); } break; @@ -12716,7 +12550,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2737; this.functionTableNamedArgumentExpression(); } break; @@ -12738,84 +12572,27 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public functionTableArgument(): FunctionTableArgumentContext { - let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableArgument); - try { - this.state = 2880; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2878; - this.functionTableReferenceArgument(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2879; - this.functionArgument(); - } - 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 functionTable(): FunctionTableContext { - let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTable); - let _la: number; + public functionTableArgument(): FunctionTableArgumentContext { + let localContext = new FunctionTableArgumentContext(this.context, this.state); + this.enterRule(localContext, 202, SparkSqlParser.RULE_functionTableArgument); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2882; - this.functionName(); - this.state = 2883; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2892; + this.state = 2742; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 2884; - this.functionTableArgument(); - this.state = 2889; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 2885; - this.match(SparkSqlParser.COMMA); - this.state = 2886; - this.functionTableArgument(); - } - } - this.state = 2891; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + this.state = 2740; + this.functionTableReferenceArgument(); } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2741; + this.functionArgument(); } - } - - this.state = 2894; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2895; - this.tableAlias(); + break; } } catch (re) { @@ -12834,33 +12611,33 @@ export class SparkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 204, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2904; + this.state = 2751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2898; + this.state = 2745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2897; + this.state = 2744; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2900; + this.state = 2747; localContext._alias = this.strictIdentifier(); - this.state = 2902; + this.state = 2749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2901; + this.state = 2748; this.identifierList(); } break; @@ -12886,32 +12663,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 206, SparkSqlParser.RULE_rowFormat); try { - this.state = 2955; + this.state = 2802; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2906; + this.state = 2753; this.match(SparkSqlParser.KW_ROW); - this.state = 2907; + this.state = 2754; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2908; + this.state = 2755; this.match(SparkSqlParser.KW_SERDE); - this.state = 2909; + this.state = 2756; localContext._name = this.stringLit(); - this.state = 2913; + this.state = 2760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2910; + this.state = 2757; this.match(SparkSqlParser.KW_WITH); - this.state = 2911; + this.state = 2758; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2912; + this.state = 2759; localContext._props = this.propertyList(); } break; @@ -12921,35 +12698,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2915; + this.state = 2762; this.match(SparkSqlParser.KW_ROW); - this.state = 2916; + this.state = 2763; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2917; + this.state = 2764; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2927; + this.state = 2774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2918; + this.state = 2765; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2919; + this.state = 2766; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2920; + this.state = 2767; this.match(SparkSqlParser.KW_BY); - this.state = 2921; + this.state = 2768; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2925; + this.state = 2772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2922; + this.state = 2769; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2923; + this.state = 2770; this.match(SparkSqlParser.KW_BY); - this.state = 2924; + this.state = 2771; localContext._escapedBy = this.stringLit(); } break; @@ -12957,70 +12734,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2934; + this.state = 2781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2929; + this.state = 2776; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2930; + this.state = 2777; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2931; + this.state = 2778; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2932; + this.state = 2779; this.match(SparkSqlParser.KW_BY); - this.state = 2933; + this.state = 2780; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2941; + this.state = 2788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2936; + this.state = 2783; this.match(SparkSqlParser.KW_MAP); - this.state = 2937; + this.state = 2784; this.match(SparkSqlParser.KW_KEYS); - this.state = 2938; + this.state = 2785; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2939; + this.state = 2786; this.match(SparkSqlParser.KW_BY); - this.state = 2940; + this.state = 2787; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2947; + this.state = 2794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2943; + this.state = 2790; this.match(SparkSqlParser.KW_LINES); - this.state = 2944; + this.state = 2791; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2945; + this.state = 2792; this.match(SparkSqlParser.KW_BY); - this.state = 2946; + this.state = 2793; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2953; + this.state = 2800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2949; + this.state = 2796; this.match(SparkSqlParser.KW_NULL); - this.state = 2950; + this.state = 2797; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2951; + this.state = 2798; this.match(SparkSqlParser.KW_AS); - this.state = 2952; + this.state = 2799; localContext._nullDefinedAs = this.stringLit(); } break; @@ -13045,26 +12822,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 208, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2957; + this.state = 2804; this.multipartIdentifier(); - this.state = 2962; + this.state = 2809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2958; + this.state = 2805; this.match(SparkSqlParser.COMMA); - this.state = 2959; + this.state = 2806; this.multipartIdentifier(); } } - this.state = 2964; + this.state = 2811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13086,30 +12863,30 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 210, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2812; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2970; + this.state = 2817; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2966; + this.state = 2813; this.match(SparkSqlParser.DOT); - this.state = 2967; + this.state = 2814; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2972; + this.state = 2819; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); } @@ -13131,26 +12908,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 212, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2973; + this.state = 2820; this.multipartIdentifierProperty(); - this.state = 2978; + this.state = 2825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2974; + this.state = 2821; this.match(SparkSqlParser.COMMA); - this.state = 2975; + this.state = 2822; this.multipartIdentifierProperty(); } } - this.state = 2980; + this.state = 2827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13172,21 +12949,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 214, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2981; + this.state = 2828; this.multipartIdentifier(); - this.state = 2984; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2982; + this.state = 2829; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2983; + this.state = 2830; localContext._options = this.propertyList(); } } @@ -13209,23 +12986,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 216, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2836; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2986; + this.state = 2833; localContext._db = this.errorCapturingIdentifier(); - this.state = 2987; + this.state = 2834; this.match(SparkSqlParser.DOT); } break; } - this.state = 2991; + this.state = 2838; localContext._table = this.errorCapturingIdentifier(); } } @@ -13245,23 +13022,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 218, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2996; + this.state = 2843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2993; + this.state = 2840; localContext._db = this.errorCapturingIdentifier(); - this.state = 2994; + this.state = 2841; this.match(SparkSqlParser.DOT); } break; } - this.state = 2998; + this.state = 2845; localContext._view = this.errorCapturingIdentifier(); } } @@ -13281,42 +13058,42 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 220, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3002; + this.state = 2849; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { - this.state = 3000; + this.state = 2847; this.columnName(); } break; case 2: { - this.state = 3001; + this.state = 2848; this.expression(); } break; } - this.state = 3011; + this.state = 2858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3005; + this.state = 2852; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3004; + this.state = 2851; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 3009; + this.state = 2856; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13663,13 +13440,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3007; + this.state = 2854; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 3008; + this.state = 2855; this.identifierList(); } break; @@ -13697,28 +13474,28 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 222, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3013; + this.state = 2860; this.namedExpression(); - this.state = 3018; + this.state = 2865; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3014; + this.state = 2861; this.match(SparkSqlParser.COMMA); - this.state = 3015; + this.state = 2862; this.namedExpression(); } } } - this.state = 3020; + this.state = 2867; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); } @@ -13740,34 +13517,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 224, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 2868; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3022; + this.state = 2869; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3027; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3023; + this.state = 2870; this.match(SparkSqlParser.COMMA); - this.state = 3024; + this.state = 2871; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3029; + this.state = 2876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3030; + this.state = 2877; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13787,22 +13564,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 226, SparkSqlParser.RULE_partitionField); try { - this.state = 3034; + this.state = 2881; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3032; + this.state = 2879; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3033; + this.state = 2880; this.columnType(); } break; @@ -13824,45 +13601,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 228, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3049; + this.state = 2896; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 2883; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3037; + this.state = 2884; localContext._transformName = this.identifier(); - this.state = 3038; + this.state = 2885; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3039; + this.state = 2886; this.transformArgument(); - this.state = 3044; + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3040; + this.state = 2887; this.match(SparkSqlParser.COMMA); - this.state = 3041; + this.state = 2888; this.transformArgument(); } } - this.state = 3046; + this.state = 2893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3047; + this.state = 2894; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13884,22 +13661,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 230, SparkSqlParser.RULE_transformArgument); try { - this.state = 3053; + this.state = 2900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3051; + this.state = 2898; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3052; + this.state = 2899; this.constant(); } break; @@ -13921,11 +13698,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 232, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3055; + this.state = 2902; this.booleanExpression(0); } } @@ -13945,15 +13722,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 234, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 2904; localContext._key = this.identifier(); - this.state = 3058; + this.state = 2905; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3059; + this.state = 2906; localContext._value = this.expression(); } } @@ -13973,22 +13750,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 236, SparkSqlParser.RULE_functionArgument); try { - this.state = 3063; + this.state = 2910; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3061; + this.state = 2908; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3062; + this.state = 2909; this.namedArgumentExpression(); } break; @@ -14010,26 +13787,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 238, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3065; + this.state = 2912; this.expression(); - this.state = 3070; + this.state = 2917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3066; + this.state = 2913; this.match(SparkSqlParser.COMMA); - this.state = 3067; + this.state = 2914; this.expression(); } } - this.state = 3072; + this.state = 2919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14061,19 +13838,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 276; - this.enterRecursionRule(localContext, 276, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 240; + this.enterRecursionRule(localContext, 240, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 2932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 3074; + this.state = 2921; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14082,32 +13859,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3075; + this.state = 2922; this.booleanExpression(5); } break; case 2: { - this.state = 3076; + this.state = 2923; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3077; + this.state = 2924; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3078; + this.state = 2925; this.query(); - this.state = 3079; + this.state = 2926; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3081; + this.state = 2928; this.valueExpression(0); - this.state = 3083; + this.state = 2930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: { - this.state = 3082; + this.state = 2929; this.predicate(); } break; @@ -14116,7 +13893,7 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3095; + this.state = 2942; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -14126,7 +13903,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3093; + this.state = 2940; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: @@ -14134,13 +13911,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3087; + this.state = 2934; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3088; + this.state = 2935; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3089; + this.state = 2936; localContext._right = this.booleanExpression(3); } break; @@ -14149,20 +13926,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3090; + this.state = 2937; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3091; + this.state = 2938; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3092; + this.state = 2939; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3097; + this.state = 2944; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); } @@ -14184,111 +13961,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 242, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3180; + this.state = 3027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3099; + this.state = 2946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3098; + this.state = 2945; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3101; + this.state = 2948; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3102; + this.state = 2949; localContext._lower = this.valueExpression(0); - this.state = 3103; + this.state = 2950; this.match(SparkSqlParser.KW_AND); - this.state = 3104; + this.state = 2951; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3107; + this.state = 2954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3106; + this.state = 2953; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3109; + this.state = 2956; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3110; + this.state = 2957; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3111; + this.state = 2958; this.expression(); - this.state = 3116; + this.state = 2963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3112; + this.state = 2959; this.match(SparkSqlParser.COMMA); - this.state = 3113; + this.state = 2960; this.expression(); } } - this.state = 3118; + this.state = 2965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3119; + this.state = 2966; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3122; + this.state = 2969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3121; + this.state = 2968; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3124; + this.state = 2971; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3125; + this.state = 2972; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3126; + this.state = 2973; this.query(); - this.state = 3127; + this.state = 2974; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3130; + this.state = 2977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3129; + this.state = 2976; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3132; + this.state = 2979; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14298,24 +14075,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3133; + this.state = 2980; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3135; + this.state = 2982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3134; + this.state = 2981; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3137; + this.state = 2984; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14325,7 +14102,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3138; + this.state = 2985; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14335,40 +14112,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3152; + this.state = 2999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { - this.state = 3139; + this.state = 2986; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3140; + this.state = 2987; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3141; + this.state = 2988; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3142; + this.state = 2989; this.expression(); - this.state = 3147; + this.state = 2994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3143; + this.state = 2990; this.match(SparkSqlParser.COMMA); - this.state = 3144; + this.state = 2991; this.expression(); } } - this.state = 3149; + this.state = 2996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 2997; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14378,17 +14155,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3155; + this.state = 3002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3154; + this.state = 3001; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3157; + this.state = 3004; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14398,16 +14175,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3158; + this.state = 3005; localContext._pattern = this.valueExpression(0); - this.state = 3161; + this.state = 3008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3159; + this.state = 3006; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3160; + this.state = 3007; localContext._escapeChar = this.stringLit(); } break; @@ -14417,38 +14194,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3163; + this.state = 3010; this.match(SparkSqlParser.KW_IS); - this.state = 3165; + this.state = 3012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3164; + this.state = 3011; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3167; + this.state = 3014; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3168; + this.state = 3015; this.match(SparkSqlParser.KW_IS); - this.state = 3170; + this.state = 3017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3169; + this.state = 3016; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3172; + this.state = 3019; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14463,23 +14240,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3173; + this.state = 3020; this.match(SparkSqlParser.KW_IS); - this.state = 3175; + this.state = 3022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3174; + this.state = 3021; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3177; + this.state = 3024; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3178; + this.state = 3025; this.match(SparkSqlParser.KW_FROM); - this.state = 3179; + this.state = 3026; localContext._right = this.valueExpression(0); } break; @@ -14511,25 +14288,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 244; + this.enterRecursionRule(localContext, 244, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3186; + this.state = 3033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3183; + this.state = 3030; this.primaryExpression(0); } break; case 2: { - this.state = 3184; + this.state = 3031; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14539,13 +14316,13 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3185; + this.state = 3032; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3209; + this.state = 3056; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -14555,7 +14332,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3207; + this.state = 3054; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: @@ -14563,11 +14340,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3188; + this.state = 3035; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3189; + this.state = 3036; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14577,7 +14354,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3190; + this.state = 3037; localContext._right = this.valueExpression(7); } break; @@ -14586,11 +14363,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3191; + this.state = 3038; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3192; + this.state = 3039; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14600,7 +14377,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3193; + this.state = 3040; localContext._right = this.valueExpression(6); } break; @@ -14609,13 +14386,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3194; + this.state = 3041; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3195; + this.state = 3042; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3196; + this.state = 3043; localContext._right = this.valueExpression(5); } break; @@ -14624,13 +14401,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3197; + this.state = 3044; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3198; + this.state = 3045; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3199; + this.state = 3046; localContext._right = this.valueExpression(4); } break; @@ -14639,13 +14416,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3200; + this.state = 3047; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3201; + this.state = 3048; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3202; + this.state = 3049; localContext._right = this.valueExpression(3); } break; @@ -14654,20 +14431,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3203; + this.state = 3050; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3204; + this.state = 3051; this.comparisonOperator(); - this.state = 3205; + this.state = 3052; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3211; + this.state = 3058; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); } @@ -14689,12 +14466,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 246, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3059; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14731,19 +14508,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 248; + this.enterRecursionRule(localContext, 248, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3310; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3215; + this.state = 3062; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14757,7 +14534,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3216; + this.state = 3063; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14767,9 +14544,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3217; + this.state = 3064; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3067; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14784,35 +14561,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3218; + this.state = 3065; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3219; + this.state = 3066; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3222; + this.state = 3069; this.match(SparkSqlParser.COMMA); - this.state = 3223; + this.state = 3070; localContext._unitsAmount = this.valueExpression(0); - this.state = 3224; + this.state = 3071; this.match(SparkSqlParser.COMMA); - this.state = 3225; + this.state = 3072; localContext._timestamp = this.valueExpression(0); - this.state = 3226; + this.state = 3073; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3228; + this.state = 3075; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14822,9 +14599,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3229; + this.state = 3076; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3232; + this.state = 3079; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14839,105 +14616,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3230; + this.state = 3077; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3231; + this.state = 3078; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3234; + this.state = 3081; this.match(SparkSqlParser.COMMA); - this.state = 3235; + this.state = 3082; localContext._startTimestamp = this.valueExpression(0); - this.state = 3236; + this.state = 3083; this.match(SparkSqlParser.COMMA); - this.state = 3237; + this.state = 3084; localContext._endTimestamp = this.valueExpression(0); - this.state = 3238; + this.state = 3085; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3240; + this.state = 3087; this.match(SparkSqlParser.KW_CASE); - this.state = 3242; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3241; + this.state = 3088; this.whenClause(); } } - this.state = 3244; + this.state = 3091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3248; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3246; + this.state = 3093; this.match(SparkSqlParser.KW_ELSE); - this.state = 3247; + this.state = 3094; localContext._elseExpression = this.expression(); } } - this.state = 3250; + this.state = 3097; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3252; + this.state = 3099; this.match(SparkSqlParser.KW_CASE); - this.state = 3253; + this.state = 3100; this.expression(); - this.state = 3255; + this.state = 3102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3254; + this.state = 3101; this.whenClause(); } } - this.state = 3257; + this.state = 3104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3261; + this.state = 3108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3259; + this.state = 3106; this.match(SparkSqlParser.KW_ELSE); - this.state = 3260; + this.state = 3107; localContext._elseExpression = this.expression(); } } - this.state = 3263; + this.state = 3110; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3265; + this.state = 3112; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14947,280 +14724,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3266; + this.state = 3113; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3267; + this.state = 3114; this.expression(); - this.state = 3268; + this.state = 3115; this.match(SparkSqlParser.KW_AS); - this.state = 3269; + this.state = 3116; this.dataType(); - this.state = 3270; + this.state = 3117; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3272; + this.state = 3119; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3273; + this.state = 3120; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3282; + this.state = 3129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3274; + this.state = 3121; this.namedExpression(); - this.state = 3279; + this.state = 3126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3275; + this.state = 3122; this.match(SparkSqlParser.COMMA); - this.state = 3276; + this.state = 3123; this.namedExpression(); } } - this.state = 3281; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3284; + this.state = 3131; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3285; + this.state = 3132; this.match(SparkSqlParser.KW_FIRST); - this.state = 3286; + this.state = 3133; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3287; + this.state = 3134; this.expression(); - this.state = 3290; + this.state = 3137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3288; + this.state = 3135; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3289; + this.state = 3136; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3292; + this.state = 3139; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3294; + this.state = 3141; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3295; + this.state = 3142; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3296; + this.state = 3143; this.expression(); - this.state = 3299; + this.state = 3146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3297; + this.state = 3144; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3298; + this.state = 3145; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3301; + this.state = 3148; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3303; + this.state = 3150; this.match(SparkSqlParser.KW_LAST); - this.state = 3304; + this.state = 3151; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3305; + this.state = 3152; this.expression(); - this.state = 3308; + this.state = 3155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3306; + this.state = 3153; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3307; + this.state = 3154; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3310; + this.state = 3157; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3312; + this.state = 3159; this.match(SparkSqlParser.KW_POSITION); - this.state = 3313; + this.state = 3160; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3161; localContext._substr = this.valueExpression(0); - this.state = 3315; + this.state = 3162; this.match(SparkSqlParser.KW_IN); - this.state = 3316; + this.state = 3163; localContext._str = this.valueExpression(0); - this.state = 3317; + this.state = 3164; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3319; + this.state = 3166; this.constant(); } break; case 13: { - this.state = 3320; + this.state = 3167; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3321; + this.state = 3168; this.qualifiedName(); - this.state = 3322; + this.state = 3169; this.match(SparkSqlParser.DOT); - this.state = 3323; + this.state = 3170; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3325; + this.state = 3172; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3326; + this.state = 3173; this.namedExpression(); - this.state = 3329; + this.state = 3176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3327; + this.state = 3174; this.match(SparkSqlParser.COMMA); - this.state = 3328; + this.state = 3175; this.namedExpression(); } } - this.state = 3331; + this.state = 3178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3333; + this.state = 3180; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3335; + this.state = 3182; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3336; + this.state = 3183; this.query(); - this.state = 3337; + this.state = 3184; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3339; + this.state = 3186; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3340; + this.state = 3187; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3341; + this.state = 3188; this.expression(); - this.state = 3342; + this.state = 3189; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3344; + this.state = 3191; this.functionName(); - this.state = 3345; + this.state = 3192; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3357; + this.state = 3204; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3347; + this.state = 3194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3346; + this.state = 3193; this.setQuantifier(); } break; } - this.state = 3349; + this.state = 3196; this.functionArgument(); - this.state = 3354; + this.state = 3201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3350; + this.state = 3197; this.match(SparkSqlParser.COMMA); - this.state = 3351; + this.state = 3198; this.functionArgument(); } } - this.state = 3356; + this.state = 3203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3359; + this.state = 3206; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3366; + this.state = 3213; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3360; + this.state = 3207; this.match(SparkSqlParser.KW_FILTER); - this.state = 3361; + this.state = 3208; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3362; + this.state = 3209; this.match(SparkSqlParser.KW_WHERE); - this.state = 3363; + this.state = 3210; localContext._where = this.booleanExpression(0); - this.state = 3364; + this.state = 3211; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3370; + this.state = 3217; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3368; + this.state = 3215; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15230,19 +15007,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3369; + this.state = 3216; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3374; + this.state = 3221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3372; + this.state = 3219; this.match(SparkSqlParser.KW_OVER); - this.state = 3373; + this.state = 3220; this.windowSpec(); } break; @@ -15251,79 +15028,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3376; + this.state = 3223; this.identifier(); - this.state = 3377; + this.state = 3224; this.match(SparkSqlParser.ARROW); - this.state = 3378; + this.state = 3225; this.expression(); } break; case 20: { - this.state = 3380; + this.state = 3227; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3381; + this.state = 3228; this.identifier(); - this.state = 3384; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3382; + this.state = 3229; this.match(SparkSqlParser.COMMA); - this.state = 3383; + this.state = 3230; this.identifier(); } } - this.state = 3386; + this.state = 3233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3388; + this.state = 3235; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3389; + this.state = 3236; this.match(SparkSqlParser.ARROW); - this.state = 3390; + this.state = 3237; this.expression(); } break; case 21: { - this.state = 3392; - this.identifier(); + this.state = 3239; + this.columnNamePath(); } break; case 22: { - this.state = 3393; + this.state = 3240; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3394; + this.state = 3241; this.expression(); - this.state = 3395; + this.state = 3242; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3397; + this.state = 3244; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3398; + this.state = 3245; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3399; + this.state = 3246; localContext._field = this.identifier(); - this.state = 3400; + this.state = 3247; this.match(SparkSqlParser.KW_FROM); - this.state = 3401; + this.state = 3248; localContext._source = this.valueExpression(0); - this.state = 3402; + this.state = 3249; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3404; + this.state = 3251; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15332,11 +15109,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3405; + this.state = 3252; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3406; + this.state = 3253; localContext._str = this.valueExpression(0); - this.state = 3407; + this.state = 3254; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15345,14 +15122,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3408; + this.state = 3255; localContext._pos = this.valueExpression(0); - this.state = 3411; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3409; + this.state = 3256; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15361,27 +15138,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3410; + this.state = 3257; localContext._len = this.valueExpression(0); } } - this.state = 3413; + this.state = 3260; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3415; + this.state = 3262; this.match(SparkSqlParser.KW_TRIM); - this.state = 3416; + this.state = 3263; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3418; + this.state = 3265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3417; + this.state = 3264; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15394,59 +15171,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3421; + this.state = 3268; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3420; + this.state = 3267; localContext._trimStr = this.valueExpression(0); } } - this.state = 3423; + this.state = 3270; this.match(SparkSqlParser.KW_FROM); - this.state = 3424; + this.state = 3271; localContext._srcStr = this.valueExpression(0); - this.state = 3425; + this.state = 3272; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3427; + this.state = 3274; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3428; + this.state = 3275; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3429; + this.state = 3276; localContext._input = this.valueExpression(0); - this.state = 3430; + this.state = 3277; this.match(SparkSqlParser.KW_PLACING); - this.state = 3431; + this.state = 3278; localContext._replace = this.valueExpression(0); - this.state = 3432; + this.state = 3279; this.match(SparkSqlParser.KW_FROM); - this.state = 3433; + this.state = 3280; localContext._position = this.valueExpression(0); - this.state = 3436; + this.state = 3283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3434; + this.state = 3281; this.match(SparkSqlParser.KW_FOR); - this.state = 3435; + this.state = 3282; localContext._length = this.valueExpression(0); } } - this.state = 3438; + this.state = 3285; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3440; + this.state = 3287; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15456,52 +15233,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3441; + this.state = 3288; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3442; + this.state = 3289; localContext._percentage = this.valueExpression(0); - this.state = 3443; + this.state = 3290; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3444; + this.state = 3291; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3445; + this.state = 3292; this.match(SparkSqlParser.KW_GROUP); - this.state = 3446; + this.state = 3293; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3447; + this.state = 3294; this.match(SparkSqlParser.KW_ORDER); - this.state = 3448; + this.state = 3295; this.match(SparkSqlParser.KW_BY); - this.state = 3449; + this.state = 3296; this.sortItem(); - this.state = 3450; + this.state = 3297; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3457; + this.state = 3304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3451; + this.state = 3298; this.match(SparkSqlParser.KW_FILTER); - this.state = 3452; + this.state = 3299; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3453; + this.state = 3300; this.match(SparkSqlParser.KW_WHERE); - this.state = 3454; + this.state = 3301; localContext._where = this.booleanExpression(0); - this.state = 3455; + this.state = 3302; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3461; + this.state = 3308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3459; + this.state = 3306; this.match(SparkSqlParser.KW_OVER); - this.state = 3460; + this.state = 3307; this.windowSpec(); } break; @@ -15510,7 +15287,7 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3475; + this.state = 3322; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -15520,7 +15297,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3473; + this.state = 3320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: @@ -15528,15 +15305,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3465; + this.state = 3312; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3466; + this.state = 3313; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3467; + this.state = 3314; localContext._index = this.valueExpression(0); - this.state = 3468; + this.state = 3315; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15545,20 +15322,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3470; + this.state = 3317; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3471; + this.state = 3318; this.match(SparkSqlParser.DOT); - this.state = 3472; + this.state = 3319; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3477; + this.state = 3324; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } @@ -15580,57 +15357,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 250, SparkSqlParser.RULE_literalType); try { - this.state = 3485; + this.state = 3332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3325; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3479; + this.state = 3326; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3480; + this.state = 3327; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3481; + this.state = 3328; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3482; + this.state = 3329; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3483; + this.state = 3330; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3484; + this.state = 3331; localContext._unsupportedType = this.identifier(); } break; @@ -15652,69 +15429,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 252, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3502; + this.state = 3349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3487; + this.state = 3334; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3488; + this.state = 3335; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3489; + this.state = 3336; this.match(SparkSqlParser.COLON); - this.state = 3490; + this.state = 3337; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3491; + this.state = 3338; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3492; + this.state = 3339; this.literalType(); - this.state = 3493; + this.state = 3340; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3495; + this.state = 3342; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3496; + this.state = 3343; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3498; + this.state = 3345; this.errorHandler.sync(this); alternative = 1; do { @@ -15722,7 +15499,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3497; + this.state = 3344; this.stringLit(); } } @@ -15730,7 +15507,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3500; + this.state = 3347; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -15754,12 +15531,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 254, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3351; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15786,12 +15563,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 256, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3506; + this.state = 3353; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15818,12 +15595,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 258, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3355; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15850,12 +15627,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 260, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3510; + this.state = 3357; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15882,24 +15659,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 262, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3359; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3515; + this.state = 3362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3513; + this.state = 3360; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3514; + this.state = 3361; this.errorCapturingUnitToUnitInterval(); } break; @@ -15922,18 +15699,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 264, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3364; localContext._body = this.multiUnitsInterval(); - this.state = 3519; + this.state = 3366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3518; + this.state = 3365; this.unitToUnitInterval(); } break; @@ -15956,12 +15733,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 266, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3524; + this.state = 3371; this.errorHandler.sync(this); alternative = 1; do { @@ -15969,9 +15746,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3521; + this.state = 3368; this.intervalValue(); - this.state = 3522; + this.state = 3369; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15980,7 +15757,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3526; + this.state = 3373; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -16002,24 +15779,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 268, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3375; localContext._body = this.unitToUnitInterval(); - this.state = 3531; + this.state = 3378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3529; + this.state = 3376; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3530; + this.state = 3377; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16042,17 +15819,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 270, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3380; localContext._value = this.intervalValue(); - this.state = 3534; + this.state = 3381; this.unitInUnitToUnit(); - this.state = 3535; + this.state = 3382; this.match(SparkSqlParser.KW_TO); - this.state = 3536; + this.state = 3383; this.unitInUnitToUnit(); } } @@ -16072,17 +15849,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 272, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3538; + this.state = 3385; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16094,25 +15871,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3544; + this.state = 3391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3541; + this.state = 3388; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3542; + this.state = 3389; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3543; + this.state = 3390; this.stringLit(); } break; @@ -16137,12 +15914,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 274, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3546; + this.state = 3393; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16169,12 +15946,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 276, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3395; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16201,24 +15978,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 278, SparkSqlParser.RULE_colPosition); try { - this.state = 3553; + this.state = 3400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3397; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3551; + this.state = 3398; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3552; + this.state = 3399; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16242,218 +16019,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_type); + this.enterRule(localContext, 280, SparkSqlParser.RULE_type); try { - this.state = 3585; + this.state = 3432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3402; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3403; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3557; + this.state = 3404; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3558; + this.state = 3405; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3559; + this.state = 3406; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3560; + this.state = 3407; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3561; + this.state = 3408; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3562; + this.state = 3409; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3563; + this.state = 3410; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3564; + this.state = 3411; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3565; + this.state = 3412; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3566; + this.state = 3413; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3567; + this.state = 3414; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3568; + this.state = 3415; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3569; + this.state = 3416; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3570; + this.state = 3417; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3571; + this.state = 3418; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3572; + this.state = 3419; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3573; + this.state = 3420; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3574; + this.state = 3421; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3575; + this.state = 3422; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3576; + this.state = 3423; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3577; + this.state = 3424; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3578; + this.state = 3425; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3579; + this.state = 3426; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3580; + this.state = 3427; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3581; + this.state = 3428; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3582; + this.state = 3429; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3583; + this.state = 3430; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3584; + this.state = 3431; localContext._unsupportedType = this.identifier(); } break; @@ -16475,71 +16252,87 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 282, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3633; + this.state = 3487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3434; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3588; + this.state = 3435; this.match(SparkSqlParser.LT); - this.state = 3589; + this.state = 3436; this.dataType(); - this.state = 3590; + this.state = 3437; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3439; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3593; + this.state = 3440; this.match(SparkSqlParser.LT); - this.state = 3594; + this.state = 3441; this.dataType(); - this.state = 3595; + this.state = 3442; this.match(SparkSqlParser.COMMA); - this.state = 3596; + this.state = 3443; this.dataType(); - this.state = 3597; + this.state = 3444; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3599; + this.state = 3446; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3606; + this.state = 3460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3600; + this.state = 3447; this.match(SparkSqlParser.LT); - this.state = 3602; + this.state = 3456; 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)) & 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)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3601; - this.complexColTypeList(); + this.state = 3448; + this.complexColType(); + this.state = 3453; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 3449; + this.match(SparkSqlParser.COMMA); + this.state = 3450; + this.complexColType(); + } + } + this.state = 3455; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } - this.state = 3604; + this.state = 3458; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3605; + this.state = 3459; this.match(SparkSqlParser.NEQ); } break; @@ -16551,9 +16344,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3608; + this.state = 3462; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3609; + this.state = 3463; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16562,14 +16355,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3612; + this.state = 3466; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3610; + this.state = 3464; this.match(SparkSqlParser.KW_TO); - this.state = 3611; + this.state = 3465; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16579,9 +16372,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3614; + this.state = 3468; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3615; + this.state = 3469; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16590,14 +16383,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3618; + this.state = 3472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 3616; + this.state = 3470; this.match(SparkSqlParser.KW_TO); - this.state = 3617; + this.state = 3471; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16614,34 +16407,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3620; + this.state = 3474; this.type_(); - this.state = 3631; + this.state = 3485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3621; + this.state = 3475; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3622; + this.state = 3476; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3627; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3623; + this.state = 3477; this.match(SparkSqlParser.COMMA); - this.state = 3624; + this.state = 3478; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3629; + this.state = 3483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3630; + this.state = 3484; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16666,26 +16459,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 284, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3489; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3640; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3636; + this.state = 3490; this.match(SparkSqlParser.COMMA); - this.state = 3637; + this.state = 3491; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3642; + this.state = 3496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16707,30 +16500,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 286, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3497; localContext._name = this.columnNameCreate(); - this.state = 3644; + this.state = 3498; this.dataType(); - this.state = 3648; + this.state = 3502; 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) { { { - this.state = 3645; + this.state = 3499; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3650; + this.state = 3504; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); } } } @@ -16750,26 +16543,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 288, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3505; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3656; + this.state = 3510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3652; + this.state = 3506; this.match(SparkSqlParser.COMMA); - this.state = 3653; + this.state = 3507; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3658; + this.state = 3512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16791,26 +16584,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 290, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3513; localContext._name = this.columnName(); - this.state = 3660; + this.state = 3514; this.dataType(); - this.state = 3664; + this.state = 3518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3661; + this.state = 3515; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3666; + this.state = 3520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16832,39 +16625,43 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 292, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3672; + this.state = 3528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3521; this.match(SparkSqlParser.KW_NOT); - this.state = 3668; + this.state = 3522; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3669; - this.defaultExpression(); + this.state = 3523; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3524; + this.expression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3670; - this.commentSpec(); + this.state = 3525; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3526; + localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_AFTER: case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3671; + this.state = 3527; this.colPosition(); } break; @@ -16886,40 +16683,14 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public defaultExpression(): DefaultExpressionContext { - let localContext = new DefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_defaultExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3674; - this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3675; - this.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 variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 294, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3530; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16928,7 +16699,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3678; + this.state = 3531; this.expression(); } } @@ -16948,30 +16719,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 296, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3533; this.columnType(); - this.state = 3685; + this.state = 3538; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 476, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3681; + this.state = 3534; this.match(SparkSqlParser.COMMA); - this.state = 3682; + this.state = 3535; this.columnType(); } } } - this.state = 3687; + this.state = 3540; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 476, this.context); } } } @@ -16991,33 +16762,35 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 298, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3688; + this.state = 3541; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3689; + this.state = 3542; this.dataType(); - this.state = 3692; + this.state = 3545; 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.state = 3690; + this.state = 3543; this.match(SparkSqlParser.KW_NOT); - this.state = 3691; + this.state = 3544; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3695; + this.state = 3549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3694; - this.commentSpec(); + this.state = 3547; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3548; + localContext._comment = this.stringLit(); } break; } @@ -17039,26 +16812,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 300, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3551; this.createOrReplaceTableColType(); - this.state = 3702; + this.state = 3556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3698; + this.state = 3552; this.match(SparkSqlParser.COMMA); - this.state = 3699; + this.state = 3553; this.createOrReplaceTableColType(); } } - this.state = 3704; + this.state = 3558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17080,26 +16853,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 302, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3705; + this.state = 3559; localContext._colName = this.columnNameCreate(); - this.state = 3706; + this.state = 3560; localContext._colType = this.dataType(); - this.state = 3710; + this.state = 3564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3707; + this.state = 3561; this.colDefinitionOption(); } } - this.state = 3712; + this.state = 3566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17121,118 +16894,57 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 304, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3718; + this.state = 3580; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3567; this.match(SparkSqlParser.KW_NOT); - this.state = 3714; + this.state = 3568; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3715; - this.defaultExpression(); + this.state = 3569; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3570; + this.expression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3716; - this.generationExpression(); - } - break; - case SparkSqlParser.KW_COMMENT: - this.enterOuterAlt(localContext, 4); - { - this.state = 3717; - this.commentSpec(); - } - 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 generationExpression(): GenerationExpressionContext { - let localContext = new GenerationExpressionContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_generationExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3720; - this.match(SparkSqlParser.KW_GENERATED); - this.state = 3721; - this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3722; - this.match(SparkSqlParser.KW_AS); - this.state = 3723; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3724; - this.expression(); - this.state = 3725; - this.match(SparkSqlParser.RIGHT_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 complexColTypeList(): ComplexColTypeListContext { - let localContext = new ComplexColTypeListContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColTypeList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3727; - this.complexColType(); - this.state = 3732; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 3728; - this.match(SparkSqlParser.COMMA); - this.state = 3729; - this.complexColType(); + this.state = 3571; + this.match(SparkSqlParser.KW_GENERATED); + this.state = 3572; + this.match(SparkSqlParser.KW_ALWAYS); + this.state = 3573; + this.match(SparkSqlParser.KW_AS); + this.state = 3574; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3575; + this.expression(); + this.state = 3576; + this.match(SparkSqlParser.RIGHT_PAREN); } + break; + case SparkSqlParser.KW_COMMENT: + this.enterOuterAlt(localContext, 4); + { + this.state = 3578; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3579; + localContext._comment = this.stringLit(); } - this.state = 3734; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17251,44 +16963,46 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 306, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3735; + this.state = 3582; this.identifier(); - this.state = 3737; + this.state = 3584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3736; + this.state = 3583; this.match(SparkSqlParser.COLON); } } - this.state = 3739; + this.state = 3586; this.dataType(); - this.state = 3742; + this.state = 3589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3740; + this.state = 3587; this.match(SparkSqlParser.KW_NOT); - this.state = 3741; + this.state = 3588; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3745; + this.state = 3593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3744; - this.commentSpec(); + this.state = 3591; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3592; + localContext._comment = this.stringLit(); } } @@ -17310,17 +17024,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 308, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3747; + this.state = 3595; this.match(SparkSqlParser.KW_WHEN); - this.state = 3748; + this.state = 3596; localContext._condition = this.expression(); - this.state = 3749; + this.state = 3597; this.match(SparkSqlParser.KW_THEN); - this.state = 3750; + this.state = 3598; localContext._result = this.expression(); } } @@ -17340,30 +17054,38 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 310, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3752; + this.state = 3600; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3753; - this.namedWindow(); - this.state = 3758; + this.state = 3601; + localContext._name = this.errorCapturingIdentifier(); + this.state = 3602; + this.match(SparkSqlParser.KW_AS); + this.state = 3603; + this.windowSpec(); + this.state = 3611; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3754; + this.state = 3604; this.match(SparkSqlParser.COMMA); - this.state = 3755; - this.namedWindow(); + this.state = 3605; + localContext._name = this.errorCapturingIdentifier(); + this.state = 3606; + this.match(SparkSqlParser.KW_AS); + this.state = 3607; + this.windowSpec(); } } } - this.state = 3760; + this.state = 3613; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); } @@ -17385,15 +17107,15 @@ export class SparkSqlParser extends SQLParserBase { } public zOrderClause(): ZOrderClauseContext { let localContext = new ZOrderClauseContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_zOrderClause); + this.enterRule(localContext, 312, SparkSqlParser.RULE_zOrderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3761; + this.state = 3614; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3762; + this.state = 3615; this.match(SparkSqlParser.KW_BY); - this.state = 3763; + this.state = 3616; this.columnNameSeq(); } } @@ -17411,91 +17133,63 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public namedWindow(): NamedWindowContext { - let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_namedWindow); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3765; - localContext._name = this.errorCapturingIdentifier(); - this.state = 3766; - this.match(SparkSqlParser.KW_AS); - this.state = 3767; - this.windowSpec(); - } - } - 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 windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 314, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3815; + this.state = 3657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3769; + this.state = 3618; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3770; + this.state = 3619; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3771; + this.state = 3620; localContext._name = this.errorCapturingIdentifier(); - this.state = 3772; + this.state = 3621; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3774; + this.state = 3623; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3809; + this.state = 3651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3775; + this.state = 3624; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3776; + this.state = 3625; this.match(SparkSqlParser.KW_BY); - this.state = 3777; + this.state = 3626; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3782; + this.state = 3631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3778; + this.state = 3627; this.match(SparkSqlParser.COMMA); - this.state = 3779; + this.state = 3628; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3784; + this.state = 3633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17509,12 +17203,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3795; + this.state = 3644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3785; + this.state = 3634; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17523,37 +17217,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3635; this.match(SparkSqlParser.KW_BY); - this.state = 3787; + this.state = 3636; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3792; + this.state = 3641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3788; + this.state = 3637; this.match(SparkSqlParser.COMMA); - this.state = 3789; + this.state = 3638; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3794; + this.state = 3643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3807; + this.state = 3649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3797; + this.state = 3646; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17562,26 +17256,10 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3798; + this.state = 3647; this.match(SparkSqlParser.KW_BY); - this.state = 3799; - this.sortItem(); - this.state = 3804; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 3800; - this.match(SparkSqlParser.COMMA); - this.state = 3801; - this.sortItem(); - } - } - this.state = 3806; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 3648; + this.orderOrSortByClause(); } } @@ -17590,17 +17268,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3812; + this.state = 3654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3811; + this.state = 3653; this.windowFrame(); } } - this.state = 3814; + this.state = 3656; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17622,56 +17300,49 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 316, SparkSqlParser.RULE_windowFrame); + let _la: number; try { - this.state = 3833; + this.state = 3667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3817; - localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3818; + this.state = 3659; + localContext._frameType = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 233 || _la === 258)) { + localContext._frameType = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3660; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3819; - localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3820; - localContext._start_ = this.frameBound(); + this.state = 3661; + localContext._frameType = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 233 || _la === 258)) { + localContext._frameType = this.errorHandler.recoverInline(this); } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3821; - localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3822; - this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3823; - localContext._start_ = this.frameBound(); - this.state = 3824; - this.match(SparkSqlParser.KW_AND); - this.state = 3825; - localContext._end = this.frameBound(); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3827; - localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3828; + this.state = 3662; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3829; + this.state = 3663; localContext._start_ = this.frameBound(); - this.state = 3830; + this.state = 3664; this.match(SparkSqlParser.KW_AND); - this.state = 3831; + this.state = 3665; localContext._end = this.frameBound(); } break; @@ -17693,18 +17364,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 318, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3842; + this.state = 3676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3835; + this.state = 3669; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3836; + this.state = 3670; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17719,18 +17390,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3837; + this.state = 3671; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3838; + this.state = 3672; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3839; + this.state = 3673; this.expression(); - this.state = 3840; + this.state = 3674; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17760,26 +17431,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3678; this.qualifiedName(); - this.state = 3849; + this.state = 3683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3845; + this.state = 3679; this.match(SparkSqlParser.COMMA); - this.state = 3846; + this.state = 3680; this.qualifiedName(); } } - this.state = 3851; + this.state = 3685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17801,49 +17472,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 366, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 322, SparkSqlParser.RULE_functionName); try { - this.state = 3861; + this.state = 3695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3686; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3853; + this.state = 3687; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3854; + this.state = 3688; this.expression(); - this.state = 3855; + this.state = 3689; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3857; + this.state = 3691; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3858; + this.state = 3692; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3859; + this.state = 3693; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3860; + this.state = 3694; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17865,11 +17536,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 368, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 324, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3863; + this.state = 3697; this.qualifiedName(); } } @@ -17889,30 +17560,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 370, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3865; + this.state = 3699; this.identifier(); - this.state = 3870; + this.state = 3704; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 497, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3866; + this.state = 3700; this.match(SparkSqlParser.DOT); - this.state = 3867; + this.state = 3701; this.identifier(); } } } - this.state = 3872; + this.state = 3706; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 497, this.context); } } } @@ -17932,13 +17603,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 328, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3873; + this.state = 3707; this.identifier(); - this.state = 3874; + this.state = 3708; this.errorCapturingIdentifierExtra(); } } @@ -17958,16 +17629,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 374, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 330, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3883; + this.state = 3717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3712; this.errorHandler.sync(this); alternative = 1; do { @@ -17975,9 +17646,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3876; + this.state = 3710; this.match(SparkSqlParser.MINUS); - this.state = 3877; + this.state = 3711; this.identifier(); } } @@ -17985,9 +17656,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3880; + this.state = 3714; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -18015,22 +17686,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 376, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 332, SparkSqlParser.RULE_identifier); try { - this.state = 3887; + this.state = 3721; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3885; + this.state = 3719; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3886; + this.state = 3720; this.strictNonReserved(); } break; @@ -18052,36 +17723,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 378, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 334, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3893; + this.state = 3727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3889; + this.state = 3723; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3890; + this.state = 3724; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3891; + this.state = 3725; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3892; + this.state = 3726; this.nonReserved(); } break; @@ -18103,12 +17774,12 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 380, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 336, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3895; + this.state = 3729; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -18133,215 +17804,32 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public backQuotedIdentifier(): BackQuotedIdentifierContext { - let localContext = new BackQuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 382, SparkSqlParser.RULE_backQuotedIdentifier); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3897; - this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); - } - } - 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 number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 384, SparkSqlParser.RULE_number); + this.enterRule(localContext, 338, SparkSqlParser.RULE_number); let _la: number; try { - this.state = 3939; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3900; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3899; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3902; - this.match(SparkSqlParser.EXPONENT_VALUE); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3904; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3903; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3906; - this.match(SparkSqlParser.DECIMAL_VALUE); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3908; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3907; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3910; - _la = this.tokenStream.LA(1); - if(!(_la === 383 || _la === 384)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3912; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3911; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3914; - this.match(SparkSqlParser.INTEGER_VALUE); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3916; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3915; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3918; - this.match(SparkSqlParser.BIGINT_LITERAL); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 3920; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3919; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3922; - this.match(SparkSqlParser.SMALLINT_LITERAL); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 3924; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3923; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3926; - this.match(SparkSqlParser.TINYINT_LITERAL); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 3928; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3927; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3930; - this.match(SparkSqlParser.DOUBLE_LITERAL); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 3932; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3931; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3934; - this.match(SparkSqlParser.FLOAT_LITERAL); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); + this.enterOuterAlt(localContext, 1); + { + this.state = 3732; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 362) { { - this.state = 3936; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3935; - this.match(SparkSqlParser.MINUS); - } + this.state = 3731; + this.match(SparkSqlParser.MINUS); } + } - this.state = 3938; - this.match(SparkSqlParser.BIGDECIMAL_LITERAL); - } - break; + this.state = 3734; + _la = this.tokenStream.LA(1); + if(!(((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 511) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -18360,39 +17848,41 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 386, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 340, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3952; + this.state = 3749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3941; + this.state = 3736; this.match(SparkSqlParser.KW_TYPE); - this.state = 3942; + this.state = 3737; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3943; - this.commentSpec(); + this.state = 3738; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3739; + localContext._comment = this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3944; + this.state = 3740; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3945; + this.state = 3741; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -18402,27 +17892,29 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3946; + this.state = 3742; this.match(SparkSqlParser.KW_NOT); - this.state = 3947; + this.state = 3743; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3948; + this.state = 3744; this.match(SparkSqlParser.KW_SET); - this.state = 3949; - this.defaultExpression(); + this.state = 3745; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3746; + this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3950; + this.state = 3747; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3951; + this.state = 3748; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18444,12 +17936,12 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 388, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 342, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3954; + this.state = 3751; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -18474,94 +17966,14 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public commentStr(): CommentStrContext { - let localContext = new CommentStrContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_commentStr); - try { - this.state = 3958; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: - this.enterOuterAlt(localContext, 1); - { - this.state = 3956; - this.stringLit(); - } - break; - case SparkSqlParser.KW_NULL: - this.enterOuterAlt(localContext, 2); - { - this.state = 3957; - this.match(SparkSqlParser.KW_NULL); - } - 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 version(): VersionContext { - let localContext = new VersionContext(this.context, this.state); - this.enterRule(localContext, 392, SparkSqlParser.RULE_version); - try { - this.state = 3962; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.INTEGER_VALUE: - this.enterOuterAlt(localContext, 1); - { - this.state = 3960; - this.match(SparkSqlParser.INTEGER_VALUE); - } - break; - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: - this.enterOuterAlt(localContext, 2); - { - this.state = 3961; - this.stringLit(); - } - 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 ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 394, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 344, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3753; _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)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18588,12 +18000,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 396, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 346, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3966; + this.state = 3755; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18620,12 +18032,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 398, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 348, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3968; + this.state = 3757; _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)) & 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)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18653,15 +18065,15 @@ export class SparkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 46: + case 39: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 52: + case 48: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 138: + case 120: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 140: + case 122: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 142: + case 124: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18721,7 +18133,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,393,3971,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,393,3760,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, @@ -18749,1718 +18161,1627 @@ export class SparkSqlParser extends SQLParserBase { 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,1,0,5,0,402,8,0,10,0,12,0,405,9,0, - 1,0,1,0,1,1,1,1,3,1,411,8,1,1,2,1,2,3,2,415,8,2,1,2,1,2,1,2,3,2, - 420,8,2,1,2,1,2,1,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,3,2,432,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,440,8,2,10,2,12,2,443,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,461,8, - 2,1,2,1,2,3,2,465,8,2,1,2,1,2,1,2,1,2,3,2,471,8,2,1,2,3,2,474,8, - 2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,1,2,3,2,484,8,2,1,2,3,2,487,8, - 2,1,2,1,2,3,2,491,8,2,1,2,3,2,494,8,2,1,2,1,2,1,2,3,2,499,8,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,511,8,2,10,2,12,2,514, - 9,2,1,2,1,2,1,2,1,2,1,2,3,2,521,8,2,1,2,3,2,524,8,2,1,2,1,2,3,2, - 528,8,2,1,2,3,2,531,8,2,1,2,1,2,1,2,1,2,3,2,537,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,548,8,2,1,2,1,2,1,2,1,2,3,2,554,8,2, - 1,2,1,2,1,2,3,2,559,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 2,170,7,170,2,171,7,171,2,172,7,172,2,173,7,173,2,174,7,174,1,0, + 5,0,352,8,0,10,0,12,0,355,9,0,1,0,1,0,1,1,1,1,3,1,361,8,1,1,2,1, + 2,3,2,365,8,2,1,2,1,2,1,2,3,2,370,8,2,1,2,1,2,1,2,1,2,1,2,3,2,377, + 8,2,1,2,1,2,1,2,3,2,382,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2, + 392,8,2,10,2,12,2,395,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,3,2,414,8,2,1,2,1,2,3,2,418,8,2,1, + 2,1,2,1,2,1,2,3,2,424,8,2,1,2,3,2,427,8,2,1,2,3,2,430,8,2,1,2,1, + 2,3,2,434,8,2,1,2,3,2,437,8,2,1,2,1,2,3,2,441,8,2,1,2,1,2,1,2,1, + 2,1,2,3,2,448,8,2,1,2,3,2,451,8,2,1,2,1,2,3,2,455,8,2,1,2,3,2,458, + 8,2,1,2,1,2,1,2,3,2,463,8,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,476,8,2,10,2,12,2,479,9,2,1,2,1,2,3,2,483,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,3,2,492,8,2,1,2,3,2,495,8,2,1,2,1,2,3,2,499, + 8,2,1,2,3,2,502,8,2,1,2,1,2,1,2,1,2,3,2,508,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,3,2,519,8,2,1,2,1,2,1,2,1,2,3,2,525,8,2,1,2, + 1,2,1,2,3,2,530,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,563,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 573,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,584,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,595,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,606,8,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,3,2,620,8,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,3,2, + 630,8,2,1,2,1,2,3,2,634,8,2,1,2,1,2,1,2,3,2,639,8,2,1,2,1,2,1,2, + 1,2,3,2,645,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,657, + 8,2,1,2,1,2,1,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,3,2,682,8,2,1,2,1,2,3,2, + 686,8,2,1,2,4,2,689,8,2,11,2,12,2,690,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,706,8,2,1,2,1,2,3,2,710,8,2,1,2,1, + 2,1,2,5,2,715,8,2,10,2,12,2,718,9,2,1,2,3,2,721,8,2,1,2,1,2,1,2, + 1,2,3,2,727,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,1,2,1,2,3,2,592,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,602,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,613,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,635,8,2,1,2,1,2,1,2,3,2,640,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,649,8,2,1,2,1,2,3,2,653,8,2,1,2,1,2,1,2,1,2, - 3,2,659,8,2,1,2,1,2,3,2,663,8,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2, - 1,2,1,2,3,2,674,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2,1,2,3,2, - 700,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,711,8,2,1,2,1,2, - 3,2,715,8,2,1,2,4,2,718,8,2,11,2,12,2,719,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,735,8,2,1,2,1,2,3,2,739,8,2,1, - 2,1,2,1,2,5,2,744,8,2,10,2,12,2,747,9,2,1,2,3,2,750,8,2,1,2,1,2, - 1,2,1,2,3,2,756,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,757,8,2,1,2,1,2,3,2,761,8,2,1,2,1,2,1,2,3,2,766,8,2,1,2,1,2, + 1,2,1,2,1,2,3,2,773,8,2,1,2,1,2,1,2,1,2,3,2,779,8,2,1,2,3,2,782, + 8,2,1,2,3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,3,2,793,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,5,2,802,8,2,10,2,12,2,805,9,2,1,2,1,2,1, + 2,1,2,1,2,1,2,3,2,813,8,2,1,2,3,2,816,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,3,2,825,8,2,1,2,1,2,1,2,3,2,830,8,2,1,2,1,2,1,2,1,2,3,2,836, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,843,8,2,1,2,3,2,846,8,2,1,2,1,2,3,2, + 850,8,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,863,8,2, + 10,2,12,2,866,9,2,3,2,868,8,2,1,2,1,2,1,2,1,2,3,2,874,8,2,1,2,1, + 2,3,2,878,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,5,2,895,8,2,10,2,12,2,898,9,2,1,2,1,2,1,2,1,2,1,2,3,2, + 905,8,2,1,2,1,2,3,2,909,8,2,1,2,1,2,1,2,1,2,3,2,915,8,2,1,2,3,2, + 918,8,2,1,2,1,2,3,2,922,8,2,1,2,3,2,925,8,2,1,2,1,2,1,2,1,2,3,2, + 931,8,2,1,2,1,2,1,2,3,2,936,8,2,1,2,1,2,3,2,940,8,2,1,2,1,2,1,2, + 1,2,1,2,3,2,947,8,2,1,2,3,2,950,8,2,1,2,3,2,953,8,2,1,2,1,2,1,2, + 1,2,1,2,3,2,960,8,2,1,2,1,2,1,2,3,2,965,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,982,8,2,1,2,1,2, + 1,2,1,2,3,2,988,8,2,1,2,3,2,991,8,2,1,2,3,2,994,8,2,1,2,1,2,1,2, + 1,2,3,2,1000,8,2,1,2,1,2,3,2,1004,8,2,1,2,1,2,1,2,3,2,1009,8,2,1, + 2,3,2,1012,8,2,1,2,1,2,3,2,1016,8,2,3,2,1018,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,1026,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1034,8,2,1,2,3, + 2,1037,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1044,8,2,1,2,3,2,1047,8,2,1,2, + 3,2,1050,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1059,8,2,1,2,1,2,1, + 2,3,2,1064,8,2,1,2,1,2,1,2,1,2,3,2,1070,8,2,1,2,1,2,1,2,3,2,1075, + 8,2,1,2,3,2,1078,8,2,1,2,1,2,3,2,1082,8,2,1,2,3,2,1085,8,2,1,2,1, + 2,3,2,1089,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1099,8,2,1,2, + 1,2,1,2,3,2,1104,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1115, + 8,2,10,2,12,2,1118,9,2,3,2,1120,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 1128,8,2,1,2,1,2,1,2,1,2,3,2,1134,8,2,1,2,3,2,1137,8,2,1,2,3,2,1140, + 8,2,1,2,1,2,1,2,3,2,1145,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1153,8, + 2,1,2,1,2,1,2,3,2,1158,8,2,1,2,1,2,1,2,1,2,3,2,1164,8,2,1,2,1,2, + 1,2,1,2,3,2,1170,8,2,1,2,3,2,1173,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1180, + 8,2,1,2,1,2,1,2,5,2,1185,8,2,10,2,12,2,1188,9,2,1,2,1,2,1,2,5,2, + 1193,8,2,10,2,12,2,1196,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,1207,8,2,1,2,1,2,1,2,1,2,5,2,1213,8,2,10,2,12,2,1216,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, - 3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1,2,3,2,794,8,2,1,2,1,2, - 1,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,1,2,3,2,807,8,2,1,2,3,2,810, - 8,2,1,2,3,2,813,8,2,1,2,1,2,3,2,817,8,2,1,2,1,2,3,2,821,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,829,8,2,10,2,12,2,832,9,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,840,8,2,1,2,3,2,843,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,852,8,2,1,2,1,2,1,2,3,2,857,8,2,1,2,1,2,1,2,1,2,3,2,863,8, - 2,1,2,1,2,1,2,1,2,1,2,3,2,870,8,2,1,2,3,2,873,8,2,1,2,1,2,3,2,877, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,886,8,2,10,2,12,2,889,9,2,3, - 2,891,8,2,1,2,1,2,1,2,1,2,3,2,897,8,2,1,2,1,2,3,2,901,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,916,8,2,10,2,12, - 2,919,9,2,1,2,1,2,1,2,1,2,1,2,3,2,926,8,2,1,2,1,2,3,2,930,8,2,1, - 2,1,2,1,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,3,2,943,8,2,1, - 2,3,2,946,8,2,1,2,1,2,1,2,1,2,3,2,952,8,2,1,2,1,2,1,2,3,2,957,8, - 2,1,2,1,2,3,2,961,8,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,3,2,971, - 8,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,3,2,981,8,2,1,2,1,2,1,2, - 3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,995,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,3,2,1009,8,2,1,2,3,2,1012, - 8,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,1,2,3,2,1025, - 8,2,1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037,8, - 2,3,2,1039,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1047,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1055,8,2,1,2,3,2,1058,8,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1065,8,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,1,2,3, - 2,1091,8,2,1,2,1,2,1,2,3,2,1096,8,2,1,2,3,2,1099,8,2,1,2,1,2,3,2, - 1103,8,2,1,2,3,2,1106,8,2,1,2,1,2,3,2,1110,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,1136,8,2,10,2,12,2,1139,9,2,3,2,1141,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,3,2,1155,8,2,1,2, - 3,2,1158,8,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,3,2,1179,8,2,1,2,1,2,1,2, - 1,2,3,2,1185,8,2,1,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,3,2,1194,8,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1201,8,2,1,2,1,2,1,2,5,2,1206,8,2,10,2,12, - 2,1209,9,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,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,1231,8,2,10,2,12,2,1234, - 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,1258,8,2,10,2,12,2,1261,9,2,3,2, - 1263,8,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270,9,2,1,2,1,2,1,2,1,2, - 5,2,1276,8,2,10,2,12,2,1279,9,2,1,2,1,2,1,2,1,2,5,2,1285,8,2,10, - 2,12,2,1288,9,2,1,2,1,2,1,2,3,2,1293,8,2,1,2,1,2,1,2,3,2,1298,8, - 2,1,2,1,2,1,2,3,2,1303,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1310,8,2,1,2, - 1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,3,2,1320,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1327,8,2,1,2,1,2,1,2,1,2,5,2,1333,8,2,10,2,12,2,1336,9,2,3, - 2,1338,8,2,1,3,1,3,3,3,1342,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, - 1,6,1,6,3,6,1354,8,6,1,6,1,6,3,6,1358,8,6,1,6,1,6,1,6,1,6,1,6,3, - 6,1365,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,1481,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1489, - 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6,1,6,1,6,1,6, - 1,6,3,6,1506,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1516,8,6,1, - 7,1,7,3,7,1520,8,7,1,7,3,7,1523,8,7,1,7,1,7,3,7,1527,8,7,1,7,1,7, - 1,8,1,8,3,8,1533,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, - 1545,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1557, - 8,10,1,10,1,10,1,10,3,10,1562,8,10,1,11,1,11,1,11,1,12,1,12,1,12, - 1,13,3,13,1571,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1579,8,14, - 1,14,1,14,1,14,3,14,1584,8,14,3,14,1586,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,3,14,1594,8,14,1,14,1,14,1,14,3,14,1599,8,14,1,14,1,14, - 3,14,1603,8,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,1,14,1,14,1,14, - 3,14,1614,8,14,1,14,1,14,1,14,3,14,1619,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,3,14,1628,8,14,1,14,1,14,1,14,3,14,1633,8,14,1,14, - 3,14,1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,1,14,3,14,1645, - 8,14,1,14,1,14,1,14,3,14,1650,8,14,3,14,1652,8,14,1,15,1,15,3,15, - 1656,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1663,8,16,10,16,12,16,1666, - 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1673,8,17,1,17,1,17,1,17,1,17, - 3,17,1679,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, - 1690,8,20,1,21,1,21,1,21,5,21,1695,8,21,10,21,12,21,1698,9,21,1, - 22,1,22,1,22,1,22,5,22,1704,8,22,10,22,12,22,1707,9,22,1,23,1,23, - 3,23,1711,8,23,1,23,3,23,1714,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,1,25,5,25,1737,8,25,10,25,12,25,1740,9,25,1,26,1,26,1,26,1, - 27,1,27,1,27,1,27,5,27,1749,8,27,10,27,12,27,1752,9,27,1,27,1,27, - 1,28,1,28,3,28,1758,8,28,1,28,3,28,1761,8,28,1,29,1,29,1,29,5,29, - 1766,8,29,10,29,12,29,1769,9,29,1,29,3,29,1772,8,29,1,30,1,30,1, - 30,1,30,3,30,1778,8,30,1,31,1,31,1,31,1,31,5,31,1784,8,31,10,31, - 12,31,1787,9,31,1,31,1,31,1,32,1,32,3,32,1793,8,32,1,32,3,32,1796, - 8,32,1,33,1,33,1,33,1,33,5,33,1802,8,33,10,33,12,33,1805,9,33,1, - 33,1,33,1,34,1,34,1,34,1,34,5,34,1813,8,34,10,34,12,34,1816,9,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1826,8,35,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,37,3,37,1840, - 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1850,8,39,11,39, - 12,39,1851,1,39,1,39,1,39,1,39,1,39,3,39,1859,8,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1866,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,5,39,1884,8,39,10,39, - 12,39,1887,9,39,1,39,5,39,1890,8,39,10,39,12,39,1893,9,39,1,39,5, - 39,1896,8,39,10,39,12,39,1899,9,39,3,39,1901,8,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,3,46,1917, - 8,46,1,47,1,47,1,47,5,47,1922,8,47,10,47,12,47,1925,9,47,1,48,1, - 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1935,8,49,1,50,1,50,1,50,1, - 50,1,50,5,50,1942,8,50,10,50,12,50,1945,9,50,3,50,1947,8,50,1,50, - 1,50,1,50,1,50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959, - 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9, - 50,3,50,1971,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50, - 12,50,1981,9,50,3,50,1983,8,50,1,50,3,50,1986,8,50,1,50,1,50,1,50, - 3,50,1991,8,50,3,50,1993,8,50,1,50,1,50,3,50,1997,8,50,1,51,1,51, - 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2008,8,52,1,52,1,52,1,52, - 1,52,3,52,2014,8,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,5,52, - 2023,8,52,10,52,12,52,2026,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, - 53,1,53,1,53,3,53,2037,8,53,1,54,1,54,3,54,2041,8,54,1,54,3,54,2044, - 8,54,1,54,1,54,3,54,2048,8,54,1,55,1,55,4,55,2052,8,55,11,55,12, - 55,2053,1,56,1,56,3,56,2058,8,56,1,56,1,56,1,56,1,56,5,56,2064,8, - 56,10,56,12,56,2067,9,56,1,56,3,56,2070,8,56,1,56,3,56,2073,8,56, - 1,56,3,56,2076,8,56,1,56,3,56,2079,8,56,1,56,1,56,3,56,2083,8,56, - 1,57,1,57,3,57,2087,8,57,1,57,5,57,2090,8,57,10,57,12,57,2093,9, - 57,1,57,3,57,2096,8,57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1, - 57,3,57,2105,8,57,1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10, - 57,12,57,2115,9,57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57, - 3,57,2124,8,57,1,57,3,57,2127,8,57,3,57,2129,8,57,1,58,1,58,1,58, - 1,58,3,58,2135,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2142,8,58,1,58, - 1,58,1,58,3,58,2147,8,58,1,58,3,58,2150,8,58,1,58,3,58,2153,8,58, - 1,58,1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 3,58,2167,8,58,1,58,1,58,3,58,2171,8,58,3,58,2173,8,58,1,58,3,58, - 2176,8,58,1,58,1,58,3,58,2180,8,58,1,59,1,59,5,59,2184,8,59,10,59, - 12,59,2187,9,59,1,59,3,59,2190,8,59,1,59,1,59,1,60,1,60,1,60,1,61, - 1,61,1,61,1,61,3,61,2201,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, - 1,62,3,62,2211,8,62,1,62,1,62,3,62,2215,8,62,1,62,1,62,1,62,1,63, - 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63,1,63,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2239,8,64,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2252,8,65,10,65,12,65,2255, - 9,65,1,65,1,65,3,65,2259,8,65,1,66,1,66,1,66,1,66,3,66,2265,8,66, - 1,67,1,67,1,67,5,67,2270,8,67,10,67,12,67,2273,9,67,1,68,1,68,1, - 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2288,8, - 71,1,71,5,71,2291,8,71,10,71,12,71,2294,9,71,1,71,1,71,1,72,1,72, - 1,72,1,72,1,72,1,72,5,72,2304,8,72,10,72,12,72,2307,9,72,1,72,1, - 72,3,72,2311,8,72,1,73,1,73,1,73,1,73,5,73,2317,8,73,10,73,12,73, - 2320,9,73,1,73,5,73,2323,8,73,10,73,12,73,2326,9,73,1,73,3,73,2329, - 8,73,1,73,3,73,2332,8,73,1,74,1,74,1,75,3,75,2337,8,75,1,75,1,75, - 1,75,1,75,1,75,3,75,2344,8,75,1,75,1,75,1,75,1,75,3,75,2350,8,75, - 1,76,1,76,1,76,1,76,1,76,5,76,2357,8,76,10,76,12,76,2360,9,76,1, - 76,1,76,1,76,1,76,1,76,5,76,2367,8,76,10,76,12,76,2370,9,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2382,8,76,10,76, - 12,76,2385,9,76,1,76,1,76,3,76,2389,8,76,3,76,2391,8,76,1,77,1,77, - 1,77,3,77,2396,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2403,8,78,10,78, - 12,78,2406,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2416, - 8,78,10,78,12,78,2419,9,78,1,78,1,78,3,78,2423,8,78,1,79,1,79,3, - 79,2427,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2434,8,80,1,80,1,80,1, - 80,3,80,2439,8,80,5,80,2441,8,80,10,80,12,80,2444,9,80,3,80,2446, - 8,80,1,80,3,80,2449,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,5,81,2461,8,81,10,81,12,81,2464,9,81,1,81,1,81,1,81,1, - 82,1,82,1,82,1,82,1,82,5,82,2474,8,82,10,82,12,82,2477,9,82,1,82, - 1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8,83,1,83,3,83,2488,8,83, - 1,84,1,84,3,84,2492,8,84,1,84,1,84,1,84,1,84,3,84,2498,8,84,1,84, - 3,84,2501,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2508,8,86,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2518,8,87,10,87,12,87,2521,9, - 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2529,8,88,10,88,12,88,2532, - 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2542,8,88,10,88, - 12,88,2545,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2553,8,89,10, - 89,12,89,2556,9,89,1,89,1,89,3,89,2560,8,89,1,90,1,90,1,91,1,91, - 1,92,1,92,3,92,2568,8,92,1,93,1,93,1,94,3,94,2573,8,94,1,94,1,94, - 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2587,8,97, - 1,97,1,97,1,97,1,97,1,97,5,97,2594,8,97,10,97,12,97,2597,9,97,3, - 97,2599,8,97,1,97,1,97,1,97,3,97,2604,8,97,1,97,1,97,1,97,5,97,2609, - 8,97,10,97,12,97,2612,9,97,3,97,2614,8,97,1,98,1,98,1,99,1,99,3, - 99,2620,8,99,1,99,1,99,5,99,2624,8,99,10,99,12,99,2627,9,99,3,99, - 2629,8,99,1,100,1,100,1,100,3,100,2634,8,100,1,101,1,101,1,101,3, - 101,2639,8,101,1,101,1,101,3,101,2643,8,101,1,101,1,101,1,101,1, - 101,3,101,2649,8,101,1,101,1,101,3,101,2653,8,101,1,102,3,102,2656, - 8,102,1,102,1,102,1,102,3,102,2661,8,102,1,102,3,102,2664,8,102, - 1,102,1,102,1,102,3,102,2669,8,102,1,102,1,102,3,102,2673,8,102, - 1,102,3,102,2676,8,102,1,102,3,102,2679,8,102,1,103,1,103,1,103, - 1,103,3,103,2685,8,103,1,104,1,104,1,104,3,104,2690,8,104,1,104, - 1,104,1,104,1,104,1,104,3,104,2697,8,104,1,105,3,105,2700,8,105, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,3,105,2718,8,105,3,105,2720,8,105, - 1,105,3,105,2723,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 5,107,2732,8,107,10,107,12,107,2735,9,107,1,108,1,108,1,108,1,108, - 5,108,2741,8,108,10,108,12,108,2744,9,108,1,108,1,108,1,109,1,109, - 3,109,2750,8,109,1,110,1,110,1,110,1,110,5,110,2756,8,110,10,110, - 12,110,2759,9,110,1,110,1,110,1,111,1,111,3,111,2765,8,111,1,112, - 1,112,1,112,3,112,2770,8,112,1,112,3,112,2773,8,112,1,112,3,112, - 2776,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2784,8,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2792,8,112,1,112,1,112, - 1,112,1,112,3,112,2798,8,112,1,113,1,113,1,113,1,113,5,113,2804, - 8,113,10,113,12,113,2807,9,113,1,113,1,113,1,114,1,114,1,114,3,114, - 2814,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2821,8,114,1,114, - 1,114,1,114,1,114,1,114,3,114,2828,8,114,3,114,2830,8,114,1,115, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2841,8,115, - 10,115,12,115,2844,9,115,1,115,1,115,1,115,3,115,2849,8,115,3,115, - 2851,8,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2859,8,115, - 10,115,12,115,2862,9,115,1,115,1,115,1,115,3,115,2867,8,115,3,115, - 2869,8,115,1,116,1,116,1,116,1,116,1,117,1,117,3,117,2877,8,117, - 1,118,1,118,3,118,2881,8,118,1,119,1,119,1,119,1,119,1,119,5,119, - 2888,8,119,10,119,12,119,2891,9,119,3,119,2893,8,119,1,119,1,119, - 1,119,1,120,3,120,2899,8,120,1,120,1,120,3,120,2903,8,120,3,120, - 2905,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2914, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2926,8,121,3,121,2928,8,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2935,8,121,1,121,1,121,1,121,1,121,1,121,3,121,2942,8,121, - 1,121,1,121,1,121,1,121,3,121,2948,8,121,1,121,1,121,1,121,1,121, - 3,121,2954,8,121,3,121,2956,8,121,1,122,1,122,1,122,5,122,2961,8, - 122,10,122,12,122,2964,9,122,1,123,1,123,1,123,5,123,2969,8,123, - 10,123,12,123,2972,9,123,1,124,1,124,1,124,5,124,2977,8,124,10,124, - 12,124,2980,9,124,1,125,1,125,1,125,3,125,2985,8,125,1,126,1,126, - 1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127,1,127,3,127,2997, - 8,127,1,127,1,127,1,128,1,128,3,128,3003,8,128,1,128,3,128,3006, - 8,128,1,128,1,128,3,128,3010,8,128,3,128,3012,8,128,1,129,1,129, - 1,129,5,129,3017,8,129,10,129,12,129,3020,9,129,1,130,1,130,1,130, - 1,130,5,130,3026,8,130,10,130,12,130,3029,9,130,1,130,1,130,1,131, - 1,131,3,131,3035,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3043,8,132,10,132,12,132,3046,9,132,1,132,1,132,3,132,3050,8,132, - 1,133,1,133,3,133,3054,8,133,1,134,1,134,1,135,1,135,1,135,1,135, - 1,136,1,136,3,136,3064,8,136,1,137,1,137,1,137,5,137,3069,8,137, - 10,137,12,137,3072,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,3,138,3084,8,138,3,138,3086,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3094,8,138,10,138,12,138,3097,9,138, - 1,139,3,139,3100,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 3108,8,139,1,139,1,139,1,139,1,139,1,139,5,139,3115,8,139,10,139, - 12,139,3118,9,139,1,139,1,139,1,139,3,139,3123,8,139,1,139,1,139, - 1,139,1,139,1,139,1,139,3,139,3131,8,139,1,139,1,139,1,139,3,139, - 3136,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,5,139, - 3146,8,139,10,139,12,139,3149,9,139,1,139,1,139,3,139,3153,8,139, - 1,139,3,139,3156,8,139,1,139,1,139,1,139,1,139,3,139,3162,8,139, - 1,139,1,139,3,139,3166,8,139,1,139,1,139,1,139,3,139,3171,8,139, - 1,139,1,139,1,139,3,139,3176,8,139,1,139,1,139,1,139,3,139,3181, - 8,139,1,140,1,140,1,140,1,140,3,140,3187,8,140,1,140,1,140,1,140, + 1,2,1,2,1,2,1,2,1,2,5,2,1240,8,2,10,2,12,2,1243,9,2,3,2,1245,8,2, + 1,2,1,2,5,2,1249,8,2,10,2,12,2,1252,9,2,1,2,1,2,1,2,1,2,5,2,1258, + 8,2,10,2,12,2,1261,9,2,1,2,1,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270, + 9,2,1,2,1,2,1,2,3,2,1275,8,2,1,2,1,2,1,2,3,2,1280,8,2,1,2,1,2,1, + 2,3,2,1285,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1292,8,2,1,2,1,2,1,2,3,2, + 1297,8,2,1,2,1,2,1,2,3,2,1302,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1309,8, + 2,1,2,1,2,1,2,1,2,5,2,1315,8,2,10,2,12,2,1318,9,2,3,2,1320,8,2,1, + 3,1,3,1,3,1,3,3,3,1326,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1333,8,3,1,3, + 1,3,3,3,1337,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,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,1400,8,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1408,8,3,1,3,1,3,1, + 3,1,3,1,3,3,3,1415,8,3,1,4,1,4,1,4,1,4,1,4,1,4,3,4,1423,8,4,1,4, + 1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1435,8,5,1,5,1,5,1,5,3,5, + 1440,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,8,3,8,1449,8,8,1,8,1,8,1,8,1, + 9,1,9,1,9,3,9,1457,8,9,1,9,1,9,1,9,3,9,1462,8,9,3,9,1464,8,9,1,9, + 1,9,1,9,1,9,1,9,1,9,3,9,1472,8,9,1,9,1,9,1,9,3,9,1477,8,9,1,9,1, + 9,3,9,1481,8,9,1,9,3,9,1484,8,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1492, + 8,9,1,9,1,9,1,9,3,9,1497,8,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1506, + 8,9,1,9,1,9,1,9,3,9,1511,8,9,1,9,3,9,1514,8,9,1,9,1,9,1,9,3,9,1519, + 8,9,1,9,1,9,3,9,1523,8,9,1,9,1,9,1,9,3,9,1528,8,9,3,9,1530,8,9,1, + 10,1,10,1,10,3,10,1535,8,10,1,11,1,11,1,11,1,11,1,11,5,11,1542,8, + 11,10,11,12,11,1545,9,11,1,11,1,11,1,12,1,12,1,12,3,12,1552,8,12, + 1,12,1,12,1,12,1,12,3,12,1558,8,12,1,13,1,13,1,14,1,14,1,14,1,14, + 1,14,3,14,1567,8,14,1,15,1,15,1,15,5,15,1572,8,15,10,15,12,15,1575, + 9,15,1,16,1,16,1,16,1,16,5,16,1581,8,16,10,16,12,16,1584,9,16,1, + 17,1,17,3,17,1588,8,17,1,17,3,17,1591,8,17,1,17,1,17,1,17,1,17,1, + 18,1,18,1,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,5,19,1616,8,19,10,19,12,19,1619,9,19, + 1,20,1,20,1,20,1,21,1,21,1,21,1,21,5,21,1628,8,21,10,21,12,21,1631, + 9,21,1,21,1,21,1,22,1,22,3,22,1637,8,22,1,22,3,22,1640,8,22,1,23, + 1,23,1,23,5,23,1645,8,23,10,23,12,23,1648,9,23,1,23,3,23,1651,8, + 23,1,24,1,24,1,24,1,24,3,24,1657,8,24,1,25,1,25,1,25,1,25,5,25,1663, + 8,25,10,25,12,25,1666,9,25,1,25,1,25,1,26,1,26,3,26,1672,8,26,1, + 26,3,26,1675,8,26,1,27,1,27,1,27,1,27,5,27,1681,8,27,10,27,12,27, + 1684,9,27,1,27,1,27,1,28,1,28,1,28,1,28,5,28,1692,8,28,10,28,12, + 28,1695,9,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1705,8, + 29,1,30,1,30,1,30,1,30,1,30,1,30,3,30,1713,8,30,1,31,1,31,1,31,1, + 31,3,31,1719,8,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,4,32,1728,8, + 32,11,32,12,32,1729,1,32,1,32,1,32,1,32,1,32,3,32,1737,8,32,1,32, + 1,32,1,32,1,32,1,32,3,32,1744,8,32,1,32,1,32,1,32,1,32,1,32,1,32, + 1,32,1,32,1,32,1,32,3,32,1756,8,32,1,32,1,32,1,32,1,32,5,32,1762, + 8,32,10,32,12,32,1765,9,32,1,32,5,32,1768,8,32,10,32,12,32,1771, + 9,32,1,32,5,32,1774,8,32,10,32,12,32,1777,9,32,3,32,1779,8,32,1, + 33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1, + 39,3,39,1795,8,39,1,40,1,40,1,41,1,41,1,41,5,41,1802,8,41,10,41, + 12,41,1805,9,41,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,3,43,1815, + 8,43,1,44,1,44,1,44,3,44,1820,8,44,1,44,1,44,1,44,3,44,1825,8,44, + 1,44,1,44,1,44,3,44,1830,8,44,1,44,1,44,1,44,3,44,1835,8,44,1,44, + 3,44,1838,8,44,1,44,3,44,1841,8,44,1,44,1,44,3,44,1845,8,44,1,45, + 1,45,1,45,3,45,1850,8,45,1,46,1,46,1,46,5,46,1855,8,46,10,46,12, + 46,1858,9,46,1,47,1,47,1,47,5,47,1863,8,47,10,47,12,47,1866,9,47, + 1,48,1,48,1,48,1,48,1,48,1,48,3,48,1874,8,48,1,48,1,48,1,48,1,48, + 3,48,1880,8,48,1,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,5,48,1889, + 8,48,10,48,12,48,1892,9,48,1,49,1,49,1,49,4,49,1897,8,49,11,49,12, + 49,1898,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1907,8,49,10,49,12,49, + 1910,9,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1918,8,49,1,50,1,50, + 3,50,1922,8,50,1,50,3,50,1925,8,50,1,50,1,50,3,50,1929,8,50,1,51, + 1,51,3,51,1933,8,51,1,51,1,51,1,51,1,51,5,51,1939,8,51,10,51,12, + 51,1942,9,51,1,51,3,51,1945,8,51,1,51,3,51,1948,8,51,1,51,3,51,1951, + 8,51,1,51,3,51,1954,8,51,1,51,1,51,3,51,1958,8,51,1,52,1,52,3,52, + 1962,8,52,1,52,5,52,1965,8,52,10,52,12,52,1968,9,52,1,52,3,52,1971, + 8,52,1,52,3,52,1974,8,52,1,52,3,52,1977,8,52,1,52,3,52,1980,8,52, + 1,52,1,52,3,52,1984,8,52,1,52,5,52,1987,8,52,10,52,12,52,1990,9, + 52,1,52,3,52,1993,8,52,1,52,3,52,1996,8,52,1,52,3,52,1999,8,52,1, + 52,3,52,2002,8,52,3,52,2004,8,52,1,53,1,53,1,53,1,53,3,53,2010,8, + 53,1,53,1,53,1,53,1,53,1,53,3,53,2017,8,53,1,53,1,53,1,53,3,53,2022, + 8,53,1,53,3,53,2025,8,53,1,53,3,53,2028,8,53,1,53,1,53,3,53,2032, + 8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2042,8,53,1,53, + 1,53,3,53,2046,8,53,3,53,2048,8,53,1,53,3,53,2051,8,53,1,53,1,53, + 3,53,2055,8,53,1,54,1,54,5,54,2059,8,54,10,54,12,54,2062,9,54,1, + 54,3,54,2065,8,54,1,54,1,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,3, + 56,2076,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2084,8,56,3,56,2086, + 8,56,1,57,1,57,1,57,1,57,1,57,3,57,2093,8,57,1,57,1,57,3,57,2097, + 8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2109, + 8,58,1,58,1,58,1,58,1,58,1,58,3,58,2116,8,58,1,59,1,59,1,59,1,59, + 1,59,1,59,1,59,1,59,1,59,1,59,1,59,5,59,2129,8,59,10,59,12,59,2132, + 9,59,1,59,1,59,3,59,2136,8,59,1,60,1,60,1,60,5,60,2141,8,60,10,60, + 12,60,2144,9,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,63,1,63,1,63, + 1,64,1,64,1,64,3,64,2159,8,64,1,64,5,64,2162,8,64,10,64,12,64,2165, + 9,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2175,8,65,10,65, + 12,65,2178,9,65,1,65,1,65,3,65,2182,8,65,1,66,1,66,1,66,1,66,5,66, + 2188,8,66,10,66,12,66,2191,9,66,1,66,5,66,2194,8,66,10,66,12,66, + 2197,9,66,1,66,3,66,2200,8,66,1,66,3,66,2203,8,66,1,67,3,67,2206, + 8,67,1,67,1,67,1,67,1,67,1,67,3,67,2213,8,67,1,67,3,67,2216,8,67, + 1,67,1,67,1,67,1,67,3,67,2222,8,67,1,68,1,68,1,68,1,68,1,68,5,68, + 2229,8,68,10,68,12,68,2232,9,68,1,68,1,68,1,68,1,68,1,68,5,68,2239, + 8,68,10,68,12,68,2242,9,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,5,68,2254,8,68,10,68,12,68,2257,9,68,1,68,1,68,3,68, + 2261,8,68,3,68,2263,8,68,1,69,1,69,1,69,3,69,2268,8,69,1,70,1,70, + 1,70,1,70,1,70,5,70,2275,8,70,10,70,12,70,2278,9,70,1,70,1,70,1, + 70,1,70,1,70,1,70,1,70,3,70,2287,8,70,1,70,1,70,1,70,3,70,2292,8, + 70,5,70,2294,8,70,10,70,12,70,2297,9,70,1,70,1,70,3,70,2301,8,70, + 1,71,1,71,1,71,1,71,1,71,3,71,2308,8,71,1,71,1,71,1,71,3,71,2313, + 8,71,5,71,2315,8,71,10,71,12,71,2318,9,71,3,71,2320,8,71,1,71,3, + 71,2323,8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, + 72,2335,8,72,10,72,12,72,2338,9,72,1,72,1,72,1,72,1,73,1,73,1,73, + 1,73,1,73,5,73,2348,8,73,10,73,12,73,2351,9,73,1,73,1,73,3,73,2355, + 8,73,1,74,1,74,3,74,2359,8,74,1,74,3,74,2362,8,74,1,75,1,75,1,75, + 3,75,2367,8,75,1,75,1,75,1,75,3,75,2372,8,75,1,75,1,75,3,75,2376, + 8,75,1,75,3,75,2379,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, + 5,76,2389,8,76,10,76,12,76,2392,9,76,1,76,1,76,1,77,1,77,1,77,1, + 77,5,77,2400,8,77,10,77,12,77,2403,9,77,1,77,1,77,1,77,1,77,1,77, + 1,77,1,77,1,77,5,77,2413,8,77,10,77,12,77,2416,9,77,1,77,1,77,1, + 78,1,78,1,78,1,78,5,78,2424,8,78,10,78,12,78,2427,9,78,1,78,1,78, + 3,78,2431,8,78,1,78,3,78,2434,8,78,1,79,1,79,3,79,2438,8,79,1,79, + 3,79,2441,8,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,82,1,82,1,82, + 3,82,2453,8,82,1,82,1,82,1,82,1,82,1,82,5,82,2460,8,82,10,82,12, + 82,2463,9,82,3,82,2465,8,82,1,82,1,82,1,82,3,82,2470,8,82,1,82,1, + 82,1,82,5,82,2475,8,82,10,82,12,82,2478,9,82,3,82,2480,8,82,1,83, + 1,83,1,84,1,84,3,84,2486,8,84,1,84,1,84,1,84,1,84,5,84,2492,8,84, + 10,84,12,84,2495,9,84,3,84,2497,8,84,1,85,1,85,1,85,3,85,2502,8, + 85,1,85,1,85,3,85,2506,8,85,1,85,1,85,1,85,1,85,3,85,2512,8,85,1, + 85,1,85,3,85,2516,8,85,1,86,3,86,2519,8,86,1,86,1,86,1,86,3,86,2524, + 8,86,1,86,3,86,2527,8,86,1,86,1,86,1,86,3,86,2532,8,86,3,86,2534, + 8,86,1,87,1,87,1,87,1,87,3,87,2540,8,87,1,88,1,88,1,88,3,88,2545, + 8,88,1,88,1,88,1,88,1,88,1,88,3,88,2552,8,88,1,89,3,89,2555,8,89, + 1,89,1,89,1,89,1,89,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,2573,8,89,3,89,2575,8,89,1,89,3,89,2578,8,89, + 1,90,1,90,1,90,1,90,1,91,1,91,1,91,5,91,2587,8,91,10,91,12,91,2590, + 9,91,1,92,1,92,1,92,1,92,5,92,2596,8,92,10,92,12,92,2599,9,92,1, + 92,1,92,1,93,1,93,3,93,2605,8,93,1,94,1,94,1,94,1,94,5,94,2611,8, + 94,10,94,12,94,2614,9,94,1,94,1,94,1,95,1,95,1,95,3,95,2621,8,95, + 1,96,1,96,1,96,3,96,2626,8,96,1,96,3,96,2629,8,96,1,96,3,96,2632, + 8,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96,2640,8,96,1,96,1,96,1,96, + 1,96,1,96,1,96,3,96,2648,8,96,1,96,1,96,1,96,1,96,1,96,1,96,5,96, + 2656,8,96,10,96,12,96,2659,9,96,1,96,1,96,1,96,1,96,1,96,1,96,1, + 96,5,96,2668,8,96,10,96,12,96,2671,9,96,3,96,2673,8,96,1,96,1,96, + 1,96,3,96,2678,8,96,1,97,1,97,1,97,3,97,2683,8,97,1,97,1,97,1,97, + 1,97,1,97,3,97,2690,8,97,1,97,1,97,1,97,1,97,1,97,3,97,2697,8,97, + 3,97,2699,8,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,5,98, + 2710,8,98,10,98,12,98,2713,9,98,1,98,1,98,1,98,3,98,2718,8,98,3, + 98,2720,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,2729,8,98,3, + 98,2731,8,98,1,99,1,99,1,99,1,99,1,100,1,100,3,100,2739,8,100,1, + 101,1,101,3,101,2743,8,101,1,102,3,102,2746,8,102,1,102,1,102,3, + 102,2750,8,102,3,102,2752,8,102,1,103,1,103,1,103,1,103,1,103,1, + 103,1,103,3,103,2761,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1, + 103,1,103,1,103,1,103,3,103,2773,8,103,3,103,2775,8,103,1,103,1, + 103,1,103,1,103,1,103,3,103,2782,8,103,1,103,1,103,1,103,1,103,1, + 103,3,103,2789,8,103,1,103,1,103,1,103,1,103,3,103,2795,8,103,1, + 103,1,103,1,103,1,103,3,103,2801,8,103,3,103,2803,8,103,1,104,1, + 104,1,104,5,104,2808,8,104,10,104,12,104,2811,9,104,1,105,1,105, + 1,105,5,105,2816,8,105,10,105,12,105,2819,9,105,1,106,1,106,1,106, + 5,106,2824,8,106,10,106,12,106,2827,9,106,1,107,1,107,1,107,3,107, + 2832,8,107,1,108,1,108,1,108,3,108,2837,8,108,1,108,1,108,1,109, + 1,109,1,109,3,109,2844,8,109,1,109,1,109,1,110,1,110,3,110,2850, + 8,110,1,110,3,110,2853,8,110,1,110,1,110,3,110,2857,8,110,3,110, + 2859,8,110,1,111,1,111,1,111,5,111,2864,8,111,10,111,12,111,2867, + 9,111,1,112,1,112,1,112,1,112,5,112,2873,8,112,10,112,12,112,2876, + 9,112,1,112,1,112,1,113,1,113,3,113,2882,8,113,1,114,1,114,1,114, + 1,114,1,114,1,114,5,114,2890,8,114,10,114,12,114,2893,9,114,1,114, + 1,114,3,114,2897,8,114,1,115,1,115,3,115,2901,8,115,1,116,1,116, + 1,117,1,117,1,117,1,117,1,118,1,118,3,118,2911,8,118,1,119,1,119, + 1,119,5,119,2916,8,119,10,119,12,119,2919,9,119,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2931,8,120,3,120, + 2933,8,120,1,120,1,120,1,120,1,120,1,120,1,120,5,120,2941,8,120, + 10,120,12,120,2944,9,120,1,121,3,121,2947,8,121,1,121,1,121,1,121, + 1,121,1,121,1,121,3,121,2955,8,121,1,121,1,121,1,121,1,121,1,121, + 5,121,2962,8,121,10,121,12,121,2965,9,121,1,121,1,121,1,121,3,121, + 2970,8,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2978,8,121, + 1,121,1,121,1,121,3,121,2983,8,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,5,121,2993,8,121,10,121,12,121,2996,9,121,1,121, + 1,121,3,121,3000,8,121,1,121,3,121,3003,8,121,1,121,1,121,1,121, + 1,121,3,121,3009,8,121,1,121,1,121,3,121,3013,8,121,1,121,1,121, + 1,121,3,121,3018,8,121,1,121,1,121,1,121,3,121,3023,8,121,1,121, + 1,121,1,121,3,121,3028,8,121,1,122,1,122,1,122,1,122,3,122,3034, + 8,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122, + 1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,5,122,3055, + 8,122,10,122,12,122,3058,9,122,1,123,1,123,1,124,1,124,1,124,1,124, + 1,124,1,124,3,124,3068,8,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,3,124,3080,8,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,4,124,3090,8,124,11,124,12,124,3091,1,124, + 1,124,3,124,3096,8,124,1,124,1,124,1,124,1,124,1,124,4,124,3103, + 8,124,11,124,12,124,3104,1,124,1,124,3,124,3109,8,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,5,124,3125,8,124,10,124,12,124,3128,9,124,3,124,3130,8,124, + 1,124,1,124,1,124,1,124,1,124,1,124,3,124,3138,8,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,3,124,3147,8,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,3,124,3156,8,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,4,124,3177,8,124,11,124,12,124,3178,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,3195,8,124,1,124,1,124,1,124,5,124,3200,8,124, + 10,124,12,124,3203,9,124,3,124,3205,8,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,3,124,3214,8,124,1,124,1,124,3,124,3218,8,124, + 1,124,1,124,3,124,3222,8,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,4,124,3232,8,124,11,124,12,124,3233,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,3259, + 8,124,1,124,1,124,1,124,1,124,1,124,3,124,3266,8,124,1,124,3,124, + 3269,8,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,3284,8,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,3305,8,124,1,124,1,124,3,124,3309, + 8,124,3,124,3311,8,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,5,124,3321,8,124,10,124,12,124,3324,9,124,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,3,125,3333,8,125,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,4,126,3346,8,126,11,126, + 12,126,3347,3,126,3350,8,126,1,127,1,127,1,128,1,128,1,129,1,129, + 1,130,1,130,1,131,1,131,1,131,3,131,3363,8,131,1,132,1,132,3,132, + 3367,8,132,1,133,1,133,1,133,4,133,3372,8,133,11,133,12,133,3373, + 1,134,1,134,1,134,3,134,3379,8,134,1,135,1,135,1,135,1,135,1,135, + 1,136,3,136,3387,8,136,1,136,1,136,1,136,3,136,3392,8,136,1,137, + 1,137,1,138,1,138,1,139,1,139,1,139,3,139,3401,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,1,140, - 1,140,1,140,1,140,1,140,1,140,5,140,3208,8,140,10,140,12,140,3211, - 9,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3221, - 8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3233,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3243,8,142,11,142,12,142,3244,1,142,1,142,3,142,3249,8,142, - 1,142,1,142,1,142,1,142,1,142,4,142,3256,8,142,11,142,12,142,3257, - 1,142,1,142,3,142,3262,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3278,8,142, - 10,142,12,142,3281,9,142,3,142,3283,8,142,1,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3291,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,3,142,3300,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3309,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3330,8,142,11,142,12,142,3331,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3348, - 8,142,1,142,1,142,1,142,5,142,3353,8,142,10,142,12,142,3356,9,142, - 3,142,3358,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 3367,8,142,1,142,1,142,3,142,3371,8,142,1,142,1,142,3,142,3375,8, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,4,142,3385,8, - 142,11,142,12,142,3386,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,3,142,3412,8,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3419,8,142,1,142,3,142,3422,8,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3437,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3458,8,142,1,142,1,142,3,142,3462,8,142,3,142,3464,8,142,1, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3474,8,142,10, - 142,12,142,3477,9,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 3,143,3486,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,4,144,3499,8,144,11,144,12,144,3500,3,144,3503, - 8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149, - 1,149,3,149,3516,8,149,1,150,1,150,3,150,3520,8,150,1,151,1,151, - 1,151,4,151,3525,8,151,11,151,12,151,3526,1,152,1,152,1,152,3,152, - 3532,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,3540,8,154, - 1,154,1,154,1,154,3,154,3545,8,154,1,155,1,155,1,156,1,156,1,157, - 1,157,1,157,3,157,3554,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,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,3586,8,158,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,3603, - 8,159,1,159,1,159,3,159,3607,8,159,1,159,1,159,1,159,1,159,3,159, - 3613,8,159,1,159,1,159,1,159,1,159,3,159,3619,8,159,1,159,1,159, - 1,159,1,159,1,159,5,159,3626,8,159,10,159,12,159,3629,9,159,1,159, - 3,159,3632,8,159,3,159,3634,8,159,1,160,1,160,1,160,5,160,3639,8, - 160,10,160,12,160,3642,9,160,1,161,1,161,1,161,5,161,3647,8,161, - 10,161,12,161,3650,9,161,1,162,1,162,1,162,5,162,3655,8,162,10,162, - 12,162,3658,9,162,1,163,1,163,1,163,5,163,3663,8,163,10,163,12,163, - 3666,9,163,1,164,1,164,1,164,1,164,1,164,3,164,3673,8,164,1,165, - 1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,5,167,3684,8,167, - 10,167,12,167,3687,9,167,1,168,1,168,1,168,1,168,3,168,3693,8,168, - 1,168,3,168,3696,8,168,1,169,1,169,1,169,5,169,3701,8,169,10,169, - 12,169,3704,9,169,1,170,1,170,1,170,5,170,3709,8,170,10,170,12,170, - 3712,9,170,1,171,1,171,1,171,1,171,1,171,3,171,3719,8,171,1,172, - 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3731, - 8,173,10,173,12,173,3734,9,173,1,174,1,174,3,174,3738,8,174,1,174, - 1,174,1,174,3,174,3743,8,174,1,174,3,174,3746,8,174,1,175,1,175, - 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,3757,8,176,10,176, - 12,176,3760,9,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 5,179,3781,8,179,10,179,12,179,3784,9,179,1,179,1,179,1,179,1,179, - 1,179,5,179,3791,8,179,10,179,12,179,3794,9,179,3,179,3796,8,179, - 1,179,1,179,1,179,1,179,1,179,5,179,3803,8,179,10,179,12,179,3806, - 9,179,3,179,3808,8,179,3,179,3810,8,179,1,179,3,179,3813,8,179,1, - 179,3,179,3816,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1, - 180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,3834,8, - 180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3843,8,181,1, - 182,1,182,1,182,5,182,3848,8,182,10,182,12,182,3851,9,182,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,3862,8,183, - 1,184,1,184,1,185,1,185,1,185,5,185,3869,8,185,10,185,12,185,3872, - 9,185,1,186,1,186,1,186,1,187,1,187,4,187,3879,8,187,11,187,12,187, - 3880,1,187,3,187,3884,8,187,1,188,1,188,3,188,3888,8,188,1,189,1, - 189,1,189,1,189,3,189,3894,8,189,1,190,1,190,1,191,1,191,1,192,3, - 192,3901,8,192,1,192,1,192,3,192,3905,8,192,1,192,1,192,3,192,3909, - 8,192,1,192,1,192,3,192,3913,8,192,1,192,1,192,3,192,3917,8,192, - 1,192,1,192,3,192,3921,8,192,1,192,1,192,3,192,3925,8,192,1,192, - 1,192,3,192,3929,8,192,1,192,1,192,3,192,3933,8,192,1,192,1,192, - 3,192,3937,8,192,1,192,3,192,3940,8,192,1,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3953,8,193,1,194, - 1,194,1,195,1,195,3,195,3959,8,195,1,196,1,196,3,196,3963,8,196, - 1,197,1,197,1,198,1,198,1,199,1,199,1,199,9,1137,1207,1215,1232, - 1259,1268,1277,1286,1334,4,104,276,280,284,200,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,0,64,2,0,78,78,229,229,2,0,34,34,247,247,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,173,173,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96, - 96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72,190,190,261,261, - 3,0,73,73,191,191,262,262,4,0,102,102,148,148,270,270,323,323,3, - 0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,3, - 0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291,291,303,303, - 2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,382,382, - 384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360, - 1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316, - 316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369, - 369,11,0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231, - 231,259,259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0, - 74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138, - 138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28, - 160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14, - 14,140,140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67, - 68,134,135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134, - 134,184,184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67, - 134,134,184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352, - 352,2,0,118,118,226,226,2,0,378,378,389,389,1,0,383,384,2,0,96,96, - 269,269,1,0,377,378,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,163,193,195,195,199,201,205, - 207,210,210,212,213,215,219,222,226,228,238,240,249,251,262,264, - 267,269,276,278,292,294,299,302,308,310,310,312,322,326,330,333, - 342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144,144,148, - 148,155,155,158,158,161,161,194,194,203,203,250,250,264,264,270, - 270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143,145,147, - 149,154,156,157,159,160,162,193,195,195,197,202,204,249,251,262, - 265,269,271,292,294,322,324,331,333,351,4586,0,403,1,0,0,0,2,408, - 1,0,0,0,4,1337,1,0,0,0,6,1341,1,0,0,0,8,1343,1,0,0,0,10,1345,1,0, - 0,0,12,1515,1,0,0,0,14,1517,1,0,0,0,16,1532,1,0,0,0,18,1538,1,0, - 0,0,20,1550,1,0,0,0,22,1563,1,0,0,0,24,1566,1,0,0,0,26,1570,1,0, - 0,0,28,1651,1,0,0,0,30,1653,1,0,0,0,32,1657,1,0,0,0,34,1678,1,0, - 0,0,36,1680,1,0,0,0,38,1682,1,0,0,0,40,1689,1,0,0,0,42,1691,1,0, - 0,0,44,1699,1,0,0,0,46,1708,1,0,0,0,48,1719,1,0,0,0,50,1738,1,0, - 0,0,52,1741,1,0,0,0,54,1744,1,0,0,0,56,1755,1,0,0,0,58,1771,1,0, - 0,0,60,1777,1,0,0,0,62,1779,1,0,0,0,64,1790,1,0,0,0,66,1797,1,0, - 0,0,68,1808,1,0,0,0,70,1825,1,0,0,0,72,1833,1,0,0,0,74,1835,1,0, - 0,0,76,1841,1,0,0,0,78,1900,1,0,0,0,80,1902,1,0,0,0,82,1904,1,0, - 0,0,84,1906,1,0,0,0,86,1908,1,0,0,0,88,1910,1,0,0,0,90,1912,1,0, - 0,0,92,1916,1,0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1934,1,0, - 0,0,100,1946,1,0,0,0,102,1998,1,0,0,0,104,2001,1,0,0,0,106,2036, - 1,0,0,0,108,2040,1,0,0,0,110,2049,1,0,0,0,112,2082,1,0,0,0,114,2128, - 1,0,0,0,116,2149,1,0,0,0,118,2181,1,0,0,0,120,2193,1,0,0,0,122,2196, - 1,0,0,0,124,2205,1,0,0,0,126,2219,1,0,0,0,128,2238,1,0,0,0,130,2258, - 1,0,0,0,132,2264,1,0,0,0,134,2266,1,0,0,0,136,2274,1,0,0,0,138,2278, - 1,0,0,0,140,2281,1,0,0,0,142,2284,1,0,0,0,144,2310,1,0,0,0,146,2312, - 1,0,0,0,148,2333,1,0,0,0,150,2349,1,0,0,0,152,2390,1,0,0,0,154,2395, - 1,0,0,0,156,2422,1,0,0,0,158,2426,1,0,0,0,160,2448,1,0,0,0,162,2450, - 1,0,0,0,164,2480,1,0,0,0,166,2482,1,0,0,0,168,2489,1,0,0,0,170,2502, - 1,0,0,0,172,2507,1,0,0,0,174,2509,1,0,0,0,176,2524,1,0,0,0,178,2548, - 1,0,0,0,180,2561,1,0,0,0,182,2563,1,0,0,0,184,2565,1,0,0,0,186,2569, - 1,0,0,0,188,2572,1,0,0,0,190,2576,1,0,0,0,192,2580,1,0,0,0,194,2583, - 1,0,0,0,196,2615,1,0,0,0,198,2628,1,0,0,0,200,2633,1,0,0,0,202,2652, - 1,0,0,0,204,2678,1,0,0,0,206,2684,1,0,0,0,208,2686,1,0,0,0,210,2722, - 1,0,0,0,212,2724,1,0,0,0,214,2728,1,0,0,0,216,2736,1,0,0,0,218,2747, - 1,0,0,0,220,2751,1,0,0,0,222,2762,1,0,0,0,224,2797,1,0,0,0,226,2799, - 1,0,0,0,228,2829,1,0,0,0,230,2850,1,0,0,0,232,2870,1,0,0,0,234,2876, - 1,0,0,0,236,2880,1,0,0,0,238,2882,1,0,0,0,240,2904,1,0,0,0,242,2955, - 1,0,0,0,244,2957,1,0,0,0,246,2965,1,0,0,0,248,2973,1,0,0,0,250,2981, - 1,0,0,0,252,2989,1,0,0,0,254,2996,1,0,0,0,256,3002,1,0,0,0,258,3013, - 1,0,0,0,260,3021,1,0,0,0,262,3034,1,0,0,0,264,3049,1,0,0,0,266,3053, - 1,0,0,0,268,3055,1,0,0,0,270,3057,1,0,0,0,272,3063,1,0,0,0,274,3065, - 1,0,0,0,276,3085,1,0,0,0,278,3180,1,0,0,0,280,3186,1,0,0,0,282,3212, - 1,0,0,0,284,3463,1,0,0,0,286,3485,1,0,0,0,288,3502,1,0,0,0,290,3504, - 1,0,0,0,292,3506,1,0,0,0,294,3508,1,0,0,0,296,3510,1,0,0,0,298,3512, - 1,0,0,0,300,3517,1,0,0,0,302,3524,1,0,0,0,304,3528,1,0,0,0,306,3533, - 1,0,0,0,308,3539,1,0,0,0,310,3546,1,0,0,0,312,3548,1,0,0,0,314,3553, - 1,0,0,0,316,3585,1,0,0,0,318,3633,1,0,0,0,320,3635,1,0,0,0,322,3643, - 1,0,0,0,324,3651,1,0,0,0,326,3659,1,0,0,0,328,3672,1,0,0,0,330,3674, - 1,0,0,0,332,3677,1,0,0,0,334,3680,1,0,0,0,336,3688,1,0,0,0,338,3697, - 1,0,0,0,340,3705,1,0,0,0,342,3718,1,0,0,0,344,3720,1,0,0,0,346,3727, - 1,0,0,0,348,3735,1,0,0,0,350,3747,1,0,0,0,352,3752,1,0,0,0,354,3761, - 1,0,0,0,356,3765,1,0,0,0,358,3815,1,0,0,0,360,3833,1,0,0,0,362,3842, - 1,0,0,0,364,3844,1,0,0,0,366,3861,1,0,0,0,368,3863,1,0,0,0,370,3865, - 1,0,0,0,372,3873,1,0,0,0,374,3883,1,0,0,0,376,3887,1,0,0,0,378,3893, - 1,0,0,0,380,3895,1,0,0,0,382,3897,1,0,0,0,384,3939,1,0,0,0,386,3952, - 1,0,0,0,388,3954,1,0,0,0,390,3958,1,0,0,0,392,3962,1,0,0,0,394,3964, - 1,0,0,0,396,3966,1,0,0,0,398,3968,1,0,0,0,400,402,3,2,1,0,401,400, - 1,0,0,0,402,405,1,0,0,0,403,401,1,0,0,0,403,404,1,0,0,0,404,406, - 1,0,0,0,405,403,1,0,0,0,406,407,5,0,0,1,407,1,1,0,0,0,408,410,3, - 4,2,0,409,411,5,1,0,0,410,409,1,0,0,0,410,411,1,0,0,0,411,3,1,0, - 0,0,412,1338,3,26,13,0,413,415,3,44,22,0,414,413,1,0,0,0,414,415, - 1,0,0,0,415,416,1,0,0,0,416,1338,3,78,39,0,417,419,5,330,0,0,418, - 420,3,36,18,0,419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 1338,3,80,40,0,422,423,5,269,0,0,423,426,5,37,0,0,424,427,3,376, - 188,0,425,427,3,388,194,0,426,424,1,0,0,0,426,425,1,0,0,0,427,1338, - 1,0,0,0,428,429,5,59,0,0,429,431,3,36,18,0,430,432,3,190,95,0,431, - 430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,441,3,82,41,0,434, - 440,3,24,12,0,435,440,3,22,11,0,436,437,5,346,0,0,437,438,7,0,0, - 0,438,440,3,54,27,0,439,434,1,0,0,0,439,435,1,0,0,0,439,436,1,0, - 0,0,440,443,1,0,0,0,441,439,1,0,0,0,441,442,1,0,0,0,442,1338,1,0, - 0,0,443,441,1,0,0,0,444,445,5,11,0,0,445,446,3,36,18,0,446,447,3, - 80,40,0,447,448,5,269,0,0,448,449,7,0,0,0,449,450,3,54,27,0,450, - 1338,1,0,0,0,451,452,5,11,0,0,452,453,3,36,18,0,453,454,3,80,40, - 0,454,455,5,269,0,0,455,456,3,22,11,0,456,1338,1,0,0,0,457,458,5, - 96,0,0,458,460,3,36,18,0,459,461,3,192,96,0,460,459,1,0,0,0,460, - 461,1,0,0,0,461,462,1,0,0,0,462,464,3,80,40,0,463,465,7,1,0,0,464, - 463,1,0,0,0,464,465,1,0,0,0,465,1338,1,0,0,0,466,467,5,273,0,0,467, - 470,3,38,19,0,468,469,7,2,0,0,469,471,3,246,123,0,470,468,1,0,0, - 0,470,471,1,0,0,0,471,476,1,0,0,0,472,474,5,163,0,0,473,472,1,0, - 0,0,473,474,1,0,0,0,474,475,1,0,0,0,475,477,3,388,194,0,476,473, - 1,0,0,0,476,477,1,0,0,0,477,1338,1,0,0,0,478,483,3,14,7,0,479,480, - 5,2,0,0,480,481,3,338,169,0,481,482,5,3,0,0,482,484,1,0,0,0,483, - 479,1,0,0,0,483,484,1,0,0,0,484,486,1,0,0,0,485,487,3,48,24,0,486, - 485,1,0,0,0,486,487,1,0,0,0,487,488,1,0,0,0,488,493,3,50,25,0,489, - 491,5,20,0,0,490,489,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492, - 494,3,26,13,0,493,490,1,0,0,0,493,494,1,0,0,0,494,1338,1,0,0,0,495, - 496,5,59,0,0,496,498,5,293,0,0,497,499,3,190,95,0,498,497,1,0,0, - 0,498,499,1,0,0,0,499,500,1,0,0,0,500,501,3,84,42,0,501,502,5,163, - 0,0,502,512,3,86,43,0,503,511,3,48,24,0,504,511,3,242,121,0,505, - 511,3,70,35,0,506,511,3,22,11,0,507,508,5,297,0,0,508,511,3,54,27, - 0,509,511,3,52,26,0,510,503,1,0,0,0,510,504,1,0,0,0,510,505,1,0, - 0,0,510,506,1,0,0,0,510,507,1,0,0,0,510,509,1,0,0,0,511,514,1,0, - 0,0,512,510,1,0,0,0,512,513,1,0,0,0,513,1338,1,0,0,0,514,512,1,0, - 0,0,515,520,3,16,8,0,516,517,5,2,0,0,517,518,3,338,169,0,518,519, - 5,3,0,0,519,521,1,0,0,0,520,516,1,0,0,0,520,521,1,0,0,0,521,523, - 1,0,0,0,522,524,3,48,24,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525, - 1,0,0,0,525,530,3,50,25,0,526,528,5,20,0,0,527,526,1,0,0,0,527,528, - 1,0,0,0,528,529,1,0,0,0,529,531,3,26,13,0,530,527,1,0,0,0,530,531, - 1,0,0,0,531,1338,1,0,0,0,532,533,5,13,0,0,533,534,5,293,0,0,534, - 536,3,86,43,0,535,537,3,32,16,0,536,535,1,0,0,0,536,537,1,0,0,0, - 537,538,1,0,0,0,538,539,5,55,0,0,539,547,5,282,0,0,540,548,5,196, - 0,0,541,542,5,119,0,0,542,543,5,50,0,0,543,548,3,94,47,0,544,545, - 5,119,0,0,545,546,5,10,0,0,546,548,5,50,0,0,547,540,1,0,0,0,547, - 541,1,0,0,0,547,544,1,0,0,0,547,548,1,0,0,0,548,1338,1,0,0,0,549, - 550,5,13,0,0,550,553,5,294,0,0,551,552,7,2,0,0,552,554,3,80,40,0, - 553,551,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,5,55,0,0, - 556,558,5,282,0,0,557,559,5,196,0,0,558,557,1,0,0,0,558,559,1,0, - 0,0,559,1338,1,0,0,0,560,561,5,11,0,0,561,562,5,293,0,0,562,563, - 3,86,43,0,563,564,5,8,0,0,564,565,5,49,0,0,565,566,3,322,161,0,566, - 1338,1,0,0,0,567,568,5,11,0,0,568,569,5,293,0,0,569,570,3,86,43, - 0,570,571,5,8,0,0,571,572,5,50,0,0,572,573,5,2,0,0,573,574,3,320, - 160,0,574,575,5,3,0,0,575,1338,1,0,0,0,576,577,5,11,0,0,577,578, - 5,293,0,0,578,579,3,86,43,0,579,580,5,241,0,0,580,581,5,49,0,0,581, - 582,3,92,46,0,582,583,5,309,0,0,583,584,3,96,48,0,584,1338,1,0,0, - 0,585,586,5,11,0,0,586,587,5,293,0,0,587,588,3,86,43,0,588,589,5, - 96,0,0,589,591,5,49,0,0,590,592,3,192,96,0,591,590,1,0,0,0,591,592, - 1,0,0,0,592,593,1,0,0,0,593,594,3,92,46,0,594,1338,1,0,0,0,595,596, - 5,11,0,0,596,597,5,293,0,0,597,598,3,86,43,0,598,599,5,96,0,0,599, - 601,5,50,0,0,600,602,3,192,96,0,601,600,1,0,0,0,601,602,1,0,0,0, - 602,603,1,0,0,0,603,604,5,2,0,0,604,605,3,94,47,0,605,606,5,3,0, - 0,606,1338,1,0,0,0,607,612,5,11,0,0,608,609,5,293,0,0,609,613,3, - 86,43,0,610,611,5,338,0,0,611,613,3,90,45,0,612,608,1,0,0,0,612, - 610,1,0,0,0,613,614,1,0,0,0,614,615,5,241,0,0,615,616,5,309,0,0, - 616,617,3,246,123,0,617,1338,1,0,0,0,618,623,5,11,0,0,619,620,5, - 293,0,0,620,624,3,86,43,0,621,622,5,338,0,0,622,624,3,90,45,0,623, - 619,1,0,0,0,623,621,1,0,0,0,624,625,1,0,0,0,625,626,5,269,0,0,626, - 627,5,297,0,0,627,628,3,54,27,0,628,1338,1,0,0,0,629,634,5,11,0, - 0,630,631,5,293,0,0,631,635,3,86,43,0,632,633,5,338,0,0,633,635, - 3,90,45,0,634,630,1,0,0,0,634,632,1,0,0,0,635,636,1,0,0,0,636,637, - 5,328,0,0,637,639,5,297,0,0,638,640,3,192,96,0,639,638,1,0,0,0,639, - 640,1,0,0,0,640,641,1,0,0,0,641,642,3,54,27,0,642,1338,1,0,0,0,643, - 644,5,11,0,0,644,645,5,293,0,0,645,646,3,86,43,0,646,648,7,3,0,0, - 647,649,5,49,0,0,648,647,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0, - 650,652,3,92,46,0,651,653,3,386,193,0,652,651,1,0,0,0,652,653,1, - 0,0,0,653,1338,1,0,0,0,654,655,5,11,0,0,655,656,5,293,0,0,656,658, - 3,86,43,0,657,659,3,32,16,0,658,657,1,0,0,0,658,659,1,0,0,0,659, - 660,1,0,0,0,660,662,5,39,0,0,661,663,5,49,0,0,662,661,1,0,0,0,662, - 663,1,0,0,0,663,664,1,0,0,0,664,665,3,92,46,0,665,667,3,336,168, - 0,666,668,3,314,157,0,667,666,1,0,0,0,667,668,1,0,0,0,668,1338,1, - 0,0,0,669,670,5,11,0,0,670,671,5,293,0,0,671,673,3,86,43,0,672,674, - 3,32,16,0,673,672,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676, - 5,244,0,0,676,677,5,50,0,0,677,678,5,2,0,0,678,679,3,324,162,0,679, - 680,5,3,0,0,680,1338,1,0,0,0,681,682,5,11,0,0,682,683,5,293,0,0, - 683,685,3,86,43,0,684,686,3,32,16,0,685,684,1,0,0,0,685,686,1,0, - 0,0,686,687,1,0,0,0,687,688,5,269,0,0,688,689,5,266,0,0,689,693, - 3,388,194,0,690,691,5,346,0,0,691,692,5,267,0,0,692,694,3,54,27, - 0,693,690,1,0,0,0,693,694,1,0,0,0,694,1338,1,0,0,0,695,696,5,11, - 0,0,696,697,5,293,0,0,697,699,3,86,43,0,698,700,3,32,16,0,699,698, - 1,0,0,0,699,700,1,0,0,0,700,701,1,0,0,0,701,702,5,269,0,0,702,703, - 5,267,0,0,703,704,3,54,27,0,704,1338,1,0,0,0,705,710,5,11,0,0,706, - 707,5,293,0,0,707,711,3,86,43,0,708,709,5,338,0,0,709,711,3,90,45, - 0,710,706,1,0,0,0,710,708,1,0,0,0,711,712,1,0,0,0,712,714,5,8,0, - 0,713,715,3,190,95,0,714,713,1,0,0,0,714,715,1,0,0,0,715,717,1,0, - 0,0,716,718,3,30,15,0,717,716,1,0,0,0,718,719,1,0,0,0,719,717,1, - 0,0,0,719,720,1,0,0,0,720,1338,1,0,0,0,721,722,5,11,0,0,722,723, - 5,293,0,0,723,724,3,86,43,0,724,725,3,32,16,0,725,726,5,241,0,0, - 726,727,5,309,0,0,727,728,3,32,16,0,728,1338,1,0,0,0,729,734,5,11, - 0,0,730,731,5,293,0,0,731,735,3,86,43,0,732,733,5,338,0,0,733,735, - 3,90,45,0,734,730,1,0,0,0,734,732,1,0,0,0,735,736,1,0,0,0,736,738, - 5,96,0,0,737,739,3,192,96,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 740,1,0,0,0,740,745,3,32,16,0,741,742,5,4,0,0,742,744,3,32,16,0, - 743,741,1,0,0,0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0, - 746,749,1,0,0,0,747,745,1,0,0,0,748,750,5,230,0,0,749,748,1,0,0, - 0,749,750,1,0,0,0,750,1338,1,0,0,0,751,752,5,11,0,0,752,753,5,293, - 0,0,753,755,3,86,43,0,754,756,3,32,16,0,755,754,1,0,0,0,755,756, - 1,0,0,0,756,757,1,0,0,0,757,758,5,269,0,0,758,759,3,22,11,0,759, - 1338,1,0,0,0,760,761,5,11,0,0,761,762,5,293,0,0,762,763,3,86,43, - 0,763,764,5,237,0,0,764,765,5,219,0,0,765,1338,1,0,0,0,766,767,5, - 11,0,0,767,768,5,176,0,0,768,769,5,338,0,0,769,770,3,90,45,0,770, - 771,7,4,0,0,771,772,5,248,0,0,772,1338,1,0,0,0,773,774,5,11,0,0, - 774,775,5,176,0,0,775,776,5,338,0,0,776,777,3,90,45,0,777,778,5, - 269,0,0,778,779,5,297,0,0,779,780,3,54,27,0,780,1338,1,0,0,0,781, - 782,5,96,0,0,782,784,5,293,0,0,783,785,3,192,96,0,784,783,1,0,0, - 0,784,785,1,0,0,0,785,786,1,0,0,0,786,788,3,86,43,0,787,789,5,230, - 0,0,788,787,1,0,0,0,788,789,1,0,0,0,789,1338,1,0,0,0,790,791,5,96, - 0,0,791,793,5,338,0,0,792,794,3,192,96,0,793,792,1,0,0,0,793,794, - 1,0,0,0,794,795,1,0,0,0,795,1338,3,90,45,0,796,797,5,96,0,0,797, - 798,5,176,0,0,798,800,5,338,0,0,799,801,3,192,96,0,800,799,1,0,0, - 0,800,801,1,0,0,0,801,802,1,0,0,0,802,1338,3,90,45,0,803,806,5,59, - 0,0,804,805,5,208,0,0,805,807,5,244,0,0,806,804,1,0,0,0,806,807, - 1,0,0,0,807,812,1,0,0,0,808,810,5,128,0,0,809,808,1,0,0,0,809,810, - 1,0,0,0,810,811,1,0,0,0,811,813,5,298,0,0,812,809,1,0,0,0,812,813, - 1,0,0,0,813,814,1,0,0,0,814,816,5,338,0,0,815,817,3,190,95,0,816, - 815,1,0,0,0,816,817,1,0,0,0,817,818,1,0,0,0,818,820,3,88,44,0,819, - 821,3,220,110,0,820,819,1,0,0,0,820,821,1,0,0,0,821,830,1,0,0,0, - 822,829,3,24,12,0,823,824,5,218,0,0,824,825,5,203,0,0,825,829,3, - 212,106,0,826,827,5,297,0,0,827,829,3,54,27,0,828,822,1,0,0,0,828, - 823,1,0,0,0,828,826,1,0,0,0,829,832,1,0,0,0,830,828,1,0,0,0,830, - 831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0,833,834,5,20,0,0,834, - 835,3,26,13,0,835,1338,1,0,0,0,836,839,5,59,0,0,837,838,5,208,0, - 0,838,840,5,244,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0, - 0,0,841,843,5,128,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1, - 0,0,0,844,845,5,298,0,0,845,846,5,338,0,0,846,851,3,88,44,0,847, - 848,5,2,0,0,848,849,3,334,167,0,849,850,5,3,0,0,850,852,1,0,0,0, - 851,847,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853,856,3,48,24, - 0,854,855,5,207,0,0,855,857,3,54,27,0,856,854,1,0,0,0,856,857,1, - 0,0,0,857,1338,1,0,0,0,858,859,5,11,0,0,859,860,5,338,0,0,860,862, - 3,90,45,0,861,863,5,20,0,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864, - 1,0,0,0,864,865,3,26,13,0,865,1338,1,0,0,0,866,869,5,59,0,0,867, - 868,5,208,0,0,868,870,5,244,0,0,869,867,1,0,0,0,869,870,1,0,0,0, - 870,872,1,0,0,0,871,873,5,298,0,0,872,871,1,0,0,0,872,873,1,0,0, - 0,873,874,1,0,0,0,874,876,5,125,0,0,875,877,3,190,95,0,876,875,1, - 0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,368,184,0,879,880, - 5,20,0,0,880,890,3,388,194,0,881,882,5,332,0,0,882,887,3,76,38,0, - 883,884,5,4,0,0,884,886,3,76,38,0,885,883,1,0,0,0,886,889,1,0,0, - 0,887,885,1,0,0,0,887,888,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0, - 0,890,881,1,0,0,0,890,891,1,0,0,0,891,1338,1,0,0,0,892,893,5,59, - 0,0,893,894,5,176,0,0,894,896,5,338,0,0,895,897,3,190,95,0,896,895, - 1,0,0,0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,3,88,44,0,899,901, - 3,48,24,0,900,899,1,0,0,0,900,901,1,0,0,0,901,917,1,0,0,0,902,903, - 5,207,0,0,903,916,3,54,27,0,904,905,5,218,0,0,905,906,5,31,0,0,906, - 916,3,260,130,0,907,916,3,20,10,0,908,916,3,18,9,0,909,916,3,242, - 121,0,910,916,3,70,35,0,911,916,3,22,11,0,912,916,3,24,12,0,913, - 914,5,297,0,0,914,916,3,54,27,0,915,902,1,0,0,0,915,904,1,0,0,0, - 915,907,1,0,0,0,915,908,1,0,0,0,915,909,1,0,0,0,915,910,1,0,0,0, - 915,911,1,0,0,0,915,912,1,0,0,0,915,913,1,0,0,0,916,919,1,0,0,0, - 917,915,1,0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,917,1,0,0,0, - 920,921,5,20,0,0,921,922,3,26,13,0,922,1338,1,0,0,0,923,925,5,96, - 0,0,924,926,5,298,0,0,925,924,1,0,0,0,925,926,1,0,0,0,926,927,1, - 0,0,0,927,929,5,125,0,0,928,930,3,192,96,0,929,928,1,0,0,0,929,930, - 1,0,0,0,930,931,1,0,0,0,931,1338,3,366,183,0,932,935,5,81,0,0,933, - 934,5,208,0,0,934,936,5,244,0,0,935,933,1,0,0,0,935,936,1,0,0,0, - 936,938,1,0,0,0,937,939,5,336,0,0,938,937,1,0,0,0,938,939,1,0,0, - 0,939,940,1,0,0,0,940,942,3,366,183,0,941,943,3,318,159,0,942,941, - 1,0,0,0,942,943,1,0,0,0,943,945,1,0,0,0,944,946,3,332,166,0,945, - 944,1,0,0,0,945,946,1,0,0,0,946,1338,1,0,0,0,947,948,5,96,0,0,948, - 949,5,298,0,0,949,951,5,336,0,0,950,952,3,192,96,0,951,950,1,0,0, - 0,951,952,1,0,0,0,952,956,1,0,0,0,953,957,3,86,43,0,954,957,3,90, - 45,0,955,957,3,366,183,0,956,953,1,0,0,0,956,954,1,0,0,0,956,955, - 1,0,0,0,957,1338,1,0,0,0,958,960,5,106,0,0,959,961,7,5,0,0,960,959, - 1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,1338,3,4,2,0,963,964, - 5,273,0,0,964,967,5,294,0,0,965,966,7,2,0,0,966,968,3,80,40,0,967, - 965,1,0,0,0,967,968,1,0,0,0,968,973,1,0,0,0,969,971,5,163,0,0,970, - 969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,388,194,0, - 973,970,1,0,0,0,973,974,1,0,0,0,974,1338,1,0,0,0,975,976,5,273,0, - 0,976,977,5,293,0,0,977,980,5,108,0,0,978,979,7,2,0,0,979,981,3, - 80,40,0,980,978,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983, - 5,163,0,0,983,985,3,388,194,0,984,986,3,32,16,0,985,984,1,0,0,0, - 985,986,1,0,0,0,986,1338,1,0,0,0,987,988,5,273,0,0,988,989,5,297, - 0,0,989,994,3,86,43,0,990,991,5,2,0,0,991,992,3,58,29,0,992,993, - 5,3,0,0,993,995,1,0,0,0,994,990,1,0,0,0,994,995,1,0,0,0,995,1338, - 1,0,0,0,996,997,5,273,0,0,997,998,5,50,0,0,998,999,7,2,0,0,999,1002, - 3,86,43,0,1000,1001,7,2,0,0,1001,1003,3,80,40,0,1002,1000,1,0,0, - 0,1002,1003,1,0,0,0,1003,1338,1,0,0,0,1004,1005,5,273,0,0,1005,1008, - 5,339,0,0,1006,1007,7,2,0,0,1007,1009,3,80,40,0,1008,1006,1,0,0, - 0,1008,1009,1,0,0,0,1009,1014,1,0,0,0,1010,1012,5,163,0,0,1011,1010, - 1,0,0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1015,3,388,194, - 0,1014,1011,1,0,0,0,1014,1015,1,0,0,0,1015,1338,1,0,0,0,1016,1017, - 5,273,0,0,1017,1018,5,219,0,0,1018,1020,3,86,43,0,1019,1021,3,32, - 16,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1338,1,0,0,0,1022, - 1024,5,273,0,0,1023,1025,3,148,74,0,1024,1023,1,0,0,0,1024,1025, - 1,0,0,0,1025,1026,1,0,0,0,1026,1029,5,126,0,0,1027,1028,7,2,0,0, - 1028,1030,3,80,40,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1038, - 1,0,0,0,1031,1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0, - 1033,1036,1,0,0,0,1034,1037,3,246,123,0,1035,1037,3,388,194,0,1036, - 1034,1,0,0,0,1036,1035,1,0,0,0,1037,1039,1,0,0,0,1038,1032,1,0,0, - 0,1038,1039,1,0,0,0,1039,1338,1,0,0,0,1040,1041,5,273,0,0,1041,1042, - 5,59,0,0,1042,1043,5,293,0,0,1043,1046,3,86,43,0,1044,1045,5,20, - 0,0,1045,1047,5,266,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, - 1338,1,0,0,0,1048,1049,5,273,0,0,1049,1050,5,62,0,0,1050,1338,3, - 36,18,0,1051,1052,5,273,0,0,1052,1057,5,38,0,0,1053,1055,5,163,0, - 0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056,1,0,0,0,1056,1058, - 3,388,194,0,1057,1054,1,0,0,0,1057,1058,1,0,0,0,1058,1338,1,0,0, - 0,1059,1060,5,273,0,0,1060,1061,5,176,0,0,1061,1064,5,339,0,0,1062, - 1063,7,2,0,0,1063,1065,3,80,40,0,1064,1062,1,0,0,0,1064,1065,1,0, - 0,0,1065,1070,1,0,0,0,1066,1068,5,163,0,0,1067,1066,1,0,0,0,1067, - 1068,1,0,0,0,1068,1069,1,0,0,0,1069,1071,3,388,194,0,1070,1067,1, - 0,0,0,1070,1071,1,0,0,0,1071,1338,1,0,0,0,1072,1073,5,273,0,0,1073, - 1074,5,59,0,0,1074,1075,5,176,0,0,1075,1076,5,338,0,0,1076,1079, - 3,90,45,0,1077,1078,5,20,0,0,1078,1080,5,266,0,0,1079,1077,1,0,0, - 0,1079,1080,1,0,0,0,1080,1338,1,0,0,0,1081,1082,7,6,0,0,1082,1084, - 5,125,0,0,1083,1085,5,108,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0, - 0,1085,1086,1,0,0,0,1086,1338,3,40,20,0,1087,1088,7,6,0,0,1088,1090, - 5,72,0,0,1089,1091,5,108,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0, - 1091,1092,1,0,0,0,1092,1338,3,80,40,0,1093,1095,7,6,0,0,1094,1096, - 5,293,0,0,1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, - 1097,1099,7,7,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100, - 1,0,0,0,1100,1102,3,86,43,0,1101,1103,3,32,16,0,1102,1101,1,0,0, - 0,1102,1103,1,0,0,0,1103,1105,1,0,0,0,1104,1106,3,42,21,0,1105,1104, - 1,0,0,0,1105,1106,1,0,0,0,1106,1338,1,0,0,0,1107,1109,7,6,0,0,1108, - 1110,5,232,0,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0, - 0,0,1111,1338,3,26,13,0,1112,1113,5,51,0,0,1113,1114,5,203,0,0,1114, - 1115,3,36,18,0,1115,1116,3,80,40,0,1116,1117,5,153,0,0,1117,1118, - 3,390,195,0,1118,1338,1,0,0,0,1119,1120,5,51,0,0,1120,1121,5,203, - 0,0,1121,1122,5,293,0,0,1122,1123,3,86,43,0,1123,1124,5,153,0,0, - 1124,1125,3,390,195,0,1125,1338,1,0,0,0,1126,1127,5,240,0,0,1127, - 1128,5,293,0,0,1128,1338,3,86,43,0,1129,1130,5,240,0,0,1130,1131, - 5,125,0,0,1131,1338,3,366,183,0,1132,1140,5,240,0,0,1133,1141,3, - 388,194,0,1134,1136,9,0,0,0,1135,1134,1,0,0,0,1136,1139,1,0,0,0, - 1137,1138,1,0,0,0,1137,1135,1,0,0,0,1138,1141,1,0,0,0,1139,1137, - 1,0,0,0,1140,1133,1,0,0,0,1140,1137,1,0,0,0,1141,1338,1,0,0,0,1142, - 1143,5,240,0,0,1143,1144,5,176,0,0,1144,1145,5,338,0,0,1145,1338, - 3,90,45,0,1146,1148,5,33,0,0,1147,1149,5,159,0,0,1148,1147,1,0,0, - 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,293,0,0,1151,1154, - 3,86,43,0,1152,1153,5,207,0,0,1153,1155,3,54,27,0,1154,1152,1,0, - 0,0,1154,1155,1,0,0,0,1155,1160,1,0,0,0,1156,1158,5,20,0,0,1157, - 1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1161,3,26, - 13,0,1160,1157,1,0,0,0,1160,1161,1,0,0,0,1161,1338,1,0,0,0,1162, - 1163,5,322,0,0,1163,1165,5,293,0,0,1164,1166,3,192,96,0,1165,1164, - 1,0,0,0,1165,1166,1,0,0,0,1166,1167,1,0,0,0,1167,1338,3,86,43,0, - 1168,1169,5,43,0,0,1169,1338,5,33,0,0,1170,1171,5,168,0,0,1171,1173, - 5,70,0,0,1172,1174,5,169,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0, - 1174,1175,1,0,0,0,1175,1176,5,145,0,0,1176,1178,3,388,194,0,1177, - 1179,5,216,0,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1180,1,0, - 0,0,1180,1181,5,152,0,0,1181,1182,5,293,0,0,1182,1184,3,86,43,0, - 1183,1185,3,32,16,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1338, - 1,0,0,0,1186,1187,5,317,0,0,1187,1188,5,293,0,0,1188,1190,3,86,43, - 0,1189,1191,3,32,16,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1338, - 1,0,0,0,1192,1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1196,5,242,0,0,1196,1197,5,293,0,0,1197,1200, - 3,86,43,0,1198,1199,7,8,0,0,1199,1201,5,219,0,0,1200,1198,1,0,0, - 0,1200,1201,1,0,0,0,1201,1338,1,0,0,0,1202,1203,7,9,0,0,1203,1207, - 3,376,188,0,1204,1206,9,0,0,0,1205,1204,1,0,0,0,1206,1209,1,0,0, - 0,1207,1208,1,0,0,0,1207,1205,1,0,0,0,1208,1338,1,0,0,0,1209,1207, - 1,0,0,0,1210,1211,5,269,0,0,1211,1215,5,253,0,0,1212,1214,9,0,0, - 0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215,1213, - 1,0,0,0,1216,1338,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269,0,0, - 1219,1220,5,301,0,0,1220,1221,5,350,0,0,1221,1338,3,298,149,0,1222, - 1223,5,269,0,0,1223,1224,5,301,0,0,1224,1225,5,350,0,0,1225,1338, - 3,6,3,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228,1232,5,350, - 0,0,1229,1231,9,0,0,0,1230,1229,1,0,0,0,1231,1234,1,0,0,0,1232,1233, - 1,0,0,0,1232,1230,1,0,0,0,1233,1338,1,0,0,0,1234,1232,1,0,0,0,1235, - 1236,5,269,0,0,1236,1237,7,10,0,0,1237,1338,3,134,67,0,1238,1239, - 5,269,0,0,1239,1240,7,10,0,0,1240,1241,5,2,0,0,1241,1242,3,244,122, - 0,1242,1243,5,3,0,0,1243,1244,5,352,0,0,1244,1245,5,2,0,0,1245,1246, - 3,26,13,0,1246,1247,5,3,0,0,1247,1338,1,0,0,0,1248,1249,5,269,0, - 0,1249,1250,3,8,4,0,1250,1251,5,352,0,0,1251,1252,3,10,5,0,1252, - 1338,1,0,0,0,1253,1254,5,269,0,0,1254,1262,3,8,4,0,1255,1259,5,352, - 0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259,1260, - 1,0,0,0,1259,1257,1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1262, - 1255,1,0,0,0,1262,1263,1,0,0,0,1263,1338,1,0,0,0,1264,1268,5,269, - 0,0,1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, - 1,0,0,0,1268,1266,1,0,0,0,1269,1271,1,0,0,0,1270,1268,1,0,0,0,1271, - 1272,5,352,0,0,1272,1338,3,10,5,0,1273,1277,5,269,0,0,1274,1276, - 9,0,0,0,1275,1274,1,0,0,0,1276,1279,1,0,0,0,1277,1278,1,0,0,0,1277, - 1275,1,0,0,0,1278,1338,1,0,0,0,1279,1277,1,0,0,0,1280,1281,5,245, - 0,0,1281,1338,3,8,4,0,1282,1286,5,245,0,0,1283,1285,9,0,0,0,1284, - 1283,1,0,0,0,1285,1288,1,0,0,0,1286,1287,1,0,0,0,1286,1284,1,0,0, - 0,1287,1338,1,0,0,0,1288,1286,1,0,0,0,1289,1290,5,59,0,0,1290,1292, - 5,142,0,0,1291,1293,3,190,95,0,1292,1291,1,0,0,0,1292,1293,1,0,0, - 0,1293,1294,1,0,0,0,1294,1295,3,376,188,0,1295,1297,5,203,0,0,1296, - 1298,5,293,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, - 0,0,1299,1302,3,86,43,0,1300,1301,5,332,0,0,1301,1303,3,376,188, - 0,1302,1300,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, - 5,2,0,0,1305,1306,3,248,124,0,1306,1309,5,3,0,0,1307,1308,5,207, - 0,0,1308,1310,3,54,27,0,1309,1307,1,0,0,0,1309,1310,1,0,0,0,1310, - 1338,1,0,0,0,1311,1312,5,96,0,0,1312,1314,5,142,0,0,1313,1315,3, - 192,96,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316, - 1317,3,376,188,0,1317,1319,5,203,0,0,1318,1320,5,293,0,0,1319,1318, - 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,86,43,0, - 1322,1338,1,0,0,0,1323,1324,5,205,0,0,1324,1326,3,86,43,0,1325,1327, - 3,138,69,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0, - 1328,1329,3,354,177,0,1329,1338,1,0,0,0,1330,1334,3,12,6,0,1331, - 1333,9,0,0,0,1332,1331,1,0,0,0,1333,1336,1,0,0,0,1334,1335,1,0,0, - 0,1334,1332,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0,1337,412, - 1,0,0,0,1337,414,1,0,0,0,1337,417,1,0,0,0,1337,422,1,0,0,0,1337, - 428,1,0,0,0,1337,444,1,0,0,0,1337,451,1,0,0,0,1337,457,1,0,0,0,1337, - 466,1,0,0,0,1337,478,1,0,0,0,1337,495,1,0,0,0,1337,515,1,0,0,0,1337, - 532,1,0,0,0,1337,549,1,0,0,0,1337,560,1,0,0,0,1337,567,1,0,0,0,1337, - 576,1,0,0,0,1337,585,1,0,0,0,1337,595,1,0,0,0,1337,607,1,0,0,0,1337, - 618,1,0,0,0,1337,629,1,0,0,0,1337,643,1,0,0,0,1337,654,1,0,0,0,1337, - 669,1,0,0,0,1337,681,1,0,0,0,1337,695,1,0,0,0,1337,705,1,0,0,0,1337, - 721,1,0,0,0,1337,729,1,0,0,0,1337,751,1,0,0,0,1337,760,1,0,0,0,1337, - 766,1,0,0,0,1337,773,1,0,0,0,1337,781,1,0,0,0,1337,790,1,0,0,0,1337, - 796,1,0,0,0,1337,803,1,0,0,0,1337,836,1,0,0,0,1337,858,1,0,0,0,1337, - 866,1,0,0,0,1337,892,1,0,0,0,1337,923,1,0,0,0,1337,932,1,0,0,0,1337, - 947,1,0,0,0,1337,958,1,0,0,0,1337,963,1,0,0,0,1337,975,1,0,0,0,1337, - 987,1,0,0,0,1337,996,1,0,0,0,1337,1004,1,0,0,0,1337,1016,1,0,0,0, - 1337,1022,1,0,0,0,1337,1040,1,0,0,0,1337,1048,1,0,0,0,1337,1051, - 1,0,0,0,1337,1059,1,0,0,0,1337,1072,1,0,0,0,1337,1081,1,0,0,0,1337, - 1087,1,0,0,0,1337,1093,1,0,0,0,1337,1107,1,0,0,0,1337,1112,1,0,0, - 0,1337,1119,1,0,0,0,1337,1126,1,0,0,0,1337,1129,1,0,0,0,1337,1132, - 1,0,0,0,1337,1142,1,0,0,0,1337,1146,1,0,0,0,1337,1162,1,0,0,0,1337, - 1168,1,0,0,0,1337,1170,1,0,0,0,1337,1186,1,0,0,0,1337,1193,1,0,0, - 0,1337,1202,1,0,0,0,1337,1210,1,0,0,0,1337,1218,1,0,0,0,1337,1222, - 1,0,0,0,1337,1226,1,0,0,0,1337,1235,1,0,0,0,1337,1238,1,0,0,0,1337, - 1248,1,0,0,0,1337,1253,1,0,0,0,1337,1264,1,0,0,0,1337,1273,1,0,0, - 0,1337,1280,1,0,0,0,1337,1282,1,0,0,0,1337,1289,1,0,0,0,1337,1311, - 1,0,0,0,1337,1323,1,0,0,0,1337,1330,1,0,0,0,1338,5,1,0,0,0,1339, - 1342,3,388,194,0,1340,1342,5,169,0,0,1341,1339,1,0,0,0,1341,1340, - 1,0,0,0,1342,7,1,0,0,0,1343,1344,3,380,190,0,1344,9,1,0,0,0,1345, - 1346,3,382,191,0,1346,11,1,0,0,0,1347,1348,5,59,0,0,1348,1516,5, - 253,0,0,1349,1350,5,96,0,0,1350,1516,5,253,0,0,1351,1353,5,129,0, - 0,1352,1354,5,253,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1516, - 1,0,0,0,1355,1357,5,249,0,0,1356,1358,5,253,0,0,1357,1356,1,0,0, - 0,1357,1358,1,0,0,0,1358,1516,1,0,0,0,1359,1360,5,273,0,0,1360,1516, - 5,129,0,0,1361,1362,5,273,0,0,1362,1364,5,253,0,0,1363,1365,5,129, - 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1516,1,0,0,0,1366,1367, - 5,273,0,0,1367,1516,5,228,0,0,1368,1369,5,273,0,0,1369,1516,5,254, - 0,0,1370,1371,5,273,0,0,1371,1372,5,62,0,0,1372,1516,5,254,0,0,1373, - 1374,5,107,0,0,1374,1516,5,293,0,0,1375,1376,5,139,0,0,1376,1516, - 5,293,0,0,1377,1378,5,273,0,0,1378,1516,5,54,0,0,1379,1380,5,273, - 0,0,1380,1381,5,59,0,0,1381,1516,5,293,0,0,1382,1383,5,273,0,0,1383, - 1516,5,313,0,0,1384,1385,5,273,0,0,1385,1516,5,143,0,0,1386,1387, - 5,273,0,0,1387,1516,5,172,0,0,1388,1389,5,59,0,0,1389,1516,5,142, - 0,0,1390,1391,5,96,0,0,1391,1516,5,142,0,0,1392,1393,5,11,0,0,1393, - 1516,5,142,0,0,1394,1395,5,171,0,0,1395,1516,5,293,0,0,1396,1397, - 5,171,0,0,1397,1516,5,72,0,0,1398,1399,5,326,0,0,1399,1516,5,293, - 0,0,1400,1401,5,326,0,0,1401,1516,5,72,0,0,1402,1403,5,59,0,0,1403, - 1404,5,298,0,0,1404,1516,5,175,0,0,1405,1406,5,96,0,0,1406,1407, - 5,298,0,0,1407,1516,5,175,0,0,1408,1409,5,11,0,0,1409,1410,5,293, - 0,0,1410,1411,3,86,43,0,1411,1412,5,197,0,0,1412,1413,5,45,0,0,1413, - 1516,1,0,0,0,1414,1415,5,11,0,0,1415,1416,5,293,0,0,1416,1417,3, - 86,43,0,1417,1418,5,45,0,0,1418,1419,5,31,0,0,1419,1516,1,0,0,0, - 1420,1421,5,11,0,0,1421,1422,5,293,0,0,1422,1423,3,86,43,0,1423, - 1424,5,197,0,0,1424,1425,5,279,0,0,1425,1516,1,0,0,0,1426,1427,5, - 11,0,0,1427,1428,5,293,0,0,1428,1429,3,86,43,0,1429,1430,5,275,0, - 0,1430,1431,5,31,0,0,1431,1516,1,0,0,0,1432,1433,5,11,0,0,1433,1434, - 5,293,0,0,1434,1435,3,86,43,0,1435,1436,5,197,0,0,1436,1437,5,275, - 0,0,1437,1516,1,0,0,0,1438,1439,5,11,0,0,1439,1440,5,293,0,0,1440, - 1441,3,86,43,0,1441,1442,5,197,0,0,1442,1443,5,283,0,0,1443,1444, - 5,20,0,0,1444,1445,5,89,0,0,1445,1516,1,0,0,0,1446,1447,5,11,0,0, - 1447,1448,5,293,0,0,1448,1449,3,86,43,0,1449,1450,5,269,0,0,1450, - 1451,5,275,0,0,1451,1452,5,170,0,0,1452,1516,1,0,0,0,1453,1454,5, - 11,0,0,1454,1455,5,293,0,0,1455,1456,3,86,43,0,1456,1457,5,103,0, - 0,1457,1458,5,217,0,0,1458,1516,1,0,0,0,1459,1460,5,11,0,0,1460, - 1461,5,293,0,0,1461,1462,3,86,43,0,1462,1463,5,18,0,0,1463,1464, - 5,217,0,0,1464,1516,1,0,0,0,1465,1466,5,11,0,0,1466,1467,5,293,0, - 0,1467,1468,3,86,43,0,1468,1469,5,320,0,0,1469,1470,5,217,0,0,1470, - 1516,1,0,0,0,1471,1472,5,11,0,0,1472,1473,5,293,0,0,1473,1474,3, - 86,43,0,1474,1475,5,310,0,0,1475,1516,1,0,0,0,1476,1477,5,11,0,0, - 1477,1478,5,293,0,0,1478,1480,3,86,43,0,1479,1481,3,32,16,0,1480, - 1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1483,5,53, - 0,0,1483,1516,1,0,0,0,1484,1485,5,11,0,0,1485,1486,5,293,0,0,1486, - 1488,3,86,43,0,1487,1489,3,32,16,0,1488,1487,1,0,0,0,1488,1489,1, - 0,0,0,1489,1490,1,0,0,0,1490,1491,5,56,0,0,1491,1516,1,0,0,0,1492, - 1493,5,11,0,0,1493,1494,5,293,0,0,1494,1496,3,86,43,0,1495,1497, - 3,32,16,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0, - 1498,1499,5,269,0,0,1499,1500,5,115,0,0,1500,1516,1,0,0,0,1501,1502, - 5,11,0,0,1502,1503,5,293,0,0,1503,1505,3,86,43,0,1504,1506,3,32, - 16,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507, - 1508,5,244,0,0,1508,1509,5,50,0,0,1509,1516,1,0,0,0,1510,1511,5, - 281,0,0,1511,1516,5,312,0,0,1512,1516,5,52,0,0,1513,1516,5,255,0, - 0,1514,1516,5,88,0,0,1515,1347,1,0,0,0,1515,1349,1,0,0,0,1515,1351, - 1,0,0,0,1515,1355,1,0,0,0,1515,1359,1,0,0,0,1515,1361,1,0,0,0,1515, - 1366,1,0,0,0,1515,1368,1,0,0,0,1515,1370,1,0,0,0,1515,1373,1,0,0, - 0,1515,1375,1,0,0,0,1515,1377,1,0,0,0,1515,1379,1,0,0,0,1515,1382, - 1,0,0,0,1515,1384,1,0,0,0,1515,1386,1,0,0,0,1515,1388,1,0,0,0,1515, - 1390,1,0,0,0,1515,1392,1,0,0,0,1515,1394,1,0,0,0,1515,1396,1,0,0, - 0,1515,1398,1,0,0,0,1515,1400,1,0,0,0,1515,1402,1,0,0,0,1515,1405, - 1,0,0,0,1515,1408,1,0,0,0,1515,1414,1,0,0,0,1515,1420,1,0,0,0,1515, - 1426,1,0,0,0,1515,1432,1,0,0,0,1515,1438,1,0,0,0,1515,1446,1,0,0, - 0,1515,1453,1,0,0,0,1515,1459,1,0,0,0,1515,1465,1,0,0,0,1515,1471, - 1,0,0,0,1515,1476,1,0,0,0,1515,1484,1,0,0,0,1515,1492,1,0,0,0,1515, - 1501,1,0,0,0,1515,1510,1,0,0,0,1515,1512,1,0,0,0,1515,1513,1,0,0, - 0,1515,1514,1,0,0,0,1516,13,1,0,0,0,1517,1519,5,59,0,0,1518,1520, - 5,298,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, - 1521,1523,5,109,0,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524, - 1,0,0,0,1524,1526,5,293,0,0,1525,1527,3,190,95,0,1526,1525,1,0,0, - 0,1526,1527,1,0,0,0,1527,1528,1,0,0,0,1528,1529,3,84,42,0,1529,15, - 1,0,0,0,1530,1531,5,59,0,0,1531,1533,5,208,0,0,1532,1530,1,0,0,0, - 1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534,1535,5,244,0,0,1535,1536, - 5,293,0,0,1536,1537,3,84,42,0,1537,17,1,0,0,0,1538,1539,5,45,0,0, - 1539,1540,5,31,0,0,1540,1544,3,212,106,0,1541,1542,5,279,0,0,1542, - 1543,5,31,0,0,1543,1545,3,216,108,0,1544,1541,1,0,0,0,1544,1545, - 1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,152,0,0,1547,1548,5,382,0, - 0,1548,1549,5,30,0,0,1549,19,1,0,0,0,1550,1551,5,275,0,0,1551,1552, - 5,31,0,0,1552,1553,3,212,106,0,1553,1556,5,203,0,0,1554,1557,3,66, - 33,0,1555,1557,3,68,34,0,1556,1554,1,0,0,0,1556,1555,1,0,0,0,1557, - 1561,1,0,0,0,1558,1559,5,283,0,0,1559,1560,5,20,0,0,1560,1562,5, - 89,0,0,1561,1558,1,0,0,0,1561,1562,1,0,0,0,1562,21,1,0,0,0,1563, - 1564,5,170,0,0,1564,1565,3,388,194,0,1565,23,1,0,0,0,1566,1567,5, - 51,0,0,1567,1568,3,388,194,0,1568,25,1,0,0,0,1569,1571,3,44,22,0, - 1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573, - 3,104,52,0,1573,1574,3,100,50,0,1574,27,1,0,0,0,1575,1576,5,147, - 0,0,1576,1578,5,216,0,0,1577,1579,5,293,0,0,1578,1577,1,0,0,0,1578, - 1579,1,0,0,0,1579,1580,1,0,0,0,1580,1585,3,86,43,0,1581,1583,3,32, - 16,0,1582,1584,3,190,95,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584, - 1586,1,0,0,0,1585,1581,1,0,0,0,1585,1586,1,0,0,0,1586,1593,1,0,0, - 0,1587,1588,5,31,0,0,1588,1594,5,189,0,0,1589,1590,5,2,0,0,1590, - 1591,3,94,47,0,1591,1592,5,3,0,0,1592,1594,1,0,0,0,1593,1587,1,0, - 0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1652,1,0,0,0,1595,1596, - 5,147,0,0,1596,1598,5,152,0,0,1597,1599,5,293,0,0,1598,1597,1,0, - 0,0,1598,1599,1,0,0,0,1599,1600,1,0,0,0,1600,1602,3,86,43,0,1601, - 1603,3,32,16,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1605,1,0, - 0,0,1604,1606,3,190,95,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606, - 1613,1,0,0,0,1607,1608,5,31,0,0,1608,1614,5,189,0,0,1609,1610,5, - 2,0,0,1610,1611,3,94,47,0,1611,1612,5,3,0,0,1612,1614,1,0,0,0,1613, - 1607,1,0,0,0,1613,1609,1,0,0,0,1613,1614,1,0,0,0,1614,1652,1,0,0, - 0,1615,1616,5,147,0,0,1616,1618,5,152,0,0,1617,1619,5,293,0,0,1618, - 1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1621,3,86, - 43,0,1621,1622,5,244,0,0,1622,1623,3,138,69,0,1623,1652,1,0,0,0, - 1624,1625,5,147,0,0,1625,1627,5,216,0,0,1626,1628,5,169,0,0,1627, - 1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629,1630,5,90, - 0,0,1630,1632,3,388,194,0,1631,1633,3,242,121,0,1632,1631,1,0,0, - 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,70,35,0,1635,1634, - 1,0,0,0,1635,1636,1,0,0,0,1636,1652,1,0,0,0,1637,1638,5,147,0,0, - 1638,1640,5,216,0,0,1639,1641,5,169,0,0,1640,1639,1,0,0,0,1640,1641, - 1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,90,0,0,1643,1645,3,388,194, - 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0,0,0,1646,1649, - 3,48,24,0,1647,1648,5,207,0,0,1648,1650,3,54,27,0,1649,1647,1,0, - 0,0,1649,1650,1,0,0,0,1650,1652,1,0,0,0,1651,1575,1,0,0,0,1651,1595, - 1,0,0,0,1651,1615,1,0,0,0,1651,1624,1,0,0,0,1651,1637,1,0,0,0,1652, - 29,1,0,0,0,1653,1655,3,32,16,0,1654,1656,3,22,11,0,1655,1654,1,0, - 0,0,1655,1656,1,0,0,0,1656,31,1,0,0,0,1657,1658,5,217,0,0,1658,1659, - 5,2,0,0,1659,1664,3,34,17,0,1660,1661,5,4,0,0,1661,1663,3,34,17, - 0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664,1662,1,0,0,0,1664,1665, - 1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0,0,1667,1668,5,3,0,0,1668, - 33,1,0,0,0,1669,1672,3,376,188,0,1670,1671,5,352,0,0,1671,1673,3, - 288,144,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,1679,1,0,0,0, - 1674,1675,3,376,188,0,1675,1676,5,352,0,0,1676,1677,5,82,0,0,1677, - 1679,1,0,0,0,1678,1669,1,0,0,0,1678,1674,1,0,0,0,1679,35,1,0,0,0, - 1680,1681,7,11,0,0,1681,37,1,0,0,0,1682,1683,7,12,0,0,1683,39,1, - 0,0,0,1684,1690,3,98,49,0,1685,1690,3,388,194,0,1686,1690,3,290, - 145,0,1687,1690,3,292,146,0,1688,1690,3,294,147,0,1689,1684,1,0, - 0,0,1689,1685,1,0,0,0,1689,1686,1,0,0,0,1689,1687,1,0,0,0,1689,1688, - 1,0,0,0,1690,41,1,0,0,0,1691,1696,3,376,188,0,1692,1693,5,5,0,0, - 1693,1695,3,376,188,0,1694,1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694, - 1,0,0,0,1696,1697,1,0,0,0,1697,43,1,0,0,0,1698,1696,1,0,0,0,1699, - 1700,5,346,0,0,1700,1705,3,46,23,0,1701,1702,5,4,0,0,1702,1704,3, - 46,23,0,1703,1701,1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705, - 1706,1,0,0,0,1706,45,1,0,0,0,1707,1705,1,0,0,0,1708,1710,3,372,186, - 0,1709,1711,3,212,106,0,1710,1709,1,0,0,0,1710,1711,1,0,0,0,1711, - 1713,1,0,0,0,1712,1714,5,20,0,0,1713,1712,1,0,0,0,1713,1714,1,0, - 0,0,1714,1715,1,0,0,0,1715,1716,5,2,0,0,1716,1717,3,26,13,0,1717, - 1718,5,3,0,0,1718,47,1,0,0,0,1719,1720,5,332,0,0,1720,1721,3,246, - 123,0,1721,49,1,0,0,0,1722,1723,5,207,0,0,1723,1737,3,62,31,0,1724, - 1725,5,218,0,0,1725,1726,5,31,0,0,1726,1737,3,260,130,0,1727,1737, - 3,20,10,0,1728,1737,3,18,9,0,1729,1737,3,242,121,0,1730,1737,3,70, - 35,0,1731,1737,3,22,11,0,1732,1737,3,24,12,0,1733,1734,5,297,0,0, - 1734,1737,3,54,27,0,1735,1737,3,52,26,0,1736,1722,1,0,0,0,1736,1724, - 1,0,0,0,1736,1727,1,0,0,0,1736,1728,1,0,0,0,1736,1729,1,0,0,0,1736, - 1730,1,0,0,0,1736,1731,1,0,0,0,1736,1732,1,0,0,0,1736,1733,1,0,0, - 0,1736,1735,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, - 1,0,0,0,1739,51,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,162,0,0,1742, - 1743,5,382,0,0,1743,53,1,0,0,0,1744,1745,5,2,0,0,1745,1750,3,56, - 28,0,1746,1747,5,4,0,0,1747,1749,3,56,28,0,1748,1746,1,0,0,0,1749, - 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0, - 0,1752,1750,1,0,0,0,1753,1754,5,3,0,0,1754,55,1,0,0,0,1755,1760, - 3,58,29,0,1756,1758,5,352,0,0,1757,1756,1,0,0,0,1757,1758,1,0,0, - 0,1758,1759,1,0,0,0,1759,1761,3,60,30,0,1760,1757,1,0,0,0,1760,1761, - 1,0,0,0,1761,57,1,0,0,0,1762,1767,3,376,188,0,1763,1764,5,5,0,0, - 1764,1766,3,376,188,0,1765,1763,1,0,0,0,1766,1769,1,0,0,0,1767,1765, - 1,0,0,0,1767,1768,1,0,0,0,1768,1772,1,0,0,0,1769,1767,1,0,0,0,1770, - 1772,3,388,194,0,1771,1762,1,0,0,0,1771,1770,1,0,0,0,1772,59,1,0, - 0,0,1773,1778,5,382,0,0,1774,1778,5,384,0,0,1775,1778,3,296,148, - 0,1776,1778,3,388,194,0,1777,1773,1,0,0,0,1777,1774,1,0,0,0,1777, - 1775,1,0,0,0,1777,1776,1,0,0,0,1778,61,1,0,0,0,1779,1780,5,2,0,0, - 1780,1785,3,64,32,0,1781,1782,5,4,0,0,1782,1784,3,64,32,0,1783,1781, - 1,0,0,0,1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786, - 1788,1,0,0,0,1787,1785,1,0,0,0,1788,1789,5,3,0,0,1789,63,1,0,0,0, - 1790,1795,3,58,29,0,1791,1793,5,352,0,0,1792,1791,1,0,0,0,1792,1793, - 1,0,0,0,1793,1794,1,0,0,0,1794,1796,3,268,134,0,1795,1792,1,0,0, - 0,1795,1796,1,0,0,0,1796,65,1,0,0,0,1797,1798,5,2,0,0,1798,1803, - 3,288,144,0,1799,1800,5,4,0,0,1800,1802,3,288,144,0,1801,1799,1, - 0,0,0,1802,1805,1,0,0,0,1803,1801,1,0,0,0,1803,1804,1,0,0,0,1804, - 1806,1,0,0,0,1805,1803,1,0,0,0,1806,1807,5,3,0,0,1807,67,1,0,0,0, - 1808,1809,5,2,0,0,1809,1814,3,66,33,0,1810,1811,5,4,0,0,1811,1813, - 3,66,33,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,3,0,0,1818,69,1,0,0,0,1819,1820,5,283,0,0,1820,1821,5,20,0,0,1821, - 1826,3,72,36,0,1822,1823,5,283,0,0,1823,1824,5,31,0,0,1824,1826, - 3,74,37,0,1825,1819,1,0,0,0,1825,1822,1,0,0,0,1826,71,1,0,0,0,1827, - 1828,5,146,0,0,1828,1829,3,388,194,0,1829,1830,5,212,0,0,1830,1831, - 3,388,194,0,1831,1834,1,0,0,0,1832,1834,3,376,188,0,1833,1827,1, - 0,0,0,1833,1832,1,0,0,0,1834,73,1,0,0,0,1835,1839,3,388,194,0,1836, - 1837,5,346,0,0,1837,1838,5,267,0,0,1838,1840,3,54,27,0,1839,1836, - 1,0,0,0,1839,1840,1,0,0,0,1840,75,1,0,0,0,1841,1842,3,376,188,0, - 1842,1843,3,388,194,0,1843,77,1,0,0,0,1844,1845,3,28,14,0,1845,1846, - 3,26,13,0,1846,1901,1,0,0,0,1847,1849,3,146,73,0,1848,1850,3,102, - 51,0,1849,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1849,1,0,0,0,1851, - 1852,1,0,0,0,1852,1901,1,0,0,0,1853,1854,5,84,0,0,1854,1855,5,123, - 0,0,1855,1856,3,86,43,0,1856,1858,3,240,120,0,1857,1859,3,138,69, - 0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1901,1,0,0,0,1860,1861, - 5,329,0,0,1861,1862,3,86,43,0,1862,1863,3,240,120,0,1863,1865,3, - 120,60,0,1864,1866,3,138,69,0,1865,1864,1,0,0,0,1865,1866,1,0,0, - 0,1866,1901,1,0,0,0,1867,1868,5,179,0,0,1868,1869,5,152,0,0,1869, - 1870,3,86,43,0,1870,1871,3,240,120,0,1871,1877,5,332,0,0,1872,1878, - 3,98,49,0,1873,1874,5,2,0,0,1874,1875,3,26,13,0,1875,1876,5,3,0, - 0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877,1873,1,0,0,0,1878,1879, - 1,0,0,0,1879,1880,3,240,120,0,1880,1881,5,203,0,0,1881,1885,3,276, - 138,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,1897,1,0,0,0,1893,1891,1,0,0, - 0,1894,1896,3,126,63,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, - 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0, - 0,1900,1844,1,0,0,0,1900,1847,1,0,0,0,1900,1853,1,0,0,0,1900,1860, - 1,0,0,0,1900,1867,1,0,0,0,1901,79,1,0,0,0,1902,1903,3,98,49,0,1903, - 81,1,0,0,0,1904,1905,3,98,49,0,1905,83,1,0,0,0,1906,1907,3,252,126, - 0,1907,85,1,0,0,0,1908,1909,3,252,126,0,1909,87,1,0,0,0,1910,1911, - 3,254,127,0,1911,89,1,0,0,0,1912,1913,3,254,127,0,1913,91,1,0,0, - 0,1914,1917,3,246,123,0,1915,1917,4,46,0,0,1916,1914,1,0,0,0,1916, - 1915,1,0,0,0,1917,93,1,0,0,0,1918,1923,3,92,46,0,1919,1920,5,4,0, - 0,1920,1922,3,92,46,0,1921,1919,1,0,0,0,1922,1925,1,0,0,0,1923,1921, - 1,0,0,0,1923,1924,1,0,0,0,1924,95,1,0,0,0,1925,1923,1,0,0,0,1926, - 1927,3,372,186,0,1927,97,1,0,0,0,1928,1929,5,136,0,0,1929,1930,5, - 2,0,0,1930,1931,3,268,134,0,1931,1932,5,3,0,0,1932,1935,1,0,0,0, - 1933,1935,3,246,123,0,1934,1928,1,0,0,0,1934,1933,1,0,0,0,1935,99, - 1,0,0,0,1936,1937,5,209,0,0,1937,1938,5,31,0,0,1938,1943,3,108,54, - 0,1939,1940,5,4,0,0,1940,1942,3,108,54,0,1941,1939,1,0,0,0,1942, - 1945,1,0,0,0,1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,1947,1,0,0, - 0,1945,1943,1,0,0,0,1946,1936,1,0,0,0,1946,1947,1,0,0,0,1947,1958, - 1,0,0,0,1948,1949,5,44,0,0,1949,1950,5,31,0,0,1950,1955,3,268,134, - 0,1951,1952,5,4,0,0,1952,1954,3,268,134,0,1953,1951,1,0,0,0,1954, - 1957,1,0,0,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0, - 0,1957,1955,1,0,0,0,1958,1948,1,0,0,0,1958,1959,1,0,0,0,1959,1970, - 1,0,0,0,1960,1961,5,93,0,0,1961,1962,5,31,0,0,1962,1967,3,268,134, - 0,1963,1964,5,4,0,0,1964,1966,3,268,134,0,1965,1963,1,0,0,0,1966, - 1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0,0,1968,1971,1,0,0, - 0,1969,1967,1,0,0,0,1970,1960,1,0,0,0,1970,1971,1,0,0,0,1971,1982, - 1,0,0,0,1972,1973,5,278,0,0,1973,1974,5,31,0,0,1974,1979,3,108,54, - 0,1975,1976,5,4,0,0,1976,1978,3,108,54,0,1977,1975,1,0,0,0,1978, - 1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980,1983,1,0,0, - 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1985, - 1,0,0,0,1984,1986,3,352,176,0,1985,1984,1,0,0,0,1985,1986,1,0,0, - 0,1986,1992,1,0,0,0,1987,1990,5,165,0,0,1988,1991,5,10,0,0,1989, - 1991,3,268,134,0,1990,1988,1,0,0,0,1990,1989,1,0,0,0,1991,1993,1, - 0,0,0,1992,1987,1,0,0,0,1992,1993,1,0,0,0,1993,1996,1,0,0,0,1994, - 1995,5,202,0,0,1995,1997,3,268,134,0,1996,1994,1,0,0,0,1996,1997, - 1,0,0,0,1997,101,1,0,0,0,1998,1999,3,28,14,0,1999,2000,3,112,56, - 0,2000,103,1,0,0,0,2001,2002,6,52,-1,0,2002,2003,3,106,53,0,2003, - 2024,1,0,0,0,2004,2005,10,3,0,0,2005,2007,7,13,0,0,2006,2008,3,196, - 98,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009, - 2023,3,104,52,4,2010,2011,10,2,0,0,2011,2013,5,148,0,0,2012,2014, - 3,196,98,0,2013,2012,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0, - 2015,2023,3,104,52,3,2016,2017,10,1,0,0,2017,2019,7,14,0,0,2018, - 2020,3,196,98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1, - 0,0,0,2021,2023,3,104,52,2,2022,2004,1,0,0,0,2022,2010,1,0,0,0,2022, - 2016,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025,1,0,0, - 0,2025,105,1,0,0,0,2026,2024,1,0,0,0,2027,2037,3,114,57,0,2028,2037, - 3,110,55,0,2029,2030,5,293,0,0,2030,2037,3,86,43,0,2031,2037,3,226, - 113,0,2032,2033,5,2,0,0,2033,2034,3,26,13,0,2034,2035,5,3,0,0,2035, - 2037,1,0,0,0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0, - 0,2036,2031,1,0,0,0,2036,2032,1,0,0,0,2037,107,1,0,0,0,2038,2041, - 3,92,46,0,2039,2041,3,268,134,0,2040,2038,1,0,0,0,2040,2039,1,0, - 0,0,2041,2043,1,0,0,0,2042,2044,7,15,0,0,2043,2042,1,0,0,0,2043, - 2044,1,0,0,0,2044,2047,1,0,0,0,2045,2046,5,199,0,0,2046,2048,7,16, - 0,0,2047,2045,1,0,0,0,2047,2048,1,0,0,0,2048,109,1,0,0,0,2049,2051, - 3,146,73,0,2050,2052,3,112,56,0,2051,2050,1,0,0,0,2052,2053,1,0, - 0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,111,1,0,0,0,2055,2057, - 3,116,58,0,2056,2058,3,138,69,0,2057,2056,1,0,0,0,2057,2058,1,0, - 0,0,2058,2059,1,0,0,0,2059,2060,3,100,50,0,2060,2083,1,0,0,0,2061, - 2065,3,118,59,0,2062,2064,3,194,97,0,2063,2062,1,0,0,0,2064,2067, - 1,0,0,0,2065,2063,1,0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067, - 2065,1,0,0,0,2068,2070,3,138,69,0,2069,2068,1,0,0,0,2069,2070,1, - 0,0,0,2070,2072,1,0,0,0,2071,2073,3,152,76,0,2072,2071,1,0,0,0,2072, - 2073,1,0,0,0,2073,2075,1,0,0,0,2074,2076,3,140,70,0,2075,2074,1, - 0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077,2079,3,352,176,0, - 2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2081, - 3,100,50,0,2081,2083,1,0,0,0,2082,2055,1,0,0,0,2082,2061,1,0,0,0, - 2083,113,1,0,0,0,2084,2086,3,116,58,0,2085,2087,3,146,73,0,2086, - 2085,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0,0,2088,2090,3,194, - 97,0,2089,2088,1,0,0,0,2090,2093,1,0,0,0,2091,2089,1,0,0,0,2091, - 2092,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2094,2096,3,138, - 69,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097, - 2099,3,152,76,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1, - 0,0,0,2100,2102,3,140,70,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, - 2104,1,0,0,0,2103,2105,3,352,176,0,2104,2103,1,0,0,0,2104,2105,1, - 0,0,0,2105,2129,1,0,0,0,2106,2108,3,118,59,0,2107,2109,3,146,73, - 0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110,2112, - 3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0, - 2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116,2118, - 3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, - 2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, - 1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, - 2124,2126,1,0,0,0,2125,2127,3,352,176,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2129,1,0,0,0,2128,2084,1,0,0,0,2128,2106,1,0,0,0,2129, - 115,1,0,0,0,2130,2131,5,263,0,0,2131,2132,5,314,0,0,2132,2134,5, - 2,0,0,2133,2135,3,196,98,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, - 2136,1,0,0,0,2136,2137,3,274,137,0,2137,2138,5,3,0,0,2138,2150,1, - 0,0,0,2139,2141,5,177,0,0,2140,2142,3,196,98,0,2141,2140,1,0,0,0, - 2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2150,3,274,137,0,2144,2146, - 5,238,0,0,2145,2147,3,196,98,0,2146,2145,1,0,0,0,2146,2147,1,0,0, - 0,2147,2148,1,0,0,0,2148,2150,3,274,137,0,2149,2130,1,0,0,0,2149, - 2139,1,0,0,0,2149,2144,1,0,0,0,2150,2152,1,0,0,0,2151,2153,3,242, - 121,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2156,1,0,0,0,2154, - 2155,5,236,0,0,2155,2157,3,388,194,0,2156,2154,1,0,0,0,2156,2157, - 1,0,0,0,2157,2158,1,0,0,0,2158,2159,5,332,0,0,2159,2172,3,388,194, - 0,2160,2170,5,20,0,0,2161,2171,3,214,107,0,2162,2171,3,334,167,0, - 2163,2166,5,2,0,0,2164,2167,3,214,107,0,2165,2167,3,334,167,0,2166, - 2164,1,0,0,0,2166,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2169,5,3,0, - 0,2169,2171,1,0,0,0,2170,2161,1,0,0,0,2170,2162,1,0,0,0,2170,2163, - 1,0,0,0,2171,2173,1,0,0,0,2172,2160,1,0,0,0,2172,2173,1,0,0,0,2173, - 2175,1,0,0,0,2174,2176,3,242,121,0,2175,2174,1,0,0,0,2175,2176,1, - 0,0,0,2176,2179,1,0,0,0,2177,2178,5,235,0,0,2178,2180,3,388,194, - 0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,117,1,0,0,0,2181,2185, - 5,263,0,0,2182,2184,3,142,71,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,2189,1,0,0,0,2187,2185, - 1,0,0,0,2188,2190,3,196,98,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0, - 2190,2191,1,0,0,0,2191,2192,3,258,129,0,2192,119,1,0,0,0,2193,2194, - 5,269,0,0,2194,2195,3,134,67,0,2195,121,1,0,0,0,2196,2197,5,343, - 0,0,2197,2200,5,178,0,0,2198,2199,5,14,0,0,2199,2201,3,276,138,0, - 2200,2198,1,0,0,0,2200,2201,1,0,0,0,2201,2202,1,0,0,0,2202,2203, - 5,300,0,0,2203,2204,3,128,64,0,2204,123,1,0,0,0,2205,2206,5,343, - 0,0,2206,2207,5,197,0,0,2207,2210,5,178,0,0,2208,2209,5,31,0,0,2209, - 2211,5,296,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2214,1,0, - 0,0,2212,2213,5,14,0,0,2213,2215,3,276,138,0,2214,2212,1,0,0,0,2214, - 2215,1,0,0,0,2215,2216,1,0,0,0,2216,2217,5,300,0,0,2217,2218,3,130, - 65,0,2218,125,1,0,0,0,2219,2220,5,343,0,0,2220,2221,5,197,0,0,2221, - 2222,5,178,0,0,2222,2223,5,31,0,0,2223,2226,5,280,0,0,2224,2225, - 5,14,0,0,2225,2227,3,276,138,0,2226,2224,1,0,0,0,2226,2227,1,0,0, - 0,2227,2228,1,0,0,0,2228,2229,5,300,0,0,2229,2230,3,132,66,0,2230, - 127,1,0,0,0,2231,2239,5,84,0,0,2232,2233,5,329,0,0,2233,2234,5,269, - 0,0,2234,2239,5,363,0,0,2235,2236,5,329,0,0,2236,2237,5,269,0,0, - 2237,2239,3,134,67,0,2238,2231,1,0,0,0,2238,2232,1,0,0,0,2238,2235, - 1,0,0,0,2239,129,1,0,0,0,2240,2241,5,147,0,0,2241,2259,5,363,0,0, - 2242,2243,5,147,0,0,2243,2244,5,2,0,0,2244,2245,3,244,122,0,2245, - 2246,5,3,0,0,2246,2247,5,333,0,0,2247,2248,5,2,0,0,2248,2253,3,268, - 134,0,2249,2250,5,4,0,0,2250,2252,3,268,134,0,2251,2249,1,0,0,0, - 2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256, - 1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,3,0,0,2257,2259,1,0,0,0,2258, - 2240,1,0,0,0,2258,2242,1,0,0,0,2259,131,1,0,0,0,2260,2265,5,84,0, - 0,2261,2262,5,329,0,0,2262,2263,5,269,0,0,2263,2265,3,134,67,0,2264, - 2260,1,0,0,0,2264,2261,1,0,0,0,2265,133,1,0,0,0,2266,2271,3,136, - 68,0,2267,2268,5,4,0,0,2268,2270,3,136,68,0,2269,2267,1,0,0,0,2270, - 2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0, - 0,2273,2271,1,0,0,0,2274,2275,3,246,123,0,2275,2276,5,352,0,0,2276, - 2277,3,268,134,0,2277,137,1,0,0,0,2278,2279,5,344,0,0,2279,2280, - 3,276,138,0,2280,139,1,0,0,0,2281,2282,5,132,0,0,2282,2283,3,276, - 138,0,2283,141,1,0,0,0,2284,2285,5,374,0,0,2285,2292,3,144,72,0, - 2286,2288,5,4,0,0,2287,2286,1,0,0,0,2287,2288,1,0,0,0,2288,2289, - 1,0,0,0,2289,2291,3,144,72,0,2290,2287,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,375,0,0,2296,143,1,0,0,0,2297,2311,3,376,188, - 0,2298,2299,3,376,188,0,2299,2300,5,2,0,0,2300,2305,3,284,142,0, - 2301,2302,5,4,0,0,2302,2304,3,284,142,0,2303,2301,1,0,0,0,2304,2307, - 1,0,0,0,2305,2303,1,0,0,0,2305,2306,1,0,0,0,2306,2308,1,0,0,0,2307, - 2305,1,0,0,0,2308,2309,5,3,0,0,2309,2311,1,0,0,0,2310,2297,1,0,0, - 0,2310,2298,1,0,0,0,2311,145,1,0,0,0,2312,2313,5,123,0,0,2313,2318, - 3,198,99,0,2314,2315,5,4,0,0,2315,2317,3,198,99,0,2316,2314,1,0, - 0,0,2317,2320,1,0,0,0,2318,2316,1,0,0,0,2318,2319,1,0,0,0,2319,2324, - 1,0,0,0,2320,2318,1,0,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0,0, - 2323,2326,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2328, - 1,0,0,0,2326,2324,1,0,0,0,2327,2329,3,162,81,0,2328,2327,1,0,0,0, - 2328,2329,1,0,0,0,2329,2331,1,0,0,0,2330,2332,3,168,84,0,2331,2330, - 1,0,0,0,2331,2332,1,0,0,0,2332,147,1,0,0,0,2333,2334,7,17,0,0,2334, - 149,1,0,0,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,18,0,0,2339,2340,5,20,0,0,2340, - 2341,5,201,0,0,2341,2350,3,392,196,0,2342,2344,5,119,0,0,2343,2342, - 1,0,0,0,2343,2344,1,0,0,0,2344,2345,1,0,0,0,2345,2346,7,19,0,0,2346, - 2347,5,20,0,0,2347,2348,5,201,0,0,2348,2350,3,280,140,0,2349,2336, - 1,0,0,0,2349,2343,1,0,0,0,2350,151,1,0,0,0,2351,2352,5,130,0,0,2352, - 2353,5,31,0,0,2353,2358,3,154,77,0,2354,2355,5,4,0,0,2355,2357,3, - 154,77,0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358, - 2359,1,0,0,0,2359,2391,1,0,0,0,2360,2358,1,0,0,0,2361,2362,5,130, - 0,0,2362,2363,5,31,0,0,2363,2368,3,268,134,0,2364,2365,5,4,0,0,2365, - 2367,3,268,134,0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1, - 0,0,0,2368,2369,1,0,0,0,2369,2388,1,0,0,0,2370,2368,1,0,0,0,2371, - 2372,5,346,0,0,2372,2389,5,256,0,0,2373,2374,5,346,0,0,2374,2389, - 5,61,0,0,2375,2376,5,131,0,0,2376,2377,5,271,0,0,2377,2378,5,2,0, - 0,2378,2383,3,160,80,0,2379,2380,5,4,0,0,2380,2382,3,160,80,0,2381, - 2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0, - 0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,3,0,0,2387,2389, - 1,0,0,0,2388,2371,1,0,0,0,2388,2373,1,0,0,0,2388,2375,1,0,0,0,2388, - 2389,1,0,0,0,2389,2391,1,0,0,0,2390,2351,1,0,0,0,2390,2361,1,0,0, - 0,2391,153,1,0,0,0,2392,2396,3,92,46,0,2393,2396,3,156,78,0,2394, - 2396,3,268,134,0,2395,2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1, - 0,0,0,2396,155,1,0,0,0,2397,2398,7,20,0,0,2398,2399,5,2,0,0,2399, - 2404,3,160,80,0,2400,2401,5,4,0,0,2401,2403,3,160,80,0,2402,2400, - 1,0,0,0,2403,2406,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, - 2407,1,0,0,0,2406,2404,1,0,0,0,2407,2408,5,3,0,0,2408,2423,1,0,0, - 0,2409,2410,5,131,0,0,2410,2411,5,271,0,0,2411,2412,5,2,0,0,2412, - 2417,3,158,79,0,2413,2414,5,4,0,0,2414,2416,3,158,79,0,2415,2413, - 1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418, - 2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421,2423,1,0,0, - 0,2422,2397,1,0,0,0,2422,2409,1,0,0,0,2423,157,1,0,0,0,2424,2427, - 3,156,78,0,2425,2427,3,160,80,0,2426,2424,1,0,0,0,2426,2425,1,0, - 0,0,2427,159,1,0,0,0,2428,2449,3,92,46,0,2429,2449,3,268,134,0,2430, - 2445,5,2,0,0,2431,2434,3,92,46,0,2432,2434,3,268,134,0,2433,2431, - 1,0,0,0,2433,2432,1,0,0,0,2434,2442,1,0,0,0,2435,2438,5,4,0,0,2436, - 2439,3,92,46,0,2437,2439,3,268,134,0,2438,2436,1,0,0,0,2438,2437, - 1,0,0,0,2439,2441,1,0,0,0,2440,2435,1,0,0,0,2441,2444,1,0,0,0,2442, - 2440,1,0,0,0,2442,2443,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0, - 0,2445,2433,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447,2449, - 5,3,0,0,2448,2428,1,0,0,0,2448,2429,1,0,0,0,2448,2430,1,0,0,0,2449, - 161,1,0,0,0,2450,2451,5,223,0,0,2451,2452,5,2,0,0,2452,2453,3,258, - 129,0,2453,2454,5,119,0,0,2454,2455,3,164,82,0,2455,2456,5,140,0, - 0,2456,2457,5,2,0,0,2457,2462,3,166,83,0,2458,2459,5,4,0,0,2459, - 2461,3,166,83,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,2467,5,3,0,0,2467,163,1,0,0,0,2468,2481,3,376, - 188,0,2469,2470,5,2,0,0,2470,2475,3,376,188,0,2471,2472,5,4,0,0, - 2472,2474,3,376,188,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473, - 1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478, - 2479,5,3,0,0,2479,2481,1,0,0,0,2480,2468,1,0,0,0,2480,2469,1,0,0, - 0,2481,165,1,0,0,0,2482,2487,3,268,134,0,2483,2485,5,20,0,0,2484, - 2483,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1,0,0,0,2486,2488,3,376, - 188,0,2487,2484,1,0,0,0,2487,2488,1,0,0,0,2488,167,1,0,0,0,2489, - 2491,5,327,0,0,2490,2492,3,170,85,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,5,2,0,0,2494,2495,3,172,86,0, - 2495,2500,5,3,0,0,2496,2498,5,20,0,0,2497,2496,1,0,0,0,2497,2498, - 1,0,0,0,2498,2499,1,0,0,0,2499,2501,3,376,188,0,2500,2497,1,0,0, - 0,2500,2501,1,0,0,0,2501,169,1,0,0,0,2502,2503,7,21,0,0,2503,2504, - 5,199,0,0,2504,171,1,0,0,0,2505,2508,3,174,87,0,2506,2508,3,176, - 88,0,2507,2505,1,0,0,0,2507,2506,1,0,0,0,2508,173,1,0,0,0,2509,2510, - 3,180,90,0,2510,2511,5,119,0,0,2511,2512,3,182,91,0,2512,2513,5, - 140,0,0,2513,2514,5,2,0,0,2514,2519,3,184,92,0,2515,2516,5,4,0,0, - 2516,2518,3,184,92,0,2517,2515,1,0,0,0,2518,2521,1,0,0,0,2519,2517, - 1,0,0,0,2519,2520,1,0,0,0,2520,2522,1,0,0,0,2521,2519,1,0,0,0,2522, - 2523,5,3,0,0,2523,175,1,0,0,0,2524,2525,5,2,0,0,2525,2530,3,180, - 90,0,2526,2527,5,4,0,0,2527,2529,3,180,90,0,2528,2526,1,0,0,0,2529, - 2532,1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0, - 0,2532,2530,1,0,0,0,2533,2534,5,3,0,0,2534,2535,5,119,0,0,2535,2536, - 3,182,91,0,2536,2537,5,140,0,0,2537,2538,5,2,0,0,2538,2543,3,178, - 89,0,2539,2540,5,4,0,0,2540,2542,3,178,89,0,2541,2539,1,0,0,0,2542, - 2545,1,0,0,0,2543,2541,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2543,1,0,0,0,2546,2547,5,3,0,0,2547,177,1,0,0,0,2548,2549, - 5,2,0,0,2549,2554,3,186,93,0,2550,2551,5,4,0,0,2551,2553,3,186,93, - 0,2552,2550,1,0,0,0,2553,2556,1,0,0,0,2554,2552,1,0,0,0,2554,2555, - 1,0,0,0,2555,2557,1,0,0,0,2556,2554,1,0,0,0,2557,2559,5,3,0,0,2558, - 2560,3,188,94,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,179,1,0, - 0,0,2561,2562,3,376,188,0,2562,181,1,0,0,0,2563,2564,3,376,188,0, - 2564,183,1,0,0,0,2565,2567,3,186,93,0,2566,2568,3,188,94,0,2567, - 2566,1,0,0,0,2567,2568,1,0,0,0,2568,185,1,0,0,0,2569,2570,3,246, - 123,0,2570,187,1,0,0,0,2571,2573,5,20,0,0,2572,2571,1,0,0,0,2572, - 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2575,3,376,188,0,2575,189,1, - 0,0,0,2576,2577,5,137,0,0,2577,2578,5,197,0,0,2578,2579,5,105,0, - 0,2579,191,1,0,0,0,2580,2581,5,137,0,0,2581,2582,5,105,0,0,2582, - 193,1,0,0,0,2583,2584,5,158,0,0,2584,2586,5,338,0,0,2585,2587,5, - 211,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0,2588, - 2589,3,90,45,0,2589,2598,5,2,0,0,2590,2595,3,268,134,0,2591,2592, - 5,4,0,0,2592,2594,3,268,134,0,2593,2591,1,0,0,0,2594,2597,1,0,0, - 0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2599,1,0,0,0,2597,2595, - 1,0,0,0,2598,2590,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, - 2601,5,3,0,0,2601,2613,3,240,120,0,2602,2604,5,20,0,0,2603,2602, - 1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605,2610,3,376,188, - 0,2606,2607,5,4,0,0,2607,2609,3,376,188,0,2608,2606,1,0,0,0,2609, - 2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2614,1,0,0, - 0,2612,2610,1,0,0,0,2613,2603,1,0,0,0,2613,2614,1,0,0,0,2614,195, - 1,0,0,0,2615,2616,7,22,0,0,2616,197,1,0,0,0,2617,2629,3,86,43,0, - 2618,2620,5,158,0,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,2621, - 1,0,0,0,2621,2625,3,224,112,0,2622,2624,3,200,100,0,2623,2622,1, - 0,0,0,2624,2627,1,0,0,0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626, - 2629,1,0,0,0,2627,2625,1,0,0,0,2628,2617,1,0,0,0,2628,2619,1,0,0, - 0,2629,199,1,0,0,0,2630,2634,3,202,101,0,2631,2634,3,162,81,0,2632, - 2634,3,168,84,0,2633,2630,1,0,0,0,2633,2631,1,0,0,0,2633,2632,1, - 0,0,0,2634,201,1,0,0,0,2635,2636,3,204,102,0,2636,2638,5,155,0,0, - 2637,2639,5,158,0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640, - 1,0,0,0,2640,2642,3,224,112,0,2641,2643,3,206,103,0,2642,2641,1, - 0,0,0,2642,2643,1,0,0,0,2643,2653,1,0,0,0,2644,2645,5,194,0,0,2645, - 2646,3,204,102,0,2646,2648,5,155,0,0,2647,2649,5,158,0,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,224,112, - 0,2651,2653,1,0,0,0,2652,2635,1,0,0,0,2652,2644,1,0,0,0,2653,203, - 1,0,0,0,2654,2656,5,144,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0, - 2656,2679,1,0,0,0,2657,2679,5,60,0,0,2658,2660,5,161,0,0,2659,2661, - 5,211,0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2679,1,0,0,0, - 2662,2664,5,161,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, - 1,0,0,0,2665,2679,5,264,0,0,2666,2668,5,250,0,0,2667,2669,5,211, - 0,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2679,1,0,0,0,2670,2672, - 5,124,0,0,2671,2673,5,211,0,0,2672,2671,1,0,0,0,2672,2673,1,0,0, - 0,2673,2679,1,0,0,0,2674,2676,5,161,0,0,2675,2674,1,0,0,0,2675,2676, - 1,0,0,0,2676,2677,1,0,0,0,2677,2679,5,15,0,0,2678,2655,1,0,0,0,2678, - 2657,1,0,0,0,2678,2658,1,0,0,0,2678,2663,1,0,0,0,2678,2666,1,0,0, - 0,2678,2670,1,0,0,0,2678,2675,1,0,0,0,2679,205,1,0,0,0,2680,2681, - 5,203,0,0,2681,2685,3,276,138,0,2682,2683,5,332,0,0,2683,2685,3, - 212,106,0,2684,2680,1,0,0,0,2684,2682,1,0,0,0,2685,207,1,0,0,0,2686, - 2687,5,295,0,0,2687,2689,5,2,0,0,2688,2690,3,210,105,0,2689,2688, - 1,0,0,0,2689,2690,1,0,0,0,2690,2691,1,0,0,0,2691,2696,5,3,0,0,2692, - 2693,5,243,0,0,2693,2694,5,2,0,0,2694,2695,5,382,0,0,2695,2697,5, - 3,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,209,1,0,0,0,2698, - 2700,5,362,0,0,2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0, - 0,0,2701,2702,7,23,0,0,2702,2723,5,222,0,0,2703,2704,3,268,134,0, - 2704,2705,5,258,0,0,2705,2723,1,0,0,0,2706,2707,5,29,0,0,2707,2708, - 5,382,0,0,2708,2709,5,210,0,0,2709,2710,5,201,0,0,2710,2719,5,382, - 0,0,2711,2717,5,203,0,0,2712,2718,3,376,188,0,2713,2714,3,370,185, - 0,2714,2715,5,2,0,0,2715,2716,5,3,0,0,2716,2718,1,0,0,0,2717,2712, - 1,0,0,0,2717,2713,1,0,0,0,2718,2720,1,0,0,0,2719,2711,1,0,0,0,2719, - 2720,1,0,0,0,2720,2723,1,0,0,0,2721,2723,3,268,134,0,2722,2699,1, - 0,0,0,2722,2703,1,0,0,0,2722,2706,1,0,0,0,2722,2721,1,0,0,0,2723, - 211,1,0,0,0,2724,2725,5,2,0,0,2725,2726,3,214,107,0,2726,2727,5, - 3,0,0,2727,213,1,0,0,0,2728,2733,3,372,186,0,2729,2730,5,4,0,0,2730, - 2732,3,372,186,0,2731,2729,1,0,0,0,2732,2735,1,0,0,0,2733,2731,1, - 0,0,0,2733,2734,1,0,0,0,2734,215,1,0,0,0,2735,2733,1,0,0,0,2736, - 2737,5,2,0,0,2737,2742,3,218,109,0,2738,2739,5,4,0,0,2739,2741,3, - 218,109,0,2740,2738,1,0,0,0,2741,2744,1,0,0,0,2742,2740,1,0,0,0, - 2742,2743,1,0,0,0,2743,2745,1,0,0,0,2744,2742,1,0,0,0,2745,2746, - 5,3,0,0,2746,217,1,0,0,0,2747,2749,3,372,186,0,2748,2750,7,15,0, - 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,219,1,0,0,0,2751,2752, - 5,2,0,0,2752,2757,3,222,111,0,2753,2754,5,4,0,0,2754,2756,3,222, - 111,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,2760,1,0,0,0,2759,2757,1,0,0,0,2760,2761,5,3,0, - 0,2761,221,1,0,0,0,2762,2764,3,96,48,0,2763,2765,3,24,12,0,2764, - 2763,1,0,0,0,2764,2765,1,0,0,0,2765,223,1,0,0,0,2766,2770,3,86,43, - 0,2767,2770,3,90,45,0,2768,2770,3,98,49,0,2769,2766,1,0,0,0,2769, - 2767,1,0,0,0,2769,2768,1,0,0,0,2770,2772,1,0,0,0,2771,2773,3,150, - 75,0,2772,2771,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0,0,2774, - 2776,3,208,104,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2777,1, - 0,0,0,2777,2778,3,240,120,0,2778,2798,1,0,0,0,2779,2780,5,2,0,0, - 2780,2781,3,26,13,0,2781,2783,5,3,0,0,2782,2784,3,208,104,0,2783, - 2782,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0,0,2785,2786,3,240, - 120,0,2786,2798,1,0,0,0,2787,2788,5,2,0,0,2788,2789,3,198,99,0,2789, - 2791,5,3,0,0,2790,2792,3,208,104,0,2791,2790,1,0,0,0,2791,2792,1, - 0,0,0,2792,2793,1,0,0,0,2793,2794,3,240,120,0,2794,2798,1,0,0,0, - 2795,2798,3,226,113,0,2796,2798,3,238,119,0,2797,2769,1,0,0,0,2797, - 2779,1,0,0,0,2797,2787,1,0,0,0,2797,2795,1,0,0,0,2797,2796,1,0,0, - 0,2798,225,1,0,0,0,2799,2800,5,333,0,0,2800,2805,3,268,134,0,2801, - 2802,5,4,0,0,2802,2804,3,268,134,0,2803,2801,1,0,0,0,2804,2807,1, - 0,0,0,2805,2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807, - 2805,1,0,0,0,2808,2809,3,240,120,0,2809,227,1,0,0,0,2810,2811,5, - 293,0,0,2811,2813,3,86,43,0,2812,2814,3,230,115,0,2813,2812,1,0, - 0,0,2813,2814,1,0,0,0,2814,2830,1,0,0,0,2815,2816,5,293,0,0,2816, - 2817,5,2,0,0,2817,2818,3,86,43,0,2818,2820,5,3,0,0,2819,2821,3,230, - 115,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0,2821,2830,1,0,0,0,2822, - 2823,5,293,0,0,2823,2824,5,2,0,0,2824,2825,3,26,13,0,2825,2827,5, - 3,0,0,2826,2828,3,230,115,0,2827,2826,1,0,0,0,2827,2828,1,0,0,0, - 2828,2830,1,0,0,0,2829,2810,1,0,0,0,2829,2815,1,0,0,0,2829,2822, - 1,0,0,0,2830,229,1,0,0,0,2831,2832,5,346,0,0,2832,2833,5,274,0,0, - 2833,2851,5,217,0,0,2834,2835,7,24,0,0,2835,2848,5,31,0,0,2836,2837, - 5,2,0,0,2837,2842,3,268,134,0,2838,2839,5,4,0,0,2839,2841,3,268, - 134,0,2840,2838,1,0,0,0,2841,2844,1,0,0,0,2842,2840,1,0,0,0,2842, - 2843,1,0,0,0,2843,2845,1,0,0,0,2844,2842,1,0,0,0,2845,2846,5,3,0, - 0,2846,2849,1,0,0,0,2847,2849,3,268,134,0,2848,2836,1,0,0,0,2848, - 2847,1,0,0,0,2849,2851,1,0,0,0,2850,2831,1,0,0,0,2850,2834,1,0,0, - 0,2851,2868,1,0,0,0,2852,2853,7,25,0,0,2853,2866,5,31,0,0,2854,2855, - 5,2,0,0,2855,2860,3,108,54,0,2856,2857,5,4,0,0,2857,2859,3,108,54, - 0,2858,2856,1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861, - 1,0,0,0,2861,2863,1,0,0,0,2862,2860,1,0,0,0,2863,2864,5,3,0,0,2864, - 2867,1,0,0,0,2865,2867,3,108,54,0,2866,2854,1,0,0,0,2866,2865,1, - 0,0,0,2867,2869,1,0,0,0,2868,2852,1,0,0,0,2868,2869,1,0,0,0,2869, - 231,1,0,0,0,2870,2871,3,376,188,0,2871,2872,5,373,0,0,2872,2873, - 3,228,114,0,2873,233,1,0,0,0,2874,2877,3,228,114,0,2875,2877,3,232, - 116,0,2876,2874,1,0,0,0,2876,2875,1,0,0,0,2877,235,1,0,0,0,2878, - 2881,3,234,117,0,2879,2881,3,272,136,0,2880,2878,1,0,0,0,2880,2879, - 1,0,0,0,2881,237,1,0,0,0,2882,2883,3,366,183,0,2883,2892,5,2,0,0, - 2884,2889,3,236,118,0,2885,2886,5,4,0,0,2886,2888,3,236,118,0,2887, - 2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1,0,0,0,2889,2890,1,0,0, - 0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2892,2884,1,0,0,0,2892,2893, - 1,0,0,0,2893,2894,1,0,0,0,2894,2895,5,3,0,0,2895,2896,3,240,120, - 0,2896,239,1,0,0,0,2897,2899,5,20,0,0,2898,2897,1,0,0,0,2898,2899, - 1,0,0,0,2899,2900,1,0,0,0,2900,2902,3,378,189,0,2901,2903,3,212, - 106,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904, - 2898,1,0,0,0,2904,2905,1,0,0,0,2905,241,1,0,0,0,2906,2907,5,257, - 0,0,2907,2908,5,121,0,0,2908,2909,5,266,0,0,2909,2913,3,388,194, - 0,2910,2911,5,346,0,0,2911,2912,5,267,0,0,2912,2914,3,54,27,0,2913, - 2910,1,0,0,0,2913,2914,1,0,0,0,2914,2956,1,0,0,0,2915,2916,5,257, - 0,0,2916,2917,5,121,0,0,2917,2927,5,85,0,0,2918,2919,5,113,0,0,2919, - 2920,5,299,0,0,2920,2921,5,31,0,0,2921,2925,3,388,194,0,2922,2923, - 5,101,0,0,2923,2924,5,31,0,0,2924,2926,3,388,194,0,2925,2922,1,0, - 0,0,2925,2926,1,0,0,0,2926,2928,1,0,0,0,2927,2918,1,0,0,0,2927,2928, - 1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,48,0,0,2930,2931,5,154,0,0, - 2931,2932,5,299,0,0,2932,2933,5,31,0,0,2933,2935,3,388,194,0,2934, - 2929,1,0,0,0,2934,2935,1,0,0,0,2935,2941,1,0,0,0,2936,2937,5,177, - 0,0,2937,2938,5,156,0,0,2938,2939,5,299,0,0,2939,2940,5,31,0,0,2940, - 2942,3,388,194,0,2941,2936,1,0,0,0,2941,2942,1,0,0,0,2942,2947,1, - 0,0,0,2943,2944,5,166,0,0,2944,2945,5,299,0,0,2945,2946,5,31,0,0, - 2946,2948,3,388,194,0,2947,2943,1,0,0,0,2947,2948,1,0,0,0,2948,2953, - 1,0,0,0,2949,2950,5,198,0,0,2950,2951,5,83,0,0,2951,2952,5,20,0, - 0,2952,2954,3,388,194,0,2953,2949,1,0,0,0,2953,2954,1,0,0,0,2954, - 2956,1,0,0,0,2955,2906,1,0,0,0,2955,2915,1,0,0,0,2956,243,1,0,0, - 0,2957,2962,3,246,123,0,2958,2959,5,4,0,0,2959,2961,3,246,123,0, - 2960,2958,1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963, - 1,0,0,0,2963,245,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,372,186,0, - 2966,2967,5,5,0,0,2967,2969,3,372,186,0,2968,2966,1,0,0,0,2969,2972, - 1,0,0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,247,1,0,0,0,2972, - 2970,1,0,0,0,2973,2978,3,250,125,0,2974,2975,5,4,0,0,2975,2977,3, - 250,125,0,2976,2974,1,0,0,0,2977,2980,1,0,0,0,2978,2976,1,0,0,0, - 2978,2979,1,0,0,0,2979,249,1,0,0,0,2980,2978,1,0,0,0,2981,2984,3, - 246,123,0,2982,2983,5,207,0,0,2983,2985,3,54,27,0,2984,2982,1,0, - 0,0,2984,2985,1,0,0,0,2985,251,1,0,0,0,2986,2987,3,372,186,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,372,186,0,2992,253,1,0,0,0,2993, - 2994,3,372,186,0,2994,2995,5,5,0,0,2995,2997,1,0,0,0,2996,2993,1, - 0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,2999,3,372,186,0, - 2999,255,1,0,0,0,3000,3003,3,92,46,0,3001,3003,3,268,134,0,3002, - 3000,1,0,0,0,3002,3001,1,0,0,0,3003,3011,1,0,0,0,3004,3006,5,20, - 0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006,3009,1,0,0,0,3007,3010, - 3,372,186,0,3008,3010,3,212,106,0,3009,3007,1,0,0,0,3009,3008,1, - 0,0,0,3010,3012,1,0,0,0,3011,3005,1,0,0,0,3011,3012,1,0,0,0,3012, - 257,1,0,0,0,3013,3018,3,256,128,0,3014,3015,5,4,0,0,3015,3017,3, - 256,128,0,3016,3014,1,0,0,0,3017,3020,1,0,0,0,3018,3016,1,0,0,0, - 3018,3019,1,0,0,0,3019,259,1,0,0,0,3020,3018,1,0,0,0,3021,3022,5, - 2,0,0,3022,3027,3,262,131,0,3023,3024,5,4,0,0,3024,3026,3,262,131, - 0,3025,3023,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028, - 1,0,0,0,3028,3030,1,0,0,0,3029,3027,1,0,0,0,3030,3031,5,3,0,0,3031, - 261,1,0,0,0,3032,3035,3,264,132,0,3033,3035,3,336,168,0,3034,3032, - 1,0,0,0,3034,3033,1,0,0,0,3035,263,1,0,0,0,3036,3050,3,370,185,0, - 3037,3038,3,376,188,0,3038,3039,5,2,0,0,3039,3044,3,266,133,0,3040, - 3041,5,4,0,0,3041,3043,3,266,133,0,3042,3040,1,0,0,0,3043,3046,1, - 0,0,0,3044,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3047,1,0,0,0,3046, - 3044,1,0,0,0,3047,3048,5,3,0,0,3048,3050,1,0,0,0,3049,3036,1,0,0, - 0,3049,3037,1,0,0,0,3050,265,1,0,0,0,3051,3054,3,370,185,0,3052, - 3054,3,288,144,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,267,1, - 0,0,0,3055,3056,3,276,138,0,3056,269,1,0,0,0,3057,3058,3,376,188, - 0,3058,3059,5,373,0,0,3059,3060,3,268,134,0,3060,271,1,0,0,0,3061, - 3064,3,268,134,0,3062,3064,3,270,135,0,3063,3061,1,0,0,0,3063,3062, - 1,0,0,0,3064,273,1,0,0,0,3065,3070,3,268,134,0,3066,3067,5,4,0,0, - 3067,3069,3,268,134,0,3068,3066,1,0,0,0,3069,3072,1,0,0,0,3070,3068, - 1,0,0,0,3070,3071,1,0,0,0,3071,275,1,0,0,0,3072,3070,1,0,0,0,3073, - 3074,6,138,-1,0,3074,3075,7,26,0,0,3075,3086,3,276,138,5,3076,3077, - 5,105,0,0,3077,3078,5,2,0,0,3078,3079,3,26,13,0,3079,3080,5,3,0, - 0,3080,3086,1,0,0,0,3081,3083,3,280,140,0,3082,3084,3,278,139,0, - 3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1,0,0,0,3085,3073, - 1,0,0,0,3085,3076,1,0,0,0,3085,3081,1,0,0,0,3086,3095,1,0,0,0,3087, - 3088,10,2,0,0,3088,3089,5,14,0,0,3089,3094,3,276,138,3,3090,3091, - 10,1,0,0,3091,3092,5,208,0,0,3092,3094,3,276,138,2,3093,3087,1,0, - 0,0,3093,3090,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096, - 1,0,0,0,3096,277,1,0,0,0,3097,3095,1,0,0,0,3098,3100,5,197,0,0,3099, - 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,24, - 0,0,3102,3103,3,280,140,0,3103,3104,5,14,0,0,3104,3105,3,280,140, - 0,3105,3181,1,0,0,0,3106,3108,5,197,0,0,3107,3106,1,0,0,0,3107,3108, - 1,0,0,0,3108,3109,1,0,0,0,3109,3110,5,140,0,0,3110,3111,5,2,0,0, - 3111,3116,3,268,134,0,3112,3113,5,4,0,0,3113,3115,3,268,134,0,3114, - 3112,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3116,3117,1,0,0, - 0,3117,3119,1,0,0,0,3118,3116,1,0,0,0,3119,3120,5,3,0,0,3120,3181, - 1,0,0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, - 3123,3124,1,0,0,0,3124,3125,5,140,0,0,3125,3126,5,2,0,0,3126,3127, - 3,26,13,0,3127,3128,5,3,0,0,3128,3181,1,0,0,0,3129,3131,5,197,0, - 0,3130,3129,1,0,0,0,3130,3131,1,0,0,0,3131,3132,1,0,0,0,3132,3133, - 7,27,0,0,3133,3181,3,280,140,0,3134,3136,5,197,0,0,3135,3134,1,0, - 0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,7,28,0,0,3138, - 3152,7,29,0,0,3139,3140,5,2,0,0,3140,3153,5,3,0,0,3141,3142,5,2, - 0,0,3142,3147,3,268,134,0,3143,3144,5,4,0,0,3144,3146,3,268,134, - 0,3145,3143,1,0,0,0,3146,3149,1,0,0,0,3147,3145,1,0,0,0,3147,3148, - 1,0,0,0,3148,3150,1,0,0,0,3149,3147,1,0,0,0,3150,3151,5,3,0,0,3151, - 3153,1,0,0,0,3152,3139,1,0,0,0,3152,3141,1,0,0,0,3153,3181,1,0,0, - 0,3154,3156,5,197,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3157, - 1,0,0,0,3157,3158,7,28,0,0,3158,3161,3,280,140,0,3159,3160,5,100, - 0,0,3160,3162,3,388,194,0,3161,3159,1,0,0,0,3161,3162,1,0,0,0,3162, - 3181,1,0,0,0,3163,3165,5,153,0,0,3164,3166,5,197,0,0,3165,3164,1, - 0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3181,5,198,0,0,3168, - 3170,5,153,0,0,3169,3171,5,197,0,0,3170,3169,1,0,0,0,3170,3171,1, - 0,0,0,3171,3172,1,0,0,0,3172,3181,7,30,0,0,3173,3175,5,153,0,0,3174, - 3176,5,197,0,0,3175,3174,1,0,0,0,3175,3176,1,0,0,0,3176,3177,1,0, - 0,0,3177,3178,5,92,0,0,3178,3179,5,123,0,0,3179,3181,3,280,140,0, - 3180,3099,1,0,0,0,3180,3107,1,0,0,0,3180,3122,1,0,0,0,3180,3130, - 1,0,0,0,3180,3135,1,0,0,0,3180,3155,1,0,0,0,3180,3163,1,0,0,0,3180, - 3168,1,0,0,0,3180,3173,1,0,0,0,3181,279,1,0,0,0,3182,3183,6,140, - -1,0,3183,3187,3,284,142,0,3184,3185,7,31,0,0,3185,3187,3,280,140, - 7,3186,3182,1,0,0,0,3186,3184,1,0,0,0,3187,3209,1,0,0,0,3188,3189, - 10,6,0,0,3189,3190,7,32,0,0,3190,3208,3,280,140,7,3191,3192,10,5, - 0,0,3192,3193,7,33,0,0,3193,3208,3,280,140,6,3194,3195,10,4,0,0, - 3195,3196,5,367,0,0,3196,3208,3,280,140,5,3197,3198,10,3,0,0,3198, - 3199,5,370,0,0,3199,3208,3,280,140,4,3200,3201,10,2,0,0,3201,3202, - 5,368,0,0,3202,3208,3,280,140,3,3203,3204,10,1,0,0,3204,3205,3,290, - 145,0,3205,3206,3,280,140,2,3206,3208,1,0,0,0,3207,3188,1,0,0,0, - 3207,3191,1,0,0,0,3207,3194,1,0,0,0,3207,3197,1,0,0,0,3207,3200, - 1,0,0,0,3207,3203,1,0,0,0,3208,3211,1,0,0,0,3209,3207,1,0,0,0,3209, - 3210,1,0,0,0,3210,281,1,0,0,0,3211,3209,1,0,0,0,3212,3213,7,34,0, - 0,3213,283,1,0,0,0,3214,3215,6,142,-1,0,3215,3464,7,35,0,0,3216, - 3217,7,36,0,0,3217,3220,5,2,0,0,3218,3221,3,282,141,0,3219,3221, - 3,388,194,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,280,140,0,3224,3225,5,4,0,0,3225, - 3226,3,280,140,0,3226,3227,5,3,0,0,3227,3464,1,0,0,0,3228,3229,7, - 37,0,0,3229,3232,5,2,0,0,3230,3233,3,282,141,0,3231,3233,3,388,194, - 0,3232,3230,1,0,0,0,3232,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235, - 5,4,0,0,3235,3236,3,280,140,0,3236,3237,5,4,0,0,3237,3238,3,280, - 140,0,3238,3239,5,3,0,0,3239,3464,1,0,0,0,3240,3242,5,35,0,0,3241, - 3243,3,350,175,0,3242,3241,1,0,0,0,3243,3244,1,0,0,0,3244,3242,1, - 0,0,0,3244,3245,1,0,0,0,3245,3248,1,0,0,0,3246,3247,5,97,0,0,3247, - 3249,3,268,134,0,3248,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1, - 0,0,0,3250,3251,5,99,0,0,3251,3464,1,0,0,0,3252,3253,5,35,0,0,3253, - 3255,3,268,134,0,3254,3256,3,350,175,0,3255,3254,1,0,0,0,3256,3257, - 1,0,0,0,3257,3255,1,0,0,0,3257,3258,1,0,0,0,3258,3261,1,0,0,0,3259, - 3260,5,97,0,0,3260,3262,3,268,134,0,3261,3259,1,0,0,0,3261,3262, - 1,0,0,0,3262,3263,1,0,0,0,3263,3264,5,99,0,0,3264,3464,1,0,0,0,3265, - 3266,7,38,0,0,3266,3267,5,2,0,0,3267,3268,3,268,134,0,3268,3269, - 5,20,0,0,3269,3270,3,318,159,0,3270,3271,5,3,0,0,3271,3464,1,0,0, - 0,3272,3273,5,286,0,0,3273,3282,5,2,0,0,3274,3279,3,256,128,0,3275, - 3276,5,4,0,0,3276,3278,3,256,128,0,3277,3275,1,0,0,0,3278,3281,1, - 0,0,0,3279,3277,1,0,0,0,3279,3280,1,0,0,0,3280,3283,1,0,0,0,3281, - 3279,1,0,0,0,3282,3274,1,0,0,0,3282,3283,1,0,0,0,3283,3284,1,0,0, - 0,3284,3464,5,3,0,0,3285,3286,5,116,0,0,3286,3287,5,2,0,0,3287,3290, - 3,268,134,0,3288,3289,5,138,0,0,3289,3291,5,199,0,0,3290,3288,1, - 0,0,0,3290,3291,1,0,0,0,3291,3292,1,0,0,0,3292,3293,5,3,0,0,3293, - 3464,1,0,0,0,3294,3295,5,17,0,0,3295,3296,5,2,0,0,3296,3299,3,268, - 134,0,3297,3298,5,138,0,0,3298,3300,5,199,0,0,3299,3297,1,0,0,0, - 3299,3300,1,0,0,0,3300,3301,1,0,0,0,3301,3302,5,3,0,0,3302,3464, - 1,0,0,0,3303,3304,5,157,0,0,3304,3305,5,2,0,0,3305,3308,3,268,134, - 0,3306,3307,5,138,0,0,3307,3309,5,199,0,0,3308,3306,1,0,0,0,3308, - 3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,3,0,0,3311,3464,1,0,0, - 0,3312,3313,5,225,0,0,3313,3314,5,2,0,0,3314,3315,3,280,140,0,3315, - 3316,5,140,0,0,3316,3317,3,280,140,0,3317,3318,5,3,0,0,3318,3464, - 1,0,0,0,3319,3464,3,288,144,0,3320,3464,5,363,0,0,3321,3322,3,370, - 185,0,3322,3323,5,5,0,0,3323,3324,5,363,0,0,3324,3464,1,0,0,0,3325, - 3326,5,2,0,0,3326,3329,3,256,128,0,3327,3328,5,4,0,0,3328,3330,3, - 256,128,0,3329,3327,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0, - 3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3334,5,3,0,0,3334,3464, - 1,0,0,0,3335,3336,5,2,0,0,3336,3337,3,26,13,0,3337,3338,5,3,0,0, - 3338,3464,1,0,0,0,3339,3340,5,136,0,0,3340,3341,5,2,0,0,3341,3342, - 3,268,134,0,3342,3343,5,3,0,0,3343,3464,1,0,0,0,3344,3345,3,366, - 183,0,3345,3357,5,2,0,0,3346,3348,3,196,98,0,3347,3346,1,0,0,0,3347, - 3348,1,0,0,0,3348,3349,1,0,0,0,3349,3354,3,272,136,0,3350,3351,5, - 4,0,0,3351,3353,3,272,136,0,3352,3350,1,0,0,0,3353,3356,1,0,0,0, - 3354,3352,1,0,0,0,3354,3355,1,0,0,0,3355,3358,1,0,0,0,3356,3354, - 1,0,0,0,3357,3347,1,0,0,0,3357,3358,1,0,0,0,3358,3359,1,0,0,0,3359, - 3366,5,3,0,0,3360,3361,5,114,0,0,3361,3362,5,2,0,0,3362,3363,5,344, - 0,0,3363,3364,3,276,138,0,3364,3365,5,3,0,0,3365,3367,1,0,0,0,3366, - 3360,1,0,0,0,3366,3367,1,0,0,0,3367,3370,1,0,0,0,3368,3369,7,39, - 0,0,3369,3371,5,199,0,0,3370,3368,1,0,0,0,3370,3371,1,0,0,0,3371, - 3374,1,0,0,0,3372,3373,5,213,0,0,3373,3375,3,358,179,0,3374,3372, - 1,0,0,0,3374,3375,1,0,0,0,3375,3464,1,0,0,0,3376,3377,3,376,188, - 0,3377,3378,5,372,0,0,3378,3379,3,268,134,0,3379,3464,1,0,0,0,3380, - 3381,5,2,0,0,3381,3384,3,376,188,0,3382,3383,5,4,0,0,3383,3385,3, - 376,188,0,3384,3382,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, - 3386,3387,1,0,0,0,3387,3388,1,0,0,0,3388,3389,5,3,0,0,3389,3390, - 5,372,0,0,3390,3391,3,268,134,0,3391,3464,1,0,0,0,3392,3464,3,376, - 188,0,3393,3394,5,2,0,0,3394,3395,3,268,134,0,3395,3396,5,3,0,0, - 3396,3464,1,0,0,0,3397,3398,5,110,0,0,3398,3399,5,2,0,0,3399,3400, - 3,376,188,0,3400,3401,5,123,0,0,3401,3402,3,280,140,0,3402,3403, - 5,3,0,0,3403,3464,1,0,0,0,3404,3405,7,40,0,0,3405,3406,5,2,0,0,3406, - 3407,3,280,140,0,3407,3408,7,41,0,0,3408,3411,3,280,140,0,3409,3410, - 7,42,0,0,3410,3412,3,280,140,0,3411,3409,1,0,0,0,3411,3412,1,0,0, - 0,3412,3413,1,0,0,0,3413,3414,5,3,0,0,3414,3464,1,0,0,0,3415,3416, - 5,315,0,0,3416,3418,5,2,0,0,3417,3419,7,43,0,0,3418,3417,1,0,0,0, - 3418,3419,1,0,0,0,3419,3421,1,0,0,0,3420,3422,3,280,140,0,3421,3420, - 1,0,0,0,3421,3422,1,0,0,0,3422,3423,1,0,0,0,3423,3424,5,123,0,0, - 3424,3425,3,280,140,0,3425,3426,5,3,0,0,3426,3464,1,0,0,0,3427,3428, - 5,215,0,0,3428,3429,5,2,0,0,3429,3430,3,280,140,0,3430,3431,5,224, - 0,0,3431,3432,3,280,140,0,3432,3433,5,123,0,0,3433,3436,3,280,140, - 0,3434,3435,5,119,0,0,3435,3437,3,280,140,0,3436,3434,1,0,0,0,3436, - 3437,1,0,0,0,3437,3438,1,0,0,0,3438,3439,5,3,0,0,3439,3464,1,0,0, - 0,3440,3441,7,44,0,0,3441,3442,5,2,0,0,3442,3443,3,280,140,0,3443, - 3444,5,3,0,0,3444,3445,5,347,0,0,3445,3446,5,130,0,0,3446,3447,5, - 2,0,0,3447,3448,5,209,0,0,3448,3449,5,31,0,0,3449,3450,3,108,54, - 0,3450,3457,5,3,0,0,3451,3452,5,114,0,0,3452,3453,5,2,0,0,3453,3454, - 5,344,0,0,3454,3455,3,276,138,0,3455,3456,5,3,0,0,3456,3458,1,0, - 0,0,3457,3451,1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3460, - 5,213,0,0,3460,3462,3,358,179,0,3461,3459,1,0,0,0,3461,3462,1,0, - 0,0,3462,3464,1,0,0,0,3463,3214,1,0,0,0,3463,3216,1,0,0,0,3463,3228, - 1,0,0,0,3463,3240,1,0,0,0,3463,3252,1,0,0,0,3463,3265,1,0,0,0,3463, - 3272,1,0,0,0,3463,3285,1,0,0,0,3463,3294,1,0,0,0,3463,3303,1,0,0, - 0,3463,3312,1,0,0,0,3463,3319,1,0,0,0,3463,3320,1,0,0,0,3463,3321, - 1,0,0,0,3463,3325,1,0,0,0,3463,3335,1,0,0,0,3463,3339,1,0,0,0,3463, - 3344,1,0,0,0,3463,3376,1,0,0,0,3463,3380,1,0,0,0,3463,3392,1,0,0, - 0,3463,3393,1,0,0,0,3463,3397,1,0,0,0,3463,3404,1,0,0,0,3463,3415, - 1,0,0,0,3463,3427,1,0,0,0,3463,3440,1,0,0,0,3464,3475,1,0,0,0,3465, - 3466,10,9,0,0,3466,3467,5,6,0,0,3467,3468,3,280,140,0,3468,3469, - 5,7,0,0,3469,3474,1,0,0,0,3470,3471,10,7,0,0,3471,3472,5,5,0,0,3472, - 3474,3,376,188,0,3473,3465,1,0,0,0,3473,3470,1,0,0,0,3474,3477,1, - 0,0,0,3475,3473,1,0,0,0,3475,3476,1,0,0,0,3476,285,1,0,0,0,3477, - 3475,1,0,0,0,3478,3486,5,71,0,0,3479,3486,5,303,0,0,3480,3486,5, - 304,0,0,3481,3486,5,305,0,0,3482,3486,5,149,0,0,3483,3486,5,133, - 0,0,3484,3486,3,376,188,0,3485,3478,1,0,0,0,3485,3479,1,0,0,0,3485, - 3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485,3483,1,0,0, - 0,3485,3484,1,0,0,0,3486,287,1,0,0,0,3487,3503,5,198,0,0,3488,3503, - 5,376,0,0,3489,3490,5,371,0,0,3490,3503,3,376,188,0,3491,3503,3, - 298,149,0,3492,3493,3,286,143,0,3493,3494,3,388,194,0,3494,3503, - 1,0,0,0,3495,3503,3,384,192,0,3496,3503,3,296,148,0,3497,3499,3, - 388,194,0,3498,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3498,1,0,0,0, - 3500,3501,1,0,0,0,3501,3503,1,0,0,0,3502,3487,1,0,0,0,3502,3488, - 1,0,0,0,3502,3489,1,0,0,0,3502,3491,1,0,0,0,3502,3492,1,0,0,0,3502, - 3495,1,0,0,0,3502,3496,1,0,0,0,3502,3498,1,0,0,0,3503,289,1,0,0, - 0,3504,3505,7,45,0,0,3505,291,1,0,0,0,3506,3507,7,46,0,0,3507,293, - 1,0,0,0,3508,3509,7,47,0,0,3509,295,1,0,0,0,3510,3511,7,48,0,0,3511, - 297,1,0,0,0,3512,3515,5,149,0,0,3513,3516,3,300,150,0,3514,3516, - 3,304,152,0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,299,1,0,0,0, - 3517,3519,3,302,151,0,3518,3520,3,306,153,0,3519,3518,1,0,0,0,3519, - 3520,1,0,0,0,3520,301,1,0,0,0,3521,3522,3,308,154,0,3522,3523,3, - 310,155,0,3523,3525,1,0,0,0,3524,3521,1,0,0,0,3525,3526,1,0,0,0, - 3526,3524,1,0,0,0,3526,3527,1,0,0,0,3527,303,1,0,0,0,3528,3531,3, - 306,153,0,3529,3532,3,302,151,0,3530,3532,3,306,153,0,3531,3529, - 1,0,0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,305,1,0,0,0,3533, - 3534,3,308,154,0,3534,3535,3,312,156,0,3535,3536,5,309,0,0,3536, - 3537,3,312,156,0,3537,307,1,0,0,0,3538,3540,7,49,0,0,3539,3538,1, - 0,0,0,3539,3540,1,0,0,0,3540,3544,1,0,0,0,3541,3545,5,382,0,0,3542, - 3545,5,384,0,0,3543,3545,3,388,194,0,3544,3541,1,0,0,0,3544,3542, - 1,0,0,0,3544,3543,1,0,0,0,3545,309,1,0,0,0,3546,3547,7,50,0,0,3547, - 311,1,0,0,0,3548,3549,7,51,0,0,3549,313,1,0,0,0,3550,3554,5,116, - 0,0,3551,3552,5,9,0,0,3552,3554,3,372,186,0,3553,3550,1,0,0,0,3553, - 3551,1,0,0,0,3554,315,1,0,0,0,3555,3586,5,27,0,0,3556,3586,5,308, - 0,0,3557,3586,5,32,0,0,3558,3586,5,276,0,0,3559,3586,5,272,0,0,3560, - 3586,5,150,0,0,3561,3586,5,151,0,0,3562,3586,5,25,0,0,3563,3586, - 5,174,0,0,3564,3586,5,117,0,0,3565,3586,5,234,0,0,3566,3586,5,95, - 0,0,3567,3586,5,71,0,0,3568,3586,5,303,0,0,3569,3586,5,305,0,0,3570, - 3586,5,304,0,0,3571,3586,5,285,0,0,3572,3586,5,41,0,0,3573,3586, - 5,40,0,0,3574,3586,5,334,0,0,3575,3586,5,26,0,0,3576,3586,5,80,0, - 0,3577,3586,5,79,0,0,3578,3586,5,200,0,0,3579,3586,5,340,0,0,3580, - 3586,5,149,0,0,3581,3586,5,19,0,0,3582,3586,5,286,0,0,3583,3586, - 5,177,0,0,3584,3586,3,376,188,0,3585,3555,1,0,0,0,3585,3556,1,0, - 0,0,3585,3557,1,0,0,0,3585,3558,1,0,0,0,3585,3559,1,0,0,0,3585,3560, - 1,0,0,0,3585,3561,1,0,0,0,3585,3562,1,0,0,0,3585,3563,1,0,0,0,3585, - 3564,1,0,0,0,3585,3565,1,0,0,0,3585,3566,1,0,0,0,3585,3567,1,0,0, - 0,3585,3568,1,0,0,0,3585,3569,1,0,0,0,3585,3570,1,0,0,0,3585,3571, - 1,0,0,0,3585,3572,1,0,0,0,3585,3573,1,0,0,0,3585,3574,1,0,0,0,3585, - 3575,1,0,0,0,3585,3576,1,0,0,0,3585,3577,1,0,0,0,3585,3578,1,0,0, - 0,3585,3579,1,0,0,0,3585,3580,1,0,0,0,3585,3581,1,0,0,0,3585,3582, - 1,0,0,0,3585,3583,1,0,0,0,3585,3584,1,0,0,0,3586,317,1,0,0,0,3587, - 3588,5,19,0,0,3588,3589,5,356,0,0,3589,3590,3,318,159,0,3590,3591, - 5,358,0,0,3591,3634,1,0,0,0,3592,3593,5,177,0,0,3593,3594,5,356, - 0,0,3594,3595,3,318,159,0,3595,3596,5,4,0,0,3596,3597,3,318,159, - 0,3597,3598,5,358,0,0,3598,3634,1,0,0,0,3599,3606,5,286,0,0,3600, - 3602,5,356,0,0,3601,3603,3,346,173,0,3602,3601,1,0,0,0,3602,3603, - 1,0,0,0,3603,3604,1,0,0,0,3604,3607,5,358,0,0,3605,3607,5,354,0, - 0,3606,3600,1,0,0,0,3606,3605,1,0,0,0,3607,3634,1,0,0,0,3608,3609, - 5,149,0,0,3609,3612,7,52,0,0,3610,3611,5,309,0,0,3611,3613,5,186, - 0,0,3612,3610,1,0,0,0,3612,3613,1,0,0,0,3613,3634,1,0,0,0,3614,3615, - 5,149,0,0,3615,3618,7,53,0,0,3616,3617,5,309,0,0,3617,3619,7,54, - 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3634,1,0,0,0,3620,3631, - 3,316,158,0,3621,3622,5,2,0,0,3622,3627,5,382,0,0,3623,3624,5,4, - 0,0,3624,3626,5,382,0,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,3630,1,0,0,0,3629,3627,1,0,0, - 0,3630,3632,5,3,0,0,3631,3621,1,0,0,0,3631,3632,1,0,0,0,3632,3634, - 1,0,0,0,3633,3587,1,0,0,0,3633,3592,1,0,0,0,3633,3599,1,0,0,0,3633, - 3608,1,0,0,0,3633,3614,1,0,0,0,3633,3620,1,0,0,0,3634,319,1,0,0, - 0,3635,3640,3,322,161,0,3636,3637,5,4,0,0,3637,3639,3,322,161,0, - 3638,3636,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,321,1,0,0,0,3642,3640,1,0,0,0,3643,3644,3,96,48,0,3644, - 3648,3,318,159,0,3645,3647,3,328,164,0,3646,3645,1,0,0,0,3647,3650, - 1,0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,323,1,0,0,0,3650, - 3648,1,0,0,0,3651,3656,3,326,163,0,3652,3653,5,4,0,0,3653,3655,3, - 326,163,0,3654,3652,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0,0, - 3656,3657,1,0,0,0,3657,325,1,0,0,0,3658,3656,1,0,0,0,3659,3660,3, - 92,46,0,3660,3664,3,318,159,0,3661,3663,3,328,164,0,3662,3661,1, - 0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3664,3665,1,0,0,0,3665, - 327,1,0,0,0,3666,3664,1,0,0,0,3667,3668,5,197,0,0,3668,3673,5,198, - 0,0,3669,3673,3,330,165,0,3670,3673,3,24,12,0,3671,3673,3,314,157, - 0,3672,3667,1,0,0,0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671, - 1,0,0,0,3673,329,1,0,0,0,3674,3675,5,82,0,0,3675,3676,3,268,134, - 0,3676,331,1,0,0,0,3677,3678,7,55,0,0,3678,3679,3,268,134,0,3679, - 333,1,0,0,0,3680,3685,3,336,168,0,3681,3682,5,4,0,0,3682,3684,3, - 336,168,0,3683,3681,1,0,0,0,3684,3687,1,0,0,0,3685,3683,1,0,0,0, - 3685,3686,1,0,0,0,3686,335,1,0,0,0,3687,3685,1,0,0,0,3688,3689,3, - 372,186,0,3689,3692,3,318,159,0,3690,3691,5,197,0,0,3691,3693,5, - 198,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694, - 3696,3,24,12,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,337,1,0, - 0,0,3697,3702,3,340,170,0,3698,3699,5,4,0,0,3699,3701,3,340,170, - 0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, - 1,0,0,0,3703,339,1,0,0,0,3704,3702,1,0,0,0,3705,3706,3,96,48,0,3706, - 3710,3,318,159,0,3707,3709,3,342,171,0,3708,3707,1,0,0,0,3709,3712, - 1,0,0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,341,1,0,0,0,3712, - 3710,1,0,0,0,3713,3714,5,197,0,0,3714,3719,5,198,0,0,3715,3719,3, - 330,165,0,3716,3719,3,344,172,0,3717,3719,3,24,12,0,3718,3713,1, - 0,0,0,3718,3715,1,0,0,0,3718,3716,1,0,0,0,3718,3717,1,0,0,0,3719, - 343,1,0,0,0,3720,3721,5,127,0,0,3721,3722,5,12,0,0,3722,3723,5,20, - 0,0,3723,3724,5,2,0,0,3724,3725,3,268,134,0,3725,3726,5,3,0,0,3726, - 345,1,0,0,0,3727,3732,3,348,174,0,3728,3729,5,4,0,0,3729,3731,3, - 348,174,0,3730,3728,1,0,0,0,3731,3734,1,0,0,0,3732,3730,1,0,0,0, - 3732,3733,1,0,0,0,3733,347,1,0,0,0,3734,3732,1,0,0,0,3735,3737,3, - 376,188,0,3736,3738,5,371,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0, - 0,3738,3739,1,0,0,0,3739,3742,3,318,159,0,3740,3741,5,197,0,0,3741, - 3743,5,198,0,0,3742,3740,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0, - 0,0,3744,3746,3,24,12,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746, - 349,1,0,0,0,3747,3748,5,343,0,0,3748,3749,3,268,134,0,3749,3750, - 5,300,0,0,3750,3751,3,268,134,0,3751,351,1,0,0,0,3752,3753,5,345, - 0,0,3753,3758,3,356,178,0,3754,3755,5,4,0,0,3755,3757,3,356,178, - 0,3756,3754,1,0,0,0,3757,3760,1,0,0,0,3758,3756,1,0,0,0,3758,3759, - 1,0,0,0,3759,353,1,0,0,0,3760,3758,1,0,0,0,3761,3762,5,351,0,0,3762, - 3763,5,31,0,0,3763,3764,3,94,47,0,3764,355,1,0,0,0,3765,3766,3,372, - 186,0,3766,3767,5,20,0,0,3767,3768,3,358,179,0,3768,357,1,0,0,0, - 3769,3816,3,372,186,0,3770,3771,5,2,0,0,3771,3772,3,372,186,0,3772, - 3773,5,3,0,0,3773,3816,1,0,0,0,3774,3809,5,2,0,0,3775,3776,5,44, - 0,0,3776,3777,5,31,0,0,3777,3782,3,268,134,0,3778,3779,5,4,0,0,3779, - 3781,3,268,134,0,3780,3778,1,0,0,0,3781,3784,1,0,0,0,3782,3780,1, - 0,0,0,3782,3783,1,0,0,0,3783,3810,1,0,0,0,3784,3782,1,0,0,0,3785, - 3786,7,24,0,0,3786,3787,5,31,0,0,3787,3792,3,268,134,0,3788,3789, - 5,4,0,0,3789,3791,3,268,134,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,3807,1,0,0,0,3797, - 3798,7,25,0,0,3798,3799,5,31,0,0,3799,3804,3,108,54,0,3800,3801, - 5,4,0,0,3801,3803,3,108,54,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0, - 3804,3802,1,0,0,0,3804,3805,1,0,0,0,3805,3808,1,0,0,0,3806,3804, - 1,0,0,0,3807,3797,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809, - 3775,1,0,0,0,3809,3795,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,360, - 180,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0,0,3814, - 3816,5,3,0,0,3815,3769,1,0,0,0,3815,3770,1,0,0,0,3815,3774,1,0,0, - 0,3816,359,1,0,0,0,3817,3818,5,233,0,0,3818,3834,3,362,181,0,3819, - 3820,5,258,0,0,3820,3834,3,362,181,0,3821,3822,5,233,0,0,3822,3823, - 5,24,0,0,3823,3824,3,362,181,0,3824,3825,5,14,0,0,3825,3826,3,362, - 181,0,3826,3834,1,0,0,0,3827,3828,5,258,0,0,3828,3829,5,24,0,0,3829, - 3830,3,362,181,0,3830,3831,5,14,0,0,3831,3832,3,362,181,0,3832,3834, - 1,0,0,0,3833,3817,1,0,0,0,3833,3819,1,0,0,0,3833,3821,1,0,0,0,3833, - 3827,1,0,0,0,3834,361,1,0,0,0,3835,3836,5,321,0,0,3836,3843,7,56, - 0,0,3837,3838,5,62,0,0,3838,3843,5,257,0,0,3839,3840,3,268,134,0, - 3840,3841,7,56,0,0,3841,3843,1,0,0,0,3842,3835,1,0,0,0,3842,3837, - 1,0,0,0,3842,3839,1,0,0,0,3843,363,1,0,0,0,3844,3849,3,370,185,0, - 3845,3846,5,4,0,0,3846,3848,3,370,185,0,3847,3845,1,0,0,0,3848,3851, - 1,0,0,0,3849,3847,1,0,0,0,3849,3850,1,0,0,0,3850,365,1,0,0,0,3851, - 3849,1,0,0,0,3852,3853,5,136,0,0,3853,3854,5,2,0,0,3854,3855,3,268, - 134,0,3855,3856,5,3,0,0,3856,3862,1,0,0,0,3857,3862,3,370,185,0, - 3858,3862,5,114,0,0,3859,3862,5,161,0,0,3860,3862,5,250,0,0,3861, - 3852,1,0,0,0,3861,3857,1,0,0,0,3861,3858,1,0,0,0,3861,3859,1,0,0, - 0,3861,3860,1,0,0,0,3862,367,1,0,0,0,3863,3864,3,370,185,0,3864, - 369,1,0,0,0,3865,3870,3,376,188,0,3866,3867,5,5,0,0,3867,3869,3, - 376,188,0,3868,3866,1,0,0,0,3869,3872,1,0,0,0,3870,3868,1,0,0,0, - 3870,3871,1,0,0,0,3871,371,1,0,0,0,3872,3870,1,0,0,0,3873,3874,3, - 376,188,0,3874,3875,3,374,187,0,3875,373,1,0,0,0,3876,3877,5,362, - 0,0,3877,3879,3,376,188,0,3878,3876,1,0,0,0,3879,3880,1,0,0,0,3880, - 3878,1,0,0,0,3880,3881,1,0,0,0,3881,3884,1,0,0,0,3882,3884,1,0,0, - 0,3883,3878,1,0,0,0,3883,3882,1,0,0,0,3884,375,1,0,0,0,3885,3888, - 3,378,189,0,3886,3888,3,396,198,0,3887,3885,1,0,0,0,3887,3886,1, - 0,0,0,3888,377,1,0,0,0,3889,3894,5,388,0,0,3890,3894,3,380,190,0, - 3891,3894,3,394,197,0,3892,3894,3,398,199,0,3893,3889,1,0,0,0,3893, - 3890,1,0,0,0,3893,3891,1,0,0,0,3893,3892,1,0,0,0,3894,379,1,0,0, - 0,3895,3896,7,57,0,0,3896,381,1,0,0,0,3897,3898,5,389,0,0,3898,383, - 1,0,0,0,3899,3901,5,362,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,3902,1,0,0,0,3902,3940,5,383,0,0,3903,3905,5,362,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3940,5,384,0,0, - 3907,3909,5,362,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910, - 1,0,0,0,3910,3940,7,58,0,0,3911,3913,5,362,0,0,3912,3911,1,0,0,0, - 3912,3913,1,0,0,0,3913,3914,1,0,0,0,3914,3940,5,382,0,0,3915,3917, - 5,362,0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0, - 3918,3940,5,379,0,0,3919,3921,5,362,0,0,3920,3919,1,0,0,0,3920,3921, - 1,0,0,0,3921,3922,1,0,0,0,3922,3940,5,380,0,0,3923,3925,5,362,0, - 0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3940, - 5,381,0,0,3927,3929,5,362,0,0,3928,3927,1,0,0,0,3928,3929,1,0,0, - 0,3929,3930,1,0,0,0,3930,3940,5,386,0,0,3931,3933,5,362,0,0,3932, - 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3940,5,385, - 0,0,3935,3937,5,362,0,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0,3937, - 3938,1,0,0,0,3938,3940,5,387,0,0,3939,3900,1,0,0,0,3939,3904,1,0, - 0,0,3939,3908,1,0,0,0,3939,3912,1,0,0,0,3939,3916,1,0,0,0,3939,3920, - 1,0,0,0,3939,3924,1,0,0,0,3939,3928,1,0,0,0,3939,3932,1,0,0,0,3939, - 3936,1,0,0,0,3940,385,1,0,0,0,3941,3942,5,319,0,0,3942,3953,3,318, - 159,0,3943,3953,3,24,12,0,3944,3953,3,314,157,0,3945,3946,7,59,0, - 0,3946,3947,5,197,0,0,3947,3953,5,198,0,0,3948,3949,5,269,0,0,3949, - 3953,3,330,165,0,3950,3951,5,96,0,0,3951,3953,5,82,0,0,3952,3941, - 1,0,0,0,3952,3943,1,0,0,0,3952,3944,1,0,0,0,3952,3945,1,0,0,0,3952, - 3948,1,0,0,0,3952,3950,1,0,0,0,3953,387,1,0,0,0,3954,3955,7,60,0, - 0,3955,389,1,0,0,0,3956,3959,3,388,194,0,3957,3959,5,198,0,0,3958, - 3956,1,0,0,0,3958,3957,1,0,0,0,3959,391,1,0,0,0,3960,3963,5,382, - 0,0,3961,3963,3,388,194,0,3962,3960,1,0,0,0,3962,3961,1,0,0,0,3963, - 393,1,0,0,0,3964,3965,7,61,0,0,3965,395,1,0,0,0,3966,3967,7,62,0, - 0,3967,397,1,0,0,0,3968,3969,7,63,0,0,3969,399,1,0,0,0,517,403,410, - 414,419,426,431,439,441,460,464,470,473,476,483,486,490,493,498, - 510,512,520,523,527,530,536,547,553,558,591,601,612,623,634,639, - 648,652,658,662,667,673,685,693,699,710,714,719,734,738,745,749, - 755,784,788,793,800,806,809,812,816,820,828,830,839,842,851,856, - 862,869,872,876,887,890,896,900,915,917,925,929,935,938,942,945, - 951,956,960,967,970,973,980,985,994,1002,1008,1011,1014,1020,1024, - 1029,1032,1036,1038,1046,1054,1057,1064,1067,1070,1079,1084,1090, - 1095,1098,1102,1105,1109,1137,1140,1148,1154,1157,1160,1165,1173, - 1178,1184,1190,1193,1200,1207,1215,1232,1259,1262,1268,1277,1286, - 1292,1297,1302,1309,1314,1319,1326,1334,1337,1341,1353,1357,1364, - 1480,1488,1496,1505,1515,1519,1522,1526,1532,1544,1556,1561,1570, - 1578,1583,1585,1593,1598,1602,1605,1613,1618,1627,1632,1635,1640, - 1644,1649,1651,1655,1664,1672,1678,1689,1696,1705,1710,1713,1736, - 1738,1750,1757,1760,1767,1771,1777,1785,1792,1795,1803,1814,1825, - 1833,1839,1851,1858,1865,1877,1885,1891,1897,1900,1916,1923,1934, - 1943,1946,1955,1958,1967,1970,1979,1982,1985,1990,1992,1996,2007, - 2013,2019,2022,2024,2036,2040,2043,2047,2053,2057,2065,2069,2072, - 2075,2078,2082,2086,2091,2095,2098,2101,2104,2108,2113,2117,2120, - 2123,2126,2128,2134,2141,2146,2149,2152,2156,2166,2170,2172,2175, - 2179,2185,2189,2200,2210,2214,2226,2238,2253,2258,2264,2271,2287, - 2292,2305,2310,2318,2324,2328,2331,2336,2343,2349,2358,2368,2383, - 2388,2390,2395,2404,2417,2422,2426,2433,2438,2442,2445,2448,2462, - 2475,2480,2484,2487,2491,2497,2500,2507,2519,2530,2543,2554,2559, - 2567,2572,2586,2595,2598,2603,2610,2613,2619,2625,2628,2633,2638, - 2642,2648,2652,2655,2660,2663,2668,2672,2675,2678,2684,2689,2696, - 2699,2717,2719,2722,2733,2742,2749,2757,2764,2769,2772,2775,2783, - 2791,2797,2805,2813,2820,2827,2829,2842,2848,2850,2860,2866,2868, - 2876,2880,2889,2892,2898,2902,2904,2913,2925,2927,2934,2941,2947, - 2953,2955,2962,2970,2978,2984,2989,2996,3002,3005,3009,3011,3018, - 3027,3034,3044,3049,3053,3063,3070,3083,3085,3093,3095,3099,3107, - 3116,3122,3130,3135,3147,3152,3155,3161,3165,3170,3175,3180,3186, - 3207,3209,3220,3232,3244,3248,3257,3261,3279,3282,3290,3299,3308, - 3331,3347,3354,3357,3366,3370,3374,3386,3411,3418,3421,3436,3457, - 3461,3463,3473,3475,3485,3500,3502,3515,3519,3526,3531,3539,3544, - 3553,3585,3602,3606,3612,3618,3627,3631,3633,3640,3648,3656,3664, - 3672,3685,3692,3695,3702,3710,3718,3732,3737,3742,3745,3758,3782, - 3792,3795,3804,3807,3809,3812,3815,3833,3842,3849,3861,3870,3880, - 3883,3887,3893,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936, - 3939,3952,3958,3962 + 1,140,1,140,1,140,1,140,1,140,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,3433,8,140,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,5,141,3452,8,141,10,141,12,141,3455,9,141, + 3,141,3457,8,141,1,141,1,141,3,141,3461,8,141,1,141,1,141,1,141, + 1,141,3,141,3467,8,141,1,141,1,141,1,141,1,141,3,141,3473,8,141, + 1,141,1,141,1,141,1,141,1,141,5,141,3480,8,141,10,141,12,141,3483, + 9,141,1,141,3,141,3486,8,141,3,141,3488,8,141,1,142,1,142,1,142, + 5,142,3493,8,142,10,142,12,142,3496,9,142,1,143,1,143,1,143,5,143, + 3501,8,143,10,143,12,143,3504,9,143,1,144,1,144,1,144,5,144,3509, + 8,144,10,144,12,144,3512,9,144,1,145,1,145,1,145,5,145,3517,8,145, + 10,145,12,145,3520,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 3,146,3529,8,146,1,147,1,147,1,147,1,148,1,148,1,148,5,148,3537, + 8,148,10,148,12,148,3540,9,148,1,149,1,149,1,149,1,149,3,149,3546, + 8,149,1,149,1,149,3,149,3550,8,149,1,150,1,150,1,150,5,150,3555, + 8,150,10,150,12,150,3558,9,150,1,151,1,151,1,151,5,151,3563,8,151, + 10,151,12,151,3566,9,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,1,152,3,152,3581,8,152,1,153,1,153, + 3,153,3585,8,153,1,153,1,153,1,153,3,153,3590,8,153,1,153,1,153, + 3,153,3594,8,153,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,1,155,1,155,5,155,3610,8,155,10,155,12,155, + 3613,9,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157, + 1,157,1,157,1,157,1,157,1,157,1,157,5,157,3630,8,157,10,157,12,157, + 3633,9,157,1,157,1,157,1,157,1,157,1,157,5,157,3640,8,157,10,157, + 12,157,3643,9,157,3,157,3645,8,157,1,157,1,157,1,157,3,157,3650, + 8,157,3,157,3652,8,157,1,157,3,157,3655,8,157,1,157,3,157,3658,8, + 157,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,3668,8, + 158,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3677,8,159,1, + 160,1,160,1,160,5,160,3682,8,160,10,160,12,160,3685,9,160,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,3,161,3696,8,161, + 1,162,1,162,1,163,1,163,1,163,5,163,3703,8,163,10,163,12,163,3706, + 9,163,1,164,1,164,1,164,1,165,1,165,4,165,3713,8,165,11,165,12,165, + 3714,1,165,3,165,3718,8,165,1,166,1,166,3,166,3722,8,166,1,167,1, + 167,1,167,1,167,3,167,3728,8,167,1,168,1,168,1,169,3,169,3733,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,3,170,3750,8,170,1,171,1,171,1,172, + 1,172,1,173,1,173,1,174,1,174,1,174,9,1116,1186,1194,1214,1241,1250, + 1259,1268,1316,4,96,240,244,248,175,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,0,76,2,0,78,78,229,229,2,0,34, + 34,247,247,3,0,73,73,191,191,262,262,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,173,173, + 3,0,10,10,290,290,331,331,1,0,86,87,2,0,108,108,122,122,3,0,8,8, + 96,96,289,289,2,0,8,8,167,167,1,0,335,336,2,0,59,59,96,96,2,0,129, + 129,249,249,6,0,54,54,129,129,143,143,172,172,228,228,313,313,3, + 0,11,11,59,59,96,96,4,0,107,107,139,139,171,171,326,326,2,0,171, + 171,326,326,3,0,45,45,275,275,279,279,2,0,45,45,275,275,3,0,18,18, + 103,103,320,320,3,0,72,72,190,190,261,261,4,0,102,102,148,148,270, + 270,323,323,3,0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116, + 116,157,157,2,0,292,292,337,337,2,0,291,291,303,303,2,0,61,61,256, + 256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,15,15,264,264,2,0,124, + 124,250,250,2,0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278, + 278,2,0,197,197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16, + 277,277,3,0,111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94, + 363,365,2,0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182, + 182,184,184,186,186,231,231,259,259,341,341,348,348,4,0,63,63,65, + 66,268,268,331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2, + 0,36,36,318,318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123, + 2,0,4,4,119,119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359, + 2,0,94,94,361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111, + 316,316,1,0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341, + 342,348,349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2, + 0,186,186,348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134, + 184,184,259,259,2,0,82,82,352,352,2,0,233,233,258,258,2,0,118,118, + 226,226,2,0,378,378,389,389,1,0,379,387,2,0,96,96,269,269,1,0,377, + 378,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,163,193,195,195,199,201,205,207,210,210,212, + 213,215,219,222,226,228,238,240,249,251,262,264,267,269,276,278, + 292,294,299,302,308,310,310,312,322,326,330,333,342,345,345,348, + 351,16,0,15,15,60,60,102,102,124,124,144,144,148,148,155,155,158, + 158,161,161,194,194,203,203,250,250,264,264,270,270,323,323,332, + 332,19,0,8,14,16,59,61,101,103,122,125,143,145,147,149,154,156,157, + 159,160,162,193,195,195,197,202,204,249,251,262,265,269,271,292, + 294,322,324,331,333,351,4353,0,353,1,0,0,0,2,358,1,0,0,0,4,1319, + 1,0,0,0,6,1414,1,0,0,0,8,1416,1,0,0,0,10,1428,1,0,0,0,12,1441,1, + 0,0,0,14,1444,1,0,0,0,16,1448,1,0,0,0,18,1529,1,0,0,0,20,1531,1, + 0,0,0,22,1536,1,0,0,0,24,1557,1,0,0,0,26,1559,1,0,0,0,28,1566,1, + 0,0,0,30,1568,1,0,0,0,32,1576,1,0,0,0,34,1585,1,0,0,0,36,1596,1, + 0,0,0,38,1617,1,0,0,0,40,1620,1,0,0,0,42,1623,1,0,0,0,44,1634,1, + 0,0,0,46,1650,1,0,0,0,48,1656,1,0,0,0,50,1658,1,0,0,0,52,1669,1, + 0,0,0,54,1676,1,0,0,0,56,1687,1,0,0,0,58,1704,1,0,0,0,60,1712,1, + 0,0,0,62,1714,1,0,0,0,64,1778,1,0,0,0,66,1780,1,0,0,0,68,1782,1, + 0,0,0,70,1784,1,0,0,0,72,1786,1,0,0,0,74,1788,1,0,0,0,76,1790,1, + 0,0,0,78,1794,1,0,0,0,80,1796,1,0,0,0,82,1798,1,0,0,0,84,1806,1, + 0,0,0,86,1814,1,0,0,0,88,1819,1,0,0,0,90,1846,1,0,0,0,92,1851,1, + 0,0,0,94,1859,1,0,0,0,96,1867,1,0,0,0,98,1917,1,0,0,0,100,1921,1, + 0,0,0,102,1957,1,0,0,0,104,2003,1,0,0,0,106,2024,1,0,0,0,108,2056, + 1,0,0,0,110,2068,1,0,0,0,112,2071,1,0,0,0,114,2087,1,0,0,0,116,2101, + 1,0,0,0,118,2135,1,0,0,0,120,2137,1,0,0,0,122,2145,1,0,0,0,124,2149, + 1,0,0,0,126,2152,1,0,0,0,128,2155,1,0,0,0,130,2181,1,0,0,0,132,2183, + 1,0,0,0,134,2221,1,0,0,0,136,2262,1,0,0,0,138,2267,1,0,0,0,140,2300, + 1,0,0,0,142,2322,1,0,0,0,144,2324,1,0,0,0,146,2354,1,0,0,0,148,2356, + 1,0,0,0,150,2363,1,0,0,0,152,2380,1,0,0,0,154,2395,1,0,0,0,156,2419, + 1,0,0,0,158,2435,1,0,0,0,160,2442,1,0,0,0,162,2446,1,0,0,0,164,2449, + 1,0,0,0,166,2481,1,0,0,0,168,2496,1,0,0,0,170,2515,1,0,0,0,172,2533, + 1,0,0,0,174,2539,1,0,0,0,176,2541,1,0,0,0,178,2577,1,0,0,0,180,2579, + 1,0,0,0,182,2583,1,0,0,0,184,2591,1,0,0,0,186,2602,1,0,0,0,188,2606, + 1,0,0,0,190,2617,1,0,0,0,192,2677,1,0,0,0,194,2698,1,0,0,0,196,2719, + 1,0,0,0,198,2732,1,0,0,0,200,2738,1,0,0,0,202,2742,1,0,0,0,204,2751, + 1,0,0,0,206,2802,1,0,0,0,208,2804,1,0,0,0,210,2812,1,0,0,0,212,2820, + 1,0,0,0,214,2828,1,0,0,0,216,2836,1,0,0,0,218,2843,1,0,0,0,220,2849, + 1,0,0,0,222,2860,1,0,0,0,224,2868,1,0,0,0,226,2881,1,0,0,0,228,2896, + 1,0,0,0,230,2900,1,0,0,0,232,2902,1,0,0,0,234,2904,1,0,0,0,236,2910, + 1,0,0,0,238,2912,1,0,0,0,240,2932,1,0,0,0,242,3027,1,0,0,0,244,3033, + 1,0,0,0,246,3059,1,0,0,0,248,3310,1,0,0,0,250,3332,1,0,0,0,252,3349, + 1,0,0,0,254,3351,1,0,0,0,256,3353,1,0,0,0,258,3355,1,0,0,0,260,3357, + 1,0,0,0,262,3359,1,0,0,0,264,3364,1,0,0,0,266,3371,1,0,0,0,268,3375, + 1,0,0,0,270,3380,1,0,0,0,272,3386,1,0,0,0,274,3393,1,0,0,0,276,3395, + 1,0,0,0,278,3400,1,0,0,0,280,3432,1,0,0,0,282,3487,1,0,0,0,284,3489, + 1,0,0,0,286,3497,1,0,0,0,288,3505,1,0,0,0,290,3513,1,0,0,0,292,3528, + 1,0,0,0,294,3530,1,0,0,0,296,3533,1,0,0,0,298,3541,1,0,0,0,300,3551, + 1,0,0,0,302,3559,1,0,0,0,304,3580,1,0,0,0,306,3582,1,0,0,0,308,3595, + 1,0,0,0,310,3600,1,0,0,0,312,3614,1,0,0,0,314,3657,1,0,0,0,316,3667, + 1,0,0,0,318,3676,1,0,0,0,320,3678,1,0,0,0,322,3695,1,0,0,0,324,3697, + 1,0,0,0,326,3699,1,0,0,0,328,3707,1,0,0,0,330,3717,1,0,0,0,332,3721, + 1,0,0,0,334,3727,1,0,0,0,336,3729,1,0,0,0,338,3732,1,0,0,0,340,3749, + 1,0,0,0,342,3751,1,0,0,0,344,3753,1,0,0,0,346,3755,1,0,0,0,348,3757, + 1,0,0,0,350,352,3,2,1,0,351,350,1,0,0,0,352,355,1,0,0,0,353,351, + 1,0,0,0,353,354,1,0,0,0,354,356,1,0,0,0,355,353,1,0,0,0,356,357, + 5,0,0,1,357,1,1,0,0,0,358,360,3,4,2,0,359,361,5,1,0,0,360,359,1, + 0,0,0,360,361,1,0,0,0,361,3,1,0,0,0,362,1320,3,16,8,0,363,365,3, + 32,16,0,364,363,1,0,0,0,364,365,1,0,0,0,365,366,1,0,0,0,366,1320, + 3,64,32,0,367,369,5,330,0,0,368,370,3,26,13,0,369,368,1,0,0,0,369, + 370,1,0,0,0,370,371,1,0,0,0,371,1320,3,66,33,0,372,373,5,269,0,0, + 373,376,5,37,0,0,374,377,3,332,166,0,375,377,3,342,171,0,376,374, + 1,0,0,0,376,375,1,0,0,0,377,1320,1,0,0,0,378,379,5,59,0,0,379,381, + 3,26,13,0,380,382,3,160,80,0,381,380,1,0,0,0,381,382,1,0,0,0,382, + 383,1,0,0,0,383,393,3,68,34,0,384,385,5,51,0,0,385,392,3,342,171, + 0,386,387,5,170,0,0,387,392,3,342,171,0,388,389,5,346,0,0,389,390, + 7,0,0,0,390,392,3,42,21,0,391,384,1,0,0,0,391,386,1,0,0,0,391,388, + 1,0,0,0,392,395,1,0,0,0,393,391,1,0,0,0,393,394,1,0,0,0,394,1320, + 1,0,0,0,395,393,1,0,0,0,396,397,5,11,0,0,397,398,3,26,13,0,398,399, + 3,66,33,0,399,400,5,269,0,0,400,401,7,0,0,0,401,402,3,42,21,0,402, + 1320,1,0,0,0,403,404,5,11,0,0,404,405,3,26,13,0,405,406,3,66,33, + 0,406,407,5,269,0,0,407,408,5,170,0,0,408,409,3,342,171,0,409,1320, + 1,0,0,0,410,411,5,96,0,0,411,413,3,26,13,0,412,414,3,162,81,0,413, + 412,1,0,0,0,413,414,1,0,0,0,414,415,1,0,0,0,415,417,3,66,33,0,416, + 418,7,1,0,0,417,416,1,0,0,0,417,418,1,0,0,0,418,1320,1,0,0,0,419, + 420,5,273,0,0,420,423,7,2,0,0,421,422,7,3,0,0,422,424,3,210,105, + 0,423,421,1,0,0,0,423,424,1,0,0,0,424,429,1,0,0,0,425,427,5,163, + 0,0,426,425,1,0,0,0,426,427,1,0,0,0,427,428,1,0,0,0,428,430,3,342, + 171,0,429,426,1,0,0,0,429,430,1,0,0,0,430,1320,1,0,0,0,431,433,5, + 59,0,0,432,434,5,298,0,0,433,432,1,0,0,0,433,434,1,0,0,0,434,436, + 1,0,0,0,435,437,5,109,0,0,436,435,1,0,0,0,436,437,1,0,0,0,437,438, + 1,0,0,0,438,440,5,293,0,0,439,441,3,160,80,0,440,439,1,0,0,0,440, + 441,1,0,0,0,441,442,1,0,0,0,442,447,3,70,35,0,443,444,5,2,0,0,444, + 445,3,300,150,0,445,446,5,3,0,0,446,448,1,0,0,0,447,443,1,0,0,0, + 447,448,1,0,0,0,448,450,1,0,0,0,449,451,3,36,18,0,450,449,1,0,0, + 0,450,451,1,0,0,0,451,452,1,0,0,0,452,457,3,38,19,0,453,455,5,20, + 0,0,454,453,1,0,0,0,454,455,1,0,0,0,455,456,1,0,0,0,456,458,3,16, + 8,0,457,454,1,0,0,0,457,458,1,0,0,0,458,1320,1,0,0,0,459,460,5,59, + 0,0,460,462,5,293,0,0,461,463,3,160,80,0,462,461,1,0,0,0,462,463, + 1,0,0,0,463,464,1,0,0,0,464,465,3,70,35,0,465,466,5,163,0,0,466, + 477,3,72,36,0,467,476,3,36,18,0,468,476,3,206,103,0,469,476,3,58, + 29,0,470,471,5,170,0,0,471,476,3,342,171,0,472,473,5,297,0,0,473, + 476,3,42,21,0,474,476,3,40,20,0,475,467,1,0,0,0,475,468,1,0,0,0, + 475,469,1,0,0,0,475,470,1,0,0,0,475,472,1,0,0,0,475,474,1,0,0,0, + 476,479,1,0,0,0,477,475,1,0,0,0,477,478,1,0,0,0,478,1320,1,0,0,0, + 479,477,1,0,0,0,480,481,5,59,0,0,481,483,5,208,0,0,482,480,1,0,0, + 0,482,483,1,0,0,0,483,484,1,0,0,0,484,485,5,244,0,0,485,486,5,293, + 0,0,486,491,3,70,35,0,487,488,5,2,0,0,488,489,3,300,150,0,489,490, + 5,3,0,0,490,492,1,0,0,0,491,487,1,0,0,0,491,492,1,0,0,0,492,494, + 1,0,0,0,493,495,3,36,18,0,494,493,1,0,0,0,494,495,1,0,0,0,495,496, + 1,0,0,0,496,501,3,38,19,0,497,499,5,20,0,0,498,497,1,0,0,0,498,499, + 1,0,0,0,499,500,1,0,0,0,500,502,3,16,8,0,501,498,1,0,0,0,501,502, + 1,0,0,0,502,1320,1,0,0,0,503,504,5,13,0,0,504,505,5,293,0,0,505, + 507,3,72,36,0,506,508,3,22,11,0,507,506,1,0,0,0,507,508,1,0,0,0, + 508,509,1,0,0,0,509,510,5,55,0,0,510,518,5,282,0,0,511,519,5,196, + 0,0,512,513,5,119,0,0,513,514,5,50,0,0,514,519,3,82,41,0,515,516, + 5,119,0,0,516,517,5,10,0,0,517,519,5,50,0,0,518,511,1,0,0,0,518, + 512,1,0,0,0,518,515,1,0,0,0,518,519,1,0,0,0,519,1320,1,0,0,0,520, + 521,5,13,0,0,521,524,5,294,0,0,522,523,7,3,0,0,523,525,3,66,33,0, + 524,522,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526,527,5,55,0,0, + 527,529,5,282,0,0,528,530,5,196,0,0,529,528,1,0,0,0,529,530,1,0, + 0,0,530,1320,1,0,0,0,531,532,5,11,0,0,532,533,5,293,0,0,533,534, + 3,72,36,0,534,535,5,8,0,0,535,536,5,49,0,0,536,537,3,286,143,0,537, + 1320,1,0,0,0,538,539,5,11,0,0,539,540,5,293,0,0,540,541,3,72,36, + 0,541,542,5,8,0,0,542,543,5,50,0,0,543,544,5,2,0,0,544,545,3,284, + 142,0,545,546,5,3,0,0,546,1320,1,0,0,0,547,548,5,11,0,0,548,549, + 5,293,0,0,549,550,3,72,36,0,550,551,5,241,0,0,551,552,5,49,0,0,552, + 553,3,78,39,0,553,554,5,309,0,0,554,555,3,84,42,0,555,1320,1,0,0, + 0,556,557,5,11,0,0,557,558,5,293,0,0,558,559,3,72,36,0,559,560,5, + 96,0,0,560,562,5,49,0,0,561,563,3,162,81,0,562,561,1,0,0,0,562,563, + 1,0,0,0,563,564,1,0,0,0,564,565,3,78,39,0,565,1320,1,0,0,0,566,567, + 5,11,0,0,567,568,5,293,0,0,568,569,3,72,36,0,569,570,5,96,0,0,570, + 572,5,50,0,0,571,573,3,162,81,0,572,571,1,0,0,0,572,573,1,0,0,0, + 573,574,1,0,0,0,574,575,5,2,0,0,575,576,3,82,41,0,576,577,5,3,0, + 0,577,1320,1,0,0,0,578,583,5,11,0,0,579,580,5,293,0,0,580,584,3, + 72,36,0,581,582,5,338,0,0,582,584,3,76,38,0,583,579,1,0,0,0,583, + 581,1,0,0,0,584,585,1,0,0,0,585,586,5,241,0,0,586,587,5,309,0,0, + 587,588,3,210,105,0,588,1320,1,0,0,0,589,594,5,11,0,0,590,591,5, + 293,0,0,591,595,3,72,36,0,592,593,5,338,0,0,593,595,3,76,38,0,594, + 590,1,0,0,0,594,592,1,0,0,0,595,596,1,0,0,0,596,597,5,269,0,0,597, + 598,5,297,0,0,598,599,3,42,21,0,599,1320,1,0,0,0,600,605,5,11,0, + 0,601,602,5,293,0,0,602,606,3,72,36,0,603,604,5,338,0,0,604,606, + 3,76,38,0,605,601,1,0,0,0,605,603,1,0,0,0,606,607,1,0,0,0,607,608, + 5,328,0,0,608,610,5,297,0,0,609,611,3,162,81,0,610,609,1,0,0,0,610, + 611,1,0,0,0,611,612,1,0,0,0,612,613,3,42,21,0,613,1320,1,0,0,0,614, + 615,5,11,0,0,615,616,5,293,0,0,616,617,3,72,36,0,617,619,7,4,0,0, + 618,620,5,49,0,0,619,618,1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0, + 621,623,3,78,39,0,622,624,3,340,170,0,623,622,1,0,0,0,623,624,1, + 0,0,0,624,1320,1,0,0,0,625,626,5,11,0,0,626,627,5,293,0,0,627,629, + 3,72,36,0,628,630,3,22,11,0,629,628,1,0,0,0,629,630,1,0,0,0,630, + 631,1,0,0,0,631,633,5,39,0,0,632,634,5,49,0,0,633,632,1,0,0,0,633, + 634,1,0,0,0,634,635,1,0,0,0,635,636,3,78,39,0,636,638,3,298,149, + 0,637,639,3,278,139,0,638,637,1,0,0,0,638,639,1,0,0,0,639,1320,1, + 0,0,0,640,641,5,11,0,0,641,642,5,293,0,0,642,644,3,72,36,0,643,645, + 3,22,11,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,647, + 5,244,0,0,647,648,5,50,0,0,648,649,5,2,0,0,649,650,3,288,144,0,650, + 651,5,3,0,0,651,1320,1,0,0,0,652,653,5,11,0,0,653,654,5,293,0,0, + 654,656,3,72,36,0,655,657,3,22,11,0,656,655,1,0,0,0,656,657,1,0, + 0,0,657,658,1,0,0,0,658,659,5,269,0,0,659,660,5,266,0,0,660,664, + 3,342,171,0,661,662,5,346,0,0,662,663,5,267,0,0,663,665,3,42,21, + 0,664,661,1,0,0,0,664,665,1,0,0,0,665,1320,1,0,0,0,666,667,5,11, + 0,0,667,668,5,293,0,0,668,670,3,72,36,0,669,671,3,22,11,0,670,669, + 1,0,0,0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,5,269,0,0,673,674, + 5,267,0,0,674,675,3,42,21,0,675,1320,1,0,0,0,676,681,5,11,0,0,677, + 678,5,293,0,0,678,682,3,72,36,0,679,680,5,338,0,0,680,682,3,76,38, + 0,681,677,1,0,0,0,681,679,1,0,0,0,682,683,1,0,0,0,683,685,5,8,0, + 0,684,686,3,160,80,0,685,684,1,0,0,0,685,686,1,0,0,0,686,688,1,0, + 0,0,687,689,3,20,10,0,688,687,1,0,0,0,689,690,1,0,0,0,690,688,1, + 0,0,0,690,691,1,0,0,0,691,1320,1,0,0,0,692,693,5,11,0,0,693,694, + 5,293,0,0,694,695,3,72,36,0,695,696,3,22,11,0,696,697,5,241,0,0, + 697,698,5,309,0,0,698,699,3,22,11,0,699,1320,1,0,0,0,700,705,5,11, + 0,0,701,702,5,293,0,0,702,706,3,72,36,0,703,704,5,338,0,0,704,706, + 3,76,38,0,705,701,1,0,0,0,705,703,1,0,0,0,706,707,1,0,0,0,707,709, + 5,96,0,0,708,710,3,162,81,0,709,708,1,0,0,0,709,710,1,0,0,0,710, + 711,1,0,0,0,711,716,3,22,11,0,712,713,5,4,0,0,713,715,3,22,11,0, + 714,712,1,0,0,0,715,718,1,0,0,0,716,714,1,0,0,0,716,717,1,0,0,0, + 717,720,1,0,0,0,718,716,1,0,0,0,719,721,5,230,0,0,720,719,1,0,0, + 0,720,721,1,0,0,0,721,1320,1,0,0,0,722,723,5,11,0,0,723,724,5,293, + 0,0,724,726,3,72,36,0,725,727,3,22,11,0,726,725,1,0,0,0,726,727, + 1,0,0,0,727,728,1,0,0,0,728,729,5,269,0,0,729,730,5,170,0,0,730, + 731,3,342,171,0,731,1320,1,0,0,0,732,733,5,11,0,0,733,734,5,293, + 0,0,734,735,3,72,36,0,735,736,5,237,0,0,736,737,5,219,0,0,737,1320, + 1,0,0,0,738,739,5,11,0,0,739,740,5,176,0,0,740,741,5,338,0,0,741, + 742,3,76,38,0,742,743,7,5,0,0,743,744,5,248,0,0,744,1320,1,0,0,0, + 745,746,5,11,0,0,746,747,5,176,0,0,747,748,5,338,0,0,748,749,3,76, + 38,0,749,750,5,269,0,0,750,751,5,297,0,0,751,752,3,42,21,0,752,1320, + 1,0,0,0,753,754,5,96,0,0,754,756,5,293,0,0,755,757,3,162,81,0,756, + 755,1,0,0,0,756,757,1,0,0,0,757,758,1,0,0,0,758,760,3,72,36,0,759, + 761,5,230,0,0,760,759,1,0,0,0,760,761,1,0,0,0,761,1320,1,0,0,0,762, + 763,5,96,0,0,763,765,5,338,0,0,764,766,3,162,81,0,765,764,1,0,0, + 0,765,766,1,0,0,0,766,767,1,0,0,0,767,1320,3,76,38,0,768,769,5,96, + 0,0,769,770,5,176,0,0,770,772,5,338,0,0,771,773,3,162,81,0,772,771, + 1,0,0,0,772,773,1,0,0,0,773,774,1,0,0,0,774,1320,3,76,38,0,775,778, + 5,59,0,0,776,777,5,208,0,0,777,779,5,244,0,0,778,776,1,0,0,0,778, + 779,1,0,0,0,779,784,1,0,0,0,780,782,5,128,0,0,781,780,1,0,0,0,781, + 782,1,0,0,0,782,783,1,0,0,0,783,785,5,298,0,0,784,781,1,0,0,0,784, + 785,1,0,0,0,785,786,1,0,0,0,786,788,5,338,0,0,787,789,3,160,80,0, + 788,787,1,0,0,0,788,789,1,0,0,0,789,790,1,0,0,0,790,792,3,74,37, + 0,791,793,3,188,94,0,792,791,1,0,0,0,792,793,1,0,0,0,793,803,1,0, + 0,0,794,795,5,51,0,0,795,802,3,342,171,0,796,797,5,218,0,0,797,798, + 5,203,0,0,798,802,3,180,90,0,799,800,5,297,0,0,800,802,3,42,21,0, + 801,794,1,0,0,0,801,796,1,0,0,0,801,799,1,0,0,0,802,805,1,0,0,0, + 803,801,1,0,0,0,803,804,1,0,0,0,804,806,1,0,0,0,805,803,1,0,0,0, + 806,807,5,20,0,0,807,808,3,16,8,0,808,1320,1,0,0,0,809,812,5,59, + 0,0,810,811,5,208,0,0,811,813,5,244,0,0,812,810,1,0,0,0,812,813, + 1,0,0,0,813,815,1,0,0,0,814,816,5,128,0,0,815,814,1,0,0,0,815,816, + 1,0,0,0,816,817,1,0,0,0,817,818,5,298,0,0,818,819,5,338,0,0,819, + 824,3,74,37,0,820,821,5,2,0,0,821,822,3,296,148,0,822,823,5,3,0, + 0,823,825,1,0,0,0,824,820,1,0,0,0,824,825,1,0,0,0,825,826,1,0,0, + 0,826,829,3,36,18,0,827,828,5,207,0,0,828,830,3,42,21,0,829,827, + 1,0,0,0,829,830,1,0,0,0,830,1320,1,0,0,0,831,832,5,11,0,0,832,833, + 5,338,0,0,833,835,3,76,38,0,834,836,5,20,0,0,835,834,1,0,0,0,835, + 836,1,0,0,0,836,837,1,0,0,0,837,838,3,16,8,0,838,1320,1,0,0,0,839, + 842,5,59,0,0,840,841,5,208,0,0,841,843,5,244,0,0,842,840,1,0,0,0, + 842,843,1,0,0,0,843,845,1,0,0,0,844,846,5,298,0,0,845,844,1,0,0, + 0,845,846,1,0,0,0,846,847,1,0,0,0,847,849,5,125,0,0,848,850,3,160, + 80,0,849,848,1,0,0,0,849,850,1,0,0,0,850,851,1,0,0,0,851,852,3,324, + 162,0,852,853,5,20,0,0,853,867,3,342,171,0,854,855,5,332,0,0,855, + 856,3,332,166,0,856,857,3,342,171,0,857,864,1,0,0,0,858,859,5,4, + 0,0,859,860,3,332,166,0,860,861,3,342,171,0,861,863,1,0,0,0,862, + 858,1,0,0,0,863,866,1,0,0,0,864,862,1,0,0,0,864,865,1,0,0,0,865, + 868,1,0,0,0,866,864,1,0,0,0,867,854,1,0,0,0,867,868,1,0,0,0,868, + 1320,1,0,0,0,869,870,5,59,0,0,870,871,5,176,0,0,871,873,5,338,0, + 0,872,874,3,160,80,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1,0, + 0,0,875,877,3,74,37,0,876,878,3,36,18,0,877,876,1,0,0,0,877,878, + 1,0,0,0,878,896,1,0,0,0,879,880,5,207,0,0,880,895,3,42,21,0,881, + 882,5,218,0,0,882,883,5,31,0,0,883,895,3,224,112,0,884,895,3,10, + 5,0,885,895,3,8,4,0,886,895,3,206,103,0,887,895,3,58,29,0,888,889, + 5,170,0,0,889,895,3,342,171,0,890,891,5,51,0,0,891,895,3,342,171, + 0,892,893,5,297,0,0,893,895,3,42,21,0,894,879,1,0,0,0,894,881,1, + 0,0,0,894,884,1,0,0,0,894,885,1,0,0,0,894,886,1,0,0,0,894,887,1, + 0,0,0,894,888,1,0,0,0,894,890,1,0,0,0,894,892,1,0,0,0,895,898,1, + 0,0,0,896,894,1,0,0,0,896,897,1,0,0,0,897,899,1,0,0,0,898,896,1, + 0,0,0,899,900,5,20,0,0,900,901,3,16,8,0,901,1320,1,0,0,0,902,904, + 5,96,0,0,903,905,5,298,0,0,904,903,1,0,0,0,904,905,1,0,0,0,905,906, + 1,0,0,0,906,908,5,125,0,0,907,909,3,162,81,0,908,907,1,0,0,0,908, + 909,1,0,0,0,909,910,1,0,0,0,910,1320,3,322,161,0,911,914,5,81,0, + 0,912,913,5,208,0,0,913,915,5,244,0,0,914,912,1,0,0,0,914,915,1, + 0,0,0,915,917,1,0,0,0,916,918,5,336,0,0,917,916,1,0,0,0,917,918, + 1,0,0,0,918,919,1,0,0,0,919,921,3,322,161,0,920,922,3,282,141,0, + 921,920,1,0,0,0,921,922,1,0,0,0,922,924,1,0,0,0,923,925,3,294,147, + 0,924,923,1,0,0,0,924,925,1,0,0,0,925,1320,1,0,0,0,926,927,5,96, + 0,0,927,928,5,298,0,0,928,930,5,336,0,0,929,931,3,162,81,0,930,929, + 1,0,0,0,930,931,1,0,0,0,931,935,1,0,0,0,932,936,3,72,36,0,933,936, + 3,76,38,0,934,936,3,322,161,0,935,932,1,0,0,0,935,933,1,0,0,0,935, + 934,1,0,0,0,936,1320,1,0,0,0,937,939,5,106,0,0,938,940,7,6,0,0,939, + 938,1,0,0,0,939,940,1,0,0,0,940,941,1,0,0,0,941,1320,3,4,2,0,942, + 943,5,273,0,0,943,946,5,294,0,0,944,945,7,3,0,0,945,947,3,66,33, + 0,946,944,1,0,0,0,946,947,1,0,0,0,947,952,1,0,0,0,948,950,5,163, + 0,0,949,948,1,0,0,0,949,950,1,0,0,0,950,951,1,0,0,0,951,953,3,342, + 171,0,952,949,1,0,0,0,952,953,1,0,0,0,953,1320,1,0,0,0,954,955,5, + 273,0,0,955,956,5,293,0,0,956,959,5,108,0,0,957,958,7,3,0,0,958, + 960,3,66,33,0,959,957,1,0,0,0,959,960,1,0,0,0,960,961,1,0,0,0,961, + 962,5,163,0,0,962,964,3,342,171,0,963,965,3,22,11,0,964,963,1,0, + 0,0,964,965,1,0,0,0,965,1320,1,0,0,0,966,967,5,273,0,0,967,968,5, + 297,0,0,968,973,3,72,36,0,969,970,5,2,0,0,970,971,3,46,23,0,971, + 972,5,3,0,0,972,974,1,0,0,0,973,969,1,0,0,0,973,974,1,0,0,0,974, + 1320,1,0,0,0,975,976,5,273,0,0,976,977,5,50,0,0,977,978,7,3,0,0, + 978,981,3,72,36,0,979,980,7,3,0,0,980,982,3,66,33,0,981,979,1,0, + 0,0,981,982,1,0,0,0,982,1320,1,0,0,0,983,984,5,273,0,0,984,987,5, + 339,0,0,985,986,7,3,0,0,986,988,3,66,33,0,987,985,1,0,0,0,987,988, + 1,0,0,0,988,993,1,0,0,0,989,991,5,163,0,0,990,989,1,0,0,0,990,991, + 1,0,0,0,991,992,1,0,0,0,992,994,3,342,171,0,993,990,1,0,0,0,993, + 994,1,0,0,0,994,1320,1,0,0,0,995,996,5,273,0,0,996,997,5,219,0,0, + 997,999,3,72,36,0,998,1000,3,22,11,0,999,998,1,0,0,0,999,1000,1, + 0,0,0,1000,1320,1,0,0,0,1001,1003,5,273,0,0,1002,1004,7,7,0,0,1003, + 1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005,1008,5,126, + 0,0,1006,1007,7,3,0,0,1007,1009,3,66,33,0,1008,1006,1,0,0,0,1008, + 1009,1,0,0,0,1009,1017,1,0,0,0,1010,1012,5,163,0,0,1011,1010,1,0, + 0,0,1011,1012,1,0,0,0,1012,1015,1,0,0,0,1013,1016,3,210,105,0,1014, + 1016,3,342,171,0,1015,1013,1,0,0,0,1015,1014,1,0,0,0,1016,1018,1, + 0,0,0,1017,1011,1,0,0,0,1017,1018,1,0,0,0,1018,1320,1,0,0,0,1019, + 1020,5,273,0,0,1020,1021,5,59,0,0,1021,1022,5,293,0,0,1022,1025, + 3,72,36,0,1023,1024,5,20,0,0,1024,1026,5,266,0,0,1025,1023,1,0,0, + 0,1025,1026,1,0,0,0,1026,1320,1,0,0,0,1027,1028,5,273,0,0,1028,1029, + 5,62,0,0,1029,1320,3,26,13,0,1030,1031,5,273,0,0,1031,1036,5,38, + 0,0,1032,1034,5,163,0,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034, + 1035,1,0,0,0,1035,1037,3,342,171,0,1036,1033,1,0,0,0,1036,1037,1, + 0,0,0,1037,1320,1,0,0,0,1038,1039,5,273,0,0,1039,1040,5,176,0,0, + 1040,1043,5,339,0,0,1041,1042,7,3,0,0,1042,1044,3,66,33,0,1043,1041, + 1,0,0,0,1043,1044,1,0,0,0,1044,1049,1,0,0,0,1045,1047,5,163,0,0, + 1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0,1048,1050, + 3,342,171,0,1049,1046,1,0,0,0,1049,1050,1,0,0,0,1050,1320,1,0,0, + 0,1051,1052,5,273,0,0,1052,1053,5,59,0,0,1053,1054,5,176,0,0,1054, + 1055,5,338,0,0,1055,1058,3,76,38,0,1056,1057,5,20,0,0,1057,1059, + 5,266,0,0,1058,1056,1,0,0,0,1058,1059,1,0,0,0,1059,1320,1,0,0,0, + 1060,1061,7,8,0,0,1061,1063,5,125,0,0,1062,1064,5,108,0,0,1063,1062, + 1,0,0,0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1320,3,28,14,0, + 1066,1067,7,8,0,0,1067,1069,5,72,0,0,1068,1070,5,108,0,0,1069,1068, + 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1320,3,66,33,0, + 1072,1074,7,8,0,0,1073,1075,5,293,0,0,1074,1073,1,0,0,0,1074,1075, + 1,0,0,0,1075,1077,1,0,0,0,1076,1078,7,9,0,0,1077,1076,1,0,0,0,1077, + 1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,72,36,0,1080,1082,3,22, + 11,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1,0,0,0,1083, + 1085,3,30,15,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1320,1,0, + 0,0,1086,1088,7,8,0,0,1087,1089,5,232,0,0,1088,1087,1,0,0,0,1088, + 1089,1,0,0,0,1089,1090,1,0,0,0,1090,1320,3,16,8,0,1091,1092,5,51, + 0,0,1092,1098,5,203,0,0,1093,1094,3,26,13,0,1094,1095,3,66,33,0, + 1095,1099,1,0,0,0,1096,1097,5,293,0,0,1097,1099,3,72,36,0,1098,1093, + 1,0,0,0,1098,1096,1,0,0,0,1099,1100,1,0,0,0,1100,1103,5,153,0,0, + 1101,1104,3,342,171,0,1102,1104,5,198,0,0,1103,1101,1,0,0,0,1103, + 1102,1,0,0,0,1104,1320,1,0,0,0,1105,1106,5,240,0,0,1106,1107,5,293, + 0,0,1107,1320,3,72,36,0,1108,1109,5,240,0,0,1109,1110,5,125,0,0, + 1110,1320,3,322,161,0,1111,1119,5,240,0,0,1112,1120,3,342,171,0, + 1113,1115,9,0,0,0,1114,1113,1,0,0,0,1115,1118,1,0,0,0,1116,1117, + 1,0,0,0,1116,1114,1,0,0,0,1117,1120,1,0,0,0,1118,1116,1,0,0,0,1119, + 1112,1,0,0,0,1119,1116,1,0,0,0,1120,1320,1,0,0,0,1121,1122,5,240, + 0,0,1122,1123,5,176,0,0,1123,1124,5,338,0,0,1124,1320,3,76,38,0, + 1125,1127,5,33,0,0,1126,1128,5,159,0,0,1127,1126,1,0,0,0,1127,1128, + 1,0,0,0,1128,1129,1,0,0,0,1129,1130,5,293,0,0,1130,1133,3,72,36, + 0,1131,1132,5,207,0,0,1132,1134,3,42,21,0,1133,1131,1,0,0,0,1133, + 1134,1,0,0,0,1134,1139,1,0,0,0,1135,1137,5,20,0,0,1136,1135,1,0, + 0,0,1136,1137,1,0,0,0,1137,1138,1,0,0,0,1138,1140,3,16,8,0,1139, + 1136,1,0,0,0,1139,1140,1,0,0,0,1140,1320,1,0,0,0,1141,1142,5,322, + 0,0,1142,1144,5,293,0,0,1143,1145,3,162,81,0,1144,1143,1,0,0,0,1144, + 1145,1,0,0,0,1145,1146,1,0,0,0,1146,1320,3,72,36,0,1147,1148,5,43, + 0,0,1148,1320,5,33,0,0,1149,1150,5,168,0,0,1150,1152,5,70,0,0,1151, + 1153,5,169,0,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1154,1,0, + 0,0,1154,1155,5,145,0,0,1155,1157,3,342,171,0,1156,1158,5,216,0, + 0,1157,1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1160, + 5,152,0,0,1160,1161,5,293,0,0,1161,1163,3,72,36,0,1162,1164,3,22, + 11,0,1163,1162,1,0,0,0,1163,1164,1,0,0,0,1164,1320,1,0,0,0,1165, + 1166,5,317,0,0,1166,1167,5,293,0,0,1167,1169,3,72,36,0,1168,1170, + 3,22,11,0,1169,1168,1,0,0,0,1169,1170,1,0,0,0,1170,1320,1,0,0,0, + 1171,1173,5,188,0,0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174, + 1,0,0,0,1174,1175,5,242,0,0,1175,1176,5,293,0,0,1176,1179,3,72,36, + 0,1177,1178,7,10,0,0,1178,1180,5,219,0,0,1179,1177,1,0,0,0,1179, + 1180,1,0,0,0,1180,1320,1,0,0,0,1181,1182,7,11,0,0,1182,1186,3,332, + 166,0,1183,1185,9,0,0,0,1184,1183,1,0,0,0,1185,1188,1,0,0,0,1186, + 1187,1,0,0,0,1186,1184,1,0,0,0,1187,1320,1,0,0,0,1188,1186,1,0,0, + 0,1189,1190,5,269,0,0,1190,1194,5,253,0,0,1191,1193,9,0,0,0,1192, + 1191,1,0,0,0,1193,1196,1,0,0,0,1194,1195,1,0,0,0,1194,1192,1,0,0, + 0,1195,1320,1,0,0,0,1196,1194,1,0,0,0,1197,1198,5,269,0,0,1198,1199, + 5,301,0,0,1199,1200,5,350,0,0,1200,1320,3,262,131,0,1201,1202,5, + 269,0,0,1202,1203,5,301,0,0,1203,1206,5,350,0,0,1204,1207,3,342, + 171,0,1205,1207,5,169,0,0,1206,1204,1,0,0,0,1206,1205,1,0,0,0,1207, + 1320,1,0,0,0,1208,1209,5,269,0,0,1209,1210,5,301,0,0,1210,1214,5, + 350,0,0,1211,1213,9,0,0,0,1212,1211,1,0,0,0,1213,1216,1,0,0,0,1214, + 1215,1,0,0,0,1214,1212,1,0,0,0,1215,1320,1,0,0,0,1216,1214,1,0,0, + 0,1217,1218,5,269,0,0,1218,1219,7,12,0,0,1219,1320,3,120,60,0,1220, + 1221,5,269,0,0,1221,1222,7,12,0,0,1222,1223,5,2,0,0,1223,1224,3, + 208,104,0,1224,1225,5,3,0,0,1225,1226,5,352,0,0,1226,1227,5,2,0, + 0,1227,1228,3,16,8,0,1228,1229,5,3,0,0,1229,1320,1,0,0,0,1230,1231, + 5,269,0,0,1231,1232,3,336,168,0,1232,1233,5,352,0,0,1233,1234,5, + 389,0,0,1234,1320,1,0,0,0,1235,1236,5,269,0,0,1236,1244,3,336,168, + 0,1237,1241,5,352,0,0,1238,1240,9,0,0,0,1239,1238,1,0,0,0,1240,1243, + 1,0,0,0,1241,1242,1,0,0,0,1241,1239,1,0,0,0,1242,1245,1,0,0,0,1243, + 1241,1,0,0,0,1244,1237,1,0,0,0,1244,1245,1,0,0,0,1245,1320,1,0,0, + 0,1246,1250,5,269,0,0,1247,1249,9,0,0,0,1248,1247,1,0,0,0,1249,1252, + 1,0,0,0,1250,1251,1,0,0,0,1250,1248,1,0,0,0,1251,1253,1,0,0,0,1252, + 1250,1,0,0,0,1253,1254,5,352,0,0,1254,1320,5,389,0,0,1255,1259,5, + 269,0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259, + 1260,1,0,0,0,1259,1257,1,0,0,0,1260,1320,1,0,0,0,1261,1259,1,0,0, + 0,1262,1263,5,245,0,0,1263,1320,3,336,168,0,1264,1268,5,245,0,0, + 1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, + 1,0,0,0,1268,1266,1,0,0,0,1269,1320,1,0,0,0,1270,1268,1,0,0,0,1271, + 1272,5,59,0,0,1272,1274,5,142,0,0,1273,1275,3,160,80,0,1274,1273, + 1,0,0,0,1274,1275,1,0,0,0,1275,1276,1,0,0,0,1276,1277,3,332,166, + 0,1277,1279,5,203,0,0,1278,1280,5,293,0,0,1279,1278,1,0,0,0,1279, + 1280,1,0,0,0,1280,1281,1,0,0,0,1281,1284,3,72,36,0,1282,1283,5,332, + 0,0,1283,1285,3,332,166,0,1284,1282,1,0,0,0,1284,1285,1,0,0,0,1285, + 1286,1,0,0,0,1286,1287,5,2,0,0,1287,1288,3,212,106,0,1288,1291,5, + 3,0,0,1289,1290,5,207,0,0,1290,1292,3,42,21,0,1291,1289,1,0,0,0, + 1291,1292,1,0,0,0,1292,1320,1,0,0,0,1293,1294,5,96,0,0,1294,1296, + 5,142,0,0,1295,1297,3,162,81,0,1296,1295,1,0,0,0,1296,1297,1,0,0, + 0,1297,1298,1,0,0,0,1298,1299,3,332,166,0,1299,1301,5,203,0,0,1300, + 1302,5,293,0,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302,1303,1,0, + 0,0,1303,1304,3,72,36,0,1304,1320,1,0,0,0,1305,1306,5,205,0,0,1306, + 1308,3,72,36,0,1307,1309,3,124,62,0,1308,1307,1,0,0,0,1308,1309, + 1,0,0,0,1309,1310,1,0,0,0,1310,1311,3,312,156,0,1311,1320,1,0,0, + 0,1312,1316,3,6,3,0,1313,1315,9,0,0,0,1314,1313,1,0,0,0,1315,1318, + 1,0,0,0,1316,1317,1,0,0,0,1316,1314,1,0,0,0,1317,1320,1,0,0,0,1318, + 1316,1,0,0,0,1319,362,1,0,0,0,1319,364,1,0,0,0,1319,367,1,0,0,0, + 1319,372,1,0,0,0,1319,378,1,0,0,0,1319,396,1,0,0,0,1319,403,1,0, + 0,0,1319,410,1,0,0,0,1319,419,1,0,0,0,1319,431,1,0,0,0,1319,459, + 1,0,0,0,1319,482,1,0,0,0,1319,503,1,0,0,0,1319,520,1,0,0,0,1319, + 531,1,0,0,0,1319,538,1,0,0,0,1319,547,1,0,0,0,1319,556,1,0,0,0,1319, + 566,1,0,0,0,1319,578,1,0,0,0,1319,589,1,0,0,0,1319,600,1,0,0,0,1319, + 614,1,0,0,0,1319,625,1,0,0,0,1319,640,1,0,0,0,1319,652,1,0,0,0,1319, + 666,1,0,0,0,1319,676,1,0,0,0,1319,692,1,0,0,0,1319,700,1,0,0,0,1319, + 722,1,0,0,0,1319,732,1,0,0,0,1319,738,1,0,0,0,1319,745,1,0,0,0,1319, + 753,1,0,0,0,1319,762,1,0,0,0,1319,768,1,0,0,0,1319,775,1,0,0,0,1319, + 809,1,0,0,0,1319,831,1,0,0,0,1319,839,1,0,0,0,1319,869,1,0,0,0,1319, + 902,1,0,0,0,1319,911,1,0,0,0,1319,926,1,0,0,0,1319,937,1,0,0,0,1319, + 942,1,0,0,0,1319,954,1,0,0,0,1319,966,1,0,0,0,1319,975,1,0,0,0,1319, + 983,1,0,0,0,1319,995,1,0,0,0,1319,1001,1,0,0,0,1319,1019,1,0,0,0, + 1319,1027,1,0,0,0,1319,1030,1,0,0,0,1319,1038,1,0,0,0,1319,1051, + 1,0,0,0,1319,1060,1,0,0,0,1319,1066,1,0,0,0,1319,1072,1,0,0,0,1319, + 1086,1,0,0,0,1319,1091,1,0,0,0,1319,1105,1,0,0,0,1319,1108,1,0,0, + 0,1319,1111,1,0,0,0,1319,1121,1,0,0,0,1319,1125,1,0,0,0,1319,1141, + 1,0,0,0,1319,1147,1,0,0,0,1319,1149,1,0,0,0,1319,1165,1,0,0,0,1319, + 1172,1,0,0,0,1319,1181,1,0,0,0,1319,1189,1,0,0,0,1319,1197,1,0,0, + 0,1319,1201,1,0,0,0,1319,1208,1,0,0,0,1319,1217,1,0,0,0,1319,1220, + 1,0,0,0,1319,1230,1,0,0,0,1319,1235,1,0,0,0,1319,1246,1,0,0,0,1319, + 1255,1,0,0,0,1319,1262,1,0,0,0,1319,1264,1,0,0,0,1319,1271,1,0,0, + 0,1319,1293,1,0,0,0,1319,1305,1,0,0,0,1319,1312,1,0,0,0,1320,5,1, + 0,0,0,1321,1322,7,13,0,0,1322,1415,5,253,0,0,1323,1325,7,14,0,0, + 1324,1326,5,253,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1415, + 1,0,0,0,1327,1328,5,273,0,0,1328,1415,7,15,0,0,1329,1330,5,273,0, + 0,1330,1332,5,253,0,0,1331,1333,5,129,0,0,1332,1331,1,0,0,0,1332, + 1333,1,0,0,0,1333,1415,1,0,0,0,1334,1336,5,273,0,0,1335,1337,5,62, + 0,0,1336,1335,1,0,0,0,1336,1337,1,0,0,0,1337,1338,1,0,0,0,1338,1415, + 5,254,0,0,1339,1340,5,273,0,0,1340,1341,5,59,0,0,1341,1415,5,293, + 0,0,1342,1343,7,16,0,0,1343,1415,5,142,0,0,1344,1345,7,17,0,0,1345, + 1415,5,293,0,0,1346,1347,7,18,0,0,1347,1415,5,72,0,0,1348,1349,7, + 13,0,0,1349,1350,5,298,0,0,1350,1415,5,175,0,0,1351,1352,5,11,0, + 0,1352,1353,5,293,0,0,1353,1354,3,72,36,0,1354,1355,5,197,0,0,1355, + 1356,7,19,0,0,1356,1415,1,0,0,0,1357,1358,5,11,0,0,1358,1359,5,293, + 0,0,1359,1360,3,72,36,0,1360,1361,7,20,0,0,1361,1362,5,31,0,0,1362, + 1415,1,0,0,0,1363,1364,5,11,0,0,1364,1365,5,293,0,0,1365,1366,3, + 72,36,0,1366,1367,5,275,0,0,1367,1368,5,31,0,0,1368,1415,1,0,0,0, + 1369,1370,5,11,0,0,1370,1371,5,293,0,0,1371,1372,3,72,36,0,1372, + 1373,5,197,0,0,1373,1374,5,283,0,0,1374,1375,5,20,0,0,1375,1376, + 5,89,0,0,1376,1415,1,0,0,0,1377,1378,5,11,0,0,1378,1379,5,293,0, + 0,1379,1380,3,72,36,0,1380,1381,5,269,0,0,1381,1382,5,275,0,0,1382, + 1383,5,170,0,0,1383,1415,1,0,0,0,1384,1385,5,11,0,0,1385,1386,5, + 293,0,0,1386,1387,3,72,36,0,1387,1388,7,21,0,0,1388,1389,5,217,0, + 0,1389,1415,1,0,0,0,1390,1391,5,11,0,0,1391,1392,5,293,0,0,1392, + 1393,3,72,36,0,1393,1394,5,310,0,0,1394,1415,1,0,0,0,1395,1396,5, + 11,0,0,1396,1397,5,293,0,0,1397,1399,3,72,36,0,1398,1400,3,22,11, + 0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1407,1,0,0,0,1401,1408, + 5,53,0,0,1402,1408,5,56,0,0,1403,1404,5,269,0,0,1404,1408,5,115, + 0,0,1405,1406,5,244,0,0,1406,1408,5,50,0,0,1407,1401,1,0,0,0,1407, + 1402,1,0,0,0,1407,1403,1,0,0,0,1407,1405,1,0,0,0,1408,1415,1,0,0, + 0,1409,1410,5,281,0,0,1410,1415,5,312,0,0,1411,1415,5,52,0,0,1412, + 1415,5,255,0,0,1413,1415,5,88,0,0,1414,1321,1,0,0,0,1414,1323,1, + 0,0,0,1414,1327,1,0,0,0,1414,1329,1,0,0,0,1414,1334,1,0,0,0,1414, + 1339,1,0,0,0,1414,1342,1,0,0,0,1414,1344,1,0,0,0,1414,1346,1,0,0, + 0,1414,1348,1,0,0,0,1414,1351,1,0,0,0,1414,1357,1,0,0,0,1414,1363, + 1,0,0,0,1414,1369,1,0,0,0,1414,1377,1,0,0,0,1414,1384,1,0,0,0,1414, + 1390,1,0,0,0,1414,1395,1,0,0,0,1414,1409,1,0,0,0,1414,1411,1,0,0, + 0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,7,1,0,0,0,1416,1417,5, + 45,0,0,1417,1418,5,31,0,0,1418,1422,3,180,90,0,1419,1420,5,279,0, + 0,1420,1421,5,31,0,0,1421,1423,3,184,92,0,1422,1419,1,0,0,0,1422, + 1423,1,0,0,0,1423,1424,1,0,0,0,1424,1425,5,152,0,0,1425,1426,5,382, + 0,0,1426,1427,5,30,0,0,1427,9,1,0,0,0,1428,1429,5,275,0,0,1429,1430, + 5,31,0,0,1430,1431,3,180,90,0,1431,1434,5,203,0,0,1432,1435,3,54, + 27,0,1433,1435,3,56,28,0,1434,1432,1,0,0,0,1434,1433,1,0,0,0,1435, + 1439,1,0,0,0,1436,1437,5,283,0,0,1437,1438,5,20,0,0,1438,1440,5, + 89,0,0,1439,1436,1,0,0,0,1439,1440,1,0,0,0,1440,11,1,0,0,0,1441, + 1442,5,170,0,0,1442,1443,3,342,171,0,1443,13,1,0,0,0,1444,1445,5, + 51,0,0,1445,1446,3,342,171,0,1446,15,1,0,0,0,1447,1449,3,32,16,0, + 1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450,1,0,0,0,1450,1451, + 3,96,48,0,1451,1452,3,88,44,0,1452,17,1,0,0,0,1453,1454,5,147,0, + 0,1454,1456,5,216,0,0,1455,1457,5,293,0,0,1456,1455,1,0,0,0,1456, + 1457,1,0,0,0,1457,1458,1,0,0,0,1458,1463,3,72,36,0,1459,1461,3,22, + 11,0,1460,1462,3,160,80,0,1461,1460,1,0,0,0,1461,1462,1,0,0,0,1462, + 1464,1,0,0,0,1463,1459,1,0,0,0,1463,1464,1,0,0,0,1464,1471,1,0,0, + 0,1465,1466,5,31,0,0,1466,1472,5,189,0,0,1467,1468,5,2,0,0,1468, + 1469,3,82,41,0,1469,1470,5,3,0,0,1470,1472,1,0,0,0,1471,1465,1,0, + 0,0,1471,1467,1,0,0,0,1471,1472,1,0,0,0,1472,1530,1,0,0,0,1473,1474, + 5,147,0,0,1474,1476,5,152,0,0,1475,1477,5,293,0,0,1476,1475,1,0, + 0,0,1476,1477,1,0,0,0,1477,1478,1,0,0,0,1478,1480,3,72,36,0,1479, + 1481,3,22,11,0,1480,1479,1,0,0,0,1480,1481,1,0,0,0,1481,1483,1,0, + 0,0,1482,1484,3,160,80,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484, + 1491,1,0,0,0,1485,1486,5,31,0,0,1486,1492,5,189,0,0,1487,1488,5, + 2,0,0,1488,1489,3,82,41,0,1489,1490,5,3,0,0,1490,1492,1,0,0,0,1491, + 1485,1,0,0,0,1491,1487,1,0,0,0,1491,1492,1,0,0,0,1492,1530,1,0,0, + 0,1493,1494,5,147,0,0,1494,1496,5,152,0,0,1495,1497,5,293,0,0,1496, + 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1499,3,72, + 36,0,1499,1500,5,244,0,0,1500,1501,3,124,62,0,1501,1530,1,0,0,0, + 1502,1503,5,147,0,0,1503,1505,5,216,0,0,1504,1506,5,169,0,0,1505, + 1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1508,5,90, + 0,0,1508,1510,3,342,171,0,1509,1511,3,206,103,0,1510,1509,1,0,0, + 0,1510,1511,1,0,0,0,1511,1513,1,0,0,0,1512,1514,3,58,29,0,1513,1512, + 1,0,0,0,1513,1514,1,0,0,0,1514,1530,1,0,0,0,1515,1516,5,147,0,0, + 1516,1518,5,216,0,0,1517,1519,5,169,0,0,1518,1517,1,0,0,0,1518,1519, + 1,0,0,0,1519,1520,1,0,0,0,1520,1522,5,90,0,0,1521,1523,3,342,171, + 0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524,1527, + 3,36,18,0,1525,1526,5,207,0,0,1526,1528,3,42,21,0,1527,1525,1,0, + 0,0,1527,1528,1,0,0,0,1528,1530,1,0,0,0,1529,1453,1,0,0,0,1529,1473, + 1,0,0,0,1529,1493,1,0,0,0,1529,1502,1,0,0,0,1529,1515,1,0,0,0,1530, + 19,1,0,0,0,1531,1534,3,22,11,0,1532,1533,5,170,0,0,1533,1535,3,342, + 171,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,21,1,0,0,0,1536,1537, + 5,217,0,0,1537,1538,5,2,0,0,1538,1543,3,24,12,0,1539,1540,5,4,0, + 0,1540,1542,3,24,12,0,1541,1539,1,0,0,0,1542,1545,1,0,0,0,1543,1541, + 1,0,0,0,1543,1544,1,0,0,0,1544,1546,1,0,0,0,1545,1543,1,0,0,0,1546, + 1547,5,3,0,0,1547,23,1,0,0,0,1548,1551,3,332,166,0,1549,1550,5,352, + 0,0,1550,1552,3,252,126,0,1551,1549,1,0,0,0,1551,1552,1,0,0,0,1552, + 1558,1,0,0,0,1553,1554,3,332,166,0,1554,1555,5,352,0,0,1555,1556, + 5,82,0,0,1556,1558,1,0,0,0,1557,1548,1,0,0,0,1557,1553,1,0,0,0,1558, + 25,1,0,0,0,1559,1560,7,22,0,0,1560,27,1,0,0,0,1561,1567,3,86,43, + 0,1562,1567,3,342,171,0,1563,1567,3,254,127,0,1564,1567,3,256,128, + 0,1565,1567,3,258,129,0,1566,1561,1,0,0,0,1566,1562,1,0,0,0,1566, + 1563,1,0,0,0,1566,1564,1,0,0,0,1566,1565,1,0,0,0,1567,29,1,0,0,0, + 1568,1573,3,332,166,0,1569,1570,5,5,0,0,1570,1572,3,332,166,0,1571, + 1569,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0,0,0,1573,1574,1,0,0, + 0,1574,31,1,0,0,0,1575,1573,1,0,0,0,1576,1577,5,346,0,0,1577,1582, + 3,34,17,0,1578,1579,5,4,0,0,1579,1581,3,34,17,0,1580,1578,1,0,0, + 0,1581,1584,1,0,0,0,1582,1580,1,0,0,0,1582,1583,1,0,0,0,1583,33, + 1,0,0,0,1584,1582,1,0,0,0,1585,1587,3,328,164,0,1586,1588,3,180, + 90,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589, + 1591,5,20,0,0,1590,1589,1,0,0,0,1590,1591,1,0,0,0,1591,1592,1,0, + 0,0,1592,1593,5,2,0,0,1593,1594,3,16,8,0,1594,1595,5,3,0,0,1595, + 35,1,0,0,0,1596,1597,5,332,0,0,1597,1598,3,210,105,0,1598,37,1,0, + 0,0,1599,1600,5,207,0,0,1600,1616,3,50,25,0,1601,1602,5,218,0,0, + 1602,1603,5,31,0,0,1603,1616,3,224,112,0,1604,1616,3,10,5,0,1605, + 1616,3,8,4,0,1606,1616,3,206,103,0,1607,1616,3,58,29,0,1608,1609, + 5,170,0,0,1609,1616,3,342,171,0,1610,1611,5,51,0,0,1611,1616,3,342, + 171,0,1612,1613,5,297,0,0,1613,1616,3,42,21,0,1614,1616,3,40,20, + 0,1615,1599,1,0,0,0,1615,1601,1,0,0,0,1615,1604,1,0,0,0,1615,1605, + 1,0,0,0,1615,1606,1,0,0,0,1615,1607,1,0,0,0,1615,1608,1,0,0,0,1615, + 1610,1,0,0,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0,1616,1619,1,0,0, + 0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,39,1,0,0,0,1619,1617, + 1,0,0,0,1620,1621,5,162,0,0,1621,1622,5,382,0,0,1622,41,1,0,0,0, + 1623,1624,5,2,0,0,1624,1629,3,44,22,0,1625,1626,5,4,0,0,1626,1628, + 3,44,22,0,1627,1625,1,0,0,0,1628,1631,1,0,0,0,1629,1627,1,0,0,0, + 1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1629,1,0,0,0,1632,1633, + 5,3,0,0,1633,43,1,0,0,0,1634,1639,3,46,23,0,1635,1637,5,352,0,0, + 1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1638,1,0,0,0,1638,1640, + 3,48,24,0,1639,1636,1,0,0,0,1639,1640,1,0,0,0,1640,45,1,0,0,0,1641, + 1646,3,332,166,0,1642,1643,5,5,0,0,1643,1645,3,332,166,0,1644,1642, + 1,0,0,0,1645,1648,1,0,0,0,1646,1644,1,0,0,0,1646,1647,1,0,0,0,1647, + 1651,1,0,0,0,1648,1646,1,0,0,0,1649,1651,3,342,171,0,1650,1641,1, + 0,0,0,1650,1649,1,0,0,0,1651,47,1,0,0,0,1652,1657,5,382,0,0,1653, + 1657,5,384,0,0,1654,1657,3,260,130,0,1655,1657,3,342,171,0,1656, + 1652,1,0,0,0,1656,1653,1,0,0,0,1656,1654,1,0,0,0,1656,1655,1,0,0, + 0,1657,49,1,0,0,0,1658,1659,5,2,0,0,1659,1664,3,52,26,0,1660,1661, + 5,4,0,0,1661,1663,3,52,26,0,1662,1660,1,0,0,0,1663,1666,1,0,0,0, + 1664,1662,1,0,0,0,1664,1665,1,0,0,0,1665,1667,1,0,0,0,1666,1664, + 1,0,0,0,1667,1668,5,3,0,0,1668,51,1,0,0,0,1669,1674,3,46,23,0,1670, + 1672,5,352,0,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1673,1,0, + 0,0,1673,1675,3,232,116,0,1674,1671,1,0,0,0,1674,1675,1,0,0,0,1675, + 53,1,0,0,0,1676,1677,5,2,0,0,1677,1682,3,252,126,0,1678,1679,5,4, + 0,0,1679,1681,3,252,126,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, + 1680,1,0,0,0,1682,1683,1,0,0,0,1683,1685,1,0,0,0,1684,1682,1,0,0, + 0,1685,1686,5,3,0,0,1686,55,1,0,0,0,1687,1688,5,2,0,0,1688,1693, + 3,54,27,0,1689,1690,5,4,0,0,1690,1692,3,54,27,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,1696, + 1,0,0,0,1695,1693,1,0,0,0,1696,1697,5,3,0,0,1697,57,1,0,0,0,1698, + 1699,5,283,0,0,1699,1700,5,20,0,0,1700,1705,3,60,30,0,1701,1702, + 5,283,0,0,1702,1703,5,31,0,0,1703,1705,3,62,31,0,1704,1698,1,0,0, + 0,1704,1701,1,0,0,0,1705,59,1,0,0,0,1706,1707,5,146,0,0,1707,1708, + 3,342,171,0,1708,1709,5,212,0,0,1709,1710,3,342,171,0,1710,1713, + 1,0,0,0,1711,1713,3,332,166,0,1712,1706,1,0,0,0,1712,1711,1,0,0, + 0,1713,61,1,0,0,0,1714,1718,3,342,171,0,1715,1716,5,346,0,0,1716, + 1717,5,267,0,0,1717,1719,3,42,21,0,1718,1715,1,0,0,0,1718,1719,1, + 0,0,0,1719,63,1,0,0,0,1720,1721,3,18,9,0,1721,1722,3,16,8,0,1722, + 1779,1,0,0,0,1723,1727,3,132,66,0,1724,1725,3,18,9,0,1725,1726,3, + 102,51,0,1726,1728,1,0,0,0,1727,1724,1,0,0,0,1728,1729,1,0,0,0,1729, + 1727,1,0,0,0,1729,1730,1,0,0,0,1730,1779,1,0,0,0,1731,1732,5,84, + 0,0,1732,1733,5,123,0,0,1733,1734,3,72,36,0,1734,1736,3,204,102, + 0,1735,1737,3,124,62,0,1736,1735,1,0,0,0,1736,1737,1,0,0,0,1737, + 1779,1,0,0,0,1738,1739,5,329,0,0,1739,1740,3,72,36,0,1740,1741,3, + 204,102,0,1741,1743,3,110,55,0,1742,1744,3,124,62,0,1743,1742,1, + 0,0,0,1743,1744,1,0,0,0,1744,1779,1,0,0,0,1745,1746,5,179,0,0,1746, + 1747,5,152,0,0,1747,1748,3,72,36,0,1748,1749,3,204,102,0,1749,1755, + 5,332,0,0,1750,1756,3,86,43,0,1751,1752,5,2,0,0,1752,1753,3,16,8, + 0,1753,1754,5,3,0,0,1754,1756,1,0,0,0,1755,1750,1,0,0,0,1755,1751, + 1,0,0,0,1756,1757,1,0,0,0,1757,1758,3,204,102,0,1758,1759,5,203, + 0,0,1759,1763,3,240,120,0,1760,1762,3,112,56,0,1761,1760,1,0,0,0, + 1762,1765,1,0,0,0,1763,1761,1,0,0,0,1763,1764,1,0,0,0,1764,1769, + 1,0,0,0,1765,1763,1,0,0,0,1766,1768,3,114,57,0,1767,1766,1,0,0,0, + 1768,1771,1,0,0,0,1769,1767,1,0,0,0,1769,1770,1,0,0,0,1770,1775, + 1,0,0,0,1771,1769,1,0,0,0,1772,1774,3,116,58,0,1773,1772,1,0,0,0, + 1774,1777,1,0,0,0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776,1779, + 1,0,0,0,1777,1775,1,0,0,0,1778,1720,1,0,0,0,1778,1723,1,0,0,0,1778, + 1731,1,0,0,0,1778,1738,1,0,0,0,1778,1745,1,0,0,0,1779,65,1,0,0,0, + 1780,1781,3,86,43,0,1781,67,1,0,0,0,1782,1783,3,86,43,0,1783,69, + 1,0,0,0,1784,1785,3,216,108,0,1785,71,1,0,0,0,1786,1787,3,216,108, + 0,1787,73,1,0,0,0,1788,1789,3,218,109,0,1789,75,1,0,0,0,1790,1791, + 3,218,109,0,1791,77,1,0,0,0,1792,1795,3,210,105,0,1793,1795,4,39, + 0,0,1794,1792,1,0,0,0,1794,1793,1,0,0,0,1795,79,1,0,0,0,1796,1797, + 3,210,105,0,1797,81,1,0,0,0,1798,1803,3,78,39,0,1799,1800,5,4,0, + 0,1800,1802,3,78,39,0,1801,1799,1,0,0,0,1802,1805,1,0,0,0,1803,1801, + 1,0,0,0,1803,1804,1,0,0,0,1804,83,1,0,0,0,1805,1803,1,0,0,0,1806, + 1807,3,328,164,0,1807,85,1,0,0,0,1808,1809,5,136,0,0,1809,1810,5, + 2,0,0,1810,1811,3,232,116,0,1811,1812,5,3,0,0,1812,1815,1,0,0,0, + 1813,1815,3,210,105,0,1814,1808,1,0,0,0,1814,1813,1,0,0,0,1815,87, + 1,0,0,0,1816,1817,5,209,0,0,1817,1818,5,31,0,0,1818,1820,3,92,46, + 0,1819,1816,1,0,0,0,1819,1820,1,0,0,0,1820,1824,1,0,0,0,1821,1822, + 5,44,0,0,1822,1823,5,31,0,0,1823,1825,3,94,47,0,1824,1821,1,0,0, + 0,1824,1825,1,0,0,0,1825,1829,1,0,0,0,1826,1827,5,93,0,0,1827,1828, + 5,31,0,0,1828,1830,3,94,47,0,1829,1826,1,0,0,0,1829,1830,1,0,0,0, + 1830,1834,1,0,0,0,1831,1832,5,278,0,0,1832,1833,5,31,0,0,1833,1835, + 3,92,46,0,1834,1831,1,0,0,0,1834,1835,1,0,0,0,1835,1837,1,0,0,0, + 1836,1838,3,310,155,0,1837,1836,1,0,0,0,1837,1838,1,0,0,0,1838,1840, + 1,0,0,0,1839,1841,3,90,45,0,1840,1839,1,0,0,0,1840,1841,1,0,0,0, + 1841,1844,1,0,0,0,1842,1843,5,202,0,0,1843,1845,3,232,116,0,1844, + 1842,1,0,0,0,1844,1845,1,0,0,0,1845,89,1,0,0,0,1846,1849,5,165,0, + 0,1847,1850,5,10,0,0,1848,1850,3,232,116,0,1849,1847,1,0,0,0,1849, + 1848,1,0,0,0,1850,91,1,0,0,0,1851,1856,3,100,50,0,1852,1853,5,4, + 0,0,1853,1855,3,100,50,0,1854,1852,1,0,0,0,1855,1858,1,0,0,0,1856, + 1854,1,0,0,0,1856,1857,1,0,0,0,1857,93,1,0,0,0,1858,1856,1,0,0,0, + 1859,1864,3,232,116,0,1860,1861,5,4,0,0,1861,1863,3,232,116,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,95,1,0,0,0,1866,1864,1,0,0,0,1867,1868,6,48,-1,0,1868,1869, + 3,98,49,0,1869,1890,1,0,0,0,1870,1871,10,3,0,0,1871,1873,7,23,0, + 0,1872,1874,3,166,83,0,1873,1872,1,0,0,0,1873,1874,1,0,0,0,1874, + 1875,1,0,0,0,1875,1889,3,96,48,4,1876,1877,10,2,0,0,1877,1879,5, + 148,0,0,1878,1880,3,166,83,0,1879,1878,1,0,0,0,1879,1880,1,0,0,0, + 1880,1881,1,0,0,0,1881,1889,3,96,48,3,1882,1883,10,1,0,0,1883,1885, + 7,24,0,0,1884,1886,3,166,83,0,1885,1884,1,0,0,0,1885,1886,1,0,0, + 0,1886,1887,1,0,0,0,1887,1889,3,96,48,2,1888,1870,1,0,0,0,1888,1876, + 1,0,0,0,1888,1882,1,0,0,0,1889,1892,1,0,0,0,1890,1888,1,0,0,0,1890, + 1891,1,0,0,0,1891,97,1,0,0,0,1892,1890,1,0,0,0,1893,1918,3,104,52, + 0,1894,1896,3,132,66,0,1895,1897,3,102,51,0,1896,1895,1,0,0,0,1897, + 1898,1,0,0,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,1918,1,0,0, + 0,1900,1901,5,293,0,0,1901,1918,3,72,36,0,1902,1903,5,333,0,0,1903, + 1908,3,232,116,0,1904,1905,5,4,0,0,1905,1907,3,232,116,0,1906,1904, + 1,0,0,0,1907,1910,1,0,0,0,1908,1906,1,0,0,0,1908,1909,1,0,0,0,1909, + 1911,1,0,0,0,1910,1908,1,0,0,0,1911,1912,3,204,102,0,1912,1918,1, + 0,0,0,1913,1914,5,2,0,0,1914,1915,3,16,8,0,1915,1916,5,3,0,0,1916, + 1918,1,0,0,0,1917,1893,1,0,0,0,1917,1894,1,0,0,0,1917,1900,1,0,0, + 0,1917,1902,1,0,0,0,1917,1913,1,0,0,0,1918,99,1,0,0,0,1919,1922, + 3,78,39,0,1920,1922,3,232,116,0,1921,1919,1,0,0,0,1921,1920,1,0, + 0,0,1922,1924,1,0,0,0,1923,1925,7,25,0,0,1924,1923,1,0,0,0,1924, + 1925,1,0,0,0,1925,1928,1,0,0,0,1926,1927,5,199,0,0,1927,1929,7,26, + 0,0,1928,1926,1,0,0,0,1928,1929,1,0,0,0,1929,101,1,0,0,0,1930,1932, + 3,106,53,0,1931,1933,3,124,62,0,1932,1931,1,0,0,0,1932,1933,1,0, + 0,0,1933,1934,1,0,0,0,1934,1935,3,88,44,0,1935,1958,1,0,0,0,1936, + 1940,3,108,54,0,1937,1939,3,164,82,0,1938,1937,1,0,0,0,1939,1942, + 1,0,0,0,1940,1938,1,0,0,0,1940,1941,1,0,0,0,1941,1944,1,0,0,0,1942, + 1940,1,0,0,0,1943,1945,3,124,62,0,1944,1943,1,0,0,0,1944,1945,1, + 0,0,0,1945,1947,1,0,0,0,1946,1948,3,136,68,0,1947,1946,1,0,0,0,1947, + 1948,1,0,0,0,1948,1950,1,0,0,0,1949,1951,3,126,63,0,1950,1949,1, + 0,0,0,1950,1951,1,0,0,0,1951,1953,1,0,0,0,1952,1954,3,310,155,0, + 1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954,1955,1,0,0,0,1955,1956, + 3,88,44,0,1956,1958,1,0,0,0,1957,1930,1,0,0,0,1957,1936,1,0,0,0, + 1958,103,1,0,0,0,1959,1961,3,106,53,0,1960,1962,3,132,66,0,1961, + 1960,1,0,0,0,1961,1962,1,0,0,0,1962,1966,1,0,0,0,1963,1965,3,164, + 82,0,1964,1963,1,0,0,0,1965,1968,1,0,0,0,1966,1964,1,0,0,0,1966, + 1967,1,0,0,0,1967,1970,1,0,0,0,1968,1966,1,0,0,0,1969,1971,3,124, + 62,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,1973,1,0,0,0,1972, + 1974,3,136,68,0,1973,1972,1,0,0,0,1973,1974,1,0,0,0,1974,1976,1, + 0,0,0,1975,1977,3,126,63,0,1976,1975,1,0,0,0,1976,1977,1,0,0,0,1977, + 1979,1,0,0,0,1978,1980,3,310,155,0,1979,1978,1,0,0,0,1979,1980,1, + 0,0,0,1980,2004,1,0,0,0,1981,1983,3,108,54,0,1982,1984,3,132,66, + 0,1983,1982,1,0,0,0,1983,1984,1,0,0,0,1984,1988,1,0,0,0,1985,1987, + 3,164,82,0,1986,1985,1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0, + 1988,1989,1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1991,1993, + 3,124,62,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1995,1,0,0,0, + 1994,1996,3,136,68,0,1995,1994,1,0,0,0,1995,1996,1,0,0,0,1996,1998, + 1,0,0,0,1997,1999,3,126,63,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0, + 1999,2001,1,0,0,0,2000,2002,3,310,155,0,2001,2000,1,0,0,0,2001,2002, + 1,0,0,0,2002,2004,1,0,0,0,2003,1959,1,0,0,0,2003,1981,1,0,0,0,2004, + 105,1,0,0,0,2005,2006,5,263,0,0,2006,2007,5,314,0,0,2007,2009,5, + 2,0,0,2008,2010,3,166,83,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010, + 2011,1,0,0,0,2011,2012,3,238,119,0,2012,2013,5,3,0,0,2013,2025,1, + 0,0,0,2014,2016,5,177,0,0,2015,2017,3,166,83,0,2016,2015,1,0,0,0, + 2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2025,3,238,119,0,2019,2021, + 5,238,0,0,2020,2022,3,166,83,0,2021,2020,1,0,0,0,2021,2022,1,0,0, + 0,2022,2023,1,0,0,0,2023,2025,3,238,119,0,2024,2005,1,0,0,0,2024, + 2014,1,0,0,0,2024,2019,1,0,0,0,2025,2027,1,0,0,0,2026,2028,3,206, + 103,0,2027,2026,1,0,0,0,2027,2028,1,0,0,0,2028,2031,1,0,0,0,2029, + 2030,5,236,0,0,2030,2032,3,342,171,0,2031,2029,1,0,0,0,2031,2032, + 1,0,0,0,2032,2033,1,0,0,0,2033,2034,5,332,0,0,2034,2047,3,342,171, + 0,2035,2045,5,20,0,0,2036,2046,3,182,91,0,2037,2046,3,296,148,0, + 2038,2041,5,2,0,0,2039,2042,3,182,91,0,2040,2042,3,296,148,0,2041, + 2039,1,0,0,0,2041,2040,1,0,0,0,2042,2043,1,0,0,0,2043,2044,5,3,0, + 0,2044,2046,1,0,0,0,2045,2036,1,0,0,0,2045,2037,1,0,0,0,2045,2038, + 1,0,0,0,2046,2048,1,0,0,0,2047,2035,1,0,0,0,2047,2048,1,0,0,0,2048, + 2050,1,0,0,0,2049,2051,3,206,103,0,2050,2049,1,0,0,0,2050,2051,1, + 0,0,0,2051,2054,1,0,0,0,2052,2053,5,235,0,0,2053,2055,3,342,171, + 0,2054,2052,1,0,0,0,2054,2055,1,0,0,0,2055,107,1,0,0,0,2056,2060, + 5,263,0,0,2057,2059,3,128,64,0,2058,2057,1,0,0,0,2059,2062,1,0,0, + 0,2060,2058,1,0,0,0,2060,2061,1,0,0,0,2061,2064,1,0,0,0,2062,2060, + 1,0,0,0,2063,2065,3,166,83,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0, + 2065,2066,1,0,0,0,2066,2067,3,222,111,0,2067,109,1,0,0,0,2068,2069, + 5,269,0,0,2069,2070,3,120,60,0,2070,111,1,0,0,0,2071,2072,5,343, + 0,0,2072,2075,5,178,0,0,2073,2074,5,14,0,0,2074,2076,3,240,120,0, + 2075,2073,1,0,0,0,2075,2076,1,0,0,0,2076,2077,1,0,0,0,2077,2085, + 5,300,0,0,2078,2086,5,84,0,0,2079,2080,5,329,0,0,2080,2083,5,269, + 0,0,2081,2084,5,363,0,0,2082,2084,3,120,60,0,2083,2081,1,0,0,0,2083, + 2082,1,0,0,0,2084,2086,1,0,0,0,2085,2078,1,0,0,0,2085,2079,1,0,0, + 0,2086,113,1,0,0,0,2087,2088,5,343,0,0,2088,2089,5,197,0,0,2089, + 2092,5,178,0,0,2090,2091,5,31,0,0,2091,2093,5,296,0,0,2092,2090, + 1,0,0,0,2092,2093,1,0,0,0,2093,2096,1,0,0,0,2094,2095,5,14,0,0,2095, + 2097,3,240,120,0,2096,2094,1,0,0,0,2096,2097,1,0,0,0,2097,2098,1, + 0,0,0,2098,2099,5,300,0,0,2099,2100,3,118,59,0,2100,115,1,0,0,0, + 2101,2102,5,343,0,0,2102,2103,5,197,0,0,2103,2104,5,178,0,0,2104, + 2105,5,31,0,0,2105,2108,5,280,0,0,2106,2107,5,14,0,0,2107,2109,3, + 240,120,0,2108,2106,1,0,0,0,2108,2109,1,0,0,0,2109,2110,1,0,0,0, + 2110,2115,5,300,0,0,2111,2116,5,84,0,0,2112,2113,5,329,0,0,2113, + 2114,5,269,0,0,2114,2116,3,120,60,0,2115,2111,1,0,0,0,2115,2112, + 1,0,0,0,2116,117,1,0,0,0,2117,2118,5,147,0,0,2118,2136,5,363,0,0, + 2119,2120,5,147,0,0,2120,2121,5,2,0,0,2121,2122,3,208,104,0,2122, + 2123,5,3,0,0,2123,2124,5,333,0,0,2124,2125,5,2,0,0,2125,2130,3,232, + 116,0,2126,2127,5,4,0,0,2127,2129,3,232,116,0,2128,2126,1,0,0,0, + 2129,2132,1,0,0,0,2130,2128,1,0,0,0,2130,2131,1,0,0,0,2131,2133, + 1,0,0,0,2132,2130,1,0,0,0,2133,2134,5,3,0,0,2134,2136,1,0,0,0,2135, + 2117,1,0,0,0,2135,2119,1,0,0,0,2136,119,1,0,0,0,2137,2142,3,122, + 61,0,2138,2139,5,4,0,0,2139,2141,3,122,61,0,2140,2138,1,0,0,0,2141, + 2144,1,0,0,0,2142,2140,1,0,0,0,2142,2143,1,0,0,0,2143,121,1,0,0, + 0,2144,2142,1,0,0,0,2145,2146,3,210,105,0,2146,2147,5,352,0,0,2147, + 2148,3,232,116,0,2148,123,1,0,0,0,2149,2150,5,344,0,0,2150,2151, + 3,240,120,0,2151,125,1,0,0,0,2152,2153,5,132,0,0,2153,2154,3,240, + 120,0,2154,127,1,0,0,0,2155,2156,5,374,0,0,2156,2163,3,130,65,0, + 2157,2159,5,4,0,0,2158,2157,1,0,0,0,2158,2159,1,0,0,0,2159,2160, + 1,0,0,0,2160,2162,3,130,65,0,2161,2158,1,0,0,0,2162,2165,1,0,0,0, + 2163,2161,1,0,0,0,2163,2164,1,0,0,0,2164,2166,1,0,0,0,2165,2163, + 1,0,0,0,2166,2167,5,375,0,0,2167,129,1,0,0,0,2168,2182,3,332,166, + 0,2169,2170,3,332,166,0,2170,2171,5,2,0,0,2171,2176,3,248,124,0, + 2172,2173,5,4,0,0,2173,2175,3,248,124,0,2174,2172,1,0,0,0,2175,2178, + 1,0,0,0,2176,2174,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0,2178, + 2176,1,0,0,0,2179,2180,5,3,0,0,2180,2182,1,0,0,0,2181,2168,1,0,0, + 0,2181,2169,1,0,0,0,2182,131,1,0,0,0,2183,2184,5,123,0,0,2184,2189, + 3,168,84,0,2185,2186,5,4,0,0,2186,2188,3,168,84,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,2195, + 1,0,0,0,2191,2189,1,0,0,0,2192,2194,3,164,82,0,2193,2192,1,0,0,0, + 2194,2197,1,0,0,0,2195,2193,1,0,0,0,2195,2196,1,0,0,0,2196,2199, + 1,0,0,0,2197,2195,1,0,0,0,2198,2200,3,144,72,0,2199,2198,1,0,0,0, + 2199,2200,1,0,0,0,2200,2202,1,0,0,0,2201,2203,3,150,75,0,2202,2201, + 1,0,0,0,2202,2203,1,0,0,0,2203,133,1,0,0,0,2204,2206,5,119,0,0,2205, + 2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207,1,0,0,0,2207,2208,7,27, + 0,0,2208,2209,5,20,0,0,2209,2212,5,201,0,0,2210,2213,5,382,0,0,2211, + 2213,3,342,171,0,2212,2210,1,0,0,0,2212,2211,1,0,0,0,2213,2222,1, + 0,0,0,2214,2216,5,119,0,0,2215,2214,1,0,0,0,2215,2216,1,0,0,0,2216, + 2217,1,0,0,0,2217,2218,7,28,0,0,2218,2219,5,20,0,0,2219,2220,5,201, + 0,0,2220,2222,3,244,122,0,2221,2205,1,0,0,0,2221,2215,1,0,0,0,2222, + 135,1,0,0,0,2223,2224,5,130,0,0,2224,2225,5,31,0,0,2225,2230,3,138, + 69,0,2226,2227,5,4,0,0,2227,2229,3,138,69,0,2228,2226,1,0,0,0,2229, + 2232,1,0,0,0,2230,2228,1,0,0,0,2230,2231,1,0,0,0,2231,2263,1,0,0, + 0,2232,2230,1,0,0,0,2233,2234,5,130,0,0,2234,2235,5,31,0,0,2235, + 2240,3,232,116,0,2236,2237,5,4,0,0,2237,2239,3,232,116,0,2238,2236, + 1,0,0,0,2239,2242,1,0,0,0,2240,2238,1,0,0,0,2240,2241,1,0,0,0,2241, + 2260,1,0,0,0,2242,2240,1,0,0,0,2243,2244,5,346,0,0,2244,2261,5,256, + 0,0,2245,2246,5,346,0,0,2246,2261,5,61,0,0,2247,2248,5,131,0,0,2248, + 2249,5,271,0,0,2249,2250,5,2,0,0,2250,2255,3,142,71,0,2251,2252, + 5,4,0,0,2252,2254,3,142,71,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,3,0,0,2259,2261,1,0,0,0,2260,2243,1,0,0,0,2260, + 2245,1,0,0,0,2260,2247,1,0,0,0,2260,2261,1,0,0,0,2261,2263,1,0,0, + 0,2262,2223,1,0,0,0,2262,2233,1,0,0,0,2263,137,1,0,0,0,2264,2268, + 3,78,39,0,2265,2268,3,140,70,0,2266,2268,3,232,116,0,2267,2264,1, + 0,0,0,2267,2265,1,0,0,0,2267,2266,1,0,0,0,2268,139,1,0,0,0,2269, + 2270,7,29,0,0,2270,2271,5,2,0,0,2271,2276,3,142,71,0,2272,2273,5, + 4,0,0,2273,2275,3,142,71,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,2280,5,3,0,0,2280,2301,1,0,0,0,2281,2282,5,131,0,0,2282,2283, + 5,271,0,0,2283,2286,5,2,0,0,2284,2287,3,140,70,0,2285,2287,3,142, + 71,0,2286,2284,1,0,0,0,2286,2285,1,0,0,0,2287,2295,1,0,0,0,2288, + 2291,5,4,0,0,2289,2292,3,140,70,0,2290,2292,3,142,71,0,2291,2289, + 1,0,0,0,2291,2290,1,0,0,0,2292,2294,1,0,0,0,2293,2288,1,0,0,0,2294, + 2297,1,0,0,0,2295,2293,1,0,0,0,2295,2296,1,0,0,0,2296,2298,1,0,0, + 0,2297,2295,1,0,0,0,2298,2299,5,3,0,0,2299,2301,1,0,0,0,2300,2269, + 1,0,0,0,2300,2281,1,0,0,0,2301,141,1,0,0,0,2302,2323,3,78,39,0,2303, + 2323,3,232,116,0,2304,2319,5,2,0,0,2305,2308,3,78,39,0,2306,2308, + 3,232,116,0,2307,2305,1,0,0,0,2307,2306,1,0,0,0,2308,2316,1,0,0, + 0,2309,2312,5,4,0,0,2310,2313,3,78,39,0,2311,2313,3,232,116,0,2312, + 2310,1,0,0,0,2312,2311,1,0,0,0,2313,2315,1,0,0,0,2314,2309,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,2307,1,0,0,0,2319,2320,1,0,0,0,2320, + 2321,1,0,0,0,2321,2323,5,3,0,0,2322,2302,1,0,0,0,2322,2303,1,0,0, + 0,2322,2304,1,0,0,0,2323,143,1,0,0,0,2324,2325,5,223,0,0,2325,2326, + 5,2,0,0,2326,2327,3,222,111,0,2327,2328,5,119,0,0,2328,2329,3,146, + 73,0,2329,2330,5,140,0,0,2330,2331,5,2,0,0,2331,2336,3,148,74,0, + 2332,2333,5,4,0,0,2333,2335,3,148,74,0,2334,2332,1,0,0,0,2335,2338, + 1,0,0,0,2336,2334,1,0,0,0,2336,2337,1,0,0,0,2337,2339,1,0,0,0,2338, + 2336,1,0,0,0,2339,2340,5,3,0,0,2340,2341,5,3,0,0,2341,145,1,0,0, + 0,2342,2355,3,332,166,0,2343,2344,5,2,0,0,2344,2349,3,332,166,0, + 2345,2346,5,4,0,0,2346,2348,3,332,166,0,2347,2345,1,0,0,0,2348,2351, + 1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0,0,2350,2352,1,0,0,0,2351, + 2349,1,0,0,0,2352,2353,5,3,0,0,2353,2355,1,0,0,0,2354,2342,1,0,0, + 0,2354,2343,1,0,0,0,2355,147,1,0,0,0,2356,2361,3,232,116,0,2357, + 2359,5,20,0,0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2360,1,0, + 0,0,2360,2362,3,332,166,0,2361,2358,1,0,0,0,2361,2362,1,0,0,0,2362, + 149,1,0,0,0,2363,2366,5,327,0,0,2364,2365,7,30,0,0,2365,2367,5,199, + 0,0,2366,2364,1,0,0,0,2366,2367,1,0,0,0,2367,2368,1,0,0,0,2368,2371, + 5,2,0,0,2369,2372,3,152,76,0,2370,2372,3,154,77,0,2371,2369,1,0, + 0,0,2371,2370,1,0,0,0,2372,2373,1,0,0,0,2373,2378,5,3,0,0,2374,2376, + 5,20,0,0,2375,2374,1,0,0,0,2375,2376,1,0,0,0,2376,2377,1,0,0,0,2377, + 2379,3,332,166,0,2378,2375,1,0,0,0,2378,2379,1,0,0,0,2379,151,1, + 0,0,0,2380,2381,3,332,166,0,2381,2382,5,119,0,0,2382,2383,3,332, + 166,0,2383,2384,5,140,0,0,2384,2385,5,2,0,0,2385,2390,3,158,79,0, + 2386,2387,5,4,0,0,2387,2389,3,158,79,0,2388,2386,1,0,0,0,2389,2392, + 1,0,0,0,2390,2388,1,0,0,0,2390,2391,1,0,0,0,2391,2393,1,0,0,0,2392, + 2390,1,0,0,0,2393,2394,5,3,0,0,2394,153,1,0,0,0,2395,2396,5,2,0, + 0,2396,2401,3,332,166,0,2397,2398,5,4,0,0,2398,2400,3,332,166,0, + 2399,2397,1,0,0,0,2400,2403,1,0,0,0,2401,2399,1,0,0,0,2401,2402, + 1,0,0,0,2402,2404,1,0,0,0,2403,2401,1,0,0,0,2404,2405,5,3,0,0,2405, + 2406,5,119,0,0,2406,2407,3,332,166,0,2407,2408,5,140,0,0,2408,2409, + 5,2,0,0,2409,2414,3,156,78,0,2410,2411,5,4,0,0,2411,2413,3,156,78, + 0,2412,2410,1,0,0,0,2413,2416,1,0,0,0,2414,2412,1,0,0,0,2414,2415, + 1,0,0,0,2415,2417,1,0,0,0,2416,2414,1,0,0,0,2417,2418,5,3,0,0,2418, + 155,1,0,0,0,2419,2420,5,2,0,0,2420,2425,3,210,105,0,2421,2422,5, + 4,0,0,2422,2424,3,210,105,0,2423,2421,1,0,0,0,2424,2427,1,0,0,0, + 2425,2423,1,0,0,0,2425,2426,1,0,0,0,2426,2428,1,0,0,0,2427,2425, + 1,0,0,0,2428,2433,5,3,0,0,2429,2431,5,20,0,0,2430,2429,1,0,0,0,2430, + 2431,1,0,0,0,2431,2432,1,0,0,0,2432,2434,3,332,166,0,2433,2430,1, + 0,0,0,2433,2434,1,0,0,0,2434,157,1,0,0,0,2435,2440,3,210,105,0,2436, + 2438,5,20,0,0,2437,2436,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0, + 0,0,2439,2441,3,332,166,0,2440,2437,1,0,0,0,2440,2441,1,0,0,0,2441, + 159,1,0,0,0,2442,2443,5,137,0,0,2443,2444,5,197,0,0,2444,2445,5, + 105,0,0,2445,161,1,0,0,0,2446,2447,5,137,0,0,2447,2448,5,105,0,0, + 2448,163,1,0,0,0,2449,2450,5,158,0,0,2450,2452,5,338,0,0,2451,2453, + 5,211,0,0,2452,2451,1,0,0,0,2452,2453,1,0,0,0,2453,2454,1,0,0,0, + 2454,2455,3,76,38,0,2455,2464,5,2,0,0,2456,2461,3,232,116,0,2457, + 2458,5,4,0,0,2458,2460,3,232,116,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,2465,1,0,0,0,2463, + 2461,1,0,0,0,2464,2456,1,0,0,0,2464,2465,1,0,0,0,2465,2466,1,0,0, + 0,2466,2467,5,3,0,0,2467,2479,3,204,102,0,2468,2470,5,20,0,0,2469, + 2468,1,0,0,0,2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471,2476,3,332, + 166,0,2472,2473,5,4,0,0,2473,2475,3,332,166,0,2474,2472,1,0,0,0, + 2475,2478,1,0,0,0,2476,2474,1,0,0,0,2476,2477,1,0,0,0,2477,2480, + 1,0,0,0,2478,2476,1,0,0,0,2479,2469,1,0,0,0,2479,2480,1,0,0,0,2480, + 165,1,0,0,0,2481,2482,7,31,0,0,2482,167,1,0,0,0,2483,2497,3,72,36, + 0,2484,2486,5,158,0,0,2485,2484,1,0,0,0,2485,2486,1,0,0,0,2486,2487, + 1,0,0,0,2487,2493,3,192,96,0,2488,2492,3,170,85,0,2489,2492,3,144, + 72,0,2490,2492,3,150,75,0,2491,2488,1,0,0,0,2491,2489,1,0,0,0,2491, + 2490,1,0,0,0,2492,2495,1,0,0,0,2493,2491,1,0,0,0,2493,2494,1,0,0, + 0,2494,2497,1,0,0,0,2495,2493,1,0,0,0,2496,2483,1,0,0,0,2496,2485, + 1,0,0,0,2497,169,1,0,0,0,2498,2499,3,172,86,0,2499,2501,5,155,0, + 0,2500,2502,5,158,0,0,2501,2500,1,0,0,0,2501,2502,1,0,0,0,2502,2503, + 1,0,0,0,2503,2505,3,192,96,0,2504,2506,3,174,87,0,2505,2504,1,0, + 0,0,2505,2506,1,0,0,0,2506,2516,1,0,0,0,2507,2508,5,194,0,0,2508, + 2509,3,172,86,0,2509,2511,5,155,0,0,2510,2512,5,158,0,0,2511,2510, + 1,0,0,0,2511,2512,1,0,0,0,2512,2513,1,0,0,0,2513,2514,3,192,96,0, + 2514,2516,1,0,0,0,2515,2498,1,0,0,0,2515,2507,1,0,0,0,2516,171,1, + 0,0,0,2517,2519,5,144,0,0,2518,2517,1,0,0,0,2518,2519,1,0,0,0,2519, + 2534,1,0,0,0,2520,2534,5,60,0,0,2521,2523,5,161,0,0,2522,2524,5, + 211,0,0,2523,2522,1,0,0,0,2523,2524,1,0,0,0,2524,2534,1,0,0,0,2525, + 2527,5,161,0,0,2526,2525,1,0,0,0,2526,2527,1,0,0,0,2527,2528,1,0, + 0,0,2528,2534,7,32,0,0,2529,2531,7,33,0,0,2530,2532,5,211,0,0,2531, + 2530,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2518,1,0,0, + 0,2533,2520,1,0,0,0,2533,2521,1,0,0,0,2533,2526,1,0,0,0,2533,2529, + 1,0,0,0,2534,173,1,0,0,0,2535,2536,5,203,0,0,2536,2540,3,240,120, + 0,2537,2538,5,332,0,0,2538,2540,3,180,90,0,2539,2535,1,0,0,0,2539, + 2537,1,0,0,0,2540,175,1,0,0,0,2541,2542,5,295,0,0,2542,2544,5,2, + 0,0,2543,2545,3,178,89,0,2544,2543,1,0,0,0,2544,2545,1,0,0,0,2545, + 2546,1,0,0,0,2546,2551,5,3,0,0,2547,2548,5,243,0,0,2548,2549,5,2, + 0,0,2549,2550,5,382,0,0,2550,2552,5,3,0,0,2551,2547,1,0,0,0,2551, + 2552,1,0,0,0,2552,177,1,0,0,0,2553,2555,5,362,0,0,2554,2553,1,0, + 0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2557,7,34,0,0,2557, + 2578,5,222,0,0,2558,2559,3,232,116,0,2559,2560,5,258,0,0,2560,2578, + 1,0,0,0,2561,2562,5,29,0,0,2562,2563,5,382,0,0,2563,2564,5,210,0, + 0,2564,2565,5,201,0,0,2565,2574,5,382,0,0,2566,2572,5,203,0,0,2567, + 2573,3,332,166,0,2568,2569,3,326,163,0,2569,2570,5,2,0,0,2570,2571, + 5,3,0,0,2571,2573,1,0,0,0,2572,2567,1,0,0,0,2572,2568,1,0,0,0,2573, + 2575,1,0,0,0,2574,2566,1,0,0,0,2574,2575,1,0,0,0,2575,2578,1,0,0, + 0,2576,2578,3,232,116,0,2577,2554,1,0,0,0,2577,2558,1,0,0,0,2577, + 2561,1,0,0,0,2577,2576,1,0,0,0,2578,179,1,0,0,0,2579,2580,5,2,0, + 0,2580,2581,3,182,91,0,2581,2582,5,3,0,0,2582,181,1,0,0,0,2583,2588, + 3,328,164,0,2584,2585,5,4,0,0,2585,2587,3,328,164,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, + 183,1,0,0,0,2590,2588,1,0,0,0,2591,2592,5,2,0,0,2592,2597,3,186, + 93,0,2593,2594,5,4,0,0,2594,2596,3,186,93,0,2595,2593,1,0,0,0,2596, + 2599,1,0,0,0,2597,2595,1,0,0,0,2597,2598,1,0,0,0,2598,2600,1,0,0, + 0,2599,2597,1,0,0,0,2600,2601,5,3,0,0,2601,185,1,0,0,0,2602,2604, + 3,328,164,0,2603,2605,7,25,0,0,2604,2603,1,0,0,0,2604,2605,1,0,0, + 0,2605,187,1,0,0,0,2606,2607,5,2,0,0,2607,2612,3,190,95,0,2608,2609, + 5,4,0,0,2609,2611,3,190,95,0,2610,2608,1,0,0,0,2611,2614,1,0,0,0, + 2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,2615,1,0,0,0,2614,2612, + 1,0,0,0,2615,2616,5,3,0,0,2616,189,1,0,0,0,2617,2620,3,84,42,0,2618, + 2619,5,51,0,0,2619,2621,3,342,171,0,2620,2618,1,0,0,0,2620,2621, + 1,0,0,0,2621,191,1,0,0,0,2622,2626,3,72,36,0,2623,2626,3,76,38,0, + 2624,2626,3,86,43,0,2625,2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624, + 1,0,0,0,2626,2628,1,0,0,0,2627,2629,3,134,67,0,2628,2627,1,0,0,0, + 2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2632,3,176,88,0,2631,2630, + 1,0,0,0,2631,2632,1,0,0,0,2632,2633,1,0,0,0,2633,2634,3,204,102, + 0,2634,2678,1,0,0,0,2635,2636,5,2,0,0,2636,2637,3,16,8,0,2637,2639, + 5,3,0,0,2638,2640,3,176,88,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0, + 2640,2641,1,0,0,0,2641,2642,3,204,102,0,2642,2678,1,0,0,0,2643,2644, + 5,2,0,0,2644,2645,3,168,84,0,2645,2647,5,3,0,0,2646,2648,3,176,88, + 0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0,2649,2650, + 3,204,102,0,2650,2678,1,0,0,0,2651,2652,5,333,0,0,2652,2657,3,232, + 116,0,2653,2654,5,4,0,0,2654,2656,3,232,116,0,2655,2653,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,3,204,102,0,2661,2678,1,0,0, + 0,2662,2663,3,322,161,0,2663,2672,5,2,0,0,2664,2669,3,202,101,0, + 2665,2666,5,4,0,0,2666,2668,3,202,101,0,2667,2665,1,0,0,0,2668,2671, + 1,0,0,0,2669,2667,1,0,0,0,2669,2670,1,0,0,0,2670,2673,1,0,0,0,2671, + 2669,1,0,0,0,2672,2664,1,0,0,0,2672,2673,1,0,0,0,2673,2674,1,0,0, + 0,2674,2675,5,3,0,0,2675,2676,3,204,102,0,2676,2678,1,0,0,0,2677, + 2625,1,0,0,0,2677,2635,1,0,0,0,2677,2643,1,0,0,0,2677,2651,1,0,0, + 0,2677,2662,1,0,0,0,2678,193,1,0,0,0,2679,2680,5,293,0,0,2680,2682, + 3,72,36,0,2681,2683,3,196,98,0,2682,2681,1,0,0,0,2682,2683,1,0,0, + 0,2683,2699,1,0,0,0,2684,2685,5,293,0,0,2685,2686,5,2,0,0,2686,2687, + 3,72,36,0,2687,2689,5,3,0,0,2688,2690,3,196,98,0,2689,2688,1,0,0, + 0,2689,2690,1,0,0,0,2690,2699,1,0,0,0,2691,2692,5,293,0,0,2692,2693, + 5,2,0,0,2693,2694,3,16,8,0,2694,2696,5,3,0,0,2695,2697,3,196,98, + 0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697,2699,1,0,0,0,2698,2679, + 1,0,0,0,2698,2684,1,0,0,0,2698,2691,1,0,0,0,2699,195,1,0,0,0,2700, + 2701,5,346,0,0,2701,2702,5,274,0,0,2702,2720,5,217,0,0,2703,2704, + 7,35,0,0,2704,2717,5,31,0,0,2705,2706,5,2,0,0,2706,2711,3,232,116, + 0,2707,2708,5,4,0,0,2708,2710,3,232,116,0,2709,2707,1,0,0,0,2710, + 2713,1,0,0,0,2711,2709,1,0,0,0,2711,2712,1,0,0,0,2712,2714,1,0,0, + 0,2713,2711,1,0,0,0,2714,2715,5,3,0,0,2715,2718,1,0,0,0,2716,2718, + 3,232,116,0,2717,2705,1,0,0,0,2717,2716,1,0,0,0,2718,2720,1,0,0, + 0,2719,2700,1,0,0,0,2719,2703,1,0,0,0,2720,2730,1,0,0,0,2721,2722, + 7,36,0,0,2722,2728,5,31,0,0,2723,2724,5,2,0,0,2724,2725,3,92,46, + 0,2725,2726,5,3,0,0,2726,2729,1,0,0,0,2727,2729,3,100,50,0,2728, + 2723,1,0,0,0,2728,2727,1,0,0,0,2729,2731,1,0,0,0,2730,2721,1,0,0, + 0,2730,2731,1,0,0,0,2731,197,1,0,0,0,2732,2733,3,332,166,0,2733, + 2734,5,373,0,0,2734,2735,3,194,97,0,2735,199,1,0,0,0,2736,2739,3, + 194,97,0,2737,2739,3,198,99,0,2738,2736,1,0,0,0,2738,2737,1,0,0, + 0,2739,201,1,0,0,0,2740,2743,3,200,100,0,2741,2743,3,236,118,0,2742, + 2740,1,0,0,0,2742,2741,1,0,0,0,2743,203,1,0,0,0,2744,2746,5,20,0, + 0,2745,2744,1,0,0,0,2745,2746,1,0,0,0,2746,2747,1,0,0,0,2747,2749, + 3,334,167,0,2748,2750,3,180,90,0,2749,2748,1,0,0,0,2749,2750,1,0, + 0,0,2750,2752,1,0,0,0,2751,2745,1,0,0,0,2751,2752,1,0,0,0,2752,205, + 1,0,0,0,2753,2754,5,257,0,0,2754,2755,5,121,0,0,2755,2756,5,266, + 0,0,2756,2760,3,342,171,0,2757,2758,5,346,0,0,2758,2759,5,267,0, + 0,2759,2761,3,42,21,0,2760,2757,1,0,0,0,2760,2761,1,0,0,0,2761,2803, + 1,0,0,0,2762,2763,5,257,0,0,2763,2764,5,121,0,0,2764,2774,5,85,0, + 0,2765,2766,5,113,0,0,2766,2767,5,299,0,0,2767,2768,5,31,0,0,2768, + 2772,3,342,171,0,2769,2770,5,101,0,0,2770,2771,5,31,0,0,2771,2773, + 3,342,171,0,2772,2769,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0, + 0,2774,2765,1,0,0,0,2774,2775,1,0,0,0,2775,2781,1,0,0,0,2776,2777, + 5,48,0,0,2777,2778,5,154,0,0,2778,2779,5,299,0,0,2779,2780,5,31, + 0,0,2780,2782,3,342,171,0,2781,2776,1,0,0,0,2781,2782,1,0,0,0,2782, + 2788,1,0,0,0,2783,2784,5,177,0,0,2784,2785,5,156,0,0,2785,2786,5, + 299,0,0,2786,2787,5,31,0,0,2787,2789,3,342,171,0,2788,2783,1,0,0, + 0,2788,2789,1,0,0,0,2789,2794,1,0,0,0,2790,2791,5,166,0,0,2791,2792, + 5,299,0,0,2792,2793,5,31,0,0,2793,2795,3,342,171,0,2794,2790,1,0, + 0,0,2794,2795,1,0,0,0,2795,2800,1,0,0,0,2796,2797,5,198,0,0,2797, + 2798,5,83,0,0,2798,2799,5,20,0,0,2799,2801,3,342,171,0,2800,2796, + 1,0,0,0,2800,2801,1,0,0,0,2801,2803,1,0,0,0,2802,2753,1,0,0,0,2802, + 2762,1,0,0,0,2803,207,1,0,0,0,2804,2809,3,210,105,0,2805,2806,5, + 4,0,0,2806,2808,3,210,105,0,2807,2805,1,0,0,0,2808,2811,1,0,0,0, + 2809,2807,1,0,0,0,2809,2810,1,0,0,0,2810,209,1,0,0,0,2811,2809,1, + 0,0,0,2812,2817,3,328,164,0,2813,2814,5,5,0,0,2814,2816,3,328,164, + 0,2815,2813,1,0,0,0,2816,2819,1,0,0,0,2817,2815,1,0,0,0,2817,2818, + 1,0,0,0,2818,211,1,0,0,0,2819,2817,1,0,0,0,2820,2825,3,214,107,0, + 2821,2822,5,4,0,0,2822,2824,3,214,107,0,2823,2821,1,0,0,0,2824,2827, + 1,0,0,0,2825,2823,1,0,0,0,2825,2826,1,0,0,0,2826,213,1,0,0,0,2827, + 2825,1,0,0,0,2828,2831,3,210,105,0,2829,2830,5,207,0,0,2830,2832, + 3,42,21,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,215,1,0,0,0,2833, + 2834,3,328,164,0,2834,2835,5,5,0,0,2835,2837,1,0,0,0,2836,2833,1, + 0,0,0,2836,2837,1,0,0,0,2837,2838,1,0,0,0,2838,2839,3,328,164,0, + 2839,217,1,0,0,0,2840,2841,3,328,164,0,2841,2842,5,5,0,0,2842,2844, + 1,0,0,0,2843,2840,1,0,0,0,2843,2844,1,0,0,0,2844,2845,1,0,0,0,2845, + 2846,3,328,164,0,2846,219,1,0,0,0,2847,2850,3,78,39,0,2848,2850, + 3,232,116,0,2849,2847,1,0,0,0,2849,2848,1,0,0,0,2850,2858,1,0,0, + 0,2851,2853,5,20,0,0,2852,2851,1,0,0,0,2852,2853,1,0,0,0,2853,2856, + 1,0,0,0,2854,2857,3,328,164,0,2855,2857,3,180,90,0,2856,2854,1,0, + 0,0,2856,2855,1,0,0,0,2857,2859,1,0,0,0,2858,2852,1,0,0,0,2858,2859, + 1,0,0,0,2859,221,1,0,0,0,2860,2865,3,220,110,0,2861,2862,5,4,0,0, + 2862,2864,3,220,110,0,2863,2861,1,0,0,0,2864,2867,1,0,0,0,2865,2863, + 1,0,0,0,2865,2866,1,0,0,0,2866,223,1,0,0,0,2867,2865,1,0,0,0,2868, + 2869,5,2,0,0,2869,2874,3,226,113,0,2870,2871,5,4,0,0,2871,2873,3, + 226,113,0,2872,2870,1,0,0,0,2873,2876,1,0,0,0,2874,2872,1,0,0,0, + 2874,2875,1,0,0,0,2875,2877,1,0,0,0,2876,2874,1,0,0,0,2877,2878, + 5,3,0,0,2878,225,1,0,0,0,2879,2882,3,228,114,0,2880,2882,3,298,149, + 0,2881,2879,1,0,0,0,2881,2880,1,0,0,0,2882,227,1,0,0,0,2883,2897, + 3,326,163,0,2884,2885,3,332,166,0,2885,2886,5,2,0,0,2886,2891,3, + 230,115,0,2887,2888,5,4,0,0,2888,2890,3,230,115,0,2889,2887,1,0, + 0,0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2891,2892,1,0,0,0,2892,2894, + 1,0,0,0,2893,2891,1,0,0,0,2894,2895,5,3,0,0,2895,2897,1,0,0,0,2896, + 2883,1,0,0,0,2896,2884,1,0,0,0,2897,229,1,0,0,0,2898,2901,3,326, + 163,0,2899,2901,3,252,126,0,2900,2898,1,0,0,0,2900,2899,1,0,0,0, + 2901,231,1,0,0,0,2902,2903,3,240,120,0,2903,233,1,0,0,0,2904,2905, + 3,332,166,0,2905,2906,5,373,0,0,2906,2907,3,232,116,0,2907,235,1, + 0,0,0,2908,2911,3,232,116,0,2909,2911,3,234,117,0,2910,2908,1,0, + 0,0,2910,2909,1,0,0,0,2911,237,1,0,0,0,2912,2917,3,232,116,0,2913, + 2914,5,4,0,0,2914,2916,3,232,116,0,2915,2913,1,0,0,0,2916,2919,1, + 0,0,0,2917,2915,1,0,0,0,2917,2918,1,0,0,0,2918,239,1,0,0,0,2919, + 2917,1,0,0,0,2920,2921,6,120,-1,0,2921,2922,7,37,0,0,2922,2933,3, + 240,120,5,2923,2924,5,105,0,0,2924,2925,5,2,0,0,2925,2926,3,16,8, + 0,2926,2927,5,3,0,0,2927,2933,1,0,0,0,2928,2930,3,244,122,0,2929, + 2931,3,242,121,0,2930,2929,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1, + 0,0,0,2932,2920,1,0,0,0,2932,2923,1,0,0,0,2932,2928,1,0,0,0,2933, + 2942,1,0,0,0,2934,2935,10,2,0,0,2935,2936,5,14,0,0,2936,2941,3,240, + 120,3,2937,2938,10,1,0,0,2938,2939,5,208,0,0,2939,2941,3,240,120, + 2,2940,2934,1,0,0,0,2940,2937,1,0,0,0,2941,2944,1,0,0,0,2942,2940, + 1,0,0,0,2942,2943,1,0,0,0,2943,241,1,0,0,0,2944,2942,1,0,0,0,2945, + 2947,5,197,0,0,2946,2945,1,0,0,0,2946,2947,1,0,0,0,2947,2948,1,0, + 0,0,2948,2949,5,24,0,0,2949,2950,3,244,122,0,2950,2951,5,14,0,0, + 2951,2952,3,244,122,0,2952,3028,1,0,0,0,2953,2955,5,197,0,0,2954, + 2953,1,0,0,0,2954,2955,1,0,0,0,2955,2956,1,0,0,0,2956,2957,5,140, + 0,0,2957,2958,5,2,0,0,2958,2963,3,232,116,0,2959,2960,5,4,0,0,2960, + 2962,3,232,116,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,2966,1,0,0,0,2965,2963,1,0,0,0,2966, + 2967,5,3,0,0,2967,3028,1,0,0,0,2968,2970,5,197,0,0,2969,2968,1,0, + 0,0,2969,2970,1,0,0,0,2970,2971,1,0,0,0,2971,2972,5,140,0,0,2972, + 2973,5,2,0,0,2973,2974,3,16,8,0,2974,2975,5,3,0,0,2975,3028,1,0, + 0,0,2976,2978,5,197,0,0,2977,2976,1,0,0,0,2977,2978,1,0,0,0,2978, + 2979,1,0,0,0,2979,2980,7,38,0,0,2980,3028,3,244,122,0,2981,2983, + 5,197,0,0,2982,2981,1,0,0,0,2982,2983,1,0,0,0,2983,2984,1,0,0,0, + 2984,2985,7,39,0,0,2985,2999,7,40,0,0,2986,2987,5,2,0,0,2987,3000, + 5,3,0,0,2988,2989,5,2,0,0,2989,2994,3,232,116,0,2990,2991,5,4,0, + 0,2991,2993,3,232,116,0,2992,2990,1,0,0,0,2993,2996,1,0,0,0,2994, + 2992,1,0,0,0,2994,2995,1,0,0,0,2995,2997,1,0,0,0,2996,2994,1,0,0, + 0,2997,2998,5,3,0,0,2998,3000,1,0,0,0,2999,2986,1,0,0,0,2999,2988, + 1,0,0,0,3000,3028,1,0,0,0,3001,3003,5,197,0,0,3002,3001,1,0,0,0, + 3002,3003,1,0,0,0,3003,3004,1,0,0,0,3004,3005,7,39,0,0,3005,3008, + 3,244,122,0,3006,3007,5,100,0,0,3007,3009,3,342,171,0,3008,3006, + 1,0,0,0,3008,3009,1,0,0,0,3009,3028,1,0,0,0,3010,3012,5,153,0,0, + 3011,3013,5,197,0,0,3012,3011,1,0,0,0,3012,3013,1,0,0,0,3013,3014, + 1,0,0,0,3014,3028,5,198,0,0,3015,3017,5,153,0,0,3016,3018,5,197, + 0,0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3019,1,0,0,0,3019,3028, + 7,41,0,0,3020,3022,5,153,0,0,3021,3023,5,197,0,0,3022,3021,1,0,0, + 0,3022,3023,1,0,0,0,3023,3024,1,0,0,0,3024,3025,5,92,0,0,3025,3026, + 5,123,0,0,3026,3028,3,244,122,0,3027,2946,1,0,0,0,3027,2954,1,0, + 0,0,3027,2969,1,0,0,0,3027,2977,1,0,0,0,3027,2982,1,0,0,0,3027,3002, + 1,0,0,0,3027,3010,1,0,0,0,3027,3015,1,0,0,0,3027,3020,1,0,0,0,3028, + 243,1,0,0,0,3029,3030,6,122,-1,0,3030,3034,3,248,124,0,3031,3032, + 7,42,0,0,3032,3034,3,244,122,7,3033,3029,1,0,0,0,3033,3031,1,0,0, + 0,3034,3056,1,0,0,0,3035,3036,10,6,0,0,3036,3037,7,43,0,0,3037,3055, + 3,244,122,7,3038,3039,10,5,0,0,3039,3040,7,44,0,0,3040,3055,3,244, + 122,6,3041,3042,10,4,0,0,3042,3043,5,367,0,0,3043,3055,3,244,122, + 5,3044,3045,10,3,0,0,3045,3046,5,370,0,0,3046,3055,3,244,122,4,3047, + 3048,10,2,0,0,3048,3049,5,368,0,0,3049,3055,3,244,122,3,3050,3051, + 10,1,0,0,3051,3052,3,254,127,0,3052,3053,3,244,122,2,3053,3055,1, + 0,0,0,3054,3035,1,0,0,0,3054,3038,1,0,0,0,3054,3041,1,0,0,0,3054, + 3044,1,0,0,0,3054,3047,1,0,0,0,3054,3050,1,0,0,0,3055,3058,1,0,0, + 0,3056,3054,1,0,0,0,3056,3057,1,0,0,0,3057,245,1,0,0,0,3058,3056, + 1,0,0,0,3059,3060,7,45,0,0,3060,247,1,0,0,0,3061,3062,6,124,-1,0, + 3062,3311,7,46,0,0,3063,3064,7,47,0,0,3064,3067,5,2,0,0,3065,3068, + 3,246,123,0,3066,3068,3,342,171,0,3067,3065,1,0,0,0,3067,3066,1, + 0,0,0,3068,3069,1,0,0,0,3069,3070,5,4,0,0,3070,3071,3,244,122,0, + 3071,3072,5,4,0,0,3072,3073,3,244,122,0,3073,3074,5,3,0,0,3074,3311, + 1,0,0,0,3075,3076,7,48,0,0,3076,3079,5,2,0,0,3077,3080,3,246,123, + 0,3078,3080,3,342,171,0,3079,3077,1,0,0,0,3079,3078,1,0,0,0,3080, + 3081,1,0,0,0,3081,3082,5,4,0,0,3082,3083,3,244,122,0,3083,3084,5, + 4,0,0,3084,3085,3,244,122,0,3085,3086,5,3,0,0,3086,3311,1,0,0,0, + 3087,3089,5,35,0,0,3088,3090,3,308,154,0,3089,3088,1,0,0,0,3090, + 3091,1,0,0,0,3091,3089,1,0,0,0,3091,3092,1,0,0,0,3092,3095,1,0,0, + 0,3093,3094,5,97,0,0,3094,3096,3,232,116,0,3095,3093,1,0,0,0,3095, + 3096,1,0,0,0,3096,3097,1,0,0,0,3097,3098,5,99,0,0,3098,3311,1,0, + 0,0,3099,3100,5,35,0,0,3100,3102,3,232,116,0,3101,3103,3,308,154, + 0,3102,3101,1,0,0,0,3103,3104,1,0,0,0,3104,3102,1,0,0,0,3104,3105, + 1,0,0,0,3105,3108,1,0,0,0,3106,3107,5,97,0,0,3107,3109,3,232,116, + 0,3108,3106,1,0,0,0,3108,3109,1,0,0,0,3109,3110,1,0,0,0,3110,3111, + 5,99,0,0,3111,3311,1,0,0,0,3112,3113,7,49,0,0,3113,3114,5,2,0,0, + 3114,3115,3,232,116,0,3115,3116,5,20,0,0,3116,3117,3,282,141,0,3117, + 3118,5,3,0,0,3118,3311,1,0,0,0,3119,3120,5,286,0,0,3120,3129,5,2, + 0,0,3121,3126,3,220,110,0,3122,3123,5,4,0,0,3123,3125,3,220,110, + 0,3124,3122,1,0,0,0,3125,3128,1,0,0,0,3126,3124,1,0,0,0,3126,3127, + 1,0,0,0,3127,3130,1,0,0,0,3128,3126,1,0,0,0,3129,3121,1,0,0,0,3129, + 3130,1,0,0,0,3130,3131,1,0,0,0,3131,3311,5,3,0,0,3132,3133,5,116, + 0,0,3133,3134,5,2,0,0,3134,3137,3,232,116,0,3135,3136,5,138,0,0, + 3136,3138,5,199,0,0,3137,3135,1,0,0,0,3137,3138,1,0,0,0,3138,3139, + 1,0,0,0,3139,3140,5,3,0,0,3140,3311,1,0,0,0,3141,3142,5,17,0,0,3142, + 3143,5,2,0,0,3143,3146,3,232,116,0,3144,3145,5,138,0,0,3145,3147, + 5,199,0,0,3146,3144,1,0,0,0,3146,3147,1,0,0,0,3147,3148,1,0,0,0, + 3148,3149,5,3,0,0,3149,3311,1,0,0,0,3150,3151,5,157,0,0,3151,3152, + 5,2,0,0,3152,3155,3,232,116,0,3153,3154,5,138,0,0,3154,3156,5,199, + 0,0,3155,3153,1,0,0,0,3155,3156,1,0,0,0,3156,3157,1,0,0,0,3157,3158, + 5,3,0,0,3158,3311,1,0,0,0,3159,3160,5,225,0,0,3160,3161,5,2,0,0, + 3161,3162,3,244,122,0,3162,3163,5,140,0,0,3163,3164,3,244,122,0, + 3164,3165,5,3,0,0,3165,3311,1,0,0,0,3166,3311,3,252,126,0,3167,3311, + 5,363,0,0,3168,3169,3,326,163,0,3169,3170,5,5,0,0,3170,3171,5,363, + 0,0,3171,3311,1,0,0,0,3172,3173,5,2,0,0,3173,3176,3,220,110,0,3174, + 3175,5,4,0,0,3175,3177,3,220,110,0,3176,3174,1,0,0,0,3177,3178,1, + 0,0,0,3178,3176,1,0,0,0,3178,3179,1,0,0,0,3179,3180,1,0,0,0,3180, + 3181,5,3,0,0,3181,3311,1,0,0,0,3182,3183,5,2,0,0,3183,3184,3,16, + 8,0,3184,3185,5,3,0,0,3185,3311,1,0,0,0,3186,3187,5,136,0,0,3187, + 3188,5,2,0,0,3188,3189,3,232,116,0,3189,3190,5,3,0,0,3190,3311,1, + 0,0,0,3191,3192,3,322,161,0,3192,3204,5,2,0,0,3193,3195,3,166,83, + 0,3194,3193,1,0,0,0,3194,3195,1,0,0,0,3195,3196,1,0,0,0,3196,3201, + 3,236,118,0,3197,3198,5,4,0,0,3198,3200,3,236,118,0,3199,3197,1, + 0,0,0,3200,3203,1,0,0,0,3201,3199,1,0,0,0,3201,3202,1,0,0,0,3202, + 3205,1,0,0,0,3203,3201,1,0,0,0,3204,3194,1,0,0,0,3204,3205,1,0,0, + 0,3205,3206,1,0,0,0,3206,3213,5,3,0,0,3207,3208,5,114,0,0,3208,3209, + 5,2,0,0,3209,3210,5,344,0,0,3210,3211,3,240,120,0,3211,3212,5,3, + 0,0,3212,3214,1,0,0,0,3213,3207,1,0,0,0,3213,3214,1,0,0,0,3214,3217, + 1,0,0,0,3215,3216,7,50,0,0,3216,3218,5,199,0,0,3217,3215,1,0,0,0, + 3217,3218,1,0,0,0,3218,3221,1,0,0,0,3219,3220,5,213,0,0,3220,3222, + 3,314,157,0,3221,3219,1,0,0,0,3221,3222,1,0,0,0,3222,3311,1,0,0, + 0,3223,3224,3,332,166,0,3224,3225,5,372,0,0,3225,3226,3,232,116, + 0,3226,3311,1,0,0,0,3227,3228,5,2,0,0,3228,3231,3,332,166,0,3229, + 3230,5,4,0,0,3230,3232,3,332,166,0,3231,3229,1,0,0,0,3232,3233,1, + 0,0,0,3233,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235,1,0,0,0,3235, + 3236,5,3,0,0,3236,3237,5,372,0,0,3237,3238,3,232,116,0,3238,3311, + 1,0,0,0,3239,3311,3,80,40,0,3240,3241,5,2,0,0,3241,3242,3,232,116, + 0,3242,3243,5,3,0,0,3243,3311,1,0,0,0,3244,3245,5,110,0,0,3245,3246, + 5,2,0,0,3246,3247,3,332,166,0,3247,3248,5,123,0,0,3248,3249,3,244, + 122,0,3249,3250,5,3,0,0,3250,3311,1,0,0,0,3251,3252,7,51,0,0,3252, + 3253,5,2,0,0,3253,3254,3,244,122,0,3254,3255,7,52,0,0,3255,3258, + 3,244,122,0,3256,3257,7,53,0,0,3257,3259,3,244,122,0,3258,3256,1, + 0,0,0,3258,3259,1,0,0,0,3259,3260,1,0,0,0,3260,3261,5,3,0,0,3261, + 3311,1,0,0,0,3262,3263,5,315,0,0,3263,3265,5,2,0,0,3264,3266,7,54, + 0,0,3265,3264,1,0,0,0,3265,3266,1,0,0,0,3266,3268,1,0,0,0,3267,3269, + 3,244,122,0,3268,3267,1,0,0,0,3268,3269,1,0,0,0,3269,3270,1,0,0, + 0,3270,3271,5,123,0,0,3271,3272,3,244,122,0,3272,3273,5,3,0,0,3273, + 3311,1,0,0,0,3274,3275,5,215,0,0,3275,3276,5,2,0,0,3276,3277,3,244, + 122,0,3277,3278,5,224,0,0,3278,3279,3,244,122,0,3279,3280,5,123, + 0,0,3280,3283,3,244,122,0,3281,3282,5,119,0,0,3282,3284,3,244,122, + 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,3311,1,0,0,0,3287,3288,7,55,0,0,3288,3289,5,2,0,0,3289, + 3290,3,244,122,0,3290,3291,5,3,0,0,3291,3292,5,347,0,0,3292,3293, + 5,130,0,0,3293,3294,5,2,0,0,3294,3295,5,209,0,0,3295,3296,5,31,0, + 0,3296,3297,3,100,50,0,3297,3304,5,3,0,0,3298,3299,5,114,0,0,3299, + 3300,5,2,0,0,3300,3301,5,344,0,0,3301,3302,3,240,120,0,3302,3303, + 5,3,0,0,3303,3305,1,0,0,0,3304,3298,1,0,0,0,3304,3305,1,0,0,0,3305, + 3308,1,0,0,0,3306,3307,5,213,0,0,3307,3309,3,314,157,0,3308,3306, + 1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310,3061,1,0,0,0,3310, + 3063,1,0,0,0,3310,3075,1,0,0,0,3310,3087,1,0,0,0,3310,3099,1,0,0, + 0,3310,3112,1,0,0,0,3310,3119,1,0,0,0,3310,3132,1,0,0,0,3310,3141, + 1,0,0,0,3310,3150,1,0,0,0,3310,3159,1,0,0,0,3310,3166,1,0,0,0,3310, + 3167,1,0,0,0,3310,3168,1,0,0,0,3310,3172,1,0,0,0,3310,3182,1,0,0, + 0,3310,3186,1,0,0,0,3310,3191,1,0,0,0,3310,3223,1,0,0,0,3310,3227, + 1,0,0,0,3310,3239,1,0,0,0,3310,3240,1,0,0,0,3310,3244,1,0,0,0,3310, + 3251,1,0,0,0,3310,3262,1,0,0,0,3310,3274,1,0,0,0,3310,3287,1,0,0, + 0,3311,3322,1,0,0,0,3312,3313,10,9,0,0,3313,3314,5,6,0,0,3314,3315, + 3,244,122,0,3315,3316,5,7,0,0,3316,3321,1,0,0,0,3317,3318,10,7,0, + 0,3318,3319,5,5,0,0,3319,3321,3,332,166,0,3320,3312,1,0,0,0,3320, + 3317,1,0,0,0,3321,3324,1,0,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0, + 0,3323,249,1,0,0,0,3324,3322,1,0,0,0,3325,3333,5,71,0,0,3326,3333, + 5,303,0,0,3327,3333,5,304,0,0,3328,3333,5,305,0,0,3329,3333,5,149, + 0,0,3330,3333,5,133,0,0,3331,3333,3,332,166,0,3332,3325,1,0,0,0, + 3332,3326,1,0,0,0,3332,3327,1,0,0,0,3332,3328,1,0,0,0,3332,3329, + 1,0,0,0,3332,3330,1,0,0,0,3332,3331,1,0,0,0,3333,251,1,0,0,0,3334, + 3350,5,198,0,0,3335,3350,5,376,0,0,3336,3337,5,371,0,0,3337,3350, + 3,332,166,0,3338,3350,3,262,131,0,3339,3340,3,250,125,0,3340,3341, + 3,342,171,0,3341,3350,1,0,0,0,3342,3350,3,338,169,0,3343,3350,3, + 260,130,0,3344,3346,3,342,171,0,3345,3344,1,0,0,0,3346,3347,1,0, + 0,0,3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3350,1,0,0,0,3349,3334, + 1,0,0,0,3349,3335,1,0,0,0,3349,3336,1,0,0,0,3349,3338,1,0,0,0,3349, + 3339,1,0,0,0,3349,3342,1,0,0,0,3349,3343,1,0,0,0,3349,3345,1,0,0, + 0,3350,253,1,0,0,0,3351,3352,7,56,0,0,3352,255,1,0,0,0,3353,3354, + 7,57,0,0,3354,257,1,0,0,0,3355,3356,7,58,0,0,3356,259,1,0,0,0,3357, + 3358,7,59,0,0,3358,261,1,0,0,0,3359,3362,5,149,0,0,3360,3363,3,264, + 132,0,3361,3363,3,268,134,0,3362,3360,1,0,0,0,3362,3361,1,0,0,0, + 3363,263,1,0,0,0,3364,3366,3,266,133,0,3365,3367,3,270,135,0,3366, + 3365,1,0,0,0,3366,3367,1,0,0,0,3367,265,1,0,0,0,3368,3369,3,272, + 136,0,3369,3370,3,274,137,0,3370,3372,1,0,0,0,3371,3368,1,0,0,0, + 3372,3373,1,0,0,0,3373,3371,1,0,0,0,3373,3374,1,0,0,0,3374,267,1, + 0,0,0,3375,3378,3,270,135,0,3376,3379,3,266,133,0,3377,3379,3,270, + 135,0,3378,3376,1,0,0,0,3378,3377,1,0,0,0,3378,3379,1,0,0,0,3379, + 269,1,0,0,0,3380,3381,3,272,136,0,3381,3382,3,276,138,0,3382,3383, + 5,309,0,0,3383,3384,3,276,138,0,3384,271,1,0,0,0,3385,3387,7,60, + 0,0,3386,3385,1,0,0,0,3386,3387,1,0,0,0,3387,3391,1,0,0,0,3388,3392, + 5,382,0,0,3389,3392,5,384,0,0,3390,3392,3,342,171,0,3391,3388,1, + 0,0,0,3391,3389,1,0,0,0,3391,3390,1,0,0,0,3392,273,1,0,0,0,3393, + 3394,7,61,0,0,3394,275,1,0,0,0,3395,3396,7,62,0,0,3396,277,1,0,0, + 0,3397,3401,5,116,0,0,3398,3399,5,9,0,0,3399,3401,3,328,164,0,3400, + 3397,1,0,0,0,3400,3398,1,0,0,0,3401,279,1,0,0,0,3402,3433,5,27,0, + 0,3403,3433,5,308,0,0,3404,3433,5,32,0,0,3405,3433,5,276,0,0,3406, + 3433,5,272,0,0,3407,3433,5,150,0,0,3408,3433,5,151,0,0,3409,3433, + 5,25,0,0,3410,3433,5,174,0,0,3411,3433,5,117,0,0,3412,3433,5,234, + 0,0,3413,3433,5,95,0,0,3414,3433,5,71,0,0,3415,3433,5,303,0,0,3416, + 3433,5,305,0,0,3417,3433,5,304,0,0,3418,3433,5,285,0,0,3419,3433, + 5,41,0,0,3420,3433,5,40,0,0,3421,3433,5,334,0,0,3422,3433,5,26,0, + 0,3423,3433,5,80,0,0,3424,3433,5,79,0,0,3425,3433,5,200,0,0,3426, + 3433,5,340,0,0,3427,3433,5,149,0,0,3428,3433,5,19,0,0,3429,3433, + 5,286,0,0,3430,3433,5,177,0,0,3431,3433,3,332,166,0,3432,3402,1, + 0,0,0,3432,3403,1,0,0,0,3432,3404,1,0,0,0,3432,3405,1,0,0,0,3432, + 3406,1,0,0,0,3432,3407,1,0,0,0,3432,3408,1,0,0,0,3432,3409,1,0,0, + 0,3432,3410,1,0,0,0,3432,3411,1,0,0,0,3432,3412,1,0,0,0,3432,3413, + 1,0,0,0,3432,3414,1,0,0,0,3432,3415,1,0,0,0,3432,3416,1,0,0,0,3432, + 3417,1,0,0,0,3432,3418,1,0,0,0,3432,3419,1,0,0,0,3432,3420,1,0,0, + 0,3432,3421,1,0,0,0,3432,3422,1,0,0,0,3432,3423,1,0,0,0,3432,3424, + 1,0,0,0,3432,3425,1,0,0,0,3432,3426,1,0,0,0,3432,3427,1,0,0,0,3432, + 3428,1,0,0,0,3432,3429,1,0,0,0,3432,3430,1,0,0,0,3432,3431,1,0,0, + 0,3433,281,1,0,0,0,3434,3435,5,19,0,0,3435,3436,5,356,0,0,3436,3437, + 3,282,141,0,3437,3438,5,358,0,0,3438,3488,1,0,0,0,3439,3440,5,177, + 0,0,3440,3441,5,356,0,0,3441,3442,3,282,141,0,3442,3443,5,4,0,0, + 3443,3444,3,282,141,0,3444,3445,5,358,0,0,3445,3488,1,0,0,0,3446, + 3460,5,286,0,0,3447,3456,5,356,0,0,3448,3453,3,306,153,0,3449,3450, + 5,4,0,0,3450,3452,3,306,153,0,3451,3449,1,0,0,0,3452,3455,1,0,0, + 0,3453,3451,1,0,0,0,3453,3454,1,0,0,0,3454,3457,1,0,0,0,3455,3453, + 1,0,0,0,3456,3448,1,0,0,0,3456,3457,1,0,0,0,3457,3458,1,0,0,0,3458, + 3461,5,358,0,0,3459,3461,5,354,0,0,3460,3447,1,0,0,0,3460,3459,1, + 0,0,0,3461,3488,1,0,0,0,3462,3463,5,149,0,0,3463,3466,7,63,0,0,3464, + 3465,5,309,0,0,3465,3467,5,186,0,0,3466,3464,1,0,0,0,3466,3467,1, + 0,0,0,3467,3488,1,0,0,0,3468,3469,5,149,0,0,3469,3472,7,64,0,0,3470, + 3471,5,309,0,0,3471,3473,7,65,0,0,3472,3470,1,0,0,0,3472,3473,1, + 0,0,0,3473,3488,1,0,0,0,3474,3485,3,280,140,0,3475,3476,5,2,0,0, + 3476,3481,5,382,0,0,3477,3478,5,4,0,0,3478,3480,5,382,0,0,3479,3477, + 1,0,0,0,3480,3483,1,0,0,0,3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482, + 3484,1,0,0,0,3483,3481,1,0,0,0,3484,3486,5,3,0,0,3485,3475,1,0,0, + 0,3485,3486,1,0,0,0,3486,3488,1,0,0,0,3487,3434,1,0,0,0,3487,3439, + 1,0,0,0,3487,3446,1,0,0,0,3487,3462,1,0,0,0,3487,3468,1,0,0,0,3487, + 3474,1,0,0,0,3488,283,1,0,0,0,3489,3494,3,286,143,0,3490,3491,5, + 4,0,0,3491,3493,3,286,143,0,3492,3490,1,0,0,0,3493,3496,1,0,0,0, + 3494,3492,1,0,0,0,3494,3495,1,0,0,0,3495,285,1,0,0,0,3496,3494,1, + 0,0,0,3497,3498,3,84,42,0,3498,3502,3,282,141,0,3499,3501,3,292, + 146,0,3500,3499,1,0,0,0,3501,3504,1,0,0,0,3502,3500,1,0,0,0,3502, + 3503,1,0,0,0,3503,287,1,0,0,0,3504,3502,1,0,0,0,3505,3510,3,290, + 145,0,3506,3507,5,4,0,0,3507,3509,3,290,145,0,3508,3506,1,0,0,0, + 3509,3512,1,0,0,0,3510,3508,1,0,0,0,3510,3511,1,0,0,0,3511,289,1, + 0,0,0,3512,3510,1,0,0,0,3513,3514,3,78,39,0,3514,3518,3,282,141, + 0,3515,3517,3,292,146,0,3516,3515,1,0,0,0,3517,3520,1,0,0,0,3518, + 3516,1,0,0,0,3518,3519,1,0,0,0,3519,291,1,0,0,0,3520,3518,1,0,0, + 0,3521,3522,5,197,0,0,3522,3529,5,198,0,0,3523,3524,5,82,0,0,3524, + 3529,3,232,116,0,3525,3526,5,51,0,0,3526,3529,3,342,171,0,3527,3529, + 3,278,139,0,3528,3521,1,0,0,0,3528,3523,1,0,0,0,3528,3525,1,0,0, + 0,3528,3527,1,0,0,0,3529,293,1,0,0,0,3530,3531,7,66,0,0,3531,3532, + 3,232,116,0,3532,295,1,0,0,0,3533,3538,3,298,149,0,3534,3535,5,4, + 0,0,3535,3537,3,298,149,0,3536,3534,1,0,0,0,3537,3540,1,0,0,0,3538, + 3536,1,0,0,0,3538,3539,1,0,0,0,3539,297,1,0,0,0,3540,3538,1,0,0, + 0,3541,3542,3,328,164,0,3542,3545,3,282,141,0,3543,3544,5,197,0, + 0,3544,3546,5,198,0,0,3545,3543,1,0,0,0,3545,3546,1,0,0,0,3546,3549, + 1,0,0,0,3547,3548,5,51,0,0,3548,3550,3,342,171,0,3549,3547,1,0,0, + 0,3549,3550,1,0,0,0,3550,299,1,0,0,0,3551,3556,3,302,151,0,3552, + 3553,5,4,0,0,3553,3555,3,302,151,0,3554,3552,1,0,0,0,3555,3558,1, + 0,0,0,3556,3554,1,0,0,0,3556,3557,1,0,0,0,3557,301,1,0,0,0,3558, + 3556,1,0,0,0,3559,3560,3,84,42,0,3560,3564,3,282,141,0,3561,3563, + 3,304,152,0,3562,3561,1,0,0,0,3563,3566,1,0,0,0,3564,3562,1,0,0, + 0,3564,3565,1,0,0,0,3565,303,1,0,0,0,3566,3564,1,0,0,0,3567,3568, + 5,197,0,0,3568,3581,5,198,0,0,3569,3570,5,82,0,0,3570,3581,3,232, + 116,0,3571,3572,5,127,0,0,3572,3573,5,12,0,0,3573,3574,5,20,0,0, + 3574,3575,5,2,0,0,3575,3576,3,232,116,0,3576,3577,5,3,0,0,3577,3581, + 1,0,0,0,3578,3579,5,51,0,0,3579,3581,3,342,171,0,3580,3567,1,0,0, + 0,3580,3569,1,0,0,0,3580,3571,1,0,0,0,3580,3578,1,0,0,0,3581,305, + 1,0,0,0,3582,3584,3,332,166,0,3583,3585,5,371,0,0,3584,3583,1,0, + 0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0,3586,3589,3,282,141,0,3587, + 3588,5,197,0,0,3588,3590,5,198,0,0,3589,3587,1,0,0,0,3589,3590,1, + 0,0,0,3590,3593,1,0,0,0,3591,3592,5,51,0,0,3592,3594,3,342,171,0, + 3593,3591,1,0,0,0,3593,3594,1,0,0,0,3594,307,1,0,0,0,3595,3596,5, + 343,0,0,3596,3597,3,232,116,0,3597,3598,5,300,0,0,3598,3599,3,232, + 116,0,3599,309,1,0,0,0,3600,3601,5,345,0,0,3601,3602,3,328,164,0, + 3602,3603,5,20,0,0,3603,3611,3,314,157,0,3604,3605,5,4,0,0,3605, + 3606,3,328,164,0,3606,3607,5,20,0,0,3607,3608,3,314,157,0,3608,3610, + 1,0,0,0,3609,3604,1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3611, + 3612,1,0,0,0,3612,311,1,0,0,0,3613,3611,1,0,0,0,3614,3615,5,351, + 0,0,3615,3616,5,31,0,0,3616,3617,3,82,41,0,3617,313,1,0,0,0,3618, + 3658,3,328,164,0,3619,3620,5,2,0,0,3620,3621,3,328,164,0,3621,3622, + 5,3,0,0,3622,3658,1,0,0,0,3623,3651,5,2,0,0,3624,3625,5,44,0,0,3625, + 3626,5,31,0,0,3626,3631,3,232,116,0,3627,3628,5,4,0,0,3628,3630, + 3,232,116,0,3629,3627,1,0,0,0,3630,3633,1,0,0,0,3631,3629,1,0,0, + 0,3631,3632,1,0,0,0,3632,3652,1,0,0,0,3633,3631,1,0,0,0,3634,3635, + 7,35,0,0,3635,3636,5,31,0,0,3636,3641,3,232,116,0,3637,3638,5,4, + 0,0,3638,3640,3,232,116,0,3639,3637,1,0,0,0,3640,3643,1,0,0,0,3641, + 3639,1,0,0,0,3641,3642,1,0,0,0,3642,3645,1,0,0,0,3643,3641,1,0,0, + 0,3644,3634,1,0,0,0,3644,3645,1,0,0,0,3645,3649,1,0,0,0,3646,3647, + 7,36,0,0,3647,3648,5,31,0,0,3648,3650,3,92,46,0,3649,3646,1,0,0, + 0,3649,3650,1,0,0,0,3650,3652,1,0,0,0,3651,3624,1,0,0,0,3651,3644, + 1,0,0,0,3652,3654,1,0,0,0,3653,3655,3,316,158,0,3654,3653,1,0,0, + 0,3654,3655,1,0,0,0,3655,3656,1,0,0,0,3656,3658,5,3,0,0,3657,3618, + 1,0,0,0,3657,3619,1,0,0,0,3657,3623,1,0,0,0,3658,315,1,0,0,0,3659, + 3660,7,67,0,0,3660,3668,3,318,159,0,3661,3662,7,67,0,0,3662,3663, + 5,24,0,0,3663,3664,3,318,159,0,3664,3665,5,14,0,0,3665,3666,3,318, + 159,0,3666,3668,1,0,0,0,3667,3659,1,0,0,0,3667,3661,1,0,0,0,3668, + 317,1,0,0,0,3669,3670,5,321,0,0,3670,3677,7,68,0,0,3671,3672,5,62, + 0,0,3672,3677,5,257,0,0,3673,3674,3,232,116,0,3674,3675,7,68,0,0, + 3675,3677,1,0,0,0,3676,3669,1,0,0,0,3676,3671,1,0,0,0,3676,3673, + 1,0,0,0,3677,319,1,0,0,0,3678,3683,3,326,163,0,3679,3680,5,4,0,0, + 3680,3682,3,326,163,0,3681,3679,1,0,0,0,3682,3685,1,0,0,0,3683,3681, + 1,0,0,0,3683,3684,1,0,0,0,3684,321,1,0,0,0,3685,3683,1,0,0,0,3686, + 3687,5,136,0,0,3687,3688,5,2,0,0,3688,3689,3,232,116,0,3689,3690, + 5,3,0,0,3690,3696,1,0,0,0,3691,3696,3,326,163,0,3692,3696,5,114, + 0,0,3693,3696,5,161,0,0,3694,3696,5,250,0,0,3695,3686,1,0,0,0,3695, + 3691,1,0,0,0,3695,3692,1,0,0,0,3695,3693,1,0,0,0,3695,3694,1,0,0, + 0,3696,323,1,0,0,0,3697,3698,3,326,163,0,3698,325,1,0,0,0,3699,3704, + 3,332,166,0,3700,3701,5,5,0,0,3701,3703,3,332,166,0,3702,3700,1, + 0,0,0,3703,3706,1,0,0,0,3704,3702,1,0,0,0,3704,3705,1,0,0,0,3705, + 327,1,0,0,0,3706,3704,1,0,0,0,3707,3708,3,332,166,0,3708,3709,3, + 330,165,0,3709,329,1,0,0,0,3710,3711,5,362,0,0,3711,3713,3,332,166, + 0,3712,3710,1,0,0,0,3713,3714,1,0,0,0,3714,3712,1,0,0,0,3714,3715, + 1,0,0,0,3715,3718,1,0,0,0,3716,3718,1,0,0,0,3717,3712,1,0,0,0,3717, + 3716,1,0,0,0,3718,331,1,0,0,0,3719,3722,3,334,167,0,3720,3722,3, + 346,173,0,3721,3719,1,0,0,0,3721,3720,1,0,0,0,3722,333,1,0,0,0,3723, + 3728,5,388,0,0,3724,3728,3,336,168,0,3725,3728,3,344,172,0,3726, + 3728,3,348,174,0,3727,3723,1,0,0,0,3727,3724,1,0,0,0,3727,3725,1, + 0,0,0,3727,3726,1,0,0,0,3728,335,1,0,0,0,3729,3730,7,69,0,0,3730, + 337,1,0,0,0,3731,3733,5,362,0,0,3732,3731,1,0,0,0,3732,3733,1,0, + 0,0,3733,3734,1,0,0,0,3734,3735,7,70,0,0,3735,339,1,0,0,0,3736,3737, + 5,319,0,0,3737,3750,3,282,141,0,3738,3739,5,51,0,0,3739,3750,3,342, + 171,0,3740,3750,3,278,139,0,3741,3742,7,71,0,0,3742,3743,5,197,0, + 0,3743,3750,5,198,0,0,3744,3745,5,269,0,0,3745,3746,5,82,0,0,3746, + 3750,3,232,116,0,3747,3748,5,96,0,0,3748,3750,5,82,0,0,3749,3736, + 1,0,0,0,3749,3738,1,0,0,0,3749,3740,1,0,0,0,3749,3741,1,0,0,0,3749, + 3744,1,0,0,0,3749,3747,1,0,0,0,3750,341,1,0,0,0,3751,3752,7,72,0, + 0,3752,343,1,0,0,0,3753,3754,7,73,0,0,3754,345,1,0,0,0,3755,3756, + 7,74,0,0,3756,347,1,0,0,0,3757,3758,7,75,0,0,3758,349,1,0,0,0,504, + 353,360,364,369,376,381,391,393,413,417,423,426,429,433,436,440, + 447,450,454,457,462,475,477,482,491,494,498,501,507,518,524,529, + 562,572,583,594,605,610,619,623,629,633,638,644,656,664,670,681, + 685,690,705,709,716,720,726,756,760,765,772,778,781,784,788,792, + 801,803,812,815,824,829,835,842,845,849,864,867,873,877,894,896, + 904,908,914,917,921,924,930,935,939,946,949,952,959,964,973,981, + 987,990,993,999,1003,1008,1011,1015,1017,1025,1033,1036,1043,1046, + 1049,1058,1063,1069,1074,1077,1081,1084,1088,1098,1103,1116,1119, + 1127,1133,1136,1139,1144,1152,1157,1163,1169,1172,1179,1186,1194, + 1206,1214,1241,1244,1250,1259,1268,1274,1279,1284,1291,1296,1301, + 1308,1316,1319,1325,1332,1336,1399,1407,1414,1422,1434,1439,1448, + 1456,1461,1463,1471,1476,1480,1483,1491,1496,1505,1510,1513,1518, + 1522,1527,1529,1534,1543,1551,1557,1566,1573,1582,1587,1590,1615, + 1617,1629,1636,1639,1646,1650,1656,1664,1671,1674,1682,1693,1704, + 1712,1718,1729,1736,1743,1755,1763,1769,1775,1778,1794,1803,1814, + 1819,1824,1829,1834,1837,1840,1844,1849,1856,1864,1873,1879,1885, + 1888,1890,1898,1908,1917,1921,1924,1928,1932,1940,1944,1947,1950, + 1953,1957,1961,1966,1970,1973,1976,1979,1983,1988,1992,1995,1998, + 2001,2003,2009,2016,2021,2024,2027,2031,2041,2045,2047,2050,2054, + 2060,2064,2075,2083,2085,2092,2096,2108,2115,2130,2135,2142,2158, + 2163,2176,2181,2189,2195,2199,2202,2205,2212,2215,2221,2230,2240, + 2255,2260,2262,2267,2276,2286,2291,2295,2300,2307,2312,2316,2319, + 2322,2336,2349,2354,2358,2361,2366,2371,2375,2378,2390,2401,2414, + 2425,2430,2433,2437,2440,2452,2461,2464,2469,2476,2479,2485,2491, + 2493,2496,2501,2505,2511,2515,2518,2523,2526,2531,2533,2539,2544, + 2551,2554,2572,2574,2577,2588,2597,2604,2612,2620,2625,2628,2631, + 2639,2647,2657,2669,2672,2677,2682,2689,2696,2698,2711,2717,2719, + 2728,2730,2738,2742,2745,2749,2751,2760,2772,2774,2781,2788,2794, + 2800,2802,2809,2817,2825,2831,2836,2843,2849,2852,2856,2858,2865, + 2874,2881,2891,2896,2900,2910,2917,2930,2932,2940,2942,2946,2954, + 2963,2969,2977,2982,2994,2999,3002,3008,3012,3017,3022,3027,3033, + 3054,3056,3067,3079,3091,3095,3104,3108,3126,3129,3137,3146,3155, + 3178,3194,3201,3204,3213,3217,3221,3233,3258,3265,3268,3283,3304, + 3308,3310,3320,3322,3332,3347,3349,3362,3366,3373,3378,3386,3391, + 3400,3432,3453,3456,3460,3466,3472,3481,3485,3487,3494,3502,3510, + 3518,3528,3538,3545,3549,3556,3564,3580,3584,3589,3593,3611,3631, + 3641,3644,3649,3651,3654,3657,3667,3676,3683,3695,3704,3714,3717, + 3721,3727,3732,3749 ]; private static __ATN: antlr.ATN; @@ -21516,8 +20837,14 @@ export class ShowNamespacesContext extends StatementContext { public KW_SHOW(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SHOW, 0)!; } - public namespaces(): NamespacesContext { - return this.getRuleContext(0, NamespacesContext)!; + public KW_NAMESPACES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NAMESPACES, 0); + } + public KW_DATABASES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DATABASES, 0); + } + public KW_SCHEMAS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SCHEMAS, 0); } public multipartIdentifier(): MultipartIdentifierContext | null { return this.getRuleContext(0, MultipartIdentifierContext); @@ -21611,12 +20938,24 @@ export class ReplaceTableContext extends StatementContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public replaceTableHeader(): ReplaceTableHeaderContext { - return this.getRuleContext(0, ReplaceTableHeaderContext)!; + public KW_REPLACE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REPLACE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableNameCreate(): TableNameCreateContext { + return this.getRuleContext(0, TableNameCreateContext)!; } public createTableClauses(): CreateTableClausesContext { return this.getRuleContext(0, CreateTableClausesContext)!; } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CREATE, 0); + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); } @@ -21770,8 +21109,11 @@ export class SetNamespaceLocationContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public locationSpec(): LocationSpecContext { - return this.getRuleContext(0, LocationSpecContext)!; + public KW_LOCATION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LOCATION, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetNamespaceLocation) { @@ -21857,8 +21199,8 @@ export class ResetConfigContext extends StatementContext { public KW_RESET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_RESET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterResetConfig) { @@ -21889,8 +21231,8 @@ export class SetConfigAnyKeyContext extends StatementContext { public EQ(): antlr.TerminalNode { return this.getToken(SparkSqlParser.EQ, 0)!; } - public configValue(): ConfigValueContext { - return this.getRuleContext(0, ConfigValueContext)!; + public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetConfigAnyKey) { @@ -22105,8 +21447,14 @@ export class CreateFunctionContext extends StatementContext { public KW_AS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_AS, 0)!; } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); } public KW_OR(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_OR, 0); @@ -22123,14 +21471,14 @@ export class CreateFunctionContext extends StatementContext { 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 { + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(ResourceContext); + return this.getRuleContexts(IdentifierContext); } - return this.getRuleContext(i, ResourceContext); + return this.getRuleContext(i, IdentifierContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -22333,57 +21681,31 @@ export class AlterTableAddColumnContext extends StatementContext { } } } -export class CommentNamespaceContext extends StatementContext { +export class CreateTableContext 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 commentStr(): CommentStrContext { - return this.getRuleContext(0, CommentStrContext)!; + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCommentNamespace) { - listener.enterCommentNamespace(this); - } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCommentNamespace) { - listener.exitCommentNamespace(this); - } + public tableNameCreate(): TableNameCreateContext { + return this.getRuleContext(0, TableNameCreateContext)!; } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCommentNamespace) { - return visitor.visitCommentNamespace(this); - } else { - return visitor.visitChildren(this); - } + public createTableClauses(): CreateTableClausesContext { + return this.getRuleContext(0, CreateTableClausesContext)!; } -} -export class CreateTableContext extends StatementContext { - public constructor(ctx: StatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public KW_TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); } - public createTableHeader(): CreateTableHeaderContext { - return this.getRuleContext(0, CreateTableHeaderContext)!; + public KW_EXTERNAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTERNAL, 0); } - public createTableClauses(): CreateTableClausesContext { - return this.getRuleContext(0, CreateTableClausesContext)!; + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -22547,15 +21869,6 @@ export class CreateTableLikeContext extends StatementContext { 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 tableLifecycle(): TableLifecycleContext[]; public tableLifecycle(i: number): TableLifecycleContext | null; public tableLifecycle(i?: number): TableLifecycleContext[] | TableLifecycleContext | null { @@ -22565,6 +21878,24 @@ export class CreateTableLikeContext extends StatementContext { return this.getRuleContext(i, TableLifecycleContext); } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } + } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } public KW_TBLPROPERTIES(): antlr.TerminalNode[]; public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -22929,14 +22260,14 @@ export class SetConfigContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public EQ(): antlr.TerminalNode { return this.getToken(SparkSqlParser.EQ, 0)!; } - public configValue(): ConfigValueContext { - return this.getRuleContext(0, ConfigValueContext)!; + public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetConfig) { @@ -23109,8 +22440,11 @@ export class SetTimeZoneContext extends StatementContext { public KW_ZONE(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_ZONE, 0)!; } - public timezone(): TimezoneContext { - return this.getRuleContext(0, TimezoneContext)!; + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LOCAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOCAL, 0); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetTimeZone) { @@ -23208,8 +22542,8 @@ export class SetConfigAndValueContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public EQ(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.EQ, 0); @@ -23235,6 +22569,7 @@ export class SetConfigAndValueContext extends StatementContext { export class CreateMaterializedViewContext extends StatementContext { public _options?: PropertyListContext; public _partitioning?: PartitionFieldListContext; + public _comment?: StringLitContext; public _tableProps?: PropertyListContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); @@ -23300,24 +22635,6 @@ export class CreateMaterializedViewContext extends StatementContext { 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[] { @@ -23345,6 +22662,33 @@ export class CreateMaterializedViewContext extends StatementContext { return this.getToken(SparkSqlParser.KW_BY, i); } } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } + } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } + } public KW_TBLPROPERTIES(): antlr.TerminalNode[]; public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -23444,6 +22788,7 @@ export class SetTableSerDeContext extends StatementContext { } } export class CreateViewContext extends StatementContext { + public _comment?: StringLitContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -23478,14 +22823,14 @@ export class CreateViewContext extends StatementContext { 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_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } } public KW_PARTITIONED(): antlr.TerminalNode[]; public KW_PARTITIONED(i: number): antlr.TerminalNode | null; @@ -23535,6 +22880,15 @@ export class CreateViewContext extends StatementContext { public KW_GLOBAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_GLOBAL, 0); } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCreateView) { listener.enterCreateView(this); @@ -23873,17 +23227,26 @@ export class CommentTableContext extends StatementContext { 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 commentStr(): CommentStrContext { - return this.getRuleContext(0, CommentStrContext)!; + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_NULL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NULL, 0); + } + public namespace(): NamespaceContext | null { + return this.getRuleContext(0, NamespaceContext); + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCommentTable) { @@ -24099,6 +23462,7 @@ export class DropVariableContext extends StatementContext { } } export class CreateNamespaceContext extends StatementContext { + public _comment?: StringLitContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -24115,23 +23479,32 @@ export class CreateNamespaceContext extends StatementContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - 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_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } + } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } } - public locationSpec(): LocationSpecContext[]; - public locationSpec(i: number): LocationSpecContext | null; - public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { if (i === undefined) { - return this.getRuleContexts(LocationSpecContext); + return this.getRuleContexts(StringLitContext); } - return this.getRuleContext(i, LocationSpecContext); + return this.getRuleContext(i, StringLitContext); } public KW_WITH(): antlr.TerminalNode[]; public KW_WITH(i: number): antlr.TerminalNode | null; @@ -24420,8 +23793,11 @@ export class SetTableLocationContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public locationSpec(): LocationSpecContext { - return this.getRuleContext(0, LocationSpecContext)!; + public KW_LOCATION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LOCATION, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; } public partitionSpec(): PartitionSpecContext | null { return this.getRuleContext(0, PartitionSpecContext); @@ -24553,8 +23929,14 @@ export class ShowFunctionsContext extends StatementContext { public KW_FUNCTIONS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FUNCTIONS, 0)!; } - public functionKind(): FunctionKindContext | null { - return this.getRuleContext(0, FunctionKindContext); + public KW_USER(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_USER, 0); + } + public KW_SYSTEM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SYSTEM, 0); + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALL, 0); } public KW_FROM(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FROM, 0); @@ -24689,99 +24071,6 @@ export class SetTablePropertiesContext extends StatementContext { } -export class TimezoneContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public KW_LOCAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LOCAL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_timezone; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterTimezone) { - listener.enterTimezone(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitTimezone) { - listener.exitTimezone(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitTimezone) { - return visitor.visitTimezone(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConfigKeyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public quotedIdentifier(): QuotedIdentifierContext { - return this.getRuleContext(0, QuotedIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_configKey; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterConfigKey) { - listener.enterConfigKey(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitConfigKey) { - listener.exitConfigKey(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitConfigKey) { - return visitor.visitConfigKey(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConfigValueContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public backQuotedIdentifier(): BackQuotedIdentifierContext { - return this.getRuleContext(0, BackQuotedIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_configValue; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterConfigValue) { - listener.enterConfigValue(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitConfigValue) { - listener.exitConfigValue(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitConfigValue) { - return visitor.visitConfigValue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContext { public _kw1?: Token | null; public _kw2?: Token | null; @@ -24792,12 +24081,12 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_CREATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CREATE, 0); - } public KW_ROLE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ROLE, 0); } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CREATE, 0); + } public KW_DROP(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DROP, 0); } @@ -24813,21 +24102,6 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_PRINCIPALS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PRINCIPALS, 0); } - public KW_ROLES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ROLES, 0); - } - public KW_CURRENT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CURRENT, 0); - } - public KW_EXPORT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXPORT, 0); - } - public KW_TABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TABLE, 0); - } - public KW_IMPORT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_IMPORT, 0); - } public KW_COMPACTIONS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_COMPACTIONS, 0); } @@ -24840,21 +24114,36 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_LOCKS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCKS, 0); } + public KW_ROLES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ROLES, 0); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CURRENT, 0); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } public KW_INDEX(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_INDEX, 0); } public KW_ALTER(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ALTER, 0); } + public KW_EXPORT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXPORT, 0); + } + public KW_IMPORT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IMPORT, 0); + } public KW_LOCK(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCK, 0); } - public KW_DATABASE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASE, 0); - } public KW_UNLOCK(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_UNLOCK, 0); } + public KW_DATABASE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DATABASE, 0); + } public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); } @@ -24870,15 +24159,15 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_CLUSTERED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_CLUSTERED, 0); } - public KW_BY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_BY, 0); - } public KW_SORTED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SORTED, 0); } public KW_SKEWED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SKEWED, 0); } + public KW_BY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_BY, 0); + } public KW_STORED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_STORED, 0); } @@ -24894,12 +24183,12 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_LOCATION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCATION, 0); } - public KW_EXCHANGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXCHANGE, 0); - } public KW_PARTITION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PARTITION, 0); } + public KW_EXCHANGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXCHANGE, 0); + } public KW_ARCHIVE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ARCHIVE, 0); } @@ -24912,139 +24201,52 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_COMPACT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_COMPACT, 0); } - public partitionSpec(): PartitionSpecContext | null { - return this.getRuleContext(0, PartitionSpecContext); - } public KW_CONCATENATE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_CONCATENATE, 0); } - public KW_FILEFORMAT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FILEFORMAT, 0); - } - public KW_REPLACE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_REPLACE, 0); - } - public KW_COLUMNS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COLUMNS, 0); - } - public KW_START(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_START, 0); - } - public KW_TRANSACTION(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TRANSACTION, 0); - } - public KW_COMMIT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COMMIT, 0); - } - public KW_ROLLBACK(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ROLLBACK, 0); - } - public KW_DFS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DFS, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unsupportedHiveNativeCommands; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnsupportedHiveNativeCommands) { - listener.enterUnsupportedHiveNativeCommands(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnsupportedHiveNativeCommands) { - listener.exitUnsupportedHiveNativeCommands(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnsupportedHiveNativeCommands) { - return visitor.visitUnsupportedHiveNativeCommands(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CreateTableHeaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - 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 tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; - } - public KW_TEMPORARY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); - } - public KW_EXTERNAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXTERNAL, 0); - } - public ifNotExists(): IfNotExistsContext | null { - return this.getRuleContext(0, IfNotExistsContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_createTableHeader; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCreateTableHeader) { - listener.enterCreateTableHeader(this); - } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCreateTableHeader) { - listener.exitCreateTableHeader(this); - } + public KW_FILEFORMAT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FILEFORMAT, 0); } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCreateTableHeader) { - return visitor.visitCreateTableHeader(this); - } else { - return visitor.visitChildren(this); - } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_REPLACE, 0); } -} - - -export class ReplaceTableHeaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public KW_COLUMNS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0); } - public KW_REPLACE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_REPLACE, 0)!; + public KW_START(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_START, 0); } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + public KW_TRANSACTION(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TRANSACTION, 0); } - public tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; + public KW_COMMIT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMIT, 0); } - public KW_CREATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CREATE, 0); + public KW_ROLLBACK(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ROLLBACK, 0); } - public KW_OR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OR, 0); + public KW_DFS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DFS, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_replaceTableHeader; + return SparkSqlParser.RULE_unsupportedHiveNativeCommands; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterReplaceTableHeader) { - listener.enterReplaceTableHeader(this); + if(listener.enterUnsupportedHiveNativeCommands) { + listener.enterUnsupportedHiveNativeCommands(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitReplaceTableHeader) { - listener.exitReplaceTableHeader(this); + if(listener.exitUnsupportedHiveNativeCommands) { + listener.exitUnsupportedHiveNativeCommands(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitReplaceTableHeader) { - return visitor.visitReplaceTableHeader(this); + if (visitor.visitUnsupportedHiveNativeCommands) { + return visitor.visitUnsupportedHiveNativeCommands(this); } else { return visitor.visitChildren(this); } @@ -25377,8 +24579,11 @@ export class PartitionSpecLocationContext extends antlr.ParserRuleContext { public partitionSpec(): PartitionSpecContext { return this.getRuleContext(0, PartitionSpecContext)!; } - public locationSpec(): LocationSpecContext | null { - return this.getRuleContext(0, LocationSpecContext); + public KW_LOCATION(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOCATION, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_partitionSpecLocation; @@ -25532,42 +24737,6 @@ export class NamespaceContext extends antlr.ParserRuleContext { } -export class NamespacesContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NAMESPACES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NAMESPACES, 0); - } - public KW_DATABASES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASES, 0); - } - public KW_SCHEMAS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SCHEMAS, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_namespaces; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNamespaces) { - listener.enterNamespaces(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNamespaces) { - listener.exitNamespaces(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNamespaces) { - return visitor.visitNamespaces(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class DescribeFuncNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25788,6 +24957,7 @@ export class TableProviderContext extends antlr.ParserRuleContext { export class CreateTableClausesContext extends antlr.ParserRuleContext { public _options?: ExpressionPropertyListContext; public _partitioning?: PartitionFieldListContext; + public _comment?: StringLitContext; public _tableProps?: PropertyListContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25828,23 +24998,32 @@ export class CreateTableClausesContext extends antlr.ParserRuleContext { 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_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } } - public commentSpec(): CommentSpecContext[]; - public commentSpec(i: number): CommentSpecContext | null; - public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { if (i === undefined) { - return this.getRuleContexts(CommentSpecContext); + return this.getRuleContexts(StringLitContext); } - return this.getRuleContext(i, CommentSpecContext); + return this.getRuleContext(i, StringLitContext); + } + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } } public tableLifecycle(): TableLifecycleContext[]; public tableLifecycle(i: number): TableLifecycleContext | null; @@ -26469,39 +25648,6 @@ export class StorageHandlerContext extends antlr.ParserRuleContext { } -export class ResourceContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_resource; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterResource) { - listener.enterResource(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitResource) { - listener.exitResource(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitResource) { - return visitor.visitResource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class DmlStatementNoWithContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -26559,14 +25705,23 @@ export class MultipleInsertContext extends DmlStatementNoWithContext { public fromClause(): FromClauseContext { return this.getRuleContext(0, FromClauseContext)!; } - public multiInsertQueryBody(): MultiInsertQueryBodyContext[]; - public multiInsertQueryBody(i: number): MultiInsertQueryBodyContext | null; - public multiInsertQueryBody(i?: number): MultiInsertQueryBodyContext[] | MultiInsertQueryBodyContext | null { + public insertInto(): InsertIntoContext[]; + public insertInto(i: number): InsertIntoContext | null; + public insertInto(i?: number): InsertIntoContext[] | InsertIntoContext | null { + if (i === undefined) { + return this.getRuleContexts(InsertIntoContext); + } + + return this.getRuleContext(i, InsertIntoContext); + } + public fromStatementBody(): FromStatementBodyContext[]; + public fromStatementBody(i: number): FromStatementBodyContext | null; + public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { if (i === undefined) { - return this.getRuleContexts(MultiInsertQueryBodyContext); + return this.getRuleContexts(FromStatementBodyContext); } - return this.getRuleContext(i, MultiInsertQueryBodyContext); + return this.getRuleContext(i, FromStatementBodyContext); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterMultipleInsert) { @@ -26960,6 +26115,36 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_columnNamePath; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameSeqContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27026,8 +26211,129 @@ export class ColumnNameCreateContext extends antlr.ParserRuleContext { } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitColumnNameCreate) { - return visitor.visitColumnNameCreate(this); + if (visitor.visitColumnNameCreate) { + return visitor.visitColumnNameCreate(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IdentifierReferenceContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_IDENTIFIER(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IDENTIFIER, 0); + } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + } + public multipartIdentifier(): MultipartIdentifierContext | null { + return this.getRuleContext(0, MultipartIdentifierContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_identifierReference; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterIdentifierReference) { + listener.enterIdentifierReference(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitIdentifierReference) { + listener.exitIdentifierReference(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitIdentifierReference) { + return visitor.visitIdentifierReference(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class QueryOrganizationContext extends antlr.ParserRuleContext { + public _offset?: ExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_ORDER(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ORDER, 0); + } + 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 orderOrSortByClause(): OrderOrSortByClauseContext[]; + public orderOrSortByClause(i: number): OrderOrSortByClauseContext | null; + public orderOrSortByClause(i?: number): OrderOrSortByClauseContext[] | OrderOrSortByClauseContext | null { + if (i === undefined) { + return this.getRuleContexts(OrderOrSortByClauseContext); + } + + return this.getRuleContext(i, OrderOrSortByClauseContext); + } + public KW_CLUSTER(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CLUSTER, 0); + } + public clusterOrDistributeBy(): ClusterOrDistributeByContext[]; + public clusterOrDistributeBy(i: number): ClusterOrDistributeByContext | null; + public clusterOrDistributeBy(i?: number): ClusterOrDistributeByContext[] | ClusterOrDistributeByContext | null { + if (i === undefined) { + return this.getRuleContexts(ClusterOrDistributeByContext); + } + + return this.getRuleContext(i, ClusterOrDistributeByContext); + } + public KW_DISTRIBUTE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DISTRIBUTE, 0); + } + public KW_SORT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SORT, 0); + } + public windowClause(): WindowClauseContext | null { + return this.getRuleContext(0, WindowClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } + public KW_OFFSET(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OFFSET, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_queryOrganization; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterQueryOrganization) { + listener.enterQueryOrganization(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitQueryOrganization) { + listener.exitQueryOrganization(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitQueryOrganization) { + return visitor.visitQueryOrganization(this); } else { return visitor.visitChildren(this); } @@ -27035,41 +26341,36 @@ export class ColumnNameCreateContext extends antlr.ParserRuleContext { } -export class IdentifierReferenceContext extends antlr.ParserRuleContext { +export class LimitClauseContext extends antlr.ParserRuleContext { + public _limit?: ExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_IDENTIFIER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_IDENTIFIER, 0); + public KW_LIMIT(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LIMIT, 0)!; } - public LEFT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALL, 0); } public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } - public RIGHT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); - } - public multipartIdentifier(): MultipartIdentifierContext | null { - return this.getRuleContext(0, MultipartIdentifierContext); - } public override get ruleIndex(): number { - return SparkSqlParser.RULE_identifierReference; + return SparkSqlParser.RULE_limitClause; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterIdentifierReference) { - listener.enterIdentifierReference(this); + if(listener.enterLimitClause) { + listener.enterLimitClause(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitIdentifierReference) { - listener.exitIdentifierReference(this); + if(listener.exitLimitClause) { + listener.exitLimitClause(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitIdentifierReference) { - return visitor.visitIdentifierReference(this); + if (visitor.visitLimitClause) { + return visitor.visitLimitClause(this); } else { return visitor.visitChildren(this); } @@ -27077,48 +26378,10 @@ export class IdentifierReferenceContext extends antlr.ParserRuleContext { } -export class QueryOrganizationContext extends antlr.ParserRuleContext { - public _sortItem?: SortItemContext; - public _order: SortItemContext[] = []; - public _expression?: ExpressionContext; - public _clusterBy: ExpressionContext[] = []; - public _distributeBy: ExpressionContext[] = []; - public _sort: SortItemContext[] = []; - public _limit?: ExpressionContext; - public _offset?: ExpressionContext; +export class OrderOrSortByClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_ORDER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ORDER, 0); - } - 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_CLUSTER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CLUSTER, 0); - } - public KW_DISTRIBUTE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DISTRIBUTE, 0); - } - public KW_SORT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SORT, 0); - } - public windowClause(): WindowClauseContext | null { - return this.getRuleContext(0, WindowClauseContext); - } - public KW_LIMIT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LIMIT, 0); - } - public KW_OFFSET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OFFSET, 0); - } public sortItem(): SortItemContext[]; public sortItem(i: number): SortItemContext | null; public sortItem(i?: number): SortItemContext[] | SortItemContext | null { @@ -27128,18 +26391,6 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SortItemContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ALL, 0); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -27150,21 +26401,21 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return SparkSqlParser.RULE_queryOrganization; + return SparkSqlParser.RULE_orderOrSortByClause; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterQueryOrganization) { - listener.enterQueryOrganization(this); + if(listener.enterOrderOrSortByClause) { + listener.enterOrderOrSortByClause(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitQueryOrganization) { - listener.exitQueryOrganization(this); + if(listener.exitOrderOrSortByClause) { + listener.exitOrderOrSortByClause(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitQueryOrganization) { - return visitor.visitQueryOrganization(this); + if (visitor.visitOrderOrSortByClause) { + return visitor.visitOrderOrSortByClause(this); } else { return visitor.visitChildren(this); } @@ -27172,32 +26423,44 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { } -export class MultiInsertQueryBodyContext extends antlr.ParserRuleContext { +export class ClusterOrDistributeByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public insertInto(): InsertIntoContext { - return this.getRuleContext(0, InsertIntoContext)!; + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); } - public fromStatementBody(): FromStatementBodyContext { - return this.getRuleContext(0, FromStatementBodyContext)!; + 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 get ruleIndex(): number { - return SparkSqlParser.RULE_multiInsertQueryBody; + return SparkSqlParser.RULE_clusterOrDistributeBy; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterMultiInsertQueryBody) { - listener.enterMultiInsertQueryBody(this); + if(listener.enterClusterOrDistributeBy) { + listener.enterClusterOrDistributeBy(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitMultiInsertQueryBody) { - listener.exitMultiInsertQueryBody(this); + if(listener.exitClusterOrDistributeBy) { + listener.exitClusterOrDistributeBy(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitMultiInsertQueryBody) { - return visitor.visitMultiInsertQueryBody(this); + if (visitor.visitClusterOrDistributeBy) { + return visitor.visitClusterOrDistributeBy(this); } else { return visitor.visitChildren(this); } @@ -27269,8 +26532,17 @@ export class QueryPrimaryContext extends antlr.ParserRuleContext { public querySpecification(): QuerySpecificationContext | null { return this.getRuleContext(0, QuerySpecificationContext); } - public fromStatement(): FromStatementContext | null { - return this.getRuleContext(0, FromStatementContext); + public fromClause(): FromClauseContext | null { + return this.getRuleContext(0, FromClauseContext); + } + public fromStatementBody(): FromStatementBodyContext[]; + public fromStatementBody(i: number): FromStatementBodyContext | null; + public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { + if (i === undefined) { + return this.getRuleContexts(FromStatementBodyContext); + } + + return this.getRuleContext(i, FromStatementBodyContext); } public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TABLE, 0); @@ -27278,8 +26550,29 @@ export class QueryPrimaryContext extends antlr.ParserRuleContext { public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); + public KW_VALUES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VALUES, 0); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public tableAlias(): TableAliasContext | null { + return this.getRuleContext(0, TableAliasContext); + } + 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 LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -27363,45 +26656,6 @@ export class SortItemContext extends antlr.ParserRuleContext { } -export class FromStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public fromStatementBody(): FromStatementBodyContext[]; - public fromStatementBody(i: number): FromStatementBodyContext | null; - public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { - if (i === undefined) { - return this.getRuleContexts(FromStatementBodyContext); - } - - return this.getRuleContext(i, FromStatementBodyContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_fromStatement; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFromStatement) { - listener.enterFromStatement(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFromStatement) { - listener.exitFromStatement(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFromStatement) { - return visitor.visitFromStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FromStatementBodyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27715,8 +26969,14 @@ export class MatchedClauseContext extends antlr.ParserRuleContext { public KW_THEN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_THEN, 0)!; } - public matchedAction(): MatchedActionContext { - return this.getRuleContext(0, MatchedActionContext)!; + public KW_DELETE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DELETE, 0); + } + public KW_UPDATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_UPDATE, 0); + } + public KW_SET(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SET, 0); } public KW_AND(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AND, 0); @@ -27724,6 +26984,12 @@ export class MatchedClauseContext extends antlr.ParserRuleContext { public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } + public ASTERISK(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.ASTERISK, 0); + } + public assignmentList(): AssignmentListContext | null { + return this.getRuleContext(0, AssignmentListContext); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_matchedClause; } @@ -27825,8 +27091,17 @@ export class NotMatchedBySourceClauseContext extends antlr.ParserRuleContext { public KW_THEN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_THEN, 0)!; } - public notMatchedBySourceAction(): NotMatchedBySourceActionContext { - return this.getRuleContext(0, NotMatchedBySourceActionContext)!; + public KW_DELETE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DELETE, 0); + } + public KW_UPDATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_UPDATE, 0); + } + public KW_SET(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SET, 0); + } + public assignmentList(): AssignmentListContext | null { + return this.getRuleContext(0, AssignmentListContext); } public KW_AND(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AND, 0); @@ -27857,48 +27132,6 @@ export class NotMatchedBySourceClauseContext extends antlr.ParserRuleContext { } -export class MatchedActionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DELETE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DELETE, 0); - } - public KW_UPDATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UPDATE, 0); - } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SET, 0); - } - public ASTERISK(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.ASTERISK, 0); - } - public assignmentList(): AssignmentListContext | null { - return this.getRuleContext(0, AssignmentListContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_matchedAction; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterMatchedAction) { - listener.enterMatchedAction(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitMatchedAction) { - listener.exitMatchedAction(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitMatchedAction) { - return visitor.visitMatchedAction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class NotMatchedActionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27960,52 +27193,13 @@ export class NotMatchedActionContext extends antlr.ParserRuleContext { } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNotMatchedAction) { - listener.exitNotMatchedAction(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNotMatchedAction) { - return visitor.visitNotMatchedAction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class NotMatchedBySourceActionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DELETE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DELETE, 0); - } - public KW_UPDATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UPDATE, 0); - } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SET, 0); - } - public assignmentList(): AssignmentListContext | null { - return this.getRuleContext(0, AssignmentListContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_notMatchedBySourceAction; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNotMatchedBySourceAction) { - listener.enterNotMatchedBySourceAction(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNotMatchedBySourceAction) { - listener.exitNotMatchedBySourceAction(this); + if(listener.exitNotMatchedAction) { + listener.exitNotMatchedAction(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNotMatchedBySourceAction) { - return visitor.visitNotMatchedBySourceAction(this); + if (visitor.visitNotMatchedAction) { + return visitor.visitNotMatchedAction(this); } else { return visitor.visitChildren(this); } @@ -28335,42 +27529,6 @@ export class FromClauseContext extends antlr.ParserRuleContext { } -export class FunctionKindContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_USER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_USER, 0); - } - public KW_SYSTEM(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SYSTEM, 0); - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ALL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_functionKind; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFunctionKind) { - listener.enterFunctionKind(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFunctionKind) { - listener.exitFunctionKind(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFunctionKind) { - return visitor.visitFunctionKind(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TemporalClauseContext extends antlr.ParserRuleContext { public _timestamp?: ValueExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -28382,15 +27540,18 @@ export class TemporalClauseContext extends antlr.ParserRuleContext { public KW_OF(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_OF, 0)!; } - public version(): VersionContext | null { - return this.getRuleContext(0, VersionContext); - } public KW_SYSTEM_VERSION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SYSTEM_VERSION, 0); } public KW_VERSION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_VERSION, 0); } + public INTEGER_VALUE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.INTEGER_VALUE, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } public KW_FOR(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FOR, 0); } @@ -28597,14 +27758,14 @@ export class GroupingAnalyticsContext extends antlr.ParserRuleContext { public KW_SETS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SETS, 0); } - public groupingElement(): GroupingElementContext[]; - public groupingElement(i: number): GroupingElementContext | null; - public groupingElement(i?: number): GroupingElementContext[] | GroupingElementContext | null { + public groupingAnalytics(): GroupingAnalyticsContext[]; + public groupingAnalytics(i: number): GroupingAnalyticsContext | null; + public groupingAnalytics(i?: number): GroupingAnalyticsContext[] | GroupingAnalyticsContext | null { if (i === undefined) { - return this.getRuleContexts(GroupingElementContext); + return this.getRuleContexts(GroupingAnalyticsContext); } - return this.getRuleContext(i, GroupingElementContext); + return this.getRuleContext(i, GroupingAnalyticsContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_groupingAnalytics; @@ -28629,39 +27790,6 @@ export class GroupingAnalyticsContext extends antlr.ParserRuleContext { } -export class GroupingElementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public groupingAnalytics(): GroupingAnalyticsContext | null { - return this.getRuleContext(0, GroupingAnalyticsContext); - } - public groupingSet(): GroupingSetContext | null { - return this.getRuleContext(0, GroupingSetContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_groupingElement; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterGroupingElement) { - listener.enterGroupingElement(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitGroupingElement) { - listener.exitGroupingElement(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitGroupingElement) { - return visitor.visitGroupingElement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class GroupingSetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -28893,8 +28021,6 @@ export class PivotValueContext extends antlr.ParserRuleContext { export class UnPivotClauseContext extends antlr.ParserRuleContext { - public _nullOperator?: UnPivotNullClauseContext; - public _operator?: UnPivotOperatorContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -28907,14 +28033,23 @@ export class UnPivotClauseContext extends antlr.ParserRuleContext { public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public unPivotOperator(): UnPivotOperatorContext { - return this.getRuleContext(0, UnPivotOperatorContext)!; + public unPivotSingleValueColumnClause(): UnPivotSingleValueColumnClauseContext | null { + return this.getRuleContext(0, UnPivotSingleValueColumnClauseContext); + } + public unPivotMultiValueColumnClause(): UnPivotMultiValueColumnClauseContext | null { + return this.getRuleContext(0, UnPivotMultiValueColumnClauseContext); + } + public KW_NULLS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NULLS, 0); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unPivotNullClause(): UnPivotNullClauseContext | null { - return this.getRuleContext(0, UnPivotNullClauseContext); + public KW_INCLUDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_INCLUDE, 0); + } + public KW_EXCLUDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXCLUDE, 0); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AS, 0); @@ -28942,90 +28077,24 @@ export class UnPivotClauseContext extends antlr.ParserRuleContext { } -export class UnPivotNullClauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NULLS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_NULLS, 0)!; - } - public KW_INCLUDE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INCLUDE, 0); - } - public KW_EXCLUDE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXCLUDE, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotNullClause; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotNullClause) { - listener.enterUnPivotNullClause(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotNullClause) { - listener.exitUnPivotNullClause(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotNullClause) { - return visitor.visitUnPivotNullClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnPivotOperatorContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public unPivotSingleValueColumnClause(): UnPivotSingleValueColumnClauseContext | null { - return this.getRuleContext(0, UnPivotSingleValueColumnClauseContext); - } - public unPivotMultiValueColumnClause(): UnPivotMultiValueColumnClauseContext | null { - return this.getRuleContext(0, UnPivotMultiValueColumnClauseContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotOperator; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotOperator) { - listener.enterUnPivotOperator(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotOperator) { - listener.exitUnPivotOperator(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotOperator) { - return visitor.visitUnPivotOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class UnPivotSingleValueColumnClauseContext extends antlr.ParserRuleContext { public _unPivotColumnAndAlias?: UnPivotColumnAndAliasContext; public _unPivotColumns: UnPivotColumnAndAliasContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public unPivotValueColumn(): UnPivotValueColumnContext { - return this.getRuleContext(0, UnPivotValueColumnContext)!; + 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 KW_FOR(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FOR, 0)!; } - public unPivotNameColumn(): UnPivotNameColumnContext { - return this.getRuleContext(0, UnPivotNameColumnContext)!; - } public KW_IN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_IN, 0)!; } @@ -29077,8 +28146,8 @@ export class UnPivotSingleValueColumnClauseContext extends antlr.ParserRuleConte export class UnPivotMultiValueColumnClauseContext extends antlr.ParserRuleContext { - public _unPivotValueColumn?: UnPivotValueColumnContext; - public _unPivotValueColumns: UnPivotValueColumnContext[] = []; + public _identifier?: IdentifierContext; + public _unPivotValueColumns: IdentifierContext[] = []; public _unPivotColumnSet?: UnPivotColumnSetContext; public _unPivotColumnSets: UnPivotColumnSetContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -29105,20 +28174,17 @@ export class UnPivotMultiValueColumnClauseContext extends antlr.ParserRuleContex public KW_FOR(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FOR, 0)!; } - public unPivotNameColumn(): UnPivotNameColumnContext { - return this.getRuleContext(0, UnPivotNameColumnContext)!; - } - public KW_IN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_IN, 0)!; - } - public unPivotValueColumn(): UnPivotValueColumnContext[]; - public unPivotValueColumn(i: number): UnPivotValueColumnContext | null; - public unPivotValueColumn(i?: number): UnPivotValueColumnContext[] | UnPivotValueColumnContext | null { + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(UnPivotValueColumnContext); + return this.getRuleContexts(IdentifierContext); } - return this.getRuleContext(i, UnPivotValueColumnContext); + return this.getRuleContext(i, IdentifierContext); + } + public KW_IN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_IN, 0)!; } public unPivotColumnSet(): UnPivotColumnSetContext[]; public unPivotColumnSet(i: number): UnPivotColumnSetContext | null; @@ -29162,8 +28228,8 @@ export class UnPivotMultiValueColumnClauseContext extends antlr.ParserRuleContex export class UnPivotColumnSetContext extends antlr.ParserRuleContext { - public _unPivotColumn?: UnPivotColumnContext; - public _unPivotColumns: UnPivotColumnContext[] = []; + public _multipartIdentifier?: MultipartIdentifierContext; + public _unPivotColumns: MultipartIdentifierContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -29173,166 +28239,46 @@ export class UnPivotColumnSetContext extends antlr.ParserRuleContext { public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public unPivotColumn(): UnPivotColumnContext[]; - public unPivotColumn(i: number): UnPivotColumnContext | null; - public unPivotColumn(i?: number): UnPivotColumnContext[] | UnPivotColumnContext | null { - if (i === undefined) { - return this.getRuleContexts(UnPivotColumnContext); - } - - return this.getRuleContext(i, UnPivotColumnContext); - } - 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 unPivotAlias(): UnPivotAliasContext | null { - return this.getRuleContext(0, UnPivotAliasContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotColumnSet; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotColumnSet) { - listener.enterUnPivotColumnSet(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotColumnSet) { - listener.exitUnPivotColumnSet(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotColumnSet) { - return visitor.visitUnPivotColumnSet(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnPivotValueColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotValueColumn; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotValueColumn) { - listener.enterUnPivotValueColumn(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotValueColumn) { - listener.exitUnPivotValueColumn(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotValueColumn) { - return visitor.visitUnPivotValueColumn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnPivotNameColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotNameColumn; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotNameColumn) { - listener.enterUnPivotNameColumn(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotNameColumn) { - listener.exitUnPivotNameColumn(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotNameColumn) { - return visitor.visitUnPivotNameColumn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnPivotColumnAndAliasContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public unPivotColumn(): UnPivotColumnContext { - return this.getRuleContext(0, UnPivotColumnContext)!; - } - public unPivotAlias(): UnPivotAliasContext | null { - return this.getRuleContext(0, UnPivotAliasContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotColumnAndAlias; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotColumnAndAlias) { - listener.enterUnPivotColumnAndAlias(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotColumnAndAlias) { - listener.exitUnPivotColumnAndAlias(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotColumnAndAlias) { - return visitor.visitUnPivotColumnAndAlias(this); - } else { - return visitor.visitChildren(this); + public multipartIdentifier(): MultipartIdentifierContext[]; + public multipartIdentifier(i: number): MultipartIdentifierContext | null; + public multipartIdentifier(i?: number): MultipartIdentifierContext[] | MultipartIdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(MultipartIdentifierContext); } - } -} - -export class UnPivotColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + return this.getRuleContext(i, MultipartIdentifierContext); } - public multipartIdentifier(): MultipartIdentifierContext { - return this.getRuleContext(0, MultipartIdentifierContext)!; + 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 identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotColumn; + return SparkSqlParser.RULE_unPivotColumnSet; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotColumn) { - listener.enterUnPivotColumn(this); + if(listener.enterUnPivotColumnSet) { + listener.enterUnPivotColumnSet(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotColumn) { - listener.exitUnPivotColumn(this); + if(listener.exitUnPivotColumnSet) { + listener.exitUnPivotColumnSet(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotColumn) { - return visitor.visitUnPivotColumn(this); + if (visitor.visitUnPivotColumnSet) { + return visitor.visitUnPivotColumnSet(this); } else { return visitor.visitChildren(this); } @@ -29340,32 +28286,35 @@ export class UnPivotColumnContext extends antlr.ParserRuleContext { } -export class UnPivotAliasContext extends antlr.ParserRuleContext { +export class UnPivotColumnAndAliasContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_unPivotAlias; + return SparkSqlParser.RULE_unPivotColumnAndAlias; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnPivotAlias) { - listener.enterUnPivotAlias(this); + if(listener.enterUnPivotColumnAndAlias) { + listener.enterUnPivotColumnAndAlias(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnPivotAlias) { - listener.exitUnPivotAlias(this); + if(listener.exitUnPivotColumnAndAlias) { + listener.exitUnPivotColumnAndAlias(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnPivotAlias) { - return visitor.visitUnPivotAlias(this); + if (visitor.visitUnPivotColumnAndAlias) { + return visitor.visitUnPivotColumnAndAlias(this); } else { return visitor.visitChildren(this); } @@ -29568,14 +28517,32 @@ export class RelationContext extends antlr.ParserRuleContext { public KW_LATERAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LATERAL, 0); } - public relationExtension(): RelationExtensionContext[]; - public relationExtension(i: number): RelationExtensionContext | null; - public relationExtension(i?: number): RelationExtensionContext[] | RelationExtensionContext | null { + public joinRelation(): JoinRelationContext[]; + public joinRelation(i: number): JoinRelationContext | null; + public joinRelation(i?: number): JoinRelationContext[] | JoinRelationContext | null { + if (i === undefined) { + return this.getRuleContexts(JoinRelationContext); + } + + return this.getRuleContext(i, JoinRelationContext); + } + public pivotClause(): PivotClauseContext[]; + public pivotClause(i: number): PivotClauseContext | null; + public pivotClause(i?: number): PivotClauseContext[] | PivotClauseContext | null { + if (i === undefined) { + return this.getRuleContexts(PivotClauseContext); + } + + return this.getRuleContext(i, PivotClauseContext); + } + public unPivotClause(): UnPivotClauseContext[]; + public unPivotClause(i: number): UnPivotClauseContext | null; + public unPivotClause(i?: number): UnPivotClauseContext[] | UnPivotClauseContext | null { if (i === undefined) { - return this.getRuleContexts(RelationExtensionContext); + return this.getRuleContexts(UnPivotClauseContext); } - return this.getRuleContext(i, RelationExtensionContext); + return this.getRuleContext(i, UnPivotClauseContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_relation; @@ -29600,42 +28567,6 @@ export class RelationContext extends antlr.ParserRuleContext { } -export class RelationExtensionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public joinRelation(): JoinRelationContext | null { - return this.getRuleContext(0, JoinRelationContext); - } - public pivotClause(): PivotClauseContext | null { - return this.getRuleContext(0, PivotClauseContext); - } - public unPivotClause(): UnPivotClauseContext | null { - return this.getRuleContext(0, UnPivotClauseContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationExtension; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationExtension) { - listener.enterRelationExtension(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationExtension) { - listener.exitRelationExtension(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationExtension) { - return visitor.visitRelationExtension(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class JoinRelationContext extends antlr.ParserRuleContext { public _right?: RelationPrimaryContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -29701,15 +28632,15 @@ export class JoinTypeContext extends antlr.ParserRuleContext { public KW_SEMI(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SEMI, 0); } + public KW_ANTI(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ANTI, 0); + } public KW_RIGHT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_RIGHT, 0); } public KW_FULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FULL, 0); } - public KW_ANTI(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ANTI, 0); - } public override get ruleIndex(): number { return SparkSqlParser.RULE_joinType; } @@ -30135,14 +29066,18 @@ export class IdentifierCommentListContext extends antlr.ParserRuleContext { export class IdentifierCommentContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_identifierComment; @@ -30171,8 +29106,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAlias(): TableAliasContext | null { - return this.getRuleContext(0, TableAliasContext); + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; } public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); @@ -30201,41 +29136,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public relation(): RelationContext | null { return this.getRuleContext(0, RelationContext); } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); - } - public functionTable(): FunctionTableContext | null { - return this.getRuleContext(0, FunctionTableContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationPrimary; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationPrimary) { - listener.enterRelationPrimary(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationPrimary) { - listener.exitRelationPrimary(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationPrimary) { - return visitor.visitRelationPrimary(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class InlineTableContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_VALUES(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_VALUES, 0)!; + public KW_VALUES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VALUES, 0); } public expression(): ExpressionContext[]; public expression(i: number): ExpressionContext | null; @@ -30246,9 +29148,6 @@ export class InlineTableContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -30258,22 +29157,34 @@ export class InlineTableContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); + } + public functionTableArgument(): FunctionTableArgumentContext[]; + public functionTableArgument(i: number): FunctionTableArgumentContext | null; + public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { + if (i === undefined) { + return this.getRuleContexts(FunctionTableArgumentContext); + } + + return this.getRuleContext(i, FunctionTableArgumentContext); + } public override get ruleIndex(): number { - return SparkSqlParser.RULE_inlineTable; + return SparkSqlParser.RULE_relationPrimary; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterInlineTable) { - listener.enterInlineTable(this); + if(listener.enterRelationPrimary) { + listener.enterRelationPrimary(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitInlineTable) { - listener.exitInlineTable(this); + if(listener.exitRelationPrimary) { + listener.exitRelationPrimary(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitInlineTable) { - return visitor.visitInlineTable(this); + if (visitor.visitRelationPrimary) { + return visitor.visitRelationPrimary(this); } else { return visitor.visitChildren(this); } @@ -30368,14 +29279,8 @@ export class TableArgumentPartitioningContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public sortItem(): SortItemContext[]; - public sortItem(i: number): SortItemContext | null; - public sortItem(i?: number): SortItemContext[] | SortItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SortItemContext); - } - - return this.getRuleContext(i, SortItemContext); + public sortItem(): SortItemContext | null { + return this.getRuleContext(0, SortItemContext); } public LEFT_PAREN(): antlr.TerminalNode[]; public LEFT_PAREN(i: number): antlr.TerminalNode | null; @@ -30386,6 +29291,9 @@ export class TableArgumentPartitioningContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.LEFT_PAREN, i); } } + public orderOrSortByClause(): OrderOrSortByClauseContext | null { + return this.getRuleContext(0, OrderOrSortByClauseContext); + } public RIGHT_PAREN(): antlr.TerminalNode[]; public RIGHT_PAREN(i: number): antlr.TerminalNode | null; public RIGHT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -30531,63 +29439,6 @@ export class FunctionTableArgumentContext extends antlr.ParserRuleContext { } -export class FunctionTableContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public functionName(): FunctionNameContext { - return this.getRuleContext(0, FunctionNameContext)!; - } - public LEFT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; - } - public RIGHT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; - } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } - public functionTableArgument(): FunctionTableArgumentContext[]; - public functionTableArgument(i: number): FunctionTableArgumentContext | null; - public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { - if (i === undefined) { - return this.getRuleContexts(FunctionTableArgumentContext); - } - - return this.getRuleContext(i, FunctionTableArgumentContext); - } - 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 get ruleIndex(): number { - return SparkSqlParser.RULE_functionTable; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFunctionTable) { - listener.enterFunctionTable(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFunctionTable) { - listener.exitFunctionTable(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFunctionTable) { - return visitor.visitFunctionTable(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TableAliasContext extends antlr.ParserRuleContext { public _alias?: StrictIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -31987,6 +30838,9 @@ export class PrimaryExpressionContext extends antlr.ParserRuleContext { public ARROW(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.ARROW, 0); } + public columnNamePath(): ColumnNamePathContext | null { + return this.getRuleContext(0, ColumnNamePathContext); + } public KW_EXTRACT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_EXTRACT, 0); } @@ -32938,8 +31792,14 @@ export class DataTypeContext extends antlr.ParserRuleContext { public NEQ(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.NEQ, 0); } - public complexColTypeList(): ComplexColTypeListContext | null { - return this.getRuleContext(0, ComplexColTypeListContext); + public complexColType(): ComplexColTypeContext[]; + public complexColType(i: number): ComplexColTypeContext | null; + public complexColType(i?: number): ComplexColTypeContext[] | ComplexColTypeContext | null { + if (i === undefined) { + return this.getRuleContexts(ComplexColTypeContext); + } + + return this.getRuleContext(i, ComplexColTypeContext); } public KW_INTERVAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_INTERVAL, 0); @@ -33207,6 +32067,7 @@ export class QualifiedColTypeWithPositionForReplaceContext extends antlr.ParserR export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33216,11 +32077,17 @@ export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRule public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); + public KW_DEFAULT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DEFAULT, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public colPosition(): ColPositionContext | null { return this.getRuleContext(0, ColPositionContext); @@ -33230,50 +32097,17 @@ export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRule } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterColDefinitionDescriptorWithPosition) { - listener.enterColDefinitionDescriptorWithPosition(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitColDefinitionDescriptorWithPosition) { - listener.exitColDefinitionDescriptorWithPosition(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitColDefinitionDescriptorWithPosition) { - return visitor.visitColDefinitionDescriptorWithPosition(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DefaultExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEFAULT(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_DEFAULT, 0)!; - } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_defaultExpression; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDefaultExpression) { - listener.enterDefaultExpression(this); + listener.enterColDefinitionDescriptorWithPosition(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDefaultExpression) { - listener.exitDefaultExpression(this); + if(listener.exitColDefinitionDescriptorWithPosition) { + listener.exitColDefinitionDescriptorWithPosition(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDefaultExpression) { - return visitor.visitDefaultExpression(this); + if (visitor.visitColDefinitionDescriptorWithPosition) { + return visitor.visitColDefinitionDescriptorWithPosition(this); } else { return visitor.visitChildren(this); } @@ -33364,6 +32198,7 @@ export class ColTypeListContext extends antlr.ParserRuleContext { export class ColumnTypeContext extends antlr.ParserRuleContext { public _colName?: ErrorCapturingIdentifierContext; + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33379,8 +32214,11 @@ export class ColumnTypeContext extends antlr.ParserRuleContext { public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_columnType; @@ -33495,6 +32333,7 @@ export class CreateOrReplaceTableColTypeContext extends antlr.ParserRuleContext export class ColDefinitionOptionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33504,14 +32343,32 @@ export class ColDefinitionOptionContext extends antlr.ParserRuleContext { public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); + public KW_DEFAULT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DEFAULT, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public KW_GENERATED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_GENERATED, 0); + } + public KW_ALWAYS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALWAYS, 0); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); + } + 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 generationExpression(): GenerationExpressionContext | null { - return this.getRuleContext(0, GenerationExpressionContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_colDefinitionOption; @@ -33536,97 +32393,8 @@ export class ColDefinitionOptionContext extends antlr.ParserRuleContext { } -export class GenerationExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_GENERATED(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_GENERATED, 0)!; - } - public KW_ALWAYS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_ALWAYS, 0)!; - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_AS, 0)!; - } - public LEFT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; - } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; - } - public RIGHT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_generationExpression; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterGenerationExpression) { - listener.enterGenerationExpression(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitGenerationExpression) { - listener.exitGenerationExpression(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitGenerationExpression) { - return visitor.visitGenerationExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ComplexColTypeListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public complexColType(): ComplexColTypeContext[]; - public complexColType(i: number): ComplexColTypeContext | null; - public complexColType(i?: number): ComplexColTypeContext[] | ComplexColTypeContext | null { - if (i === undefined) { - return this.getRuleContexts(ComplexColTypeContext); - } - - return this.getRuleContext(i, ComplexColTypeContext); - } - 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 get ruleIndex(): number { - return SparkSqlParser.RULE_complexColTypeList; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterComplexColTypeList) { - listener.enterComplexColTypeList(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitComplexColTypeList) { - listener.exitComplexColTypeList(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitComplexColTypeList) { - return visitor.visitComplexColTypeList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ComplexColTypeContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33645,8 +32413,11 @@ export class ComplexColTypeContext extends antlr.ParserRuleContext { public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_complexColType; @@ -33716,20 +32487,39 @@ export class WhenClauseContext extends antlr.ParserRuleContext { export class WindowClauseContext extends antlr.ParserRuleContext { + public _name?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_WINDOW(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_WINDOW, 0)!; } - public namedWindow(): NamedWindowContext[]; - public namedWindow(i: number): NamedWindowContext | null; - public namedWindow(i?: number): NamedWindowContext[] | NamedWindowContext | null { + public KW_AS(): antlr.TerminalNode[]; + public KW_AS(i: number): antlr.TerminalNode | null; + public KW_AS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_AS); + } else { + return this.getToken(SparkSqlParser.KW_AS, i); + } + } + public windowSpec(): WindowSpecContext[]; + public windowSpec(i: number): WindowSpecContext | null; + public windowSpec(i?: number): WindowSpecContext[] | WindowSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(WindowSpecContext); + } + + return this.getRuleContext(i, WindowSpecContext); + } + public errorCapturingIdentifier(): ErrorCapturingIdentifierContext[]; + public errorCapturingIdentifier(i: number): ErrorCapturingIdentifierContext | null; + public errorCapturingIdentifier(i?: number): ErrorCapturingIdentifierContext[] | ErrorCapturingIdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(NamedWindowContext); + return this.getRuleContexts(ErrorCapturingIdentifierContext); } - return this.getRuleContext(i, NamedWindowContext); + return this.getRuleContext(i, ErrorCapturingIdentifierContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -33799,43 +32589,6 @@ export class ZOrderClauseContext extends antlr.ParserRuleContext { } -export class NamedWindowContext extends antlr.ParserRuleContext { - public _name?: ErrorCapturingIdentifierContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_AS, 0)!; - } - public windowSpec(): WindowSpecContext { - return this.getRuleContext(0, WindowSpecContext)!; - } - public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { - return this.getRuleContext(0, ErrorCapturingIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_namedWindow; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNamedWindow) { - listener.enterNamedWindow(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNamedWindow) { - listener.exitNamedWindow(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNamedWindow) { - return visitor.visitNamedWindow(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class WindowSpecContext extends antlr.ParserRuleContext { public _name?: ErrorCapturingIdentifierContext; public _expression?: ExpressionContext; @@ -33885,14 +32638,8 @@ export class WindowSpecContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } - public sortItem(): SortItemContext[]; - public sortItem(i: number): SortItemContext | null; - public sortItem(i?: number): SortItemContext[] | SortItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SortItemContext); - } - - return this.getRuleContext(i, SortItemContext); + public orderOrSortByClause(): OrderOrSortByClauseContext | null { + return this.getRuleContext(0, OrderOrSortByClauseContext); } public KW_PARTITION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PARTITION, 0); @@ -33936,9 +32683,6 @@ export class WindowFrameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_RANGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RANGE, 0); - } public frameBound(): FrameBoundContext[]; public frameBound(i: number): FrameBoundContext | null; public frameBound(i?: number): FrameBoundContext[] | FrameBoundContext | null { @@ -33948,6 +32692,9 @@ export class WindowFrameContext extends antlr.ParserRuleContext { return this.getRuleContext(i, FrameBoundContext); } + public KW_RANGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_RANGE, 0); + } public KW_ROWS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ROWS, 0); } @@ -34380,36 +33127,6 @@ export class QuotedIdentifierContext extends antlr.ParserRuleContext { } -export class BackQuotedIdentifierContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_backQuotedIdentifier; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterBackQuotedIdentifier) { - listener.enterBackQuotedIdentifier(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitBackQuotedIdentifier) { - listener.exitBackQuotedIdentifier(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitBackQuotedIdentifier) { - return visitor.visitBackQuotedIdentifier(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class NumberContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34417,9 +33134,6 @@ export class NumberContext extends antlr.ParserRuleContext { public EXPONENT_VALUE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.EXPONENT_VALUE, 0); } - public MINUS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.MINUS, 0); - } public DECIMAL_VALUE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.DECIMAL_VALUE, 0); } @@ -34444,6 +33158,9 @@ export class NumberContext extends antlr.ParserRuleContext { public BIGDECIMAL_LITERAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.BIGDECIMAL_LITERAL, 0); } + public MINUS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.MINUS, 0); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_number; } @@ -34468,6 +33185,7 @@ export class NumberContext extends antlr.ParserRuleContext { export class AlterColumnActionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public _setOrDrop?: Token | null; public _dropDefault?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -34479,8 +33197,11 @@ export class AlterColumnActionContext extends antlr.ParserRuleContext { public dataType(): DataTypeContext | null { return this.getRuleContext(0, DataTypeContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public colPosition(): ColPositionContext | null { return this.getRuleContext(0, ColPositionContext); @@ -34497,12 +33218,12 @@ export class AlterColumnActionContext extends antlr.ParserRuleContext { public KW_DROP(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DROP, 0); } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); - } public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DEFAULT, 0); } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_alterColumnAction; } @@ -34559,72 +33280,6 @@ export class StringLitContext extends antlr.ParserRuleContext { } -export class CommentStrContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public KW_NULL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NULL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_commentStr; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCommentStr) { - listener.enterCommentStr(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCommentStr) { - listener.exitCommentStr(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCommentStr) { - return visitor.visitCommentStr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class VersionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public INTEGER_VALUE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.INTEGER_VALUE, 0); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_version; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterVersion) { - listener.enterVersion(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitVersion) { - listener.exitVersion(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitVersion) { - return visitor.visitVersion(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AnsiNonReservedContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index a6ee9a3bf..a5eb8976e 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -72,7 +72,6 @@ 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"; @@ -101,12 +100,7 @@ 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"; import { UnsupportedHiveNativeCommandsContext } from "./SparkSqlParser.js"; -import { CreateTableHeaderContext } from "./SparkSqlParser.js"; -import { ReplaceTableHeaderContext } from "./SparkSqlParser.js"; import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; import { LocationSpecContext } from "./SparkSqlParser.js"; @@ -117,7 +111,6 @@ import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } 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"; @@ -136,7 +129,6 @@ import { NestedConstantListContext } from "./SparkSqlParser.js"; import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; -import { ResourceContext } from "./SparkSqlParser.js"; import { InsertFromQueryContext } from "./SparkSqlParser.js"; import { MultipleInsertContext } from "./SparkSqlParser.js"; import { DeleteFromTableContext } from "./SparkSqlParser.js"; @@ -149,15 +141,17 @@ import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; +import { ColumnNamePathContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; -import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; +import { LimitClauseContext } from "./SparkSqlParser.js"; +import { OrderOrSortByClauseContext } from "./SparkSqlParser.js"; +import { ClusterOrDistributeByContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; import { SortItemContext } from "./SparkSqlParser.js"; -import { FromStatementContext } from "./SparkSqlParser.js"; import { FromStatementBodyContext } from "./SparkSqlParser.js"; import { QuerySpecificationContext } from "./SparkSqlParser.js"; import { TransformClauseContext } from "./SparkSqlParser.js"; @@ -166,9 +160,7 @@ import { SetClauseContext } from "./SparkSqlParser.js"; import { MatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedBySourceClauseContext } from "./SparkSqlParser.js"; -import { MatchedActionContext } from "./SparkSqlParser.js"; import { NotMatchedActionContext } from "./SparkSqlParser.js"; -import { NotMatchedBySourceActionContext } from "./SparkSqlParser.js"; import { AssignmentListContext } from "./SparkSqlParser.js"; import { AssignmentContext } from "./SparkSqlParser.js"; import { WhereClauseContext } from "./SparkSqlParser.js"; @@ -176,33 +168,24 @@ import { HavingClauseContext } from "./SparkSqlParser.js"; import { HintContext } from "./SparkSqlParser.js"; import { HintStatementContext } from "./SparkSqlParser.js"; import { FromClauseContext } from "./SparkSqlParser.js"; -import { FunctionKindContext } from "./SparkSqlParser.js"; import { TemporalClauseContext } from "./SparkSqlParser.js"; import { AggregationClauseContext } from "./SparkSqlParser.js"; import { GroupByClauseContext } from "./SparkSqlParser.js"; import { GroupingAnalyticsContext } from "./SparkSqlParser.js"; -import { GroupingElementContext } from "./SparkSqlParser.js"; import { GroupingSetContext } from "./SparkSqlParser.js"; import { PivotClauseContext } from "./SparkSqlParser.js"; import { PivotColumnContext } from "./SparkSqlParser.js"; import { PivotValueContext } from "./SparkSqlParser.js"; import { UnPivotClauseContext } from "./SparkSqlParser.js"; -import { UnPivotNullClauseContext } from "./SparkSqlParser.js"; -import { UnPivotOperatorContext } from "./SparkSqlParser.js"; import { UnPivotSingleValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnPivotMultiValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnPivotColumnSetContext } from "./SparkSqlParser.js"; -import { UnPivotValueColumnContext } from "./SparkSqlParser.js"; -import { UnPivotNameColumnContext } from "./SparkSqlParser.js"; import { UnPivotColumnAndAliasContext } from "./SparkSqlParser.js"; -import { UnPivotColumnContext } from "./SparkSqlParser.js"; -import { UnPivotAliasContext } from "./SparkSqlParser.js"; import { IfNotExistsContext } from "./SparkSqlParser.js"; import { IfExistsContext } from "./SparkSqlParser.js"; import { LateralViewContext } from "./SparkSqlParser.js"; import { SetQuantifierContext } from "./SparkSqlParser.js"; import { RelationContext } from "./SparkSqlParser.js"; -import { RelationExtensionContext } from "./SparkSqlParser.js"; import { JoinRelationContext } from "./SparkSqlParser.js"; import { JoinTypeContext } from "./SparkSqlParser.js"; import { JoinCriteriaContext } from "./SparkSqlParser.js"; @@ -215,13 +198,11 @@ import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; import { RelationPrimaryContext } from "./SparkSqlParser.js"; -import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; -import { FunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -267,20 +248,16 @@ import { QualifiedColTypeWithPositionForAddContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionSeqForReplaceContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionForReplaceContext } from "./SparkSqlParser.js"; import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js"; -import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; -import { GenerationExpressionContext } from "./SparkSqlParser.js"; -import { ComplexColTypeListContext } from "./SparkSqlParser.js"; import { ComplexColTypeContext } from "./SparkSqlParser.js"; import { WhenClauseContext } from "./SparkSqlParser.js"; import { WindowClauseContext } from "./SparkSqlParser.js"; import { ZOrderClauseContext } from "./SparkSqlParser.js"; -import { NamedWindowContext } from "./SparkSqlParser.js"; import { WindowSpecContext } from "./SparkSqlParser.js"; import { WindowFrameContext } from "./SparkSqlParser.js"; import { FrameBoundContext } from "./SparkSqlParser.js"; @@ -293,12 +270,9 @@ import { ErrorCapturingIdentifierExtraContext } from "./SparkSqlParser.js"; import { IdentifierContext } from "./SparkSqlParser.js"; import { StrictIdentifierContext } from "./SparkSqlParser.js"; import { QuotedIdentifierContext } from "./SparkSqlParser.js"; -import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentStrContext } from "./SparkSqlParser.js"; -import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; import { NonReservedContext } from "./SparkSqlParser.js"; @@ -1073,18 +1047,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @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`. @@ -1421,36 +1383,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnsupportHiveCommands?: (ctx: UnsupportHiveCommandsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - */ - enterTimezone?: (ctx: TimezoneContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - */ - exitTimezone?: (ctx: TimezoneContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - */ - enterConfigKey?: (ctx: ConfigKeyContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - */ - exitConfigKey?: (ctx: ConfigKeyContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - */ - enterConfigValue?: (ctx: ConfigValueContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - */ - exitConfigValue?: (ctx: ConfigValueContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unsupportedHiveNativeCommands`. * @param ctx the parse tree @@ -1461,26 +1393,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - */ - enterCreateTableHeader?: (ctx: CreateTableHeaderContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - */ - exitCreateTableHeader?: (ctx: CreateTableHeaderContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - */ - enterReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - */ - exitReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.bucketSpec`. * @param ctx the parse tree @@ -1583,16 +1495,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNamespace?: (ctx: NamespaceContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - */ - enterNamespaces?: (ctx: NamespacesContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - */ - exitNamespaces?: (ctx: NamespacesContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -1773,16 +1675,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitStorageHandler?: (ctx: StorageHandlerContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - */ - enterResource?: (ctx: ResourceContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - */ - exitResource?: (ctx: ResourceContext) => void; /** * Enter a parse tree produced by the `insertFromQuery` * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. @@ -1913,6 +1805,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -1954,15 +1856,35 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitQueryOrganization?: (ctx: QueryOrganizationContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. + * Enter a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + */ + enterLimitClause?: (ctx: LimitClauseContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + */ + exitLimitClause?: (ctx: LimitClauseContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.orderOrSortByClause`. + * @param ctx the parse tree + */ + enterOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.orderOrSortByClause`. + * @param ctx the parse tree + */ + exitOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. * @param ctx the parse tree */ - enterMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void; + enterClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. + * Exit a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. * @param ctx the parse tree */ - exitMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void; + exitClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.queryTerm`. * @param ctx the parse tree @@ -1993,16 +1915,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSortItem?: (ctx: SortItemContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - */ - enterFromStatement?: (ctx: FromStatementContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - */ - exitFromStatement?: (ctx: FromStatementContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.fromStatementBody`. * @param ctx the parse tree @@ -2083,16 +1995,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNotMatchedBySourceClause?: (ctx: NotMatchedBySourceClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - */ - enterMatchedAction?: (ctx: MatchedActionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - */ - exitMatchedAction?: (ctx: MatchedActionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.notMatchedAction`. * @param ctx the parse tree @@ -2103,16 +2005,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNotMatchedAction?: (ctx: NotMatchedActionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - */ - enterNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - */ - exitNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.assignmentList`. * @param ctx the parse tree @@ -2183,16 +2075,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFromClause?: (ctx: FromClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - */ - enterFunctionKind?: (ctx: FunctionKindContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - */ - exitFunctionKind?: (ctx: FunctionKindContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.temporalClause`. * @param ctx the parse tree @@ -2233,16 +2115,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupingAnalytics?: (ctx: GroupingAnalyticsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - */ - enterGroupingElement?: (ctx: GroupingElementContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - */ - exitGroupingElement?: (ctx: GroupingElementContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.groupingSet`. * @param ctx the parse tree @@ -2293,26 +2165,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnPivotClause?: (ctx: UnPivotClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotNullClause`. - * @param ctx the parse tree - */ - enterUnPivotNullClause?: (ctx: UnPivotNullClauseContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotNullClause`. - * @param ctx the parse tree - */ - exitUnPivotNullClause?: (ctx: UnPivotNullClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotOperator`. - * @param ctx the parse tree - */ - enterUnPivotOperator?: (ctx: UnPivotOperatorContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotOperator`. - * @param ctx the parse tree - */ - exitUnPivotOperator?: (ctx: UnPivotOperatorContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unPivotSingleValueColumnClause`. * @param ctx the parse tree @@ -2343,26 +2195,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnPivotColumnSet?: (ctx: UnPivotColumnSetContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotValueColumn`. - * @param ctx the parse tree - */ - enterUnPivotValueColumn?: (ctx: UnPivotValueColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotValueColumn`. - * @param ctx the parse tree - */ - exitUnPivotValueColumn?: (ctx: UnPivotValueColumnContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotNameColumn`. - * @param ctx the parse tree - */ - enterUnPivotNameColumn?: (ctx: UnPivotNameColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotNameColumn`. - * @param ctx the parse tree - */ - exitUnPivotNameColumn?: (ctx: UnPivotNameColumnContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unPivotColumnAndAlias`. * @param ctx the parse tree @@ -2373,26 +2205,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnPivotColumnAndAlias?: (ctx: UnPivotColumnAndAliasContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotColumn`. - * @param ctx the parse tree - */ - enterUnPivotColumn?: (ctx: UnPivotColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotColumn`. - * @param ctx the parse tree - */ - exitUnPivotColumn?: (ctx: UnPivotColumnContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unPivotAlias`. - * @param ctx the parse tree - */ - enterUnPivotAlias?: (ctx: UnPivotAliasContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unPivotAlias`. - * @param ctx the parse tree - */ - exitUnPivotAlias?: (ctx: UnPivotAliasContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.ifNotExists`. * @param ctx the parse tree @@ -2443,16 +2255,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelation?: (ctx: RelationContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - */ - enterRelationExtension?: (ctx: RelationExtensionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - */ - exitRelationExtension?: (ctx: RelationExtensionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.joinRelation`. * @param ctx the parse tree @@ -2573,16 +2375,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - */ - enterInlineTable?: (ctx: InlineTableContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - */ - exitInlineTable?: (ctx: InlineTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -2633,16 +2425,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionTableArgument?: (ctx: FunctionTableArgumentContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - */ - enterFunctionTable?: (ctx: FunctionTableContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - */ - exitFunctionTable?: (ctx: FunctionTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -3093,16 +2875,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColDefinitionDescriptorWithPosition?: (ctx: ColDefinitionDescriptorWithPositionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - */ - enterDefaultExpression?: (ctx: DefaultExpressionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - */ - exitDefaultExpression?: (ctx: DefaultExpressionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.variableDefaultExpression`. * @param ctx the parse tree @@ -3163,26 +2935,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColDefinitionOption?: (ctx: ColDefinitionOptionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - */ - enterGenerationExpression?: (ctx: GenerationExpressionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - */ - exitGenerationExpression?: (ctx: GenerationExpressionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - */ - enterComplexColTypeList?: (ctx: ComplexColTypeListContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - */ - exitComplexColTypeList?: (ctx: ComplexColTypeListContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.complexColType`. * @param ctx the parse tree @@ -3223,16 +2975,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitZOrderClause?: (ctx: ZOrderClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - */ - enterNamedWindow?: (ctx: NamedWindowContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - */ - exitNamedWindow?: (ctx: NamedWindowContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.windowSpec`. * @param ctx the parse tree @@ -3353,16 +3095,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuotedIdentifier?: (ctx: QuotedIdentifierContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - */ - enterBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - */ - exitBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.number`. * @param ctx the parse tree @@ -3393,26 +3125,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitStringLit?: (ctx: StringLitContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - */ - enterCommentStr?: (ctx: CommentStrContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - */ - exitCommentStr?: (ctx: CommentStrContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - */ - enterVersion?: (ctx: VersionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - */ - exitVersion?: (ctx: VersionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.ansiNonReserved`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index 545e5c146..9c8606382 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -72,7 +72,6 @@ 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"; @@ -101,12 +100,7 @@ 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"; import { UnsupportedHiveNativeCommandsContext } from "./SparkSqlParser.js"; -import { CreateTableHeaderContext } from "./SparkSqlParser.js"; -import { ReplaceTableHeaderContext } from "./SparkSqlParser.js"; import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; import { LocationSpecContext } from "./SparkSqlParser.js"; @@ -117,7 +111,6 @@ import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } 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"; @@ -136,7 +129,6 @@ import { NestedConstantListContext } from "./SparkSqlParser.js"; import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; -import { ResourceContext } from "./SparkSqlParser.js"; import { InsertFromQueryContext } from "./SparkSqlParser.js"; import { MultipleInsertContext } from "./SparkSqlParser.js"; import { DeleteFromTableContext } from "./SparkSqlParser.js"; @@ -149,15 +141,17 @@ import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; +import { ColumnNamePathContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; -import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; +import { LimitClauseContext } from "./SparkSqlParser.js"; +import { OrderOrSortByClauseContext } from "./SparkSqlParser.js"; +import { ClusterOrDistributeByContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; import { SortItemContext } from "./SparkSqlParser.js"; -import { FromStatementContext } from "./SparkSqlParser.js"; import { FromStatementBodyContext } from "./SparkSqlParser.js"; import { QuerySpecificationContext } from "./SparkSqlParser.js"; import { TransformClauseContext } from "./SparkSqlParser.js"; @@ -166,9 +160,7 @@ import { SetClauseContext } from "./SparkSqlParser.js"; import { MatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedBySourceClauseContext } from "./SparkSqlParser.js"; -import { MatchedActionContext } from "./SparkSqlParser.js"; import { NotMatchedActionContext } from "./SparkSqlParser.js"; -import { NotMatchedBySourceActionContext } from "./SparkSqlParser.js"; import { AssignmentListContext } from "./SparkSqlParser.js"; import { AssignmentContext } from "./SparkSqlParser.js"; import { WhereClauseContext } from "./SparkSqlParser.js"; @@ -176,33 +168,24 @@ import { HavingClauseContext } from "./SparkSqlParser.js"; import { HintContext } from "./SparkSqlParser.js"; import { HintStatementContext } from "./SparkSqlParser.js"; import { FromClauseContext } from "./SparkSqlParser.js"; -import { FunctionKindContext } from "./SparkSqlParser.js"; import { TemporalClauseContext } from "./SparkSqlParser.js"; import { AggregationClauseContext } from "./SparkSqlParser.js"; import { GroupByClauseContext } from "./SparkSqlParser.js"; import { GroupingAnalyticsContext } from "./SparkSqlParser.js"; -import { GroupingElementContext } from "./SparkSqlParser.js"; import { GroupingSetContext } from "./SparkSqlParser.js"; import { PivotClauseContext } from "./SparkSqlParser.js"; import { PivotColumnContext } from "./SparkSqlParser.js"; import { PivotValueContext } from "./SparkSqlParser.js"; import { UnPivotClauseContext } from "./SparkSqlParser.js"; -import { UnPivotNullClauseContext } from "./SparkSqlParser.js"; -import { UnPivotOperatorContext } from "./SparkSqlParser.js"; import { UnPivotSingleValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnPivotMultiValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnPivotColumnSetContext } from "./SparkSqlParser.js"; -import { UnPivotValueColumnContext } from "./SparkSqlParser.js"; -import { UnPivotNameColumnContext } from "./SparkSqlParser.js"; import { UnPivotColumnAndAliasContext } from "./SparkSqlParser.js"; -import { UnPivotColumnContext } from "./SparkSqlParser.js"; -import { UnPivotAliasContext } from "./SparkSqlParser.js"; import { IfNotExistsContext } from "./SparkSqlParser.js"; import { IfExistsContext } from "./SparkSqlParser.js"; import { LateralViewContext } from "./SparkSqlParser.js"; import { SetQuantifierContext } from "./SparkSqlParser.js"; import { RelationContext } from "./SparkSqlParser.js"; -import { RelationExtensionContext } from "./SparkSqlParser.js"; import { JoinRelationContext } from "./SparkSqlParser.js"; import { JoinTypeContext } from "./SparkSqlParser.js"; import { JoinCriteriaContext } from "./SparkSqlParser.js"; @@ -215,13 +198,11 @@ import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; import { RelationPrimaryContext } from "./SparkSqlParser.js"; -import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; -import { FunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -267,20 +248,16 @@ import { QualifiedColTypeWithPositionForAddContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionSeqForReplaceContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionForReplaceContext } from "./SparkSqlParser.js"; import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js"; -import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; -import { GenerationExpressionContext } from "./SparkSqlParser.js"; -import { ComplexColTypeListContext } from "./SparkSqlParser.js"; import { ComplexColTypeContext } from "./SparkSqlParser.js"; import { WhenClauseContext } from "./SparkSqlParser.js"; import { WindowClauseContext } from "./SparkSqlParser.js"; import { ZOrderClauseContext } from "./SparkSqlParser.js"; -import { NamedWindowContext } from "./SparkSqlParser.js"; import { WindowSpecContext } from "./SparkSqlParser.js"; import { WindowFrameContext } from "./SparkSqlParser.js"; import { FrameBoundContext } from "./SparkSqlParser.js"; @@ -293,12 +270,9 @@ import { ErrorCapturingIdentifierExtraContext } from "./SparkSqlParser.js"; import { IdentifierContext } from "./SparkSqlParser.js"; import { StrictIdentifierContext } from "./SparkSqlParser.js"; import { QuotedIdentifierContext } from "./SparkSqlParser.js"; -import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentStrContext } from "./SparkSqlParser.js"; -import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; import { NonReservedContext } from "./SparkSqlParser.js"; @@ -758,13 +732,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor 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`. @@ -961,42 +928,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTimezone?: (ctx: TimezoneContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConfigKey?: (ctx: ConfigKeyContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConfigValue?: (ctx: ConfigValueContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unsupportedHiveNativeCommands`. * @param ctx the parse tree * @return the visitor result */ visitUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreateTableHeader?: (ctx: CreateTableHeaderContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.bucketSpec`. * @param ctx the parse tree @@ -1058,12 +995,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNamespaces?: (ctx: NamespacesContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -1172,12 +1103,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResource?: (ctx: ResourceContext) => Result; /** * Visit a parse tree produced by the `insertFromQuery` * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. @@ -1255,6 +1180,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -1280,11 +1211,23 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. + * Visit a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLimitClause?: (ctx: LimitClauseContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.orderOrSortByClause`. * @param ctx the parse tree * @return the visitor result */ - visitMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => Result; + visitOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. + * @param ctx the parse tree + * @return the visitor result + */ + visitClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.queryTerm`. * @param ctx the parse tree @@ -1303,12 +1246,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFromStatement?: (ctx: FromStatementContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.fromStatementBody`. * @param ctx the parse tree @@ -1357,24 +1294,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMatchedAction?: (ctx: MatchedActionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.notMatchedAction`. * @param ctx the parse tree * @return the visitor result */ visitNotMatchedAction?: (ctx: NotMatchedActionContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.assignmentList`. * @param ctx the parse tree @@ -1417,12 +1342,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionKind?: (ctx: FunctionKindContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.temporalClause`. * @param ctx the parse tree @@ -1447,12 +1366,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGroupingElement?: (ctx: GroupingElementContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.groupingSet`. * @param ctx the parse tree @@ -1483,18 +1396,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotNullClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotNullClause?: (ctx: UnPivotNullClauseContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotOperator?: (ctx: UnPivotOperatorContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unPivotSingleValueColumnClause`. * @param ctx the parse tree @@ -1513,36 +1414,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotValueColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotValueColumn?: (ctx: UnPivotValueColumnContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotNameColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotNameColumn?: (ctx: UnPivotNameColumnContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unPivotColumnAndAlias`. * @param ctx the parse tree * @return the visitor result */ visitUnPivotColumnAndAlias?: (ctx: UnPivotColumnAndAliasContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotColumn?: (ctx: UnPivotColumnContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unPivotAlias`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnPivotAlias?: (ctx: UnPivotAliasContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.ifNotExists`. * @param ctx the parse tree @@ -1573,12 +1450,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelationExtension?: (ctx: RelationExtensionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.joinRelation`. * @param ctx the parse tree @@ -1651,12 +1522,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInlineTable?: (ctx: InlineTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -1687,12 +1552,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionTable?: (ctx: FunctionTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -1963,12 +1822,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefaultExpression?: (ctx: DefaultExpressionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.variableDefaultExpression`. * @param ctx the parse tree @@ -2005,18 +1858,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGenerationExpression?: (ctx: GenerationExpressionContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComplexColTypeList?: (ctx: ComplexColTypeListContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.complexColType`. * @param ctx the parse tree @@ -2041,12 +1882,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNamedWindow?: (ctx: NamedWindowContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.windowSpec`. * @param ctx the parse tree @@ -2119,12 +1954,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.number`. * @param ctx the parse tree @@ -2143,18 +1972,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommentStr?: (ctx: CommentStrContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - * @return the visitor result - */ - visitVersion?: (ctx: VersionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.ansiNonReserved`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index 4498811d3..ae5ef5ec3 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -678,9 +678,9 @@ IDENTIFIER DIGIT_IDENTIFIER QUOTED_IDENTIFIER BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED DELIMITER @@ -712,7 +712,10 @@ queryTerm queryPrimary sortItem querySpecification +whereClause +havingClause groupBy +partitionBy groupingElement groupingSet groupingTerm @@ -824,6 +827,7 @@ catalogNameCreate functionName functionNameCreate columnRef +columnName columnNameCreate qualifiedName queryPeriod @@ -839,4 +843,4 @@ nonReserved atn: -[4, 1, 340, 3670, 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, 1, 0, 5, 0, 304, 8, 0, 10, 0, 12, 0, 307, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 315, 8, 2, 1, 3, 1, 3, 3, 3, 319, 8, 3, 1, 4, 1, 4, 3, 4, 323, 8, 4, 1, 5, 1, 5, 3, 5, 327, 8, 5, 1, 6, 1, 6, 3, 6, 331, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 344, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 351, 8, 8, 1, 8, 1, 8, 3, 8, 355, 8, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 365, 8, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 376, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 381, 8, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 391, 8, 8, 1, 8, 1, 8, 3, 8, 395, 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, 414, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 420, 8, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 3, 8, 447, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 458, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 465, 8, 8, 10, 8, 12, 8, 468, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 473, 8, 8, 1, 8, 1, 8, 3, 8, 477, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 483, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 490, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 499, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 511, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 520, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 529, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 535, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 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, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 579, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 594, 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, 609, 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, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 642, 8, 8, 10, 8, 12, 8, 645, 9, 8, 3, 8, 647, 8, 8, 1, 8, 3, 8, 650, 8, 8, 1, 8, 1, 8, 3, 8, 654, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 665, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 3, 8, 682, 8, 8, 1, 8, 1, 8, 3, 8, 686, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 694, 8, 8, 1, 8, 1, 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, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 722, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 730, 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, 749, 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, 772, 8, 8, 10, 8, 12, 8, 775, 9, 8, 3, 8, 777, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 784, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 791, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 800, 8, 8, 1, 8, 1, 8, 3, 8, 804, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 811, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 817, 8, 8, 10, 8, 12, 8, 820, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 826, 8, 8, 10, 8, 12, 8, 829, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 834, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 839, 8, 8, 1, 8, 1, 8, 3, 8, 843, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 849, 8, 8, 10, 8, 12, 8, 852, 9, 8, 1, 8, 1, 8, 3, 8, 856, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 865, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 876, 8, 8, 10, 8, 12, 8, 879, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 885, 8, 8, 10, 8, 12, 8, 888, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 893, 8, 8, 1, 8, 1, 8, 3, 8, 897, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 908, 8, 8, 10, 8, 12, 8, 911, 9, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 926, 8, 8, 10, 8, 12, 8, 929, 9, 8, 1, 8, 1, 8, 3, 8, 933, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 945, 8, 8, 1, 8, 1, 8, 3, 8, 949, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 962, 8, 8, 10, 8, 12, 8, 965, 9, 8, 1, 8, 1, 8, 3, 8, 969, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 975, 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, 1, 8, 3, 8, 1003, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1009, 8, 8, 3, 8, 1011, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 3, 8, 1025, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1033, 8, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1045, 8, 8, 3, 8, 1047, 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, 1062, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1067, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1074, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1084, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 3, 8, 1092, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1100, 8, 8, 3, 8, 1102, 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, 1125, 8, 8, 10, 8, 12, 8, 1128, 9, 8, 3, 8, 1130, 8, 8, 1, 8, 1, 8, 3, 8, 1134, 8, 8, 1, 8, 1, 8, 3, 8, 1138, 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, 1154, 8, 8, 10, 8, 12, 8, 1157, 9, 8, 3, 8, 1159, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1168, 8, 8, 10, 8, 12, 8, 1171, 9, 8, 3, 8, 1173, 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, 1189, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1197, 8, 8, 10, 8, 12, 8, 1200, 9, 8, 1, 8, 1, 8, 3, 8, 1204, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1210, 8, 8, 1, 8, 3, 8, 1213, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1220, 8, 8, 11, 8, 12, 8, 1221, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1234, 8, 8, 1, 9, 3, 9, 1237, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1245, 8, 10, 10, 10, 12, 10, 1248, 9, 10, 1, 11, 3, 11, 1251, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1257, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1262, 8, 12, 10, 12, 12, 12, 1265, 9, 12, 1, 13, 1, 13, 3, 13, 1269, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1275, 8, 14, 1, 14, 1, 14, 3, 14, 1279, 8, 14, 1, 14, 1, 14, 3, 14, 1283, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1289, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1298, 8, 17, 10, 17, 12, 17, 1301, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1317, 8, 20, 10, 20, 12, 20, 1320, 9, 20, 3, 20, 1322, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1327, 8, 20, 3, 20, 1329, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1336, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1342, 8, 20, 3, 20, 1344, 8, 20, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1358, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1364, 8, 23, 1, 23, 5, 23, 1367, 8, 23, 10, 23, 12, 23, 1370, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1379, 8, 24, 10, 24, 12, 24, 1382, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1388, 8, 24, 1, 25, 1, 25, 3, 25, 1392, 8, 25, 1, 25, 3, 25, 1395, 8, 25, 1, 25, 1, 25, 3, 25, 1399, 8, 25, 1, 26, 1, 26, 3, 26, 1403, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1408, 8, 26, 10, 26, 12, 26, 1411, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1417, 8, 26, 10, 26, 12, 26, 1420, 9, 26, 3, 26, 1422, 8, 26, 1, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1441, 8, 26, 10, 26, 12, 26, 1444, 9, 26, 3, 26, 1446, 8, 26, 1, 27, 3, 27, 1449, 8, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1454, 8, 27, 10, 27, 12, 27, 1457, 9, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1465, 8, 28, 10, 28, 12, 28, 1468, 9, 28, 3, 28, 1470, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1478, 8, 28, 10, 28, 12, 28, 1481, 9, 28, 3, 28, 1483, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1492, 8, 28, 10, 28, 12, 28, 1495, 9, 28, 1, 28, 1, 28, 3, 28, 1499, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1505, 8, 29, 10, 29, 12, 29, 1508, 9, 29, 3, 29, 1510, 8, 29, 1, 29, 1, 29, 3, 29, 1514, 8, 29, 1, 30, 1, 30, 3, 30, 1518, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1534, 8, 32, 10, 32, 12, 32, 1537, 9, 32, 3, 32, 1539, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1546, 8, 32, 10, 32, 12, 32, 1549, 9, 32, 3, 32, 1551, 8, 32, 1, 32, 3, 32, 1554, 8, 32, 1, 33, 1, 33, 3, 33, 1558, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 1569, 8, 35, 1, 35, 3, 35, 1572, 8, 35, 1, 35, 3, 35, 1575, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1582, 8, 35, 1, 35, 3, 35, 1585, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1604, 8, 36, 5, 36, 1606, 8, 36, 10, 36, 12, 36, 1609, 9, 36, 1, 37, 3, 37, 1612, 8, 37, 1, 37, 1, 37, 3, 37, 1616, 8, 37, 1, 37, 1, 37, 3, 37, 1620, 8, 37, 1, 37, 1, 37, 3, 37, 1624, 8, 37, 3, 37, 1626, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1635, 8, 38, 10, 38, 12, 38, 1638, 9, 38, 1, 38, 1, 38, 3, 38, 1642, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1651, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1660, 8, 42, 1, 42, 3, 42, 1663, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1669, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1679, 8, 44, 10, 44, 12, 44, 1682, 9, 44, 3, 44, 1684, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1691, 8, 44, 10, 44, 12, 44, 1694, 9, 44, 3, 44, 1696, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1702, 8, 44, 10, 44, 12, 44, 1705, 9, 44, 3, 44, 1707, 8, 44, 1, 44, 3, 44, 1710, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1715, 8, 44, 1, 44, 3, 44, 1718, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1728, 8, 44, 10, 44, 12, 44, 1731, 9, 44, 3, 44, 1733, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1739, 8, 44, 10, 44, 12, 44, 1742, 9, 44, 1, 44, 1, 44, 3, 44, 1746, 8, 44, 1, 44, 1, 44, 3, 44, 1750, 8, 44, 3, 44, 1752, 8, 44, 3, 44, 1754, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1769, 8, 46, 3, 46, 1771, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1782, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1803, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1811, 8, 49, 10, 49, 12, 49, 1814, 9, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1824, 8, 51, 1, 51, 1, 51, 3, 51, 1828, 8, 51, 3, 51, 1830, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1836, 8, 52, 10, 52, 12, 52, 1839, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1847, 8, 53, 10, 53, 12, 53, 1850, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1858, 8, 54, 10, 54, 12, 54, 1861, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1867, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1878, 8, 55, 10, 55, 12, 55, 1881, 9, 55, 1, 55, 1, 55, 1, 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, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1910, 8, 55, 10, 55, 12, 55, 1913, 9, 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, 3, 55, 1927, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1932, 8, 55, 1, 55, 1, 55, 3, 55, 1936, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1946, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1952, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1958, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1966, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1971, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1978, 8, 56, 3, 56, 1980, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1986, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1992, 8, 56, 1, 56, 1, 56, 3, 56, 1996, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2001, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2008, 8, 56, 10, 56, 12, 56, 2011, 9, 56, 1, 56, 1, 56, 3, 56, 2015, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2027, 8, 57, 10, 57, 12, 57, 2030, 9, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2037, 8, 57, 10, 57, 12, 57, 2040, 9, 57, 3, 57, 2042, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2051, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2056, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2061, 8, 60, 3, 60, 2063, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2070, 8, 61, 10, 61, 12, 61, 2073, 9, 61, 3, 61, 2075, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2081, 8, 61, 10, 61, 12, 61, 2084, 9, 61, 3, 61, 2086, 8, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2093, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2098, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2107, 8, 63, 10, 63, 12, 63, 2110, 9, 63, 3, 63, 2112, 8, 63, 1, 63, 1, 63, 3, 63, 2116, 8, 63, 3, 63, 2118, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2126, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2134, 8, 63, 10, 63, 12, 63, 2137, 9, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2142, 8, 63, 3, 63, 2144, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2151, 8, 64, 1, 64, 1, 64, 3, 64, 2155, 8, 64, 3, 64, 2157, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2164, 8, 64, 1, 64, 1, 64, 3, 64, 2168, 8, 64, 3, 64, 2170, 8, 64, 3, 64, 2172, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2179, 8, 65, 10, 65, 12, 65, 2182, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2192, 8, 65, 1, 66, 1, 66, 3, 66, 2196, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2204, 8, 67, 10, 67, 12, 67, 2207, 9, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2216, 8, 69, 1, 69, 1, 69, 3, 69, 2220, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2228, 8, 69, 10, 69, 12, 69, 2231, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2243, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2251, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2258, 8, 70, 10, 70, 12, 70, 2261, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2266, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2274, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 1, 70, 3, 70, 2284, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2289, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2294, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2300, 8, 71, 1, 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, 2314, 8, 71, 10, 71, 12, 71, 2317, 9, 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, 4, 72, 2344, 8, 72, 11, 72, 12, 72, 2345, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2355, 8, 72, 10, 72, 12, 72, 2358, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2365, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2370, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2375, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2386, 8, 72, 10, 72, 12, 72, 2389, 9, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2394, 8, 72, 1, 72, 3, 72, 2397, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2404, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2409, 8, 72, 1, 72, 3, 72, 2412, 8, 72, 1, 72, 3, 72, 2415, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2420, 8, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2425, 8, 72, 10, 72, 12, 72, 2428, 9, 72, 3, 72, 2430, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2437, 8, 72, 10, 72, 12, 72, 2440, 9, 72, 3, 72, 2442, 8, 72, 1, 72, 1, 72, 3, 72, 2446, 8, 72, 1, 72, 3, 72, 2449, 8, 72, 1, 72, 3, 72, 2452, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2465, 8, 72, 10, 72, 12, 72, 2468, 9, 72, 3, 72, 2470, 8, 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, 4, 72, 2487, 8, 72, 11, 72, 12, 72, 2488, 1, 72, 1, 72, 3, 72, 2493, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2499, 8, 72, 11, 72, 12, 72, 2500, 1, 72, 1, 72, 3, 72, 2505, 8, 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, 5, 72, 2528, 8, 72, 10, 72, 12, 72, 2531, 9, 72, 3, 72, 2533, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2542, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2548, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2554, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2560, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2569, 8, 72, 1, 72, 3, 72, 2572, 8, 72, 1, 72, 3, 72, 2575, 8, 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, 2594, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2603, 8, 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, 5, 72, 2623, 8, 72, 10, 72, 12, 72, 2626, 9, 72, 3, 72, 2628, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2638, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2647, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2653, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2659, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2670, 8, 72, 3, 72, 2672, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2684, 8, 72, 3, 72, 2686, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2692, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2698, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2707, 8, 72, 10, 72, 12, 72, 2710, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2718, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2723, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2728, 8, 72, 3, 72, 2730, 8, 72, 3, 72, 2732, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2738, 8, 72, 3, 72, 2740, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2748, 8, 72, 10, 72, 12, 72, 2751, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2759, 8, 72, 3, 72, 2761, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2767, 8, 72, 3, 72, 2769, 8, 72, 1, 72, 3, 72, 2772, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2782, 8, 72, 10, 72, 12, 72, 2785, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2798, 8, 73, 10, 73, 12, 73, 2801, 9, 73, 3, 73, 2803, 8, 73, 1, 74, 1, 74, 1, 74, 3, 74, 2808, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2813, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2825, 8, 78, 1, 79, 1, 79, 3, 79, 2829, 8, 79, 1, 79, 1, 79, 3, 79, 2833, 8, 79, 1, 79, 3, 79, 2836, 8, 79, 3, 79, 2838, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2846, 8, 80, 1, 81, 3, 81, 2849, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2859, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2867, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2873, 8, 84, 3, 84, 2875, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2883, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 3, 89, 2893, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2899, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2911, 8, 92, 10, 92, 12, 92, 2914, 9, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2922, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2929, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2934, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2941, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2946, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2967, 8, 92, 10, 92, 12, 92, 2970, 9, 92, 1, 92, 1, 92, 3, 92, 2974, 8, 92, 3, 92, 2976, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2983, 8, 92, 5, 92, 2985, 8, 92, 10, 92, 12, 92, 2988, 9, 92, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2994, 8, 93, 1, 94, 1, 94, 3, 94, 2998, 8, 94, 1, 95, 1, 95, 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, 3, 97, 3015, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3028, 8, 97, 10, 97, 12, 97, 3031, 9, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3037, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3046, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3054, 8, 97, 10, 97, 12, 97, 3057, 9, 97, 1, 97, 1, 97, 3, 97, 3061, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3068, 8, 97, 10, 97, 12, 97, 3071, 9, 97, 1, 97, 1, 97, 3, 97, 3075, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3083, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3089, 8, 99, 10, 99, 12, 99, 3092, 9, 99, 3, 99, 3094, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3100, 8, 99, 1, 99, 3, 99, 3103, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3110, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3116, 8, 99, 10, 99, 12, 99, 3119, 9, 99, 3, 99, 3121, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3127, 8, 99, 10, 99, 12, 99, 3130, 9, 99, 3, 99, 3132, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3158, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3169, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3174, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3181, 8, 102, 10, 102, 12, 102, 3184, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3194, 8, 103, 10, 103, 12, 103, 3197, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3211, 8, 103, 1, 104, 1, 104, 3, 104, 3215, 8, 104, 1, 104, 1, 104, 3, 104, 3219, 8, 104, 1, 104, 1, 104, 3, 104, 3223, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3229, 8, 104, 1, 104, 1, 104, 3, 104, 3233, 8, 104, 1, 104, 1, 104, 3, 104, 3237, 8, 104, 1, 104, 1, 104, 3, 104, 3241, 8, 104, 3, 104, 3243, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3253, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3260, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3269, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3276, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3283, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 3288, 8, 111, 10, 111, 12, 111, 3291, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3297, 8, 112, 10, 112, 12, 112, 3300, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3309, 8, 113, 10, 113, 12, 113, 3312, 9, 113, 3, 113, 3314, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3323, 8, 114, 10, 114, 12, 114, 3326, 9, 114, 3, 114, 3328, 8, 114, 1, 114, 1, 114, 1, 115, 3, 115, 3333, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 3, 117, 3343, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3359, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3371, 8, 118, 11, 118, 12, 118, 3372, 1, 118, 3, 118, 3376, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3383, 8, 118, 11, 118, 12, 118, 3384, 1, 118, 3, 118, 3388, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3398, 8, 118, 10, 118, 12, 118, 3401, 9, 118, 1, 118, 3, 118, 3404, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3417, 8, 118, 10, 118, 12, 118, 3420, 9, 118, 1, 118, 3, 118, 3423, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3429, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3439, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3451, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3460, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3479, 8, 122, 10, 122, 12, 122, 3482, 9, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3487, 8, 122, 1, 123, 1, 123, 1, 123, 4, 123, 3492, 8, 123, 11, 123, 12, 123, 3493, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3502, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 3507, 8, 125, 1, 126, 3, 126, 3510, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 3516, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3529, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3542, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3555, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3568, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3575, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3582, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 3594, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 5, 140, 3601, 8, 140, 10, 140, 12, 140, 3604, 9, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3617, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3624, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3629, 8, 145, 10, 145, 12, 145, 3632, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3641, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3648, 8, 147, 1, 148, 3, 148, 3651, 8, 148, 1, 148, 1, 148, 3, 148, 3655, 8, 148, 1, 148, 1, 148, 3, 148, 3659, 8, 148, 1, 148, 3, 148, 3662, 8, 148, 1, 149, 1, 149, 3, 149, 3666, 8, 149, 1, 150, 1, 150, 1, 150, 0, 7, 46, 72, 138, 142, 144, 184, 204, 151, 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, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4221, 0, 305, 1, 0, 0, 0, 2, 310, 1, 0, 0, 0, 4, 312, 1, 0, 0, 0, 6, 316, 1, 0, 0, 0, 8, 320, 1, 0, 0, 0, 10, 324, 1, 0, 0, 0, 12, 328, 1, 0, 0, 0, 14, 332, 1, 0, 0, 0, 16, 1233, 1, 0, 0, 0, 18, 1236, 1, 0, 0, 0, 20, 1240, 1, 0, 0, 0, 22, 1250, 1, 0, 0, 0, 24, 1254, 1, 0, 0, 0, 26, 1268, 1, 0, 0, 0, 28, 1270, 1, 0, 0, 0, 30, 1284, 1, 0, 0, 0, 32, 1290, 1, 0, 0, 0, 34, 1294, 1, 0, 0, 0, 36, 1302, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1351, 1, 0, 0, 0, 48, 1387, 1, 0, 0, 0, 50, 1391, 1, 0, 0, 0, 52, 1400, 1, 0, 0, 0, 54, 1448, 1, 0, 0, 0, 56, 1498, 1, 0, 0, 0, 58, 1513, 1, 0, 0, 0, 60, 1517, 1, 0, 0, 0, 62, 1519, 1, 0, 0, 0, 64, 1526, 1, 0, 0, 0, 66, 1555, 1, 0, 0, 0, 68, 1564, 1, 0, 0, 0, 70, 1584, 1, 0, 0, 0, 72, 1586, 1, 0, 0, 0, 74, 1625, 1, 0, 0, 0, 76, 1641, 1, 0, 0, 0, 78, 1643, 1, 0, 0, 0, 80, 1652, 1, 0, 0, 0, 82, 1654, 1, 0, 0, 0, 84, 1662, 1, 0, 0, 0, 86, 1668, 1, 0, 0, 0, 88, 1670, 1, 0, 0, 0, 90, 1755, 1, 0, 0, 0, 92, 1770, 1, 0, 0, 0, 94, 1781, 1, 0, 0, 0, 96, 1802, 1, 0, 0, 0, 98, 1804, 1, 0, 0, 0, 100, 1817, 1, 0, 0, 0, 102, 1821, 1, 0, 0, 0, 104, 1831, 1, 0, 0, 0, 106, 1842, 1, 0, 0, 0, 108, 1853, 1, 0, 0, 0, 110, 1935, 1, 0, 0, 0, 112, 2014, 1, 0, 0, 0, 114, 2041, 1, 0, 0, 0, 116, 2043, 1, 0, 0, 0, 118, 2050, 1, 0, 0, 0, 120, 2062, 1, 0, 0, 0, 122, 2064, 1, 0, 0, 0, 124, 2092, 1, 0, 0, 0, 126, 2099, 1, 0, 0, 0, 128, 2171, 1, 0, 0, 0, 130, 2191, 1, 0, 0, 0, 132, 2193, 1, 0, 0, 0, 134, 2197, 1, 0, 0, 0, 136, 2210, 1, 0, 0, 0, 138, 2219, 1, 0, 0, 0, 140, 2293, 1, 0, 0, 0, 142, 2299, 1, 0, 0, 0, 144, 2771, 1, 0, 0, 0, 146, 2786, 1, 0, 0, 0, 148, 2804, 1, 0, 0, 0, 150, 2809, 1, 0, 0, 0, 152, 2814, 1, 0, 0, 0, 154, 2818, 1, 0, 0, 0, 156, 2824, 1, 0, 0, 0, 158, 2837, 1, 0, 0, 0, 160, 2845, 1, 0, 0, 0, 162, 2858, 1, 0, 0, 0, 164, 2860, 1, 0, 0, 0, 166, 2866, 1, 0, 0, 0, 168, 2874, 1, 0, 0, 0, 170, 2882, 1, 0, 0, 0, 172, 2884, 1, 0, 0, 0, 174, 2886, 1, 0, 0, 0, 176, 2888, 1, 0, 0, 0, 178, 2890, 1, 0, 0, 0, 180, 2900, 1, 0, 0, 0, 182, 2902, 1, 0, 0, 0, 184, 2975, 1, 0, 0, 0, 186, 2993, 1, 0, 0, 0, 188, 2997, 1, 0, 0, 0, 190, 2999, 1, 0, 0, 0, 192, 3004, 1, 0, 0, 0, 194, 3074, 1, 0, 0, 0, 196, 3076, 1, 0, 0, 0, 198, 3093, 1, 0, 0, 0, 200, 3157, 1, 0, 0, 0, 202, 3168, 1, 0, 0, 0, 204, 3170, 1, 0, 0, 0, 206, 3210, 1, 0, 0, 0, 208, 3242, 1, 0, 0, 0, 210, 3244, 1, 0, 0, 0, 212, 3252, 1, 0, 0, 0, 214, 3259, 1, 0, 0, 0, 216, 3268, 1, 0, 0, 0, 218, 3275, 1, 0, 0, 0, 220, 3282, 1, 0, 0, 0, 222, 3284, 1, 0, 0, 0, 224, 3292, 1, 0, 0, 0, 226, 3303, 1, 0, 0, 0, 228, 3317, 1, 0, 0, 0, 230, 3332, 1, 0, 0, 0, 232, 3336, 1, 0, 0, 0, 234, 3358, 1, 0, 0, 0, 236, 3459, 1, 0, 0, 0, 238, 3461, 1, 0, 0, 0, 240, 3466, 1, 0, 0, 0, 242, 3471, 1, 0, 0, 0, 244, 3474, 1, 0, 0, 0, 246, 3491, 1, 0, 0, 0, 248, 3501, 1, 0, 0, 0, 250, 3506, 1, 0, 0, 0, 252, 3509, 1, 0, 0, 0, 254, 3515, 1, 0, 0, 0, 256, 3528, 1, 0, 0, 0, 258, 3541, 1, 0, 0, 0, 260, 3554, 1, 0, 0, 0, 262, 3567, 1, 0, 0, 0, 264, 3574, 1, 0, 0, 0, 266, 3581, 1, 0, 0, 0, 268, 3583, 1, 0, 0, 0, 270, 3585, 1, 0, 0, 0, 272, 3587, 1, 0, 0, 0, 274, 3589, 1, 0, 0, 0, 276, 3593, 1, 0, 0, 0, 278, 3595, 1, 0, 0, 0, 280, 3597, 1, 0, 0, 0, 282, 3605, 1, 0, 0, 0, 284, 3611, 1, 0, 0, 0, 286, 3616, 1, 0, 0, 0, 288, 3623, 1, 0, 0, 0, 290, 3625, 1, 0, 0, 0, 292, 3640, 1, 0, 0, 0, 294, 3647, 1, 0, 0, 0, 296, 3661, 1, 0, 0, 0, 298, 3665, 1, 0, 0, 0, 300, 3667, 1, 0, 0, 0, 302, 304, 3, 2, 1, 0, 303, 302, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 308, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 308, 309, 5, 0, 0, 1, 309, 1, 1, 0, 0, 0, 310, 311, 3, 4, 2, 0, 311, 3, 1, 0, 0, 0, 312, 314, 3, 16, 8, 0, 313, 315, 5, 325, 0, 0, 314, 313, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 5, 1, 0, 0, 0, 316, 318, 3, 136, 68, 0, 317, 319, 5, 325, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 7, 1, 0, 0, 0, 320, 322, 3, 222, 111, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 9, 1, 0, 0, 0, 324, 326, 3, 184, 92, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 11, 1, 0, 0, 0, 328, 330, 3, 204, 102, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 13, 1, 0, 0, 0, 332, 333, 3, 224, 112, 0, 333, 334, 5, 0, 0, 1, 334, 15, 1, 0, 0, 0, 335, 1234, 3, 18, 9, 0, 336, 337, 5, 288, 0, 0, 337, 1234, 3, 264, 132, 0, 338, 339, 5, 53, 0, 0, 339, 343, 5, 42, 0, 0, 340, 341, 5, 119, 0, 0, 341, 342, 5, 182, 0, 0, 342, 344, 5, 94, 0, 0, 343, 340, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 3, 270, 135, 0, 346, 347, 5, 290, 0, 0, 347, 350, 3, 294, 147, 0, 348, 349, 5, 46, 0, 0, 349, 351, 3, 168, 84, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 353, 5, 31, 0, 0, 353, 355, 3, 288, 144, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 304, 0, 0, 357, 359, 3, 32, 16, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 1234, 1, 0, 0, 0, 360, 361, 5, 83, 0, 0, 361, 364, 5, 42, 0, 0, 362, 363, 5, 119, 0, 0, 363, 365, 5, 94, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 368, 3, 268, 134, 0, 367, 369, 7, 0, 0, 0, 368, 367, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 1234, 1, 0, 0, 0, 370, 371, 5, 53, 0, 0, 371, 375, 5, 243, 0, 0, 372, 373, 5, 119, 0, 0, 373, 374, 5, 182, 0, 0, 374, 376, 5, 94, 0, 0, 375, 372, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 380, 3, 266, 133, 0, 378, 379, 5, 31, 0, 0, 379, 381, 3, 288, 144, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 383, 5, 304, 0, 0, 383, 385, 3, 32, 16, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 1234, 1, 0, 0, 0, 386, 387, 5, 83, 0, 0, 387, 390, 5, 243, 0, 0, 388, 389, 5, 119, 0, 0, 389, 391, 5, 94, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 3, 264, 132, 0, 393, 395, 7, 0, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 1234, 1, 0, 0, 0, 396, 397, 5, 23, 0, 0, 397, 398, 5, 243, 0, 0, 398, 399, 3, 264, 132, 0, 399, 400, 5, 223, 0, 0, 400, 401, 5, 269, 0, 0, 401, 402, 3, 266, 133, 0, 402, 1234, 1, 0, 0, 0, 403, 404, 5, 23, 0, 0, 404, 405, 5, 243, 0, 0, 405, 406, 3, 264, 132, 0, 406, 407, 5, 251, 0, 0, 407, 408, 5, 31, 0, 0, 408, 409, 3, 288, 144, 0, 409, 1234, 1, 0, 0, 0, 410, 413, 5, 53, 0, 0, 411, 412, 5, 194, 0, 0, 412, 414, 5, 226, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 419, 5, 260, 0, 0, 416, 417, 5, 119, 0, 0, 417, 418, 5, 182, 0, 0, 418, 420, 5, 94, 0, 0, 419, 416, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 423, 3, 258, 129, 0, 422, 424, 3, 104, 52, 0, 423, 422, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 427, 1, 0, 0, 0, 425, 426, 5, 46, 0, 0, 426, 428, 3, 168, 84, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 430, 5, 304, 0, 0, 430, 432, 3, 32, 16, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 439, 5, 28, 0, 0, 434, 440, 3, 18, 9, 0, 435, 436, 5, 1, 0, 0, 436, 437, 3, 18, 9, 0, 437, 438, 5, 2, 0, 0, 438, 440, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 440, 446, 1, 0, 0, 0, 441, 443, 5, 304, 0, 0, 442, 444, 5, 179, 0, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 447, 5, 65, 0, 0, 446, 441, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 1234, 1, 0, 0, 0, 448, 451, 5, 53, 0, 0, 449, 450, 5, 194, 0, 0, 450, 452, 5, 226, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 457, 5, 260, 0, 0, 454, 455, 5, 119, 0, 0, 455, 456, 5, 182, 0, 0, 456, 458, 5, 94, 0, 0, 457, 454, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 3, 258, 129, 0, 460, 461, 5, 1, 0, 0, 461, 466, 3, 26, 13, 0, 462, 463, 5, 3, 0, 0, 463, 465, 3, 26, 13, 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, 469, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 472, 5, 2, 0, 0, 470, 471, 5, 46, 0, 0, 471, 473, 3, 168, 84, 0, 472, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 475, 5, 304, 0, 0, 475, 477, 3, 32, 16, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1234, 1, 0, 0, 0, 478, 479, 5, 83, 0, 0, 479, 482, 5, 260, 0, 0, 480, 481, 5, 119, 0, 0, 481, 483, 5, 94, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 1234, 3, 256, 128, 0, 485, 486, 5, 127, 0, 0, 486, 487, 5, 130, 0, 0, 487, 489, 3, 256, 128, 0, 488, 490, 3, 106, 53, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 3, 18, 9, 0, 492, 1234, 1, 0, 0, 0, 493, 494, 5, 73, 0, 0, 494, 495, 5, 105, 0, 0, 495, 498, 3, 256, 128, 0, 496, 497, 5, 301, 0, 0, 497, 499, 3, 138, 69, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 1234, 1, 0, 0, 0, 500, 501, 5, 274, 0, 0, 501, 502, 5, 260, 0, 0, 502, 1234, 3, 256, 128, 0, 503, 504, 5, 46, 0, 0, 504, 505, 5, 190, 0, 0, 505, 506, 5, 260, 0, 0, 506, 507, 3, 256, 128, 0, 507, 510, 5, 133, 0, 0, 508, 511, 3, 168, 84, 0, 509, 511, 5, 183, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 1234, 1, 0, 0, 0, 512, 513, 5, 46, 0, 0, 513, 514, 5, 190, 0, 0, 514, 515, 5, 299, 0, 0, 515, 516, 3, 260, 130, 0, 516, 519, 5, 133, 0, 0, 517, 520, 3, 168, 84, 0, 518, 520, 5, 183, 0, 0, 519, 517, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 1234, 1, 0, 0, 0, 521, 522, 5, 46, 0, 0, 522, 523, 5, 190, 0, 0, 523, 524, 5, 44, 0, 0, 524, 525, 3, 276, 138, 0, 525, 528, 5, 133, 0, 0, 526, 529, 3, 168, 84, 0, 527, 529, 5, 183, 0, 0, 528, 526, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 1234, 1, 0, 0, 0, 530, 531, 5, 23, 0, 0, 531, 534, 5, 260, 0, 0, 532, 533, 5, 119, 0, 0, 533, 535, 5, 94, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 3, 256, 128, 0, 537, 538, 5, 223, 0, 0, 538, 539, 5, 269, 0, 0, 539, 540, 3, 258, 129, 0, 540, 1234, 1, 0, 0, 0, 541, 542, 5, 23, 0, 0, 542, 545, 5, 260, 0, 0, 543, 544, 5, 119, 0, 0, 544, 546, 5, 94, 0, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 3, 256, 128, 0, 548, 549, 5, 19, 0, 0, 549, 553, 5, 44, 0, 0, 550, 551, 5, 119, 0, 0, 551, 552, 5, 182, 0, 0, 552, 554, 5, 94, 0, 0, 553, 550, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 3, 28, 14, 0, 556, 1234, 1, 0, 0, 0, 557, 558, 5, 23, 0, 0, 558, 561, 5, 260, 0, 0, 559, 560, 5, 119, 0, 0, 560, 562, 5, 94, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 256, 128, 0, 564, 565, 5, 223, 0, 0, 565, 568, 5, 44, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 276, 138, 0, 571, 572, 5, 269, 0, 0, 572, 573, 3, 278, 139, 0, 573, 1234, 1, 0, 0, 0, 574, 575, 5, 23, 0, 0, 575, 578, 5, 260, 0, 0, 576, 577, 5, 119, 0, 0, 577, 579, 5, 94, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 256, 128, 0, 581, 582, 5, 83, 0, 0, 582, 585, 5, 44, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 276, 138, 0, 588, 1234, 1, 0, 0, 0, 589, 590, 5, 23, 0, 0, 590, 593, 5, 260, 0, 0, 591, 592, 5, 119, 0, 0, 592, 594, 5, 94, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 3, 256, 128, 0, 596, 597, 5, 23, 0, 0, 597, 598, 5, 44, 0, 0, 598, 599, 3, 276, 138, 0, 599, 600, 5, 251, 0, 0, 600, 601, 5, 65, 0, 0, 601, 602, 5, 276, 0, 0, 602, 603, 3, 184, 92, 0, 603, 1234, 1, 0, 0, 0, 604, 605, 5, 23, 0, 0, 605, 608, 5, 260, 0, 0, 606, 607, 5, 119, 0, 0, 607, 609, 5, 94, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 3, 256, 128, 0, 611, 612, 5, 23, 0, 0, 612, 613, 5, 44, 0, 0, 613, 614, 3, 276, 138, 0, 614, 615, 5, 83, 0, 0, 615, 616, 5, 182, 0, 0, 616, 617, 5, 183, 0, 0, 617, 1234, 1, 0, 0, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 260, 0, 0, 620, 621, 3, 256, 128, 0, 621, 622, 5, 251, 0, 0, 622, 623, 5, 31, 0, 0, 623, 624, 3, 288, 144, 0, 624, 1234, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 256, 128, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 216, 0, 0, 630, 631, 3, 34, 17, 0, 631, 1234, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 256, 128, 0, 635, 636, 5, 93, 0, 0, 636, 649, 3, 272, 136, 0, 637, 646, 5, 1, 0, 0, 638, 643, 3, 218, 109, 0, 639, 640, 5, 3, 0, 0, 640, 642, 3, 218, 109, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 5, 2, 0, 0, 649, 637, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 652, 5, 301, 0, 0, 652, 654, 3, 138, 69, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 1234, 1, 0, 0, 0, 655, 656, 5, 24, 0, 0, 656, 659, 3, 256, 128, 0, 657, 658, 5, 304, 0, 0, 658, 660, 3, 32, 16, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1234, 1, 0, 0, 0, 661, 664, 5, 53, 0, 0, 662, 663, 5, 194, 0, 0, 663, 665, 5, 226, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 5, 167, 0, 0, 667, 671, 5, 299, 0, 0, 668, 669, 5, 119, 0, 0, 669, 670, 5, 182, 0, 0, 670, 672, 5, 94, 0, 0, 671, 668, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 677, 3, 262, 131, 0, 674, 675, 5, 109, 0, 0, 675, 676, 5, 208, 0, 0, 676, 678, 3, 178, 89, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 680, 5, 46, 0, 0, 680, 682, 3, 168, 84, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 684, 5, 304, 0, 0, 684, 686, 3, 32, 16, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 28, 0, 0, 688, 689, 3, 18, 9, 0, 689, 1234, 1, 0, 0, 0, 690, 693, 5, 53, 0, 0, 691, 692, 5, 194, 0, 0, 692, 694, 5, 226, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 299, 0, 0, 696, 699, 3, 262, 131, 0, 697, 698, 5, 46, 0, 0, 698, 700, 3, 168, 84, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 703, 1, 0, 0, 0, 701, 702, 5, 246, 0, 0, 702, 704, 7, 1, 0, 0, 703, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 706, 5, 304, 0, 0, 706, 708, 3, 32, 16, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 28, 0, 0, 710, 711, 3, 18, 9, 0, 711, 1234, 1, 0, 0, 0, 712, 713, 5, 222, 0, 0, 713, 714, 5, 167, 0, 0, 714, 715, 5, 299, 0, 0, 715, 1234, 3, 260, 130, 0, 716, 717, 5, 83, 0, 0, 717, 718, 5, 167, 0, 0, 718, 721, 5, 299, 0, 0, 719, 720, 5, 119, 0, 0, 720, 722, 5, 94, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 1234, 3, 260, 130, 0, 724, 725, 5, 23, 0, 0, 725, 726, 5, 167, 0, 0, 726, 729, 5, 299, 0, 0, 727, 728, 5, 119, 0, 0, 728, 730, 5, 94, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 3, 260, 130, 0, 732, 733, 5, 223, 0, 0, 733, 734, 5, 269, 0, 0, 734, 735, 3, 262, 131, 0, 735, 1234, 1, 0, 0, 0, 736, 737, 5, 23, 0, 0, 737, 738, 5, 167, 0, 0, 738, 739, 5, 299, 0, 0, 739, 740, 3, 260, 130, 0, 740, 741, 5, 251, 0, 0, 741, 742, 5, 216, 0, 0, 742, 743, 3, 34, 17, 0, 743, 1234, 1, 0, 0, 0, 744, 745, 5, 83, 0, 0, 745, 748, 5, 299, 0, 0, 746, 747, 5, 119, 0, 0, 747, 749, 5, 94, 0, 0, 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1234, 3, 260, 130, 0, 751, 752, 5, 23, 0, 0, 752, 753, 5, 299, 0, 0, 753, 754, 3, 260, 130, 0, 754, 755, 5, 223, 0, 0, 755, 756, 5, 269, 0, 0, 756, 757, 3, 262, 131, 0, 757, 1234, 1, 0, 0, 0, 758, 759, 5, 23, 0, 0, 759, 760, 5, 299, 0, 0, 760, 761, 3, 260, 130, 0, 761, 762, 5, 251, 0, 0, 762, 763, 5, 31, 0, 0, 763, 764, 3, 288, 144, 0, 764, 1234, 1, 0, 0, 0, 765, 766, 5, 37, 0, 0, 766, 767, 3, 272, 136, 0, 767, 776, 5, 1, 0, 0, 768, 773, 3, 218, 109, 0, 769, 770, 5, 3, 0, 0, 770, 772, 3, 218, 109, 0, 771, 769, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 2, 0, 0, 779, 1234, 1, 0, 0, 0, 780, 783, 5, 53, 0, 0, 781, 782, 5, 194, 0, 0, 782, 784, 5, 226, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 1234, 3, 224, 112, 0, 786, 787, 5, 83, 0, 0, 787, 790, 5, 107, 0, 0, 788, 789, 5, 119, 0, 0, 789, 791, 5, 94, 0, 0, 790, 788, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 1234, 3, 228, 114, 0, 793, 794, 5, 53, 0, 0, 794, 795, 5, 235, 0, 0, 795, 799, 3, 294, 147, 0, 796, 797, 5, 304, 0, 0, 797, 798, 5, 20, 0, 0, 798, 800, 3, 286, 143, 0, 799, 796, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 802, 5, 122, 0, 0, 802, 804, 3, 268, 134, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 1234, 1, 0, 0, 0, 805, 806, 5, 83, 0, 0, 806, 807, 5, 235, 0, 0, 807, 810, 3, 294, 147, 0, 808, 809, 5, 122, 0, 0, 809, 811, 3, 268, 134, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 1234, 1, 0, 0, 0, 812, 813, 5, 110, 0, 0, 813, 818, 3, 292, 146, 0, 814, 815, 5, 3, 0, 0, 815, 817, 3, 292, 146, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 5, 269, 0, 0, 822, 827, 3, 288, 144, 0, 823, 824, 5, 3, 0, 0, 824, 826, 3, 288, 144, 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, 833, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 5, 304, 0, 0, 831, 832, 5, 20, 0, 0, 832, 834, 5, 193, 0, 0, 833, 830, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 838, 1, 0, 0, 0, 835, 836, 5, 111, 0, 0, 836, 837, 5, 36, 0, 0, 837, 839, 3, 286, 143, 0, 838, 835, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, 841, 5, 122, 0, 0, 841, 843, 3, 268, 134, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 1234, 1, 0, 0, 0, 844, 855, 5, 110, 0, 0, 845, 850, 3, 292, 146, 0, 846, 847, 5, 3, 0, 0, 847, 849, 3, 292, 146, 0, 848, 846, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 856, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 854, 5, 22, 0, 0, 854, 856, 5, 215, 0, 0, 855, 845, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 5, 190, 0, 0, 858, 859, 3, 252, 126, 0, 859, 860, 5, 269, 0, 0, 860, 864, 3, 288, 144, 0, 861, 862, 5, 304, 0, 0, 862, 863, 5, 110, 0, 0, 863, 865, 5, 193, 0, 0, 864, 861, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 1234, 1, 0, 0, 0, 866, 870, 5, 233, 0, 0, 867, 868, 5, 20, 0, 0, 868, 869, 5, 193, 0, 0, 869, 871, 5, 103, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 877, 3, 292, 146, 0, 873, 874, 5, 3, 0, 0, 874, 876, 3, 292, 146, 0, 875, 873, 1, 0, 0, 0, 876, 879, 1, 0, 0, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 880, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 880, 881, 5, 105, 0, 0, 881, 886, 3, 288, 144, 0, 882, 883, 5, 3, 0, 0, 883, 885, 3, 288, 144, 0, 884, 882, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 892, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 890, 5, 111, 0, 0, 890, 891, 5, 36, 0, 0, 891, 893, 3, 286, 143, 0, 892, 889, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 895, 5, 122, 0, 0, 895, 897, 3, 268, 134, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 1234, 1, 0, 0, 0, 898, 902, 5, 233, 0, 0, 899, 900, 5, 110, 0, 0, 900, 901, 5, 193, 0, 0, 901, 903, 5, 103, 0, 0, 902, 899, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 914, 1, 0, 0, 0, 904, 909, 3, 292, 146, 0, 905, 906, 5, 3, 0, 0, 906, 908, 3, 292, 146, 0, 907, 905, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 915, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 912, 913, 5, 22, 0, 0, 913, 915, 5, 215, 0, 0, 914, 904, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 190, 0, 0, 917, 918, 3, 252, 126, 0, 918, 919, 5, 105, 0, 0, 919, 920, 3, 288, 144, 0, 920, 1234, 1, 0, 0, 0, 921, 932, 5, 74, 0, 0, 922, 927, 3, 248, 124, 0, 923, 924, 5, 3, 0, 0, 924, 926, 3, 248, 124, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 933, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 22, 0, 0, 931, 933, 5, 215, 0, 0, 932, 922, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 3, 252, 126, 0, 936, 937, 5, 269, 0, 0, 937, 938, 3, 288, 144, 0, 938, 1234, 1, 0, 0, 0, 939, 940, 5, 251, 0, 0, 940, 944, 5, 235, 0, 0, 941, 945, 5, 22, 0, 0, 942, 945, 5, 180, 0, 0, 943, 945, 3, 294, 147, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 948, 1, 0, 0, 0, 946, 947, 5, 122, 0, 0, 947, 949, 3, 268, 134, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 1234, 1, 0, 0, 0, 950, 951, 5, 253, 0, 0, 951, 954, 5, 112, 0, 0, 952, 953, 5, 190, 0, 0, 953, 955, 3, 252, 126, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1234, 1, 0, 0, 0, 956, 968, 5, 95, 0, 0, 957, 958, 5, 1, 0, 0, 958, 963, 3, 212, 106, 0, 959, 960, 5, 3, 0, 0, 960, 962, 3, 212, 106, 0, 961, 959, 1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 967, 5, 2, 0, 0, 967, 969, 1, 0, 0, 0, 968, 957, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 1234, 3, 16, 8, 0, 971, 972, 5, 95, 0, 0, 972, 974, 5, 24, 0, 0, 973, 975, 5, 297, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1234, 3, 16, 8, 0, 977, 978, 5, 253, 0, 0, 978, 979, 5, 53, 0, 0, 979, 980, 5, 260, 0, 0, 980, 1234, 3, 256, 128, 0, 981, 982, 5, 253, 0, 0, 982, 983, 5, 53, 0, 0, 983, 984, 5, 243, 0, 0, 984, 1234, 3, 264, 132, 0, 985, 986, 5, 253, 0, 0, 986, 987, 5, 53, 0, 0, 987, 988, 5, 299, 0, 0, 988, 1234, 3, 260, 130, 0, 989, 990, 5, 253, 0, 0, 990, 991, 5, 53, 0, 0, 991, 992, 5, 167, 0, 0, 992, 993, 5, 299, 0, 0, 993, 1234, 3, 260, 130, 0, 994, 995, 5, 253, 0, 0, 995, 996, 5, 53, 0, 0, 996, 997, 5, 107, 0, 0, 997, 1234, 3, 272, 136, 0, 998, 999, 5, 253, 0, 0, 999, 1002, 5, 261, 0, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 264, 132, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1010, 1, 0, 0, 0, 1004, 1005, 5, 154, 0, 0, 1005, 1008, 3, 168, 84, 0, 1006, 1007, 5, 90, 0, 0, 1007, 1009, 3, 168, 84, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1004, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1234, 1, 0, 0, 0, 1012, 1013, 5, 253, 0, 0, 1013, 1016, 5, 244, 0, 0, 1014, 1015, 7, 2, 0, 0, 1015, 1017, 3, 268, 134, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1024, 1, 0, 0, 0, 1018, 1019, 5, 154, 0, 0, 1019, 1022, 3, 168, 84, 0, 1020, 1021, 5, 90, 0, 0, 1021, 1023, 3, 168, 84, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 1, 0, 0, 0, 1024, 1018, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1234, 1, 0, 0, 0, 1026, 1027, 5, 253, 0, 0, 1027, 1034, 5, 43, 0, 0, 1028, 1029, 5, 154, 0, 0, 1029, 1032, 3, 168, 84, 0, 1030, 1031, 5, 90, 0, 0, 1031, 1033, 3, 168, 84, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1028, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1234, 1, 0, 0, 0, 1036, 1037, 5, 253, 0, 0, 1037, 1038, 5, 45, 0, 0, 1038, 1039, 7, 2, 0, 0, 1039, 1046, 3, 254, 127, 0, 1040, 1041, 5, 154, 0, 0, 1041, 1044, 3, 168, 84, 0, 1042, 1043, 5, 90, 0, 0, 1043, 1045, 3, 168, 84, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1040, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1234, 1, 0, 0, 0, 1048, 1049, 5, 253, 0, 0, 1049, 1050, 5, 256, 0, 0, 1050, 1051, 5, 103, 0, 0, 1051, 1234, 3, 254, 127, 0, 1052, 1053, 5, 253, 0, 0, 1053, 1054, 5, 256, 0, 0, 1054, 1055, 5, 103, 0, 0, 1055, 1056, 5, 1, 0, 0, 1056, 1057, 3, 18, 9, 0, 1057, 1058, 5, 2, 0, 0, 1058, 1234, 1, 0, 0, 0, 1059, 1061, 5, 253, 0, 0, 1060, 1062, 5, 56, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1066, 5, 236, 0, 0, 1064, 1065, 7, 2, 0, 0, 1065, 1067, 3, 268, 134, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1234, 1, 0, 0, 0, 1068, 1069, 5, 253, 0, 0, 1069, 1070, 5, 235, 0, 0, 1070, 1073, 5, 112, 0, 0, 1071, 1072, 7, 2, 0, 0, 1072, 1074, 3, 268, 134, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1234, 1, 0, 0, 0, 1075, 1076, 5, 76, 0, 0, 1076, 1234, 3, 254, 127, 0, 1077, 1078, 5, 75, 0, 0, 1078, 1234, 3, 254, 127, 0, 1079, 1080, 5, 253, 0, 0, 1080, 1083, 5, 108, 0, 0, 1081, 1082, 7, 2, 0, 0, 1082, 1084, 3, 264, 132, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1091, 1, 0, 0, 0, 1085, 1086, 5, 154, 0, 0, 1086, 1089, 3, 168, 84, 0, 1087, 1088, 5, 90, 0, 0, 1088, 1090, 3, 168, 84, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 1, 0, 0, 0, 1091, 1085, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1234, 1, 0, 0, 0, 1093, 1094, 5, 253, 0, 0, 1094, 1101, 5, 250, 0, 0, 1095, 1096, 5, 154, 0, 0, 1096, 1099, 3, 168, 84, 0, 1097, 1098, 5, 90, 0, 0, 1098, 1100, 3, 168, 84, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 1095, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1234, 1, 0, 0, 0, 1103, 1104, 5, 251, 0, 0, 1104, 1105, 5, 250, 0, 0, 1105, 1106, 5, 31, 0, 0, 1106, 1234, 3, 298, 149, 0, 1107, 1108, 5, 227, 0, 0, 1108, 1109, 5, 250, 0, 0, 1109, 1234, 5, 31, 0, 0, 1110, 1111, 5, 251, 0, 0, 1111, 1112, 5, 250, 0, 0, 1112, 1113, 3, 280, 140, 0, 1113, 1114, 5, 312, 0, 0, 1114, 1115, 3, 136, 68, 0, 1115, 1234, 1, 0, 0, 0, 1116, 1117, 5, 227, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1234, 3, 280, 140, 0, 1119, 1120, 5, 255, 0, 0, 1120, 1129, 5, 271, 0, 0, 1121, 1126, 3, 214, 107, 0, 1122, 1123, 5, 3, 0, 0, 1123, 1125, 3, 214, 107, 0, 1124, 1122, 1, 0, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1234, 1, 0, 0, 0, 1131, 1133, 5, 47, 0, 0, 1132, 1134, 5, 307, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1234, 1, 0, 0, 0, 1135, 1137, 5, 237, 0, 0, 1136, 1138, 5, 307, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1234, 1, 0, 0, 0, 1139, 1140, 5, 214, 0, 0, 1140, 1141, 3, 294, 147, 0, 1141, 1142, 5, 105, 0, 0, 1142, 1143, 3, 16, 8, 0, 1143, 1234, 1, 0, 0, 0, 1144, 1145, 5, 68, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1234, 3, 294, 147, 0, 1147, 1148, 5, 93, 0, 0, 1148, 1158, 3, 294, 147, 0, 1149, 1150, 5, 290, 0, 0, 1150, 1155, 3, 136, 68, 0, 1151, 1152, 5, 3, 0, 0, 1152, 1154, 3, 136, 68, 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, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1149, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1234, 1, 0, 0, 0, 1160, 1161, 5, 93, 0, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1172, 3, 168, 84, 0, 1163, 1164, 5, 290, 0, 0, 1164, 1169, 3, 136, 68, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1168, 3, 136, 68, 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, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1163, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1234, 1, 0, 0, 0, 1174, 1175, 5, 76, 0, 0, 1175, 1176, 5, 126, 0, 0, 1176, 1234, 3, 294, 147, 0, 1177, 1178, 5, 76, 0, 0, 1178, 1179, 5, 198, 0, 0, 1179, 1234, 3, 294, 147, 0, 1180, 1181, 5, 251, 0, 0, 1181, 1182, 5, 205, 0, 0, 1182, 1234, 3, 222, 111, 0, 1183, 1184, 5, 251, 0, 0, 1184, 1185, 5, 267, 0, 0, 1185, 1188, 5, 311, 0, 0, 1186, 1189, 5, 157, 0, 0, 1187, 1189, 3, 136, 68, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 1234, 1, 0, 0, 0, 1190, 1191, 5, 287, 0, 0, 1191, 1192, 3, 256, 128, 0, 1192, 1193, 5, 251, 0, 0, 1193, 1198, 3, 210, 105, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1197, 3, 210, 105, 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, 1203, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1202, 5, 301, 0, 0, 1202, 1204, 3, 138, 69, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1234, 1, 0, 0, 0, 1205, 1206, 5, 169, 0, 0, 1206, 1207, 5, 130, 0, 0, 1207, 1212, 3, 256, 128, 0, 1208, 1210, 5, 28, 0, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 3, 294, 147, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 5, 290, 0, 0, 1215, 1216, 3, 72, 36, 0, 1216, 1217, 5, 190, 0, 0, 1217, 1219, 3, 136, 68, 0, 1218, 1220, 3, 194, 97, 0, 1219, 1218, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1234, 1, 0, 0, 0, 1223, 1224, 5, 253, 0, 0, 1224, 1225, 5, 46, 0, 0, 1225, 1226, 5, 190, 0, 0, 1226, 1227, 5, 260, 0, 0, 1227, 1234, 3, 256, 128, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 44, 0, 0, 1232, 1234, 3, 276, 138, 0, 1233, 335, 1, 0, 0, 0, 1233, 336, 1, 0, 0, 0, 1233, 338, 1, 0, 0, 0, 1233, 360, 1, 0, 0, 0, 1233, 370, 1, 0, 0, 0, 1233, 386, 1, 0, 0, 0, 1233, 396, 1, 0, 0, 0, 1233, 403, 1, 0, 0, 0, 1233, 410, 1, 0, 0, 0, 1233, 448, 1, 0, 0, 0, 1233, 478, 1, 0, 0, 0, 1233, 485, 1, 0, 0, 0, 1233, 493, 1, 0, 0, 0, 1233, 500, 1, 0, 0, 0, 1233, 503, 1, 0, 0, 0, 1233, 512, 1, 0, 0, 0, 1233, 521, 1, 0, 0, 0, 1233, 530, 1, 0, 0, 0, 1233, 541, 1, 0, 0, 0, 1233, 557, 1, 0, 0, 0, 1233, 574, 1, 0, 0, 0, 1233, 589, 1, 0, 0, 0, 1233, 604, 1, 0, 0, 0, 1233, 618, 1, 0, 0, 0, 1233, 625, 1, 0, 0, 0, 1233, 632, 1, 0, 0, 0, 1233, 655, 1, 0, 0, 0, 1233, 661, 1, 0, 0, 0, 1233, 690, 1, 0, 0, 0, 1233, 712, 1, 0, 0, 0, 1233, 716, 1, 0, 0, 0, 1233, 724, 1, 0, 0, 0, 1233, 736, 1, 0, 0, 0, 1233, 744, 1, 0, 0, 0, 1233, 751, 1, 0, 0, 0, 1233, 758, 1, 0, 0, 0, 1233, 765, 1, 0, 0, 0, 1233, 780, 1, 0, 0, 0, 1233, 786, 1, 0, 0, 0, 1233, 793, 1, 0, 0, 0, 1233, 805, 1, 0, 0, 0, 1233, 812, 1, 0, 0, 0, 1233, 844, 1, 0, 0, 0, 1233, 866, 1, 0, 0, 0, 1233, 898, 1, 0, 0, 0, 1233, 921, 1, 0, 0, 0, 1233, 939, 1, 0, 0, 0, 1233, 950, 1, 0, 0, 0, 1233, 956, 1, 0, 0, 0, 1233, 971, 1, 0, 0, 0, 1233, 977, 1, 0, 0, 0, 1233, 981, 1, 0, 0, 0, 1233, 985, 1, 0, 0, 0, 1233, 989, 1, 0, 0, 0, 1233, 994, 1, 0, 0, 0, 1233, 998, 1, 0, 0, 0, 1233, 1012, 1, 0, 0, 0, 1233, 1026, 1, 0, 0, 0, 1233, 1036, 1, 0, 0, 0, 1233, 1048, 1, 0, 0, 0, 1233, 1052, 1, 0, 0, 0, 1233, 1059, 1, 0, 0, 0, 1233, 1068, 1, 0, 0, 0, 1233, 1075, 1, 0, 0, 0, 1233, 1077, 1, 0, 0, 0, 1233, 1079, 1, 0, 0, 0, 1233, 1093, 1, 0, 0, 0, 1233, 1103, 1, 0, 0, 0, 1233, 1107, 1, 0, 0, 0, 1233, 1110, 1, 0, 0, 0, 1233, 1116, 1, 0, 0, 0, 1233, 1119, 1, 0, 0, 0, 1233, 1131, 1, 0, 0, 0, 1233, 1135, 1, 0, 0, 0, 1233, 1139, 1, 0, 0, 0, 1233, 1144, 1, 0, 0, 0, 1233, 1147, 1, 0, 0, 0, 1233, 1160, 1, 0, 0, 0, 1233, 1174, 1, 0, 0, 0, 1233, 1177, 1, 0, 0, 0, 1233, 1180, 1, 0, 0, 0, 1233, 1183, 1, 0, 0, 0, 1233, 1190, 1, 0, 0, 0, 1233, 1205, 1, 0, 0, 0, 1233, 1223, 1, 0, 0, 0, 1233, 1228, 1, 0, 0, 0, 1234, 17, 1, 0, 0, 0, 1235, 1237, 3, 20, 10, 0, 1236, 1235, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 3, 22, 11, 0, 1239, 19, 1, 0, 0, 0, 1240, 1241, 5, 304, 0, 0, 1241, 1246, 3, 224, 112, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1245, 3, 224, 112, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 21, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1251, 3, 24, 12, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 3, 40, 20, 0, 1253, 23, 1, 0, 0, 0, 1254, 1256, 5, 304, 0, 0, 1255, 1257, 5, 221, 0, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1263, 3, 66, 33, 0, 1259, 1260, 5, 3, 0, 0, 1260, 1262, 3, 66, 33, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 25, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1269, 3, 28, 14, 0, 1267, 1269, 3, 30, 15, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 27, 1, 0, 0, 0, 1270, 1271, 3, 278, 139, 0, 1271, 1274, 3, 184, 92, 0, 1272, 1273, 5, 182, 0, 0, 1273, 1275, 5, 183, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1277, 5, 46, 0, 0, 1277, 1279, 3, 168, 84, 0, 1278, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 5, 304, 0, 0, 1281, 1283, 3, 32, 16, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 29, 1, 0, 0, 0, 1284, 1285, 5, 154, 0, 0, 1285, 1288, 3, 256, 128, 0, 1286, 1287, 7, 3, 0, 0, 1287, 1289, 5, 216, 0, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 31, 1, 0, 0, 0, 1290, 1291, 5, 1, 0, 0, 1291, 1292, 3, 34, 17, 0, 1292, 1293, 5, 2, 0, 0, 1293, 33, 1, 0, 0, 0, 1294, 1299, 3, 36, 18, 0, 1295, 1296, 5, 3, 0, 0, 1296, 1298, 3, 36, 18, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 35, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1303, 3, 294, 147, 0, 1303, 1304, 5, 312, 0, 0, 1304, 1305, 3, 38, 19, 0, 1305, 37, 1, 0, 0, 0, 1306, 1309, 5, 70, 0, 0, 1307, 1309, 3, 136, 68, 0, 1308, 1306, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1321, 3, 46, 23, 0, 1311, 1312, 5, 195, 0, 0, 1312, 1313, 5, 36, 0, 0, 1313, 1318, 3, 50, 25, 0, 1314, 1315, 5, 3, 0, 0, 1315, 1317, 3, 50, 25, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1311, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1328, 1, 0, 0, 0, 1323, 1324, 5, 188, 0, 0, 1324, 1326, 3, 44, 22, 0, 1325, 1327, 7, 4, 0, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 1, 0, 0, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1343, 1, 0, 0, 0, 1330, 1331, 5, 155, 0, 0, 1331, 1344, 3, 42, 21, 0, 1332, 1333, 5, 98, 0, 0, 1333, 1335, 7, 5, 0, 0, 1334, 1336, 3, 44, 22, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1341, 7, 4, 0, 0, 1338, 1342, 5, 192, 0, 0, 1339, 1340, 5, 304, 0, 0, 1340, 1342, 5, 266, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1342, 1344, 1, 0, 0, 0, 1343, 1330, 1, 0, 0, 0, 1343, 1332, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 41, 1, 0, 0, 0, 1345, 1348, 5, 22, 0, 0, 1346, 1348, 3, 44, 22, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1350, 7, 6, 0, 0, 1350, 45, 1, 0, 0, 0, 1351, 1352, 6, 23, -1, 0, 1352, 1353, 3, 48, 24, 0, 1353, 1368, 1, 0, 0, 0, 1354, 1355, 10, 2, 0, 0, 1355, 1357, 5, 128, 0, 0, 1356, 1358, 3, 68, 34, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1367, 3, 46, 23, 3, 1360, 1361, 10, 1, 0, 0, 1361, 1363, 7, 7, 0, 0, 1362, 1364, 3, 68, 34, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 46, 23, 2, 1366, 1354, 1, 0, 0, 0, 1366, 1360, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 47, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1388, 3, 52, 26, 0, 1372, 1373, 5, 260, 0, 0, 1373, 1388, 3, 256, 128, 0, 1374, 1375, 5, 296, 0, 0, 1375, 1380, 3, 136, 68, 0, 1376, 1377, 5, 3, 0, 0, 1377, 1379, 3, 136, 68, 0, 1378, 1376, 1, 0, 0, 0, 1379, 1382, 1, 0, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1388, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1383, 1384, 5, 1, 0, 0, 1384, 1385, 3, 40, 20, 0, 1385, 1386, 5, 2, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1371, 1, 0, 0, 0, 1387, 1372, 1, 0, 0, 0, 1387, 1374, 1, 0, 0, 0, 1387, 1383, 1, 0, 0, 0, 1388, 49, 1, 0, 0, 0, 1389, 1392, 3, 276, 138, 0, 1390, 1392, 3, 136, 68, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1390, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1395, 7, 8, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1398, 1, 0, 0, 0, 1396, 1397, 5, 185, 0, 0, 1397, 1399, 7, 9, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 51, 1, 0, 0, 0, 1400, 1402, 5, 248, 0, 0, 1401, 1403, 3, 68, 34, 0, 1402, 1401, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1409, 3, 70, 35, 0, 1405, 1406, 5, 3, 0, 0, 1406, 1408, 3, 70, 35, 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, 1421, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 105, 0, 0, 1413, 1418, 3, 72, 36, 0, 1414, 1415, 5, 3, 0, 0, 1415, 1417, 3, 72, 36, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1420, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1422, 1, 0, 0, 0, 1420, 1418, 1, 0, 0, 0, 1421, 1412, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1424, 5, 301, 0, 0, 1424, 1426, 3, 138, 69, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1430, 1, 0, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 36, 0, 0, 1429, 1431, 3, 54, 27, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1433, 5, 117, 0, 0, 1433, 1435, 3, 138, 69, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1445, 1, 0, 0, 0, 1436, 1437, 5, 303, 0, 0, 1437, 1442, 3, 62, 31, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1441, 3, 62, 31, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1444, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1436, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 53, 1, 0, 0, 0, 1447, 1449, 3, 68, 34, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1455, 3, 56, 28, 0, 1451, 1452, 5, 3, 0, 0, 1452, 1454, 3, 56, 28, 0, 1453, 1451, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 55, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1499, 3, 58, 29, 0, 1459, 1460, 5, 238, 0, 0, 1460, 1469, 5, 1, 0, 0, 1461, 1466, 3, 58, 29, 0, 1462, 1463, 5, 3, 0, 0, 1463, 1465, 3, 58, 29, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1470, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1461, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1499, 5, 2, 0, 0, 1472, 1473, 5, 55, 0, 0, 1473, 1482, 5, 1, 0, 0, 1474, 1479, 3, 58, 29, 0, 1475, 1476, 5, 3, 0, 0, 1476, 1478, 3, 58, 29, 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, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1474, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1499, 5, 2, 0, 0, 1485, 1486, 5, 115, 0, 0, 1486, 1487, 5, 252, 0, 0, 1487, 1488, 5, 1, 0, 0, 1488, 1493, 3, 58, 29, 0, 1489, 1490, 5, 3, 0, 0, 1490, 1492, 3, 58, 29, 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, 2, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1458, 1, 0, 0, 0, 1498, 1459, 1, 0, 0, 0, 1498, 1472, 1, 0, 0, 0, 1498, 1485, 1, 0, 0, 0, 1499, 57, 1, 0, 0, 0, 1500, 1509, 5, 1, 0, 0, 1501, 1506, 3, 60, 30, 0, 1502, 1503, 5, 3, 0, 0, 1503, 1505, 3, 60, 30, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1510, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1501, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 5, 2, 0, 0, 1512, 1514, 3, 60, 30, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 59, 1, 0, 0, 0, 1515, 1518, 3, 276, 138, 0, 1516, 1518, 3, 136, 68, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1516, 1, 0, 0, 0, 1518, 61, 1, 0, 0, 0, 1519, 1520, 3, 294, 147, 0, 1520, 1521, 5, 28, 0, 0, 1521, 1522, 5, 1, 0, 0, 1522, 1523, 3, 64, 32, 0, 1523, 1524, 5, 2, 0, 0, 1524, 63, 1, 0, 0, 0, 1525, 1527, 3, 294, 147, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1538, 1, 0, 0, 0, 1528, 1529, 5, 201, 0, 0, 1529, 1530, 5, 36, 0, 0, 1530, 1535, 3, 136, 68, 0, 1531, 1532, 5, 3, 0, 0, 1532, 1534, 3, 136, 68, 0, 1533, 1531, 1, 0, 0, 0, 1534, 1537, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1539, 1, 0, 0, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1528, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1550, 1, 0, 0, 0, 1540, 1541, 5, 195, 0, 0, 1541, 1542, 5, 36, 0, 0, 1542, 1547, 3, 50, 25, 0, 1543, 1544, 5, 3, 0, 0, 1544, 1546, 3, 50, 25, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1551, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1540, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1554, 3, 198, 99, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 65, 1, 0, 0, 0, 1555, 1557, 3, 294, 147, 0, 1556, 1558, 3, 108, 54, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 5, 28, 0, 0, 1560, 1561, 5, 1, 0, 0, 1561, 1562, 3, 22, 11, 0, 1562, 1563, 5, 2, 0, 0, 1563, 67, 1, 0, 0, 0, 1564, 1565, 7, 10, 0, 0, 1565, 69, 1, 0, 0, 0, 1566, 1569, 3, 276, 138, 0, 1567, 1569, 3, 136, 68, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1574, 1, 0, 0, 0, 1570, 1572, 5, 28, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 3, 294, 147, 0, 1574, 1571, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1585, 1, 0, 0, 0, 1576, 1577, 3, 144, 72, 0, 1577, 1578, 5, 4, 0, 0, 1578, 1581, 5, 320, 0, 0, 1579, 1580, 5, 28, 0, 0, 1580, 1582, 3, 108, 54, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1585, 5, 320, 0, 0, 1584, 1568, 1, 0, 0, 0, 1584, 1576, 1, 0, 0, 0, 1584, 1583, 1, 0, 0, 0, 1585, 71, 1, 0, 0, 0, 1586, 1587, 6, 36, -1, 0, 1587, 1588, 3, 78, 39, 0, 1588, 1607, 1, 0, 0, 0, 1589, 1603, 10, 2, 0, 0, 1590, 1591, 5, 54, 0, 0, 1591, 1592, 5, 136, 0, 0, 1592, 1604, 3, 78, 39, 0, 1593, 1594, 3, 74, 37, 0, 1594, 1595, 5, 136, 0, 0, 1595, 1596, 3, 72, 36, 0, 1596, 1597, 3, 76, 38, 0, 1597, 1604, 1, 0, 0, 0, 1598, 1599, 5, 172, 0, 0, 1599, 1600, 3, 74, 37, 0, 1600, 1601, 5, 136, 0, 0, 1601, 1602, 3, 78, 39, 0, 1602, 1604, 1, 0, 0, 0, 1603, 1590, 1, 0, 0, 0, 1603, 1593, 1, 0, 0, 0, 1603, 1598, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1589, 1, 0, 0, 0, 1606, 1609, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 73, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1612, 5, 125, 0, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1626, 1, 0, 0, 0, 1613, 1615, 5, 152, 0, 0, 1614, 1616, 5, 197, 0, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1626, 1, 0, 0, 0, 1617, 1619, 5, 234, 0, 0, 1618, 1620, 5, 197, 0, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1626, 1, 0, 0, 0, 1621, 1623, 5, 106, 0, 0, 1622, 1624, 5, 197, 0, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1611, 1, 0, 0, 0, 1625, 1613, 1, 0, 0, 0, 1625, 1617, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1626, 75, 1, 0, 0, 0, 1627, 1628, 5, 190, 0, 0, 1628, 1642, 3, 138, 69, 0, 1629, 1630, 5, 290, 0, 0, 1630, 1631, 5, 1, 0, 0, 1631, 1636, 3, 294, 147, 0, 1632, 1633, 5, 3, 0, 0, 1633, 1635, 3, 294, 147, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1627, 1, 0, 0, 0, 1641, 1629, 1, 0, 0, 0, 1642, 77, 1, 0, 0, 0, 1643, 1650, 3, 88, 44, 0, 1644, 1645, 5, 262, 0, 0, 1645, 1646, 3, 80, 40, 0, 1646, 1647, 5, 1, 0, 0, 1647, 1648, 3, 136, 68, 0, 1648, 1649, 5, 2, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1644, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 79, 1, 0, 0, 0, 1652, 1653, 7, 11, 0, 0, 1653, 81, 1, 0, 0, 0, 1654, 1655, 7, 12, 0, 0, 1655, 83, 1, 0, 0, 0, 1656, 1663, 5, 89, 0, 0, 1657, 1659, 5, 274, 0, 0, 1658, 1660, 3, 168, 84, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 3, 86, 43, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1663, 85, 1, 0, 0, 0, 1664, 1665, 5, 304, 0, 0, 1665, 1669, 5, 51, 0, 0, 1666, 1667, 5, 306, 0, 0, 1667, 1669, 5, 51, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 87, 1, 0, 0, 0, 1670, 1753, 3, 102, 51, 0, 1671, 1672, 5, 166, 0, 0, 1672, 1683, 5, 1, 0, 0, 1673, 1674, 5, 201, 0, 0, 1674, 1675, 5, 36, 0, 0, 1675, 1680, 3, 136, 68, 0, 1676, 1677, 5, 3, 0, 0, 1677, 1679, 3, 136, 68, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1673, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1695, 1, 0, 0, 0, 1685, 1686, 5, 195, 0, 0, 1686, 1687, 5, 36, 0, 0, 1687, 1692, 3, 50, 25, 0, 1688, 1689, 5, 3, 0, 0, 1689, 1691, 3, 50, 25, 0, 1690, 1688, 1, 0, 0, 0, 1691, 1694, 1, 0, 0, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1685, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1706, 1, 0, 0, 0, 1697, 1698, 5, 168, 0, 0, 1698, 1703, 3, 90, 45, 0, 1699, 1700, 5, 3, 0, 0, 1700, 1702, 3, 90, 45, 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, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1697, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 92, 46, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1714, 1, 0, 0, 0, 1711, 1712, 5, 21, 0, 0, 1712, 1713, 5, 163, 0, 0, 1713, 1715, 3, 96, 48, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1718, 7, 13, 0, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 5, 206, 0, 0, 1720, 1721, 5, 1, 0, 0, 1721, 1722, 3, 204, 102, 0, 1722, 1732, 5, 2, 0, 0, 1723, 1724, 5, 257, 0, 0, 1724, 1729, 3, 98, 49, 0, 1725, 1726, 5, 3, 0, 0, 1726, 1728, 3, 98, 49, 0, 1727, 1725, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1733, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1723, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 5, 71, 0, 0, 1735, 1740, 3, 100, 50, 0, 1736, 1737, 5, 3, 0, 0, 1737, 1739, 3, 100, 50, 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, 1751, 5, 2, 0, 0, 1744, 1746, 5, 28, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1749, 3, 294, 147, 0, 1748, 1750, 3, 108, 54, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 1, 0, 0, 0, 1751, 1745, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1671, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 89, 1, 0, 0, 0, 1755, 1756, 3, 136, 68, 0, 1756, 1757, 5, 28, 0, 0, 1757, 1758, 3, 294, 147, 0, 1758, 91, 1, 0, 0, 0, 1759, 1760, 5, 191, 0, 0, 1760, 1761, 5, 239, 0, 0, 1761, 1762, 5, 207, 0, 0, 1762, 1771, 5, 163, 0, 0, 1763, 1764, 5, 22, 0, 0, 1764, 1765, 5, 240, 0, 0, 1765, 1766, 5, 207, 0, 0, 1766, 1768, 5, 163, 0, 0, 1767, 1769, 3, 94, 47, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1759, 1, 0, 0, 0, 1770, 1763, 1, 0, 0, 0, 1771, 93, 1, 0, 0, 0, 1772, 1773, 5, 253, 0, 0, 1773, 1774, 5, 85, 0, 0, 1774, 1782, 5, 165, 0, 0, 1775, 1776, 5, 189, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1782, 5, 165, 0, 0, 1778, 1779, 5, 304, 0, 0, 1779, 1780, 5, 284, 0, 0, 1780, 1782, 5, 240, 0, 0, 1781, 1772, 1, 0, 0, 0, 1781, 1775, 1, 0, 0, 0, 1781, 1778, 1, 0, 0, 0, 1782, 95, 1, 0, 0, 0, 1783, 1784, 5, 5, 0, 0, 1784, 1785, 5, 269, 0, 0, 1785, 1786, 5, 174, 0, 0, 1786, 1803, 5, 239, 0, 0, 1787, 1788, 5, 5, 0, 0, 1788, 1789, 5, 204, 0, 0, 1789, 1790, 5, 148, 0, 0, 1790, 1803, 5, 239, 0, 0, 1791, 1792, 5, 5, 0, 0, 1792, 1793, 5, 269, 0, 0, 1793, 1794, 5, 101, 0, 0, 1794, 1803, 3, 294, 147, 0, 1795, 1796, 5, 5, 0, 0, 1796, 1797, 5, 269, 0, 0, 1797, 1798, 5, 148, 0, 0, 1798, 1803, 3, 294, 147, 0, 1799, 1800, 5, 5, 0, 0, 1800, 1801, 5, 269, 0, 0, 1801, 1803, 3, 294, 147, 0, 1802, 1783, 1, 0, 0, 0, 1802, 1787, 1, 0, 0, 0, 1802, 1791, 1, 0, 0, 0, 1802, 1795, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1803, 97, 1, 0, 0, 0, 1804, 1805, 3, 294, 147, 0, 1805, 1806, 5, 312, 0, 0, 1806, 1807, 5, 1, 0, 0, 1807, 1812, 3, 294, 147, 0, 1808, 1809, 5, 3, 0, 0, 1809, 1811, 3, 294, 147, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1816, 5, 2, 0, 0, 1816, 99, 1, 0, 0, 0, 1817, 1818, 3, 294, 147, 0, 1818, 1819, 5, 28, 0, 0, 1819, 1820, 3, 136, 68, 0, 1820, 101, 1, 0, 0, 0, 1821, 1829, 3, 110, 55, 0, 1822, 1824, 5, 28, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1827, 3, 294, 147, 0, 1826, 1828, 3, 108, 54, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 1, 0, 0, 0, 1829, 1823, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 103, 1, 0, 0, 0, 1831, 1832, 5, 1, 0, 0, 1832, 1837, 3, 278, 139, 0, 1833, 1834, 5, 3, 0, 0, 1834, 1836, 3, 278, 139, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1839, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1841, 5, 2, 0, 0, 1841, 105, 1, 0, 0, 0, 1842, 1843, 5, 1, 0, 0, 1843, 1848, 3, 276, 138, 0, 1844, 1845, 5, 3, 0, 0, 1845, 1847, 3, 276, 138, 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, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1852, 5, 2, 0, 0, 1852, 107, 1, 0, 0, 0, 1853, 1854, 5, 1, 0, 0, 1854, 1859, 3, 294, 147, 0, 1855, 1856, 5, 3, 0, 0, 1856, 1858, 3, 294, 147, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1863, 5, 2, 0, 0, 1863, 109, 1, 0, 0, 0, 1864, 1866, 3, 254, 127, 0, 1865, 1867, 3, 282, 141, 0, 1866, 1865, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1936, 1, 0, 0, 0, 1868, 1869, 5, 1, 0, 0, 1869, 1870, 3, 22, 11, 0, 1870, 1871, 5, 2, 0, 0, 1871, 1936, 1, 0, 0, 0, 1872, 1873, 5, 285, 0, 0, 1873, 1874, 5, 1, 0, 0, 1874, 1879, 3, 136, 68, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 3, 136, 68, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 5, 2, 0, 0, 1883, 1884, 5, 304, 0, 0, 1884, 1886, 5, 196, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1936, 1, 0, 0, 0, 1887, 1888, 5, 149, 0, 0, 1888, 1889, 5, 1, 0, 0, 1889, 1890, 3, 22, 11, 0, 1890, 1891, 5, 2, 0, 0, 1891, 1936, 1, 0, 0, 0, 1892, 1893, 5, 260, 0, 0, 1893, 1894, 5, 1, 0, 0, 1894, 1895, 3, 122, 61, 0, 1895, 1896, 5, 2, 0, 0, 1896, 1936, 1, 0, 0, 0, 1897, 1898, 5, 1, 0, 0, 1898, 1899, 3, 72, 36, 0, 1899, 1900, 5, 2, 0, 0, 1900, 1936, 1, 0, 0, 0, 1901, 1902, 5, 142, 0, 0, 1902, 1903, 5, 1, 0, 0, 1903, 1904, 3, 146, 73, 0, 1904, 1905, 5, 45, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1911, 3, 112, 56, 0, 1907, 1908, 5, 3, 0, 0, 1908, 1910, 3, 112, 56, 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, 1914, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1926, 5, 2, 0, 0, 1915, 1916, 5, 210, 0, 0, 1916, 1917, 5, 1, 0, 0, 1917, 1918, 3, 114, 57, 0, 1918, 1919, 5, 2, 0, 0, 1919, 1927, 1, 0, 0, 0, 1920, 1921, 5, 210, 0, 0, 1921, 1922, 5, 70, 0, 0, 1922, 1923, 5, 1, 0, 0, 1923, 1924, 3, 120, 60, 0, 1924, 1925, 5, 2, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1915, 1, 0, 0, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1931, 1, 0, 0, 0, 1928, 1929, 7, 14, 0, 0, 1929, 1930, 5, 190, 0, 0, 1930, 1932, 5, 89, 0, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 2, 0, 0, 1934, 1936, 1, 0, 0, 0, 1935, 1864, 1, 0, 0, 0, 1935, 1868, 1, 0, 0, 0, 1935, 1872, 1, 0, 0, 0, 1935, 1887, 1, 0, 0, 0, 1935, 1892, 1, 0, 0, 0, 1935, 1897, 1, 0, 0, 0, 1935, 1901, 1, 0, 0, 0, 1936, 111, 1, 0, 0, 0, 1937, 1938, 3, 294, 147, 0, 1938, 1939, 5, 103, 0, 0, 1939, 1940, 5, 196, 0, 0, 1940, 2015, 1, 0, 0, 0, 1941, 1942, 3, 294, 147, 0, 1942, 1945, 3, 184, 92, 0, 1943, 1944, 5, 205, 0, 0, 1944, 1946, 3, 168, 84, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 1, 0, 0, 0, 1947, 1948, 3, 156, 78, 0, 1948, 1949, 5, 190, 0, 0, 1949, 1950, 5, 85, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1957, 1, 0, 0, 0, 1953, 1954, 3, 156, 78, 0, 1954, 1955, 5, 190, 0, 0, 1955, 1956, 5, 89, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2015, 1, 0, 0, 0, 1959, 1960, 3, 294, 147, 0, 1960, 1961, 3, 184, 92, 0, 1961, 1962, 5, 104, 0, 0, 1962, 1965, 3, 150, 75, 0, 1963, 1964, 5, 205, 0, 0, 1964, 1966, 3, 168, 84, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1970, 1, 0, 0, 0, 1967, 1968, 3, 158, 79, 0, 1968, 1969, 5, 308, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1967, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1979, 1, 0, 0, 0, 1972, 1973, 7, 15, 0, 0, 1973, 1977, 5, 218, 0, 0, 1974, 1975, 5, 190, 0, 0, 1975, 1976, 5, 242, 0, 0, 1976, 1978, 5, 264, 0, 0, 1977, 1974, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1972, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1985, 1, 0, 0, 0, 1981, 1982, 3, 160, 80, 0, 1982, 1983, 5, 190, 0, 0, 1983, 1984, 5, 85, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1981, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1991, 1, 0, 0, 0, 1987, 1988, 3, 160, 80, 0, 1988, 1989, 5, 190, 0, 0, 1989, 1990, 5, 89, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1987, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2015, 1, 0, 0, 0, 1993, 1995, 5, 173, 0, 0, 1994, 1996, 5, 205, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 3, 168, 84, 0, 1998, 1999, 5, 28, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 5, 45, 0, 0, 2003, 2004, 5, 1, 0, 0, 2004, 2009, 3, 112, 56, 0, 2005, 2006, 5, 3, 0, 0, 2006, 2008, 3, 112, 56, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2013, 5, 2, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 1937, 1, 0, 0, 0, 2014, 1941, 1, 0, 0, 0, 2014, 1959, 1, 0, 0, 0, 2014, 1993, 1, 0, 0, 0, 2015, 113, 1, 0, 0, 0, 2016, 2042, 3, 116, 58, 0, 2017, 2018, 3, 116, 58, 0, 2018, 2019, 7, 16, 0, 0, 2019, 2020, 3, 118, 59, 0, 2020, 2042, 1, 0, 0, 0, 2021, 2022, 3, 118, 59, 0, 2022, 2023, 5, 281, 0, 0, 2023, 2028, 3, 118, 59, 0, 2024, 2025, 5, 281, 0, 0, 2025, 2027, 3, 118, 59, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2042, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2032, 3, 118, 59, 0, 2032, 2033, 5, 54, 0, 0, 2033, 2038, 3, 118, 59, 0, 2034, 2035, 5, 54, 0, 0, 2035, 2037, 3, 118, 59, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2016, 1, 0, 0, 0, 2041, 2017, 1, 0, 0, 0, 2041, 2021, 1, 0, 0, 0, 2041, 2031, 1, 0, 0, 0, 2042, 115, 1, 0, 0, 0, 2043, 2044, 3, 294, 147, 0, 2044, 117, 1, 0, 0, 0, 2045, 2051, 3, 116, 58, 0, 2046, 2047, 5, 1, 0, 0, 2047, 2048, 3, 114, 57, 0, 2048, 2049, 5, 2, 0, 0, 2049, 2051, 1, 0, 0, 0, 2050, 2045, 1, 0, 0, 0, 2050, 2046, 1, 0, 0, 0, 2051, 119, 1, 0, 0, 0, 2052, 2055, 7, 16, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 7, 17, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2063, 1, 0, 0, 0, 2057, 2060, 7, 17, 0, 0, 2058, 2059, 5, 3, 0, 0, 2059, 2061, 7, 16, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2052, 1, 0, 0, 0, 2062, 2057, 1, 0, 0, 0, 2063, 121, 1, 0, 0, 0, 2064, 2065, 3, 272, 136, 0, 2065, 2074, 5, 1, 0, 0, 2066, 2071, 3, 124, 62, 0, 2067, 2068, 5, 3, 0, 0, 2068, 2070, 3, 124, 62, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2073, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2066, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2085, 1, 0, 0, 0, 2076, 2077, 5, 52, 0, 0, 2077, 2082, 3, 134, 67, 0, 2078, 2079, 5, 3, 0, 0, 2079, 2081, 3, 134, 67, 0, 2080, 2078, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2076, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 5, 2, 0, 0, 2088, 123, 1, 0, 0, 0, 2089, 2090, 3, 294, 147, 0, 2090, 2091, 5, 6, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2098, 3, 126, 63, 0, 2095, 2098, 3, 130, 65, 0, 2096, 2098, 3, 136, 68, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2096, 1, 0, 0, 0, 2098, 125, 1, 0, 0, 0, 2099, 2117, 3, 128, 64, 0, 2100, 2101, 5, 201, 0, 0, 2101, 2115, 5, 36, 0, 0, 2102, 2111, 5, 1, 0, 0, 2103, 2108, 3, 136, 68, 0, 2104, 2105, 5, 3, 0, 0, 2105, 2107, 3, 136, 68, 0, 2106, 2104, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2108, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2116, 5, 2, 0, 0, 2114, 2116, 3, 136, 68, 0, 2115, 2102, 1, 0, 0, 0, 2115, 2114, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2100, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2125, 1, 0, 0, 0, 2119, 2120, 5, 217, 0, 0, 2120, 2121, 5, 300, 0, 0, 2121, 2126, 5, 85, 0, 0, 2122, 2123, 5, 144, 0, 0, 2123, 2124, 5, 300, 0, 0, 2124, 2126, 5, 85, 0, 0, 2125, 2119, 1, 0, 0, 0, 2125, 2122, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2143, 1, 0, 0, 0, 2127, 2128, 5, 195, 0, 0, 2128, 2141, 5, 36, 0, 0, 2129, 2130, 5, 1, 0, 0, 2130, 2135, 3, 50, 25, 0, 2131, 2132, 5, 3, 0, 0, 2132, 2134, 3, 50, 25, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2137, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2139, 5, 2, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2142, 3, 50, 25, 0, 2141, 2129, 1, 0, 0, 0, 2141, 2140, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2127, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 127, 1, 0, 0, 0, 2145, 2146, 5, 260, 0, 0, 2146, 2147, 5, 1, 0, 0, 2147, 2148, 3, 256, 128, 0, 2148, 2156, 5, 2, 0, 0, 2149, 2151, 5, 28, 0, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 3, 294, 147, 0, 2153, 2155, 3, 108, 54, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2150, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2172, 1, 0, 0, 0, 2158, 2159, 5, 260, 0, 0, 2159, 2160, 5, 1, 0, 0, 2160, 2161, 3, 22, 11, 0, 2161, 2169, 5, 2, 0, 0, 2162, 2164, 5, 28, 0, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 3, 294, 147, 0, 2166, 2168, 3, 108, 54, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2163, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2145, 1, 0, 0, 0, 2171, 2158, 1, 0, 0, 0, 2172, 129, 1, 0, 0, 0, 2173, 2174, 5, 77, 0, 0, 2174, 2175, 5, 1, 0, 0, 2175, 2180, 3, 132, 66, 0, 2176, 2177, 5, 3, 0, 0, 2177, 2179, 3, 132, 66, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2184, 5, 2, 0, 0, 2184, 2192, 1, 0, 0, 0, 2185, 2186, 5, 41, 0, 0, 2186, 2187, 5, 1, 0, 0, 2187, 2188, 5, 183, 0, 0, 2188, 2189, 5, 28, 0, 0, 2189, 2190, 5, 77, 0, 0, 2190, 2192, 5, 2, 0, 0, 2191, 2173, 1, 0, 0, 0, 2191, 2185, 1, 0, 0, 0, 2192, 131, 1, 0, 0, 0, 2193, 2195, 3, 294, 147, 0, 2194, 2196, 3, 184, 92, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 133, 1, 0, 0, 0, 2197, 2198, 5, 1, 0, 0, 2198, 2199, 3, 280, 140, 0, 2199, 2200, 5, 3, 0, 0, 2200, 2205, 3, 280, 140, 0, 2201, 2202, 5, 3, 0, 0, 2202, 2204, 3, 280, 140, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2208, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2209, 5, 2, 0, 0, 2209, 135, 1, 0, 0, 0, 2210, 2211, 3, 138, 69, 0, 2211, 137, 1, 0, 0, 0, 2212, 2213, 6, 69, -1, 0, 2213, 2215, 3, 142, 71, 0, 2214, 2216, 3, 140, 70, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2220, 1, 0, 0, 0, 2217, 2218, 5, 182, 0, 0, 2218, 2220, 3, 138, 69, 3, 2219, 2212, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2229, 1, 0, 0, 0, 2221, 2222, 10, 2, 0, 0, 2222, 2223, 5, 25, 0, 0, 2223, 2228, 3, 138, 69, 3, 2224, 2225, 10, 1, 0, 0, 2225, 2226, 5, 194, 0, 0, 2226, 2228, 3, 138, 69, 2, 2227, 2221, 1, 0, 0, 0, 2227, 2224, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 139, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 3, 172, 86, 0, 2233, 2234, 3, 142, 71, 0, 2234, 2294, 1, 0, 0, 0, 2235, 2236, 3, 172, 86, 0, 2236, 2237, 3, 174, 87, 0, 2237, 2238, 5, 1, 0, 0, 2238, 2239, 3, 22, 11, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2294, 1, 0, 0, 0, 2241, 2243, 5, 182, 0, 0, 2242, 2241, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 5, 34, 0, 0, 2245, 2246, 3, 142, 71, 0, 2246, 2247, 5, 25, 0, 0, 2247, 2248, 3, 142, 71, 0, 2248, 2294, 1, 0, 0, 0, 2249, 2251, 5, 182, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 122, 0, 0, 2253, 2254, 5, 1, 0, 0, 2254, 2259, 3, 136, 68, 0, 2255, 2256, 5, 3, 0, 0, 2256, 2258, 3, 136, 68, 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, 2, 0, 0, 2263, 2294, 1, 0, 0, 0, 2264, 2266, 5, 182, 0, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 5, 122, 0, 0, 2268, 2269, 5, 1, 0, 0, 2269, 2270, 3, 22, 11, 0, 2270, 2271, 5, 2, 0, 0, 2271, 2294, 1, 0, 0, 0, 2272, 2274, 5, 182, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 5, 154, 0, 0, 2276, 2279, 3, 142, 71, 0, 2277, 2278, 5, 90, 0, 0, 2278, 2280, 3, 142, 71, 0, 2279, 2277, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2294, 1, 0, 0, 0, 2281, 2283, 5, 133, 0, 0, 2282, 2284, 5, 182, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2294, 5, 183, 0, 0, 2286, 2288, 5, 133, 0, 0, 2287, 2289, 5, 182, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 5, 79, 0, 0, 2291, 2292, 5, 105, 0, 0, 2292, 2294, 3, 142, 71, 0, 2293, 2232, 1, 0, 0, 0, 2293, 2235, 1, 0, 0, 0, 2293, 2242, 1, 0, 0, 0, 2293, 2250, 1, 0, 0, 0, 2293, 2265, 1, 0, 0, 0, 2293, 2273, 1, 0, 0, 0, 2293, 2281, 1, 0, 0, 0, 2293, 2286, 1, 0, 0, 0, 2294, 141, 1, 0, 0, 0, 2295, 2296, 6, 71, -1, 0, 2296, 2300, 3, 144, 72, 0, 2297, 2298, 7, 18, 0, 0, 2298, 2300, 3, 142, 71, 4, 2299, 2295, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2315, 1, 0, 0, 0, 2301, 2302, 10, 3, 0, 0, 2302, 2303, 7, 19, 0, 0, 2303, 2314, 3, 142, 71, 4, 2304, 2305, 10, 2, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2314, 3, 142, 71, 3, 2307, 2308, 10, 1, 0, 0, 2308, 2309, 5, 323, 0, 0, 2309, 2314, 3, 142, 71, 2, 2310, 2311, 10, 5, 0, 0, 2311, 2312, 5, 30, 0, 0, 2312, 2314, 3, 170, 85, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2304, 1, 0, 0, 0, 2313, 2307, 1, 0, 0, 0, 2313, 2310, 1, 0, 0, 0, 2314, 2317, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 143, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2318, 2319, 6, 72, -1, 0, 2319, 2772, 5, 183, 0, 0, 2320, 2772, 3, 178, 89, 0, 2321, 2322, 3, 294, 147, 0, 2322, 2323, 3, 168, 84, 0, 2323, 2772, 1, 0, 0, 0, 2324, 2325, 5, 82, 0, 0, 2325, 2326, 5, 213, 0, 0, 2326, 2772, 3, 168, 84, 0, 2327, 2772, 3, 296, 148, 0, 2328, 2772, 3, 176, 88, 0, 2329, 2772, 3, 168, 84, 0, 2330, 2772, 5, 328, 0, 0, 2331, 2772, 5, 324, 0, 0, 2332, 2333, 5, 211, 0, 0, 2333, 2334, 5, 1, 0, 0, 2334, 2335, 3, 142, 71, 0, 2335, 2336, 5, 122, 0, 0, 2336, 2337, 3, 142, 71, 0, 2337, 2338, 5, 2, 0, 0, 2338, 2772, 1, 0, 0, 0, 2339, 2340, 5, 1, 0, 0, 2340, 2343, 3, 136, 68, 0, 2341, 2342, 5, 3, 0, 0, 2342, 2344, 3, 136, 68, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 5, 2, 0, 0, 2348, 2772, 1, 0, 0, 0, 2349, 2350, 5, 239, 0, 0, 2350, 2351, 5, 1, 0, 0, 2351, 2356, 3, 136, 68, 0, 2352, 2353, 5, 3, 0, 0, 2353, 2355, 3, 136, 68, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2772, 1, 0, 0, 0, 2361, 2362, 5, 156, 0, 0, 2362, 2364, 5, 1, 0, 0, 2363, 2365, 3, 68, 34, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2369, 3, 136, 68, 0, 2367, 2368, 5, 3, 0, 0, 2368, 2370, 3, 168, 84, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2374, 1, 0, 0, 0, 2371, 2372, 5, 190, 0, 0, 2372, 2373, 5, 200, 0, 0, 2373, 2375, 3, 84, 42, 0, 2374, 2371, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 2, 0, 0, 2377, 2378, 5, 305, 0, 0, 2378, 2379, 5, 114, 0, 0, 2379, 2380, 5, 1, 0, 0, 2380, 2381, 5, 195, 0, 0, 2381, 2382, 5, 36, 0, 0, 2382, 2387, 3, 50, 25, 0, 2383, 2384, 5, 3, 0, 0, 2384, 2386, 3, 50, 25, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2394, 3, 192, 96, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2772, 1, 0, 0, 0, 2395, 2397, 3, 164, 82, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 3, 272, 136, 0, 2399, 2403, 5, 1, 0, 0, 2400, 2401, 3, 294, 147, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 5, 320, 0, 0, 2406, 2408, 5, 2, 0, 0, 2407, 2409, 3, 192, 96, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2412, 3, 196, 98, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2772, 1, 0, 0, 0, 2413, 2415, 3, 164, 82, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 3, 272, 136, 0, 2417, 2429, 5, 1, 0, 0, 2418, 2420, 3, 68, 34, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2426, 3, 136, 68, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2425, 3, 136, 68, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2428, 1, 0, 0, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2430, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2419, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2441, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 36, 0, 0, 2433, 2438, 3, 50, 25, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2437, 3, 50, 25, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2442, 1, 0, 0, 0, 2440, 2438, 1, 0, 0, 0, 2441, 2431, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 5, 2, 0, 0, 2444, 2446, 3, 192, 96, 0, 2445, 2444, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2451, 1, 0, 0, 0, 2447, 2449, 3, 166, 83, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2452, 3, 196, 98, 0, 2451, 2448, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2772, 1, 0, 0, 0, 2453, 2454, 3, 294, 147, 0, 2454, 2455, 3, 196, 98, 0, 2455, 2772, 1, 0, 0, 0, 2456, 2457, 3, 294, 147, 0, 2457, 2458, 5, 7, 0, 0, 2458, 2459, 3, 136, 68, 0, 2459, 2772, 1, 0, 0, 0, 2460, 2469, 5, 1, 0, 0, 2461, 2466, 3, 294, 147, 0, 2462, 2463, 5, 3, 0, 0, 2463, 2465, 3, 294, 147, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2461, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2472, 5, 2, 0, 0, 2472, 2473, 5, 7, 0, 0, 2473, 2772, 3, 136, 68, 0, 2474, 2475, 5, 1, 0, 0, 2475, 2476, 3, 22, 11, 0, 2476, 2477, 5, 2, 0, 0, 2477, 2772, 1, 0, 0, 0, 2478, 2479, 5, 94, 0, 0, 2479, 2480, 5, 1, 0, 0, 2480, 2481, 3, 22, 11, 0, 2481, 2482, 5, 2, 0, 0, 2482, 2772, 1, 0, 0, 0, 2483, 2484, 5, 40, 0, 0, 2484, 2486, 3, 136, 68, 0, 2485, 2487, 3, 190, 95, 0, 2486, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2492, 1, 0, 0, 0, 2490, 2491, 5, 84, 0, 0, 2491, 2493, 3, 136, 68, 0, 2492, 2490, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2495, 5, 88, 0, 0, 2495, 2772, 1, 0, 0, 0, 2496, 2498, 5, 40, 0, 0, 2497, 2499, 3, 190, 95, 0, 2498, 2497, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2503, 5, 84, 0, 0, 2503, 2505, 3, 136, 68, 0, 2504, 2502, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2507, 5, 88, 0, 0, 2507, 2772, 1, 0, 0, 0, 2508, 2509, 5, 41, 0, 0, 2509, 2510, 5, 1, 0, 0, 2510, 2511, 3, 136, 68, 0, 2511, 2512, 5, 28, 0, 0, 2512, 2513, 3, 184, 92, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2772, 1, 0, 0, 0, 2515, 2516, 5, 275, 0, 0, 2516, 2517, 5, 1, 0, 0, 2517, 2518, 3, 136, 68, 0, 2518, 2519, 5, 28, 0, 0, 2519, 2520, 3, 184, 92, 0, 2520, 2521, 5, 2, 0, 0, 2521, 2772, 1, 0, 0, 0, 2522, 2523, 5, 27, 0, 0, 2523, 2532, 5, 8, 0, 0, 2524, 2529, 3, 136, 68, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2528, 3, 136, 68, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2531, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2533, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 2524, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2772, 5, 9, 0, 0, 2535, 2772, 3, 294, 147, 0, 2536, 2772, 5, 58, 0, 0, 2537, 2541, 5, 62, 0, 0, 2538, 2539, 5, 1, 0, 0, 2539, 2540, 5, 329, 0, 0, 2540, 2542, 5, 2, 0, 0, 2541, 2538, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2772, 1, 0, 0, 0, 2543, 2547, 5, 63, 0, 0, 2544, 2545, 5, 1, 0, 0, 2545, 2546, 5, 329, 0, 0, 2546, 2548, 5, 2, 0, 0, 2547, 2544, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2772, 1, 0, 0, 0, 2549, 2553, 5, 158, 0, 0, 2550, 2551, 5, 1, 0, 0, 2551, 2552, 5, 329, 0, 0, 2552, 2554, 5, 2, 0, 0, 2553, 2550, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2772, 1, 0, 0, 0, 2555, 2559, 5, 159, 0, 0, 2556, 2557, 5, 1, 0, 0, 2557, 2558, 5, 329, 0, 0, 2558, 2560, 5, 2, 0, 0, 2559, 2556, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2772, 1, 0, 0, 0, 2561, 2772, 5, 64, 0, 0, 2562, 2772, 5, 57, 0, 0, 2563, 2772, 5, 61, 0, 0, 2564, 2772, 5, 59, 0, 0, 2565, 2566, 5, 272, 0, 0, 2566, 2574, 5, 1, 0, 0, 2567, 2569, 3, 82, 41, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 142, 71, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 5, 105, 0, 0, 2574, 2568, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 3, 142, 71, 0, 2577, 2578, 5, 2, 0, 0, 2578, 2772, 1, 0, 0, 0, 2579, 2580, 5, 272, 0, 0, 2580, 2581, 5, 1, 0, 0, 2581, 2582, 3, 142, 71, 0, 2582, 2583, 5, 3, 0, 0, 2583, 2584, 3, 142, 71, 0, 2584, 2585, 5, 2, 0, 0, 2585, 2772, 1, 0, 0, 0, 2586, 2587, 5, 258, 0, 0, 2587, 2588, 5, 1, 0, 0, 2588, 2589, 3, 142, 71, 0, 2589, 2590, 5, 105, 0, 0, 2590, 2593, 3, 142, 71, 0, 2591, 2592, 5, 103, 0, 0, 2592, 2594, 3, 142, 71, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 5, 2, 0, 0, 2596, 2772, 1, 0, 0, 0, 2597, 2598, 5, 181, 0, 0, 2598, 2599, 5, 1, 0, 0, 2599, 2602, 3, 142, 71, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2603, 3, 182, 91, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 5, 2, 0, 0, 2605, 2772, 1, 0, 0, 0, 2606, 2607, 5, 96, 0, 0, 2607, 2608, 5, 1, 0, 0, 2608, 2609, 3, 294, 147, 0, 2609, 2610, 5, 105, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2772, 1, 0, 0, 0, 2613, 2614, 5, 1, 0, 0, 2614, 2615, 3, 136, 68, 0, 2615, 2616, 5, 2, 0, 0, 2616, 2772, 1, 0, 0, 0, 2617, 2618, 5, 115, 0, 0, 2618, 2627, 5, 1, 0, 0, 2619, 2624, 3, 280, 140, 0, 2620, 2621, 5, 3, 0, 0, 2621, 2623, 3, 280, 140, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2626, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2619, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2772, 5, 2, 0, 0, 2630, 2631, 5, 139, 0, 0, 2631, 2632, 5, 1, 0, 0, 2632, 2637, 3, 146, 73, 0, 2633, 2634, 3, 154, 77, 0, 2634, 2635, 5, 190, 0, 0, 2635, 2636, 5, 89, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2633, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 5, 2, 0, 0, 2640, 2772, 1, 0, 0, 0, 2641, 2642, 5, 143, 0, 0, 2642, 2643, 5, 1, 0, 0, 2643, 2646, 3, 146, 73, 0, 2644, 2645, 5, 231, 0, 0, 2645, 2647, 3, 184, 92, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2652, 1, 0, 0, 0, 2648, 2649, 3, 156, 78, 0, 2649, 2650, 5, 190, 0, 0, 2650, 2651, 5, 85, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2658, 1, 0, 0, 0, 2654, 2655, 3, 156, 78, 0, 2655, 2656, 5, 190, 0, 0, 2656, 2657, 5, 89, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 5, 2, 0, 0, 2661, 2772, 1, 0, 0, 0, 2662, 2663, 5, 141, 0, 0, 2663, 2664, 5, 1, 0, 0, 2664, 2671, 3, 146, 73, 0, 2665, 2666, 5, 231, 0, 0, 2666, 2669, 3, 184, 92, 0, 2667, 2668, 5, 104, 0, 0, 2668, 2670, 3, 150, 75, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2665, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2676, 1, 0, 0, 0, 2673, 2674, 3, 158, 79, 0, 2674, 2675, 5, 308, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2673, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2685, 1, 0, 0, 0, 2678, 2679, 7, 15, 0, 0, 2679, 2683, 5, 218, 0, 0, 2680, 2681, 5, 190, 0, 0, 2681, 2682, 5, 242, 0, 0, 2682, 2684, 5, 264, 0, 0, 2683, 2680, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2678, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2691, 1, 0, 0, 0, 2687, 2688, 3, 160, 80, 0, 2688, 2689, 5, 190, 0, 0, 2689, 2690, 5, 85, 0, 0, 2690, 2692, 1, 0, 0, 0, 2691, 2687, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2697, 1, 0, 0, 0, 2693, 2694, 3, 160, 80, 0, 2694, 2695, 5, 190, 0, 0, 2695, 2696, 5, 89, 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, 2, 0, 0, 2700, 2772, 1, 0, 0, 0, 2701, 2702, 5, 140, 0, 0, 2702, 2731, 5, 1, 0, 0, 2703, 2708, 3, 162, 81, 0, 2704, 2705, 5, 3, 0, 0, 2705, 2707, 3, 162, 81, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2717, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2712, 5, 183, 0, 0, 2712, 2713, 5, 190, 0, 0, 2713, 2718, 5, 183, 0, 0, 2714, 2715, 5, 18, 0, 0, 2715, 2716, 5, 190, 0, 0, 2716, 2718, 5, 183, 0, 0, 2717, 2711, 1, 0, 0, 0, 2717, 2714, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2729, 1, 0, 0, 0, 2719, 2720, 5, 304, 0, 0, 2720, 2722, 5, 282, 0, 0, 2721, 2723, 5, 146, 0, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2730, 1, 0, 0, 0, 2724, 2725, 5, 306, 0, 0, 2725, 2727, 5, 282, 0, 0, 2726, 2728, 5, 146, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2730, 1, 0, 0, 0, 2729, 2719, 1, 0, 0, 0, 2729, 2724, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2732, 1, 0, 0, 0, 2731, 2703, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2739, 1, 0, 0, 0, 2733, 2734, 5, 231, 0, 0, 2734, 2737, 3, 184, 92, 0, 2735, 2736, 5, 104, 0, 0, 2736, 2738, 3, 150, 75, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2733, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2772, 5, 2, 0, 0, 2742, 2743, 5, 138, 0, 0, 2743, 2760, 5, 1, 0, 0, 2744, 2749, 3, 148, 74, 0, 2745, 2746, 5, 3, 0, 0, 2746, 2748, 3, 148, 74, 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, 2758, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 183, 0, 0, 2753, 2754, 5, 190, 0, 0, 2754, 2759, 5, 183, 0, 0, 2755, 2756, 5, 18, 0, 0, 2756, 2757, 5, 190, 0, 0, 2757, 2759, 5, 183, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2755, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2744, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2768, 1, 0, 0, 0, 2762, 2763, 5, 231, 0, 0, 2763, 2766, 3, 184, 92, 0, 2764, 2765, 5, 104, 0, 0, 2765, 2767, 3, 150, 75, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2762, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 5, 2, 0, 0, 2771, 2318, 1, 0, 0, 0, 2771, 2320, 1, 0, 0, 0, 2771, 2321, 1, 0, 0, 0, 2771, 2324, 1, 0, 0, 0, 2771, 2327, 1, 0, 0, 0, 2771, 2328, 1, 0, 0, 0, 2771, 2329, 1, 0, 0, 0, 2771, 2330, 1, 0, 0, 0, 2771, 2331, 1, 0, 0, 0, 2771, 2332, 1, 0, 0, 0, 2771, 2339, 1, 0, 0, 0, 2771, 2349, 1, 0, 0, 0, 2771, 2361, 1, 0, 0, 0, 2771, 2396, 1, 0, 0, 0, 2771, 2414, 1, 0, 0, 0, 2771, 2453, 1, 0, 0, 0, 2771, 2456, 1, 0, 0, 0, 2771, 2460, 1, 0, 0, 0, 2771, 2474, 1, 0, 0, 0, 2771, 2478, 1, 0, 0, 0, 2771, 2483, 1, 0, 0, 0, 2771, 2496, 1, 0, 0, 0, 2771, 2508, 1, 0, 0, 0, 2771, 2515, 1, 0, 0, 0, 2771, 2522, 1, 0, 0, 0, 2771, 2535, 1, 0, 0, 0, 2771, 2536, 1, 0, 0, 0, 2771, 2537, 1, 0, 0, 0, 2771, 2543, 1, 0, 0, 0, 2771, 2549, 1, 0, 0, 0, 2771, 2555, 1, 0, 0, 0, 2771, 2561, 1, 0, 0, 0, 2771, 2562, 1, 0, 0, 0, 2771, 2563, 1, 0, 0, 0, 2771, 2564, 1, 0, 0, 0, 2771, 2565, 1, 0, 0, 0, 2771, 2579, 1, 0, 0, 0, 2771, 2586, 1, 0, 0, 0, 2771, 2597, 1, 0, 0, 0, 2771, 2606, 1, 0, 0, 0, 2771, 2613, 1, 0, 0, 0, 2771, 2617, 1, 0, 0, 0, 2771, 2630, 1, 0, 0, 0, 2771, 2641, 1, 0, 0, 0, 2771, 2662, 1, 0, 0, 0, 2771, 2701, 1, 0, 0, 0, 2771, 2742, 1, 0, 0, 0, 2772, 2783, 1, 0, 0, 0, 2773, 2774, 10, 24, 0, 0, 2774, 2775, 5, 8, 0, 0, 2775, 2776, 3, 142, 71, 0, 2776, 2777, 5, 9, 0, 0, 2777, 2782, 1, 0, 0, 0, 2778, 2779, 10, 22, 0, 0, 2779, 2780, 5, 4, 0, 0, 2780, 2782, 3, 294, 147, 0, 2781, 2773, 1, 0, 0, 0, 2781, 2778, 1, 0, 0, 0, 2782, 2785, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 145, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2786, 2787, 3, 148, 74, 0, 2787, 2788, 5, 3, 0, 0, 2788, 2791, 3, 168, 84, 0, 2789, 2790, 5, 28, 0, 0, 2790, 2792, 3, 294, 147, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2802, 1, 0, 0, 0, 2793, 2794, 5, 203, 0, 0, 2794, 2799, 3, 152, 76, 0, 2795, 2796, 5, 3, 0, 0, 2796, 2798, 3, 152, 76, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2801, 1, 0, 0, 0, 2799, 2797, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2803, 1, 0, 0, 0, 2801, 2799, 1, 0, 0, 0, 2802, 2793, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 147, 1, 0, 0, 0, 2804, 2807, 3, 136, 68, 0, 2805, 2806, 5, 104, 0, 0, 2806, 2808, 3, 150, 75, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 149, 1, 0, 0, 0, 2809, 2812, 5, 137, 0, 0, 2810, 2811, 5, 87, 0, 0, 2811, 2813, 7, 20, 0, 0, 2812, 2810, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 151, 1, 0, 0, 0, 2814, 2815, 3, 148, 74, 0, 2815, 2816, 5, 28, 0, 0, 2816, 2817, 3, 294, 147, 0, 2817, 153, 1, 0, 0, 0, 2818, 2819, 7, 21, 0, 0, 2819, 155, 1, 0, 0, 0, 2820, 2825, 5, 89, 0, 0, 2821, 2825, 5, 183, 0, 0, 2822, 2823, 5, 70, 0, 0, 2823, 2825, 3, 136, 68, 0, 2824, 2820, 1, 0, 0, 0, 2824, 2821, 1, 0, 0, 0, 2824, 2822, 1, 0, 0, 0, 2825, 157, 1, 0, 0, 0, 2826, 2828, 5, 306, 0, 0, 2827, 2829, 5, 27, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2838, 1, 0, 0, 0, 2830, 2832, 5, 304, 0, 0, 2831, 2833, 7, 22, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 27, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2826, 1, 0, 0, 0, 2837, 2830, 1, 0, 0, 0, 2838, 159, 1, 0, 0, 0, 2839, 2846, 5, 89, 0, 0, 2840, 2846, 5, 183, 0, 0, 2841, 2842, 5, 85, 0, 0, 2842, 2846, 5, 27, 0, 0, 2843, 2844, 5, 85, 0, 0, 2844, 2846, 5, 186, 0, 0, 2845, 2839, 1, 0, 0, 0, 2845, 2840, 1, 0, 0, 0, 2845, 2841, 1, 0, 0, 0, 2845, 2843, 1, 0, 0, 0, 2846, 161, 1, 0, 0, 0, 2847, 2849, 5, 145, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 136, 68, 0, 2851, 2852, 5, 295, 0, 0, 2852, 2853, 3, 148, 74, 0, 2853, 2859, 1, 0, 0, 0, 2854, 2855, 3, 136, 68, 0, 2855, 2856, 5, 10, 0, 0, 2856, 2857, 3, 148, 74, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2848, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 163, 1, 0, 0, 0, 2860, 2861, 7, 23, 0, 0, 2861, 165, 1, 0, 0, 0, 2862, 2863, 5, 120, 0, 0, 2863, 2867, 5, 185, 0, 0, 2864, 2865, 5, 228, 0, 0, 2865, 2867, 5, 185, 0, 0, 2866, 2862, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2867, 167, 1, 0, 0, 0, 2868, 2875, 5, 326, 0, 0, 2869, 2872, 5, 327, 0, 0, 2870, 2871, 5, 277, 0, 0, 2871, 2873, 5, 326, 0, 0, 2872, 2870, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2868, 1, 0, 0, 0, 2874, 2869, 1, 0, 0, 0, 2875, 169, 1, 0, 0, 0, 2876, 2877, 5, 267, 0, 0, 2877, 2878, 5, 311, 0, 0, 2878, 2883, 3, 178, 89, 0, 2879, 2880, 5, 267, 0, 0, 2880, 2881, 5, 311, 0, 0, 2881, 2883, 3, 168, 84, 0, 2882, 2876, 1, 0, 0, 0, 2882, 2879, 1, 0, 0, 0, 2883, 171, 1, 0, 0, 0, 2884, 2885, 7, 24, 0, 0, 2885, 173, 1, 0, 0, 0, 2886, 2887, 7, 25, 0, 0, 2887, 175, 1, 0, 0, 0, 2888, 2889, 7, 26, 0, 0, 2889, 177, 1, 0, 0, 0, 2890, 2892, 5, 129, 0, 0, 2891, 2893, 7, 18, 0, 0, 2892, 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 3, 168, 84, 0, 2895, 2898, 3, 180, 90, 0, 2896, 2897, 5, 269, 0, 0, 2897, 2899, 3, 180, 90, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 179, 1, 0, 0, 0, 2900, 2901, 7, 27, 0, 0, 2901, 181, 1, 0, 0, 0, 2902, 2903, 7, 28, 0, 0, 2903, 183, 1, 0, 0, 0, 2904, 2905, 6, 92, -1, 0, 2905, 2906, 5, 239, 0, 0, 2906, 2907, 5, 1, 0, 0, 2907, 2912, 3, 186, 93, 0, 2908, 2909, 5, 3, 0, 0, 2909, 2911, 3, 186, 93, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2914, 1, 0, 0, 0, 2912, 2910, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2915, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2916, 5, 2, 0, 0, 2916, 2976, 1, 0, 0, 0, 2917, 2918, 5, 129, 0, 0, 2918, 2921, 3, 180, 90, 0, 2919, 2920, 5, 269, 0, 0, 2920, 2922, 3, 180, 90, 0, 2921, 2919, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2976, 1, 0, 0, 0, 2923, 2928, 5, 268, 0, 0, 2924, 2925, 5, 1, 0, 0, 2925, 2926, 3, 188, 94, 0, 2926, 2927, 5, 2, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2924, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2933, 1, 0, 0, 0, 2930, 2931, 7, 29, 0, 0, 2931, 2932, 5, 267, 0, 0, 2932, 2934, 5, 311, 0, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2976, 1, 0, 0, 0, 2935, 2940, 5, 267, 0, 0, 2936, 2937, 5, 1, 0, 0, 2937, 2938, 3, 188, 94, 0, 2938, 2939, 5, 2, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2936, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2945, 1, 0, 0, 0, 2942, 2943, 7, 29, 0, 0, 2943, 2944, 5, 267, 0, 0, 2944, 2946, 5, 311, 0, 0, 2945, 2942, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2976, 1, 0, 0, 0, 2947, 2948, 5, 82, 0, 0, 2948, 2976, 5, 213, 0, 0, 2949, 2950, 5, 27, 0, 0, 2950, 2951, 5, 314, 0, 0, 2951, 2952, 3, 184, 92, 0, 2952, 2953, 5, 316, 0, 0, 2953, 2976, 1, 0, 0, 0, 2954, 2955, 5, 162, 0, 0, 2955, 2956, 5, 314, 0, 0, 2956, 2957, 3, 184, 92, 0, 2957, 2958, 5, 3, 0, 0, 2958, 2959, 3, 184, 92, 0, 2959, 2960, 5, 316, 0, 0, 2960, 2976, 1, 0, 0, 0, 2961, 2973, 3, 294, 147, 0, 2962, 2963, 5, 1, 0, 0, 2963, 2968, 3, 188, 94, 0, 2964, 2965, 5, 3, 0, 0, 2965, 2967, 3, 188, 94, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2970, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2972, 5, 2, 0, 0, 2972, 2974, 1, 0, 0, 0, 2973, 2962, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2976, 1, 0, 0, 0, 2975, 2904, 1, 0, 0, 0, 2975, 2917, 1, 0, 0, 0, 2975, 2923, 1, 0, 0, 0, 2975, 2935, 1, 0, 0, 0, 2975, 2947, 1, 0, 0, 0, 2975, 2949, 1, 0, 0, 0, 2975, 2954, 1, 0, 0, 0, 2975, 2961, 1, 0, 0, 0, 2976, 2986, 1, 0, 0, 0, 2977, 2978, 10, 2, 0, 0, 2978, 2982, 5, 27, 0, 0, 2979, 2980, 5, 8, 0, 0, 2980, 2981, 5, 329, 0, 0, 2981, 2983, 5, 9, 0, 0, 2982, 2979, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2977, 1, 0, 0, 0, 2985, 2988, 1, 0, 0, 0, 2986, 2984, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 185, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2989, 2994, 3, 184, 92, 0, 2990, 2991, 3, 294, 147, 0, 2991, 2992, 3, 184, 92, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2989, 1, 0, 0, 0, 2993, 2990, 1, 0, 0, 0, 2994, 187, 1, 0, 0, 0, 2995, 2998, 5, 329, 0, 0, 2996, 2998, 3, 184, 92, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2996, 1, 0, 0, 0, 2998, 189, 1, 0, 0, 0, 2999, 3000, 5, 300, 0, 0, 3000, 3001, 3, 136, 68, 0, 3001, 3002, 5, 265, 0, 0, 3002, 3003, 3, 136, 68, 0, 3003, 191, 1, 0, 0, 0, 3004, 3005, 5, 99, 0, 0, 3005, 3006, 5, 1, 0, 0, 3006, 3007, 5, 301, 0, 0, 3007, 3008, 3, 138, 69, 0, 3008, 3009, 5, 2, 0, 0, 3009, 193, 1, 0, 0, 0, 3010, 3011, 5, 300, 0, 0, 3011, 3014, 5, 164, 0, 0, 3012, 3013, 5, 25, 0, 0, 3013, 3015, 3, 136, 68, 0, 3014, 3012, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 265, 0, 0, 3017, 3018, 5, 287, 0, 0, 3018, 3019, 5, 251, 0, 0, 3019, 3020, 3, 294, 147, 0, 3020, 3021, 5, 312, 0, 0, 3021, 3029, 3, 136, 68, 0, 3022, 3023, 5, 3, 0, 0, 3023, 3024, 3, 294, 147, 0, 3024, 3025, 5, 312, 0, 0, 3025, 3026, 3, 136, 68, 0, 3026, 3028, 1, 0, 0, 0, 3027, 3022, 1, 0, 0, 0, 3028, 3031, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3075, 1, 0, 0, 0, 3031, 3029, 1, 0, 0, 0, 3032, 3033, 5, 300, 0, 0, 3033, 3036, 5, 164, 0, 0, 3034, 3035, 5, 25, 0, 0, 3035, 3037, 3, 136, 68, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 5, 265, 0, 0, 3039, 3075, 5, 73, 0, 0, 3040, 3041, 5, 300, 0, 0, 3041, 3042, 5, 182, 0, 0, 3042, 3045, 5, 164, 0, 0, 3043, 3044, 5, 25, 0, 0, 3044, 3046, 3, 136, 68, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 265, 0, 0, 3048, 3060, 5, 127, 0, 0, 3049, 3050, 5, 1, 0, 0, 3050, 3055, 3, 294, 147, 0, 3051, 3052, 5, 3, 0, 0, 3052, 3054, 3, 294, 147, 0, 3053, 3051, 1, 0, 0, 0, 3054, 3057, 1, 0, 0, 0, 3055, 3053, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3058, 1, 0, 0, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3059, 5, 2, 0, 0, 3059, 3061, 1, 0, 0, 0, 3060, 3049, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 296, 0, 0, 3063, 3064, 5, 1, 0, 0, 3064, 3069, 3, 136, 68, 0, 3065, 3066, 5, 3, 0, 0, 3066, 3068, 3, 136, 68, 0, 3067, 3065, 1, 0, 0, 0, 3068, 3071, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3072, 1, 0, 0, 0, 3071, 3069, 1, 0, 0, 0, 3072, 3073, 5, 2, 0, 0, 3073, 3075, 1, 0, 0, 0, 3074, 3010, 1, 0, 0, 0, 3074, 3032, 1, 0, 0, 0, 3074, 3040, 1, 0, 0, 0, 3075, 195, 1, 0, 0, 0, 3076, 3082, 5, 199, 0, 0, 3077, 3083, 3, 294, 147, 0, 3078, 3079, 5, 1, 0, 0, 3079, 3080, 3, 64, 32, 0, 3080, 3081, 5, 2, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3077, 1, 0, 0, 0, 3082, 3078, 1, 0, 0, 0, 3083, 197, 1, 0, 0, 0, 3084, 3085, 5, 168, 0, 0, 3085, 3090, 3, 90, 45, 0, 3086, 3087, 5, 3, 0, 0, 3087, 3089, 3, 90, 45, 0, 3088, 3086, 1, 0, 0, 0, 3089, 3092, 1, 0, 0, 0, 3090, 3088, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3094, 1, 0, 0, 0, 3092, 3090, 1, 0, 0, 0, 3093, 3084, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3099, 3, 200, 100, 0, 3096, 3097, 5, 21, 0, 0, 3097, 3098, 5, 163, 0, 0, 3098, 3100, 3, 96, 48, 0, 3099, 3096, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3103, 7, 13, 0, 0, 3102, 3101, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3109, 1, 0, 0, 0, 3104, 3105, 5, 206, 0, 0, 3105, 3106, 5, 1, 0, 0, 3106, 3107, 3, 204, 102, 0, 3107, 3108, 5, 2, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3104, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3120, 1, 0, 0, 0, 3111, 3112, 5, 257, 0, 0, 3112, 3117, 3, 98, 49, 0, 3113, 3114, 5, 3, 0, 0, 3114, 3116, 3, 98, 49, 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, 3121, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3111, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3131, 1, 0, 0, 0, 3122, 3123, 5, 71, 0, 0, 3123, 3128, 3, 100, 50, 0, 3124, 3125, 5, 3, 0, 0, 3125, 3127, 3, 100, 50, 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, 3132, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3122, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 199, 1, 0, 0, 0, 3133, 3134, 5, 219, 0, 0, 3134, 3158, 3, 202, 101, 0, 3135, 3136, 5, 240, 0, 0, 3136, 3158, 3, 202, 101, 0, 3137, 3138, 5, 116, 0, 0, 3138, 3158, 3, 202, 101, 0, 3139, 3140, 5, 219, 0, 0, 3140, 3141, 5, 34, 0, 0, 3141, 3142, 3, 202, 101, 0, 3142, 3143, 5, 25, 0, 0, 3143, 3144, 3, 202, 101, 0, 3144, 3158, 1, 0, 0, 0, 3145, 3146, 5, 240, 0, 0, 3146, 3147, 5, 34, 0, 0, 3147, 3148, 3, 202, 101, 0, 3148, 3149, 5, 25, 0, 0, 3149, 3150, 3, 202, 101, 0, 3150, 3158, 1, 0, 0, 0, 3151, 3152, 5, 116, 0, 0, 3152, 3153, 5, 34, 0, 0, 3153, 3154, 3, 202, 101, 0, 3154, 3155, 5, 25, 0, 0, 3155, 3156, 3, 202, 101, 0, 3156, 3158, 1, 0, 0, 0, 3157, 3133, 1, 0, 0, 0, 3157, 3135, 1, 0, 0, 0, 3157, 3137, 1, 0, 0, 0, 3157, 3139, 1, 0, 0, 0, 3157, 3145, 1, 0, 0, 0, 3157, 3151, 1, 0, 0, 0, 3158, 201, 1, 0, 0, 0, 3159, 3160, 5, 278, 0, 0, 3160, 3169, 5, 212, 0, 0, 3161, 3162, 5, 278, 0, 0, 3162, 3169, 5, 102, 0, 0, 3163, 3164, 5, 56, 0, 0, 3164, 3169, 5, 239, 0, 0, 3165, 3166, 3, 136, 68, 0, 3166, 3167, 7, 30, 0, 0, 3167, 3169, 1, 0, 0, 0, 3168, 3159, 1, 0, 0, 0, 3168, 3161, 1, 0, 0, 0, 3168, 3163, 1, 0, 0, 0, 3168, 3165, 1, 0, 0, 0, 3169, 203, 1, 0, 0, 0, 3170, 3171, 6, 102, -1, 0, 3171, 3173, 3, 206, 103, 0, 3172, 3174, 3, 208, 104, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3182, 1, 0, 0, 0, 3175, 3176, 10, 2, 0, 0, 3176, 3181, 3, 204, 102, 3, 3177, 3178, 10, 1, 0, 0, 3178, 3179, 5, 11, 0, 0, 3179, 3181, 3, 204, 102, 2, 3180, 3175, 1, 0, 0, 0, 3180, 3177, 1, 0, 0, 0, 3181, 3184, 1, 0, 0, 0, 3182, 3180, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 205, 1, 0, 0, 0, 3184, 3182, 1, 0, 0, 0, 3185, 3211, 3, 294, 147, 0, 3186, 3187, 5, 1, 0, 0, 3187, 3211, 5, 2, 0, 0, 3188, 3189, 5, 209, 0, 0, 3189, 3190, 5, 1, 0, 0, 3190, 3195, 3, 204, 102, 0, 3191, 3192, 5, 3, 0, 0, 3192, 3194, 3, 204, 102, 0, 3193, 3191, 1, 0, 0, 0, 3194, 3197, 1, 0, 0, 0, 3195, 3193, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3198, 3199, 5, 2, 0, 0, 3199, 3211, 1, 0, 0, 0, 3200, 3201, 5, 1, 0, 0, 3201, 3202, 3, 204, 102, 0, 3202, 3203, 5, 2, 0, 0, 3203, 3211, 1, 0, 0, 0, 3204, 3211, 5, 12, 0, 0, 3205, 3211, 5, 13, 0, 0, 3206, 3207, 5, 14, 0, 0, 3207, 3208, 3, 204, 102, 0, 3208, 3209, 5, 15, 0, 0, 3209, 3211, 1, 0, 0, 0, 3210, 3185, 1, 0, 0, 0, 3210, 3186, 1, 0, 0, 0, 3210, 3188, 1, 0, 0, 0, 3210, 3200, 1, 0, 0, 0, 3210, 3204, 1, 0, 0, 0, 3210, 3205, 1, 0, 0, 0, 3210, 3206, 1, 0, 0, 0, 3211, 207, 1, 0, 0, 0, 3212, 3214, 5, 320, 0, 0, 3213, 3215, 5, 324, 0, 0, 3214, 3213, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3243, 1, 0, 0, 0, 3216, 3218, 5, 318, 0, 0, 3217, 3219, 5, 324, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3243, 1, 0, 0, 0, 3220, 3222, 5, 324, 0, 0, 3221, 3223, 5, 324, 0, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3243, 1, 0, 0, 0, 3224, 3225, 5, 16, 0, 0, 3225, 3226, 5, 329, 0, 0, 3226, 3228, 5, 17, 0, 0, 3227, 3229, 5, 324, 0, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3243, 1, 0, 0, 0, 3230, 3232, 5, 16, 0, 0, 3231, 3233, 5, 329, 0, 0, 3232, 3231, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 5, 3, 0, 0, 3235, 3237, 5, 329, 0, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3240, 5, 17, 0, 0, 3239, 3241, 5, 324, 0, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3212, 1, 0, 0, 0, 3242, 3216, 1, 0, 0, 0, 3242, 3220, 1, 0, 0, 0, 3242, 3224, 1, 0, 0, 0, 3242, 3230, 1, 0, 0, 0, 3243, 209, 1, 0, 0, 0, 3244, 3245, 3, 294, 147, 0, 3245, 3246, 5, 312, 0, 0, 3246, 3247, 3, 136, 68, 0, 3247, 211, 1, 0, 0, 0, 3248, 3249, 5, 104, 0, 0, 3249, 3253, 7, 31, 0, 0, 3250, 3251, 5, 276, 0, 0, 3251, 3253, 7, 32, 0, 0, 3252, 3248, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3253, 213, 1, 0, 0, 0, 3254, 3255, 5, 134, 0, 0, 3255, 3256, 5, 153, 0, 0, 3256, 3260, 3, 216, 108, 0, 3257, 3258, 5, 220, 0, 0, 3258, 3260, 7, 33, 0, 0, 3259, 3254, 1, 0, 0, 0, 3259, 3257, 1, 0, 0, 0, 3260, 215, 1, 0, 0, 0, 3261, 3262, 5, 220, 0, 0, 3262, 3269, 5, 279, 0, 0, 3263, 3264, 5, 220, 0, 0, 3264, 3269, 5, 48, 0, 0, 3265, 3266, 5, 225, 0, 0, 3266, 3269, 5, 220, 0, 0, 3267, 3269, 5, 249, 0, 0, 3268, 3261, 1, 0, 0, 0, 3268, 3263, 1, 0, 0, 0, 3268, 3265, 1, 0, 0, 0, 3268, 3267, 1, 0, 0, 0, 3269, 217, 1, 0, 0, 0, 3270, 3276, 3, 136, 68, 0, 3271, 3272, 3, 294, 147, 0, 3272, 3273, 5, 6, 0, 0, 3273, 3274, 3, 136, 68, 0, 3274, 3276, 1, 0, 0, 0, 3275, 3270, 1, 0, 0, 0, 3275, 3271, 1, 0, 0, 0, 3276, 219, 1, 0, 0, 0, 3277, 3278, 3, 294, 147, 0, 3278, 3279, 5, 4, 0, 0, 3279, 3280, 3, 294, 147, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3283, 3, 294, 147, 0, 3282, 3277, 1, 0, 0, 0, 3282, 3281, 1, 0, 0, 0, 3283, 221, 1, 0, 0, 0, 3284, 3289, 3, 220, 110, 0, 3285, 3286, 5, 3, 0, 0, 3286, 3288, 3, 220, 110, 0, 3287, 3285, 1, 0, 0, 0, 3288, 3291, 1, 0, 0, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 223, 1, 0, 0, 0, 3291, 3289, 1, 0, 0, 0, 3292, 3293, 5, 107, 0, 0, 3293, 3294, 3, 226, 113, 0, 3294, 3298, 3, 232, 116, 0, 3295, 3297, 3, 234, 117, 0, 3296, 3295, 1, 0, 0, 0, 3297, 3300, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3301, 3302, 3, 236, 118, 0, 3302, 225, 1, 0, 0, 0, 3303, 3304, 3, 274, 137, 0, 3304, 3313, 5, 1, 0, 0, 3305, 3310, 3, 230, 115, 0, 3306, 3307, 5, 3, 0, 0, 3307, 3309, 3, 230, 115, 0, 3308, 3306, 1, 0, 0, 0, 3309, 3312, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3313, 3305, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3316, 5, 2, 0, 0, 3316, 227, 1, 0, 0, 0, 3317, 3318, 3, 272, 136, 0, 3318, 3327, 5, 1, 0, 0, 3319, 3324, 3, 230, 115, 0, 3320, 3321, 5, 3, 0, 0, 3321, 3323, 3, 230, 115, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3328, 1, 0, 0, 0, 3326, 3324, 1, 0, 0, 0, 3327, 3319, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 5, 2, 0, 0, 3330, 229, 1, 0, 0, 0, 3331, 3333, 3, 294, 147, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 3, 184, 92, 0, 3335, 231, 1, 0, 0, 0, 3336, 3337, 5, 232, 0, 0, 3337, 3338, 3, 184, 92, 0, 3338, 233, 1, 0, 0, 0, 3339, 3340, 5, 147, 0, 0, 3340, 3359, 3, 294, 147, 0, 3341, 3343, 5, 182, 0, 0, 3342, 3341, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3359, 5, 78, 0, 0, 3345, 3346, 5, 232, 0, 0, 3346, 3347, 5, 183, 0, 0, 3347, 3348, 5, 190, 0, 0, 3348, 3349, 5, 183, 0, 0, 3349, 3359, 5, 126, 0, 0, 3350, 3351, 5, 38, 0, 0, 3351, 3352, 5, 190, 0, 0, 3352, 3353, 5, 183, 0, 0, 3353, 3359, 5, 126, 0, 0, 3354, 3355, 5, 246, 0, 0, 3355, 3359, 7, 1, 0, 0, 3356, 3357, 5, 46, 0, 0, 3357, 3359, 3, 168, 84, 0, 3358, 3339, 1, 0, 0, 0, 3358, 3342, 1, 0, 0, 0, 3358, 3345, 1, 0, 0, 0, 3358, 3350, 1, 0, 0, 0, 3358, 3354, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3359, 235, 1, 0, 0, 0, 3360, 3361, 5, 230, 0, 0, 3361, 3460, 3, 142, 71, 0, 3362, 3363, 5, 251, 0, 0, 3363, 3364, 3, 294, 147, 0, 3364, 3365, 5, 312, 0, 0, 3365, 3366, 3, 136, 68, 0, 3366, 3460, 1, 0, 0, 0, 3367, 3368, 5, 40, 0, 0, 3368, 3370, 3, 136, 68, 0, 3369, 3371, 3, 238, 119, 0, 3370, 3369, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3370, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3376, 3, 242, 121, 0, 3375, 3374, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3378, 5, 88, 0, 0, 3378, 3379, 5, 40, 0, 0, 3379, 3460, 1, 0, 0, 0, 3380, 3382, 5, 40, 0, 0, 3381, 3383, 3, 238, 119, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3388, 3, 242, 121, 0, 3387, 3386, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3390, 5, 88, 0, 0, 3390, 3391, 5, 40, 0, 0, 3391, 3460, 1, 0, 0, 0, 3392, 3393, 5, 119, 0, 0, 3393, 3394, 3, 136, 68, 0, 3394, 3395, 5, 265, 0, 0, 3395, 3399, 3, 246, 123, 0, 3396, 3398, 3, 240, 120, 0, 3397, 3396, 1, 0, 0, 0, 3398, 3401, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3403, 1, 0, 0, 0, 3401, 3399, 1, 0, 0, 0, 3402, 3404, 3, 242, 121, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 5, 88, 0, 0, 3406, 3407, 5, 119, 0, 0, 3407, 3460, 1, 0, 0, 0, 3408, 3409, 5, 135, 0, 0, 3409, 3460, 3, 294, 147, 0, 3410, 3411, 5, 151, 0, 0, 3411, 3460, 3, 294, 147, 0, 3412, 3418, 5, 32, 0, 0, 3413, 3414, 3, 244, 122, 0, 3414, 3415, 5, 325, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3413, 1, 0, 0, 0, 3417, 3420, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3421, 3423, 3, 246, 123, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3460, 5, 88, 0, 0, 3425, 3426, 3, 294, 147, 0, 3426, 3427, 5, 10, 0, 0, 3427, 3429, 1, 0, 0, 0, 3428, 3425, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 5, 161, 0, 0, 3431, 3432, 3, 246, 123, 0, 3432, 3433, 5, 88, 0, 0, 3433, 3434, 5, 161, 0, 0, 3434, 3460, 1, 0, 0, 0, 3435, 3436, 3, 294, 147, 0, 3436, 3437, 5, 10, 0, 0, 3437, 3439, 1, 0, 0, 0, 3438, 3435, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3441, 5, 302, 0, 0, 3441, 3442, 3, 136, 68, 0, 3442, 3443, 5, 81, 0, 0, 3443, 3444, 3, 246, 123, 0, 3444, 3445, 5, 88, 0, 0, 3445, 3446, 5, 302, 0, 0, 3446, 3460, 1, 0, 0, 0, 3447, 3448, 3, 294, 147, 0, 3448, 3449, 5, 10, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3447, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 5, 224, 0, 0, 3453, 3454, 3, 246, 123, 0, 3454, 3455, 5, 286, 0, 0, 3455, 3456, 3, 136, 68, 0, 3456, 3457, 5, 88, 0, 0, 3457, 3458, 5, 224, 0, 0, 3458, 3460, 1, 0, 0, 0, 3459, 3360, 1, 0, 0, 0, 3459, 3362, 1, 0, 0, 0, 3459, 3367, 1, 0, 0, 0, 3459, 3380, 1, 0, 0, 0, 3459, 3392, 1, 0, 0, 0, 3459, 3408, 1, 0, 0, 0, 3459, 3410, 1, 0, 0, 0, 3459, 3412, 1, 0, 0, 0, 3459, 3428, 1, 0, 0, 0, 3459, 3438, 1, 0, 0, 0, 3459, 3450, 1, 0, 0, 0, 3460, 237, 1, 0, 0, 0, 3461, 3462, 5, 300, 0, 0, 3462, 3463, 3, 136, 68, 0, 3463, 3464, 5, 265, 0, 0, 3464, 3465, 3, 246, 123, 0, 3465, 239, 1, 0, 0, 0, 3466, 3467, 5, 86, 0, 0, 3467, 3468, 3, 136, 68, 0, 3468, 3469, 5, 265, 0, 0, 3469, 3470, 3, 246, 123, 0, 3470, 241, 1, 0, 0, 0, 3471, 3472, 5, 84, 0, 0, 3472, 3473, 3, 246, 123, 0, 3473, 243, 1, 0, 0, 0, 3474, 3475, 5, 69, 0, 0, 3475, 3480, 3, 294, 147, 0, 3476, 3477, 5, 3, 0, 0, 3477, 3479, 3, 294, 147, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3482, 1, 0, 0, 0, 3480, 3478, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3483, 1, 0, 0, 0, 3482, 3480, 1, 0, 0, 0, 3483, 3486, 3, 184, 92, 0, 3484, 3485, 5, 70, 0, 0, 3485, 3487, 3, 142, 71, 0, 3486, 3484, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 245, 1, 0, 0, 0, 3488, 3489, 3, 236, 118, 0, 3489, 3490, 5, 325, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3488, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 247, 1, 0, 0, 0, 3495, 3502, 5, 53, 0, 0, 3496, 3502, 5, 248, 0, 0, 3497, 3502, 5, 73, 0, 0, 3498, 3502, 5, 127, 0, 0, 3499, 3502, 5, 287, 0, 0, 3500, 3502, 3, 294, 147, 0, 3501, 3495, 1, 0, 0, 0, 3501, 3496, 1, 0, 0, 0, 3501, 3497, 1, 0, 0, 0, 3501, 3498, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3500, 1, 0, 0, 0, 3502, 249, 1, 0, 0, 0, 3503, 3507, 5, 260, 0, 0, 3504, 3507, 5, 243, 0, 0, 3505, 3507, 3, 294, 147, 0, 3506, 3503, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3505, 1, 0, 0, 0, 3507, 251, 1, 0, 0, 0, 3508, 3510, 3, 250, 125, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3512, 3, 280, 140, 0, 3512, 253, 1, 0, 0, 0, 3513, 3516, 3, 256, 128, 0, 3514, 3516, 3, 260, 130, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 255, 1, 0, 0, 0, 3517, 3529, 3, 294, 147, 0, 3518, 3519, 3, 294, 147, 0, 3519, 3520, 5, 4, 0, 0, 3520, 3521, 3, 294, 147, 0, 3521, 3529, 1, 0, 0, 0, 3522, 3523, 3, 294, 147, 0, 3523, 3524, 5, 4, 0, 0, 3524, 3525, 3, 294, 147, 0, 3525, 3526, 5, 4, 0, 0, 3526, 3527, 3, 294, 147, 0, 3527, 3529, 1, 0, 0, 0, 3528, 3517, 1, 0, 0, 0, 3528, 3518, 1, 0, 0, 0, 3528, 3522, 1, 0, 0, 0, 3529, 257, 1, 0, 0, 0, 3530, 3542, 3, 294, 147, 0, 3531, 3532, 3, 294, 147, 0, 3532, 3533, 5, 4, 0, 0, 3533, 3534, 3, 294, 147, 0, 3534, 3542, 1, 0, 0, 0, 3535, 3536, 3, 294, 147, 0, 3536, 3537, 5, 4, 0, 0, 3537, 3538, 3, 294, 147, 0, 3538, 3539, 5, 4, 0, 0, 3539, 3540, 3, 294, 147, 0, 3540, 3542, 1, 0, 0, 0, 3541, 3530, 1, 0, 0, 0, 3541, 3531, 1, 0, 0, 0, 3541, 3535, 1, 0, 0, 0, 3542, 259, 1, 0, 0, 0, 3543, 3555, 3, 294, 147, 0, 3544, 3545, 3, 294, 147, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3547, 3, 294, 147, 0, 3547, 3555, 1, 0, 0, 0, 3548, 3549, 3, 294, 147, 0, 3549, 3550, 5, 4, 0, 0, 3550, 3551, 3, 294, 147, 0, 3551, 3552, 5, 4, 0, 0, 3552, 3553, 3, 294, 147, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3543, 1, 0, 0, 0, 3554, 3544, 1, 0, 0, 0, 3554, 3548, 1, 0, 0, 0, 3555, 261, 1, 0, 0, 0, 3556, 3568, 3, 294, 147, 0, 3557, 3558, 3, 294, 147, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3560, 3, 294, 147, 0, 3560, 3568, 1, 0, 0, 0, 3561, 3562, 3, 294, 147, 0, 3562, 3563, 5, 4, 0, 0, 3563, 3564, 3, 294, 147, 0, 3564, 3565, 5, 4, 0, 0, 3565, 3566, 3, 294, 147, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3556, 1, 0, 0, 0, 3567, 3557, 1, 0, 0, 0, 3567, 3561, 1, 0, 0, 0, 3568, 263, 1, 0, 0, 0, 3569, 3575, 3, 294, 147, 0, 3570, 3571, 3, 294, 147, 0, 3571, 3572, 5, 4, 0, 0, 3572, 3573, 3, 294, 147, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3569, 1, 0, 0, 0, 3574, 3570, 1, 0, 0, 0, 3575, 265, 1, 0, 0, 0, 3576, 3582, 3, 294, 147, 0, 3577, 3578, 3, 294, 147, 0, 3578, 3579, 5, 4, 0, 0, 3579, 3580, 3, 294, 147, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3576, 1, 0, 0, 0, 3581, 3577, 1, 0, 0, 0, 3582, 267, 1, 0, 0, 0, 3583, 3584, 3, 294, 147, 0, 3584, 269, 1, 0, 0, 0, 3585, 3586, 3, 294, 147, 0, 3586, 271, 1, 0, 0, 0, 3587, 3588, 3, 280, 140, 0, 3588, 273, 1, 0, 0, 0, 3589, 3590, 3, 280, 140, 0, 3590, 275, 1, 0, 0, 0, 3591, 3594, 3, 280, 140, 0, 3592, 3594, 4, 138, 14, 0, 3593, 3591, 1, 0, 0, 0, 3593, 3592, 1, 0, 0, 0, 3594, 277, 1, 0, 0, 0, 3595, 3596, 3, 294, 147, 0, 3596, 279, 1, 0, 0, 0, 3597, 3602, 3, 294, 147, 0, 3598, 3599, 5, 4, 0, 0, 3599, 3601, 3, 294, 147, 0, 3600, 3598, 1, 0, 0, 0, 3601, 3604, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 281, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3606, 5, 103, 0, 0, 3606, 3607, 3, 284, 142, 0, 3607, 3608, 5, 28, 0, 0, 3608, 3609, 5, 187, 0, 0, 3609, 3610, 3, 142, 71, 0, 3610, 283, 1, 0, 0, 0, 3611, 3612, 7, 34, 0, 0, 3612, 285, 1, 0, 0, 0, 3613, 3617, 3, 288, 144, 0, 3614, 3617, 5, 64, 0, 0, 3615, 3617, 5, 60, 0, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3614, 1, 0, 0, 0, 3616, 3615, 1, 0, 0, 0, 3617, 287, 1, 0, 0, 0, 3618, 3624, 3, 294, 147, 0, 3619, 3620, 5, 289, 0, 0, 3620, 3624, 3, 294, 147, 0, 3621, 3622, 5, 235, 0, 0, 3622, 3624, 3, 294, 147, 0, 3623, 3618, 1, 0, 0, 0, 3623, 3619, 1, 0, 0, 0, 3623, 3621, 1, 0, 0, 0, 3624, 289, 1, 0, 0, 0, 3625, 3630, 3, 294, 147, 0, 3626, 3627, 5, 3, 0, 0, 3627, 3629, 3, 294, 147, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3630, 3631, 1, 0, 0, 0, 3631, 291, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3633, 3641, 5, 53, 0, 0, 3634, 3641, 5, 248, 0, 0, 3635, 3641, 5, 73, 0, 0, 3636, 3641, 5, 127, 0, 0, 3637, 3641, 5, 287, 0, 0, 3638, 3641, 5, 93, 0, 0, 3639, 3641, 3, 294, 147, 0, 3640, 3633, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3635, 1, 0, 0, 0, 3640, 3636, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 293, 1, 0, 0, 0, 3642, 3648, 5, 332, 0, 0, 3643, 3648, 5, 334, 0, 0, 3644, 3648, 3, 300, 150, 0, 3645, 3648, 5, 335, 0, 0, 3646, 3648, 5, 333, 0, 0, 3647, 3642, 1, 0, 0, 0, 3647, 3643, 1, 0, 0, 0, 3647, 3644, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3646, 1, 0, 0, 0, 3648, 295, 1, 0, 0, 0, 3649, 3651, 5, 319, 0, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3662, 5, 330, 0, 0, 3653, 3655, 5, 319, 0, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3662, 5, 331, 0, 0, 3657, 3659, 5, 319, 0, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 5, 329, 0, 0, 3661, 3650, 1, 0, 0, 0, 3661, 3654, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3662, 297, 1, 0, 0, 0, 3663, 3666, 3, 294, 147, 0, 3664, 3666, 3, 168, 84, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3664, 1, 0, 0, 0, 3666, 299, 1, 0, 0, 0, 3667, 3668, 7, 35, 0, 0, 3668, 301, 1, 0, 0, 0, 478, 305, 314, 318, 322, 326, 330, 343, 350, 354, 358, 364, 368, 375, 380, 384, 390, 394, 413, 419, 423, 427, 431, 439, 443, 446, 451, 457, 466, 472, 476, 482, 489, 498, 510, 519, 528, 534, 545, 553, 561, 568, 578, 585, 593, 608, 643, 646, 649, 653, 659, 664, 671, 677, 681, 685, 693, 699, 703, 707, 721, 729, 748, 773, 776, 783, 790, 799, 803, 810, 818, 827, 833, 838, 842, 850, 855, 864, 870, 877, 886, 892, 896, 902, 909, 914, 927, 932, 944, 948, 954, 963, 968, 974, 1002, 1008, 1010, 1016, 1022, 1024, 1032, 1034, 1044, 1046, 1061, 1066, 1073, 1083, 1089, 1091, 1099, 1101, 1126, 1129, 1133, 1137, 1155, 1158, 1169, 1172, 1188, 1198, 1203, 1209, 1212, 1221, 1233, 1236, 1246, 1250, 1256, 1263, 1268, 1274, 1278, 1282, 1288, 1299, 1308, 1318, 1321, 1326, 1328, 1335, 1341, 1343, 1347, 1357, 1363, 1366, 1368, 1380, 1387, 1391, 1394, 1398, 1402, 1409, 1418, 1421, 1425, 1430, 1434, 1442, 1445, 1448, 1455, 1466, 1469, 1479, 1482, 1493, 1498, 1506, 1509, 1513, 1517, 1526, 1535, 1538, 1547, 1550, 1553, 1557, 1568, 1571, 1574, 1581, 1584, 1603, 1607, 1611, 1615, 1619, 1623, 1625, 1636, 1641, 1650, 1659, 1662, 1668, 1680, 1683, 1692, 1695, 1703, 1706, 1709, 1714, 1717, 1729, 1732, 1740, 1745, 1749, 1751, 1753, 1768, 1770, 1781, 1802, 1812, 1823, 1827, 1829, 1837, 1848, 1859, 1866, 1879, 1885, 1911, 1926, 1931, 1935, 1945, 1951, 1957, 1965, 1970, 1977, 1979, 1985, 1991, 1995, 2000, 2009, 2014, 2028, 2038, 2041, 2050, 2055, 2060, 2062, 2071, 2074, 2082, 2085, 2092, 2097, 2108, 2111, 2115, 2117, 2125, 2135, 2141, 2143, 2150, 2154, 2156, 2163, 2167, 2169, 2171, 2180, 2191, 2195, 2205, 2215, 2219, 2227, 2229, 2242, 2250, 2259, 2265, 2273, 2279, 2283, 2288, 2293, 2299, 2313, 2315, 2345, 2356, 2364, 2369, 2374, 2387, 2393, 2396, 2403, 2408, 2411, 2414, 2419, 2426, 2429, 2438, 2441, 2445, 2448, 2451, 2466, 2469, 2488, 2492, 2500, 2504, 2529, 2532, 2541, 2547, 2553, 2559, 2568, 2571, 2574, 2593, 2602, 2624, 2627, 2637, 2646, 2652, 2658, 2669, 2671, 2676, 2683, 2685, 2691, 2697, 2708, 2717, 2722, 2727, 2729, 2731, 2737, 2739, 2749, 2758, 2760, 2766, 2768, 2771, 2781, 2783, 2791, 2799, 2802, 2807, 2812, 2824, 2828, 2832, 2835, 2837, 2845, 2848, 2858, 2866, 2872, 2874, 2882, 2892, 2898, 2912, 2921, 2928, 2933, 2940, 2945, 2968, 2973, 2975, 2982, 2986, 2993, 2997, 3014, 3029, 3036, 3045, 3055, 3060, 3069, 3074, 3082, 3090, 3093, 3099, 3102, 3109, 3117, 3120, 3128, 3131, 3157, 3168, 3173, 3180, 3182, 3195, 3210, 3214, 3218, 3222, 3228, 3232, 3236, 3240, 3242, 3252, 3259, 3268, 3275, 3282, 3289, 3298, 3310, 3313, 3324, 3327, 3332, 3342, 3358, 3372, 3375, 3384, 3387, 3399, 3403, 3418, 3422, 3428, 3438, 3450, 3459, 3480, 3486, 3493, 3501, 3506, 3509, 3515, 3528, 3541, 3554, 3567, 3574, 3581, 3593, 3602, 3616, 3623, 3630, 3640, 3647, 3650, 3654, 3658, 3661, 3665] \ No newline at end of file +[4, 1, 340, 3667, 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, 1, 0, 5, 0, 312, 8, 0, 10, 0, 12, 0, 315, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 323, 8, 2, 1, 3, 1, 3, 3, 3, 327, 8, 3, 1, 4, 1, 4, 3, 4, 331, 8, 4, 1, 5, 1, 5, 3, 5, 335, 8, 5, 1, 6, 1, 6, 3, 6, 339, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 352, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 3, 8, 367, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 373, 8, 8, 1, 8, 1, 8, 3, 8, 377, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 384, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 3, 8, 393, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 399, 8, 8, 1, 8, 1, 8, 3, 8, 403, 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, 422, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 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, 3, 8, 452, 8, 8, 1, 8, 3, 8, 455, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 460, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 466, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 473, 8, 8, 10, 8, 12, 8, 476, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 8, 1, 8, 3, 8, 485, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 491, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 498, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 506, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 527, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 561, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 576, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 593, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 601, 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, 616, 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, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 649, 8, 8, 10, 8, 12, 8, 652, 9, 8, 3, 8, 654, 8, 8, 1, 8, 3, 8, 657, 8, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 666, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 671, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 3, 8, 688, 8, 8, 1, 8, 1, 8, 3, 8, 692, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 3, 8, 714, 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, 728, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 736, 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, 755, 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, 778, 8, 8, 10, 8, 12, 8, 781, 9, 8, 3, 8, 783, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 790, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 797, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 806, 8, 8, 1, 8, 1, 8, 3, 8, 810, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 817, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 823, 8, 8, 10, 8, 12, 8, 826, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 832, 8, 8, 10, 8, 12, 8, 835, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 840, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 8, 1, 8, 3, 8, 849, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 855, 8, 8, 10, 8, 12, 8, 858, 9, 8, 1, 8, 1, 8, 3, 8, 862, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 877, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 882, 8, 8, 10, 8, 12, 8, 885, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 891, 8, 8, 10, 8, 12, 8, 894, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 899, 8, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 909, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 914, 8, 8, 10, 8, 12, 8, 917, 9, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 932, 8, 8, 10, 8, 12, 8, 935, 9, 8, 1, 8, 1, 8, 3, 8, 939, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 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, 3, 8, 961, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 968, 8, 8, 10, 8, 12, 8, 971, 9, 8, 1, 8, 1, 8, 3, 8, 975, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 981, 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, 1, 8, 3, 8, 1009, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1015, 8, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1029, 8, 8, 3, 8, 1031, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1039, 8, 8, 3, 8, 1041, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1051, 8, 8, 3, 8, 1053, 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, 1068, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1073, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1080, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1096, 8, 8, 3, 8, 1098, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1106, 8, 8, 3, 8, 1108, 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, 1131, 8, 8, 10, 8, 12, 8, 1134, 9, 8, 3, 8, 1136, 8, 8, 1, 8, 1, 8, 3, 8, 1140, 8, 8, 1, 8, 1, 8, 3, 8, 1144, 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, 1160, 8, 8, 10, 8, 12, 8, 1163, 9, 8, 3, 8, 1165, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1174, 8, 8, 10, 8, 12, 8, 1177, 9, 8, 3, 8, 1179, 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, 1195, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1203, 8, 8, 10, 8, 12, 8, 1206, 9, 8, 1, 8, 3, 8, 1209, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1215, 8, 8, 1, 8, 3, 8, 1218, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1225, 8, 8, 11, 8, 12, 8, 1226, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1239, 8, 8, 1, 9, 3, 9, 1242, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1250, 8, 10, 10, 10, 12, 10, 1253, 9, 10, 1, 11, 3, 11, 1256, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1262, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1267, 8, 12, 10, 12, 12, 12, 1270, 9, 12, 1, 13, 1, 13, 3, 13, 1274, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1280, 8, 14, 1, 14, 1, 14, 3, 14, 1284, 8, 14, 1, 14, 1, 14, 3, 14, 1288, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1294, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1303, 8, 17, 10, 17, 12, 17, 1306, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1314, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1322, 8, 20, 10, 20, 12, 20, 1325, 9, 20, 3, 20, 1327, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1332, 8, 20, 3, 20, 1334, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1341, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1347, 8, 20, 3, 20, 1349, 8, 20, 1, 21, 1, 21, 3, 21, 1353, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1363, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1369, 8, 23, 1, 23, 5, 23, 1372, 8, 23, 10, 23, 12, 23, 1375, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1384, 8, 24, 10, 24, 12, 24, 1387, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1393, 8, 24, 1, 25, 1, 25, 3, 25, 1397, 8, 25, 1, 25, 3, 25, 1400, 8, 25, 1, 25, 1, 25, 3, 25, 1404, 8, 25, 1, 26, 1, 26, 3, 26, 1408, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1413, 8, 26, 10, 26, 12, 26, 1416, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1422, 8, 26, 10, 26, 12, 26, 1425, 9, 26, 3, 26, 1427, 8, 26, 1, 26, 3, 26, 1430, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 3, 26, 1438, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1444, 8, 26, 10, 26, 12, 26, 1447, 9, 26, 3, 26, 1449, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 3, 29, 1458, 8, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1463, 8, 29, 10, 29, 12, 29, 1466, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1471, 8, 30, 10, 30, 12, 30, 1474, 9, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1482, 8, 31, 10, 31, 12, 31, 1485, 9, 31, 3, 31, 1487, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1495, 8, 31, 10, 31, 12, 31, 1498, 9, 31, 3, 31, 1500, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1509, 8, 31, 10, 31, 12, 31, 1512, 9, 31, 1, 31, 1, 31, 3, 31, 1516, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1522, 8, 32, 10, 32, 12, 32, 1525, 9, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 3, 32, 1531, 8, 32, 1, 33, 1, 33, 3, 33, 1535, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 3, 35, 1544, 8, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1549, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 1556, 8, 35, 10, 35, 12, 35, 1559, 9, 35, 3, 35, 1561, 8, 35, 1, 35, 3, 35, 1564, 8, 35, 1, 36, 1, 36, 3, 36, 1568, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1579, 8, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 3, 38, 1585, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1592, 8, 38, 1, 38, 3, 38, 1595, 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, 1, 39, 1, 39, 1, 39, 3, 39, 1614, 8, 39, 5, 39, 1616, 8, 39, 10, 39, 12, 39, 1619, 9, 39, 1, 40, 3, 40, 1622, 8, 40, 1, 40, 1, 40, 3, 40, 1626, 8, 40, 1, 40, 1, 40, 3, 40, 1630, 8, 40, 1, 40, 1, 40, 3, 40, 1634, 8, 40, 3, 40, 1636, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1645, 8, 41, 10, 41, 12, 41, 1648, 9, 41, 1, 41, 1, 41, 3, 41, 1652, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1661, 8, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1670, 8, 45, 1, 45, 3, 45, 1673, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1679, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1687, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1694, 8, 47, 10, 47, 12, 47, 1697, 9, 47, 3, 47, 1699, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1705, 8, 47, 10, 47, 12, 47, 1708, 9, 47, 3, 47, 1710, 8, 47, 1, 47, 3, 47, 1713, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1718, 8, 47, 1, 47, 3, 47, 1721, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1731, 8, 47, 10, 47, 12, 47, 1734, 9, 47, 3, 47, 1736, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1742, 8, 47, 10, 47, 12, 47, 1745, 9, 47, 1, 47, 1, 47, 3, 47, 1749, 8, 47, 1, 47, 1, 47, 3, 47, 1753, 8, 47, 3, 47, 1755, 8, 47, 3, 47, 1757, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1772, 8, 49, 3, 49, 1774, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1785, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1806, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1814, 8, 52, 10, 52, 12, 52, 1817, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 1827, 8, 54, 1, 54, 1, 54, 3, 54, 1831, 8, 54, 3, 54, 1833, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1839, 8, 55, 10, 55, 12, 55, 1842, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1850, 8, 56, 10, 56, 12, 56, 1853, 9, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1861, 8, 57, 10, 57, 12, 57, 1864, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1870, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1881, 8, 58, 10, 58, 12, 58, 1884, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1889, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1913, 8, 58, 10, 58, 12, 58, 1916, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1930, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1935, 8, 58, 1, 58, 1, 58, 3, 58, 1939, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1949, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1955, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1961, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1969, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1974, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1981, 8, 59, 3, 59, 1983, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1989, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1995, 8, 59, 1, 59, 1, 59, 3, 59, 1999, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2004, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2011, 8, 59, 10, 59, 12, 59, 2014, 9, 59, 1, 59, 1, 59, 3, 59, 2018, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2030, 8, 60, 10, 60, 12, 60, 2033, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2040, 8, 60, 10, 60, 12, 60, 2043, 9, 60, 3, 60, 2045, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2054, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2059, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2064, 8, 63, 3, 63, 2066, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2073, 8, 64, 10, 64, 12, 64, 2076, 9, 64, 3, 64, 2078, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2084, 8, 64, 10, 64, 12, 64, 2087, 9, 64, 3, 64, 2089, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2096, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2101, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2108, 8, 66, 1, 66, 1, 66, 3, 66, 2112, 8, 66, 3, 66, 2114, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2122, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2130, 8, 66, 10, 66, 12, 66, 2133, 9, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2138, 8, 66, 3, 66, 2140, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2147, 8, 67, 1, 67, 1, 67, 3, 67, 2151, 8, 67, 3, 67, 2153, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2160, 8, 67, 1, 67, 1, 67, 3, 67, 2164, 8, 67, 3, 67, 2166, 8, 67, 3, 67, 2168, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2175, 8, 68, 10, 68, 12, 68, 2178, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2188, 8, 68, 1, 69, 1, 69, 3, 69, 2192, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2200, 8, 70, 10, 70, 12, 70, 2203, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2212, 8, 72, 1, 72, 1, 72, 3, 72, 2216, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2224, 8, 72, 10, 72, 12, 72, 2227, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2239, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2247, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2254, 8, 73, 10, 73, 12, 73, 2257, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2262, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2270, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2276, 8, 73, 1, 73, 1, 73, 3, 73, 2280, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2285, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2290, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2296, 8, 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, 5, 74, 2310, 8, 74, 10, 74, 12, 74, 2313, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2340, 8, 75, 11, 75, 12, 75, 2341, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2351, 8, 75, 10, 75, 12, 75, 2354, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2361, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2371, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2382, 8, 75, 10, 75, 12, 75, 2385, 9, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2390, 8, 75, 1, 75, 3, 75, 2393, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2400, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2405, 8, 75, 1, 75, 3, 75, 2408, 8, 75, 1, 75, 3, 75, 2411, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2416, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2421, 8, 75, 10, 75, 12, 75, 2424, 9, 75, 3, 75, 2426, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2433, 8, 75, 10, 75, 12, 75, 2436, 9, 75, 3, 75, 2438, 8, 75, 1, 75, 1, 75, 3, 75, 2442, 8, 75, 1, 75, 3, 75, 2445, 8, 75, 1, 75, 3, 75, 2448, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2461, 8, 75, 10, 75, 12, 75, 2464, 9, 75, 3, 75, 2466, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2483, 8, 75, 11, 75, 12, 75, 2484, 1, 75, 1, 75, 3, 75, 2489, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2495, 8, 75, 11, 75, 12, 75, 2496, 1, 75, 1, 75, 3, 75, 2501, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2524, 8, 75, 10, 75, 12, 75, 2527, 9, 75, 3, 75, 2529, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2538, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2544, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2550, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2556, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2565, 8, 75, 1, 75, 3, 75, 2568, 8, 75, 1, 75, 3, 75, 2571, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2590, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2599, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2619, 8, 75, 10, 75, 12, 75, 2622, 9, 75, 3, 75, 2624, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2634, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2643, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2649, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2655, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2666, 8, 75, 3, 75, 2668, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2673, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2680, 8, 75, 3, 75, 2682, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2688, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2694, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2703, 8, 75, 10, 75, 12, 75, 2706, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2714, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2719, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2724, 8, 75, 3, 75, 2726, 8, 75, 3, 75, 2728, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2734, 8, 75, 3, 75, 2736, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2744, 8, 75, 10, 75, 12, 75, 2747, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2755, 8, 75, 3, 75, 2757, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2763, 8, 75, 3, 75, 2765, 8, 75, 1, 75, 3, 75, 2768, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2778, 8, 75, 10, 75, 12, 75, 2781, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2788, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2794, 8, 76, 10, 76, 12, 76, 2797, 9, 76, 3, 76, 2799, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2804, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2809, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2821, 8, 81, 1, 82, 1, 82, 3, 82, 2825, 8, 82, 1, 82, 1, 82, 3, 82, 2829, 8, 82, 1, 82, 3, 82, 2832, 8, 82, 3, 82, 2834, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2842, 8, 83, 1, 84, 3, 84, 2845, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2855, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2863, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2869, 8, 87, 3, 87, 2871, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2879, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2889, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2895, 8, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2907, 8, 95, 10, 95, 12, 95, 2910, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2918, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2925, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2930, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2937, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2942, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2963, 8, 95, 10, 95, 12, 95, 2966, 9, 95, 1, 95, 1, 95, 3, 95, 2970, 8, 95, 3, 95, 2972, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2979, 8, 95, 5, 95, 2981, 8, 95, 10, 95, 12, 95, 2984, 9, 95, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2990, 8, 96, 1, 97, 1, 97, 3, 97, 2994, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3010, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3023, 8, 100, 10, 100, 12, 100, 3026, 9, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3032, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3041, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3049, 8, 100, 10, 100, 12, 100, 3052, 9, 100, 1, 100, 1, 100, 3, 100, 3056, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3063, 8, 100, 10, 100, 12, 100, 3066, 9, 100, 1, 100, 1, 100, 3, 100, 3070, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3078, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3084, 8, 102, 10, 102, 12, 102, 3087, 9, 102, 3, 102, 3089, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3095, 8, 102, 1, 102, 3, 102, 3098, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3105, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3111, 8, 102, 10, 102, 12, 102, 3114, 9, 102, 3, 102, 3116, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3122, 8, 102, 10, 102, 12, 102, 3125, 9, 102, 3, 102, 3127, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3153, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3164, 8, 104, 1, 105, 1, 105, 1, 105, 3, 105, 3169, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3176, 8, 105, 10, 105, 12, 105, 3179, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3189, 8, 106, 10, 106, 12, 106, 3192, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3206, 8, 106, 1, 107, 1, 107, 3, 107, 3210, 8, 107, 1, 107, 1, 107, 3, 107, 3214, 8, 107, 1, 107, 1, 107, 3, 107, 3218, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3224, 8, 107, 1, 107, 1, 107, 3, 107, 3228, 8, 107, 1, 107, 1, 107, 3, 107, 3232, 8, 107, 1, 107, 1, 107, 3, 107, 3236, 8, 107, 3, 107, 3238, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3248, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3255, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3264, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3271, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3278, 8, 113, 1, 114, 1, 114, 1, 114, 5, 114, 3283, 8, 114, 10, 114, 12, 114, 3286, 9, 114, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3292, 8, 115, 10, 115, 12, 115, 3295, 9, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3304, 8, 116, 10, 116, 12, 116, 3307, 9, 116, 3, 116, 3309, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 3318, 8, 117, 10, 117, 12, 117, 3321, 9, 117, 3, 117, 3323, 8, 117, 1, 117, 1, 117, 1, 118, 3, 118, 3328, 8, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 3338, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3354, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3366, 8, 121, 11, 121, 12, 121, 3367, 1, 121, 3, 121, 3371, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3378, 8, 121, 11, 121, 12, 121, 3379, 1, 121, 3, 121, 3383, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3393, 8, 121, 10, 121, 12, 121, 3396, 9, 121, 1, 121, 3, 121, 3399, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3412, 8, 121, 10, 121, 12, 121, 3415, 9, 121, 1, 121, 3, 121, 3418, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3424, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3434, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3446, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3455, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3474, 8, 125, 10, 125, 12, 125, 3477, 9, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3482, 8, 125, 1, 126, 1, 126, 1, 126, 4, 126, 3487, 8, 126, 11, 126, 12, 126, 3488, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3497, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3502, 8, 128, 1, 129, 3, 129, 3505, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3511, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3524, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3537, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3550, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3563, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3570, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3577, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 3589, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3598, 8, 144, 10, 144, 12, 144, 3601, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 3, 147, 3614, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3621, 8, 148, 1, 149, 1, 149, 1, 149, 5, 149, 3626, 8, 149, 10, 149, 12, 149, 3629, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3638, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3645, 8, 151, 1, 152, 3, 152, 3648, 8, 152, 1, 152, 1, 152, 3, 152, 3652, 8, 152, 1, 152, 1, 152, 3, 152, 3656, 8, 152, 1, 152, 3, 152, 3659, 8, 152, 1, 153, 1, 153, 3, 153, 3663, 8, 153, 1, 154, 1, 154, 1, 154, 0, 7, 46, 78, 144, 148, 150, 190, 210, 155, 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, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4212, 0, 313, 1, 0, 0, 0, 2, 318, 1, 0, 0, 0, 4, 320, 1, 0, 0, 0, 6, 324, 1, 0, 0, 0, 8, 328, 1, 0, 0, 0, 10, 332, 1, 0, 0, 0, 12, 336, 1, 0, 0, 0, 14, 340, 1, 0, 0, 0, 16, 1238, 1, 0, 0, 0, 18, 1241, 1, 0, 0, 0, 20, 1245, 1, 0, 0, 0, 22, 1255, 1, 0, 0, 0, 24, 1259, 1, 0, 0, 0, 26, 1273, 1, 0, 0, 0, 28, 1275, 1, 0, 0, 0, 30, 1289, 1, 0, 0, 0, 32, 1295, 1, 0, 0, 0, 34, 1299, 1, 0, 0, 0, 36, 1307, 1, 0, 0, 0, 38, 1313, 1, 0, 0, 0, 40, 1315, 1, 0, 0, 0, 42, 1352, 1, 0, 0, 0, 44, 1354, 1, 0, 0, 0, 46, 1356, 1, 0, 0, 0, 48, 1392, 1, 0, 0, 0, 50, 1396, 1, 0, 0, 0, 52, 1405, 1, 0, 0, 0, 54, 1450, 1, 0, 0, 0, 56, 1453, 1, 0, 0, 0, 58, 1457, 1, 0, 0, 0, 60, 1467, 1, 0, 0, 0, 62, 1515, 1, 0, 0, 0, 64, 1530, 1, 0, 0, 0, 66, 1534, 1, 0, 0, 0, 68, 1536, 1, 0, 0, 0, 70, 1543, 1, 0, 0, 0, 72, 1565, 1, 0, 0, 0, 74, 1574, 1, 0, 0, 0, 76, 1594, 1, 0, 0, 0, 78, 1596, 1, 0, 0, 0, 80, 1635, 1, 0, 0, 0, 82, 1651, 1, 0, 0, 0, 84, 1653, 1, 0, 0, 0, 86, 1662, 1, 0, 0, 0, 88, 1664, 1, 0, 0, 0, 90, 1672, 1, 0, 0, 0, 92, 1678, 1, 0, 0, 0, 94, 1680, 1, 0, 0, 0, 96, 1758, 1, 0, 0, 0, 98, 1773, 1, 0, 0, 0, 100, 1784, 1, 0, 0, 0, 102, 1805, 1, 0, 0, 0, 104, 1807, 1, 0, 0, 0, 106, 1820, 1, 0, 0, 0, 108, 1824, 1, 0, 0, 0, 110, 1834, 1, 0, 0, 0, 112, 1845, 1, 0, 0, 0, 114, 1856, 1, 0, 0, 0, 116, 1938, 1, 0, 0, 0, 118, 2017, 1, 0, 0, 0, 120, 2044, 1, 0, 0, 0, 122, 2046, 1, 0, 0, 0, 124, 2053, 1, 0, 0, 0, 126, 2065, 1, 0, 0, 0, 128, 2067, 1, 0, 0, 0, 130, 2095, 1, 0, 0, 0, 132, 2102, 1, 0, 0, 0, 134, 2167, 1, 0, 0, 0, 136, 2187, 1, 0, 0, 0, 138, 2189, 1, 0, 0, 0, 140, 2193, 1, 0, 0, 0, 142, 2206, 1, 0, 0, 0, 144, 2215, 1, 0, 0, 0, 146, 2289, 1, 0, 0, 0, 148, 2295, 1, 0, 0, 0, 150, 2767, 1, 0, 0, 0, 152, 2782, 1, 0, 0, 0, 154, 2800, 1, 0, 0, 0, 156, 2805, 1, 0, 0, 0, 158, 2810, 1, 0, 0, 0, 160, 2814, 1, 0, 0, 0, 162, 2820, 1, 0, 0, 0, 164, 2833, 1, 0, 0, 0, 166, 2841, 1, 0, 0, 0, 168, 2854, 1, 0, 0, 0, 170, 2856, 1, 0, 0, 0, 172, 2862, 1, 0, 0, 0, 174, 2870, 1, 0, 0, 0, 176, 2878, 1, 0, 0, 0, 178, 2880, 1, 0, 0, 0, 180, 2882, 1, 0, 0, 0, 182, 2884, 1, 0, 0, 0, 184, 2886, 1, 0, 0, 0, 186, 2896, 1, 0, 0, 0, 188, 2898, 1, 0, 0, 0, 190, 2971, 1, 0, 0, 0, 192, 2989, 1, 0, 0, 0, 194, 2993, 1, 0, 0, 0, 196, 2995, 1, 0, 0, 0, 198, 3000, 1, 0, 0, 0, 200, 3069, 1, 0, 0, 0, 202, 3071, 1, 0, 0, 0, 204, 3088, 1, 0, 0, 0, 206, 3152, 1, 0, 0, 0, 208, 3163, 1, 0, 0, 0, 210, 3165, 1, 0, 0, 0, 212, 3205, 1, 0, 0, 0, 214, 3237, 1, 0, 0, 0, 216, 3239, 1, 0, 0, 0, 218, 3247, 1, 0, 0, 0, 220, 3254, 1, 0, 0, 0, 222, 3263, 1, 0, 0, 0, 224, 3270, 1, 0, 0, 0, 226, 3277, 1, 0, 0, 0, 228, 3279, 1, 0, 0, 0, 230, 3287, 1, 0, 0, 0, 232, 3298, 1, 0, 0, 0, 234, 3312, 1, 0, 0, 0, 236, 3327, 1, 0, 0, 0, 238, 3331, 1, 0, 0, 0, 240, 3353, 1, 0, 0, 0, 242, 3454, 1, 0, 0, 0, 244, 3456, 1, 0, 0, 0, 246, 3461, 1, 0, 0, 0, 248, 3466, 1, 0, 0, 0, 250, 3469, 1, 0, 0, 0, 252, 3486, 1, 0, 0, 0, 254, 3496, 1, 0, 0, 0, 256, 3501, 1, 0, 0, 0, 258, 3504, 1, 0, 0, 0, 260, 3510, 1, 0, 0, 0, 262, 3523, 1, 0, 0, 0, 264, 3536, 1, 0, 0, 0, 266, 3549, 1, 0, 0, 0, 268, 3562, 1, 0, 0, 0, 270, 3569, 1, 0, 0, 0, 272, 3576, 1, 0, 0, 0, 274, 3578, 1, 0, 0, 0, 276, 3580, 1, 0, 0, 0, 278, 3582, 1, 0, 0, 0, 280, 3584, 1, 0, 0, 0, 282, 3588, 1, 0, 0, 0, 284, 3590, 1, 0, 0, 0, 286, 3592, 1, 0, 0, 0, 288, 3594, 1, 0, 0, 0, 290, 3602, 1, 0, 0, 0, 292, 3608, 1, 0, 0, 0, 294, 3613, 1, 0, 0, 0, 296, 3620, 1, 0, 0, 0, 298, 3622, 1, 0, 0, 0, 300, 3637, 1, 0, 0, 0, 302, 3644, 1, 0, 0, 0, 304, 3658, 1, 0, 0, 0, 306, 3662, 1, 0, 0, 0, 308, 3664, 1, 0, 0, 0, 310, 312, 3, 2, 1, 0, 311, 310, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 316, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 316, 317, 5, 0, 0, 1, 317, 1, 1, 0, 0, 0, 318, 319, 3, 4, 2, 0, 319, 3, 1, 0, 0, 0, 320, 322, 3, 16, 8, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 5, 1, 0, 0, 0, 324, 326, 3, 142, 71, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 7, 1, 0, 0, 0, 328, 330, 3, 228, 114, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 9, 1, 0, 0, 0, 332, 334, 3, 190, 95, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 11, 1, 0, 0, 0, 336, 338, 3, 210, 105, 0, 337, 339, 5, 325, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 13, 1, 0, 0, 0, 340, 341, 3, 230, 115, 0, 341, 342, 5, 0, 0, 1, 342, 15, 1, 0, 0, 0, 343, 1239, 3, 18, 9, 0, 344, 345, 5, 288, 0, 0, 345, 1239, 3, 270, 135, 0, 346, 347, 5, 53, 0, 0, 347, 351, 5, 42, 0, 0, 348, 349, 5, 119, 0, 0, 349, 350, 5, 182, 0, 0, 350, 352, 5, 94, 0, 0, 351, 348, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 3, 276, 138, 0, 354, 355, 5, 290, 0, 0, 355, 358, 3, 302, 151, 0, 356, 357, 5, 46, 0, 0, 357, 359, 3, 174, 87, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 31, 0, 0, 361, 363, 3, 296, 148, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 365, 5, 304, 0, 0, 365, 367, 3, 32, 16, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 1239, 1, 0, 0, 0, 368, 369, 5, 83, 0, 0, 369, 372, 5, 42, 0, 0, 370, 371, 5, 119, 0, 0, 371, 373, 5, 94, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 3, 274, 137, 0, 375, 377, 7, 0, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 1239, 1, 0, 0, 0, 378, 379, 5, 53, 0, 0, 379, 383, 5, 243, 0, 0, 380, 381, 5, 119, 0, 0, 381, 382, 5, 182, 0, 0, 382, 384, 5, 94, 0, 0, 383, 380, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 3, 272, 136, 0, 386, 387, 5, 31, 0, 0, 387, 389, 3, 296, 148, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 391, 5, 304, 0, 0, 391, 393, 3, 32, 16, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1239, 1, 0, 0, 0, 394, 395, 5, 83, 0, 0, 395, 398, 5, 243, 0, 0, 396, 397, 5, 119, 0, 0, 397, 399, 5, 94, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 402, 3, 270, 135, 0, 401, 403, 7, 0, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 1239, 1, 0, 0, 0, 404, 405, 5, 23, 0, 0, 405, 406, 5, 243, 0, 0, 406, 407, 3, 270, 135, 0, 407, 408, 5, 223, 0, 0, 408, 409, 5, 269, 0, 0, 409, 410, 3, 272, 136, 0, 410, 1239, 1, 0, 0, 0, 411, 412, 5, 23, 0, 0, 412, 413, 5, 243, 0, 0, 413, 414, 3, 270, 135, 0, 414, 415, 5, 251, 0, 0, 415, 416, 5, 31, 0, 0, 416, 417, 3, 296, 148, 0, 417, 1239, 1, 0, 0, 0, 418, 421, 5, 53, 0, 0, 419, 420, 5, 194, 0, 0, 420, 422, 5, 226, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 427, 5, 260, 0, 0, 424, 425, 5, 119, 0, 0, 425, 426, 5, 182, 0, 0, 426, 428, 5, 94, 0, 0, 427, 424, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 431, 3, 264, 132, 0, 430, 432, 3, 110, 55, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 434, 5, 46, 0, 0, 434, 436, 3, 174, 87, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 304, 0, 0, 438, 440, 3, 32, 16, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 447, 5, 28, 0, 0, 442, 448, 3, 18, 9, 0, 443, 444, 5, 1, 0, 0, 444, 445, 3, 18, 9, 0, 445, 446, 5, 2, 0, 0, 446, 448, 1, 0, 0, 0, 447, 442, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 448, 454, 1, 0, 0, 0, 449, 451, 5, 304, 0, 0, 450, 452, 5, 179, 0, 0, 451, 450, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 5, 65, 0, 0, 454, 449, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 1239, 1, 0, 0, 0, 456, 459, 5, 53, 0, 0, 457, 458, 5, 194, 0, 0, 458, 460, 5, 226, 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 465, 5, 260, 0, 0, 462, 463, 5, 119, 0, 0, 463, 464, 5, 182, 0, 0, 464, 466, 5, 94, 0, 0, 465, 462, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 3, 264, 132, 0, 468, 469, 5, 1, 0, 0, 469, 474, 3, 26, 13, 0, 470, 471, 5, 3, 0, 0, 471, 473, 3, 26, 13, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 480, 5, 2, 0, 0, 478, 479, 5, 46, 0, 0, 479, 481, 3, 174, 87, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 483, 5, 304, 0, 0, 483, 485, 3, 32, 16, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 1239, 1, 0, 0, 0, 486, 487, 5, 83, 0, 0, 487, 490, 5, 260, 0, 0, 488, 489, 5, 119, 0, 0, 489, 491, 5, 94, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 1239, 3, 262, 131, 0, 493, 494, 5, 127, 0, 0, 494, 495, 5, 130, 0, 0, 495, 497, 3, 262, 131, 0, 496, 498, 3, 112, 56, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 18, 9, 0, 500, 1239, 1, 0, 0, 0, 501, 502, 5, 73, 0, 0, 502, 503, 5, 105, 0, 0, 503, 505, 3, 262, 131, 0, 504, 506, 3, 54, 27, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1239, 1, 0, 0, 0, 507, 508, 5, 274, 0, 0, 508, 509, 5, 260, 0, 0, 509, 1239, 3, 262, 131, 0, 510, 511, 5, 46, 0, 0, 511, 512, 5, 190, 0, 0, 512, 513, 5, 260, 0, 0, 513, 514, 3, 262, 131, 0, 514, 517, 5, 133, 0, 0, 515, 518, 3, 174, 87, 0, 516, 518, 5, 183, 0, 0, 517, 515, 1, 0, 0, 0, 517, 516, 1, 0, 0, 0, 518, 1239, 1, 0, 0, 0, 519, 520, 5, 46, 0, 0, 520, 521, 5, 190, 0, 0, 521, 522, 5, 299, 0, 0, 522, 523, 3, 266, 133, 0, 523, 526, 5, 133, 0, 0, 524, 527, 3, 174, 87, 0, 525, 527, 5, 183, 0, 0, 526, 524, 1, 0, 0, 0, 526, 525, 1, 0, 0, 0, 527, 1239, 1, 0, 0, 0, 528, 529, 5, 46, 0, 0, 529, 530, 5, 190, 0, 0, 530, 531, 5, 44, 0, 0, 531, 532, 3, 282, 141, 0, 532, 535, 5, 133, 0, 0, 533, 536, 3, 174, 87, 0, 534, 536, 5, 183, 0, 0, 535, 533, 1, 0, 0, 0, 535, 534, 1, 0, 0, 0, 536, 1239, 1, 0, 0, 0, 537, 538, 5, 23, 0, 0, 538, 541, 5, 260, 0, 0, 539, 540, 5, 119, 0, 0, 540, 542, 5, 94, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 3, 262, 131, 0, 544, 545, 5, 223, 0, 0, 545, 546, 5, 269, 0, 0, 546, 547, 3, 264, 132, 0, 547, 1239, 1, 0, 0, 0, 548, 549, 5, 23, 0, 0, 549, 552, 5, 260, 0, 0, 550, 551, 5, 119, 0, 0, 551, 553, 5, 94, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 3, 262, 131, 0, 555, 556, 5, 19, 0, 0, 556, 560, 5, 44, 0, 0, 557, 558, 5, 119, 0, 0, 558, 559, 5, 182, 0, 0, 559, 561, 5, 94, 0, 0, 560, 557, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 3, 28, 14, 0, 563, 1239, 1, 0, 0, 0, 564, 565, 5, 23, 0, 0, 565, 568, 5, 260, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 262, 131, 0, 571, 572, 5, 223, 0, 0, 572, 575, 5, 44, 0, 0, 573, 574, 5, 119, 0, 0, 574, 576, 5, 94, 0, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 3, 282, 141, 0, 578, 579, 5, 269, 0, 0, 579, 580, 3, 286, 143, 0, 580, 1239, 1, 0, 0, 0, 581, 582, 5, 23, 0, 0, 582, 585, 5, 260, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 262, 131, 0, 588, 589, 5, 83, 0, 0, 589, 592, 5, 44, 0, 0, 590, 591, 5, 119, 0, 0, 591, 593, 5, 94, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 3, 282, 141, 0, 595, 1239, 1, 0, 0, 0, 596, 597, 5, 23, 0, 0, 597, 600, 5, 260, 0, 0, 598, 599, 5, 119, 0, 0, 599, 601, 5, 94, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 3, 262, 131, 0, 603, 604, 5, 23, 0, 0, 604, 605, 5, 44, 0, 0, 605, 606, 3, 282, 141, 0, 606, 607, 5, 251, 0, 0, 607, 608, 5, 65, 0, 0, 608, 609, 5, 276, 0, 0, 609, 610, 3, 190, 95, 0, 610, 1239, 1, 0, 0, 0, 611, 612, 5, 23, 0, 0, 612, 615, 5, 260, 0, 0, 613, 614, 5, 119, 0, 0, 614, 616, 5, 94, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 3, 262, 131, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 44, 0, 0, 620, 621, 3, 282, 141, 0, 621, 622, 5, 83, 0, 0, 622, 623, 5, 182, 0, 0, 623, 624, 5, 183, 0, 0, 624, 1239, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 262, 131, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 31, 0, 0, 630, 631, 3, 296, 148, 0, 631, 1239, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 262, 131, 0, 635, 636, 5, 251, 0, 0, 636, 637, 5, 216, 0, 0, 637, 638, 3, 34, 17, 0, 638, 1239, 1, 0, 0, 0, 639, 640, 5, 23, 0, 0, 640, 641, 5, 260, 0, 0, 641, 642, 3, 262, 131, 0, 642, 643, 5, 93, 0, 0, 643, 656, 3, 278, 139, 0, 644, 653, 5, 1, 0, 0, 645, 650, 3, 224, 112, 0, 646, 647, 5, 3, 0, 0, 647, 649, 3, 224, 112, 0, 648, 646, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 645, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 657, 5, 2, 0, 0, 656, 644, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 1, 0, 0, 0, 658, 660, 3, 54, 27, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1239, 1, 0, 0, 0, 661, 662, 5, 24, 0, 0, 662, 665, 3, 262, 131, 0, 663, 664, 5, 304, 0, 0, 664, 666, 3, 32, 16, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1239, 1, 0, 0, 0, 667, 670, 5, 53, 0, 0, 668, 669, 5, 194, 0, 0, 669, 671, 5, 226, 0, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 167, 0, 0, 673, 677, 5, 299, 0, 0, 674, 675, 5, 119, 0, 0, 675, 676, 5, 182, 0, 0, 676, 678, 5, 94, 0, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 683, 3, 268, 134, 0, 680, 681, 5, 109, 0, 0, 681, 682, 5, 208, 0, 0, 682, 684, 3, 184, 92, 0, 683, 680, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 46, 0, 0, 686, 688, 3, 174, 87, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 690, 5, 304, 0, 0, 690, 692, 3, 32, 16, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 28, 0, 0, 694, 695, 3, 18, 9, 0, 695, 1239, 1, 0, 0, 0, 696, 699, 5, 53, 0, 0, 697, 698, 5, 194, 0, 0, 698, 700, 5, 226, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 299, 0, 0, 702, 705, 3, 268, 134, 0, 703, 704, 5, 46, 0, 0, 704, 706, 3, 174, 87, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 246, 0, 0, 708, 710, 7, 1, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 713, 1, 0, 0, 0, 711, 712, 5, 304, 0, 0, 712, 714, 3, 32, 16, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 28, 0, 0, 716, 717, 3, 18, 9, 0, 717, 1239, 1, 0, 0, 0, 718, 719, 5, 222, 0, 0, 719, 720, 5, 167, 0, 0, 720, 721, 5, 299, 0, 0, 721, 1239, 3, 266, 133, 0, 722, 723, 5, 83, 0, 0, 723, 724, 5, 167, 0, 0, 724, 727, 5, 299, 0, 0, 725, 726, 5, 119, 0, 0, 726, 728, 5, 94, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 1239, 3, 266, 133, 0, 730, 731, 5, 23, 0, 0, 731, 732, 5, 167, 0, 0, 732, 735, 5, 299, 0, 0, 733, 734, 5, 119, 0, 0, 734, 736, 5, 94, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 3, 266, 133, 0, 738, 739, 5, 223, 0, 0, 739, 740, 5, 269, 0, 0, 740, 741, 3, 268, 134, 0, 741, 1239, 1, 0, 0, 0, 742, 743, 5, 23, 0, 0, 743, 744, 5, 167, 0, 0, 744, 745, 5, 299, 0, 0, 745, 746, 3, 266, 133, 0, 746, 747, 5, 251, 0, 0, 747, 748, 5, 216, 0, 0, 748, 749, 3, 34, 17, 0, 749, 1239, 1, 0, 0, 0, 750, 751, 5, 83, 0, 0, 751, 754, 5, 299, 0, 0, 752, 753, 5, 119, 0, 0, 753, 755, 5, 94, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 1239, 3, 266, 133, 0, 757, 758, 5, 23, 0, 0, 758, 759, 5, 299, 0, 0, 759, 760, 3, 266, 133, 0, 760, 761, 5, 223, 0, 0, 761, 762, 5, 269, 0, 0, 762, 763, 3, 268, 134, 0, 763, 1239, 1, 0, 0, 0, 764, 765, 5, 23, 0, 0, 765, 766, 5, 299, 0, 0, 766, 767, 3, 266, 133, 0, 767, 768, 5, 251, 0, 0, 768, 769, 5, 31, 0, 0, 769, 770, 3, 296, 148, 0, 770, 1239, 1, 0, 0, 0, 771, 772, 5, 37, 0, 0, 772, 773, 3, 278, 139, 0, 773, 782, 5, 1, 0, 0, 774, 779, 3, 224, 112, 0, 775, 776, 5, 3, 0, 0, 776, 778, 3, 224, 112, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 2, 0, 0, 785, 1239, 1, 0, 0, 0, 786, 789, 5, 53, 0, 0, 787, 788, 5, 194, 0, 0, 788, 790, 5, 226, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 1239, 3, 230, 115, 0, 792, 793, 5, 83, 0, 0, 793, 796, 5, 107, 0, 0, 794, 795, 5, 119, 0, 0, 795, 797, 5, 94, 0, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 1239, 3, 234, 117, 0, 799, 800, 5, 53, 0, 0, 800, 801, 5, 235, 0, 0, 801, 805, 3, 302, 151, 0, 802, 803, 5, 304, 0, 0, 803, 804, 5, 20, 0, 0, 804, 806, 3, 294, 147, 0, 805, 802, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 808, 5, 122, 0, 0, 808, 810, 3, 274, 137, 0, 809, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1239, 1, 0, 0, 0, 811, 812, 5, 83, 0, 0, 812, 813, 5, 235, 0, 0, 813, 816, 3, 302, 151, 0, 814, 815, 5, 122, 0, 0, 815, 817, 3, 274, 137, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 1239, 1, 0, 0, 0, 818, 819, 5, 110, 0, 0, 819, 824, 3, 300, 150, 0, 820, 821, 5, 3, 0, 0, 821, 823, 3, 300, 150, 0, 822, 820, 1, 0, 0, 0, 823, 826, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 827, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 828, 5, 269, 0, 0, 828, 833, 3, 296, 148, 0, 829, 830, 5, 3, 0, 0, 830, 832, 3, 296, 148, 0, 831, 829, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 839, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 837, 5, 304, 0, 0, 837, 838, 5, 20, 0, 0, 838, 840, 5, 193, 0, 0, 839, 836, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 844, 1, 0, 0, 0, 841, 842, 5, 111, 0, 0, 842, 843, 5, 36, 0, 0, 843, 845, 3, 294, 147, 0, 844, 841, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 847, 5, 122, 0, 0, 847, 849, 3, 274, 137, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 1239, 1, 0, 0, 0, 850, 861, 5, 110, 0, 0, 851, 856, 3, 300, 150, 0, 852, 853, 5, 3, 0, 0, 853, 855, 3, 300, 150, 0, 854, 852, 1, 0, 0, 0, 855, 858, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 862, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 859, 860, 5, 22, 0, 0, 860, 862, 5, 215, 0, 0, 861, 851, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 190, 0, 0, 864, 865, 3, 258, 129, 0, 865, 866, 5, 269, 0, 0, 866, 870, 3, 296, 148, 0, 867, 868, 5, 304, 0, 0, 868, 869, 5, 110, 0, 0, 869, 871, 5, 193, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 1239, 1, 0, 0, 0, 872, 876, 5, 233, 0, 0, 873, 874, 5, 20, 0, 0, 874, 875, 5, 193, 0, 0, 875, 877, 5, 103, 0, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 883, 3, 300, 150, 0, 879, 880, 5, 3, 0, 0, 880, 882, 3, 300, 150, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 105, 0, 0, 887, 892, 3, 296, 148, 0, 888, 889, 5, 3, 0, 0, 889, 891, 3, 296, 148, 0, 890, 888, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 898, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 896, 5, 111, 0, 0, 896, 897, 5, 36, 0, 0, 897, 899, 3, 294, 147, 0, 898, 895, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 901, 5, 122, 0, 0, 901, 903, 3, 274, 137, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1239, 1, 0, 0, 0, 904, 908, 5, 233, 0, 0, 905, 906, 5, 110, 0, 0, 906, 907, 5, 193, 0, 0, 907, 909, 5, 103, 0, 0, 908, 905, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 920, 1, 0, 0, 0, 910, 915, 3, 300, 150, 0, 911, 912, 5, 3, 0, 0, 912, 914, 3, 300, 150, 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, 921, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 22, 0, 0, 919, 921, 5, 215, 0, 0, 920, 910, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 5, 190, 0, 0, 923, 924, 3, 258, 129, 0, 924, 925, 5, 105, 0, 0, 925, 926, 3, 296, 148, 0, 926, 1239, 1, 0, 0, 0, 927, 938, 5, 74, 0, 0, 928, 933, 3, 254, 127, 0, 929, 930, 5, 3, 0, 0, 930, 932, 3, 254, 127, 0, 931, 929, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 939, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 22, 0, 0, 937, 939, 5, 215, 0, 0, 938, 928, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 5, 190, 0, 0, 941, 942, 3, 258, 129, 0, 942, 943, 5, 269, 0, 0, 943, 944, 3, 296, 148, 0, 944, 1239, 1, 0, 0, 0, 945, 946, 5, 251, 0, 0, 946, 950, 5, 235, 0, 0, 947, 951, 5, 22, 0, 0, 948, 951, 5, 180, 0, 0, 949, 951, 3, 302, 151, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 954, 1, 0, 0, 0, 952, 953, 5, 122, 0, 0, 953, 955, 3, 274, 137, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1239, 1, 0, 0, 0, 956, 957, 5, 253, 0, 0, 957, 960, 5, 112, 0, 0, 958, 959, 5, 190, 0, 0, 959, 961, 3, 258, 129, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 1239, 1, 0, 0, 0, 962, 974, 5, 95, 0, 0, 963, 964, 5, 1, 0, 0, 964, 969, 3, 218, 109, 0, 965, 966, 5, 3, 0, 0, 966, 968, 3, 218, 109, 0, 967, 965, 1, 0, 0, 0, 968, 971, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 972, 973, 5, 2, 0, 0, 973, 975, 1, 0, 0, 0, 974, 963, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1239, 3, 16, 8, 0, 977, 978, 5, 95, 0, 0, 978, 980, 5, 24, 0, 0, 979, 981, 5, 297, 0, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1239, 3, 16, 8, 0, 983, 984, 5, 253, 0, 0, 984, 985, 5, 53, 0, 0, 985, 986, 5, 260, 0, 0, 986, 1239, 3, 262, 131, 0, 987, 988, 5, 253, 0, 0, 988, 989, 5, 53, 0, 0, 989, 990, 5, 243, 0, 0, 990, 1239, 3, 270, 135, 0, 991, 992, 5, 253, 0, 0, 992, 993, 5, 53, 0, 0, 993, 994, 5, 299, 0, 0, 994, 1239, 3, 266, 133, 0, 995, 996, 5, 253, 0, 0, 996, 997, 5, 53, 0, 0, 997, 998, 5, 167, 0, 0, 998, 999, 5, 299, 0, 0, 999, 1239, 3, 266, 133, 0, 1000, 1001, 5, 253, 0, 0, 1001, 1002, 5, 53, 0, 0, 1002, 1003, 5, 107, 0, 0, 1003, 1239, 3, 278, 139, 0, 1004, 1005, 5, 253, 0, 0, 1005, 1008, 5, 261, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 270, 135, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1016, 1, 0, 0, 0, 1010, 1011, 5, 154, 0, 0, 1011, 1014, 3, 174, 87, 0, 1012, 1013, 5, 90, 0, 0, 1013, 1015, 3, 174, 87, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1010, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1239, 1, 0, 0, 0, 1018, 1019, 5, 253, 0, 0, 1019, 1022, 5, 244, 0, 0, 1020, 1021, 7, 2, 0, 0, 1021, 1023, 3, 274, 137, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1030, 1, 0, 0, 0, 1024, 1025, 5, 154, 0, 0, 1025, 1028, 3, 174, 87, 0, 1026, 1027, 5, 90, 0, 0, 1027, 1029, 3, 174, 87, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 1, 0, 0, 0, 1030, 1024, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1239, 1, 0, 0, 0, 1032, 1033, 5, 253, 0, 0, 1033, 1040, 5, 43, 0, 0, 1034, 1035, 5, 154, 0, 0, 1035, 1038, 3, 174, 87, 0, 1036, 1037, 5, 90, 0, 0, 1037, 1039, 3, 174, 87, 0, 1038, 1036, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 1, 0, 0, 0, 1040, 1034, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1239, 1, 0, 0, 0, 1042, 1043, 5, 253, 0, 0, 1043, 1044, 5, 45, 0, 0, 1044, 1045, 7, 2, 0, 0, 1045, 1052, 3, 260, 130, 0, 1046, 1047, 5, 154, 0, 0, 1047, 1050, 3, 174, 87, 0, 1048, 1049, 5, 90, 0, 0, 1049, 1051, 3, 174, 87, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1046, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1239, 1, 0, 0, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 256, 0, 0, 1056, 1057, 5, 103, 0, 0, 1057, 1239, 3, 260, 130, 0, 1058, 1059, 5, 253, 0, 0, 1059, 1060, 5, 256, 0, 0, 1060, 1061, 5, 103, 0, 0, 1061, 1062, 5, 1, 0, 0, 1062, 1063, 3, 18, 9, 0, 1063, 1064, 5, 2, 0, 0, 1064, 1239, 1, 0, 0, 0, 1065, 1067, 5, 253, 0, 0, 1066, 1068, 5, 56, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1072, 5, 236, 0, 0, 1070, 1071, 7, 2, 0, 0, 1071, 1073, 3, 274, 137, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1239, 1, 0, 0, 0, 1074, 1075, 5, 253, 0, 0, 1075, 1076, 5, 235, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1078, 7, 2, 0, 0, 1078, 1080, 3, 274, 137, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1239, 1, 0, 0, 0, 1081, 1082, 5, 76, 0, 0, 1082, 1239, 3, 260, 130, 0, 1083, 1084, 5, 75, 0, 0, 1084, 1239, 3, 260, 130, 0, 1085, 1086, 5, 253, 0, 0, 1086, 1089, 5, 108, 0, 0, 1087, 1088, 7, 2, 0, 0, 1088, 1090, 3, 270, 135, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1097, 1, 0, 0, 0, 1091, 1092, 5, 154, 0, 0, 1092, 1095, 3, 174, 87, 0, 1093, 1094, 5, 90, 0, 0, 1094, 1096, 3, 174, 87, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1091, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1239, 1, 0, 0, 0, 1099, 1100, 5, 253, 0, 0, 1100, 1107, 5, 250, 0, 0, 1101, 1102, 5, 154, 0, 0, 1102, 1105, 3, 174, 87, 0, 1103, 1104, 5, 90, 0, 0, 1104, 1106, 3, 174, 87, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1239, 1, 0, 0, 0, 1109, 1110, 5, 251, 0, 0, 1110, 1111, 5, 250, 0, 0, 1111, 1112, 5, 31, 0, 0, 1112, 1239, 3, 306, 153, 0, 1113, 1114, 5, 227, 0, 0, 1114, 1115, 5, 250, 0, 0, 1115, 1239, 5, 31, 0, 0, 1116, 1117, 5, 251, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1119, 3, 288, 144, 0, 1119, 1120, 5, 312, 0, 0, 1120, 1121, 3, 142, 71, 0, 1121, 1239, 1, 0, 0, 0, 1122, 1123, 5, 227, 0, 0, 1123, 1124, 5, 250, 0, 0, 1124, 1239, 3, 288, 144, 0, 1125, 1126, 5, 255, 0, 0, 1126, 1135, 5, 271, 0, 0, 1127, 1132, 3, 220, 110, 0, 1128, 1129, 5, 3, 0, 0, 1129, 1131, 3, 220, 110, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1134, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1127, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1239, 1, 0, 0, 0, 1137, 1139, 5, 47, 0, 0, 1138, 1140, 5, 307, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1239, 1, 0, 0, 0, 1141, 1143, 5, 237, 0, 0, 1142, 1144, 5, 307, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1239, 1, 0, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1147, 3, 302, 151, 0, 1147, 1148, 5, 105, 0, 0, 1148, 1149, 3, 16, 8, 0, 1149, 1239, 1, 0, 0, 0, 1150, 1151, 5, 68, 0, 0, 1151, 1152, 5, 214, 0, 0, 1152, 1239, 3, 302, 151, 0, 1153, 1154, 5, 93, 0, 0, 1154, 1164, 3, 302, 151, 0, 1155, 1156, 5, 290, 0, 0, 1156, 1161, 3, 142, 71, 0, 1157, 1158, 5, 3, 0, 0, 1158, 1160, 3, 142, 71, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1155, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1239, 1, 0, 0, 0, 1166, 1167, 5, 93, 0, 0, 1167, 1168, 5, 121, 0, 0, 1168, 1178, 3, 174, 87, 0, 1169, 1170, 5, 290, 0, 0, 1170, 1175, 3, 142, 71, 0, 1171, 1172, 5, 3, 0, 0, 1172, 1174, 3, 142, 71, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1239, 1, 0, 0, 0, 1180, 1181, 5, 76, 0, 0, 1181, 1182, 5, 126, 0, 0, 1182, 1239, 3, 302, 151, 0, 1183, 1184, 5, 76, 0, 0, 1184, 1185, 5, 198, 0, 0, 1185, 1239, 3, 302, 151, 0, 1186, 1187, 5, 251, 0, 0, 1187, 1188, 5, 205, 0, 0, 1188, 1239, 3, 228, 114, 0, 1189, 1190, 5, 251, 0, 0, 1190, 1191, 5, 267, 0, 0, 1191, 1194, 5, 311, 0, 0, 1192, 1195, 5, 157, 0, 0, 1193, 1195, 3, 142, 71, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1193, 1, 0, 0, 0, 1195, 1239, 1, 0, 0, 0, 1196, 1197, 5, 287, 0, 0, 1197, 1198, 3, 262, 131, 0, 1198, 1199, 5, 251, 0, 0, 1199, 1204, 3, 216, 108, 0, 1200, 1201, 5, 3, 0, 0, 1201, 1203, 3, 216, 108, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1208, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1209, 3, 54, 27, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1239, 1, 0, 0, 0, 1210, 1211, 5, 169, 0, 0, 1211, 1212, 5, 130, 0, 0, 1212, 1217, 3, 262, 131, 0, 1213, 1215, 5, 28, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 3, 302, 151, 0, 1217, 1214, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 5, 290, 0, 0, 1220, 1221, 3, 78, 39, 0, 1221, 1222, 5, 190, 0, 0, 1222, 1224, 3, 142, 71, 0, 1223, 1225, 3, 200, 100, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1239, 1, 0, 0, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 260, 0, 0, 1232, 1239, 3, 262, 131, 0, 1233, 1234, 5, 253, 0, 0, 1234, 1235, 5, 46, 0, 0, 1235, 1236, 5, 190, 0, 0, 1236, 1237, 5, 44, 0, 0, 1237, 1239, 3, 282, 141, 0, 1238, 343, 1, 0, 0, 0, 1238, 344, 1, 0, 0, 0, 1238, 346, 1, 0, 0, 0, 1238, 368, 1, 0, 0, 0, 1238, 378, 1, 0, 0, 0, 1238, 394, 1, 0, 0, 0, 1238, 404, 1, 0, 0, 0, 1238, 411, 1, 0, 0, 0, 1238, 418, 1, 0, 0, 0, 1238, 456, 1, 0, 0, 0, 1238, 486, 1, 0, 0, 0, 1238, 493, 1, 0, 0, 0, 1238, 501, 1, 0, 0, 0, 1238, 507, 1, 0, 0, 0, 1238, 510, 1, 0, 0, 0, 1238, 519, 1, 0, 0, 0, 1238, 528, 1, 0, 0, 0, 1238, 537, 1, 0, 0, 0, 1238, 548, 1, 0, 0, 0, 1238, 564, 1, 0, 0, 0, 1238, 581, 1, 0, 0, 0, 1238, 596, 1, 0, 0, 0, 1238, 611, 1, 0, 0, 0, 1238, 625, 1, 0, 0, 0, 1238, 632, 1, 0, 0, 0, 1238, 639, 1, 0, 0, 0, 1238, 661, 1, 0, 0, 0, 1238, 667, 1, 0, 0, 0, 1238, 696, 1, 0, 0, 0, 1238, 718, 1, 0, 0, 0, 1238, 722, 1, 0, 0, 0, 1238, 730, 1, 0, 0, 0, 1238, 742, 1, 0, 0, 0, 1238, 750, 1, 0, 0, 0, 1238, 757, 1, 0, 0, 0, 1238, 764, 1, 0, 0, 0, 1238, 771, 1, 0, 0, 0, 1238, 786, 1, 0, 0, 0, 1238, 792, 1, 0, 0, 0, 1238, 799, 1, 0, 0, 0, 1238, 811, 1, 0, 0, 0, 1238, 818, 1, 0, 0, 0, 1238, 850, 1, 0, 0, 0, 1238, 872, 1, 0, 0, 0, 1238, 904, 1, 0, 0, 0, 1238, 927, 1, 0, 0, 0, 1238, 945, 1, 0, 0, 0, 1238, 956, 1, 0, 0, 0, 1238, 962, 1, 0, 0, 0, 1238, 977, 1, 0, 0, 0, 1238, 983, 1, 0, 0, 0, 1238, 987, 1, 0, 0, 0, 1238, 991, 1, 0, 0, 0, 1238, 995, 1, 0, 0, 0, 1238, 1000, 1, 0, 0, 0, 1238, 1004, 1, 0, 0, 0, 1238, 1018, 1, 0, 0, 0, 1238, 1032, 1, 0, 0, 0, 1238, 1042, 1, 0, 0, 0, 1238, 1054, 1, 0, 0, 0, 1238, 1058, 1, 0, 0, 0, 1238, 1065, 1, 0, 0, 0, 1238, 1074, 1, 0, 0, 0, 1238, 1081, 1, 0, 0, 0, 1238, 1083, 1, 0, 0, 0, 1238, 1085, 1, 0, 0, 0, 1238, 1099, 1, 0, 0, 0, 1238, 1109, 1, 0, 0, 0, 1238, 1113, 1, 0, 0, 0, 1238, 1116, 1, 0, 0, 0, 1238, 1122, 1, 0, 0, 0, 1238, 1125, 1, 0, 0, 0, 1238, 1137, 1, 0, 0, 0, 1238, 1141, 1, 0, 0, 0, 1238, 1145, 1, 0, 0, 0, 1238, 1150, 1, 0, 0, 0, 1238, 1153, 1, 0, 0, 0, 1238, 1166, 1, 0, 0, 0, 1238, 1180, 1, 0, 0, 0, 1238, 1183, 1, 0, 0, 0, 1238, 1186, 1, 0, 0, 0, 1238, 1189, 1, 0, 0, 0, 1238, 1196, 1, 0, 0, 0, 1238, 1210, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1233, 1, 0, 0, 0, 1239, 17, 1, 0, 0, 0, 1240, 1242, 3, 20, 10, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 3, 22, 11, 0, 1244, 19, 1, 0, 0, 0, 1245, 1246, 5, 304, 0, 0, 1246, 1251, 3, 230, 115, 0, 1247, 1248, 5, 3, 0, 0, 1248, 1250, 3, 230, 115, 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, 21, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1256, 3, 24, 12, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 3, 40, 20, 0, 1258, 23, 1, 0, 0, 0, 1259, 1261, 5, 304, 0, 0, 1260, 1262, 5, 221, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1268, 3, 72, 36, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1267, 3, 72, 36, 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, 25, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1274, 3, 28, 14, 0, 1272, 1274, 3, 30, 15, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 27, 1, 0, 0, 0, 1275, 1276, 3, 286, 143, 0, 1276, 1279, 3, 190, 95, 0, 1277, 1278, 5, 182, 0, 0, 1278, 1280, 5, 183, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 5, 46, 0, 0, 1282, 1284, 3, 174, 87, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1286, 5, 304, 0, 0, 1286, 1288, 3, 32, 16, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 29, 1, 0, 0, 0, 1289, 1290, 5, 154, 0, 0, 1290, 1293, 3, 262, 131, 0, 1291, 1292, 7, 3, 0, 0, 1292, 1294, 5, 216, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 31, 1, 0, 0, 0, 1295, 1296, 5, 1, 0, 0, 1296, 1297, 3, 34, 17, 0, 1297, 1298, 5, 2, 0, 0, 1298, 33, 1, 0, 0, 0, 1299, 1304, 3, 36, 18, 0, 1300, 1301, 5, 3, 0, 0, 1301, 1303, 3, 36, 18, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1306, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 35, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1307, 1308, 3, 302, 151, 0, 1308, 1309, 5, 312, 0, 0, 1309, 1310, 3, 38, 19, 0, 1310, 37, 1, 0, 0, 0, 1311, 1314, 5, 70, 0, 0, 1312, 1314, 3, 142, 71, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1312, 1, 0, 0, 0, 1314, 39, 1, 0, 0, 0, 1315, 1326, 3, 46, 23, 0, 1316, 1317, 5, 195, 0, 0, 1317, 1318, 5, 36, 0, 0, 1318, 1323, 3, 50, 25, 0, 1319, 1320, 5, 3, 0, 0, 1320, 1322, 3, 50, 25, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1325, 1, 0, 0, 0, 1323, 1321, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1327, 1, 0, 0, 0, 1325, 1323, 1, 0, 0, 0, 1326, 1316, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1333, 1, 0, 0, 0, 1328, 1329, 5, 188, 0, 0, 1329, 1331, 3, 44, 22, 0, 1330, 1332, 7, 4, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1328, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1348, 1, 0, 0, 0, 1335, 1336, 5, 155, 0, 0, 1336, 1349, 3, 42, 21, 0, 1337, 1338, 5, 98, 0, 0, 1338, 1340, 7, 5, 0, 0, 1339, 1341, 3, 44, 22, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1346, 7, 4, 0, 0, 1343, 1347, 5, 192, 0, 0, 1344, 1345, 5, 304, 0, 0, 1345, 1347, 5, 266, 0, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1335, 1, 0, 0, 0, 1348, 1337, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 41, 1, 0, 0, 0, 1350, 1353, 5, 22, 0, 0, 1351, 1353, 3, 44, 22, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 43, 1, 0, 0, 0, 1354, 1355, 7, 6, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1357, 6, 23, -1, 0, 1357, 1358, 3, 48, 24, 0, 1358, 1373, 1, 0, 0, 0, 1359, 1360, 10, 2, 0, 0, 1360, 1362, 5, 128, 0, 0, 1361, 1363, 3, 74, 37, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1372, 3, 46, 23, 3, 1365, 1366, 10, 1, 0, 0, 1366, 1368, 7, 7, 0, 0, 1367, 1369, 3, 74, 37, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 46, 23, 2, 1371, 1359, 1, 0, 0, 0, 1371, 1365, 1, 0, 0, 0, 1372, 1375, 1, 0, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 47, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1376, 1393, 3, 52, 26, 0, 1377, 1378, 5, 260, 0, 0, 1378, 1393, 3, 262, 131, 0, 1379, 1380, 5, 296, 0, 0, 1380, 1385, 3, 142, 71, 0, 1381, 1382, 5, 3, 0, 0, 1382, 1384, 3, 142, 71, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1387, 1, 0, 0, 0, 1385, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1393, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1389, 5, 1, 0, 0, 1389, 1390, 3, 40, 20, 0, 1390, 1391, 5, 2, 0, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1376, 1, 0, 0, 0, 1392, 1377, 1, 0, 0, 0, 1392, 1379, 1, 0, 0, 0, 1392, 1388, 1, 0, 0, 0, 1393, 49, 1, 0, 0, 0, 1394, 1397, 3, 282, 141, 0, 1395, 1397, 3, 142, 71, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1395, 1, 0, 0, 0, 1397, 1399, 1, 0, 0, 0, 1398, 1400, 7, 8, 0, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1402, 5, 185, 0, 0, 1402, 1404, 7, 9, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 51, 1, 0, 0, 0, 1405, 1407, 5, 248, 0, 0, 1406, 1408, 3, 74, 37, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1414, 3, 76, 38, 0, 1410, 1411, 5, 3, 0, 0, 1411, 1413, 3, 76, 38, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1426, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 105, 0, 0, 1418, 1423, 3, 78, 39, 0, 1419, 1420, 5, 3, 0, 0, 1420, 1422, 3, 78, 39, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1417, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1429, 1, 0, 0, 0, 1428, 1430, 3, 54, 27, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1434, 1, 0, 0, 0, 1431, 1432, 5, 114, 0, 0, 1432, 1433, 5, 36, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1438, 3, 56, 28, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1448, 1, 0, 0, 0, 1439, 1440, 5, 303, 0, 0, 1440, 1445, 3, 68, 34, 0, 1441, 1442, 5, 3, 0, 0, 1442, 1444, 3, 68, 34, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1447, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1439, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 53, 1, 0, 0, 0, 1450, 1451, 5, 301, 0, 0, 1451, 1452, 3, 144, 72, 0, 1452, 55, 1, 0, 0, 0, 1453, 1454, 5, 117, 0, 0, 1454, 1455, 3, 144, 72, 0, 1455, 57, 1, 0, 0, 0, 1456, 1458, 3, 74, 37, 0, 1457, 1456, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1464, 3, 62, 31, 0, 1460, 1461, 5, 3, 0, 0, 1461, 1463, 3, 62, 31, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 59, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1472, 3, 142, 71, 0, 1468, 1469, 5, 3, 0, 0, 1469, 1471, 3, 142, 71, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 61, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1516, 3, 64, 32, 0, 1476, 1477, 5, 238, 0, 0, 1477, 1486, 5, 1, 0, 0, 1478, 1483, 3, 64, 32, 0, 1479, 1480, 5, 3, 0, 0, 1480, 1482, 3, 64, 32, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1478, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1516, 5, 2, 0, 0, 1489, 1490, 5, 55, 0, 0, 1490, 1499, 5, 1, 0, 0, 1491, 1496, 3, 64, 32, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 64, 32, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1491, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1516, 5, 2, 0, 0, 1502, 1503, 5, 115, 0, 0, 1503, 1504, 5, 252, 0, 0, 1504, 1505, 5, 1, 0, 0, 1505, 1510, 3, 64, 32, 0, 1506, 1507, 5, 3, 0, 0, 1507, 1509, 3, 64, 32, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1514, 5, 2, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1475, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1489, 1, 0, 0, 0, 1515, 1502, 1, 0, 0, 0, 1516, 63, 1, 0, 0, 0, 1517, 1526, 5, 1, 0, 0, 1518, 1523, 3, 66, 33, 0, 1519, 1520, 5, 3, 0, 0, 1520, 1522, 3, 66, 33, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1518, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1531, 5, 2, 0, 0, 1529, 1531, 3, 66, 33, 0, 1530, 1517, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 65, 1, 0, 0, 0, 1532, 1535, 3, 282, 141, 0, 1533, 1535, 3, 142, 71, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1533, 1, 0, 0, 0, 1535, 67, 1, 0, 0, 0, 1536, 1537, 3, 302, 151, 0, 1537, 1538, 5, 28, 0, 0, 1538, 1539, 5, 1, 0, 0, 1539, 1540, 3, 70, 35, 0, 1540, 1541, 5, 2, 0, 0, 1541, 69, 1, 0, 0, 0, 1542, 1544, 3, 302, 151, 0, 1543, 1542, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1548, 1, 0, 0, 0, 1545, 1546, 5, 201, 0, 0, 1546, 1547, 5, 36, 0, 0, 1547, 1549, 3, 60, 30, 0, 1548, 1545, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1560, 1, 0, 0, 0, 1550, 1551, 5, 195, 0, 0, 1551, 1552, 5, 36, 0, 0, 1552, 1557, 3, 50, 25, 0, 1553, 1554, 5, 3, 0, 0, 1554, 1556, 3, 50, 25, 0, 1555, 1553, 1, 0, 0, 0, 1556, 1559, 1, 0, 0, 0, 1557, 1555, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1560, 1550, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 1, 0, 0, 0, 1562, 1564, 3, 204, 102, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 71, 1, 0, 0, 0, 1565, 1567, 3, 302, 151, 0, 1566, 1568, 3, 114, 57, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 28, 0, 0, 1570, 1571, 5, 1, 0, 0, 1571, 1572, 3, 22, 11, 0, 1572, 1573, 5, 2, 0, 0, 1573, 73, 1, 0, 0, 0, 1574, 1575, 7, 10, 0, 0, 1575, 75, 1, 0, 0, 0, 1576, 1579, 3, 282, 141, 0, 1577, 1579, 3, 142, 71, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1577, 1, 0, 0, 0, 1579, 1584, 1, 0, 0, 0, 1580, 1582, 5, 28, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 3, 302, 151, 0, 1584, 1581, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1595, 1, 0, 0, 0, 1586, 1587, 3, 150, 75, 0, 1587, 1588, 5, 4, 0, 0, 1588, 1591, 5, 320, 0, 0, 1589, 1590, 5, 28, 0, 0, 1590, 1592, 3, 114, 57, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1595, 5, 320, 0, 0, 1594, 1578, 1, 0, 0, 0, 1594, 1586, 1, 0, 0, 0, 1594, 1593, 1, 0, 0, 0, 1595, 77, 1, 0, 0, 0, 1596, 1597, 6, 39, -1, 0, 1597, 1598, 3, 84, 42, 0, 1598, 1617, 1, 0, 0, 0, 1599, 1613, 10, 2, 0, 0, 1600, 1601, 5, 54, 0, 0, 1601, 1602, 5, 136, 0, 0, 1602, 1614, 3, 84, 42, 0, 1603, 1604, 3, 80, 40, 0, 1604, 1605, 5, 136, 0, 0, 1605, 1606, 3, 78, 39, 0, 1606, 1607, 3, 82, 41, 0, 1607, 1614, 1, 0, 0, 0, 1608, 1609, 5, 172, 0, 0, 1609, 1610, 3, 80, 40, 0, 1610, 1611, 5, 136, 0, 0, 1611, 1612, 3, 84, 42, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1600, 1, 0, 0, 0, 1613, 1603, 1, 0, 0, 0, 1613, 1608, 1, 0, 0, 0, 1614, 1616, 1, 0, 0, 0, 1615, 1599, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 79, 1, 0, 0, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1622, 5, 125, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1636, 1, 0, 0, 0, 1623, 1625, 5, 152, 0, 0, 1624, 1626, 5, 197, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1636, 1, 0, 0, 0, 1627, 1629, 5, 234, 0, 0, 1628, 1630, 5, 197, 0, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1636, 1, 0, 0, 0, 1631, 1633, 5, 106, 0, 0, 1632, 1634, 5, 197, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1623, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 81, 1, 0, 0, 0, 1637, 1638, 5, 190, 0, 0, 1638, 1652, 3, 144, 72, 0, 1639, 1640, 5, 290, 0, 0, 1640, 1641, 5, 1, 0, 0, 1641, 1646, 3, 302, 151, 0, 1642, 1643, 5, 3, 0, 0, 1643, 1645, 3, 302, 151, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1650, 5, 2, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1651, 1639, 1, 0, 0, 0, 1652, 83, 1, 0, 0, 0, 1653, 1660, 3, 94, 47, 0, 1654, 1655, 5, 262, 0, 0, 1655, 1656, 3, 86, 43, 0, 1656, 1657, 5, 1, 0, 0, 1657, 1658, 3, 142, 71, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1661, 1, 0, 0, 0, 1660, 1654, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 85, 1, 0, 0, 0, 1662, 1663, 7, 11, 0, 0, 1663, 87, 1, 0, 0, 0, 1664, 1665, 7, 12, 0, 0, 1665, 89, 1, 0, 0, 0, 1666, 1673, 5, 89, 0, 0, 1667, 1669, 5, 274, 0, 0, 1668, 1670, 3, 174, 87, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 3, 92, 46, 0, 1672, 1666, 1, 0, 0, 0, 1672, 1667, 1, 0, 0, 0, 1673, 91, 1, 0, 0, 0, 1674, 1675, 5, 304, 0, 0, 1675, 1679, 5, 51, 0, 0, 1676, 1677, 5, 306, 0, 0, 1677, 1679, 5, 51, 0, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 93, 1, 0, 0, 0, 1680, 1756, 3, 108, 54, 0, 1681, 1682, 5, 166, 0, 0, 1682, 1686, 5, 1, 0, 0, 1683, 1684, 5, 201, 0, 0, 1684, 1685, 5, 36, 0, 0, 1685, 1687, 3, 60, 30, 0, 1686, 1683, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1698, 1, 0, 0, 0, 1688, 1689, 5, 195, 0, 0, 1689, 1690, 5, 36, 0, 0, 1690, 1695, 3, 50, 25, 0, 1691, 1692, 5, 3, 0, 0, 1692, 1694, 3, 50, 25, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1688, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1709, 1, 0, 0, 0, 1700, 1701, 5, 168, 0, 0, 1701, 1706, 3, 96, 48, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 3, 96, 48, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1700, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 98, 49, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1717, 1, 0, 0, 0, 1714, 1715, 5, 21, 0, 0, 1715, 1716, 5, 163, 0, 0, 1716, 1718, 3, 102, 51, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 7, 13, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 206, 0, 0, 1723, 1724, 5, 1, 0, 0, 1724, 1725, 3, 210, 105, 0, 1725, 1735, 5, 2, 0, 0, 1726, 1727, 5, 257, 0, 0, 1727, 1732, 3, 104, 52, 0, 1728, 1729, 5, 3, 0, 0, 1729, 1731, 3, 104, 52, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 5, 71, 0, 0, 1738, 1743, 3, 106, 53, 0, 1739, 1740, 5, 3, 0, 0, 1740, 1742, 3, 106, 53, 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, 1754, 5, 2, 0, 0, 1747, 1749, 5, 28, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 3, 302, 151, 0, 1751, 1753, 3, 114, 57, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1681, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 95, 1, 0, 0, 0, 1758, 1759, 3, 142, 71, 0, 1759, 1760, 5, 28, 0, 0, 1760, 1761, 3, 302, 151, 0, 1761, 97, 1, 0, 0, 0, 1762, 1763, 5, 191, 0, 0, 1763, 1764, 5, 239, 0, 0, 1764, 1765, 5, 207, 0, 0, 1765, 1774, 5, 163, 0, 0, 1766, 1767, 5, 22, 0, 0, 1767, 1768, 5, 240, 0, 0, 1768, 1769, 5, 207, 0, 0, 1769, 1771, 5, 163, 0, 0, 1770, 1772, 3, 100, 50, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1762, 1, 0, 0, 0, 1773, 1766, 1, 0, 0, 0, 1774, 99, 1, 0, 0, 0, 1775, 1776, 5, 253, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1785, 5, 165, 0, 0, 1778, 1779, 5, 189, 0, 0, 1779, 1780, 5, 85, 0, 0, 1780, 1785, 5, 165, 0, 0, 1781, 1782, 5, 304, 0, 0, 1782, 1783, 5, 284, 0, 0, 1783, 1785, 5, 240, 0, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1778, 1, 0, 0, 0, 1784, 1781, 1, 0, 0, 0, 1785, 101, 1, 0, 0, 0, 1786, 1787, 5, 5, 0, 0, 1787, 1788, 5, 269, 0, 0, 1788, 1789, 5, 174, 0, 0, 1789, 1806, 5, 239, 0, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1792, 5, 204, 0, 0, 1792, 1793, 5, 148, 0, 0, 1793, 1806, 5, 239, 0, 0, 1794, 1795, 5, 5, 0, 0, 1795, 1796, 5, 269, 0, 0, 1796, 1797, 5, 101, 0, 0, 1797, 1806, 3, 302, 151, 0, 1798, 1799, 5, 5, 0, 0, 1799, 1800, 5, 269, 0, 0, 1800, 1801, 5, 148, 0, 0, 1801, 1806, 3, 302, 151, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1804, 5, 269, 0, 0, 1804, 1806, 3, 302, 151, 0, 1805, 1786, 1, 0, 0, 0, 1805, 1790, 1, 0, 0, 0, 1805, 1794, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 103, 1, 0, 0, 0, 1807, 1808, 3, 302, 151, 0, 1808, 1809, 5, 312, 0, 0, 1809, 1810, 5, 1, 0, 0, 1810, 1815, 3, 302, 151, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1814, 3, 302, 151, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 2, 0, 0, 1819, 105, 1, 0, 0, 0, 1820, 1821, 3, 302, 151, 0, 1821, 1822, 5, 28, 0, 0, 1822, 1823, 3, 142, 71, 0, 1823, 107, 1, 0, 0, 0, 1824, 1832, 3, 116, 58, 0, 1825, 1827, 5, 28, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 3, 302, 151, 0, 1829, 1831, 3, 114, 57, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 109, 1, 0, 0, 0, 1834, 1835, 5, 1, 0, 0, 1835, 1840, 3, 286, 143, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1839, 3, 286, 143, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 2, 0, 0, 1844, 111, 1, 0, 0, 0, 1845, 1846, 5, 1, 0, 0, 1846, 1851, 3, 282, 141, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1850, 3, 282, 141, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 2, 0, 0, 1855, 113, 1, 0, 0, 0, 1856, 1857, 5, 1, 0, 0, 1857, 1862, 3, 302, 151, 0, 1858, 1859, 5, 3, 0, 0, 1859, 1861, 3, 302, 151, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 115, 1, 0, 0, 0, 1867, 1869, 3, 260, 130, 0, 1868, 1870, 3, 290, 145, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1939, 1, 0, 0, 0, 1871, 1872, 5, 1, 0, 0, 1872, 1873, 3, 22, 11, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1939, 1, 0, 0, 0, 1875, 1876, 5, 285, 0, 0, 1876, 1877, 5, 1, 0, 0, 1877, 1882, 3, 142, 71, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 142, 71, 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, 1885, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 5, 2, 0, 0, 1886, 1887, 5, 304, 0, 0, 1887, 1889, 5, 196, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1939, 1, 0, 0, 0, 1890, 1891, 5, 149, 0, 0, 1891, 1892, 5, 1, 0, 0, 1892, 1893, 3, 22, 11, 0, 1893, 1894, 5, 2, 0, 0, 1894, 1939, 1, 0, 0, 0, 1895, 1896, 5, 260, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 128, 64, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1939, 1, 0, 0, 0, 1900, 1901, 5, 1, 0, 0, 1901, 1902, 3, 78, 39, 0, 1902, 1903, 5, 2, 0, 0, 1903, 1939, 1, 0, 0, 0, 1904, 1905, 5, 142, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1907, 3, 152, 76, 0, 1907, 1908, 5, 45, 0, 0, 1908, 1909, 5, 1, 0, 0, 1909, 1914, 3, 118, 59, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1913, 3, 118, 59, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1929, 5, 2, 0, 0, 1918, 1919, 5, 210, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 120, 60, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1930, 1, 0, 0, 0, 1923, 1924, 5, 210, 0, 0, 1924, 1925, 5, 70, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 126, 63, 0, 1927, 1928, 5, 2, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1918, 1, 0, 0, 0, 1929, 1923, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1934, 1, 0, 0, 0, 1931, 1932, 7, 14, 0, 0, 1932, 1933, 5, 190, 0, 0, 1933, 1935, 5, 89, 0, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 2, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1867, 1, 0, 0, 0, 1938, 1871, 1, 0, 0, 0, 1938, 1875, 1, 0, 0, 0, 1938, 1890, 1, 0, 0, 0, 1938, 1895, 1, 0, 0, 0, 1938, 1900, 1, 0, 0, 0, 1938, 1904, 1, 0, 0, 0, 1939, 117, 1, 0, 0, 0, 1940, 1941, 3, 302, 151, 0, 1941, 1942, 5, 103, 0, 0, 1942, 1943, 5, 196, 0, 0, 1943, 2018, 1, 0, 0, 0, 1944, 1945, 3, 302, 151, 0, 1945, 1948, 3, 190, 95, 0, 1946, 1947, 5, 205, 0, 0, 1947, 1949, 3, 174, 87, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1954, 1, 0, 0, 0, 1950, 1951, 3, 162, 81, 0, 1951, 1952, 5, 190, 0, 0, 1952, 1953, 5, 85, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 3, 162, 81, 0, 1957, 1958, 5, 190, 0, 0, 1958, 1959, 5, 89, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1956, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2018, 1, 0, 0, 0, 1962, 1963, 3, 302, 151, 0, 1963, 1964, 3, 190, 95, 0, 1964, 1965, 5, 104, 0, 0, 1965, 1968, 3, 156, 78, 0, 1966, 1967, 5, 205, 0, 0, 1967, 1969, 3, 174, 87, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1973, 1, 0, 0, 0, 1970, 1971, 3, 164, 82, 0, 1971, 1972, 5, 308, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1982, 1, 0, 0, 0, 1975, 1976, 7, 15, 0, 0, 1976, 1980, 5, 218, 0, 0, 1977, 1978, 5, 190, 0, 0, 1978, 1979, 5, 242, 0, 0, 1979, 1981, 5, 264, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1975, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1988, 1, 0, 0, 0, 1984, 1985, 3, 166, 83, 0, 1985, 1986, 5, 190, 0, 0, 1986, 1987, 5, 85, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1984, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1994, 1, 0, 0, 0, 1990, 1991, 3, 166, 83, 0, 1991, 1992, 5, 190, 0, 0, 1992, 1993, 5, 89, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2018, 1, 0, 0, 0, 1996, 1998, 5, 173, 0, 0, 1997, 1999, 5, 205, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 3, 174, 87, 0, 2001, 2002, 5, 28, 0, 0, 2002, 2004, 3, 302, 151, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 45, 0, 0, 2006, 2007, 5, 1, 0, 0, 2007, 2012, 3, 118, 59, 0, 2008, 2009, 5, 3, 0, 0, 2009, 2011, 3, 118, 59, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 1940, 1, 0, 0, 0, 2017, 1944, 1, 0, 0, 0, 2017, 1962, 1, 0, 0, 0, 2017, 1996, 1, 0, 0, 0, 2018, 119, 1, 0, 0, 0, 2019, 2045, 3, 122, 61, 0, 2020, 2021, 3, 122, 61, 0, 2021, 2022, 7, 16, 0, 0, 2022, 2023, 3, 124, 62, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 3, 124, 62, 0, 2025, 2026, 5, 281, 0, 0, 2026, 2031, 3, 124, 62, 0, 2027, 2028, 5, 281, 0, 0, 2028, 2030, 3, 124, 62, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2045, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2035, 3, 124, 62, 0, 2035, 2036, 5, 54, 0, 0, 2036, 2041, 3, 124, 62, 0, 2037, 2038, 5, 54, 0, 0, 2038, 2040, 3, 124, 62, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2041, 1, 0, 0, 0, 2044, 2019, 1, 0, 0, 0, 2044, 2020, 1, 0, 0, 0, 2044, 2024, 1, 0, 0, 0, 2044, 2034, 1, 0, 0, 0, 2045, 121, 1, 0, 0, 0, 2046, 2047, 3, 302, 151, 0, 2047, 123, 1, 0, 0, 0, 2048, 2054, 3, 122, 61, 0, 2049, 2050, 5, 1, 0, 0, 2050, 2051, 3, 120, 60, 0, 2051, 2052, 5, 2, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2053, 2049, 1, 0, 0, 0, 2054, 125, 1, 0, 0, 0, 2055, 2058, 7, 16, 0, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 7, 17, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2063, 7, 17, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 7, 16, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 127, 1, 0, 0, 0, 2067, 2068, 3, 278, 139, 0, 2068, 2077, 5, 1, 0, 0, 2069, 2074, 3, 130, 65, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 3, 130, 65, 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, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2069, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2088, 1, 0, 0, 0, 2079, 2080, 5, 52, 0, 0, 2080, 2085, 3, 140, 70, 0, 2081, 2082, 5, 3, 0, 0, 2082, 2084, 3, 140, 70, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2079, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 5, 2, 0, 0, 2091, 129, 1, 0, 0, 0, 2092, 2093, 3, 302, 151, 0, 2093, 2094, 5, 6, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2100, 1, 0, 0, 0, 2097, 2101, 3, 132, 66, 0, 2098, 2101, 3, 136, 68, 0, 2099, 2101, 3, 142, 71, 0, 2100, 2097, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 131, 1, 0, 0, 0, 2102, 2113, 3, 134, 67, 0, 2103, 2104, 5, 201, 0, 0, 2104, 2111, 5, 36, 0, 0, 2105, 2107, 5, 1, 0, 0, 2106, 2108, 3, 60, 30, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 5, 2, 0, 0, 2110, 2112, 3, 142, 71, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2103, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2121, 1, 0, 0, 0, 2115, 2116, 5, 217, 0, 0, 2116, 2117, 5, 300, 0, 0, 2117, 2122, 5, 85, 0, 0, 2118, 2119, 5, 144, 0, 0, 2119, 2120, 5, 300, 0, 0, 2120, 2122, 5, 85, 0, 0, 2121, 2115, 1, 0, 0, 0, 2121, 2118, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2139, 1, 0, 0, 0, 2123, 2124, 5, 195, 0, 0, 2124, 2137, 5, 36, 0, 0, 2125, 2126, 5, 1, 0, 0, 2126, 2131, 3, 50, 25, 0, 2127, 2128, 5, 3, 0, 0, 2128, 2130, 3, 50, 25, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2135, 5, 2, 0, 0, 2135, 2138, 1, 0, 0, 0, 2136, 2138, 3, 50, 25, 0, 2137, 2125, 1, 0, 0, 0, 2137, 2136, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2123, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 133, 1, 0, 0, 0, 2141, 2142, 5, 260, 0, 0, 2142, 2143, 5, 1, 0, 0, 2143, 2144, 3, 262, 131, 0, 2144, 2152, 5, 2, 0, 0, 2145, 2147, 5, 28, 0, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 302, 151, 0, 2149, 2151, 3, 114, 57, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2146, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2168, 1, 0, 0, 0, 2154, 2155, 5, 260, 0, 0, 2155, 2156, 5, 1, 0, 0, 2156, 2157, 3, 22, 11, 0, 2157, 2165, 5, 2, 0, 0, 2158, 2160, 5, 28, 0, 0, 2159, 2158, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 3, 302, 151, 0, 2162, 2164, 3, 114, 57, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2159, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2141, 1, 0, 0, 0, 2167, 2154, 1, 0, 0, 0, 2168, 135, 1, 0, 0, 0, 2169, 2170, 5, 77, 0, 0, 2170, 2171, 5, 1, 0, 0, 2171, 2176, 3, 138, 69, 0, 2172, 2173, 5, 3, 0, 0, 2173, 2175, 3, 138, 69, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2180, 5, 2, 0, 0, 2180, 2188, 1, 0, 0, 0, 2181, 2182, 5, 41, 0, 0, 2182, 2183, 5, 1, 0, 0, 2183, 2184, 5, 183, 0, 0, 2184, 2185, 5, 28, 0, 0, 2185, 2186, 5, 77, 0, 0, 2186, 2188, 5, 2, 0, 0, 2187, 2169, 1, 0, 0, 0, 2187, 2181, 1, 0, 0, 0, 2188, 137, 1, 0, 0, 0, 2189, 2191, 3, 302, 151, 0, 2190, 2192, 3, 190, 95, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 139, 1, 0, 0, 0, 2193, 2194, 5, 1, 0, 0, 2194, 2195, 3, 288, 144, 0, 2195, 2196, 5, 3, 0, 0, 2196, 2201, 3, 288, 144, 0, 2197, 2198, 5, 3, 0, 0, 2198, 2200, 3, 288, 144, 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, 2, 0, 0, 2205, 141, 1, 0, 0, 0, 2206, 2207, 3, 144, 72, 0, 2207, 143, 1, 0, 0, 0, 2208, 2209, 6, 72, -1, 0, 2209, 2211, 3, 148, 74, 0, 2210, 2212, 3, 146, 73, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2216, 1, 0, 0, 0, 2213, 2214, 5, 182, 0, 0, 2214, 2216, 3, 144, 72, 3, 2215, 2208, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2225, 1, 0, 0, 0, 2217, 2218, 10, 2, 0, 0, 2218, 2219, 5, 25, 0, 0, 2219, 2224, 3, 144, 72, 3, 2220, 2221, 10, 1, 0, 0, 2221, 2222, 5, 194, 0, 0, 2222, 2224, 3, 144, 72, 2, 2223, 2217, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 145, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 3, 178, 89, 0, 2229, 2230, 3, 148, 74, 0, 2230, 2290, 1, 0, 0, 0, 2231, 2232, 3, 178, 89, 0, 2232, 2233, 3, 180, 90, 0, 2233, 2234, 5, 1, 0, 0, 2234, 2235, 3, 22, 11, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2290, 1, 0, 0, 0, 2237, 2239, 5, 182, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 5, 34, 0, 0, 2241, 2242, 3, 148, 74, 0, 2242, 2243, 5, 25, 0, 0, 2243, 2244, 3, 148, 74, 0, 2244, 2290, 1, 0, 0, 0, 2245, 2247, 5, 182, 0, 0, 2246, 2245, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2249, 5, 122, 0, 0, 2249, 2250, 5, 1, 0, 0, 2250, 2255, 3, 142, 71, 0, 2251, 2252, 5, 3, 0, 0, 2252, 2254, 3, 142, 71, 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, 2290, 1, 0, 0, 0, 2260, 2262, 5, 182, 0, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 5, 122, 0, 0, 2264, 2265, 5, 1, 0, 0, 2265, 2266, 3, 22, 11, 0, 2266, 2267, 5, 2, 0, 0, 2267, 2290, 1, 0, 0, 0, 2268, 2270, 5, 182, 0, 0, 2269, 2268, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 5, 154, 0, 0, 2272, 2275, 3, 148, 74, 0, 2273, 2274, 5, 90, 0, 0, 2274, 2276, 3, 148, 74, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2290, 1, 0, 0, 0, 2277, 2279, 5, 133, 0, 0, 2278, 2280, 5, 182, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2290, 5, 183, 0, 0, 2282, 2284, 5, 133, 0, 0, 2283, 2285, 5, 182, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 5, 79, 0, 0, 2287, 2288, 5, 105, 0, 0, 2288, 2290, 3, 148, 74, 0, 2289, 2228, 1, 0, 0, 0, 2289, 2231, 1, 0, 0, 0, 2289, 2238, 1, 0, 0, 0, 2289, 2246, 1, 0, 0, 0, 2289, 2261, 1, 0, 0, 0, 2289, 2269, 1, 0, 0, 0, 2289, 2277, 1, 0, 0, 0, 2289, 2282, 1, 0, 0, 0, 2290, 147, 1, 0, 0, 0, 2291, 2292, 6, 74, -1, 0, 2292, 2296, 3, 150, 75, 0, 2293, 2294, 7, 18, 0, 0, 2294, 2296, 3, 148, 74, 4, 2295, 2291, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2311, 1, 0, 0, 0, 2297, 2298, 10, 3, 0, 0, 2298, 2299, 7, 19, 0, 0, 2299, 2310, 3, 148, 74, 4, 2300, 2301, 10, 2, 0, 0, 2301, 2302, 7, 18, 0, 0, 2302, 2310, 3, 148, 74, 3, 2303, 2304, 10, 1, 0, 0, 2304, 2305, 5, 323, 0, 0, 2305, 2310, 3, 148, 74, 2, 2306, 2307, 10, 5, 0, 0, 2307, 2308, 5, 30, 0, 0, 2308, 2310, 3, 176, 88, 0, 2309, 2297, 1, 0, 0, 0, 2309, 2300, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2309, 2306, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 149, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 6, 75, -1, 0, 2315, 2768, 5, 183, 0, 0, 2316, 2768, 3, 184, 92, 0, 2317, 2318, 3, 302, 151, 0, 2318, 2319, 3, 174, 87, 0, 2319, 2768, 1, 0, 0, 0, 2320, 2321, 5, 82, 0, 0, 2321, 2322, 5, 213, 0, 0, 2322, 2768, 3, 174, 87, 0, 2323, 2768, 3, 304, 152, 0, 2324, 2768, 3, 182, 91, 0, 2325, 2768, 3, 174, 87, 0, 2326, 2768, 5, 328, 0, 0, 2327, 2768, 5, 324, 0, 0, 2328, 2329, 5, 211, 0, 0, 2329, 2330, 5, 1, 0, 0, 2330, 2331, 3, 148, 74, 0, 2331, 2332, 5, 122, 0, 0, 2332, 2333, 3, 148, 74, 0, 2333, 2334, 5, 2, 0, 0, 2334, 2768, 1, 0, 0, 0, 2335, 2336, 5, 1, 0, 0, 2336, 2339, 3, 142, 71, 0, 2337, 2338, 5, 3, 0, 0, 2338, 2340, 3, 142, 71, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 5, 2, 0, 0, 2344, 2768, 1, 0, 0, 0, 2345, 2346, 5, 239, 0, 0, 2346, 2347, 5, 1, 0, 0, 2347, 2352, 3, 142, 71, 0, 2348, 2349, 5, 3, 0, 0, 2349, 2351, 3, 142, 71, 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, 2355, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2768, 1, 0, 0, 0, 2357, 2358, 5, 156, 0, 0, 2358, 2360, 5, 1, 0, 0, 2359, 2361, 3, 74, 37, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2365, 3, 142, 71, 0, 2363, 2364, 5, 3, 0, 0, 2364, 2366, 3, 174, 87, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2370, 1, 0, 0, 0, 2367, 2368, 5, 190, 0, 0, 2368, 2369, 5, 200, 0, 0, 2369, 2371, 3, 90, 45, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2373, 5, 2, 0, 0, 2373, 2374, 5, 305, 0, 0, 2374, 2375, 5, 114, 0, 0, 2375, 2376, 5, 1, 0, 0, 2376, 2377, 5, 195, 0, 0, 2377, 2378, 5, 36, 0, 0, 2378, 2383, 3, 50, 25, 0, 2379, 2380, 5, 3, 0, 0, 2380, 2382, 3, 50, 25, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 2, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 198, 99, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2768, 1, 0, 0, 0, 2391, 2393, 3, 170, 85, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 3, 278, 139, 0, 2395, 2399, 5, 1, 0, 0, 2396, 2397, 3, 302, 151, 0, 2397, 2398, 5, 4, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2396, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 5, 320, 0, 0, 2402, 2404, 5, 2, 0, 0, 2403, 2405, 3, 198, 99, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2408, 3, 202, 101, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2768, 1, 0, 0, 0, 2409, 2411, 3, 170, 85, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 3, 278, 139, 0, 2413, 2425, 5, 1, 0, 0, 2414, 2416, 3, 74, 37, 0, 2415, 2414, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2422, 3, 142, 71, 0, 2418, 2419, 5, 3, 0, 0, 2419, 2421, 3, 142, 71, 0, 2420, 2418, 1, 0, 0, 0, 2421, 2424, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2426, 1, 0, 0, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2415, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2437, 1, 0, 0, 0, 2427, 2428, 5, 195, 0, 0, 2428, 2429, 5, 36, 0, 0, 2429, 2434, 3, 50, 25, 0, 2430, 2431, 5, 3, 0, 0, 2431, 2433, 3, 50, 25, 0, 2432, 2430, 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, 2427, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 2, 0, 0, 2440, 2442, 3, 198, 99, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2447, 1, 0, 0, 0, 2443, 2445, 3, 172, 86, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 3, 202, 101, 0, 2447, 2444, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2768, 1, 0, 0, 0, 2449, 2450, 3, 302, 151, 0, 2450, 2451, 3, 202, 101, 0, 2451, 2768, 1, 0, 0, 0, 2452, 2453, 3, 302, 151, 0, 2453, 2454, 5, 7, 0, 0, 2454, 2455, 3, 142, 71, 0, 2455, 2768, 1, 0, 0, 0, 2456, 2465, 5, 1, 0, 0, 2457, 2462, 3, 302, 151, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2461, 3, 302, 151, 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, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2457, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2468, 5, 2, 0, 0, 2468, 2469, 5, 7, 0, 0, 2469, 2768, 3, 142, 71, 0, 2470, 2471, 5, 1, 0, 0, 2471, 2472, 3, 22, 11, 0, 2472, 2473, 5, 2, 0, 0, 2473, 2768, 1, 0, 0, 0, 2474, 2475, 5, 94, 0, 0, 2475, 2476, 5, 1, 0, 0, 2476, 2477, 3, 22, 11, 0, 2477, 2478, 5, 2, 0, 0, 2478, 2768, 1, 0, 0, 0, 2479, 2480, 5, 40, 0, 0, 2480, 2482, 3, 142, 71, 0, 2481, 2483, 3, 196, 98, 0, 2482, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2487, 5, 84, 0, 0, 2487, 2489, 3, 142, 71, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 88, 0, 0, 2491, 2768, 1, 0, 0, 0, 2492, 2494, 5, 40, 0, 0, 2493, 2495, 3, 196, 98, 0, 2494, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2500, 1, 0, 0, 0, 2498, 2499, 5, 84, 0, 0, 2499, 2501, 3, 142, 71, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 5, 88, 0, 0, 2503, 2768, 1, 0, 0, 0, 2504, 2505, 5, 41, 0, 0, 2505, 2506, 5, 1, 0, 0, 2506, 2507, 3, 142, 71, 0, 2507, 2508, 5, 28, 0, 0, 2508, 2509, 3, 190, 95, 0, 2509, 2510, 5, 2, 0, 0, 2510, 2768, 1, 0, 0, 0, 2511, 2512, 5, 275, 0, 0, 2512, 2513, 5, 1, 0, 0, 2513, 2514, 3, 142, 71, 0, 2514, 2515, 5, 28, 0, 0, 2515, 2516, 3, 190, 95, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2768, 1, 0, 0, 0, 2518, 2519, 5, 27, 0, 0, 2519, 2528, 5, 8, 0, 0, 2520, 2525, 3, 142, 71, 0, 2521, 2522, 5, 3, 0, 0, 2522, 2524, 3, 142, 71, 0, 2523, 2521, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2520, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2768, 5, 9, 0, 0, 2531, 2768, 3, 284, 142, 0, 2532, 2768, 5, 58, 0, 0, 2533, 2537, 5, 62, 0, 0, 2534, 2535, 5, 1, 0, 0, 2535, 2536, 5, 329, 0, 0, 2536, 2538, 5, 2, 0, 0, 2537, 2534, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2768, 1, 0, 0, 0, 2539, 2543, 5, 63, 0, 0, 2540, 2541, 5, 1, 0, 0, 2541, 2542, 5, 329, 0, 0, 2542, 2544, 5, 2, 0, 0, 2543, 2540, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2768, 1, 0, 0, 0, 2545, 2549, 5, 158, 0, 0, 2546, 2547, 5, 1, 0, 0, 2547, 2548, 5, 329, 0, 0, 2548, 2550, 5, 2, 0, 0, 2549, 2546, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2768, 1, 0, 0, 0, 2551, 2555, 5, 159, 0, 0, 2552, 2553, 5, 1, 0, 0, 2553, 2554, 5, 329, 0, 0, 2554, 2556, 5, 2, 0, 0, 2555, 2552, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2768, 1, 0, 0, 0, 2557, 2768, 5, 64, 0, 0, 2558, 2768, 5, 57, 0, 0, 2559, 2768, 5, 61, 0, 0, 2560, 2768, 5, 59, 0, 0, 2561, 2562, 5, 272, 0, 0, 2562, 2570, 5, 1, 0, 0, 2563, 2565, 3, 88, 44, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 148, 74, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 5, 105, 0, 0, 2570, 2564, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 3, 148, 74, 0, 2573, 2574, 5, 2, 0, 0, 2574, 2768, 1, 0, 0, 0, 2575, 2576, 5, 272, 0, 0, 2576, 2577, 5, 1, 0, 0, 2577, 2578, 3, 148, 74, 0, 2578, 2579, 5, 3, 0, 0, 2579, 2580, 3, 148, 74, 0, 2580, 2581, 5, 2, 0, 0, 2581, 2768, 1, 0, 0, 0, 2582, 2583, 5, 258, 0, 0, 2583, 2584, 5, 1, 0, 0, 2584, 2585, 3, 148, 74, 0, 2585, 2586, 5, 105, 0, 0, 2586, 2589, 3, 148, 74, 0, 2587, 2588, 5, 103, 0, 0, 2588, 2590, 3, 148, 74, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 5, 2, 0, 0, 2592, 2768, 1, 0, 0, 0, 2593, 2594, 5, 181, 0, 0, 2594, 2595, 5, 1, 0, 0, 2595, 2598, 3, 148, 74, 0, 2596, 2597, 5, 3, 0, 0, 2597, 2599, 3, 188, 94, 0, 2598, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 2, 0, 0, 2601, 2768, 1, 0, 0, 0, 2602, 2603, 5, 96, 0, 0, 2603, 2604, 5, 1, 0, 0, 2604, 2605, 3, 302, 151, 0, 2605, 2606, 5, 105, 0, 0, 2606, 2607, 3, 148, 74, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2768, 1, 0, 0, 0, 2609, 2610, 5, 1, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2768, 1, 0, 0, 0, 2613, 2614, 5, 115, 0, 0, 2614, 2623, 5, 1, 0, 0, 2615, 2620, 3, 288, 144, 0, 2616, 2617, 5, 3, 0, 0, 2617, 2619, 3, 288, 144, 0, 2618, 2616, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2624, 1, 0, 0, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2615, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2768, 5, 2, 0, 0, 2626, 2627, 5, 139, 0, 0, 2627, 2628, 5, 1, 0, 0, 2628, 2633, 3, 152, 76, 0, 2629, 2630, 3, 160, 80, 0, 2630, 2631, 5, 190, 0, 0, 2631, 2632, 5, 89, 0, 0, 2632, 2634, 1, 0, 0, 0, 2633, 2629, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2768, 1, 0, 0, 0, 2637, 2638, 5, 143, 0, 0, 2638, 2639, 5, 1, 0, 0, 2639, 2642, 3, 152, 76, 0, 2640, 2641, 5, 231, 0, 0, 2641, 2643, 3, 190, 95, 0, 2642, 2640, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2648, 1, 0, 0, 0, 2644, 2645, 3, 162, 81, 0, 2645, 2646, 5, 190, 0, 0, 2646, 2647, 5, 85, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2644, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2654, 1, 0, 0, 0, 2650, 2651, 3, 162, 81, 0, 2651, 2652, 5, 190, 0, 0, 2652, 2653, 5, 89, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2650, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 5, 2, 0, 0, 2657, 2768, 1, 0, 0, 0, 2658, 2659, 5, 141, 0, 0, 2659, 2660, 5, 1, 0, 0, 2660, 2667, 3, 152, 76, 0, 2661, 2662, 5, 231, 0, 0, 2662, 2665, 3, 190, 95, 0, 2663, 2664, 5, 104, 0, 0, 2664, 2666, 3, 156, 78, 0, 2665, 2663, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2661, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2672, 1, 0, 0, 0, 2669, 2670, 3, 164, 82, 0, 2670, 2671, 5, 308, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2669, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2681, 1, 0, 0, 0, 2674, 2675, 7, 15, 0, 0, 2675, 2679, 5, 218, 0, 0, 2676, 2677, 5, 190, 0, 0, 2677, 2678, 5, 242, 0, 0, 2678, 2680, 5, 264, 0, 0, 2679, 2676, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2674, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2687, 1, 0, 0, 0, 2683, 2684, 3, 166, 83, 0, 2684, 2685, 5, 190, 0, 0, 2685, 2686, 5, 85, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2683, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2693, 1, 0, 0, 0, 2689, 2690, 3, 166, 83, 0, 2690, 2691, 5, 190, 0, 0, 2691, 2692, 5, 89, 0, 0, 2692, 2694, 1, 0, 0, 0, 2693, 2689, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 5, 2, 0, 0, 2696, 2768, 1, 0, 0, 0, 2697, 2698, 5, 140, 0, 0, 2698, 2727, 5, 1, 0, 0, 2699, 2704, 3, 168, 84, 0, 2700, 2701, 5, 3, 0, 0, 2701, 2703, 3, 168, 84, 0, 2702, 2700, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2713, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2708, 5, 183, 0, 0, 2708, 2709, 5, 190, 0, 0, 2709, 2714, 5, 183, 0, 0, 2710, 2711, 5, 18, 0, 0, 2711, 2712, 5, 190, 0, 0, 2712, 2714, 5, 183, 0, 0, 2713, 2707, 1, 0, 0, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2725, 1, 0, 0, 0, 2715, 2716, 5, 304, 0, 0, 2716, 2718, 5, 282, 0, 0, 2717, 2719, 5, 146, 0, 0, 2718, 2717, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2726, 1, 0, 0, 0, 2720, 2721, 5, 306, 0, 0, 2721, 2723, 5, 282, 0, 0, 2722, 2724, 5, 146, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2720, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2699, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2735, 1, 0, 0, 0, 2729, 2730, 5, 231, 0, 0, 2730, 2733, 3, 190, 95, 0, 2731, 2732, 5, 104, 0, 0, 2732, 2734, 3, 156, 78, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2729, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2768, 5, 2, 0, 0, 2738, 2739, 5, 138, 0, 0, 2739, 2756, 5, 1, 0, 0, 2740, 2745, 3, 154, 77, 0, 2741, 2742, 5, 3, 0, 0, 2742, 2744, 3, 154, 77, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2754, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 183, 0, 0, 2749, 2750, 5, 190, 0, 0, 2750, 2755, 5, 183, 0, 0, 2751, 2752, 5, 18, 0, 0, 2752, 2753, 5, 190, 0, 0, 2753, 2755, 5, 183, 0, 0, 2754, 2748, 1, 0, 0, 0, 2754, 2751, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2740, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2764, 1, 0, 0, 0, 2758, 2759, 5, 231, 0, 0, 2759, 2762, 3, 190, 95, 0, 2760, 2761, 5, 104, 0, 0, 2761, 2763, 3, 156, 78, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 1, 0, 0, 0, 2764, 2758, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 5, 2, 0, 0, 2767, 2314, 1, 0, 0, 0, 2767, 2316, 1, 0, 0, 0, 2767, 2317, 1, 0, 0, 0, 2767, 2320, 1, 0, 0, 0, 2767, 2323, 1, 0, 0, 0, 2767, 2324, 1, 0, 0, 0, 2767, 2325, 1, 0, 0, 0, 2767, 2326, 1, 0, 0, 0, 2767, 2327, 1, 0, 0, 0, 2767, 2328, 1, 0, 0, 0, 2767, 2335, 1, 0, 0, 0, 2767, 2345, 1, 0, 0, 0, 2767, 2357, 1, 0, 0, 0, 2767, 2392, 1, 0, 0, 0, 2767, 2410, 1, 0, 0, 0, 2767, 2449, 1, 0, 0, 0, 2767, 2452, 1, 0, 0, 0, 2767, 2456, 1, 0, 0, 0, 2767, 2470, 1, 0, 0, 0, 2767, 2474, 1, 0, 0, 0, 2767, 2479, 1, 0, 0, 0, 2767, 2492, 1, 0, 0, 0, 2767, 2504, 1, 0, 0, 0, 2767, 2511, 1, 0, 0, 0, 2767, 2518, 1, 0, 0, 0, 2767, 2531, 1, 0, 0, 0, 2767, 2532, 1, 0, 0, 0, 2767, 2533, 1, 0, 0, 0, 2767, 2539, 1, 0, 0, 0, 2767, 2545, 1, 0, 0, 0, 2767, 2551, 1, 0, 0, 0, 2767, 2557, 1, 0, 0, 0, 2767, 2558, 1, 0, 0, 0, 2767, 2559, 1, 0, 0, 0, 2767, 2560, 1, 0, 0, 0, 2767, 2561, 1, 0, 0, 0, 2767, 2575, 1, 0, 0, 0, 2767, 2582, 1, 0, 0, 0, 2767, 2593, 1, 0, 0, 0, 2767, 2602, 1, 0, 0, 0, 2767, 2609, 1, 0, 0, 0, 2767, 2613, 1, 0, 0, 0, 2767, 2626, 1, 0, 0, 0, 2767, 2637, 1, 0, 0, 0, 2767, 2658, 1, 0, 0, 0, 2767, 2697, 1, 0, 0, 0, 2767, 2738, 1, 0, 0, 0, 2768, 2779, 1, 0, 0, 0, 2769, 2770, 10, 24, 0, 0, 2770, 2771, 5, 8, 0, 0, 2771, 2772, 3, 148, 74, 0, 2772, 2773, 5, 9, 0, 0, 2773, 2778, 1, 0, 0, 0, 2774, 2775, 10, 22, 0, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 302, 151, 0, 2777, 2769, 1, 0, 0, 0, 2777, 2774, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 151, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 3, 154, 77, 0, 2783, 2784, 5, 3, 0, 0, 2784, 2787, 3, 174, 87, 0, 2785, 2786, 5, 28, 0, 0, 2786, 2788, 3, 302, 151, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2798, 1, 0, 0, 0, 2789, 2790, 5, 203, 0, 0, 2790, 2795, 3, 158, 79, 0, 2791, 2792, 5, 3, 0, 0, 2792, 2794, 3, 158, 79, 0, 2793, 2791, 1, 0, 0, 0, 2794, 2797, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2799, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2789, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 153, 1, 0, 0, 0, 2800, 2803, 3, 142, 71, 0, 2801, 2802, 5, 104, 0, 0, 2802, 2804, 3, 156, 78, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 155, 1, 0, 0, 0, 2805, 2808, 5, 137, 0, 0, 2806, 2807, 5, 87, 0, 0, 2807, 2809, 7, 20, 0, 0, 2808, 2806, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 157, 1, 0, 0, 0, 2810, 2811, 3, 154, 77, 0, 2811, 2812, 5, 28, 0, 0, 2812, 2813, 3, 302, 151, 0, 2813, 159, 1, 0, 0, 0, 2814, 2815, 7, 21, 0, 0, 2815, 161, 1, 0, 0, 0, 2816, 2821, 5, 89, 0, 0, 2817, 2821, 5, 183, 0, 0, 2818, 2819, 5, 70, 0, 0, 2819, 2821, 3, 142, 71, 0, 2820, 2816, 1, 0, 0, 0, 2820, 2817, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 163, 1, 0, 0, 0, 2822, 2824, 5, 306, 0, 0, 2823, 2825, 5, 27, 0, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2834, 1, 0, 0, 0, 2826, 2828, 5, 304, 0, 0, 2827, 2829, 7, 22, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2832, 5, 27, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2834, 1, 0, 0, 0, 2833, 2822, 1, 0, 0, 0, 2833, 2826, 1, 0, 0, 0, 2834, 165, 1, 0, 0, 0, 2835, 2842, 5, 89, 0, 0, 2836, 2842, 5, 183, 0, 0, 2837, 2838, 5, 85, 0, 0, 2838, 2842, 5, 27, 0, 0, 2839, 2840, 5, 85, 0, 0, 2840, 2842, 5, 186, 0, 0, 2841, 2835, 1, 0, 0, 0, 2841, 2836, 1, 0, 0, 0, 2841, 2837, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2842, 167, 1, 0, 0, 0, 2843, 2845, 5, 145, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 3, 142, 71, 0, 2847, 2848, 5, 295, 0, 0, 2848, 2849, 3, 154, 77, 0, 2849, 2855, 1, 0, 0, 0, 2850, 2851, 3, 142, 71, 0, 2851, 2852, 5, 10, 0, 0, 2852, 2853, 3, 154, 77, 0, 2853, 2855, 1, 0, 0, 0, 2854, 2844, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2855, 169, 1, 0, 0, 0, 2856, 2857, 7, 23, 0, 0, 2857, 171, 1, 0, 0, 0, 2858, 2859, 5, 120, 0, 0, 2859, 2863, 5, 185, 0, 0, 2860, 2861, 5, 228, 0, 0, 2861, 2863, 5, 185, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 173, 1, 0, 0, 0, 2864, 2871, 5, 326, 0, 0, 2865, 2868, 5, 327, 0, 0, 2866, 2867, 5, 277, 0, 0, 2867, 2869, 5, 326, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2864, 1, 0, 0, 0, 2870, 2865, 1, 0, 0, 0, 2871, 175, 1, 0, 0, 0, 2872, 2873, 5, 267, 0, 0, 2873, 2874, 5, 311, 0, 0, 2874, 2879, 3, 184, 92, 0, 2875, 2876, 5, 267, 0, 0, 2876, 2877, 5, 311, 0, 0, 2877, 2879, 3, 174, 87, 0, 2878, 2872, 1, 0, 0, 0, 2878, 2875, 1, 0, 0, 0, 2879, 177, 1, 0, 0, 0, 2880, 2881, 7, 24, 0, 0, 2881, 179, 1, 0, 0, 0, 2882, 2883, 7, 25, 0, 0, 2883, 181, 1, 0, 0, 0, 2884, 2885, 7, 26, 0, 0, 2885, 183, 1, 0, 0, 0, 2886, 2888, 5, 129, 0, 0, 2887, 2889, 7, 18, 0, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 3, 174, 87, 0, 2891, 2894, 3, 186, 93, 0, 2892, 2893, 5, 269, 0, 0, 2893, 2895, 3, 186, 93, 0, 2894, 2892, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 185, 1, 0, 0, 0, 2896, 2897, 7, 27, 0, 0, 2897, 187, 1, 0, 0, 0, 2898, 2899, 7, 28, 0, 0, 2899, 189, 1, 0, 0, 0, 2900, 2901, 6, 95, -1, 0, 2901, 2902, 5, 239, 0, 0, 2902, 2903, 5, 1, 0, 0, 2903, 2908, 3, 192, 96, 0, 2904, 2905, 5, 3, 0, 0, 2905, 2907, 3, 192, 96, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 2, 0, 0, 2912, 2972, 1, 0, 0, 0, 2913, 2914, 5, 129, 0, 0, 2914, 2917, 3, 186, 93, 0, 2915, 2916, 5, 269, 0, 0, 2916, 2918, 3, 186, 93, 0, 2917, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2972, 1, 0, 0, 0, 2919, 2924, 5, 268, 0, 0, 2920, 2921, 5, 1, 0, 0, 2921, 2922, 3, 194, 97, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2920, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2929, 1, 0, 0, 0, 2926, 2927, 7, 29, 0, 0, 2927, 2928, 5, 267, 0, 0, 2928, 2930, 5, 311, 0, 0, 2929, 2926, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2972, 1, 0, 0, 0, 2931, 2936, 5, 267, 0, 0, 2932, 2933, 5, 1, 0, 0, 2933, 2934, 3, 194, 97, 0, 2934, 2935, 5, 2, 0, 0, 2935, 2937, 1, 0, 0, 0, 2936, 2932, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2941, 1, 0, 0, 0, 2938, 2939, 7, 29, 0, 0, 2939, 2940, 5, 267, 0, 0, 2940, 2942, 5, 311, 0, 0, 2941, 2938, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2972, 1, 0, 0, 0, 2943, 2944, 5, 82, 0, 0, 2944, 2972, 5, 213, 0, 0, 2945, 2946, 5, 27, 0, 0, 2946, 2947, 5, 314, 0, 0, 2947, 2948, 3, 190, 95, 0, 2948, 2949, 5, 316, 0, 0, 2949, 2972, 1, 0, 0, 0, 2950, 2951, 5, 162, 0, 0, 2951, 2952, 5, 314, 0, 0, 2952, 2953, 3, 190, 95, 0, 2953, 2954, 5, 3, 0, 0, 2954, 2955, 3, 190, 95, 0, 2955, 2956, 5, 316, 0, 0, 2956, 2972, 1, 0, 0, 0, 2957, 2969, 3, 302, 151, 0, 2958, 2959, 5, 1, 0, 0, 2959, 2964, 3, 194, 97, 0, 2960, 2961, 5, 3, 0, 0, 2961, 2963, 3, 194, 97, 0, 2962, 2960, 1, 0, 0, 0, 2963, 2966, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2968, 5, 2, 0, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2958, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2900, 1, 0, 0, 0, 2971, 2913, 1, 0, 0, 0, 2971, 2919, 1, 0, 0, 0, 2971, 2931, 1, 0, 0, 0, 2971, 2943, 1, 0, 0, 0, 2971, 2945, 1, 0, 0, 0, 2971, 2950, 1, 0, 0, 0, 2971, 2957, 1, 0, 0, 0, 2972, 2982, 1, 0, 0, 0, 2973, 2974, 10, 2, 0, 0, 2974, 2978, 5, 27, 0, 0, 2975, 2976, 5, 8, 0, 0, 2976, 2977, 5, 329, 0, 0, 2977, 2979, 5, 9, 0, 0, 2978, 2975, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2973, 1, 0, 0, 0, 2981, 2984, 1, 0, 0, 0, 2982, 2980, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 191, 1, 0, 0, 0, 2984, 2982, 1, 0, 0, 0, 2985, 2990, 3, 190, 95, 0, 2986, 2987, 3, 302, 151, 0, 2987, 2988, 3, 190, 95, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2985, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2990, 193, 1, 0, 0, 0, 2991, 2994, 5, 329, 0, 0, 2992, 2994, 3, 190, 95, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2992, 1, 0, 0, 0, 2994, 195, 1, 0, 0, 0, 2995, 2996, 5, 300, 0, 0, 2996, 2997, 3, 142, 71, 0, 2997, 2998, 5, 265, 0, 0, 2998, 2999, 3, 142, 71, 0, 2999, 197, 1, 0, 0, 0, 3000, 3001, 5, 99, 0, 0, 3001, 3002, 5, 1, 0, 0, 3002, 3003, 3, 54, 27, 0, 3003, 3004, 5, 2, 0, 0, 3004, 199, 1, 0, 0, 0, 3005, 3006, 5, 300, 0, 0, 3006, 3009, 5, 164, 0, 0, 3007, 3008, 5, 25, 0, 0, 3008, 3010, 3, 142, 71, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 5, 265, 0, 0, 3012, 3013, 5, 287, 0, 0, 3013, 3014, 5, 251, 0, 0, 3014, 3015, 3, 302, 151, 0, 3015, 3016, 5, 312, 0, 0, 3016, 3024, 3, 142, 71, 0, 3017, 3018, 5, 3, 0, 0, 3018, 3019, 3, 302, 151, 0, 3019, 3020, 5, 312, 0, 0, 3020, 3021, 3, 142, 71, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3017, 1, 0, 0, 0, 3023, 3026, 1, 0, 0, 0, 3024, 3022, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3070, 1, 0, 0, 0, 3026, 3024, 1, 0, 0, 0, 3027, 3028, 5, 300, 0, 0, 3028, 3031, 5, 164, 0, 0, 3029, 3030, 5, 25, 0, 0, 3030, 3032, 3, 142, 71, 0, 3031, 3029, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 5, 265, 0, 0, 3034, 3070, 5, 73, 0, 0, 3035, 3036, 5, 300, 0, 0, 3036, 3037, 5, 182, 0, 0, 3037, 3040, 5, 164, 0, 0, 3038, 3039, 5, 25, 0, 0, 3039, 3041, 3, 142, 71, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 5, 265, 0, 0, 3043, 3055, 5, 127, 0, 0, 3044, 3045, 5, 1, 0, 0, 3045, 3050, 3, 302, 151, 0, 3046, 3047, 5, 3, 0, 0, 3047, 3049, 3, 302, 151, 0, 3048, 3046, 1, 0, 0, 0, 3049, 3052, 1, 0, 0, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3050, 1, 0, 0, 0, 3053, 3054, 5, 2, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 3044, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 5, 296, 0, 0, 3058, 3059, 5, 1, 0, 0, 3059, 3064, 3, 142, 71, 0, 3060, 3061, 5, 3, 0, 0, 3061, 3063, 3, 142, 71, 0, 3062, 3060, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3067, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3067, 3068, 5, 2, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3005, 1, 0, 0, 0, 3069, 3027, 1, 0, 0, 0, 3069, 3035, 1, 0, 0, 0, 3070, 201, 1, 0, 0, 0, 3071, 3077, 5, 199, 0, 0, 3072, 3078, 3, 302, 151, 0, 3073, 3074, 5, 1, 0, 0, 3074, 3075, 3, 70, 35, 0, 3075, 3076, 5, 2, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3072, 1, 0, 0, 0, 3077, 3073, 1, 0, 0, 0, 3078, 203, 1, 0, 0, 0, 3079, 3080, 5, 168, 0, 0, 3080, 3085, 3, 96, 48, 0, 3081, 3082, 5, 3, 0, 0, 3082, 3084, 3, 96, 48, 0, 3083, 3081, 1, 0, 0, 0, 3084, 3087, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3088, 3079, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3094, 3, 206, 103, 0, 3091, 3092, 5, 21, 0, 0, 3092, 3093, 5, 163, 0, 0, 3093, 3095, 3, 102, 51, 0, 3094, 3091, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3097, 1, 0, 0, 0, 3096, 3098, 7, 13, 0, 0, 3097, 3096, 1, 0, 0, 0, 3097, 3098, 1, 0, 0, 0, 3098, 3104, 1, 0, 0, 0, 3099, 3100, 5, 206, 0, 0, 3100, 3101, 5, 1, 0, 0, 3101, 3102, 3, 210, 105, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3099, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3115, 1, 0, 0, 0, 3106, 3107, 5, 257, 0, 0, 3107, 3112, 3, 104, 52, 0, 3108, 3109, 5, 3, 0, 0, 3109, 3111, 3, 104, 52, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3116, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3106, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3126, 1, 0, 0, 0, 3117, 3118, 5, 71, 0, 0, 3118, 3123, 3, 106, 53, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3122, 3, 106, 53, 0, 3121, 3119, 1, 0, 0, 0, 3122, 3125, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3127, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3126, 3117, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 205, 1, 0, 0, 0, 3128, 3129, 5, 219, 0, 0, 3129, 3153, 3, 208, 104, 0, 3130, 3131, 5, 240, 0, 0, 3131, 3153, 3, 208, 104, 0, 3132, 3133, 5, 116, 0, 0, 3133, 3153, 3, 208, 104, 0, 3134, 3135, 5, 219, 0, 0, 3135, 3136, 5, 34, 0, 0, 3136, 3137, 3, 208, 104, 0, 3137, 3138, 5, 25, 0, 0, 3138, 3139, 3, 208, 104, 0, 3139, 3153, 1, 0, 0, 0, 3140, 3141, 5, 240, 0, 0, 3141, 3142, 5, 34, 0, 0, 3142, 3143, 3, 208, 104, 0, 3143, 3144, 5, 25, 0, 0, 3144, 3145, 3, 208, 104, 0, 3145, 3153, 1, 0, 0, 0, 3146, 3147, 5, 116, 0, 0, 3147, 3148, 5, 34, 0, 0, 3148, 3149, 3, 208, 104, 0, 3149, 3150, 5, 25, 0, 0, 3150, 3151, 3, 208, 104, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3128, 1, 0, 0, 0, 3152, 3130, 1, 0, 0, 0, 3152, 3132, 1, 0, 0, 0, 3152, 3134, 1, 0, 0, 0, 3152, 3140, 1, 0, 0, 0, 3152, 3146, 1, 0, 0, 0, 3153, 207, 1, 0, 0, 0, 3154, 3155, 5, 278, 0, 0, 3155, 3164, 5, 212, 0, 0, 3156, 3157, 5, 278, 0, 0, 3157, 3164, 5, 102, 0, 0, 3158, 3159, 5, 56, 0, 0, 3159, 3164, 5, 239, 0, 0, 3160, 3161, 3, 142, 71, 0, 3161, 3162, 7, 30, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3154, 1, 0, 0, 0, 3163, 3156, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3163, 3160, 1, 0, 0, 0, 3164, 209, 1, 0, 0, 0, 3165, 3166, 6, 105, -1, 0, 3166, 3168, 3, 212, 106, 0, 3167, 3169, 3, 214, 107, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3177, 1, 0, 0, 0, 3170, 3171, 10, 2, 0, 0, 3171, 3176, 3, 210, 105, 3, 3172, 3173, 10, 1, 0, 0, 3173, 3174, 5, 11, 0, 0, 3174, 3176, 3, 210, 105, 2, 3175, 3170, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3179, 1, 0, 0, 0, 3177, 3175, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 211, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3180, 3206, 3, 302, 151, 0, 3181, 3182, 5, 1, 0, 0, 3182, 3206, 5, 2, 0, 0, 3183, 3184, 5, 209, 0, 0, 3184, 3185, 5, 1, 0, 0, 3185, 3190, 3, 210, 105, 0, 3186, 3187, 5, 3, 0, 0, 3187, 3189, 3, 210, 105, 0, 3188, 3186, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 2, 0, 0, 3194, 3206, 1, 0, 0, 0, 3195, 3196, 5, 1, 0, 0, 3196, 3197, 3, 210, 105, 0, 3197, 3198, 5, 2, 0, 0, 3198, 3206, 1, 0, 0, 0, 3199, 3206, 5, 12, 0, 0, 3200, 3206, 5, 13, 0, 0, 3201, 3202, 5, 14, 0, 0, 3202, 3203, 3, 210, 105, 0, 3203, 3204, 5, 15, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3180, 1, 0, 0, 0, 3205, 3181, 1, 0, 0, 0, 3205, 3183, 1, 0, 0, 0, 3205, 3195, 1, 0, 0, 0, 3205, 3199, 1, 0, 0, 0, 3205, 3200, 1, 0, 0, 0, 3205, 3201, 1, 0, 0, 0, 3206, 213, 1, 0, 0, 0, 3207, 3209, 5, 320, 0, 0, 3208, 3210, 5, 324, 0, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3238, 1, 0, 0, 0, 3211, 3213, 5, 318, 0, 0, 3212, 3214, 5, 324, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3238, 1, 0, 0, 0, 3215, 3217, 5, 324, 0, 0, 3216, 3218, 5, 324, 0, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3238, 1, 0, 0, 0, 3219, 3220, 5, 16, 0, 0, 3220, 3221, 5, 329, 0, 0, 3221, 3223, 5, 17, 0, 0, 3222, 3224, 5, 324, 0, 0, 3223, 3222, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3238, 1, 0, 0, 0, 3225, 3227, 5, 16, 0, 0, 3226, 3228, 5, 329, 0, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 5, 3, 0, 0, 3230, 3232, 5, 329, 0, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3235, 5, 17, 0, 0, 3234, 3236, 5, 324, 0, 0, 3235, 3234, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3238, 1, 0, 0, 0, 3237, 3207, 1, 0, 0, 0, 3237, 3211, 1, 0, 0, 0, 3237, 3215, 1, 0, 0, 0, 3237, 3219, 1, 0, 0, 0, 3237, 3225, 1, 0, 0, 0, 3238, 215, 1, 0, 0, 0, 3239, 3240, 3, 302, 151, 0, 3240, 3241, 5, 312, 0, 0, 3241, 3242, 3, 142, 71, 0, 3242, 217, 1, 0, 0, 0, 3243, 3244, 5, 104, 0, 0, 3244, 3248, 7, 31, 0, 0, 3245, 3246, 5, 276, 0, 0, 3246, 3248, 7, 32, 0, 0, 3247, 3243, 1, 0, 0, 0, 3247, 3245, 1, 0, 0, 0, 3248, 219, 1, 0, 0, 0, 3249, 3250, 5, 134, 0, 0, 3250, 3251, 5, 153, 0, 0, 3251, 3255, 3, 222, 111, 0, 3252, 3253, 5, 220, 0, 0, 3253, 3255, 7, 33, 0, 0, 3254, 3249, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 221, 1, 0, 0, 0, 3256, 3257, 5, 220, 0, 0, 3257, 3264, 5, 279, 0, 0, 3258, 3259, 5, 220, 0, 0, 3259, 3264, 5, 48, 0, 0, 3260, 3261, 5, 225, 0, 0, 3261, 3264, 5, 220, 0, 0, 3262, 3264, 5, 249, 0, 0, 3263, 3256, 1, 0, 0, 0, 3263, 3258, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 223, 1, 0, 0, 0, 3265, 3271, 3, 142, 71, 0, 3266, 3267, 3, 302, 151, 0, 3267, 3268, 5, 6, 0, 0, 3268, 3269, 3, 142, 71, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3265, 1, 0, 0, 0, 3270, 3266, 1, 0, 0, 0, 3271, 225, 1, 0, 0, 0, 3272, 3273, 3, 302, 151, 0, 3273, 3274, 5, 4, 0, 0, 3274, 3275, 3, 302, 151, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3278, 3, 302, 151, 0, 3277, 3272, 1, 0, 0, 0, 3277, 3276, 1, 0, 0, 0, 3278, 227, 1, 0, 0, 0, 3279, 3284, 3, 226, 113, 0, 3280, 3281, 5, 3, 0, 0, 3281, 3283, 3, 226, 113, 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, 229, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3288, 5, 107, 0, 0, 3288, 3289, 3, 232, 116, 0, 3289, 3293, 3, 238, 119, 0, 3290, 3292, 3, 240, 120, 0, 3291, 3290, 1, 0, 0, 0, 3292, 3295, 1, 0, 0, 0, 3293, 3291, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3297, 3, 242, 121, 0, 3297, 231, 1, 0, 0, 0, 3298, 3299, 3, 280, 140, 0, 3299, 3308, 5, 1, 0, 0, 3300, 3305, 3, 236, 118, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3304, 3, 236, 118, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3307, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3309, 1, 0, 0, 0, 3307, 3305, 1, 0, 0, 0, 3308, 3300, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 2, 0, 0, 3311, 233, 1, 0, 0, 0, 3312, 3313, 3, 278, 139, 0, 3313, 3322, 5, 1, 0, 0, 3314, 3319, 3, 236, 118, 0, 3315, 3316, 5, 3, 0, 0, 3316, 3318, 3, 236, 118, 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, 3323, 1, 0, 0, 0, 3321, 3319, 1, 0, 0, 0, 3322, 3314, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 5, 2, 0, 0, 3325, 235, 1, 0, 0, 0, 3326, 3328, 3, 302, 151, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 3, 190, 95, 0, 3330, 237, 1, 0, 0, 0, 3331, 3332, 5, 232, 0, 0, 3332, 3333, 3, 190, 95, 0, 3333, 239, 1, 0, 0, 0, 3334, 3335, 5, 147, 0, 0, 3335, 3354, 3, 302, 151, 0, 3336, 3338, 5, 182, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 3354, 5, 78, 0, 0, 3340, 3341, 5, 232, 0, 0, 3341, 3342, 5, 183, 0, 0, 3342, 3343, 5, 190, 0, 0, 3343, 3344, 5, 183, 0, 0, 3344, 3354, 5, 126, 0, 0, 3345, 3346, 5, 38, 0, 0, 3346, 3347, 5, 190, 0, 0, 3347, 3348, 5, 183, 0, 0, 3348, 3354, 5, 126, 0, 0, 3349, 3350, 5, 246, 0, 0, 3350, 3354, 7, 1, 0, 0, 3351, 3352, 5, 46, 0, 0, 3352, 3354, 3, 174, 87, 0, 3353, 3334, 1, 0, 0, 0, 3353, 3337, 1, 0, 0, 0, 3353, 3340, 1, 0, 0, 0, 3353, 3345, 1, 0, 0, 0, 3353, 3349, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3354, 241, 1, 0, 0, 0, 3355, 3356, 5, 230, 0, 0, 3356, 3455, 3, 148, 74, 0, 3357, 3358, 5, 251, 0, 0, 3358, 3359, 3, 302, 151, 0, 3359, 3360, 5, 312, 0, 0, 3360, 3361, 3, 142, 71, 0, 3361, 3455, 1, 0, 0, 0, 3362, 3363, 5, 40, 0, 0, 3363, 3365, 3, 142, 71, 0, 3364, 3366, 3, 244, 122, 0, 3365, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3370, 1, 0, 0, 0, 3369, 3371, 3, 248, 124, 0, 3370, 3369, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3373, 5, 88, 0, 0, 3373, 3374, 5, 40, 0, 0, 3374, 3455, 1, 0, 0, 0, 3375, 3377, 5, 40, 0, 0, 3376, 3378, 3, 244, 122, 0, 3377, 3376, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3382, 1, 0, 0, 0, 3381, 3383, 3, 248, 124, 0, 3382, 3381, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3385, 5, 88, 0, 0, 3385, 3386, 5, 40, 0, 0, 3386, 3455, 1, 0, 0, 0, 3387, 3388, 5, 119, 0, 0, 3388, 3389, 3, 142, 71, 0, 3389, 3390, 5, 265, 0, 0, 3390, 3394, 3, 252, 126, 0, 3391, 3393, 3, 246, 123, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3398, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3399, 3, 248, 124, 0, 3398, 3397, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 5, 88, 0, 0, 3401, 3402, 5, 119, 0, 0, 3402, 3455, 1, 0, 0, 0, 3403, 3404, 5, 135, 0, 0, 3404, 3455, 3, 302, 151, 0, 3405, 3406, 5, 151, 0, 0, 3406, 3455, 3, 302, 151, 0, 3407, 3413, 5, 32, 0, 0, 3408, 3409, 3, 250, 125, 0, 3409, 3410, 5, 325, 0, 0, 3410, 3412, 1, 0, 0, 0, 3411, 3408, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3416, 3418, 3, 252, 126, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3455, 5, 88, 0, 0, 3420, 3421, 3, 302, 151, 0, 3421, 3422, 5, 10, 0, 0, 3422, 3424, 1, 0, 0, 0, 3423, 3420, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 5, 161, 0, 0, 3426, 3427, 3, 252, 126, 0, 3427, 3428, 5, 88, 0, 0, 3428, 3429, 5, 161, 0, 0, 3429, 3455, 1, 0, 0, 0, 3430, 3431, 3, 302, 151, 0, 3431, 3432, 5, 10, 0, 0, 3432, 3434, 1, 0, 0, 0, 3433, 3430, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3436, 5, 302, 0, 0, 3436, 3437, 3, 142, 71, 0, 3437, 3438, 5, 81, 0, 0, 3438, 3439, 3, 252, 126, 0, 3439, 3440, 5, 88, 0, 0, 3440, 3441, 5, 302, 0, 0, 3441, 3455, 1, 0, 0, 0, 3442, 3443, 3, 302, 151, 0, 3443, 3444, 5, 10, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3448, 5, 224, 0, 0, 3448, 3449, 3, 252, 126, 0, 3449, 3450, 5, 286, 0, 0, 3450, 3451, 3, 142, 71, 0, 3451, 3452, 5, 88, 0, 0, 3452, 3453, 5, 224, 0, 0, 3453, 3455, 1, 0, 0, 0, 3454, 3355, 1, 0, 0, 0, 3454, 3357, 1, 0, 0, 0, 3454, 3362, 1, 0, 0, 0, 3454, 3375, 1, 0, 0, 0, 3454, 3387, 1, 0, 0, 0, 3454, 3403, 1, 0, 0, 0, 3454, 3405, 1, 0, 0, 0, 3454, 3407, 1, 0, 0, 0, 3454, 3423, 1, 0, 0, 0, 3454, 3433, 1, 0, 0, 0, 3454, 3445, 1, 0, 0, 0, 3455, 243, 1, 0, 0, 0, 3456, 3457, 5, 300, 0, 0, 3457, 3458, 3, 142, 71, 0, 3458, 3459, 5, 265, 0, 0, 3459, 3460, 3, 252, 126, 0, 3460, 245, 1, 0, 0, 0, 3461, 3462, 5, 86, 0, 0, 3462, 3463, 3, 142, 71, 0, 3463, 3464, 5, 265, 0, 0, 3464, 3465, 3, 252, 126, 0, 3465, 247, 1, 0, 0, 0, 3466, 3467, 5, 84, 0, 0, 3467, 3468, 3, 252, 126, 0, 3468, 249, 1, 0, 0, 0, 3469, 3470, 5, 69, 0, 0, 3470, 3475, 3, 302, 151, 0, 3471, 3472, 5, 3, 0, 0, 3472, 3474, 3, 302, 151, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3478, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3481, 3, 190, 95, 0, 3479, 3480, 5, 70, 0, 0, 3480, 3482, 3, 148, 74, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 251, 1, 0, 0, 0, 3483, 3484, 3, 242, 121, 0, 3484, 3485, 5, 325, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3483, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 253, 1, 0, 0, 0, 3490, 3497, 5, 53, 0, 0, 3491, 3497, 5, 248, 0, 0, 3492, 3497, 5, 73, 0, 0, 3493, 3497, 5, 127, 0, 0, 3494, 3497, 5, 287, 0, 0, 3495, 3497, 3, 302, 151, 0, 3496, 3490, 1, 0, 0, 0, 3496, 3491, 1, 0, 0, 0, 3496, 3492, 1, 0, 0, 0, 3496, 3493, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3496, 3495, 1, 0, 0, 0, 3497, 255, 1, 0, 0, 0, 3498, 3502, 5, 260, 0, 0, 3499, 3502, 5, 243, 0, 0, 3500, 3502, 3, 302, 151, 0, 3501, 3498, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3500, 1, 0, 0, 0, 3502, 257, 1, 0, 0, 0, 3503, 3505, 3, 256, 128, 0, 3504, 3503, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3507, 3, 288, 144, 0, 3507, 259, 1, 0, 0, 0, 3508, 3511, 3, 262, 131, 0, 3509, 3511, 3, 266, 133, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3509, 1, 0, 0, 0, 3511, 261, 1, 0, 0, 0, 3512, 3524, 3, 302, 151, 0, 3513, 3514, 3, 302, 151, 0, 3514, 3515, 5, 4, 0, 0, 3515, 3516, 3, 302, 151, 0, 3516, 3524, 1, 0, 0, 0, 3517, 3518, 3, 302, 151, 0, 3518, 3519, 5, 4, 0, 0, 3519, 3520, 3, 302, 151, 0, 3520, 3521, 5, 4, 0, 0, 3521, 3522, 3, 302, 151, 0, 3522, 3524, 1, 0, 0, 0, 3523, 3512, 1, 0, 0, 0, 3523, 3513, 1, 0, 0, 0, 3523, 3517, 1, 0, 0, 0, 3524, 263, 1, 0, 0, 0, 3525, 3537, 3, 302, 151, 0, 3526, 3527, 3, 302, 151, 0, 3527, 3528, 5, 4, 0, 0, 3528, 3529, 3, 302, 151, 0, 3529, 3537, 1, 0, 0, 0, 3530, 3531, 3, 302, 151, 0, 3531, 3532, 5, 4, 0, 0, 3532, 3533, 3, 302, 151, 0, 3533, 3534, 5, 4, 0, 0, 3534, 3535, 3, 302, 151, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3525, 1, 0, 0, 0, 3536, 3526, 1, 0, 0, 0, 3536, 3530, 1, 0, 0, 0, 3537, 265, 1, 0, 0, 0, 3538, 3550, 3, 302, 151, 0, 3539, 3540, 3, 302, 151, 0, 3540, 3541, 5, 4, 0, 0, 3541, 3542, 3, 302, 151, 0, 3542, 3550, 1, 0, 0, 0, 3543, 3544, 3, 302, 151, 0, 3544, 3545, 5, 4, 0, 0, 3545, 3546, 3, 302, 151, 0, 3546, 3547, 5, 4, 0, 0, 3547, 3548, 3, 302, 151, 0, 3548, 3550, 1, 0, 0, 0, 3549, 3538, 1, 0, 0, 0, 3549, 3539, 1, 0, 0, 0, 3549, 3543, 1, 0, 0, 0, 3550, 267, 1, 0, 0, 0, 3551, 3563, 3, 302, 151, 0, 3552, 3553, 3, 302, 151, 0, 3553, 3554, 5, 4, 0, 0, 3554, 3555, 3, 302, 151, 0, 3555, 3563, 1, 0, 0, 0, 3556, 3557, 3, 302, 151, 0, 3557, 3558, 5, 4, 0, 0, 3558, 3559, 3, 302, 151, 0, 3559, 3560, 5, 4, 0, 0, 3560, 3561, 3, 302, 151, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3551, 1, 0, 0, 0, 3562, 3552, 1, 0, 0, 0, 3562, 3556, 1, 0, 0, 0, 3563, 269, 1, 0, 0, 0, 3564, 3570, 3, 302, 151, 0, 3565, 3566, 3, 302, 151, 0, 3566, 3567, 5, 4, 0, 0, 3567, 3568, 3, 302, 151, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3564, 1, 0, 0, 0, 3569, 3565, 1, 0, 0, 0, 3570, 271, 1, 0, 0, 0, 3571, 3577, 3, 302, 151, 0, 3572, 3573, 3, 302, 151, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 302, 151, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3571, 1, 0, 0, 0, 3576, 3572, 1, 0, 0, 0, 3577, 273, 1, 0, 0, 0, 3578, 3579, 3, 302, 151, 0, 3579, 275, 1, 0, 0, 0, 3580, 3581, 3, 302, 151, 0, 3581, 277, 1, 0, 0, 0, 3582, 3583, 3, 288, 144, 0, 3583, 279, 1, 0, 0, 0, 3584, 3585, 3, 288, 144, 0, 3585, 281, 1, 0, 0, 0, 3586, 3589, 3, 288, 144, 0, 3587, 3589, 4, 141, 14, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3587, 1, 0, 0, 0, 3589, 283, 1, 0, 0, 0, 3590, 3591, 3, 288, 144, 0, 3591, 285, 1, 0, 0, 0, 3592, 3593, 3, 302, 151, 0, 3593, 287, 1, 0, 0, 0, 3594, 3599, 3, 302, 151, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3598, 3, 302, 151, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3601, 1, 0, 0, 0, 3599, 3597, 1, 0, 0, 0, 3599, 3600, 1, 0, 0, 0, 3600, 289, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3602, 3603, 5, 103, 0, 0, 3603, 3604, 3, 292, 146, 0, 3604, 3605, 5, 28, 0, 0, 3605, 3606, 5, 187, 0, 0, 3606, 3607, 3, 148, 74, 0, 3607, 291, 1, 0, 0, 0, 3608, 3609, 7, 34, 0, 0, 3609, 293, 1, 0, 0, 0, 3610, 3614, 3, 296, 148, 0, 3611, 3614, 5, 64, 0, 0, 3612, 3614, 5, 60, 0, 0, 3613, 3610, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3612, 1, 0, 0, 0, 3614, 295, 1, 0, 0, 0, 3615, 3621, 3, 302, 151, 0, 3616, 3617, 5, 289, 0, 0, 3617, 3621, 3, 302, 151, 0, 3618, 3619, 5, 235, 0, 0, 3619, 3621, 3, 302, 151, 0, 3620, 3615, 1, 0, 0, 0, 3620, 3616, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3621, 297, 1, 0, 0, 0, 3622, 3627, 3, 302, 151, 0, 3623, 3624, 5, 3, 0, 0, 3624, 3626, 3, 302, 151, 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, 299, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3638, 5, 53, 0, 0, 3631, 3638, 5, 248, 0, 0, 3632, 3638, 5, 73, 0, 0, 3633, 3638, 5, 127, 0, 0, 3634, 3638, 5, 287, 0, 0, 3635, 3638, 5, 93, 0, 0, 3636, 3638, 3, 302, 151, 0, 3637, 3630, 1, 0, 0, 0, 3637, 3631, 1, 0, 0, 0, 3637, 3632, 1, 0, 0, 0, 3637, 3633, 1, 0, 0, 0, 3637, 3634, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 301, 1, 0, 0, 0, 3639, 3645, 5, 332, 0, 0, 3640, 3645, 5, 334, 0, 0, 3641, 3645, 3, 308, 154, 0, 3642, 3645, 5, 335, 0, 0, 3643, 3645, 5, 333, 0, 0, 3644, 3639, 1, 0, 0, 0, 3644, 3640, 1, 0, 0, 0, 3644, 3641, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3643, 1, 0, 0, 0, 3645, 303, 1, 0, 0, 0, 3646, 3648, 5, 319, 0, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3659, 5, 330, 0, 0, 3650, 3652, 5, 319, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3659, 5, 331, 0, 0, 3654, 3656, 5, 319, 0, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 5, 329, 0, 0, 3658, 3647, 1, 0, 0, 0, 3658, 3651, 1, 0, 0, 0, 3658, 3655, 1, 0, 0, 0, 3659, 305, 1, 0, 0, 0, 3660, 3663, 3, 302, 151, 0, 3661, 3663, 3, 174, 87, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 307, 1, 0, 0, 0, 3664, 3665, 7, 35, 0, 0, 3665, 309, 1, 0, 0, 0, 476, 313, 322, 326, 330, 334, 338, 351, 358, 362, 366, 372, 376, 383, 388, 392, 398, 402, 421, 427, 431, 435, 439, 447, 451, 454, 459, 465, 474, 480, 484, 490, 497, 505, 517, 526, 535, 541, 552, 560, 568, 575, 585, 592, 600, 615, 650, 653, 656, 659, 665, 670, 677, 683, 687, 691, 699, 705, 709, 713, 727, 735, 754, 779, 782, 789, 796, 805, 809, 816, 824, 833, 839, 844, 848, 856, 861, 870, 876, 883, 892, 898, 902, 908, 915, 920, 933, 938, 950, 954, 960, 969, 974, 980, 1008, 1014, 1016, 1022, 1028, 1030, 1038, 1040, 1050, 1052, 1067, 1072, 1079, 1089, 1095, 1097, 1105, 1107, 1132, 1135, 1139, 1143, 1161, 1164, 1175, 1178, 1194, 1204, 1208, 1214, 1217, 1226, 1238, 1241, 1251, 1255, 1261, 1268, 1273, 1279, 1283, 1287, 1293, 1304, 1313, 1323, 1326, 1331, 1333, 1340, 1346, 1348, 1352, 1362, 1368, 1371, 1373, 1385, 1392, 1396, 1399, 1403, 1407, 1414, 1423, 1426, 1429, 1434, 1437, 1445, 1448, 1457, 1464, 1472, 1483, 1486, 1496, 1499, 1510, 1515, 1523, 1526, 1530, 1534, 1543, 1548, 1557, 1560, 1563, 1567, 1578, 1581, 1584, 1591, 1594, 1613, 1617, 1621, 1625, 1629, 1633, 1635, 1646, 1651, 1660, 1669, 1672, 1678, 1686, 1695, 1698, 1706, 1709, 1712, 1717, 1720, 1732, 1735, 1743, 1748, 1752, 1754, 1756, 1771, 1773, 1784, 1805, 1815, 1826, 1830, 1832, 1840, 1851, 1862, 1869, 1882, 1888, 1914, 1929, 1934, 1938, 1948, 1954, 1960, 1968, 1973, 1980, 1982, 1988, 1994, 1998, 2003, 2012, 2017, 2031, 2041, 2044, 2053, 2058, 2063, 2065, 2074, 2077, 2085, 2088, 2095, 2100, 2107, 2111, 2113, 2121, 2131, 2137, 2139, 2146, 2150, 2152, 2159, 2163, 2165, 2167, 2176, 2187, 2191, 2201, 2211, 2215, 2223, 2225, 2238, 2246, 2255, 2261, 2269, 2275, 2279, 2284, 2289, 2295, 2309, 2311, 2341, 2352, 2360, 2365, 2370, 2383, 2389, 2392, 2399, 2404, 2407, 2410, 2415, 2422, 2425, 2434, 2437, 2441, 2444, 2447, 2462, 2465, 2484, 2488, 2496, 2500, 2525, 2528, 2537, 2543, 2549, 2555, 2564, 2567, 2570, 2589, 2598, 2620, 2623, 2633, 2642, 2648, 2654, 2665, 2667, 2672, 2679, 2681, 2687, 2693, 2704, 2713, 2718, 2723, 2725, 2727, 2733, 2735, 2745, 2754, 2756, 2762, 2764, 2767, 2777, 2779, 2787, 2795, 2798, 2803, 2808, 2820, 2824, 2828, 2831, 2833, 2841, 2844, 2854, 2862, 2868, 2870, 2878, 2888, 2894, 2908, 2917, 2924, 2929, 2936, 2941, 2964, 2969, 2971, 2978, 2982, 2989, 2993, 3009, 3024, 3031, 3040, 3050, 3055, 3064, 3069, 3077, 3085, 3088, 3094, 3097, 3104, 3112, 3115, 3123, 3126, 3152, 3163, 3168, 3175, 3177, 3190, 3205, 3209, 3213, 3217, 3223, 3227, 3231, 3235, 3237, 3247, 3254, 3263, 3270, 3277, 3284, 3293, 3305, 3308, 3319, 3322, 3327, 3337, 3353, 3367, 3370, 3379, 3382, 3394, 3398, 3413, 3417, 3423, 3433, 3445, 3454, 3475, 3481, 3488, 3496, 3501, 3504, 3510, 3523, 3536, 3549, 3562, 3569, 3576, 3588, 3599, 3613, 3620, 3627, 3637, 3644, 3647, 3651, 3655, 3658, 3662] \ No newline at end of file diff --git a/src/lib/trino/TrinoSql.tokens b/src/lib/trino/TrinoSql.tokens index 48b31716d..36a6a6b1a 100644 --- a/src/lib/trino/TrinoSql.tokens +++ b/src/lib/trino/TrinoSql.tokens @@ -333,9 +333,9 @@ IDENTIFIER=332 DIGIT_IDENTIFIER=333 QUOTED_IDENTIFIER=334 BACKQUOTED_IDENTIFIER=335 -SIMPLE_COMMENT=336 +LINE_COMMENT=336 BRACKETED_COMMENT=337 -WS=338 +WHITE_SPACE=338 UNRECOGNIZED=339 DELIMITER=340 '('=1 diff --git a/src/lib/trino/TrinoSqlLexer.interp b/src/lib/trino/TrinoSqlLexer.interp index c78b54518..d0ec67526 100644 --- a/src/lib/trino/TrinoSqlLexer.interp +++ b/src/lib/trino/TrinoSqlLexer.interp @@ -677,9 +677,9 @@ IDENTIFIER DIGIT_IDENTIFIER QUOTED_IDENTIFIER BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED rule names: @@ -1025,9 +1025,9 @@ BINARY_INTEGER EXPONENT DIGIT LETTER -SIMPLE_COMMENT +LINE_COMMENT BRACKETED_COMMENT -WS +WHITE_SPACE UNRECOGNIZED channel names: diff --git a/src/lib/trino/TrinoSqlLexer.tokens b/src/lib/trino/TrinoSqlLexer.tokens index 88570b2a0..d8b65c55e 100644 --- a/src/lib/trino/TrinoSqlLexer.tokens +++ b/src/lib/trino/TrinoSqlLexer.tokens @@ -333,9 +333,9 @@ IDENTIFIER=332 DIGIT_IDENTIFIER=333 QUOTED_IDENTIFIER=334 BACKQUOTED_IDENTIFIER=335 -SIMPLE_COMMENT=336 +LINE_COMMENT=336 BRACKETED_COMMENT=337 -WS=338 +WHITE_SPACE=338 UNRECOGNIZED=339 '('=1 ')'=2 diff --git a/src/lib/trino/TrinoSqlLexer.ts b/src/lib/trino/TrinoSqlLexer.ts index 7c648fbb5..84cf96cdc 100644 --- a/src/lib/trino/TrinoSqlLexer.ts +++ b/src/lib/trino/TrinoSqlLexer.ts @@ -345,9 +345,9 @@ export class TrinoSqlLexer extends antlr.Lexer { public static readonly DIGIT_IDENTIFIER = 333; public static readonly QUOTED_IDENTIFIER = 334; public static readonly BACKQUOTED_IDENTIFIER = 335; - public static readonly SIMPLE_COMMENT = 336; + public static readonly LINE_COMMENT = 336; public static readonly BRACKETED_COMMENT = 337; - public static readonly WS = 338; + public static readonly WHITE_SPACE = 338; public static readonly UNRECOGNIZED = 339; public static readonly channelNames = [ @@ -474,8 +474,8 @@ export class TrinoSqlLexer extends antlr.Lexer { "SLASH", "PERCENT", "CONCAT", "QUESTION_MARK", "SEMICOLON", "STRING", "UNICODE_STRING", "BINARY_LITERAL", "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", - "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED" + "BACKQUOTED_IDENTIFIER", "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE", + "UNRECOGNIZED" ]; public static readonly modeNames = [ @@ -547,7 +547,7 @@ export class TrinoSqlLexer extends antlr.Lexer { "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "DECIMAL_INTEGER", "HEXADECIMAL_INTEGER", "OCTAL_INTEGER", "BINARY_INTEGER", "EXPONENT", "DIGIT", "LETTER", - "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS", "UNRECOGNIZED", + "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE", "UNRECOGNIZED", ]; diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index 348ede55b..a81240f0e 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -123,7 +123,10 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { WhereClauseContext } from "./TrinoSqlParser.js"; +import { HavingClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; +import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; import { CubeContext } from "./TrinoSqlParser.js"; @@ -356,6 +359,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; import { QueryPeriodContext } from "./TrinoSqlParser.js"; @@ -1721,6 +1725,26 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + */ + enterWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + */ + exitWhereClause?: (ctx: WhereClauseContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + */ + enterHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + */ + exitHavingClause?: (ctx: HavingClauseContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1731,6 +1755,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupBy?: (ctx: GroupByContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + */ + enterPartitionBy?: (ctx: PartitionByContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + */ + exitPartitionBy?: (ctx: PartitionByContext) => void; /** * Enter a parse tree produced by the `singleGroupingSet` * labeled alternative in `TrinoSqlParser.groupingElement`. @@ -4345,6 +4379,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnRef?: (ctx: ColumnRefContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + */ + enterColumnName?: (ctx: ColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + */ + exitColumnName?: (ctx: ColumnNameContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index 74eec9a1d..f83c1af01 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -352,9 +352,9 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly DIGIT_IDENTIFIER = 333; public static readonly QUOTED_IDENTIFIER = 334; public static readonly BACKQUOTED_IDENTIFIER = 335; - public static readonly SIMPLE_COMMENT = 336; + public static readonly LINE_COMMENT = 336; public static readonly BRACKETED_COMMENT = 337; - public static readonly WS = 338; + public static readonly WHITE_SPACE = 338; public static readonly UNRECOGNIZED = 339; public static readonly DELIMITER = 340; public static readonly RULE_program = 0; @@ -384,130 +384,134 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_queryPrimary = 24; public static readonly RULE_sortItem = 25; public static readonly RULE_querySpecification = 26; - public static readonly RULE_groupBy = 27; - public static readonly RULE_groupingElement = 28; - public static readonly RULE_groupingSet = 29; - public static readonly RULE_groupingTerm = 30; - public static readonly RULE_windowDefinition = 31; - public static readonly RULE_windowSpecification = 32; - public static readonly RULE_namedQuery = 33; - public static readonly RULE_setQuantifier = 34; - public static readonly RULE_selectItem = 35; - public static readonly RULE_relation = 36; - public static readonly RULE_joinType = 37; - public static readonly RULE_joinCriteria = 38; - public static readonly RULE_sampledRelation = 39; - public static readonly RULE_sampleType = 40; - public static readonly RULE_trimsSpecification = 41; - public static readonly RULE_listAggOverflowBehavior = 42; - public static readonly RULE_listAggCountIndication = 43; - public static readonly RULE_patternRecognition = 44; - public static readonly RULE_measureDefinition = 45; - public static readonly RULE_rowsPerMatch = 46; - public static readonly RULE_emptyMatchHandling = 47; - public static readonly RULE_skipTo = 48; - public static readonly RULE_subsetDefinition = 49; - public static readonly RULE_variableDefinition = 50; - public static readonly RULE_aliasedRelation = 51; - public static readonly RULE_columnListCreate = 52; - public static readonly RULE_columnList = 53; - public static readonly RULE_columnAliases = 54; - public static readonly RULE_relationPrimary = 55; - public static readonly RULE_jsonTableColumn = 56; - public static readonly RULE_jsonTableSpecificPlan = 57; - public static readonly RULE_jsonTablePathName = 58; - public static readonly RULE_planPrimary = 59; - public static readonly RULE_jsonTableDefaultPlan = 60; - public static readonly RULE_tableFunctionCall = 61; - public static readonly RULE_tableFunctionArgument = 62; - public static readonly RULE_tableArgument = 63; - public static readonly RULE_tableArgumentRelation = 64; - public static readonly RULE_descriptorArgument = 65; - public static readonly RULE_descriptorField = 66; - public static readonly RULE_coPartitionTables = 67; - public static readonly RULE_expression = 68; - public static readonly RULE_booleanExpression = 69; - public static readonly RULE_predicate = 70; - public static readonly RULE_valueExpression = 71; - public static readonly RULE_primaryExpression = 72; - public static readonly RULE_jsonPathInvocation = 73; - public static readonly RULE_jsonValueExpression = 74; - public static readonly RULE_jsonRepresentation = 75; - public static readonly RULE_jsonArgument = 76; - public static readonly RULE_jsonExistsErrorBehavior = 77; - public static readonly RULE_jsonValueBehavior = 78; - public static readonly RULE_jsonQueryWrapperBehavior = 79; - public static readonly RULE_jsonQueryBehavior = 80; - public static readonly RULE_jsonObjectMember = 81; - public static readonly RULE_processingMode = 82; - public static readonly RULE_nullTreatment = 83; - public static readonly RULE_string = 84; - public static readonly RULE_timeZoneSpecifier = 85; - public static readonly RULE_comparisonOperator = 86; - public static readonly RULE_comparisonQuantifier = 87; - public static readonly RULE_booleanValue = 88; - public static readonly RULE_interval = 89; - public static readonly RULE_intervalField = 90; - public static readonly RULE_normalForm = 91; - public static readonly RULE_type = 92; - public static readonly RULE_rowField = 93; - public static readonly RULE_typeParameter = 94; - public static readonly RULE_whenClause = 95; - public static readonly RULE_filter = 96; - public static readonly RULE_mergeCase = 97; - public static readonly RULE_over = 98; - public static readonly RULE_windowFrame = 99; - public static readonly RULE_frameExtent = 100; - public static readonly RULE_frameBound = 101; - public static readonly RULE_rowPattern = 102; - public static readonly RULE_patternPrimary = 103; - public static readonly RULE_patternQuantifier = 104; - public static readonly RULE_updateAssignment = 105; - public static readonly RULE_explainOption = 106; - public static readonly RULE_transactionMode = 107; - public static readonly RULE_levelOfIsolation = 108; - public static readonly RULE_callArgument = 109; - public static readonly RULE_pathElement = 110; - public static readonly RULE_pathSpecification = 111; - public static readonly RULE_functionSpecification = 112; - public static readonly RULE_functionDeclaration = 113; - public static readonly RULE_functionSignature = 114; - public static readonly RULE_parameterDeclaration = 115; - public static readonly RULE_returnsClause = 116; - public static readonly RULE_routineCharacteristic = 117; - public static readonly RULE_controlStatement = 118; - public static readonly RULE_caseStatementWhenClause = 119; - public static readonly RULE_elseIfClause = 120; - public static readonly RULE_elseClause = 121; - public static readonly RULE_variableDeclaration = 122; - public static readonly RULE_sqlStatementList = 123; - public static readonly RULE_privilege = 124; - public static readonly RULE_entityKind = 125; - public static readonly RULE_grantObject = 126; - public static readonly RULE_tableOrViewName = 127; - public static readonly RULE_tableRef = 128; - public static readonly RULE_tableNameCreate = 129; - public static readonly RULE_viewRef = 130; - public static readonly RULE_viewNameCreate = 131; - public static readonly RULE_schemaRef = 132; - public static readonly RULE_schemaNameCreate = 133; - public static readonly RULE_catalogRef = 134; - public static readonly RULE_catalogNameCreate = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionNameCreate = 137; - public static readonly RULE_columnRef = 138; - public static readonly RULE_columnNameCreate = 139; - public static readonly RULE_qualifiedName = 140; - public static readonly RULE_queryPeriod = 141; - public static readonly RULE_rangeType = 142; - public static readonly RULE_grantor = 143; - public static readonly RULE_principal = 144; - public static readonly RULE_roles = 145; - public static readonly RULE_privilegeOrRole = 146; - public static readonly RULE_identifier = 147; - public static readonly RULE_number = 148; - public static readonly RULE_authorizationUser = 149; - public static readonly RULE_nonReserved = 150; + public static readonly RULE_whereClause = 27; + public static readonly RULE_havingClause = 28; + public static readonly RULE_groupBy = 29; + public static readonly RULE_partitionBy = 30; + public static readonly RULE_groupingElement = 31; + public static readonly RULE_groupingSet = 32; + public static readonly RULE_groupingTerm = 33; + public static readonly RULE_windowDefinition = 34; + public static readonly RULE_windowSpecification = 35; + public static readonly RULE_namedQuery = 36; + public static readonly RULE_setQuantifier = 37; + public static readonly RULE_selectItem = 38; + public static readonly RULE_relation = 39; + public static readonly RULE_joinType = 40; + public static readonly RULE_joinCriteria = 41; + public static readonly RULE_sampledRelation = 42; + public static readonly RULE_sampleType = 43; + public static readonly RULE_trimsSpecification = 44; + public static readonly RULE_listAggOverflowBehavior = 45; + public static readonly RULE_listAggCountIndication = 46; + public static readonly RULE_patternRecognition = 47; + public static readonly RULE_measureDefinition = 48; + public static readonly RULE_rowsPerMatch = 49; + public static readonly RULE_emptyMatchHandling = 50; + public static readonly RULE_skipTo = 51; + public static readonly RULE_subsetDefinition = 52; + public static readonly RULE_variableDefinition = 53; + public static readonly RULE_aliasedRelation = 54; + public static readonly RULE_columnListCreate = 55; + public static readonly RULE_columnList = 56; + public static readonly RULE_columnAliases = 57; + public static readonly RULE_relationPrimary = 58; + public static readonly RULE_jsonTableColumn = 59; + public static readonly RULE_jsonTableSpecificPlan = 60; + public static readonly RULE_jsonTablePathName = 61; + public static readonly RULE_planPrimary = 62; + public static readonly RULE_jsonTableDefaultPlan = 63; + public static readonly RULE_tableFunctionCall = 64; + public static readonly RULE_tableFunctionArgument = 65; + public static readonly RULE_tableArgument = 66; + public static readonly RULE_tableArgumentRelation = 67; + public static readonly RULE_descriptorArgument = 68; + public static readonly RULE_descriptorField = 69; + public static readonly RULE_coPartitionTables = 70; + public static readonly RULE_expression = 71; + public static readonly RULE_booleanExpression = 72; + public static readonly RULE_predicate = 73; + public static readonly RULE_valueExpression = 74; + public static readonly RULE_primaryExpression = 75; + public static readonly RULE_jsonPathInvocation = 76; + public static readonly RULE_jsonValueExpression = 77; + public static readonly RULE_jsonRepresentation = 78; + public static readonly RULE_jsonArgument = 79; + public static readonly RULE_jsonExistsErrorBehavior = 80; + public static readonly RULE_jsonValueBehavior = 81; + public static readonly RULE_jsonQueryWrapperBehavior = 82; + public static readonly RULE_jsonQueryBehavior = 83; + public static readonly RULE_jsonObjectMember = 84; + public static readonly RULE_processingMode = 85; + public static readonly RULE_nullTreatment = 86; + public static readonly RULE_string = 87; + public static readonly RULE_timeZoneSpecifier = 88; + public static readonly RULE_comparisonOperator = 89; + public static readonly RULE_comparisonQuantifier = 90; + public static readonly RULE_booleanValue = 91; + public static readonly RULE_interval = 92; + public static readonly RULE_intervalField = 93; + public static readonly RULE_normalForm = 94; + public static readonly RULE_type = 95; + public static readonly RULE_rowField = 96; + public static readonly RULE_typeParameter = 97; + public static readonly RULE_whenClause = 98; + public static readonly RULE_filter = 99; + public static readonly RULE_mergeCase = 100; + public static readonly RULE_over = 101; + public static readonly RULE_windowFrame = 102; + public static readonly RULE_frameExtent = 103; + public static readonly RULE_frameBound = 104; + public static readonly RULE_rowPattern = 105; + public static readonly RULE_patternPrimary = 106; + public static readonly RULE_patternQuantifier = 107; + public static readonly RULE_updateAssignment = 108; + public static readonly RULE_explainOption = 109; + public static readonly RULE_transactionMode = 110; + public static readonly RULE_levelOfIsolation = 111; + public static readonly RULE_callArgument = 112; + public static readonly RULE_pathElement = 113; + public static readonly RULE_pathSpecification = 114; + public static readonly RULE_functionSpecification = 115; + public static readonly RULE_functionDeclaration = 116; + public static readonly RULE_functionSignature = 117; + public static readonly RULE_parameterDeclaration = 118; + public static readonly RULE_returnsClause = 119; + public static readonly RULE_routineCharacteristic = 120; + public static readonly RULE_controlStatement = 121; + public static readonly RULE_caseStatementWhenClause = 122; + public static readonly RULE_elseIfClause = 123; + public static readonly RULE_elseClause = 124; + public static readonly RULE_variableDeclaration = 125; + public static readonly RULE_sqlStatementList = 126; + public static readonly RULE_privilege = 127; + public static readonly RULE_entityKind = 128; + public static readonly RULE_grantObject = 129; + public static readonly RULE_tableOrViewName = 130; + public static readonly RULE_tableRef = 131; + public static readonly RULE_tableNameCreate = 132; + public static readonly RULE_viewRef = 133; + public static readonly RULE_viewNameCreate = 134; + public static readonly RULE_schemaRef = 135; + public static readonly RULE_schemaNameCreate = 136; + public static readonly RULE_catalogRef = 137; + public static readonly RULE_catalogNameCreate = 138; + public static readonly RULE_functionName = 139; + public static readonly RULE_functionNameCreate = 140; + public static readonly RULE_columnRef = 141; + public static readonly RULE_columnName = 142; + public static readonly RULE_columnNameCreate = 143; + public static readonly RULE_qualifiedName = 144; + public static readonly RULE_queryPeriod = 145; + public static readonly RULE_rangeType = 146; + public static readonly RULE_grantor = 147; + public static readonly RULE_principal = 148; + public static readonly RULE_roles = 149; + public static readonly RULE_privilegeOrRole = 150; + public static readonly RULE_identifier = 151; + public static readonly RULE_number = 152; + public static readonly RULE_authorizationUser = 153; + public static readonly RULE_nonReserved = 154; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -629,8 +633,8 @@ export class TrinoSqlParser extends SQLParserBase { "SLASH", "PERCENT", "CONCAT", "QUESTION_MARK", "SEMICOLON", "STRING", "UNICODE_STRING", "BINARY_LITERAL", "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", - "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", "DELIMITER" + "BACKQUOTED_IDENTIFIER", "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE", + "UNRECOGNIZED", "DELIMITER" ]; public static readonly ruleNames = [ "program", "statements", "singleStatement", "standaloneExpression", @@ -639,35 +643,36 @@ export class TrinoSqlParser extends SQLParserBase { "query", "with", "tableElement", "columnDefinition", "likeClause", "properties", "propertyAssignments", "property", "propertyValue", "queryNoWith", "limitRowCount", "rowCount", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", - "groupingSet", "groupingTerm", "windowDefinition", "windowSpecification", - "namedQuery", "setQuantifier", "selectItem", "relation", "joinType", - "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", - "listAggOverflowBehavior", "listAggCountIndication", "patternRecognition", - "measureDefinition", "rowsPerMatch", "emptyMatchHandling", "skipTo", - "subsetDefinition", "variableDefinition", "aliasedRelation", "columnListCreate", - "columnList", "columnAliases", "relationPrimary", "jsonTableColumn", - "jsonTableSpecificPlan", "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", - "tableFunctionCall", "tableFunctionArgument", "tableArgument", "tableArgumentRelation", - "descriptorArgument", "descriptorField", "coPartitionTables", "expression", - "booleanExpression", "predicate", "valueExpression", "primaryExpression", - "jsonPathInvocation", "jsonValueExpression", "jsonRepresentation", - "jsonArgument", "jsonExistsErrorBehavior", "jsonValueBehavior", - "jsonQueryWrapperBehavior", "jsonQueryBehavior", "jsonObjectMember", - "processingMode", "nullTreatment", "string", "timeZoneSpecifier", - "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "rowField", "typeParameter", - "whenClause", "filter", "mergeCase", "over", "windowFrame", "frameExtent", - "frameBound", "rowPattern", "patternPrimary", "patternQuantifier", - "updateAssignment", "explainOption", "transactionMode", "levelOfIsolation", - "callArgument", "pathElement", "pathSpecification", "functionSpecification", - "functionDeclaration", "functionSignature", "parameterDeclaration", - "returnsClause", "routineCharacteristic", "controlStatement", "caseStatementWhenClause", - "elseIfClause", "elseClause", "variableDeclaration", "sqlStatementList", - "privilege", "entityKind", "grantObject", "tableOrViewName", "tableRef", - "tableNameCreate", "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", - "catalogRef", "catalogNameCreate", "functionName", "functionNameCreate", - "columnRef", "columnNameCreate", "qualifiedName", "queryPeriod", + "sortItem", "querySpecification", "whereClause", "havingClause", + "groupBy", "partitionBy", "groupingElement", "groupingSet", "groupingTerm", + "windowDefinition", "windowSpecification", "namedQuery", "setQuantifier", + "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", + "sampleType", "trimsSpecification", "listAggOverflowBehavior", "listAggCountIndication", + "patternRecognition", "measureDefinition", "rowsPerMatch", "emptyMatchHandling", + "skipTo", "subsetDefinition", "variableDefinition", "aliasedRelation", + "columnListCreate", "columnList", "columnAliases", "relationPrimary", + "jsonTableColumn", "jsonTableSpecificPlan", "jsonTablePathName", + "planPrimary", "jsonTableDefaultPlan", "tableFunctionCall", "tableFunctionArgument", + "tableArgument", "tableArgumentRelation", "descriptorArgument", + "descriptorField", "coPartitionTables", "expression", "booleanExpression", + "predicate", "valueExpression", "primaryExpression", "jsonPathInvocation", + "jsonValueExpression", "jsonRepresentation", "jsonArgument", "jsonExistsErrorBehavior", + "jsonValueBehavior", "jsonQueryWrapperBehavior", "jsonQueryBehavior", + "jsonObjectMember", "processingMode", "nullTreatment", "string", + "timeZoneSpecifier", "comparisonOperator", "comparisonQuantifier", + "booleanValue", "interval", "intervalField", "normalForm", "type", + "rowField", "typeParameter", "whenClause", "filter", "mergeCase", + "over", "windowFrame", "frameExtent", "frameBound", "rowPattern", + "patternPrimary", "patternQuantifier", "updateAssignment", "explainOption", + "transactionMode", "levelOfIsolation", "callArgument", "pathElement", + "pathSpecification", "functionSpecification", "functionDeclaration", + "functionSignature", "parameterDeclaration", "returnsClause", "routineCharacteristic", + "controlStatement", "caseStatementWhenClause", "elseIfClause", "elseClause", + "variableDeclaration", "sqlStatementList", "privilege", "entityKind", + "grantObject", "tableOrViewName", "tableRef", "tableNameCreate", + "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", "catalogRef", + "catalogNameCreate", "functionName", "functionNameCreate", "columnRef", + "columnName", "columnNameCreate", "qualifiedName", "queryPeriod", "rangeType", "grantor", "principal", "roles", "privilegeOrRole", "identifier", "number", "authorizationUser", "nonReserved", ]; @@ -693,21 +698,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 305; + this.state = 313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 2147550721) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 5243919) !== 0) || _la === 110 || _la === 127 || _la === 169 || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 8921345) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 67113129) !== 0) || ((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131587) !== 0)) { { { - this.state = 302; + this.state = 310; this.statements(); } } - this.state = 307; + this.state = 315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 308; + this.state = 316; this.match(TrinoSqlParser.EOF); } } @@ -731,7 +736,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 310; + this.state = 318; this.singleStatement(); } } @@ -756,14 +761,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 312; + this.state = 320; this.statement(); - this.state = 314; + this.state = 322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 313; + this.state = 321; this.match(TrinoSqlParser.SEMICOLON); } } @@ -791,14 +796,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 316; + this.state = 324; this.expression(); - this.state = 318; + this.state = 326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 317; + this.state = 325; this.match(TrinoSqlParser.SEMICOLON); } } @@ -826,14 +831,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 320; + this.state = 328; this.pathSpecification(); - this.state = 322; + this.state = 330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 321; + this.state = 329; this.match(TrinoSqlParser.SEMICOLON); } } @@ -861,14 +866,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 324; + this.state = 332; this.type_(0); - this.state = 326; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 325; + this.state = 333; this.match(TrinoSqlParser.SEMICOLON); } } @@ -896,14 +901,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 328; + this.state = 336; this.rowPattern(0); - this.state = 330; + this.state = 338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 329; + this.state = 337; this.match(TrinoSqlParser.SEMICOLON); } } @@ -930,9 +935,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 340; this.functionSpecification(); - this.state = 333; + this.state = 341; this.match(TrinoSqlParser.EOF); } } @@ -955,14 +960,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1233; + this.state = 1238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 335; + this.state = 343; this.rootQuery(); } break; @@ -970,9 +975,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 336; + this.state = 344; this.match(TrinoSqlParser.KW_USE); - this.state = 337; + this.state = 345; this.schemaRef(); } break; @@ -980,62 +985,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 338; + this.state = 346; this.match(TrinoSqlParser.KW_CREATE); - this.state = 339; + this.state = 347; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 343; + this.state = 351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 340; + this.state = 348; this.match(TrinoSqlParser.KW_IF); - this.state = 341; + this.state = 349; this.match(TrinoSqlParser.KW_NOT); - this.state = 342; + this.state = 350; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 345; + this.state = 353; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 346; + this.state = 354; this.match(TrinoSqlParser.KW_USING); - this.state = 347; + this.state = 355; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 350; + this.state = 358; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 348; + this.state = 356; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 349; + this.state = 357; this.string_(); } break; } - this.state = 354; + this.state = 362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 352; + this.state = 360; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 353; + this.state = 361; this.principal(); } } - this.state = 358; + this.state = 366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 356; + this.state = 364; this.match(TrinoSqlParser.KW_WITH); - this.state = 357; + this.state = 365; this.properties(); } break; @@ -1046,30 +1051,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 360; + this.state = 368; this.match(TrinoSqlParser.KW_DROP); - this.state = 361; + this.state = 369; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 364; + this.state = 372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 362; + this.state = 370; this.match(TrinoSqlParser.KW_IF); - this.state = 363; + this.state = 371; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 366; + this.state = 374; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 368; + this.state = 376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 367; + this.state = 375; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1087,46 +1092,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 370; + this.state = 378; this.match(TrinoSqlParser.KW_CREATE); - this.state = 371; + this.state = 379; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 375; + this.state = 383; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 372; + this.state = 380; this.match(TrinoSqlParser.KW_IF); - this.state = 373; + this.state = 381; this.match(TrinoSqlParser.KW_NOT); - this.state = 374; + this.state = 382; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 377; + this.state = 385; this.schemaNameCreate(); - this.state = 380; + this.state = 388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 378; + this.state = 386; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 379; + this.state = 387; this.principal(); } } - this.state = 384; + this.state = 392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 382; + this.state = 390; this.match(TrinoSqlParser.KW_WITH); - this.state = 383; + this.state = 391; this.properties(); } break; @@ -1137,30 +1142,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 386; + this.state = 394; this.match(TrinoSqlParser.KW_DROP); - this.state = 387; + this.state = 395; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 390; + this.state = 398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 388; + this.state = 396; this.match(TrinoSqlParser.KW_IF); - this.state = 389; + this.state = 397; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 392; + this.state = 400; this.schemaRef(); - this.state = 394; + this.state = 402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 393; + this.state = 401; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1178,17 +1183,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 396; + this.state = 404; this.match(TrinoSqlParser.KW_ALTER); - this.state = 397; + this.state = 405; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 398; + this.state = 406; this.schemaRef(); - this.state = 399; + this.state = 407; this.match(TrinoSqlParser.KW_RENAME); - this.state = 400; + this.state = 408; this.match(TrinoSqlParser.KW_TO); - this.state = 401; + this.state = 409; this.schemaNameCreate(); } break; @@ -1196,17 +1201,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 403; + this.state = 411; this.match(TrinoSqlParser.KW_ALTER); - this.state = 404; + this.state = 412; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 405; + this.state = 413; this.schemaRef(); - this.state = 406; + this.state = 414; this.match(TrinoSqlParser.KW_SET); - this.state = 407; + this.state = 415; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 408; + this.state = 416; this.principal(); } break; @@ -1214,112 +1219,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 410; + this.state = 418; this.match(TrinoSqlParser.KW_CREATE); - this.state = 413; + this.state = 421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 411; + this.state = 419; this.match(TrinoSqlParser.KW_OR); - this.state = 412; + this.state = 420; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 415; + this.state = 423; this.match(TrinoSqlParser.KW_TABLE); - this.state = 419; + this.state = 427; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 416; + this.state = 424; this.match(TrinoSqlParser.KW_IF); - this.state = 417; + this.state = 425; this.match(TrinoSqlParser.KW_NOT); - this.state = 418; + this.state = 426; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 421; + this.state = 429; this.tableNameCreate(); - this.state = 423; + this.state = 431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 422; + this.state = 430; this.columnListCreate(); } } - this.state = 427; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 425; + this.state = 433; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 426; + this.state = 434; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 431; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 429; + this.state = 437; this.match(TrinoSqlParser.KW_WITH); - this.state = 430; + this.state = 438; this.properties(); } } - this.state = 433; + this.state = 441; this.match(TrinoSqlParser.KW_AS); - this.state = 439; + this.state = 447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 434; + this.state = 442; this.rootQuery(); } break; case 2: { - this.state = 435; + this.state = 443; this.match(TrinoSqlParser.T__0); - this.state = 436; + this.state = 444; this.rootQuery(); - this.state = 437; + this.state = 445; this.match(TrinoSqlParser.T__1); } break; } - this.state = 446; + this.state = 454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 441; + this.state = 449; this.match(TrinoSqlParser.KW_WITH); - this.state = 443; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 179) { { - this.state = 442; + this.state = 450; this.match(TrinoSqlParser.KW_NO); } } - this.state = 445; + this.state = 453; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1330,80 +1335,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 448; + this.state = 456; this.match(TrinoSqlParser.KW_CREATE); - this.state = 451; + this.state = 459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 449; + this.state = 457; this.match(TrinoSqlParser.KW_OR); - this.state = 450; + this.state = 458; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 453; + this.state = 461; this.match(TrinoSqlParser.KW_TABLE); - this.state = 457; + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 454; + this.state = 462; this.match(TrinoSqlParser.KW_IF); - this.state = 455; + this.state = 463; this.match(TrinoSqlParser.KW_NOT); - this.state = 456; + this.state = 464; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 459; + this.state = 467; this.tableNameCreate(); - this.state = 460; + this.state = 468; this.match(TrinoSqlParser.T__0); - this.state = 461; + this.state = 469; this.tableElement(); - this.state = 466; + this.state = 474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 462; + this.state = 470; this.match(TrinoSqlParser.T__2); - this.state = 463; + this.state = 471; this.tableElement(); } } - this.state = 468; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 469; + this.state = 477; this.match(TrinoSqlParser.T__1); - this.state = 472; + this.state = 480; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 470; + this.state = 478; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 471; + this.state = 479; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 476; + this.state = 484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 474; + this.state = 482; this.match(TrinoSqlParser.KW_WITH); - this.state = 475; + this.state = 483; this.properties(); } break; @@ -1414,23 +1419,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 478; + this.state = 486; this.match(TrinoSqlParser.KW_DROP); - this.state = 479; + this.state = 487; this.match(TrinoSqlParser.KW_TABLE); - this.state = 482; + this.state = 490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 480; + this.state = 488; this.match(TrinoSqlParser.KW_IF); - this.state = 481; + this.state = 489; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 484; + this.state = 492; this.tableRef(); } break; @@ -1438,23 +1443,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 485; + this.state = 493; this.match(TrinoSqlParser.KW_INSERT); - this.state = 486; + this.state = 494; this.match(TrinoSqlParser.KW_INTO); - this.state = 487; + this.state = 495; this.tableRef(); - this.state = 489; + this.state = 497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 488; + this.state = 496; this.columnList(); } break; } - this.state = 491; + this.state = 499; this.rootQuery(); } break; @@ -1462,21 +1467,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 493; + this.state = 501; this.match(TrinoSqlParser.KW_DELETE); - this.state = 494; + this.state = 502; this.match(TrinoSqlParser.KW_FROM); - this.state = 495; + this.state = 503; this.tableRef(); - this.state = 498; + this.state = 505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 496; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 497; - this.booleanExpression(0); + this.state = 504; + this.whereClause(); } } @@ -1486,11 +1489,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 500; + this.state = 507; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 501; + this.state = 508; this.match(TrinoSqlParser.KW_TABLE); - this.state = 502; + this.state = 509; this.tableRef(); } break; @@ -1498,29 +1501,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 503; + this.state = 510; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 504; + this.state = 511; this.match(TrinoSqlParser.KW_ON); - this.state = 505; + this.state = 512; this.match(TrinoSqlParser.KW_TABLE); - this.state = 506; + this.state = 513; this.tableRef(); - this.state = 507; + this.state = 514; this.match(TrinoSqlParser.KW_IS); - this.state = 510; + this.state = 517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 508; + this.state = 515; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 509; + this.state = 516; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1533,29 +1536,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 512; + this.state = 519; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 513; + this.state = 520; this.match(TrinoSqlParser.KW_ON); - this.state = 514; + this.state = 521; this.match(TrinoSqlParser.KW_VIEW); - this.state = 515; + this.state = 522; this.viewRef(); - this.state = 516; + this.state = 523; this.match(TrinoSqlParser.KW_IS); - this.state = 519; + this.state = 526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 517; + this.state = 524; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 518; + this.state = 525; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1568,29 +1571,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 521; + this.state = 528; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 522; + this.state = 529; this.match(TrinoSqlParser.KW_ON); - this.state = 523; + this.state = 530; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 524; + this.state = 531; this.columnRef(); - this.state = 525; + this.state = 532; this.match(TrinoSqlParser.KW_IS); - this.state = 528; + this.state = 535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 526; + this.state = 533; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 527; + this.state = 534; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1603,29 +1606,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 530; + this.state = 537; this.match(TrinoSqlParser.KW_ALTER); - this.state = 531; + this.state = 538; this.match(TrinoSqlParser.KW_TABLE); - this.state = 534; + this.state = 541; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 532; + this.state = 539; this.match(TrinoSqlParser.KW_IF); - this.state = 533; + this.state = 540; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 536; + this.state = 543; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 537; + this.state = 544; this.match(TrinoSqlParser.KW_RENAME); - this.state = 538; + this.state = 545; this.match(TrinoSqlParser.KW_TO); - this.state = 539; + this.state = 546; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1633,43 +1636,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 541; + this.state = 548; this.match(TrinoSqlParser.KW_ALTER); - this.state = 542; + this.state = 549; this.match(TrinoSqlParser.KW_TABLE); - this.state = 545; + this.state = 552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 543; + this.state = 550; this.match(TrinoSqlParser.KW_IF); - this.state = 544; + this.state = 551; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 547; + this.state = 554; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 548; + this.state = 555; this.match(TrinoSqlParser.KW_ADD); - this.state = 549; + this.state = 556; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 553; + this.state = 560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 550; + this.state = 557; this.match(TrinoSqlParser.KW_IF); - this.state = 551; + this.state = 558; this.match(TrinoSqlParser.KW_NOT); - this.state = 552; + this.state = 559; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 555; + this.state = 562; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1677,45 +1680,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 557; + this.state = 564; this.match(TrinoSqlParser.KW_ALTER); - this.state = 558; + this.state = 565; this.match(TrinoSqlParser.KW_TABLE); - this.state = 561; + this.state = 568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 559; + this.state = 566; this.match(TrinoSqlParser.KW_IF); - this.state = 560; + this.state = 567; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 563; + this.state = 570; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 564; + this.state = 571; this.match(TrinoSqlParser.KW_RENAME); - this.state = 565; + this.state = 572; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 568; + this.state = 575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 566; + this.state = 573; this.match(TrinoSqlParser.KW_IF); - this.state = 567; + this.state = 574; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 570; + this.state = 577; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 571; + this.state = 578; this.match(TrinoSqlParser.KW_TO); - this.state = 572; + this.state = 579; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1723,41 +1726,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 574; + this.state = 581; this.match(TrinoSqlParser.KW_ALTER); - this.state = 575; + this.state = 582; this.match(TrinoSqlParser.KW_TABLE); - this.state = 578; + this.state = 585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 576; + this.state = 583; this.match(TrinoSqlParser.KW_IF); - this.state = 577; + this.state = 584; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 580; + this.state = 587; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 581; + this.state = 588; this.match(TrinoSqlParser.KW_DROP); - this.state = 582; + this.state = 589; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 585; + this.state = 592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 583; + this.state = 590; this.match(TrinoSqlParser.KW_IF); - this.state = 584; + this.state = 591; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 587; + this.state = 594; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1765,37 +1768,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 589; + this.state = 596; this.match(TrinoSqlParser.KW_ALTER); - this.state = 590; + this.state = 597; this.match(TrinoSqlParser.KW_TABLE); - this.state = 593; + this.state = 600; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 591; + this.state = 598; this.match(TrinoSqlParser.KW_IF); - this.state = 592; + this.state = 599; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 595; + this.state = 602; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 596; + this.state = 603; this.match(TrinoSqlParser.KW_ALTER); - this.state = 597; + this.state = 604; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 598; + this.state = 605; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 599; + this.state = 606; this.match(TrinoSqlParser.KW_SET); - this.state = 600; + this.state = 607; this.match(TrinoSqlParser.KW_DATA); - this.state = 601; + this.state = 608; this.match(TrinoSqlParser.KW_TYPE); - this.state = 602; + this.state = 609; this.type_(0); } break; @@ -1803,35 +1806,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 604; + this.state = 611; this.match(TrinoSqlParser.KW_ALTER); - this.state = 605; + this.state = 612; this.match(TrinoSqlParser.KW_TABLE); - this.state = 608; + this.state = 615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 606; + this.state = 613; this.match(TrinoSqlParser.KW_IF); - this.state = 607; + this.state = 614; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 610; + this.state = 617; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 611; + this.state = 618; this.match(TrinoSqlParser.KW_ALTER); - this.state = 612; + this.state = 619; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 613; + this.state = 620; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 614; + this.state = 621; this.match(TrinoSqlParser.KW_DROP); - this.state = 615; + this.state = 622; this.match(TrinoSqlParser.KW_NOT); - this.state = 616; + this.state = 623; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1839,17 +1842,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 618; + this.state = 625; this.match(TrinoSqlParser.KW_ALTER); - this.state = 619; + this.state = 626; this.match(TrinoSqlParser.KW_TABLE); - this.state = 620; + this.state = 627; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 621; + this.state = 628; this.match(TrinoSqlParser.KW_SET); - this.state = 622; + this.state = 629; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 623; + this.state = 630; this.principal(); } break; @@ -1857,17 +1860,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 625; + this.state = 632; this.match(TrinoSqlParser.KW_ALTER); - this.state = 626; + this.state = 633; this.match(TrinoSqlParser.KW_TABLE); - this.state = 627; + this.state = 634; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 628; + this.state = 635; this.match(TrinoSqlParser.KW_SET); - this.state = 629; + this.state = 636; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 630; + this.state = 637; this.propertyAssignments(); } break; @@ -1875,63 +1878,61 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 632; + this.state = 639; this.match(TrinoSqlParser.KW_ALTER); - this.state = 633; + this.state = 640; this.match(TrinoSqlParser.KW_TABLE); - this.state = 634; + this.state = 641; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 635; + this.state = 642; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 636; + this.state = 643; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 649; + this.state = 656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 637; + this.state = 644; this.match(TrinoSqlParser.T__0); - this.state = 646; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 638; + this.state = 645; this.callArgument(); - this.state = 643; + this.state = 650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 639; + this.state = 646; this.match(TrinoSqlParser.T__2); - this.state = 640; + this.state = 647; this.callArgument(); } } - this.state = 645; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 648; + this.state = 655; this.match(TrinoSqlParser.T__1); } break; } - this.state = 653; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 651; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 652; - (localContext as TableExecuteContext)._where = this.booleanExpression(0); + this.state = 658; + this.whereClause(); } } @@ -1941,18 +1942,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 655; + this.state = 661; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 656; + this.state = 662; this.tableRef(); - this.state = 659; + this.state = 665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 657; + this.state = 663; this.match(TrinoSqlParser.KW_WITH); - this.state = 658; + this.state = 664; this.properties(); } break; @@ -1963,81 +1964,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 661; + this.state = 667; this.match(TrinoSqlParser.KW_CREATE); - this.state = 664; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 662; + this.state = 668; this.match(TrinoSqlParser.KW_OR); - this.state = 663; + this.state = 669; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 666; + this.state = 672; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 667; + this.state = 673; this.match(TrinoSqlParser.KW_VIEW); - this.state = 671; + this.state = 677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 668; + this.state = 674; this.match(TrinoSqlParser.KW_IF); - this.state = 669; + this.state = 675; this.match(TrinoSqlParser.KW_NOT); - this.state = 670; + this.state = 676; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 673; + this.state = 679; this.viewNameCreate(); - this.state = 677; + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 674; + this.state = 680; this.match(TrinoSqlParser.KW_GRACE); - this.state = 675; + this.state = 681; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 676; + this.state = 682; this.interval(); } } - this.state = 681; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 679; + this.state = 685; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 680; + this.state = 686; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 685; + this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 683; + this.state = 689; this.match(TrinoSqlParser.KW_WITH); - this.state = 684; + this.state = 690; this.properties(); } } - this.state = 687; + this.state = 693; this.match(TrinoSqlParser.KW_AS); - this.state = 688; + this.state = 694; this.rootQuery(); } break; @@ -2045,44 +2046,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 690; + this.state = 696; this.match(TrinoSqlParser.KW_CREATE); - this.state = 693; + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 691; + this.state = 697; this.match(TrinoSqlParser.KW_OR); - this.state = 692; + this.state = 698; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 695; + this.state = 701; this.match(TrinoSqlParser.KW_VIEW); - this.state = 696; + this.state = 702; this.viewNameCreate(); - this.state = 699; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 697; + this.state = 703; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 698; + this.state = 704; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 703; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 701; + this.state = 707; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 702; + this.state = 708; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -2094,21 +2095,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 707; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 705; + this.state = 711; this.match(TrinoSqlParser.KW_WITH); - this.state = 706; + this.state = 712; this.properties(); } } - this.state = 709; + this.state = 715; this.match(TrinoSqlParser.KW_AS); - this.state = 710; + this.state = 716; this.rootQuery(); } break; @@ -2116,13 +2117,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 712; + this.state = 718; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 713; + this.state = 719; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 714; + this.state = 720; this.match(TrinoSqlParser.KW_VIEW); - this.state = 715; + this.state = 721; this.viewRef(); } break; @@ -2130,25 +2131,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 716; + this.state = 722; this.match(TrinoSqlParser.KW_DROP); - this.state = 717; + this.state = 723; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 718; + this.state = 724; this.match(TrinoSqlParser.KW_VIEW); - this.state = 721; + this.state = 727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 719; + this.state = 725; this.match(TrinoSqlParser.KW_IF); - this.state = 720; + this.state = 726; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 723; + this.state = 729; this.viewRef(); } break; @@ -2156,31 +2157,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 724; + this.state = 730; this.match(TrinoSqlParser.KW_ALTER); - this.state = 725; + this.state = 731; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 726; + this.state = 732; this.match(TrinoSqlParser.KW_VIEW); - this.state = 729; + this.state = 735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 727; + this.state = 733; this.match(TrinoSqlParser.KW_IF); - this.state = 728; + this.state = 734; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 731; + this.state = 737; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 732; + this.state = 738; this.match(TrinoSqlParser.KW_RENAME); - this.state = 733; + this.state = 739; this.match(TrinoSqlParser.KW_TO); - this.state = 734; + this.state = 740; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2188,19 +2189,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 736; + this.state = 742; this.match(TrinoSqlParser.KW_ALTER); - this.state = 737; + this.state = 743; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 738; + this.state = 744; this.match(TrinoSqlParser.KW_VIEW); - this.state = 739; + this.state = 745; this.viewRef(); - this.state = 740; + this.state = 746; this.match(TrinoSqlParser.KW_SET); - this.state = 741; + this.state = 747; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 742; + this.state = 748; this.propertyAssignments(); } break; @@ -2208,23 +2209,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 744; + this.state = 750; this.match(TrinoSqlParser.KW_DROP); - this.state = 745; + this.state = 751; this.match(TrinoSqlParser.KW_VIEW); - this.state = 748; + this.state = 754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 746; + this.state = 752; this.match(TrinoSqlParser.KW_IF); - this.state = 747; + this.state = 753; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 750; + this.state = 756; this.viewRef(); } break; @@ -2232,17 +2233,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 751; + this.state = 757; this.match(TrinoSqlParser.KW_ALTER); - this.state = 752; + this.state = 758; this.match(TrinoSqlParser.KW_VIEW); - this.state = 753; + this.state = 759; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 754; + this.state = 760; this.match(TrinoSqlParser.KW_RENAME); - this.state = 755; + this.state = 761; this.match(TrinoSqlParser.KW_TO); - this.state = 756; + this.state = 762; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2250,17 +2251,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 758; + this.state = 764; this.match(TrinoSqlParser.KW_ALTER); - this.state = 759; + this.state = 765; this.match(TrinoSqlParser.KW_VIEW); - this.state = 760; + this.state = 766; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 761; + this.state = 767; this.match(TrinoSqlParser.KW_SET); - this.state = 762; + this.state = 768; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 763; + this.state = 769; this.principal(); } break; @@ -2268,39 +2269,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 765; + this.state = 771; this.match(TrinoSqlParser.KW_CALL); - this.state = 766; + this.state = 772; this.functionName(); - this.state = 767; + this.state = 773; this.match(TrinoSqlParser.T__0); - this.state = 776; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 768; + this.state = 774; this.callArgument(); - this.state = 773; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 769; + this.state = 775; this.match(TrinoSqlParser.T__2); - this.state = 770; + this.state = 776; this.callArgument(); } } - this.state = 775; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 778; + this.state = 784; this.match(TrinoSqlParser.T__1); } break; @@ -2308,21 +2309,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 780; + this.state = 786; this.match(TrinoSqlParser.KW_CREATE); - this.state = 783; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 781; + this.state = 787; this.match(TrinoSqlParser.KW_OR); - this.state = 782; + this.state = 788; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 785; + this.state = 791; this.functionSpecification(); } break; @@ -2330,23 +2331,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 786; + this.state = 792; this.match(TrinoSqlParser.KW_DROP); - this.state = 787; + this.state = 793; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 790; + this.state = 796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 788; + this.state = 794; this.match(TrinoSqlParser.KW_IF); - this.state = 789; + this.state = 795; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 792; + this.state = 798; this.functionSignature(); } break; @@ -2354,34 +2355,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 793; + this.state = 799; this.match(TrinoSqlParser.KW_CREATE); - this.state = 794; + this.state = 800; this.match(TrinoSqlParser.KW_ROLE); - this.state = 795; + this.state = 801; (localContext as CreateRoleContext)._name = this.identifier(); - this.state = 799; + this.state = 805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 796; + this.state = 802; this.match(TrinoSqlParser.KW_WITH); - this.state = 797; + this.state = 803; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 798; + this.state = 804; this.grantor(); } break; } - this.state = 803; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 801; + this.state = 807; this.match(TrinoSqlParser.KW_IN); - this.state = 802; + this.state = 808; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2392,20 +2393,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 805; + this.state = 811; this.match(TrinoSqlParser.KW_DROP); - this.state = 806; + this.state = 812; this.match(TrinoSqlParser.KW_ROLE); - this.state = 807; + this.state = 813; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 810; + this.state = 816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 808; + this.state = 814; this.match(TrinoSqlParser.KW_IN); - this.state = 809; + this.state = 815; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2416,82 +2417,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 812; + this.state = 818; this.match(TrinoSqlParser.KW_GRANT); - this.state = 813; + this.state = 819; this.privilegeOrRole(); - this.state = 818; + this.state = 824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 814; + this.state = 820; this.match(TrinoSqlParser.T__2); - this.state = 815; + this.state = 821; this.privilegeOrRole(); } } - this.state = 820; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 821; + this.state = 827; this.match(TrinoSqlParser.KW_TO); - this.state = 822; + this.state = 828; this.principal(); - this.state = 827; + this.state = 833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 823; + this.state = 829; this.match(TrinoSqlParser.T__2); - this.state = 824; + this.state = 830; this.principal(); } } - this.state = 829; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 830; + this.state = 836; this.match(TrinoSqlParser.KW_WITH); - this.state = 831; + this.state = 837; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 832; + this.state = 838; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 838; + this.state = 844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 835; + this.state = 841; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 836; + this.state = 842; this.match(TrinoSqlParser.KW_BY); - this.state = 837; + this.state = 843; this.grantor(); } } - this.state = 842; + this.state = 848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 840; + this.state = 846; this.match(TrinoSqlParser.KW_IN); - this.state = 841; + this.state = 847; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2502,29 +2503,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 844; + this.state = 850; this.match(TrinoSqlParser.KW_GRANT); - this.state = 855; + this.state = 861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 845; + this.state = 851; this.privilegeOrRole(); - this.state = 850; + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 846; + this.state = 852; this.match(TrinoSqlParser.T__2); - this.state = 847; + this.state = 853; this.privilegeOrRole(); } } - this.state = 852; + this.state = 858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2533,31 +2534,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 853; + this.state = 859; this.match(TrinoSqlParser.KW_ALL); - this.state = 854; + this.state = 860; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 857; + this.state = 863; this.match(TrinoSqlParser.KW_ON); - this.state = 858; + this.state = 864; this.grantObject(); - this.state = 859; + this.state = 865; this.match(TrinoSqlParser.KW_TO); - this.state = 860; + this.state = 866; this.principal(); - this.state = 864; + this.state = 870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 861; + this.state = 867; this.match(TrinoSqlParser.KW_WITH); - this.state = 862; + this.state = 868; this.match(TrinoSqlParser.KW_GRANT); - this.state = 863; + this.state = 869; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2568,82 +2569,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 866; + this.state = 872; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 870; + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 867; + this.state = 873; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 868; + this.state = 874; this.match(TrinoSqlParser.KW_OPTION); - this.state = 869; + this.state = 875; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 872; + this.state = 878; this.privilegeOrRole(); - this.state = 877; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 873; + this.state = 879; this.match(TrinoSqlParser.T__2); - this.state = 874; + this.state = 880; this.privilegeOrRole(); } } - this.state = 879; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 880; + this.state = 886; this.match(TrinoSqlParser.KW_FROM); - this.state = 881; + this.state = 887; this.principal(); - this.state = 886; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 882; + this.state = 888; this.match(TrinoSqlParser.T__2); - this.state = 883; + this.state = 889; this.principal(); } } - this.state = 888; + this.state = 894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 892; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 889; + this.state = 895; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 890; + this.state = 896; this.match(TrinoSqlParser.KW_BY); - this.state = 891; + this.state = 897; this.grantor(); } } - this.state = 896; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 894; + this.state = 900; this.match(TrinoSqlParser.KW_IN); - this.state = 895; + this.state = 901; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2654,43 +2655,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 898; + this.state = 904; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 902; + this.state = 908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 899; + this.state = 905; this.match(TrinoSqlParser.KW_GRANT); - this.state = 900; + this.state = 906; this.match(TrinoSqlParser.KW_OPTION); - this.state = 901; + this.state = 907; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 914; + this.state = 920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 904; + this.state = 910; this.privilegeOrRole(); - this.state = 909; + this.state = 915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 905; + this.state = 911; this.match(TrinoSqlParser.T__2); - this.state = 906; + this.state = 912; this.privilegeOrRole(); } } - this.state = 911; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2699,20 +2700,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 912; + this.state = 918; this.match(TrinoSqlParser.KW_ALL); - this.state = 913; + this.state = 919; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 916; + this.state = 922; this.match(TrinoSqlParser.KW_ON); - this.state = 917; + this.state = 923; this.grantObject(); - this.state = 918; + this.state = 924; this.match(TrinoSqlParser.KW_FROM); - this.state = 919; + this.state = 925; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2720,28 +2721,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 921; + this.state = 927; this.match(TrinoSqlParser.KW_DENY); - this.state = 932; + this.state = 938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 922; + this.state = 928; this.privilege(); - this.state = 927; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 923; + this.state = 929; this.match(TrinoSqlParser.T__2); - this.state = 924; + this.state = 930; this.privilege(); } } - this.state = 929; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2749,20 +2750,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 930; + this.state = 936; this.match(TrinoSqlParser.KW_ALL); - this.state = 931; + this.state = 937; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 934; + this.state = 940; this.match(TrinoSqlParser.KW_ON); - this.state = 935; + this.state = 941; this.grantObject(); - this.state = 936; + this.state = 942; this.match(TrinoSqlParser.KW_TO); - this.state = 937; + this.state = 943; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2770,40 +2771,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 939; + this.state = 945; this.match(TrinoSqlParser.KW_SET); - this.state = 940; + this.state = 946; this.match(TrinoSqlParser.KW_ROLE); - this.state = 944; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 941; + this.state = 947; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 942; + this.state = 948; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 943; + this.state = 949; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 948; + this.state = 954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 946; + this.state = 952; this.match(TrinoSqlParser.KW_IN); - this.state = 947; + this.state = 953; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2814,18 +2815,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 950; + this.state = 956; this.match(TrinoSqlParser.KW_SHOW); - this.state = 951; + this.state = 957; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 954; + this.state = 960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 952; + this.state = 958; this.match(TrinoSqlParser.KW_ON); - this.state = 953; + this.state = 959; this.grantObject(); } } @@ -2836,39 +2837,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 956; + this.state = 962; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 968; + this.state = 974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 957; + this.state = 963; this.match(TrinoSqlParser.T__0); - this.state = 958; + this.state = 964; this.explainOption(); - this.state = 963; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 959; + this.state = 965; this.match(TrinoSqlParser.T__2); - this.state = 960; + this.state = 966; this.explainOption(); } } - this.state = 965; + this.state = 971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 966; + this.state = 972; this.match(TrinoSqlParser.T__1); } break; } - this.state = 970; + this.state = 976; this.statement(); } break; @@ -2876,21 +2877,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 971; + this.state = 977; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 972; + this.state = 978; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 974; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 973; + this.state = 979; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 976; + this.state = 982; this.statement(); } break; @@ -2898,13 +2899,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 977; + this.state = 983; this.match(TrinoSqlParser.KW_SHOW); - this.state = 978; + this.state = 984; this.match(TrinoSqlParser.KW_CREATE); - this.state = 979; + this.state = 985; this.match(TrinoSqlParser.KW_TABLE); - this.state = 980; + this.state = 986; this.tableRef(); } break; @@ -2912,13 +2913,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 981; + this.state = 987; this.match(TrinoSqlParser.KW_SHOW); - this.state = 982; + this.state = 988; this.match(TrinoSqlParser.KW_CREATE); - this.state = 983; + this.state = 989; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 984; + this.state = 990; this.schemaRef(); } break; @@ -2926,13 +2927,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 985; + this.state = 991; this.match(TrinoSqlParser.KW_SHOW); - this.state = 986; + this.state = 992; this.match(TrinoSqlParser.KW_CREATE); - this.state = 987; + this.state = 993; this.match(TrinoSqlParser.KW_VIEW); - this.state = 988; + this.state = 994; this.viewRef(); } break; @@ -2940,15 +2941,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 989; + this.state = 995; this.match(TrinoSqlParser.KW_SHOW); - this.state = 990; + this.state = 996; this.match(TrinoSqlParser.KW_CREATE); - this.state = 991; + this.state = 997; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 992; + this.state = 998; this.match(TrinoSqlParser.KW_VIEW); - this.state = 993; + this.state = 999; this.viewRef(); } break; @@ -2956,13 +2957,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 994; + this.state = 1000; this.match(TrinoSqlParser.KW_SHOW); - this.state = 995; + this.state = 1001; this.match(TrinoSqlParser.KW_CREATE); - this.state = 996; + this.state = 1002; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 997; + this.state = 1003; this.functionName(); } break; @@ -2970,16 +2971,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 998; + this.state = 1004; this.match(TrinoSqlParser.KW_SHOW); - this.state = 999; + this.state = 1005; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1002; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1000; + this.state = 1006; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -2988,28 +2989,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 1007; this.schemaRef(); } } - this.state = 1010; + this.state = 1016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1004; + this.state = 1010; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1005; + this.state = 1011; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1008; + this.state = 1014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1006; + this.state = 1012; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1007; + this.state = 1013; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3023,16 +3024,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1012; + this.state = 1018; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1013; + this.state = 1019; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1016; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1014; + this.state = 1020; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3041,28 +3042,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1015; + this.state = 1021; this.catalogRef(); } } - this.state = 1024; + this.state = 1030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1018; + this.state = 1024; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1019; + this.state = 1025; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1022; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1020; + this.state = 1026; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1021; + this.state = 1027; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3076,27 +3077,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1026; + this.state = 1032; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1027; + this.state = 1033; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1034; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1028; + this.state = 1034; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1029; + this.state = 1035; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1032; + this.state = 1038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1030; + this.state = 1036; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1031; + this.state = 1037; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3110,11 +3111,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1036; + this.state = 1042; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1037; + this.state = 1043; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1038; + this.state = 1044; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3123,25 +3124,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1039; + this.state = 1045; this.tableOrViewName(); - this.state = 1046; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1040; + this.state = 1046; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1041; + this.state = 1047; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1044; + this.state = 1050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1042; + this.state = 1048; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1043; + this.state = 1049; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3155,13 +3156,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1048; + this.state = 1054; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1055; this.match(TrinoSqlParser.KW_STATS); - this.state = 1050; + this.state = 1056; this.match(TrinoSqlParser.KW_FOR); - this.state = 1051; + this.state = 1057; this.tableOrViewName(); } break; @@ -3169,17 +3170,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1052; + this.state = 1058; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1053; + this.state = 1059; this.match(TrinoSqlParser.KW_STATS); - this.state = 1054; + this.state = 1060; this.match(TrinoSqlParser.KW_FOR); - this.state = 1055; + this.state = 1061; this.match(TrinoSqlParser.T__0); - this.state = 1056; + this.state = 1062; this.rootQuery(); - this.state = 1057; + this.state = 1063; this.match(TrinoSqlParser.T__1); } break; @@ -3187,26 +3188,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1059; + this.state = 1065; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1061; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 1060; + this.state = 1066; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1063; + this.state = 1069; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1066; + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1064; + this.state = 1070; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3215,7 +3216,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1065; + this.state = 1071; this.catalogRef(); } } @@ -3226,18 +3227,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1068; + this.state = 1074; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1069; + this.state = 1075; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1070; + this.state = 1076; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1073; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1071; + this.state = 1077; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3246,7 +3247,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1072; + this.state = 1078; this.catalogRef(); } } @@ -3257,9 +3258,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1075; + this.state = 1081; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1076; + this.state = 1082; this.tableOrViewName(); } break; @@ -3267,9 +3268,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1077; + this.state = 1083; this.match(TrinoSqlParser.KW_DESC); - this.state = 1078; + this.state = 1084; this.tableOrViewName(); } break; @@ -3277,16 +3278,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1079; + this.state = 1085; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1080; + this.state = 1086; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1083; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1081; + this.state = 1087; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3295,28 +3296,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1088; this.schemaRef(); } } - this.state = 1091; + this.state = 1097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1085; + this.state = 1091; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1086; + this.state = 1092; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1089; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1087; + this.state = 1093; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1088; + this.state = 1094; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3330,27 +3331,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1093; + this.state = 1099; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1094; + this.state = 1100; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1101; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1095; + this.state = 1101; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1096; + this.state = 1102; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1099; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1097; + this.state = 1103; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1098; + this.state = 1104; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3364,13 +3365,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1103; + this.state = 1109; this.match(TrinoSqlParser.KW_SET); - this.state = 1104; + this.state = 1110; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1105; + this.state = 1111; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1106; + this.state = 1112; this.authorizationUser(); } break; @@ -3378,11 +3379,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1107; + this.state = 1113; this.match(TrinoSqlParser.KW_RESET); - this.state = 1108; + this.state = 1114; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1109; + this.state = 1115; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3390,15 +3391,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1110; + this.state = 1116; this.match(TrinoSqlParser.KW_SET); - this.state = 1111; + this.state = 1117; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1112; + this.state = 1118; this.qualifiedName(); - this.state = 1113; + this.state = 1119; this.match(TrinoSqlParser.EQ); - this.state = 1114; + this.state = 1120; this.expression(); } break; @@ -3406,11 +3407,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1116; + this.state = 1122; this.match(TrinoSqlParser.KW_RESET); - this.state = 1117; + this.state = 1123; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1118; + this.state = 1124; this.qualifiedName(); } break; @@ -3418,30 +3419,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1119; + this.state = 1125; this.match(TrinoSqlParser.KW_START); - this.state = 1120; + this.state = 1126; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1129; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 220) { { - this.state = 1121; + this.state = 1127; this.transactionMode(); - this.state = 1126; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1122; + this.state = 1128; this.match(TrinoSqlParser.T__2); - this.state = 1123; + this.state = 1129; this.transactionMode(); } } - this.state = 1128; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3454,14 +3455,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1131; + this.state = 1137; this.match(TrinoSqlParser.KW_COMMIT); - this.state = 1133; + this.state = 1139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1132; + this.state = 1138; this.match(TrinoSqlParser.KW_WORK); } } @@ -3472,14 +3473,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1135; + this.state = 1141; this.match(TrinoSqlParser.KW_ROLLBACK); - this.state = 1137; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1136; + this.state = 1142; this.match(TrinoSqlParser.KW_WORK); } } @@ -3490,13 +3491,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1139; + this.state = 1145; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1140; + this.state = 1146; this.identifier(); - this.state = 1141; + this.state = 1147; this.match(TrinoSqlParser.KW_FROM); - this.state = 1142; + this.state = 1148; this.statement(); } break; @@ -3504,11 +3505,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1144; + this.state = 1150; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1145; + this.state = 1151; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1146; + this.state = 1152; this.identifier(); } break; @@ -3516,32 +3517,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1147; + this.state = 1153; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1148; + this.state = 1154; this.identifier(); - this.state = 1158; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1149; + this.state = 1155; this.match(TrinoSqlParser.KW_USING); - this.state = 1150; + this.state = 1156; this.expression(); - this.state = 1155; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1151; + this.state = 1157; this.match(TrinoSqlParser.T__2); - this.state = 1152; + this.state = 1158; this.expression(); } } - this.state = 1157; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3554,34 +3555,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1160; + this.state = 1166; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1161; + this.state = 1167; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1162; + this.state = 1168; this.string_(); - this.state = 1172; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1163; + this.state = 1169; this.match(TrinoSqlParser.KW_USING); - this.state = 1164; + this.state = 1170; this.expression(); - this.state = 1169; + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1165; + this.state = 1171; this.match(TrinoSqlParser.T__2); - this.state = 1166; + this.state = 1172; this.expression(); } } - this.state = 1171; + this.state = 1177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3594,11 +3595,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1174; + this.state = 1180; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1175; + this.state = 1181; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1176; + this.state = 1182; this.identifier(); } break; @@ -3606,11 +3607,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1177; + this.state = 1183; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1178; + this.state = 1184; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1179; + this.state = 1185; this.identifier(); } break; @@ -3618,11 +3619,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1180; + this.state = 1186; this.match(TrinoSqlParser.KW_SET); - this.state = 1181; + this.state = 1187; this.match(TrinoSqlParser.KW_PATH); - this.state = 1182; + this.state = 1188; this.pathSpecification(); } break; @@ -3630,24 +3631,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1183; + this.state = 1189; this.match(TrinoSqlParser.KW_SET); - this.state = 1184; + this.state = 1190; this.match(TrinoSqlParser.KW_TIME); - this.state = 1185; + this.state = 1191; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1188; + this.state = 1194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1186; + this.state = 1192; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1187; + this.state = 1193; this.expression(); } break; @@ -3658,39 +3659,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1190; + this.state = 1196; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1191; + this.state = 1197; this.tableRef(); - this.state = 1192; + this.state = 1198; this.match(TrinoSqlParser.KW_SET); - this.state = 1193; + this.state = 1199; this.updateAssignment(); - this.state = 1198; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1194; + this.state = 1200; this.match(TrinoSqlParser.T__2); - this.state = 1195; + this.state = 1201; this.updateAssignment(); } } - this.state = 1200; + this.state = 1206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1203; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 1201; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 1202; - (localContext as UpdateContext)._where = this.booleanExpression(0); + this.state = 1207; + this.whereClause(); } } @@ -3700,51 +3699,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1205; + this.state = 1210; this.match(TrinoSqlParser.KW_MERGE); - this.state = 1206; + this.state = 1211; this.match(TrinoSqlParser.KW_INTO); - this.state = 1207; - this.tableRef(); this.state = 1212; + this.tableRef(); + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 1209; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1208; + this.state = 1213; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1211; + this.state = 1216; this.identifier(); } } - this.state = 1214; + this.state = 1219; this.match(TrinoSqlParser.KW_USING); - this.state = 1215; + this.state = 1220; this.relation(0); - this.state = 1216; + this.state = 1221; this.match(TrinoSqlParser.KW_ON); - this.state = 1217; + this.state = 1222; this.expression(); - this.state = 1219; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1218; + this.state = 1223; this.mergeCase(); } } - this.state = 1221; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); @@ -3754,15 +3753,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1223; + this.state = 1228; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1224; + this.state = 1229; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1225; + this.state = 1230; this.match(TrinoSqlParser.KW_ON); - this.state = 1226; + this.state = 1231; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1227; + this.state = 1232; this.tableRef(); } break; @@ -3770,15 +3769,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1228; + this.state = 1233; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1229; + this.state = 1234; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1230; + this.state = 1235; this.match(TrinoSqlParser.KW_ON); - this.state = 1231; + this.state = 1236; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 1232; + this.state = 1237; this.columnRef(); } break; @@ -3804,17 +3803,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1236; + this.state = 1241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1235; + this.state = 1240; this.withFunction(); } break; } - this.state = 1238; + this.state = 1243; this.query(); } } @@ -3839,23 +3838,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1240; + this.state = 1245; this.match(TrinoSqlParser.KW_WITH); - this.state = 1241; - this.functionSpecification(); this.state = 1246; + this.functionSpecification(); + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1242; + this.state = 1247; this.match(TrinoSqlParser.T__2); - this.state = 1243; + this.state = 1248; this.functionSpecification(); } } - this.state = 1248; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3883,17 +3882,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1250; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 1249; + this.state = 1254; this.with_(); } } - this.state = 1252; + this.state = 1257; this.queryNoWith(); } } @@ -3918,33 +3917,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1254; + this.state = 1259; this.match(TrinoSqlParser.KW_WITH); - this.state = 1256; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 221) { { - this.state = 1255; + this.state = 1260; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1258; - this.namedQuery(); this.state = 1263; + this.namedQuery(); + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1259; + this.state = 1264; this.match(TrinoSqlParser.T__2); - this.state = 1260; + this.state = 1265; this.namedQuery(); } } - this.state = 1265; + this.state = 1270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3968,7 +3967,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1268; + this.state = 1273; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4190,14 +4189,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1271; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1267; + this.state = 1272; this.likeClause(); } break; @@ -4226,42 +4225,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1270; + this.state = 1275; this.columnNameCreate(); - this.state = 1271; + this.state = 1276; localContext._colType = this.type_(0); - this.state = 1274; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 1272; + this.state = 1277; this.match(TrinoSqlParser.KW_NOT); - this.state = 1273; + this.state = 1278; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1278; + this.state = 1283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1276; + this.state = 1281; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1277; + this.state = 1282; localContext._comment = this.string_(); } break; } - this.state = 1282; + this.state = 1287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1280; + this.state = 1285; this.match(TrinoSqlParser.KW_WITH); - this.state = 1281; + this.state = 1286; this.properties(); } break; @@ -4289,16 +4288,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1284; + this.state = 1289; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1285; + this.state = 1290; this.tableRef(); - this.state = 1288; + this.state = 1293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92 || _la === 123) { { - this.state = 1286; + this.state = 1291; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 123)) { @@ -4308,7 +4307,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1287; + this.state = 1292; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4335,11 +4334,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1290; + this.state = 1295; this.match(TrinoSqlParser.T__0); - this.state = 1291; + this.state = 1296; this.propertyAssignments(); - this.state = 1292; + this.state = 1297; this.match(TrinoSqlParser.T__1); } } @@ -4364,21 +4363,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; - this.property(); this.state = 1299; + this.property(); + this.state = 1304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1295; + this.state = 1300; this.match(TrinoSqlParser.T__2); - this.state = 1296; + this.state = 1301; this.property(); } } - this.state = 1301; + this.state = 1306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4404,11 +4403,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1302; + this.state = 1307; this.identifier(); - this.state = 1303; + this.state = 1308; this.match(TrinoSqlParser.EQ); - this.state = 1304; + this.state = 1309; this.propertyValue(); } } @@ -4430,14 +4429,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1308; + this.state = 1313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1306; + this.state = 1311; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4445,7 +4444,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1307; + this.state = 1312; this.expression(); } break; @@ -4472,53 +4471,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1310; + this.state = 1315; this.queryTerm(0); - this.state = 1321; + this.state = 1326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1311; + this.state = 1316; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1312; + this.state = 1317; this.match(TrinoSqlParser.KW_BY); - this.state = 1313; - this.sortItem(); this.state = 1318; + this.sortItem(); + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1314; + this.state = 1319; this.match(TrinoSqlParser.T__2); - this.state = 1315; + this.state = 1320; this.sortItem(); } } - this.state = 1320; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1328; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1323; + this.state = 1328; this.match(TrinoSqlParser.KW_OFFSET); - this.state = 1324; + this.state = 1329; localContext._offset = this.rowCount(); - this.state = 1326; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 239 || _la === 240) { { - this.state = 1325; + this.state = 1330; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4533,15 +4532,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1343; + this.state = 1348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1330; + this.state = 1335; this.match(TrinoSqlParser.KW_LIMIT); - this.state = 1331; + this.state = 1336; localContext._limit = this.limitRowCount(); } } @@ -4549,9 +4548,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1332; + this.state = 1337; this.match(TrinoSqlParser.KW_FETCH); - this.state = 1333; + this.state = 1338; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 174)) { this.errorHandler.recoverInline(this); @@ -4560,17 +4559,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1335; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 324 || _la === 329) { { - this.state = 1334; + this.state = 1339; localContext._fetchFirst = this.rowCount(); } } - this.state = 1337; + this.state = 1342; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4579,20 +4578,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1346; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1338; + this.state = 1343; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1339; + this.state = 1344; this.match(TrinoSqlParser.KW_WITH); - this.state = 1340; + this.state = 1345; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4662,13 +4661,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1347; + this.state = 1352; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1350; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4676,7 +4675,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1346; + this.state = 1351; this.rowCount(); } break; @@ -4705,7 +4704,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1354; _la = this.tokenStream.LA(1); if(!(_la === 324 || _la === 329)) { this.errorHandler.recoverInline(this); @@ -4754,11 +4753,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1352; + this.state = 1357; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1368; + this.state = 1373; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4768,7 +4767,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1366; + this.state = 1371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4776,23 +4775,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1354; + this.state = 1359; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1355; + this.state = 1360; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1357; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1356; + this.state = 1361; this.setQuantifier(); } } - this.state = 1359; + this.state = 1364; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4801,11 +4800,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1360; + this.state = 1365; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1361; + this.state = 1366; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 281)) { @@ -4815,24 +4814,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1363; + this.state = 1368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1362; + this.state = 1367; this.setQuantifier(); } } - this.state = 1365; + this.state = 1370; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1370; + this.state = 1375; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4857,14 +4856,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1387; + this.state = 1392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1376; this.querySpecification(); } break; @@ -4872,9 +4871,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1372; + this.state = 1377; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1373; + this.state = 1378; this.tableRef(); } break; @@ -4882,25 +4881,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1374; + this.state = 1379; this.match(TrinoSqlParser.KW_VALUES); - this.state = 1375; - this.expression(); this.state = 1380; + this.expression(); + this.state = 1385; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1376; + this.state = 1381; this.match(TrinoSqlParser.T__2); - this.state = 1377; + this.state = 1382; this.expression(); } } } - this.state = 1382; + this.state = 1387; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4910,11 +4909,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1383; + this.state = 1388; this.match(TrinoSqlParser.T__0); - this.state = 1384; + this.state = 1389; this.queryNoWith(); - this.state = 1385; + this.state = 1390; this.match(TrinoSqlParser.T__1); } break; @@ -4943,28 +4942,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1389; + this.state = 1394; this.columnRef(); } break; case 2: { - this.state = 1390; + this.state = 1395; this.expression(); } break; } - this.state = 1394; + this.state = 1399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1393; + this.state = 1398; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 75)) { @@ -4977,14 +4976,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1398; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1396; + this.state = 1401; this.match(TrinoSqlParser.KW_NULLS); - this.state = 1397; + this.state = 1402; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 148)) { @@ -5020,130 +5019,126 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1405; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1402; + this.state = 1407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1401; + this.state = 1406; this.setQuantifier(); } break; } - this.state = 1404; - this.selectItem(); this.state = 1409; + this.selectItem(); + this.state = 1414; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1405; + this.state = 1410; this.match(TrinoSqlParser.T__2); - this.state = 1406; + this.state = 1411; this.selectItem(); } } } - this.state = 1411; + this.state = 1416; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } - this.state = 1421; + this.state = 1426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1412; + this.state = 1417; this.match(TrinoSqlParser.KW_FROM); - this.state = 1413; - this.relation(0); this.state = 1418; + this.relation(0); + this.state = 1423; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1414; + this.state = 1419; this.match(TrinoSqlParser.T__2); - this.state = 1415; + this.state = 1420; this.relation(0); } } } - this.state = 1420; + this.state = 1425; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); } } break; } - this.state = 1425; + this.state = 1429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1423; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 1424; - localContext._where = this.booleanExpression(0); + this.state = 1428; + this.whereClause(); } break; } - this.state = 1430; + this.state = 1434; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1427; + this.state = 1431; this.match(TrinoSqlParser.KW_GROUP); - this.state = 1428; + this.state = 1432; this.match(TrinoSqlParser.KW_BY); - this.state = 1429; + this.state = 1433; this.groupBy(); } break; } - this.state = 1434; + this.state = 1437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1432; - this.match(TrinoSqlParser.KW_HAVING); - this.state = 1433; - localContext._having = this.booleanExpression(0); + this.state = 1436; + this.havingClause(); } break; } - this.state = 1445; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 1436; + this.state = 1439; this.match(TrinoSqlParser.KW_WINDOW); - this.state = 1437; + this.state = 1440; this.windowDefinition(); - this.state = 1442; + this.state = 1445; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1438; + this.state = 1441; this.match(TrinoSqlParser.T__2); - this.state = 1439; + this.state = 1442; this.windowDefinition(); } } } - this.state = 1444; + this.state = 1447; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); } @@ -5166,40 +5161,92 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 54, TrinoSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1450; + this.match(TrinoSqlParser.KW_WHERE); + this.state = 1451; + localContext._where = this.booleanExpression(0); + } + } + 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 havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 56, TrinoSqlParser.RULE_havingClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1453; + this.match(TrinoSqlParser.KW_HAVING); + this.state = 1454; + localContext._having = this.booleanExpression(0); + } + } + 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 groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 54, TrinoSqlParser.RULE_groupBy); + this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1447; + this.state = 1456; this.setQuantifier(); } break; } - this.state = 1450; + this.state = 1459; this.groupingElement(); - this.state = 1455; + this.state = 1464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1451; + this.state = 1460; this.match(TrinoSqlParser.T__2); - this.state = 1452; + this.state = 1461; this.groupingElement(); } } } - this.state = 1457; + this.state = 1466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5219,19 +5266,60 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public partitionBy(): PartitionByContext { + let localContext = new PartitionByContext(this.context, this.state); + this.enterRule(localContext, 60, TrinoSqlParser.RULE_partitionBy); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1467; + this.expression(); + this.state = 1472; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 3) { + { + { + this.state = 1468; + this.match(TrinoSqlParser.T__2); + this.state = 1469; + this.expression(); + } + } + this.state = 1474; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + 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 groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupingElement); + this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1498; + this.state = 1515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1475; this.groupingSet(); } break; @@ -5239,37 +5327,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1459; + this.state = 1476; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1460; + this.state = 1477; this.match(TrinoSqlParser.T__0); - this.state = 1469; + this.state = 1486; 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 = 1461; + this.state = 1478; this.groupingSet(); - this.state = 1466; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1462; + this.state = 1479; this.match(TrinoSqlParser.T__2); - this.state = 1463; + this.state = 1480; this.groupingSet(); } } - this.state = 1468; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1471; + this.state = 1488; this.match(TrinoSqlParser.T__1); } break; @@ -5277,37 +5365,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1472; + this.state = 1489; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1473; + this.state = 1490; this.match(TrinoSqlParser.T__0); - this.state = 1482; + this.state = 1499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1474; + this.state = 1491; this.groupingSet(); - this.state = 1479; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1475; + this.state = 1492; this.match(TrinoSqlParser.T__2); - this.state = 1476; + this.state = 1493; this.groupingSet(); } } - this.state = 1481; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1484; + this.state = 1501; this.match(TrinoSqlParser.T__1); } break; @@ -5315,31 +5403,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1485; + this.state = 1502; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1486; + this.state = 1503; this.match(TrinoSqlParser.KW_SETS); - this.state = 1487; + this.state = 1504; this.match(TrinoSqlParser.T__0); - this.state = 1488; + this.state = 1505; this.groupingSet(); - this.state = 1493; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1489; + this.state = 1506; this.match(TrinoSqlParser.T__2); - this.state = 1490; + this.state = 1507; this.groupingSet(); } } - this.state = 1495; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1496; + this.state = 1513; this.match(TrinoSqlParser.T__1); } break; @@ -5361,51 +5449,51 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingSet); + this.enterRule(localContext, 64, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1513; + this.state = 1530; 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 = 1500; + this.state = 1517; this.match(TrinoSqlParser.T__0); - this.state = 1509; + this.state = 1526; 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.state = 1501; + this.state = 1518; this.groupingTerm(); - this.state = 1506; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1502; + this.state = 1519; this.match(TrinoSqlParser.T__2); - this.state = 1503; + this.state = 1520; this.groupingTerm(); } } - this.state = 1508; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1511; + this.state = 1528; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1512; + this.state = 1529; this.groupingTerm(); } break; @@ -5427,22 +5515,22 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingTerm(): GroupingTermContext { let localContext = new GroupingTermContext(this.context, this.state); - this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingTerm); + this.enterRule(localContext, 66, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1517; + this.state = 1534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1532; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1516; + this.state = 1533; this.expression(); } break; @@ -5464,19 +5552,19 @@ export class TrinoSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 62, TrinoSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 68, TrinoSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1536; localContext._name = this.identifier(); - this.state = 1520; + this.state = 1537; this.match(TrinoSqlParser.KW_AS); - this.state = 1521; + this.state = 1538; this.match(TrinoSqlParser.T__0); - this.state = 1522; + this.state = 1539; this.windowSpecification(); - this.state = 1523; + this.state = 1540; this.match(TrinoSqlParser.T__1); } } @@ -5496,89 +5584,71 @@ export class TrinoSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 70, TrinoSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1526; + this.state = 1543; 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.state = 1525; + this.state = 1542; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1538; + this.state = 1548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1528; + this.state = 1545; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1529; + this.state = 1546; this.match(TrinoSqlParser.KW_BY); - this.state = 1530; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 1535; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 1531; - this.match(TrinoSqlParser.T__2); - this.state = 1532; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 1537; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 1547; + this.partitionBy(); } } - this.state = 1550; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1540; + this.state = 1550; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1541; + this.state = 1551; this.match(TrinoSqlParser.KW_BY); - this.state = 1542; + this.state = 1552; this.sortItem(); - this.state = 1547; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1543; + this.state = 1553; this.match(TrinoSqlParser.T__2); - this.state = 1544; + this.state = 1554; this.sortItem(); } } - this.state = 1549; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1553; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116 || _la === 168 || _la === 219 || _la === 240) { { - this.state = 1552; + this.state = 1562; this.windowFrame(); } } @@ -5601,30 +5671,30 @@ export class TrinoSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 66, TrinoSqlParser.RULE_namedQuery); + this.enterRule(localContext, 72, TrinoSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1565; localContext._name = this.identifier(); - this.state = 1557; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1556; + this.state = 1566; this.columnAliases(); } } - this.state = 1559; + this.state = 1569; this.match(TrinoSqlParser.KW_AS); - this.state = 1560; + this.state = 1570; this.match(TrinoSqlParser.T__0); - this.state = 1561; + this.state = 1571; this.query(); - this.state = 1562; + this.state = 1572; this.match(TrinoSqlParser.T__1); } } @@ -5644,12 +5714,12 @@ export class TrinoSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 68, TrinoSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 74, TrinoSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1564; + this.state = 1574; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 79)) { this.errorHandler.recoverInline(this); @@ -5676,48 +5746,48 @@ export class TrinoSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 70, TrinoSqlParser.RULE_selectItem); + this.enterRule(localContext, 76, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1584; + this.state = 1594; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1566; + this.state = 1576; this.columnRef(); } break; case 2: { - this.state = 1567; + this.state = 1577; this.expression(); } break; } - this.state = 1574; + this.state = 1584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1571; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1570; + this.state = 1580; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1573; + this.state = 1583; (localContext as SelectSingleContext)._alias = this.identifier(); } break; @@ -5728,20 +5798,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1576; + this.state = 1586; this.primaryExpression(0); - this.state = 1577; + this.state = 1587; this.match(TrinoSqlParser.T__3); - this.state = 1578; + this.state = 1588; this.match(TrinoSqlParser.ASTERISK); - this.state = 1581; + this.state = 1591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1579; + this.state = 1589; this.match(TrinoSqlParser.KW_AS); - this.state = 1580; + this.state = 1590; this.columnAliases(); } break; @@ -5752,7 +5822,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1583; + this.state = 1593; this.match(TrinoSqlParser.ASTERISK); } break; @@ -5784,8 +5854,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 72; - this.enterRecursionRule(localContext, 72, TrinoSqlParser.RULE_relation, _p); + let _startState = 78; + this.enterRecursionRule(localContext, 78, TrinoSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5795,11 +5865,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1587; + this.state = 1597; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1607; + this.state = 1617; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5813,20 +5883,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1589; + this.state = 1599; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1603; + this.state = 1613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1590; + this.state = 1600; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1591; + this.state = 1601; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1592; + this.state = 1602; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5836,25 +5906,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1593; + this.state = 1603; this.joinType(); - this.state = 1594; + this.state = 1604; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1595; + this.state = 1605; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1596; + this.state = 1606; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1598; + this.state = 1608; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1599; + this.state = 1609; this.joinType(); - this.state = 1600; + this.state = 1610; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1601; + this.state = 1611; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5864,7 +5934,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1609; + this.state = 1619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -5886,22 +5956,22 @@ export class TrinoSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 74, TrinoSqlParser.RULE_joinType); + this.enterRule(localContext, 80, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1625; + this.state = 1635; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1611; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 1610; + this.state = 1620; this.match(TrinoSqlParser.KW_INNER); } } @@ -5911,14 +5981,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1613; + this.state = 1623; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1615; + this.state = 1625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1614; + this.state = 1624; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5928,14 +5998,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1617; + this.state = 1627; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1619; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1618; + this.state = 1628; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5945,14 +6015,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1621; + this.state = 1631; this.match(TrinoSqlParser.KW_FULL); - this.state = 1623; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1622; + this.state = 1632; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5979,47 +6049,47 @@ export class TrinoSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 76, TrinoSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 82, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1641; + this.state = 1651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1637; this.match(TrinoSqlParser.KW_ON); - this.state = 1628; + this.state = 1638; this.booleanExpression(0); } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1629; + this.state = 1639; this.match(TrinoSqlParser.KW_USING); - this.state = 1630; + this.state = 1640; this.match(TrinoSqlParser.T__0); - this.state = 1631; + this.state = 1641; this.identifier(); - this.state = 1636; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1632; + this.state = 1642; this.match(TrinoSqlParser.T__2); - this.state = 1633; + this.state = 1643; this.identifier(); } } - this.state = 1638; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1639; + this.state = 1649; this.match(TrinoSqlParser.T__1); } break; @@ -6043,26 +6113,26 @@ export class TrinoSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 78, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 84, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1653; this.patternRecognition(); - this.state = 1650; + this.state = 1660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1644; + this.state = 1654; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1645; + this.state = 1655; this.sampleType(); - this.state = 1646; + this.state = 1656; this.match(TrinoSqlParser.T__0); - this.state = 1647; + this.state = 1657; localContext._percentage = this.expression(); - this.state = 1648; + this.state = 1658; this.match(TrinoSqlParser.T__1); } break; @@ -6085,12 +6155,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 80, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 86, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1662; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -6117,12 +6187,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 82, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 88, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1664; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 150 || _la === 270)) { this.errorHandler.recoverInline(this); @@ -6149,35 +6219,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 84, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 90, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1662; + this.state = 1672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1666; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1657; + this.state = 1667; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1659; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326 || _la === 327) { { - this.state = 1658; + this.state = 1668; this.string_(); } } - this.state = 1661; + this.state = 1671; this.listAggCountIndication(); } break; @@ -6201,26 +6271,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggCountIndication(): ListAggCountIndicationContext { let localContext = new ListAggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 86, TrinoSqlParser.RULE_listAggCountIndication); + this.enterRule(localContext, 92, TrinoSqlParser.RULE_listAggCountIndication); try { - this.state = 1668; + this.state = 1678; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1674; this.match(TrinoSqlParser.KW_WITH); - this.state = 1665; + this.state = 1675; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1666; + this.state = 1676; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1667; + this.state = 1677; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6244,142 +6314,124 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 88, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1680; this.aliasedRelation(); - this.state = 1753; + this.state = 1756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1671; + this.state = 1681; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1672; + this.state = 1682; this.match(TrinoSqlParser.T__0); - this.state = 1683; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { - { - this.state = 1673; - this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1674; - this.match(TrinoSqlParser.KW_BY); - this.state = 1675; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - this.state = 1680; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 1676; - this.match(TrinoSqlParser.T__2); - this.state = 1677; - localContext._expression = this.expression(); - localContext._partition.push(localContext._expression); - } - } - this.state = 1682; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + { + this.state = 1683; + this.match(TrinoSqlParser.KW_PARTITION); + this.state = 1684; + this.match(TrinoSqlParser.KW_BY); + this.state = 1685; + this.partitionBy(); } } - this.state = 1695; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1685; + this.state = 1688; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1686; + this.state = 1689; this.match(TrinoSqlParser.KW_BY); - this.state = 1687; + this.state = 1690; this.sortItem(); - this.state = 1692; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1688; + this.state = 1691; this.match(TrinoSqlParser.T__2); - this.state = 1689; + this.state = 1692; this.sortItem(); } } - this.state = 1694; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1706; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1697; + this.state = 1700; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 1698; + this.state = 1701; this.measureDefinition(); - this.state = 1703; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1699; + this.state = 1702; this.match(TrinoSqlParser.T__2); - this.state = 1700; + this.state = 1703; this.measureDefinition(); } } - this.state = 1705; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1709; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 191) { { - this.state = 1708; + this.state = 1711; this.rowsPerMatch(); } } - this.state = 1714; + this.state = 1717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1711; + this.state = 1714; this.match(TrinoSqlParser.KW_AFTER); - this.state = 1712; + this.state = 1715; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1713; + this.state = 1716; this.skipTo(); } } - this.state = 1717; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 1716; + this.state = 1719; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -6391,87 +6443,87 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1719; + this.state = 1722; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 1720; + this.state = 1723; this.match(TrinoSqlParser.T__0); - this.state = 1721; + this.state = 1724; this.rowPattern(0); - this.state = 1722; + this.state = 1725; this.match(TrinoSqlParser.T__1); - this.state = 1732; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1723; + this.state = 1726; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 1724; + this.state = 1727; this.subsetDefinition(); - this.state = 1729; + this.state = 1732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1725; + this.state = 1728; this.match(TrinoSqlParser.T__2); - this.state = 1726; + this.state = 1729; this.subsetDefinition(); } } - this.state = 1731; + this.state = 1734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1734; + this.state = 1737; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 1735; + this.state = 1738; this.variableDefinition(); - this.state = 1740; + this.state = 1743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1736; + this.state = 1739; this.match(TrinoSqlParser.T__2); - this.state = 1737; + this.state = 1740; this.variableDefinition(); } } - this.state = 1742; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1743; + this.state = 1746; this.match(TrinoSqlParser.T__1); - this.state = 1751; + this.state = 1754; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1745; + this.state = 1748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1744; + this.state = 1747; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1747; + this.state = 1750; this.identifier(); - this.state = 1749; + this.state = 1752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1748; + this.state = 1751; this.columnAliases(); } break; @@ -6500,15 +6552,15 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 90, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1758; this.expression(); - this.state = 1756; + this.state = 1759; this.match(TrinoSqlParser.KW_AS); - this.state = 1757; + this.state = 1760; this.identifier(); } } @@ -6528,42 +6580,42 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 92, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { - this.state = 1770; + this.state = 1773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONE: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1762; this.match(TrinoSqlParser.KW_ONE); - this.state = 1760; + this.state = 1763; this.match(TrinoSqlParser.KW_ROW); - this.state = 1761; + this.state = 1764; this.match(TrinoSqlParser.KW_PER); - this.state = 1762; + this.state = 1765; this.match(TrinoSqlParser.KW_MATCH); } break; case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1766; this.match(TrinoSqlParser.KW_ALL); - this.state = 1764; + this.state = 1767; this.match(TrinoSqlParser.KW_ROWS); - this.state = 1765; + this.state = 1768; this.match(TrinoSqlParser.KW_PER); - this.state = 1766; + this.state = 1769; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1768; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189 || _la === 253 || _la === 304) { { - this.state = 1767; + this.state = 1770; this.emptyMatchHandling(); } } @@ -6590,41 +6642,41 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_emptyMatchHandling); try { - this.state = 1781; + this.state = 1784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SHOW: this.enterOuterAlt(localContext, 1); { - this.state = 1772; + this.state = 1775; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1773; + this.state = 1776; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1774; + this.state = 1777; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_OMIT: this.enterOuterAlt(localContext, 2); { - this.state = 1775; + this.state = 1778; this.match(TrinoSqlParser.KW_OMIT); - this.state = 1776; + this.state = 1779; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1777; + this.state = 1780; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1778; + this.state = 1781; this.match(TrinoSqlParser.KW_WITH); - this.state = 1779; + this.state = 1782; this.match(TrinoSqlParser.KW_UNMATCHED); - this.state = 1780; + this.state = 1783; this.match(TrinoSqlParser.KW_ROWS); } break; @@ -6648,71 +6700,71 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_skipTo); try { - this.state = 1802; + this.state = 1805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1786; this.match(TrinoSqlParser.T__4); - this.state = 1784; + this.state = 1787; this.match(TrinoSqlParser.KW_TO); - this.state = 1785; + this.state = 1788; this.match(TrinoSqlParser.KW_NEXT); - this.state = 1786; + this.state = 1789; this.match(TrinoSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1787; + this.state = 1790; this.match(TrinoSqlParser.T__4); - this.state = 1788; + this.state = 1791; this.match(TrinoSqlParser.KW_PAST); - this.state = 1789; + this.state = 1792; this.match(TrinoSqlParser.KW_LAST); - this.state = 1790; + this.state = 1793; this.match(TrinoSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1794; this.match(TrinoSqlParser.T__4); - this.state = 1792; + this.state = 1795; this.match(TrinoSqlParser.KW_TO); - this.state = 1793; + this.state = 1796; this.match(TrinoSqlParser.KW_FIRST); - this.state = 1794; + this.state = 1797; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1795; + this.state = 1798; this.match(TrinoSqlParser.T__4); - this.state = 1796; + this.state = 1799; this.match(TrinoSqlParser.KW_TO); - this.state = 1797; + this.state = 1800; this.match(TrinoSqlParser.KW_LAST); - this.state = 1798; + this.state = 1801; this.identifier(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1799; + this.state = 1802; this.match(TrinoSqlParser.T__4); - this.state = 1800; + this.state = 1803; this.match(TrinoSqlParser.KW_TO); - this.state = 1801; + this.state = 1804; this.identifier(); } break; @@ -6734,38 +6786,38 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1804; + this.state = 1807; localContext._name = this.identifier(); - this.state = 1805; + this.state = 1808; this.match(TrinoSqlParser.EQ); - this.state = 1806; + this.state = 1809; this.match(TrinoSqlParser.T__0); - this.state = 1807; + this.state = 1810; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); - this.state = 1812; + this.state = 1815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1808; + this.state = 1811; this.match(TrinoSqlParser.T__2); - this.state = 1809; + this.state = 1812; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); } } - this.state = 1814; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1815; + this.state = 1818; this.match(TrinoSqlParser.T__1); } } @@ -6785,15 +6837,15 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1817; + this.state = 1820; this.identifier(); - this.state = 1818; + this.state = 1821; this.match(TrinoSqlParser.KW_AS); - this.state = 1819; + this.state = 1822; this.expression(); } } @@ -6813,36 +6865,36 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1824; this.relationPrimary(); - this.state = 1829; + this.state = 1832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1823; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1822; + this.state = 1825; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1825; + this.state = 1828; localContext._alias = this.identifier(); - this.state = 1827; + this.state = 1830; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1826; + this.state = 1829; this.columnAliases(); } break; @@ -6868,32 +6920,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1831; + this.state = 1834; this.match(TrinoSqlParser.T__0); - this.state = 1832; + this.state = 1835; this.columnNameCreate(); - this.state = 1837; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1833; + this.state = 1836; this.match(TrinoSqlParser.T__2); - this.state = 1834; + this.state = 1837; this.columnNameCreate(); } } - this.state = 1839; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1840; + this.state = 1843; this.match(TrinoSqlParser.T__1); } } @@ -6913,32 +6965,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1845; this.match(TrinoSqlParser.T__0); - this.state = 1843; + this.state = 1846; this.columnRef(); - this.state = 1848; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1844; + this.state = 1847; this.match(TrinoSqlParser.T__2); - this.state = 1845; + this.state = 1848; this.columnRef(); } } - this.state = 1850; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1851; + this.state = 1854; this.match(TrinoSqlParser.T__1); } } @@ -6958,32 +7010,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1856; this.match(TrinoSqlParser.T__0); - this.state = 1854; + this.state = 1857; this.identifier(); - this.state = 1859; + this.state = 1862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1855; + this.state = 1858; this.match(TrinoSqlParser.T__2); - this.state = 1856; + this.state = 1859; this.identifier(); } } - this.state = 1861; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1862; + this.state = 1865; this.match(TrinoSqlParser.T__1); } } @@ -7003,24 +7055,24 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 1935; + this.state = 1938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1867; this.tableOrViewName(); - this.state = 1866; + this.state = 1869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 1865; + this.state = 1868; this.queryPeriod(); } break; @@ -7031,11 +7083,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryRelationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1868; + this.state = 1871; this.match(TrinoSqlParser.T__0); - this.state = 1869; + this.state = 1872; this.query(); - this.state = 1870; + this.state = 1873; this.match(TrinoSqlParser.T__1); } break; @@ -7043,38 +7095,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnnestContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1872; + this.state = 1875; this.match(TrinoSqlParser.KW_UNNEST); - this.state = 1873; + this.state = 1876; this.match(TrinoSqlParser.T__0); - this.state = 1874; + this.state = 1877; this.expression(); - this.state = 1879; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1875; + this.state = 1878; this.match(TrinoSqlParser.T__2); - this.state = 1876; + this.state = 1879; this.expression(); } } - this.state = 1881; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1882; - this.match(TrinoSqlParser.T__1); this.state = 1885; + this.match(TrinoSqlParser.T__1); + this.state = 1888; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { - this.state = 1883; + this.state = 1886; this.match(TrinoSqlParser.KW_WITH); - this.state = 1884; + this.state = 1887; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7085,13 +7137,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LateralContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1887; + this.state = 1890; this.match(TrinoSqlParser.KW_LATERAL); - this.state = 1888; + this.state = 1891; this.match(TrinoSqlParser.T__0); - this.state = 1889; + this.state = 1892; this.query(); - this.state = 1890; + this.state = 1893; this.match(TrinoSqlParser.T__1); } break; @@ -7099,13 +7151,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableFunctionInvocationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1892; + this.state = 1895; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1893; + this.state = 1896; this.match(TrinoSqlParser.T__0); - this.state = 1894; + this.state = 1897; this.tableFunctionCall(); - this.state = 1895; + this.state = 1898; this.match(TrinoSqlParser.T__1); } break; @@ -7113,11 +7165,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedRelationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1897; + this.state = 1900; this.match(TrinoSqlParser.T__0); - this.state = 1898; + this.state = 1901; this.relation(0); - this.state = 1899; + this.state = 1902; this.match(TrinoSqlParser.T__1); } break; @@ -7125,72 +7177,72 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonTableContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1901; + this.state = 1904; this.match(TrinoSqlParser.KW_JSON_TABLE); - this.state = 1902; + this.state = 1905; this.match(TrinoSqlParser.T__0); - this.state = 1903; + this.state = 1906; this.jsonPathInvocation(); - this.state = 1904; + this.state = 1907; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1905; + this.state = 1908; this.match(TrinoSqlParser.T__0); - this.state = 1906; + this.state = 1909; this.jsonTableColumn(); - this.state = 1911; + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1907; + this.state = 1910; this.match(TrinoSqlParser.T__2); - this.state = 1908; + this.state = 1911; this.jsonTableColumn(); } } - this.state = 1913; + this.state = 1916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1914; + this.state = 1917; this.match(TrinoSqlParser.T__1); - this.state = 1926; + this.state = 1929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 1915; + this.state = 1918; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1916; + this.state = 1919; this.match(TrinoSqlParser.T__0); - this.state = 1917; + this.state = 1920; this.jsonTableSpecificPlan(); - this.state = 1918; + this.state = 1921; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 1920; + this.state = 1923; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1921; + this.state = 1924; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 1922; + this.state = 1925; this.match(TrinoSqlParser.T__0); - this.state = 1923; + this.state = 1926; this.jsonTableDefaultPlan(); - this.state = 1924; + this.state = 1927; this.match(TrinoSqlParser.T__1); } break; } - this.state = 1931; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89) { { - this.state = 1928; + this.state = 1931; _la = this.tokenStream.LA(1); if(!(_la === 85 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -7199,14 +7251,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1929; + this.state = 1932; this.match(TrinoSqlParser.KW_ON); - this.state = 1930; + this.state = 1933; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 1933; + this.state = 1936; this.match(TrinoSqlParser.T__1); } break; @@ -7228,21 +7280,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { - this.state = 2014; + this.state = 2017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1940; this.identifier(); - this.state = 1938; + this.state = 1941; this.match(TrinoSqlParser.KW_FOR); - this.state = 1939; + this.state = 1942; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7250,46 +7302,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ValueColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1941; + this.state = 1944; this.identifier(); - this.state = 1942; - this.type_(0); this.state = 1945; + this.type_(0); + this.state = 1948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1943; + this.state = 1946; this.match(TrinoSqlParser.KW_PATH); - this.state = 1944; + this.state = 1947; this.string_(); } } - this.state = 1951; + this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 1947; + this.state = 1950; (localContext as ValueColumnContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 1948; + this.state = 1951; this.match(TrinoSqlParser.KW_ON); - this.state = 1949; + this.state = 1952; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1957; + this.state = 1960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 1953; + this.state = 1956; (localContext as ValueColumnContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 1954; + this.state = 1957; this.match(TrinoSqlParser.KW_ON); - this.state = 1955; + this.state = 1958; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7300,44 +7352,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryColumnContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1959; + this.state = 1962; this.identifier(); - this.state = 1960; + this.state = 1963; this.type_(0); - this.state = 1961; + this.state = 1964; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 1962; - this.jsonRepresentation(); this.state = 1965; + this.jsonRepresentation(); + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1963; + this.state = 1966; this.match(TrinoSqlParser.KW_PATH); - this.state = 1964; + this.state = 1967; this.string_(); } } - this.state = 1970; + this.state = 1973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 1967; + this.state = 1970; this.jsonQueryWrapperBehavior(); - this.state = 1968; + this.state = 1971; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 1979; + this.state = 1982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 1972; + this.state = 1975; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -7346,18 +7398,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1973; + this.state = 1976; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 1977; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 1974; + this.state = 1977; this.match(TrinoSqlParser.KW_ON); - this.state = 1975; + this.state = 1978; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 1976; + this.state = 1979; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -7365,30 +7417,30 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1985; + this.state = 1988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1981; + this.state = 1984; (localContext as QueryColumnContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 1982; + this.state = 1985; this.match(TrinoSqlParser.KW_ON); - this.state = 1983; + this.state = 1986; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1991; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 1987; + this.state = 1990; (localContext as QueryColumnContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 1988; + this.state = 1991; this.match(TrinoSqlParser.KW_ON); - this.state = 1989; + this.state = 1992; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7399,55 +7451,55 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NestedColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1993; + this.state = 1996; this.match(TrinoSqlParser.KW_NESTED); - this.state = 1995; + this.state = 1998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1994; + this.state = 1997; this.match(TrinoSqlParser.KW_PATH); } } - this.state = 1997; - this.string_(); this.state = 2000; + this.string_(); + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1998; + this.state = 2001; this.match(TrinoSqlParser.KW_AS); - this.state = 1999; + this.state = 2002; this.identifier(); } } - this.state = 2002; + this.state = 2005; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 2003; + this.state = 2006; this.match(TrinoSqlParser.T__0); - this.state = 2004; + this.state = 2007; this.jsonTableColumn(); - this.state = 2009; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2005; + this.state = 2008; this.match(TrinoSqlParser.T__2); - this.state = 2006; + this.state = 2009; this.jsonTableColumn(); } } - this.state = 2011; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2012; + this.state = 2015; this.match(TrinoSqlParser.T__1); } break; @@ -7469,17 +7521,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { - this.state = 2041; + this.state = 2044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2016; + this.state = 2019; this.jsonTablePathName(); } break; @@ -7487,9 +7539,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinPlanContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2017; + this.state = 2020; this.jsonTablePathName(); - this.state = 2018; + this.state = 2021; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7498,7 +7550,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 2022; this.planPrimary(); } break; @@ -7506,25 +7558,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnionPlanContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2021; + this.state = 2024; this.planPrimary(); - this.state = 2022; + this.state = 2025; this.match(TrinoSqlParser.KW_UNION); - this.state = 2023; + this.state = 2026; this.planPrimary(); - this.state = 2028; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 281) { { { - this.state = 2024; + this.state = 2027; this.match(TrinoSqlParser.KW_UNION); - this.state = 2025; + this.state = 2028; this.planPrimary(); } } - this.state = 2030; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7534,25 +7586,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CrossPlanContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2031; + this.state = 2034; this.planPrimary(); - this.state = 2032; + this.state = 2035; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2033; + this.state = 2036; this.planPrimary(); - this.state = 2038; + this.state = 2041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 2034; + this.state = 2037; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2035; + this.state = 2038; this.planPrimary(); } } - this.state = 2040; + this.state = 2043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7576,11 +7628,11 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2043; + this.state = 2046; this.identifier(); } } @@ -7600,9 +7652,9 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_planPrimary); try { - this.state = 2050; + this.state = 2053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -7824,18 +7876,18 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2048; this.jsonTablePathName(); } break; case TrinoSqlParser.T__0: this.enterOuterAlt(localContext, 2); { - this.state = 2046; + this.state = 2049; this.match(TrinoSqlParser.T__0); - this.state = 2047; + this.state = 2050; this.jsonTableSpecificPlan(); - this.state = 2048; + this.state = 2051; this.match(TrinoSqlParser.T__1); } break; @@ -7859,17 +7911,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 126, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { - this.state = 2062; + this.state = 2065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_OUTER: this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2055; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7878,14 +7930,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2055; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2053; + this.state = 2056; this.match(TrinoSqlParser.T__2); - this.state = 2054; + this.state = 2057; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7903,7 +7955,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_UNION: this.enterOuterAlt(localContext, 2); { - this.state = 2057; + this.state = 2060; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7912,14 +7964,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2060; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2058; + this.state = 2061; this.match(TrinoSqlParser.T__2); - this.state = 2059; + this.state = 2062; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7953,70 +8005,70 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2067; this.functionName(); - this.state = 2065; + this.state = 2068; this.match(TrinoSqlParser.T__0); - this.state = 2074; + this.state = 2077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2066; + this.state = 2069; this.tableFunctionArgument(); - this.state = 2071; + this.state = 2074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2067; + this.state = 2070; this.match(TrinoSqlParser.T__2); - this.state = 2068; + this.state = 2071; this.tableFunctionArgument(); } } - this.state = 2073; + this.state = 2076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2085; + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 52) { { - this.state = 2076; + this.state = 2079; this.match(TrinoSqlParser.KW_COPARTITION); - this.state = 2077; + this.state = 2080; this.coPartitionTables(); - this.state = 2082; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2078; + this.state = 2081; this.match(TrinoSqlParser.T__2); - this.state = 2079; + this.state = 2082; this.coPartitionTables(); } } - this.state = 2084; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2087; + this.state = 2090; this.match(TrinoSqlParser.T__1); } } @@ -8036,40 +8088,40 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2089; + this.state = 2092; this.identifier(); - this.state = 2090; + this.state = 2093; this.match(TrinoSqlParser.T__5); } break; } - this.state = 2097; + this.state = 2100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2094; + this.state = 2097; this.tableArgument(); } break; case 2: { - this.state = 2095; + this.state = 2098; this.descriptorArgument(); } break; case 3: { - this.state = 2096; + this.state = 2099; this.expression(); } break; @@ -8092,62 +8144,46 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2102; this.tableArgumentRelation(); - this.state = 2117; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 2100; + this.state = 2103; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 2101; + this.state = 2104; this.match(TrinoSqlParser.KW_BY); - this.state = 2115; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2102; + this.state = 2105; this.match(TrinoSqlParser.T__0); - this.state = 2111; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2103; - this.expression(); - this.state = 2108; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 3) { - { - { - this.state = 2104; - this.match(TrinoSqlParser.T__2); - this.state = 2105; - this.expression(); - } - } - this.state = 2110; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 2106; + this.partitionBy(); } } - this.state = 2113; + this.state = 2109; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2114; + this.state = 2110; this.expression(); } break; @@ -8155,26 +8191,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2125; + this.state = 2121; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2119; + this.state = 2115; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2120; + this.state = 2116; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2121; + this.state = 2117; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2122; + this.state = 2118; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2123; + this.state = 2119; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2124; + this.state = 2120; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8186,47 +8222,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2143; + this.state = 2139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2127; + this.state = 2123; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2128; + this.state = 2124; this.match(TrinoSqlParser.KW_BY); - this.state = 2141; + this.state = 2137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2129; + this.state = 2125; this.match(TrinoSqlParser.T__0); - this.state = 2130; + this.state = 2126; this.sortItem(); - this.state = 2135; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2131; + this.state = 2127; this.match(TrinoSqlParser.T__2); - this.state = 2132; + this.state = 2128; this.sortItem(); } } - this.state = 2137; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2138; + this.state = 2134; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2140; + this.state = 2136; this.sortItem(); } break; @@ -8252,47 +8288,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2171; + this.state = 2167; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2141; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2146; + this.state = 2142; this.match(TrinoSqlParser.T__0); - this.state = 2147; + this.state = 2143; this.tableRef(); - this.state = 2148; + this.state = 2144; this.match(TrinoSqlParser.T__1); - this.state = 2156; + this.state = 2152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2150; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2149; + this.state = 2145; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2152; + this.state = 2148; this.identifier(); - this.state = 2154; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2153; + this.state = 2149; this.columnAliases(); } } @@ -8306,37 +8342,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2158; + this.state = 2154; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2159; + this.state = 2155; this.match(TrinoSqlParser.T__0); - this.state = 2160; + this.state = 2156; this.query(); - this.state = 2161; + this.state = 2157; this.match(TrinoSqlParser.T__1); - this.state = 2169; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2163; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2162; + this.state = 2158; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2165; + this.state = 2161; this.identifier(); - this.state = 2167; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2166; + this.state = 2162; this.columnAliases(); } } @@ -8364,55 +8400,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2191; + this.state = 2187; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2169; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2174; + this.state = 2170; this.match(TrinoSqlParser.T__0); - this.state = 2175; + this.state = 2171; this.descriptorField(); - this.state = 2180; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2176; + this.state = 2172; this.match(TrinoSqlParser.T__2); - this.state = 2177; + this.state = 2173; this.descriptorField(); } } - this.state = 2182; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2183; + this.state = 2179; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2181; this.match(TrinoSqlParser.KW_CAST); - this.state = 2186; + this.state = 2182; this.match(TrinoSqlParser.T__0); - this.state = 2187; + this.state = 2183; this.match(TrinoSqlParser.KW_NULL); - this.state = 2188; + this.state = 2184; this.match(TrinoSqlParser.KW_AS); - this.state = 2189; + this.state = 2185; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2190; + this.state = 2186; this.match(TrinoSqlParser.T__1); } break; @@ -8436,19 +8472,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2189; this.identifier(); - this.state = 2195; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2194; + this.state = 2190; this.type_(0); } } @@ -8471,36 +8507,36 @@ export class TrinoSqlParser extends SQLParserBase { } public coPartitionTables(): CoPartitionTablesContext { let localContext = new CoPartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_coPartitionTables); + this.enterRule(localContext, 140, TrinoSqlParser.RULE_coPartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2193; this.match(TrinoSqlParser.T__0); - this.state = 2198; + this.state = 2194; this.qualifiedName(); - this.state = 2199; + this.state = 2195; this.match(TrinoSqlParser.T__2); - this.state = 2200; + this.state = 2196; this.qualifiedName(); - this.state = 2205; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2201; + this.state = 2197; this.match(TrinoSqlParser.T__2); - this.state = 2202; + this.state = 2198; this.qualifiedName(); } } - this.state = 2207; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2208; + this.state = 2204; this.match(TrinoSqlParser.T__1); } } @@ -8520,11 +8556,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2210; + this.state = 2206; this.booleanExpression(0); } } @@ -8554,13 +8590,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 138; - this.enterRecursionRule(localContext, 138, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 144; + this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -8820,14 +8856,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2213; + this.state = 2209; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2215; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2214; + this.state = 2210; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -8839,9 +8875,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2217; + this.state = 2213; this.match(TrinoSqlParser.KW_NOT); - this.state = 2218; + this.state = 2214; this.booleanExpression(3); } break; @@ -8849,9 +8885,9 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2229; + this.state = 2225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8859,20 +8895,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2227; + this.state = 2223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2221; + this.state = 2217; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2222; + this.state = 2218; this.match(TrinoSqlParser.KW_AND); - this.state = 2223; + this.state = 2219; this.booleanExpression(3); } break; @@ -8880,22 +8916,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2224; + this.state = 2220; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2225; + this.state = 2221; this.match(TrinoSqlParser.KW_OR); - this.state = 2226; + this.state = 2222; this.booleanExpression(2); } break; } } } - this.state = 2231; + this.state = 2227; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); } } } @@ -8915,19 +8951,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 140, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 146, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2293; + this.state = 2289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2232; + this.state = 2228; this.comparisonOperator(); - this.state = 2233; + this.state = 2229; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -8935,15 +8971,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2231; this.comparisonOperator(); - this.state = 2236; + this.state = 2232; this.comparisonQuantifier(); - this.state = 2237; + this.state = 2233; this.match(TrinoSqlParser.T__0); - this.state = 2238; + this.state = 2234; this.query(); - this.state = 2239; + this.state = 2235; this.match(TrinoSqlParser.T__1); } break; @@ -8951,23 +8987,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2242; + this.state = 2238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2241; + this.state = 2237; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2244; + this.state = 2240; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2245; + this.state = 2241; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2246; + this.state = 2242; this.match(TrinoSqlParser.KW_AND); - this.state = 2247; + this.state = 2243; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -8975,39 +9011,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2250; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2249; + this.state = 2245; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2252; + this.state = 2248; this.match(TrinoSqlParser.KW_IN); - this.state = 2253; + this.state = 2249; this.match(TrinoSqlParser.T__0); - this.state = 2254; + this.state = 2250; this.expression(); - this.state = 2259; + this.state = 2255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2255; + this.state = 2251; this.match(TrinoSqlParser.T__2); - this.state = 2256; + this.state = 2252; this.expression(); } } - this.state = 2261; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2262; + this.state = 2258; this.match(TrinoSqlParser.T__1); } break; @@ -9015,23 +9051,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2265; + this.state = 2261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2264; + this.state = 2260; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2267; + this.state = 2263; this.match(TrinoSqlParser.KW_IN); - this.state = 2268; + this.state = 2264; this.match(TrinoSqlParser.T__0); - this.state = 2269; + this.state = 2265; this.query(); - this.state = 2270; + this.state = 2266; this.match(TrinoSqlParser.T__1); } break; @@ -9039,28 +9075,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2273; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2272; + this.state = 2268; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2275; + this.state = 2271; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2276; + this.state = 2272; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2279; + this.state = 2275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: { - this.state = 2277; + this.state = 2273; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2278; + this.state = 2274; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9071,19 +9107,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2281; + this.state = 2277; this.match(TrinoSqlParser.KW_IS); - this.state = 2283; + this.state = 2279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2282; + this.state = 2278; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2285; + this.state = 2281; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9091,23 +9127,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2286; + this.state = 2282; this.match(TrinoSqlParser.KW_IS); - this.state = 2288; + this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2287; + this.state = 2283; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2290; + this.state = 2286; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2291; + this.state = 2287; this.match(TrinoSqlParser.KW_FROM); - this.state = 2292; + this.state = 2288; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9139,23 +9175,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 142; - this.enterRecursionRule(localContext, 142, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 148; + this.enterRecursionRule(localContext, 148, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2296; + this.state = 2292; this.primaryExpression(0); } break; @@ -9164,7 +9200,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2297; + this.state = 2293; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9174,15 +9210,15 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2298; + this.state = 2294; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2315; + this.state = 2311; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9190,19 +9226,19 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2313; + this.state = 2309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2301; + this.state = 2297; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2302; + this.state = 2298; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 7) !== 0))) { @@ -9212,7 +9248,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2303; + this.state = 2299; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9221,11 +9257,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2304; + this.state = 2300; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2305; + this.state = 2301; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9235,7 +9271,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2306; + this.state = 2302; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9244,13 +9280,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2307; + this.state = 2303; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2308; + this.state = 2304; this.match(TrinoSqlParser.CONCAT); - this.state = 2309; + this.state = 2305; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9258,22 +9294,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2310; + this.state = 2306; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2311; + this.state = 2307; this.match(TrinoSqlParser.KW_AT); - this.state = 2312; + this.state = 2308; this.timeZoneSpecifier(); } break; } } } - this.state = 2317; + this.state = 2313; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } } } @@ -9303,23 +9339,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 144; - this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 150; + this.enterRecursionRule(localContext, 150, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2771; + this.state = 2767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2319; + this.state = 2315; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9328,7 +9364,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2320; + this.state = 2316; this.interval(); } break; @@ -9337,9 +9373,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2321; + this.state = 2317; this.identifier(); - this.state = 2322; + this.state = 2318; this.string_(); } break; @@ -9348,11 +9384,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2324; + this.state = 2320; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2325; + this.state = 2321; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2326; + this.state = 2322; this.string_(); } break; @@ -9361,7 +9397,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2323; this.number_(); } break; @@ -9370,7 +9406,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2328; + this.state = 2324; this.booleanValue(); } break; @@ -9379,7 +9415,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2329; + this.state = 2325; this.string_(); } break; @@ -9388,7 +9424,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2330; + this.state = 2326; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9397,7 +9433,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2331; + this.state = 2327; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9406,17 +9442,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2332; + this.state = 2328; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2333; + this.state = 2329; this.match(TrinoSqlParser.T__0); - this.state = 2334; + this.state = 2330; this.valueExpression(0); - this.state = 2335; + this.state = 2331; this.match(TrinoSqlParser.KW_IN); - this.state = 2336; + this.state = 2332; this.valueExpression(0); - this.state = 2337; + this.state = 2333; this.match(TrinoSqlParser.T__1); } break; @@ -9425,27 +9461,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2339; + this.state = 2335; this.match(TrinoSqlParser.T__0); - this.state = 2340; + this.state = 2336; this.expression(); - this.state = 2343; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2341; + this.state = 2337; this.match(TrinoSqlParser.T__2); - this.state = 2342; + this.state = 2338; this.expression(); } } - this.state = 2345; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2347; + this.state = 2343; this.match(TrinoSqlParser.T__1); } break; @@ -9454,29 +9490,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2349; + this.state = 2345; this.match(TrinoSqlParser.KW_ROW); - this.state = 2350; + this.state = 2346; this.match(TrinoSqlParser.T__0); - this.state = 2351; + this.state = 2347; this.expression(); - this.state = 2356; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2352; + this.state = 2348; this.match(TrinoSqlParser.T__2); - this.state = 2353; + this.state = 2349; this.expression(); } } - this.state = 2358; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2359; + this.state = 2355; this.match(TrinoSqlParser.T__1); } break; @@ -9485,88 +9521,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListAggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2357; (localContext as ListAggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2362; + this.state = 2358; this.match(TrinoSqlParser.T__0); - this.state = 2364; + this.state = 2360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2363; + this.state = 2359; this.setQuantifier(); } break; } - this.state = 2366; + this.state = 2362; this.expression(); - this.state = 2369; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2367; + this.state = 2363; this.match(TrinoSqlParser.T__2); - this.state = 2368; + this.state = 2364; this.string_(); } } - this.state = 2374; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2371; + this.state = 2367; this.match(TrinoSqlParser.KW_ON); - this.state = 2372; + this.state = 2368; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2373; + this.state = 2369; this.listAggOverflowBehavior(); } } - this.state = 2376; + this.state = 2372; this.match(TrinoSqlParser.T__1); { - this.state = 2377; + this.state = 2373; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2378; + this.state = 2374; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2379; + this.state = 2375; this.match(TrinoSqlParser.T__0); - this.state = 2380; + this.state = 2376; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2381; + this.state = 2377; this.match(TrinoSqlParser.KW_BY); - this.state = 2382; + this.state = 2378; this.sortItem(); - this.state = 2387; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2383; + this.state = 2379; this.match(TrinoSqlParser.T__2); - this.state = 2384; + this.state = 2380; this.sortItem(); } } - this.state = 2389; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2390; + this.state = 2386; this.match(TrinoSqlParser.T__1); } - this.state = 2393; + this.state = 2389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2392; + this.state = 2388; this.filter(); } break; @@ -9578,52 +9614,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2396; + this.state = 2392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2395; + this.state = 2391; this.processingMode(); } break; } - this.state = 2398; + this.state = 2394; this.functionName(); - this.state = 2399; + this.state = 2395; this.match(TrinoSqlParser.T__0); - this.state = 2403; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2400; + this.state = 2396; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2401; + this.state = 2397; this.match(TrinoSqlParser.T__3); } } - this.state = 2405; + this.state = 2401; this.match(TrinoSqlParser.ASTERISK); - this.state = 2406; + this.state = 2402; this.match(TrinoSqlParser.T__1); - this.state = 2408; + this.state = 2404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2407; + this.state = 2403; this.filter(); } break; } - this.state = 2411; + this.state = 2407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2410; + this.state = 2406; this.over(); } break; @@ -9635,114 +9671,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2414; + this.state = 2410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2413; + this.state = 2409; this.processingMode(); } break; } - this.state = 2416; + this.state = 2412; this.functionName(); - this.state = 2417; + this.state = 2413; this.match(TrinoSqlParser.T__0); - this.state = 2429; + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538415087) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2419; + this.state = 2415; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2418; + this.state = 2414; this.setQuantifier(); } break; } - this.state = 2421; + this.state = 2417; this.expression(); - this.state = 2426; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2422; + this.state = 2418; this.match(TrinoSqlParser.T__2); - this.state = 2423; + this.state = 2419; this.expression(); } } - this.state = 2428; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2441; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2431; + this.state = 2427; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2432; + this.state = 2428; this.match(TrinoSqlParser.KW_BY); - this.state = 2433; + this.state = 2429; this.sortItem(); - this.state = 2438; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2434; + this.state = 2430; this.match(TrinoSqlParser.T__2); - this.state = 2435; + this.state = 2431; this.sortItem(); } } - this.state = 2440; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2443; + this.state = 2439; this.match(TrinoSqlParser.T__1); - this.state = 2445; + this.state = 2441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2444; + this.state = 2440; this.filter(); } break; } - this.state = 2451; + this.state = 2447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2448; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120 || _la === 228) { { - this.state = 2447; + this.state = 2443; this.nullTreatment(); } } - this.state = 2450; + this.state = 2446; this.over(); } break; @@ -9754,9 +9790,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2453; + this.state = 2449; this.identifier(); - this.state = 2454; + this.state = 2450; this.over(); } break; @@ -9765,11 +9801,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2452; this.identifier(); - this.state = 2457; + this.state = 2453; this.match(TrinoSqlParser.T__6); - this.state = 2458; + this.state = 2454; this.expression(); } break; @@ -9778,39 +9814,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2456; this.match(TrinoSqlParser.T__0); - this.state = 2469; + this.state = 2465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2461; + this.state = 2457; this.identifier(); - this.state = 2466; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2462; + this.state = 2458; this.match(TrinoSqlParser.T__2); - this.state = 2463; + this.state = 2459; this.identifier(); } } - this.state = 2468; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2471; + this.state = 2467; this.match(TrinoSqlParser.T__1); - this.state = 2472; + this.state = 2468; this.match(TrinoSqlParser.T__6); - this.state = 2473; + this.state = 2469; this.expression(); } break; @@ -9819,11 +9855,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2474; + this.state = 2470; this.match(TrinoSqlParser.T__0); - this.state = 2475; + this.state = 2471; this.query(); - this.state = 2476; + this.state = 2472; this.match(TrinoSqlParser.T__1); } break; @@ -9832,13 +9868,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2478; + this.state = 2474; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2479; + this.state = 2475; this.match(TrinoSqlParser.T__0); - this.state = 2480; + this.state = 2476; this.query(); - this.state = 2481; + this.state = 2477; this.match(TrinoSqlParser.T__1); } break; @@ -9847,37 +9883,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2483; + this.state = 2479; this.match(TrinoSqlParser.KW_CASE); - this.state = 2484; + this.state = 2480; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2486; + this.state = 2482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2485; + this.state = 2481; this.whenClause(); } } - this.state = 2488; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2492; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2490; + this.state = 2486; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2491; + this.state = 2487; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2494; + this.state = 2490; this.match(TrinoSqlParser.KW_END); } break; @@ -9886,35 +9922,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2496; + this.state = 2492; this.match(TrinoSqlParser.KW_CASE); - this.state = 2498; + this.state = 2494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2497; + this.state = 2493; this.whenClause(); } } - this.state = 2500; + this.state = 2496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2504; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2502; + this.state = 2498; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2503; + this.state = 2499; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2506; + this.state = 2502; this.match(TrinoSqlParser.KW_END); } break; @@ -9923,17 +9959,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2508; + this.state = 2504; this.match(TrinoSqlParser.KW_CAST); - this.state = 2509; + this.state = 2505; this.match(TrinoSqlParser.T__0); - this.state = 2510; + this.state = 2506; this.expression(); - this.state = 2511; + this.state = 2507; this.match(TrinoSqlParser.KW_AS); - this.state = 2512; + this.state = 2508; this.type_(0); - this.state = 2513; + this.state = 2509; this.match(TrinoSqlParser.T__1); } break; @@ -9942,17 +9978,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2515; + this.state = 2511; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2516; + this.state = 2512; this.match(TrinoSqlParser.T__0); - this.state = 2517; + this.state = 2513; this.expression(); - this.state = 2518; + this.state = 2514; this.match(TrinoSqlParser.KW_AS); - this.state = 2519; + this.state = 2515; this.type_(0); - this.state = 2520; + this.state = 2516; this.match(TrinoSqlParser.T__1); } break; @@ -9961,37 +9997,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2522; + this.state = 2518; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2523; + this.state = 2519; this.match(TrinoSqlParser.T__7); - this.state = 2532; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2524; + this.state = 2520; this.expression(); - this.state = 2529; + this.state = 2525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2525; + this.state = 2521; this.match(TrinoSqlParser.T__2); - this.state = 2526; + this.state = 2522; this.expression(); } } - this.state = 2531; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2534; + this.state = 2530; this.match(TrinoSqlParser.T__8); } break; @@ -10000,8 +10036,8 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2535; - this.identifier(); + this.state = 2531; + this.columnName(); } break; case 27: @@ -10009,7 +10045,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2536; + this.state = 2532; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10018,18 +10054,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2537; + this.state = 2533; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2541; + this.state = 2537; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 2538; + this.state = 2534; this.match(TrinoSqlParser.T__0); - this.state = 2539; + this.state = 2535; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2540; + this.state = 2536; this.match(TrinoSqlParser.T__1); } break; @@ -10041,18 +10077,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2543; + this.state = 2539; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2547; + this.state = 2543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2544; + this.state = 2540; this.match(TrinoSqlParser.T__0); - this.state = 2545; + this.state = 2541; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2546; + this.state = 2542; this.match(TrinoSqlParser.T__1); } break; @@ -10064,18 +10100,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2549; + this.state = 2545; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2553; + this.state = 2549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2550; + this.state = 2546; this.match(TrinoSqlParser.T__0); - this.state = 2551; + this.state = 2547; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2552; + this.state = 2548; this.match(TrinoSqlParser.T__1); } break; @@ -10087,18 +10123,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2555; + this.state = 2551; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2559; + this.state = 2555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2556; + this.state = 2552; this.match(TrinoSqlParser.T__0); - this.state = 2557; + this.state = 2553; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2558; + this.state = 2554; this.match(TrinoSqlParser.T__1); } break; @@ -10110,7 +10146,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2561; + this.state = 2557; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10119,7 +10155,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2562; + this.state = 2558; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10128,7 +10164,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2563; + this.state = 2559; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10137,7 +10173,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2564; + this.state = 2560; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10146,43 +10182,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2565; + this.state = 2561; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2566; + this.state = 2562; this.match(TrinoSqlParser.T__0); - this.state = 2574; + this.state = 2570; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2568; + this.state = 2564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2567; + this.state = 2563; this.trimsSpecification(); } break; } - this.state = 2571; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3755997183) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2570; + this.state = 2566; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2573; + this.state = 2569; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2576; + this.state = 2572; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2577; + this.state = 2573; this.match(TrinoSqlParser.T__1); } break; @@ -10191,17 +10227,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2579; + this.state = 2575; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2580; + this.state = 2576; this.match(TrinoSqlParser.T__0); - this.state = 2581; + this.state = 2577; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2582; + this.state = 2578; this.match(TrinoSqlParser.T__2); - this.state = 2583; + this.state = 2579; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2584; + this.state = 2580; this.match(TrinoSqlParser.T__1); } break; @@ -10210,29 +10246,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2586; + this.state = 2582; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2587; + this.state = 2583; this.match(TrinoSqlParser.T__0); - this.state = 2588; + this.state = 2584; this.valueExpression(0); - this.state = 2589; + this.state = 2585; this.match(TrinoSqlParser.KW_FROM); - this.state = 2590; + this.state = 2586; this.valueExpression(0); - this.state = 2593; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2591; + this.state = 2587; this.match(TrinoSqlParser.KW_FOR); - this.state = 2592; + this.state = 2588; this.valueExpression(0); } } - this.state = 2595; + this.state = 2591; this.match(TrinoSqlParser.T__1); } break; @@ -10241,25 +10277,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2597; + this.state = 2593; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2598; + this.state = 2594; this.match(TrinoSqlParser.T__0); - this.state = 2599; + this.state = 2595; this.valueExpression(0); - this.state = 2602; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2600; + this.state = 2596; this.match(TrinoSqlParser.T__2); - this.state = 2601; + this.state = 2597; this.normalForm(); } } - this.state = 2604; + this.state = 2600; this.match(TrinoSqlParser.T__1); } break; @@ -10268,17 +10304,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2606; + this.state = 2602; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2607; + this.state = 2603; this.match(TrinoSqlParser.T__0); - this.state = 2608; + this.state = 2604; this.identifier(); - this.state = 2609; + this.state = 2605; this.match(TrinoSqlParser.KW_FROM); - this.state = 2610; + this.state = 2606; this.valueExpression(0); - this.state = 2611; + this.state = 2607; this.match(TrinoSqlParser.T__1); } break; @@ -10287,11 +10323,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2613; + this.state = 2609; this.match(TrinoSqlParser.T__0); - this.state = 2614; + this.state = 2610; this.expression(); - this.state = 2615; + this.state = 2611; this.match(TrinoSqlParser.T__1); } break; @@ -10300,37 +10336,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2617; + this.state = 2613; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2618; + this.state = 2614; this.match(TrinoSqlParser.T__0); - this.state = 2627; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2619; + this.state = 2615; this.qualifiedName(); - this.state = 2624; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2620; + this.state = 2616; this.match(TrinoSqlParser.T__2); - this.state = 2621; + this.state = 2617; this.qualifiedName(); } } - this.state = 2626; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2629; + this.state = 2625; this.match(TrinoSqlParser.T__1); } break; @@ -10339,27 +10375,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2630; + this.state = 2626; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2631; + this.state = 2627; this.match(TrinoSqlParser.T__0); - this.state = 2632; + this.state = 2628; this.jsonPathInvocation(); - this.state = 2637; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 89 || _la === 97 || _la === 273 || _la === 283) { { - this.state = 2633; + this.state = 2629; this.jsonExistsErrorBehavior(); - this.state = 2634; + this.state = 2630; this.match(TrinoSqlParser.KW_ON); - this.state = 2635; + this.state = 2631; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2639; + this.state = 2635; this.match(TrinoSqlParser.T__1); } break; @@ -10368,53 +10404,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2641; + this.state = 2637; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2642; + this.state = 2638; this.match(TrinoSqlParser.T__0); - this.state = 2643; + this.state = 2639; this.jsonPathInvocation(); - this.state = 2646; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2644; + this.state = 2640; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2645; + this.state = 2641; this.type_(0); } } - this.state = 2652; + this.state = 2648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2648; + this.state = 2644; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2649; + this.state = 2645; this.match(TrinoSqlParser.KW_ON); - this.state = 2650; + this.state = 2646; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2658; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 2654; + this.state = 2650; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2655; + this.state = 2651; this.match(TrinoSqlParser.KW_ON); - this.state = 2656; + this.state = 2652; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2660; + this.state = 2656; this.match(TrinoSqlParser.T__1); } break; @@ -10423,29 +10459,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2662; + this.state = 2658; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2663; + this.state = 2659; this.match(TrinoSqlParser.T__0); - this.state = 2664; + this.state = 2660; this.jsonPathInvocation(); - this.state = 2671; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2665; + this.state = 2661; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2666; + this.state = 2662; this.type_(0); - this.state = 2669; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2667; + this.state = 2663; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2668; + this.state = 2664; this.jsonRepresentation(); } } @@ -10453,24 +10489,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2676; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 2673; + this.state = 2669; this.jsonQueryWrapperBehavior(); - this.state = 2674; + this.state = 2670; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2685; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 2678; + this.state = 2674; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -10479,18 +10515,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2679; + this.state = 2675; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2683; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2680; + this.state = 2676; this.match(TrinoSqlParser.KW_ON); - this.state = 2681; + this.state = 2677; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2682; + this.state = 2678; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10498,35 +10534,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2691; + this.state = 2687; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: { - this.state = 2687; + this.state = 2683; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2688; + this.state = 2684; this.match(TrinoSqlParser.KW_ON); - this.state = 2689; + this.state = 2685; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2697; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 2693; + this.state = 2689; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2694; + this.state = 2690; this.match(TrinoSqlParser.KW_ON); - this.state = 2695; + this.state = 2691; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2699; + this.state = 2695; this.match(TrinoSqlParser.T__1); } break; @@ -10535,53 +10571,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2701; + this.state = 2697; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2702; + this.state = 2698; this.match(TrinoSqlParser.T__0); - this.state = 2731; + this.state = 2727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 2703; + this.state = 2699; this.jsonObjectMember(); - this.state = 2708; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2704; + this.state = 2700; this.match(TrinoSqlParser.T__2); - this.state = 2705; + this.state = 2701; this.jsonObjectMember(); } } - this.state = 2710; + this.state = 2706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2717; + this.state = 2713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2711; + this.state = 2707; this.match(TrinoSqlParser.KW_NULL); - this.state = 2712; + this.state = 2708; this.match(TrinoSqlParser.KW_ON); - this.state = 2713; + this.state = 2709; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2714; + this.state = 2710; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2715; + this.state = 2711; this.match(TrinoSqlParser.KW_ON); - this.state = 2716; + this.state = 2712; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10593,21 +10629,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2729; + this.state = 2725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2719; + this.state = 2715; this.match(TrinoSqlParser.KW_WITH); - this.state = 2720; + this.state = 2716; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2722; + this.state = 2718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2721; + this.state = 2717; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10616,16 +10652,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2724; + this.state = 2720; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2725; + this.state = 2721; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2727; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2726; + this.state = 2722; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10641,23 +10677,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2739; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2733; + this.state = 2729; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2734; + this.state = 2730; this.type_(0); - this.state = 2737; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2735; + this.state = 2731; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2736; + this.state = 2732; this.jsonRepresentation(); } } @@ -10665,7 +10701,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2741; + this.state = 2737; this.match(TrinoSqlParser.T__1); } break; @@ -10674,53 +10710,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2742; + this.state = 2738; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2743; + this.state = 2739; this.match(TrinoSqlParser.T__0); - this.state = 2760; + this.state = 2756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2744; + this.state = 2740; this.jsonValueExpression(); - this.state = 2749; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2745; + this.state = 2741; this.match(TrinoSqlParser.T__2); - this.state = 2746; + this.state = 2742; this.jsonValueExpression(); } } - this.state = 2751; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2758; + this.state = 2754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2752; + this.state = 2748; this.match(TrinoSqlParser.KW_NULL); - this.state = 2753; + this.state = 2749; this.match(TrinoSqlParser.KW_ON); - this.state = 2754; + this.state = 2750; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2755; + this.state = 2751; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2756; + this.state = 2752; this.match(TrinoSqlParser.KW_ON); - this.state = 2757; + this.state = 2753; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10733,23 +10769,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2768; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2762; + this.state = 2758; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2763; + this.state = 2759; this.type_(0); - this.state = 2766; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2764; + this.state = 2760; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2765; + this.state = 2761; this.jsonRepresentation(); } } @@ -10757,15 +10793,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2770; + this.state = 2766; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2783; + this.state = 2779; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10773,23 +10809,23 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2781; + this.state = 2777; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2773; + this.state = 2769; if (!(this.precpred(this.context, 24))) { throw this.createFailedPredicateException("this.precpred(this.context, 24)"); } - this.state = 2774; + this.state = 2770; this.match(TrinoSqlParser.T__7); - this.state = 2775; + this.state = 2771; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2776; + this.state = 2772; this.match(TrinoSqlParser.T__8); } break; @@ -10798,22 +10834,22 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2778; + this.state = 2774; if (!(this.precpred(this.context, 22))) { throw this.createFailedPredicateException("this.precpred(this.context, 22)"); } - this.state = 2779; + this.state = 2775; this.match(TrinoSqlParser.T__3); - this.state = 2780; + this.state = 2776; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2785; + this.state = 2781; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); } } } @@ -10833,51 +10869,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 146, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2786; + this.state = 2782; this.jsonValueExpression(); - this.state = 2787; + this.state = 2783; this.match(TrinoSqlParser.T__2); - this.state = 2788; + this.state = 2784; localContext._path = this.string_(); - this.state = 2791; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2789; + this.state = 2785; this.match(TrinoSqlParser.KW_AS); - this.state = 2790; + this.state = 2786; localContext._pathName = this.identifier(); } } - this.state = 2802; + this.state = 2798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2793; + this.state = 2789; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2794; + this.state = 2790; this.jsonArgument(); - this.state = 2799; + this.state = 2795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2795; + this.state = 2791; this.match(TrinoSqlParser.T__2); - this.state = 2796; + this.state = 2792; this.jsonArgument(); } } - this.state = 2801; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10902,21 +10938,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 148, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2804; + this.state = 2800; this.expression(); - this.state = 2807; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2805; + this.state = 2801; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2806; + this.state = 2802; this.jsonRepresentation(); } } @@ -10939,21 +10975,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 150, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2809; + this.state = 2805; this.match(TrinoSqlParser.KW_JSON); - this.state = 2812; + this.state = 2808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 2810; + this.state = 2806; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2811; + this.state = 2807; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10983,15 +11019,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2814; + this.state = 2810; this.jsonValueExpression(); - this.state = 2815; + this.state = 2811; this.match(TrinoSqlParser.KW_AS); - this.state = 2816; + this.state = 2812; this.identifier(); } } @@ -11011,12 +11047,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2818; + this.state = 2814; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 97 || _la === 273 || _la === 283)) { this.errorHandler.recoverInline(this); @@ -11043,31 +11079,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2824; + this.state = 2820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2820; + this.state = 2816; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2821; + this.state = 2817; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2818; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2823; + this.state = 2819; this.expression(); } break; @@ -11091,23 +11127,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2837; + this.state = 2833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2826; + this.state = 2822; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2828; + this.state = 2824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2827; + this.state = 2823; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11117,14 +11153,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2830; + this.state = 2826; this.match(TrinoSqlParser.KW_WITH); - this.state = 2832; + this.state = 2828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 49 || _la === 280) { { - this.state = 2831; + this.state = 2827; _la = this.tokenStream.LA(1); if(!(_la === 49 || _la === 280)) { this.errorHandler.recoverInline(this); @@ -11136,12 +11172,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2835; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2834; + this.state = 2830; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11168,40 +11204,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2845; + this.state = 2841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2839; + this.state = 2835; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2840; + this.state = 2836; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2841; + this.state = 2837; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2842; + this.state = 2838; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2843; + this.state = 2839; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2844; + this.state = 2840; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11223,40 +11259,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2858; + this.state = 2854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2848; + this.state = 2844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 2847; + this.state = 2843; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2850; + this.state = 2846; this.expression(); - this.state = 2851; + this.state = 2847; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2852; + this.state = 2848; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2854; + this.state = 2850; this.expression(); - this.state = 2855; + this.state = 2851; this.match(TrinoSqlParser.T__9); - this.state = 2856; + this.state = 2852; this.jsonValueExpression(); } break; @@ -11278,12 +11314,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2860; + this.state = 2856; _la = this.tokenStream.LA(1); if(!(_la === 100 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -11310,26 +11346,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2866; + this.state = 2862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2858; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2863; + this.state = 2859; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2864; + this.state = 2860; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2865; + this.state = 2861; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11353,16 +11389,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_string); try { - this.state = 2874; + this.state = 2870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2864; this.match(TrinoSqlParser.STRING); } break; @@ -11370,16 +11406,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2869; + this.state = 2865; this.match(TrinoSqlParser.UNICODE_STRING); - this.state = 2872; + this.state = 2868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2870; + this.state = 2866; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2871; + this.state = 2867; this.match(TrinoSqlParser.STRING); } break; @@ -11406,20 +11442,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2882; + this.state = 2878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2876; + this.state = 2872; this.match(TrinoSqlParser.KW_TIME); - this.state = 2877; + this.state = 2873; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2878; + this.state = 2874; this.interval(); } break; @@ -11427,11 +11463,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2875; this.match(TrinoSqlParser.KW_TIME); - this.state = 2880; + this.state = 2876; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2881; + this.state = 2877; this.string_(); } break; @@ -11453,12 +11489,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2884; + this.state = 2880; _la = this.tokenStream.LA(1); if(!(((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11485,12 +11521,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2886; + this.state = 2882; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11517,12 +11553,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2888; + this.state = 2884; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 273)) { this.errorHandler.recoverInline(this); @@ -11549,19 +11585,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2890; + this.state = 2886; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2892; + this.state = 2888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 318 || _la === 319) { { - this.state = 2891; + this.state = 2887; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -11574,18 +11610,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2894; + this.state = 2890; this.string_(); - this.state = 2895; + this.state = 2891; localContext._from_ = this.intervalField(); - this.state = 2898; + this.state = 2894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2896; + this.state = 2892; this.match(TrinoSqlParser.KW_TO); - this.state = 2897; + this.state = 2893; localContext._to = this.intervalField(); } break; @@ -11608,12 +11644,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 186, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2900; + this.state = 2896; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 118 || _la === 170 || _la === 171 || _la === 245 || _la === 310)) { this.errorHandler.recoverInline(this); @@ -11640,12 +11676,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2902; + this.state = 2898; _la = this.tokenStream.LA(1); if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11682,45 +11718,45 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 184; - this.enterRecursionRule(localContext, 184, TrinoSqlParser.RULE_type, _p); + let _startState = 190; + this.enterRecursionRule(localContext, 190, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2975; + this.state = 2971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { localContext = new RowTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2905; + this.state = 2901; this.match(TrinoSqlParser.KW_ROW); - this.state = 2906; + this.state = 2902; this.match(TrinoSqlParser.T__0); - this.state = 2907; + this.state = 2903; this.rowField(); - this.state = 2912; + this.state = 2908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2908; + this.state = 2904; this.match(TrinoSqlParser.T__2); - this.state = 2909; + this.state = 2905; this.rowField(); } } - this.state = 2914; + this.state = 2910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2915; + this.state = 2911; this.match(TrinoSqlParser.T__1); } break; @@ -11729,18 +11765,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2917; + this.state = 2913; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2918; + this.state = 2914; (localContext as IntervalTypeContext)._from_ = this.intervalField(); - this.state = 2921; + this.state = 2917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2919; + this.state = 2915; this.match(TrinoSqlParser.KW_TO); - this.state = 2920; + this.state = 2916; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11752,28 +11788,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2923; + this.state = 2919; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2928; + this.state = 2924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2924; + this.state = 2920; this.match(TrinoSqlParser.T__0); - this.state = 2925; + this.state = 2921; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2926; + this.state = 2922; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2933; + this.state = 2929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2930; + this.state = 2926; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11782,9 +11818,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2931; + this.state = 2927; this.match(TrinoSqlParser.KW_TIME); - this.state = 2932; + this.state = 2928; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11796,28 +11832,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2935; + this.state = 2931; (localContext as TimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2940; + this.state = 2936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2936; + this.state = 2932; this.match(TrinoSqlParser.T__0); - this.state = 2937; + this.state = 2933; (localContext as TimeTypeContext)._precision = this.typeParameter(); - this.state = 2938; + this.state = 2934; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2945; + this.state = 2941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2942; + this.state = 2938; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11826,9 +11862,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2943; + this.state = 2939; this.match(TrinoSqlParser.KW_TIME); - this.state = 2944; + this.state = 2940; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11840,9 +11876,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2947; + this.state = 2943; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2948; + this.state = 2944; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -11851,13 +11887,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2949; + this.state = 2945; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2950; + this.state = 2946; this.match(TrinoSqlParser.LT); - this.state = 2951; + this.state = 2947; this.type_(0); - this.state = 2952; + this.state = 2948; this.match(TrinoSqlParser.GT); } break; @@ -11866,17 +11902,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2954; + this.state = 2950; this.match(TrinoSqlParser.KW_MAP); - this.state = 2955; + this.state = 2951; this.match(TrinoSqlParser.LT); - this.state = 2956; + this.state = 2952; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2957; + this.state = 2953; this.match(TrinoSqlParser.T__2); - this.state = 2958; + this.state = 2954; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2959; + this.state = 2955; this.match(TrinoSqlParser.GT); } break; @@ -11885,34 +11921,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2961; + this.state = 2957; this.identifier(); - this.state = 2973; + this.state = 2969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2962; + this.state = 2958; this.match(TrinoSqlParser.T__0); - this.state = 2963; + this.state = 2959; this.typeParameter(); - this.state = 2968; + this.state = 2964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2964; + this.state = 2960; this.match(TrinoSqlParser.T__2); - this.state = 2965; + this.state = 2961; this.typeParameter(); } } - this.state = 2970; + this.state = 2966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2971; + this.state = 2967; this.match(TrinoSqlParser.T__1); } break; @@ -11921,9 +11957,9 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2986; + this.state = 2982; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11934,22 +11970,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 2977; + this.state = 2973; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2978; + this.state = 2974; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2982; + this.state = 2978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 2979; + this.state = 2975; this.match(TrinoSqlParser.T__7); - this.state = 2980; + this.state = 2976; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2981; + this.state = 2977; this.match(TrinoSqlParser.T__8); } break; @@ -11957,9 +11993,9 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 2988; + this.state = 2984; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); } } } @@ -11979,24 +12015,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 186, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_rowField); try { - this.state = 2993; + this.state = 2989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2985; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2990; + this.state = 2986; this.identifier(); - this.state = 2991; + this.state = 2987; this.type_(0); } break; @@ -12018,15 +12054,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_typeParameter); try { - this.state = 2997; + this.state = 2993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 2991; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12249,7 +12285,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2996; + this.state = 2992; this.type_(0); } break; @@ -12273,17 +12309,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 190, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 196, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2999; + this.state = 2995; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3000; + this.state = 2996; localContext._condition = this.expression(); - this.state = 3001; + this.state = 2997; this.match(TrinoSqlParser.KW_THEN); - this.state = 3002; + this.state = 2998; localContext._result = this.expression(); } } @@ -12303,19 +12339,17 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3004; + this.state = 3000; this.match(TrinoSqlParser.KW_FILTER); - this.state = 3005; + this.state = 3001; this.match(TrinoSqlParser.T__0); - this.state = 3006; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 3007; - this.booleanExpression(0); - this.state = 3008; + this.state = 3002; + this.whereClause(); + this.state = 3003; this.match(TrinoSqlParser.T__1); } } @@ -12335,65 +12369,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3074; + this.state = 3069; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3010; + this.state = 3005; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3011; + this.state = 3006; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3014; + this.state = 3009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3012; + this.state = 3007; this.match(TrinoSqlParser.KW_AND); - this.state = 3013; + this.state = 3008; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3016; + this.state = 3011; this.match(TrinoSqlParser.KW_THEN); - this.state = 3017; + this.state = 3012; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3018; + this.state = 3013; this.match(TrinoSqlParser.KW_SET); - this.state = 3019; + this.state = 3014; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3020; + this.state = 3015; this.match(TrinoSqlParser.EQ); - this.state = 3021; + this.state = 3016; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3029; + this.state = 3024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3022; + this.state = 3017; this.match(TrinoSqlParser.T__2); - this.state = 3023; + this.state = 3018; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3024; + this.state = 3019; this.match(TrinoSqlParser.EQ); - this.state = 3025; + this.state = 3020; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3031; + this.state = 3026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12403,25 +12437,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3032; + this.state = 3027; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3033; + this.state = 3028; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3036; + this.state = 3031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3034; + this.state = 3029; this.match(TrinoSqlParser.KW_AND); - this.state = 3035; + this.state = 3030; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3038; + this.state = 3033; this.match(TrinoSqlParser.KW_THEN); - this.state = 3039; + this.state = 3034; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12429,85 +12463,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3040; + this.state = 3035; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3041; + this.state = 3036; this.match(TrinoSqlParser.KW_NOT); - this.state = 3042; + this.state = 3037; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3045; + this.state = 3040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3043; + this.state = 3038; this.match(TrinoSqlParser.KW_AND); - this.state = 3044; + this.state = 3039; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3047; + this.state = 3042; this.match(TrinoSqlParser.KW_THEN); - this.state = 3048; + this.state = 3043; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3060; + this.state = 3055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3049; + this.state = 3044; this.match(TrinoSqlParser.T__0); - this.state = 3050; + this.state = 3045; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3055; + this.state = 3050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3051; + this.state = 3046; this.match(TrinoSqlParser.T__2); - this.state = 3052; + this.state = 3047; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3057; + this.state = 3052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3058; + this.state = 3053; this.match(TrinoSqlParser.T__1); } } - this.state = 3062; + this.state = 3057; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3063; + this.state = 3058; this.match(TrinoSqlParser.T__0); - this.state = 3064; + this.state = 3059; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3069; + this.state = 3064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3065; + this.state = 3060; this.match(TrinoSqlParser.T__2); - this.state = 3066; + this.state = 3061; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3071; + this.state = 3066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3072; + this.state = 3067; this.match(TrinoSqlParser.T__1); } break; @@ -12529,13 +12563,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 202, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3076; + this.state = 3071; this.match(TrinoSqlParser.KW_OVER); - this.state = 3082; + this.state = 3077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12756,17 +12790,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3077; + this.state = 3072; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3078; + this.state = 3073; this.match(TrinoSqlParser.T__0); - this.state = 3079; + this.state = 3074; this.windowSpecification(); - this.state = 3080; + this.state = 3075; this.match(TrinoSqlParser.T__1); } break; @@ -12791,61 +12825,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3093; + this.state = 3088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 3084; + this.state = 3079; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3085; + this.state = 3080; this.measureDefinition(); - this.state = 3090; + this.state = 3085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3086; + this.state = 3081; this.match(TrinoSqlParser.T__2); - this.state = 3087; + this.state = 3082; this.measureDefinition(); } } - this.state = 3092; + this.state = 3087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3095; + this.state = 3090; this.frameExtent(); - this.state = 3099; + this.state = 3094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3096; + this.state = 3091; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3097; + this.state = 3092; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3098; + this.state = 3093; this.skipTo(); } } - this.state = 3102; + this.state = 3097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 3101; + this.state = 3096; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -12857,72 +12891,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3109; + this.state = 3104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3104; + this.state = 3099; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3105; + this.state = 3100; this.match(TrinoSqlParser.T__0); - this.state = 3106; + this.state = 3101; this.rowPattern(0); - this.state = 3107; + this.state = 3102; this.match(TrinoSqlParser.T__1); } } - this.state = 3120; + this.state = 3115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 3111; + this.state = 3106; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3112; + this.state = 3107; this.subsetDefinition(); - this.state = 3117; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3113; + this.state = 3108; this.match(TrinoSqlParser.T__2); - this.state = 3114; + this.state = 3109; this.subsetDefinition(); } } - this.state = 3119; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3131; + this.state = 3126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3122; + this.state = 3117; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3123; + this.state = 3118; this.variableDefinition(); - this.state = 3128; + this.state = 3123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3124; + this.state = 3119; this.match(TrinoSqlParser.T__2); - this.state = 3125; + this.state = 3120; this.variableDefinition(); } } - this.state = 3130; + this.state = 3125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12947,80 +12981,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 206, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3157; + this.state = 3152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3133; + this.state = 3128; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3134; + this.state = 3129; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3135; + this.state = 3130; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3136; + this.state = 3131; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3137; + this.state = 3132; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3138; + this.state = 3133; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3139; + this.state = 3134; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3140; + this.state = 3135; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3141; + this.state = 3136; localContext._start = this.frameBound(); - this.state = 3142; + this.state = 3137; this.match(TrinoSqlParser.KW_AND); - this.state = 3143; + this.state = 3138; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3145; + this.state = 3140; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3146; + this.state = 3141; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3147; + this.state = 3142; localContext._start = this.frameBound(); - this.state = 3148; + this.state = 3143; this.match(TrinoSqlParser.KW_AND); - this.state = 3149; + this.state = 3144; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3151; + this.state = 3146; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3152; + this.state = 3147; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3153; + this.state = 3148; localContext._start = this.frameBound(); - this.state = 3154; + this.state = 3149; this.match(TrinoSqlParser.KW_AND); - this.state = 3155; + this.state = 3150; localContext._end = this.frameBound(); } break; @@ -13042,19 +13076,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 202, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3168; + this.state = 3163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3159; + this.state = 3154; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3160; + this.state = 3155; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13062,9 +13096,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3161; + this.state = 3156; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3162; + this.state = 3157; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13072,9 +13106,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3163; + this.state = 3158; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3164; + this.state = 3159; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13082,9 +13116,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3165; + this.state = 3160; this.expression(); - this.state = 3166; + this.state = 3161; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 212)) { @@ -13124,8 +13158,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 204; - this.enterRecursionRule(localContext, 204, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 210; + this.enterRecursionRule(localContext, 210, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13135,23 +13169,23 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3171; + this.state = 3166; this.patternPrimary(); - this.state = 3173; + this.state = 3168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { case 1: { - this.state = 3172; + this.state = 3167; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3182; + this.state = 3177; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13159,18 +13193,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3180; + this.state = 3175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3175; + this.state = 3170; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3176; + this.state = 3171; this.rowPattern(3); } break; @@ -13178,22 +13212,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3177; + this.state = 3172; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3178; + this.state = 3173; this.match(TrinoSqlParser.T__10); - this.state = 3179; + this.state = 3174; this.rowPattern(2); } break; } } } - this.state = 3184; + this.state = 3179; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); } } } @@ -13213,17 +13247,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 206, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3210; + this.state = 3205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3180; this.identifier(); } break; @@ -13231,9 +13265,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3186; + this.state = 3181; this.match(TrinoSqlParser.T__0); - this.state = 3187; + this.state = 3182; this.match(TrinoSqlParser.T__1); } break; @@ -13241,29 +13275,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3188; + this.state = 3183; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3189; + this.state = 3184; this.match(TrinoSqlParser.T__0); - this.state = 3190; + this.state = 3185; this.rowPattern(0); - this.state = 3195; + this.state = 3190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3191; + this.state = 3186; this.match(TrinoSqlParser.T__2); - this.state = 3192; + this.state = 3187; this.rowPattern(0); } } - this.state = 3197; + this.state = 3192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3198; + this.state = 3193; this.match(TrinoSqlParser.T__1); } break; @@ -13271,11 +13305,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3200; + this.state = 3195; this.match(TrinoSqlParser.T__0); - this.state = 3201; + this.state = 3196; this.rowPattern(0); - this.state = 3202; + this.state = 3197; this.match(TrinoSqlParser.T__1); } break; @@ -13283,7 +13317,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3204; + this.state = 3199; this.match(TrinoSqlParser.T__11); } break; @@ -13291,7 +13325,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3205; + this.state = 3200; this.match(TrinoSqlParser.T__12); } break; @@ -13299,11 +13333,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3206; + this.state = 3201; this.match(TrinoSqlParser.T__13); - this.state = 3207; + this.state = 3202; this.rowPattern(0); - this.state = 3208; + this.state = 3203; this.match(TrinoSqlParser.T__14); } break; @@ -13325,24 +13359,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3242; + this.state = 3237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3207; this.match(TrinoSqlParser.ASTERISK); - this.state = 3214; + this.state = 3209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 3213; + this.state = 3208; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13353,14 +13387,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3216; + this.state = 3211; this.match(TrinoSqlParser.PLUS); - this.state = 3218; + this.state = 3213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3217; + this.state = 3212; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13371,14 +13405,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3220; + this.state = 3215; this.match(TrinoSqlParser.QUESTION_MARK); - this.state = 3222; + this.state = 3217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3221; + this.state = 3216; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13389,18 +13423,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3224; + this.state = 3219; this.match(TrinoSqlParser.T__15); - this.state = 3225; + this.state = 3220; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3226; + this.state = 3221; this.match(TrinoSqlParser.T__16); - this.state = 3228; + this.state = 3223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3227; + this.state = 3222; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13411,38 +13445,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3230; + this.state = 3225; this.match(TrinoSqlParser.T__15); - this.state = 3232; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3231; + this.state = 3226; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3234; + this.state = 3229; this.match(TrinoSqlParser.T__2); - this.state = 3236; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3235; + this.state = 3230; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3238; + this.state = 3233; this.match(TrinoSqlParser.T__16); - this.state = 3240; + this.state = 3235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3239; + this.state = 3234; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13467,15 +13501,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 210, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 216, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3244; + this.state = 3239; this.identifier(); - this.state = 3245; + this.state = 3240; this.match(TrinoSqlParser.EQ); - this.state = 3246; + this.state = 3241; this.expression(); } } @@ -13495,19 +13529,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3252; + this.state = 3247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3248; + this.state = 3243; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3249; + this.state = 3244; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 137 || _la === 263)) { @@ -13523,9 +13557,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3250; + this.state = 3245; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3251; + this.state = 3246; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 132 || _la === 160 || _la === 294)) { @@ -13557,21 +13591,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3259; + this.state = 3254; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3254; + this.state = 3249; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3255; + this.state = 3250; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3256; + this.state = 3251; this.levelOfIsolation(); } break; @@ -13579,9 +13613,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3257; + this.state = 3252; this.match(TrinoSqlParser.KW_READ); - this.state = 3258; + this.state = 3253; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 309)) { @@ -13613,18 +13647,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 222, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3268; + this.state = 3263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3261; + this.state = 3256; this.match(TrinoSqlParser.KW_READ); - this.state = 3262; + this.state = 3257; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13632,9 +13666,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3263; + this.state = 3258; this.match(TrinoSqlParser.KW_READ); - this.state = 3264; + this.state = 3259; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13642,9 +13676,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3265; + this.state = 3260; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3266; + this.state = 3261; this.match(TrinoSqlParser.KW_READ); } break; @@ -13652,7 +13686,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3267; + this.state = 3262; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13674,16 +13708,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_callArgument); try { - this.state = 3275; + this.state = 3270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3270; + this.state = 3265; this.expression(); } break; @@ -13691,11 +13725,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3271; + this.state = 3266; this.identifier(); - this.state = 3272; + this.state = 3267; this.match(TrinoSqlParser.T__5); - this.state = 3273; + this.state = 3268; this.expression(); } break; @@ -13717,20 +13751,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 226, TrinoSqlParser.RULE_pathElement); try { - this.state = 3282; + this.state = 3277; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3277; + this.state = 3272; this.identifier(); - this.state = 3278; + this.state = 3273; this.match(TrinoSqlParser.T__3); - this.state = 3279; + this.state = 3274; this.identifier(); } break; @@ -13738,7 +13772,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3281; + this.state = 3276; this.identifier(); } break; @@ -13760,26 +13794,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 222, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3284; + this.state = 3279; this.pathElement(); - this.state = 3289; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3285; + this.state = 3280; this.match(TrinoSqlParser.T__2); - this.state = 3286; + this.state = 3281; this.pathElement(); } } - this.state = 3291; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13801,34 +13835,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3292; + this.state = 3287; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3293; + this.state = 3288; this.functionDeclaration(); - this.state = 3294; + this.state = 3289; this.returnsClause(); - this.state = 3298; + this.state = 3293; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3295; + this.state = 3290; this.routineCharacteristic(); } } } - this.state = 3300; + this.state = 3295; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); } - this.state = 3301; + this.state = 3296; this.controlStatement(); } } @@ -13848,42 +13882,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3303; + this.state = 3298; this.functionNameCreate(); - this.state = 3304; + this.state = 3299; this.match(TrinoSqlParser.T__0); - this.state = 3313; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3305; + this.state = 3300; this.parameterDeclaration(); - this.state = 3310; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3306; + this.state = 3301; this.match(TrinoSqlParser.T__2); - this.state = 3307; + this.state = 3302; this.parameterDeclaration(); } } - this.state = 3312; + this.state = 3307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3315; + this.state = 3310; this.match(TrinoSqlParser.T__1); } } @@ -13903,42 +13937,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3317; + this.state = 3312; this.functionName(); - this.state = 3318; + this.state = 3313; this.match(TrinoSqlParser.T__0); - this.state = 3327; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3319; + this.state = 3314; this.parameterDeclaration(); - this.state = 3324; + this.state = 3319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3320; + this.state = 3315; this.match(TrinoSqlParser.T__2); - this.state = 3321; + this.state = 3316; this.parameterDeclaration(); } } - this.state = 3326; + this.state = 3321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3329; + this.state = 3324; this.match(TrinoSqlParser.T__1); } } @@ -13958,21 +13992,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3332; + this.state = 3327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3331; + this.state = 3326; this.identifier(); } break; } - this.state = 3334; + this.state = 3329; this.type_(0); } } @@ -13992,13 +14026,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3331; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3337; + this.state = 3332; this.type_(0); } } @@ -14018,19 +14052,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3358; + this.state = 3353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3334; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3340; + this.state = 3335; this.identifier(); } break; @@ -14039,17 +14073,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3342; + this.state = 3337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 3341; + this.state = 3336; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3344; + this.state = 3339; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14057,15 +14091,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3345; + this.state = 3340; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3346; + this.state = 3341; this.match(TrinoSqlParser.KW_NULL); - this.state = 3347; + this.state = 3342; this.match(TrinoSqlParser.KW_ON); - this.state = 3348; + this.state = 3343; this.match(TrinoSqlParser.KW_NULL); - this.state = 3349; + this.state = 3344; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14073,13 +14107,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3350; + this.state = 3345; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3351; + this.state = 3346; this.match(TrinoSqlParser.KW_ON); - this.state = 3352; + this.state = 3347; this.match(TrinoSqlParser.KW_NULL); - this.state = 3353; + this.state = 3348; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14087,9 +14121,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3354; + this.state = 3349; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3355; + this.state = 3350; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -14104,9 +14138,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3356; + this.state = 3351; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3357; + this.state = 3352; this.string_(); } break; @@ -14130,20 +14164,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3459; + this.state = 3454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3360; + this.state = 3355; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3361; + this.state = 3356; this.valueExpression(0); } break; @@ -14151,13 +14185,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3362; + this.state = 3357; this.match(TrinoSqlParser.KW_SET); - this.state = 3363; + this.state = 3358; this.identifier(); - this.state = 3364; + this.state = 3359; this.match(TrinoSqlParser.EQ); - this.state = 3365; + this.state = 3360; this.expression(); } break; @@ -14165,37 +14199,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3367; + this.state = 3362; this.match(TrinoSqlParser.KW_CASE); - this.state = 3368; + this.state = 3363; this.expression(); - this.state = 3370; + this.state = 3365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3369; + this.state = 3364; this.caseStatementWhenClause(); } } - this.state = 3372; + this.state = 3367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3375; + this.state = 3370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3374; + this.state = 3369; this.elseClause(); } } - this.state = 3377; + this.state = 3372; this.match(TrinoSqlParser.KW_END); - this.state = 3378; + this.state = 3373; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14203,35 +14237,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3380; + this.state = 3375; this.match(TrinoSqlParser.KW_CASE); - this.state = 3382; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3381; + this.state = 3376; this.caseStatementWhenClause(); } } - this.state = 3384; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3387; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3386; + this.state = 3381; this.elseClause(); } } - this.state = 3389; + this.state = 3384; this.match(TrinoSqlParser.KW_END); - this.state = 3390; + this.state = 3385; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14239,41 +14273,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3392; + this.state = 3387; this.match(TrinoSqlParser.KW_IF); - this.state = 3393; + this.state = 3388; this.expression(); - this.state = 3394; + this.state = 3389; this.match(TrinoSqlParser.KW_THEN); - this.state = 3395; + this.state = 3390; this.sqlStatementList(); - this.state = 3399; + this.state = 3394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 86) { { { - this.state = 3396; + this.state = 3391; this.elseIfClause(); } } - this.state = 3401; + this.state = 3396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3403; + this.state = 3398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3402; + this.state = 3397; this.elseClause(); } } - this.state = 3405; + this.state = 3400; this.match(TrinoSqlParser.KW_END); - this.state = 3406; + this.state = 3401; this.match(TrinoSqlParser.KW_IF); } break; @@ -14281,9 +14315,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3408; + this.state = 3403; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3409; + this.state = 3404; this.identifier(); } break; @@ -14291,9 +14325,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3410; + this.state = 3405; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3411; + this.state = 3406; this.identifier(); } break; @@ -14301,37 +14335,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3412; + this.state = 3407; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3418; + this.state = 3413; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3413; + this.state = 3408; this.variableDeclaration(); - this.state = 3414; + this.state = 3409; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3420; + this.state = 3415; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); } - this.state = 3422; + this.state = 3417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3421; + this.state = 3416; this.sqlStatementList(); } } - this.state = 3424; + this.state = 3419; this.match(TrinoSqlParser.KW_END); } break; @@ -14339,25 +14373,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3428; + this.state = 3423; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3425; + this.state = 3420; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3426; + this.state = 3421; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3430; + this.state = 3425; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3431; + this.state = 3426; this.sqlStatementList(); - this.state = 3432; + this.state = 3427; this.match(TrinoSqlParser.KW_END); - this.state = 3433; + this.state = 3428; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14365,29 +14399,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3438; + this.state = 3433; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3435; + this.state = 3430; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3436; + this.state = 3431; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3440; + this.state = 3435; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3441; + this.state = 3436; this.expression(); - this.state = 3442; + this.state = 3437; this.match(TrinoSqlParser.KW_DO); - this.state = 3443; + this.state = 3438; this.sqlStatementList(); - this.state = 3444; + this.state = 3439; this.match(TrinoSqlParser.KW_END); - this.state = 3445; + this.state = 3440; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14395,29 +14429,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3450; + this.state = 3445; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3447; + this.state = 3442; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3448; + this.state = 3443; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3452; + this.state = 3447; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3453; + this.state = 3448; this.sqlStatementList(); - this.state = 3454; + this.state = 3449; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3455; + this.state = 3450; this.expression(); - this.state = 3456; + this.state = 3451; this.match(TrinoSqlParser.KW_END); - this.state = 3457; + this.state = 3452; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14439,17 +14473,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3456; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3462; + this.state = 3457; this.expression(); - this.state = 3463; + this.state = 3458; this.match(TrinoSqlParser.KW_THEN); - this.state = 3464; + this.state = 3459; this.sqlStatementList(); } } @@ -14469,17 +14503,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3466; + this.state = 3461; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3467; + this.state = 3462; this.expression(); - this.state = 3468; + this.state = 3463; this.match(TrinoSqlParser.KW_THEN); - this.state = 3469; + this.state = 3464; this.sqlStatementList(); } } @@ -14499,13 +14533,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3466; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3472; + this.state = 3467; this.sqlStatementList(); } } @@ -14525,41 +14559,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3474; + this.state = 3469; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3475; + this.state = 3470; this.identifier(); - this.state = 3480; + this.state = 3475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3476; + this.state = 3471; this.match(TrinoSqlParser.T__2); - this.state = 3477; + this.state = 3472; this.identifier(); } } - this.state = 3482; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3483; + this.state = 3478; this.type_(0); - this.state = 3486; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 3484; + this.state = 3479; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3485; + this.state = 3480; this.valueExpression(0); } } @@ -14582,12 +14616,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3486; this.errorHandler.sync(this); alternative = 1; do { @@ -14595,9 +14629,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3488; + this.state = 3483; this.controlStatement(); - this.state = 3489; + this.state = 3484; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14605,9 +14639,9 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3493; + this.state = 3488; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -14627,50 +14661,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_privilege); try { - this.state = 3501; + this.state = 3496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3495; + this.state = 3490; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3496; + this.state = 3491; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3497; + this.state = 3492; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3498; + this.state = 3493; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3499; + this.state = 3494; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3500; + this.state = 3495; this.identifier(); } break; @@ -14692,29 +14726,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_entityKind); try { - this.state = 3506; + this.state = 3501; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3503; + this.state = 3498; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3504; + this.state = 3499; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3505; + this.state = 3500; this.identifier(); } break; @@ -14736,21 +14770,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3509; + this.state = 3504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3508; + this.state = 3503; this.entityKind(); } break; } - this.state = 3511; + this.state = 3506; this.qualifiedName(); } } @@ -14770,22 +14804,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3515; + this.state = 3510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3513; + this.state = 3508; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3514; + this.state = 3509; this.viewRef(); } break; @@ -14807,41 +14841,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_tableRef); try { - this.state = 3528; + this.state = 3523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3512; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3518; + this.state = 3513; localContext._schema = this.identifier(); - this.state = 3519; + this.state = 3514; this.match(TrinoSqlParser.T__3); - this.state = 3520; + this.state = 3515; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3522; + this.state = 3517; localContext._catalog = this.identifier(); - this.state = 3523; + this.state = 3518; this.match(TrinoSqlParser.T__3); - this.state = 3524; + this.state = 3519; localContext._schema = this.identifier(); - this.state = 3525; + this.state = 3520; this.match(TrinoSqlParser.T__3); - this.state = 3526; + this.state = 3521; localContext._table = this.identifier(); } break; @@ -14863,41 +14897,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3541; + this.state = 3536; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3530; + this.state = 3525; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3531; + this.state = 3526; localContext._schema = this.identifier(); - this.state = 3532; + this.state = 3527; this.match(TrinoSqlParser.T__3); - this.state = 3533; + this.state = 3528; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3535; + this.state = 3530; localContext._catalog = this.identifier(); - this.state = 3536; + this.state = 3531; this.match(TrinoSqlParser.T__3); - this.state = 3537; + this.state = 3532; localContext._schema = this.identifier(); - this.state = 3538; + this.state = 3533; this.match(TrinoSqlParser.T__3); - this.state = 3539; + this.state = 3534; localContext._table = this.identifier(); } break; @@ -14919,41 +14953,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_viewRef); try { - this.state = 3554; + this.state = 3549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3543; + this.state = 3538; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3544; + this.state = 3539; localContext._schema = this.identifier(); - this.state = 3545; + this.state = 3540; this.match(TrinoSqlParser.T__3); - this.state = 3546; + this.state = 3541; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3548; + this.state = 3543; localContext._catalog = this.identifier(); - this.state = 3549; + this.state = 3544; this.match(TrinoSqlParser.T__3); - this.state = 3550; + this.state = 3545; localContext._schema = this.identifier(); - this.state = 3551; + this.state = 3546; this.match(TrinoSqlParser.T__3); - this.state = 3552; + this.state = 3547; localContext._view = this.identifier(); } break; @@ -14975,41 +15009,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3567; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3556; + this.state = 3551; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3557; + this.state = 3552; localContext._schema = this.identifier(); - this.state = 3558; + this.state = 3553; this.match(TrinoSqlParser.T__3); - this.state = 3559; + this.state = 3554; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3561; + this.state = 3556; localContext._catalog = this.identifier(); - this.state = 3562; + this.state = 3557; this.match(TrinoSqlParser.T__3); - this.state = 3563; + this.state = 3558; localContext._schema = this.identifier(); - this.state = 3564; + this.state = 3559; this.match(TrinoSqlParser.T__3); - this.state = 3565; + this.state = 3560; localContext._view = this.identifier(); } break; @@ -15031,26 +15065,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3574; + this.state = 3569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3569; + this.state = 3564; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3570; + this.state = 3565; localContext._catalog = this.identifier(); - this.state = 3571; + this.state = 3566; this.match(TrinoSqlParser.T__3); - this.state = 3572; + this.state = 3567; localContext._schema = this.identifier(); } break; @@ -15072,26 +15106,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3581; + this.state = 3576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3571; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3577; + this.state = 3572; localContext._catalog = this.identifier(); - this.state = 3578; + this.state = 3573; this.match(TrinoSqlParser.T__3); - this.state = 3579; + this.state = 3574; localContext._schema = this.identifier(); } break; @@ -15113,11 +15147,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; + this.state = 3578; localContext._catalog = this.identifier(); } } @@ -15137,11 +15171,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3585; + this.state = 3580; localContext._catalog = this.identifier(); } } @@ -15161,11 +15195,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3582; this.qualifiedName(); } } @@ -15185,11 +15219,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3584; this.qualifiedName(); } } @@ -15209,22 +15243,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_columnRef); try { - this.state = 3593; + this.state = 3588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3586; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3587; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15246,13 +15280,37 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public columnName(): ColumnNameContext { + let localContext = new ColumnNameContext(this.context, this.state); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3590; + this.qualifiedName(); + } + } + 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 columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3592; this.identifier(); } } @@ -15272,30 +15330,30 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3597; + this.state = 3594; this.identifier(); - this.state = 3602; + this.state = 3599; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 465, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3598; + this.state = 3595; this.match(TrinoSqlParser.T__3); - this.state = 3599; + this.state = 3596; this.identifier(); } } } - this.state = 3604; + this.state = 3601; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 465, this.context); } } } @@ -15315,19 +15373,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3602; this.match(TrinoSqlParser.KW_FOR); - this.state = 3606; + this.state = 3603; this.rangeType(); - this.state = 3607; + this.state = 3604; this.match(TrinoSqlParser.KW_AS); - this.state = 3608; + this.state = 3605; this.match(TrinoSqlParser.KW_OF); - this.state = 3609; + this.state = 3606; localContext._end = this.valueExpression(0); } } @@ -15347,12 +15405,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3608; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -15379,9 +15437,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_grantor); try { - this.state = 3616; + this.state = 3613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15604,7 +15662,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3610; this.principal(); } break; @@ -15612,7 +15670,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3614; + this.state = 3611; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15620,7 +15678,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3615; + this.state = 3612; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15644,16 +15702,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_principal); try { - this.state = 3623; + this.state = 3620; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3615; this.identifier(); } break; @@ -15661,9 +15719,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3619; + this.state = 3616; this.match(TrinoSqlParser.KW_USER); - this.state = 3620; + this.state = 3617; this.identifier(); } break; @@ -15671,9 +15729,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3621; + this.state = 3618; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3622; + this.state = 3619; this.identifier(); } break; @@ -15695,26 +15753,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3622; this.identifier(); - this.state = 3630; + this.state = 3627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3626; + this.state = 3623; this.match(TrinoSqlParser.T__2); - this.state = 3627; + this.state = 3624; this.identifier(); } } - this.state = 3632; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15736,57 +15794,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3640; + this.state = 3637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3633; + this.state = 3630; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3634; + this.state = 3631; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3635; + this.state = 3632; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3636; + this.state = 3633; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3637; + this.state = 3634; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3638; + this.state = 3635; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3639; + this.state = 3636; this.identifier(); } break; @@ -15808,16 +15866,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_identifier); try { - this.state = 3647; + this.state = 3644; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3639; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -15825,7 +15883,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3643; + this.state = 3640; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16045,7 +16103,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3644; + this.state = 3641; this.nonReserved(); } break; @@ -16053,7 +16111,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3645; + this.state = 3642; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16061,7 +16119,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3646; + this.state = 3643; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16085,27 +16143,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3661; + this.state = 3658; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3650; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3649; + this.state = 3646; this.match(TrinoSqlParser.MINUS); } } - this.state = 3652; + this.state = 3649; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16113,17 +16171,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3654; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3653; + this.state = 3650; this.match(TrinoSqlParser.MINUS); } } - this.state = 3656; + this.state = 3653; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16131,17 +16189,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3658; + this.state = 3655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3657; + this.state = 3654; this.match(TrinoSqlParser.MINUS); } } - this.state = 3660; + this.state = 3657; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16163,9 +16221,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 306, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3665; + this.state = 3662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16388,7 +16446,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3663; + this.state = 3660; this.identifier(); } break; @@ -16397,7 +16455,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3664; + this.state = 3661; this.string_(); } break; @@ -16421,12 +16479,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 308, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3664; _la = this.tokenStream.LA(1); if(!(((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0))) { this.errorHandler.recoverInline(this); @@ -16456,19 +16514,19 @@ export class TrinoSqlParser extends SQLParserBase { switch (ruleIndex) { case 23: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 36: + case 39: return this.relation_sempred(localContext as RelationContext, predIndex); - case 69: + case 72: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 71: + case 74: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 72: + case 75: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 92: + case 95: return this.type_sempred(localContext as TypeContext, predIndex); - case 102: + case 105: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 138: + case 141: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16545,7 +16603,7 @@ export class TrinoSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,340,3670,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,340,3667,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, @@ -16569,1557 +16627,1555 @@ export class TrinoSqlParser extends SQLParserBase { 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,1,0,5,0,304,8,0,10,0,12,0,307, - 9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,315,8,2,1,3,1,3,3,3,319,8,3,1,4, - 1,4,3,4,323,8,4,1,5,1,5,3,5,327,8,5,1,6,1,6,3,6,331,8,6,1,7,1,7, - 1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,344,8,8,1,8,1,8,1,8,1,8, - 1,8,3,8,351,8,8,1,8,1,8,3,8,355,8,8,1,8,1,8,3,8,359,8,8,1,8,1,8, - 1,8,1,8,3,8,365,8,8,1,8,1,8,3,8,369,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 376,8,8,1,8,1,8,1,8,3,8,381,8,8,1,8,1,8,3,8,385,8,8,1,8,1,8,1,8, - 1,8,3,8,391,8,8,1,8,1,8,3,8,395,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,414,8,8,1,8,1,8,1,8, - 1,8,3,8,420,8,8,1,8,1,8,3,8,424,8,8,1,8,1,8,3,8,428,8,8,1,8,1,8, - 3,8,432,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,440,8,8,1,8,1,8,3,8,444, - 8,8,1,8,3,8,447,8,8,1,8,1,8,1,8,3,8,452,8,8,1,8,1,8,1,8,1,8,3,8, - 458,8,8,1,8,1,8,1,8,1,8,1,8,5,8,465,8,8,10,8,12,8,468,9,8,1,8,1, - 8,1,8,3,8,473,8,8,1,8,1,8,3,8,477,8,8,1,8,1,8,1,8,1,8,3,8,483,8, - 8,1,8,1,8,1,8,1,8,1,8,3,8,490,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, - 8,499,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,511,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,520,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,529,8,8,1,8,1,8,1,8,1,8,3,8,535,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,546,8,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,3,8,569,8, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,579,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,594,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,609,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,1,8,1,8,1,8,1,8,1,8,1,8,5,8,642,8,8,10,8,12, - 8,645,9,8,3,8,647,8,8,1,8,3,8,650,8,8,1,8,1,8,3,8,654,8,8,1,8,1, - 8,1,8,1,8,3,8,660,8,8,1,8,1,8,1,8,3,8,665,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,672,8,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,3,8,682,8,8,1, - 8,1,8,3,8,686,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,694,8,8,1,8,1,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,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,722,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,730,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,749,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,772,8,8,10,8,12,8,775,9,8,3,8,777,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 784,8,8,1,8,1,8,1,8,1,8,1,8,3,8,791,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,800,8,8,1,8,1,8,3,8,804,8,8,1,8,1,8,1,8,1,8,1,8,3,8,811, - 8,8,1,8,1,8,1,8,1,8,5,8,817,8,8,10,8,12,8,820,9,8,1,8,1,8,1,8,1, - 8,5,8,826,8,8,10,8,12,8,829,9,8,1,8,1,8,1,8,3,8,834,8,8,1,8,1,8, - 1,8,3,8,839,8,8,1,8,1,8,3,8,843,8,8,1,8,1,8,1,8,1,8,5,8,849,8,8, - 10,8,12,8,852,9,8,1,8,1,8,3,8,856,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,865,8,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1,8,5,8,876,8, - 8,10,8,12,8,879,9,8,1,8,1,8,1,8,1,8,5,8,885,8,8,10,8,12,8,888,9, - 8,1,8,1,8,1,8,3,8,893,8,8,1,8,1,8,3,8,897,8,8,1,8,1,8,1,8,1,8,3, - 8,903,8,8,1,8,1,8,1,8,5,8,908,8,8,10,8,12,8,911,9,8,1,8,1,8,3,8, - 915,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,926,8,8,10,8,12, - 8,929,9,8,1,8,1,8,3,8,933,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,945,8,8,1,8,1,8,3,8,949,8,8,1,8,1,8,1,8,1,8,3,8,955,8, - 8,1,8,1,8,1,8,1,8,1,8,5,8,962,8,8,10,8,12,8,965,9,8,1,8,1,8,3,8, - 969,8,8,1,8,1,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 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,1,0,5,0,312,8,0,10,0,12,0,315,9,0,1,0,1,0,1,1, + 1,1,1,2,1,2,3,2,323,8,2,1,3,1,3,3,3,327,8,3,1,4,1,4,3,4,331,8,4, + 1,5,1,5,3,5,335,8,5,1,6,1,6,3,6,339,8,6,1,7,1,7,1,7,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,352,8,8,1,8,1,8,1,8,1,8,1,8,3,8,359,8,8, + 1,8,1,8,3,8,363,8,8,1,8,1,8,3,8,367,8,8,1,8,1,8,1,8,1,8,3,8,373, + 8,8,1,8,1,8,3,8,377,8,8,1,8,1,8,1,8,1,8,1,8,3,8,384,8,8,1,8,1,8, + 1,8,3,8,389,8,8,1,8,1,8,3,8,393,8,8,1,8,1,8,1,8,1,8,3,8,399,8,8, + 1,8,1,8,3,8,403,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,422,8,8,1,8,1,8,1,8,1,8,3,8,428,8,8, + 1,8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,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,3,8,452,8,8,1,8,3,8,455, + 8,8,1,8,1,8,1,8,3,8,460,8,8,1,8,1,8,1,8,1,8,3,8,466,8,8,1,8,1,8, + 1,8,1,8,1,8,5,8,473,8,8,10,8,12,8,476,9,8,1,8,1,8,1,8,3,8,481,8, + 8,1,8,1,8,3,8,485,8,8,1,8,1,8,1,8,1,8,3,8,491,8,8,1,8,1,8,1,8,1, + 8,1,8,3,8,498,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,506,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,518,8,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,527,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,536,8,8,1,8,1, + 8,1,8,1,8,3,8,542,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,553, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,561,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,569,8,8,1,8,1,8,1,8,1,8,1,8,3,8,576,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,3,8,593,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,601,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,616,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, - 1,8,1,8,1,8,3,8,1003,8,8,1,8,1,8,1,8,1,8,3,8,1009,8,8,3,8,1011,8, - 8,1,8,1,8,1,8,1,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023,8,8,3,8, - 1025,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1033,8,8,3,8,1035,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1045,8,8,3,8,1047,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,1062,8,8,1,8,1,8,1,8, - 3,8,1067,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1074,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1084,8,8,1,8,1,8,1,8,1,8,3,8,1090,8,8,3,8,1092, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1100,8,8,3,8,1102,8,8,1,8,1,8,1, + 1,8,1,8,1,8,1,8,1,8,1,8,5,8,649,8,8,10,8,12,8,652,9,8,3,8,654,8, + 8,1,8,3,8,657,8,8,1,8,3,8,660,8,8,1,8,1,8,1,8,1,8,3,8,666,8,8,1, + 8,1,8,1,8,3,8,671,8,8,1,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,1, + 8,1,8,3,8,684,8,8,1,8,1,8,3,8,688,8,8,1,8,1,8,3,8,692,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,700,8,8,1,8,1,8,1,8,1,8,3,8,706,8,8,1,8,1, + 8,3,8,710,8,8,1,8,1,8,3,8,714,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,728,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,736,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,5,8,1125,8,8,10,8,12,8,1128,9,8,3,8,1130,8,8,1,8,1,8,3, - 8,1134,8,8,1,8,1,8,3,8,1138,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,1154,8,8,10,8,12,8,1157,9,8,3,8,1159, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1168,8,8,10,8,12,8,1171,9,8, - 3,8,1173,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,1189,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1197,8,8,10,8,12,8, - 1200,9,8,1,8,1,8,3,8,1204,8,8,1,8,1,8,1,8,1,8,3,8,1210,8,8,1,8,3, - 8,1213,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1220,8,8,11,8,12,8,1221,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1234,8,8,1,9,3,9,1237,8,9, - 1,9,1,9,1,10,1,10,1,10,1,10,5,10,1245,8,10,10,10,12,10,1248,9,10, - 1,11,3,11,1251,8,11,1,11,1,11,1,12,1,12,3,12,1257,8,12,1,12,1,12, - 1,12,5,12,1262,8,12,10,12,12,12,1265,9,12,1,13,1,13,3,13,1269,8, - 13,1,14,1,14,1,14,1,14,3,14,1275,8,14,1,14,1,14,3,14,1279,8,14,1, - 14,1,14,3,14,1283,8,14,1,15,1,15,1,15,1,15,3,15,1289,8,15,1,16,1, - 16,1,16,1,16,1,17,1,17,1,17,5,17,1298,8,17,10,17,12,17,1301,9,17, - 1,18,1,18,1,18,1,18,1,19,1,19,3,19,1309,8,19,1,20,1,20,1,20,1,20, - 1,20,1,20,5,20,1317,8,20,10,20,12,20,1320,9,20,3,20,1322,8,20,1, - 20,1,20,1,20,3,20,1327,8,20,3,20,1329,8,20,1,20,1,20,1,20,1,20,1, - 20,3,20,1336,8,20,1,20,1,20,1,20,1,20,3,20,1342,8,20,3,20,1344,8, - 20,1,21,1,21,3,21,1348,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1, - 23,3,23,1358,8,23,1,23,1,23,1,23,1,23,3,23,1364,8,23,1,23,5,23,1367, - 8,23,10,23,12,23,1370,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,5, - 24,1379,8,24,10,24,12,24,1382,9,24,1,24,1,24,1,24,1,24,3,24,1388, - 8,24,1,25,1,25,3,25,1392,8,25,1,25,3,25,1395,8,25,1,25,1,25,3,25, - 1399,8,25,1,26,1,26,3,26,1403,8,26,1,26,1,26,1,26,5,26,1408,8,26, - 10,26,12,26,1411,9,26,1,26,1,26,1,26,1,26,5,26,1417,8,26,10,26,12, - 26,1420,9,26,3,26,1422,8,26,1,26,1,26,3,26,1426,8,26,1,26,1,26,1, - 26,3,26,1431,8,26,1,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,1,26,5, - 26,1441,8,26,10,26,12,26,1444,9,26,3,26,1446,8,26,1,27,3,27,1449, - 8,27,1,27,1,27,1,27,5,27,1454,8,27,10,27,12,27,1457,9,27,1,28,1, - 28,1,28,1,28,1,28,1,28,5,28,1465,8,28,10,28,12,28,1468,9,28,3,28, - 1470,8,28,1,28,1,28,1,28,1,28,1,28,1,28,5,28,1478,8,28,10,28,12, - 28,1481,9,28,3,28,1483,8,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,5, - 28,1492,8,28,10,28,12,28,1495,9,28,1,28,1,28,3,28,1499,8,28,1,29, - 1,29,1,29,1,29,5,29,1505,8,29,10,29,12,29,1508,9,29,3,29,1510,8, - 29,1,29,1,29,3,29,1514,8,29,1,30,1,30,3,30,1518,8,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,32,3,32,1527,8,32,1,32,1,32,1,32,1,32,1,32,5, - 32,1534,8,32,10,32,12,32,1537,9,32,3,32,1539,8,32,1,32,1,32,1,32, - 1,32,1,32,5,32,1546,8,32,10,32,12,32,1549,9,32,3,32,1551,8,32,1, - 32,3,32,1554,8,32,1,33,1,33,3,33,1558,8,33,1,33,1,33,1,33,1,33,1, - 33,1,34,1,34,1,35,1,35,3,35,1569,8,35,1,35,3,35,1572,8,35,1,35,3, - 35,1575,8,35,1,35,1,35,1,35,1,35,1,35,3,35,1582,8,35,1,35,3,35,1585, - 8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1604,8,36,5,36,1606,8,36,10,36,12, - 36,1609,9,36,1,37,3,37,1612,8,37,1,37,1,37,3,37,1616,8,37,1,37,1, - 37,3,37,1620,8,37,1,37,1,37,3,37,1624,8,37,3,37,1626,8,37,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,5,38,1635,8,38,10,38,12,38,1638,9,38, - 1,38,1,38,3,38,1642,8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39, - 1651,8,39,1,40,1,40,1,41,1,41,1,42,1,42,1,42,3,42,1660,8,42,1,42, - 3,42,1663,8,42,1,43,1,43,1,43,1,43,3,43,1669,8,43,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,5,44,1679,8,44,10,44,12,44,1682,9,44,3, - 44,1684,8,44,1,44,1,44,1,44,1,44,1,44,5,44,1691,8,44,10,44,12,44, - 1694,9,44,3,44,1696,8,44,1,44,1,44,1,44,1,44,5,44,1702,8,44,10,44, - 12,44,1705,9,44,3,44,1707,8,44,1,44,3,44,1710,8,44,1,44,1,44,1,44, - 3,44,1715,8,44,1,44,3,44,1718,8,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,1,44,5,44,1728,8,44,10,44,12,44,1731,9,44,3,44,1733,8,44,1, - 44,1,44,1,44,1,44,5,44,1739,8,44,10,44,12,44,1742,9,44,1,44,1,44, - 3,44,1746,8,44,1,44,1,44,3,44,1750,8,44,3,44,1752,8,44,3,44,1754, - 8,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,3,46,1769,8,46,3,46,1771,8,46,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,1,47,1,47,3,47,1782,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48, - 1803,8,48,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1811,8,49,10,49,12, - 49,1814,9,49,1,49,1,49,1,50,1,50,1,50,1,50,1,51,1,51,3,51,1824,8, - 51,1,51,1,51,3,51,1828,8,51,3,51,1830,8,51,1,52,1,52,1,52,1,52,5, - 52,1836,8,52,10,52,12,52,1839,9,52,1,52,1,52,1,53,1,53,1,53,1,53, - 5,53,1847,8,53,10,53,12,53,1850,9,53,1,53,1,53,1,54,1,54,1,54,1, - 54,5,54,1858,8,54,10,54,12,54,1861,9,54,1,54,1,54,1,55,1,55,3,55, - 1867,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1878, - 8,55,10,55,12,55,1881,9,55,1,55,1,55,1,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,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1910,8,55,10,55,12,55, - 1913,9,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,3,55,1927,8,55,1,55,1,55,1,55,3,55,1932,8,55,1,55,1,55,3,55, - 1936,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1946,8,56, - 1,56,1,56,1,56,1,56,3,56,1952,8,56,1,56,1,56,1,56,1,56,3,56,1958, - 8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1966,8,56,1,56,1,56,1,56, - 3,56,1971,8,56,1,56,1,56,1,56,1,56,1,56,3,56,1978,8,56,3,56,1980, - 8,56,1,56,1,56,1,56,1,56,3,56,1986,8,56,1,56,1,56,1,56,1,56,3,56, - 1992,8,56,1,56,1,56,3,56,1996,8,56,1,56,1,56,1,56,3,56,2001,8,56, - 1,56,1,56,1,56,1,56,1,56,5,56,2008,8,56,10,56,12,56,2011,9,56,1, - 56,1,56,3,56,2015,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1, - 57,1,57,5,57,2027,8,57,10,57,12,57,2030,9,57,1,57,1,57,1,57,1,57, - 1,57,5,57,2037,8,57,10,57,12,57,2040,9,57,3,57,2042,8,57,1,58,1, - 58,1,59,1,59,1,59,1,59,1,59,3,59,2051,8,59,1,60,1,60,1,60,3,60,2056, - 8,60,1,60,1,60,1,60,3,60,2061,8,60,3,60,2063,8,60,1,61,1,61,1,61, - 1,61,1,61,5,61,2070,8,61,10,61,12,61,2073,9,61,3,61,2075,8,61,1, - 61,1,61,1,61,1,61,5,61,2081,8,61,10,61,12,61,2084,9,61,3,61,2086, - 8,61,1,61,1,61,1,62,1,62,1,62,3,62,2093,8,62,1,62,1,62,1,62,3,62, - 2098,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,5,63,2107,8,63,10,63, - 12,63,2110,9,63,3,63,2112,8,63,1,63,1,63,3,63,2116,8,63,3,63,2118, - 8,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2126,8,63,1,63,1,63,1,63, - 1,63,1,63,1,63,5,63,2134,8,63,10,63,12,63,2137,9,63,1,63,1,63,1, - 63,3,63,2142,8,63,3,63,2144,8,63,1,64,1,64,1,64,1,64,1,64,3,64,2151, - 8,64,1,64,1,64,3,64,2155,8,64,3,64,2157,8,64,1,64,1,64,1,64,1,64, - 1,64,3,64,2164,8,64,1,64,1,64,3,64,2168,8,64,3,64,2170,8,64,3,64, - 2172,8,64,1,65,1,65,1,65,1,65,1,65,5,65,2179,8,65,10,65,12,65,2182, - 9,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2192,8,65,1,66, - 1,66,3,66,2196,8,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2204,8,67, - 10,67,12,67,2207,9,67,1,67,1,67,1,68,1,68,1,69,1,69,1,69,3,69,2216, - 8,69,1,69,1,69,3,69,2220,8,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69, - 2228,8,69,10,69,12,69,2231,9,69,1,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2243,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3, - 70,2251,8,70,1,70,1,70,1,70,1,70,1,70,5,70,2258,8,70,10,70,12,70, - 2261,9,70,1,70,1,70,1,70,3,70,2266,8,70,1,70,1,70,1,70,1,70,1,70, - 1,70,3,70,2274,8,70,1,70,1,70,1,70,1,70,3,70,2280,8,70,1,70,1,70, - 3,70,2284,8,70,1,70,1,70,1,70,3,70,2289,8,70,1,70,1,70,1,70,3,70, - 2294,8,70,1,71,1,71,1,71,1,71,3,71,2300,8,71,1,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,2314,8,71,10,71,12, - 71,2317,9,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,4,72,2344,8,72,11,72,12,72,2345,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,5,72,2355,8,72,10,72,12,72,2358,9,72,1,72,1,72,1,72,1, - 72,1,72,3,72,2365,8,72,1,72,1,72,1,72,3,72,2370,8,72,1,72,1,72,1, - 72,3,72,2375,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2386,8,72,10,72,12,72,2389,9,72,1,72,1,72,1,72,3,72,2394,8,72, - 1,72,3,72,2397,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2404,8,72,1,72, - 1,72,1,72,3,72,2409,8,72,1,72,3,72,2412,8,72,1,72,3,72,2415,8,72, - 1,72,1,72,1,72,3,72,2420,8,72,1,72,1,72,1,72,5,72,2425,8,72,10,72, - 12,72,2428,9,72,3,72,2430,8,72,1,72,1,72,1,72,1,72,1,72,5,72,2437, - 8,72,10,72,12,72,2440,9,72,3,72,2442,8,72,1,72,1,72,3,72,2446,8, - 72,1,72,3,72,2449,8,72,1,72,3,72,2452,8,72,1,72,1,72,1,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2465,8,72,10,72,12,72,2468, - 9,72,3,72,2470,8,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,4,72,2487,8,72,11,72,12,72,2488,1, - 72,1,72,3,72,2493,8,72,1,72,1,72,1,72,1,72,4,72,2499,8,72,11,72, - 12,72,2500,1,72,1,72,3,72,2505,8,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,5,72,2528,8,72,10,72,12,72,2531,9,72,3,72,2533,8,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2542,8,72,1,72,1,72,1,72,1, - 72,3,72,2548,8,72,1,72,1,72,1,72,1,72,3,72,2554,8,72,1,72,1,72,1, - 72,1,72,3,72,2560,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2569, - 8,72,1,72,3,72,2572,8,72,1,72,3,72,2575,8,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,2594,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2603,8,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,5,72,2623,8,72,10,72,12,72,2626,9,72,3, - 72,2628,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2638,8, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2647,8,72,1,72,1,72,1, - 72,1,72,3,72,2653,8,72,1,72,1,72,1,72,1,72,3,72,2659,8,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2670,8,72,3,72,2672,8, - 72,1,72,1,72,1,72,3,72,2677,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2684, - 8,72,3,72,2686,8,72,1,72,1,72,1,72,1,72,3,72,2692,8,72,1,72,1,72, - 1,72,1,72,3,72,2698,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72, - 2707,8,72,10,72,12,72,2710,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3, - 72,2718,8,72,1,72,1,72,1,72,3,72,2723,8,72,1,72,1,72,1,72,3,72,2728, - 8,72,3,72,2730,8,72,3,72,2732,8,72,1,72,1,72,1,72,1,72,3,72,2738, - 8,72,3,72,2740,8,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2748,8,72, - 10,72,12,72,2751,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2759,8, - 72,3,72,2761,8,72,1,72,1,72,1,72,1,72,3,72,2767,8,72,3,72,2769,8, - 72,1,72,3,72,2772,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2782,8,72,10,72,12,72,2785,9,72,1,73,1,73,1,73,1,73,1,73,3,73, - 2792,8,73,1,73,1,73,1,73,1,73,5,73,2798,8,73,10,73,12,73,2801,9, - 73,3,73,2803,8,73,1,74,1,74,1,74,3,74,2808,8,74,1,75,1,75,1,75,3, - 75,2813,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,78,1,78,1,78,1,78,3, - 78,2825,8,78,1,79,1,79,3,79,2829,8,79,1,79,1,79,3,79,2833,8,79,1, - 79,3,79,2836,8,79,3,79,2838,8,79,1,80,1,80,1,80,1,80,1,80,1,80,3, - 80,2846,8,80,1,81,3,81,2849,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,1,81,3,81,2859,8,81,1,82,1,82,1,83,1,83,1,83,1,83,3,83,2867,8, - 83,1,84,1,84,1,84,1,84,3,84,2873,8,84,3,84,2875,8,84,1,85,1,85,1, - 85,1,85,1,85,1,85,3,85,2883,8,85,1,86,1,86,1,87,1,87,1,88,1,88,1, - 89,1,89,3,89,2893,8,89,1,89,1,89,1,89,1,89,3,89,2899,8,89,1,90,1, - 90,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,5,92,2911,8,92,10,92, - 12,92,2914,9,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,2922,8,92,1,92, - 1,92,1,92,1,92,1,92,3,92,2929,8,92,1,92,1,92,1,92,3,92,2934,8,92, - 1,92,1,92,1,92,1,92,1,92,3,92,2941,8,92,1,92,1,92,1,92,3,92,2946, - 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,5,92,2967,8,92,10,92,12,92,2970, - 9,92,1,92,1,92,3,92,2974,8,92,3,92,2976,8,92,1,92,1,92,1,92,1,92, - 1,92,3,92,2983,8,92,5,92,2985,8,92,10,92,12,92,2988,9,92,1,93,1, - 93,1,93,1,93,3,93,2994,8,93,1,94,1,94,3,94,2998,8,94,1,95,1,95,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,3, - 97,3015,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1, - 97,5,97,3028,8,97,10,97,12,97,3031,9,97,1,97,1,97,1,97,1,97,3,97, - 3037,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,3046,8,97,1,97, - 1,97,1,97,1,97,1,97,1,97,5,97,3054,8,97,10,97,12,97,3057,9,97,1, - 97,1,97,3,97,3061,8,97,1,97,1,97,1,97,1,97,1,97,5,97,3068,8,97,10, - 97,12,97,3071,9,97,1,97,1,97,3,97,3075,8,97,1,98,1,98,1,98,1,98, - 1,98,1,98,3,98,3083,8,98,1,99,1,99,1,99,1,99,5,99,3089,8,99,10,99, - 12,99,3092,9,99,3,99,3094,8,99,1,99,1,99,1,99,1,99,3,99,3100,8,99, - 1,99,3,99,3103,8,99,1,99,1,99,1,99,1,99,1,99,3,99,3110,8,99,1,99, - 1,99,1,99,1,99,5,99,3116,8,99,10,99,12,99,3119,9,99,3,99,3121,8, - 99,1,99,1,99,1,99,1,99,5,99,3127,8,99,10,99,12,99,3130,9,99,3,99, - 3132,8,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,3,100,3158,8,100,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,3,101,3169,8,101,1,102,1,102,1,102, - 3,102,3174,8,102,1,102,1,102,1,102,1,102,1,102,5,102,3181,8,102, - 10,102,12,102,3184,9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,5,103,3194,8,103,10,103,12,103,3197,9,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,3211, - 8,103,1,104,1,104,3,104,3215,8,104,1,104,1,104,3,104,3219,8,104, - 1,104,1,104,3,104,3223,8,104,1,104,1,104,1,104,1,104,3,104,3229, - 8,104,1,104,1,104,3,104,3233,8,104,1,104,1,104,3,104,3237,8,104, - 1,104,1,104,3,104,3241,8,104,3,104,3243,8,104,1,105,1,105,1,105, - 1,105,1,106,1,106,1,106,1,106,3,106,3253,8,106,1,107,1,107,1,107, - 1,107,1,107,3,107,3260,8,107,1,108,1,108,1,108,1,108,1,108,1,108, - 1,108,3,108,3269,8,108,1,109,1,109,1,109,1,109,1,109,3,109,3276, - 8,109,1,110,1,110,1,110,1,110,1,110,3,110,3283,8,110,1,111,1,111, - 1,111,5,111,3288,8,111,10,111,12,111,3291,9,111,1,112,1,112,1,112, - 1,112,5,112,3297,8,112,10,112,12,112,3300,9,112,1,112,1,112,1,113, - 1,113,1,113,1,113,1,113,5,113,3309,8,113,10,113,12,113,3312,9,113, - 3,113,3314,8,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,5,114, - 3323,8,114,10,114,12,114,3326,9,114,3,114,3328,8,114,1,114,1,114, - 1,115,3,115,3333,8,115,1,115,1,115,1,116,1,116,1,116,1,117,1,117, - 1,117,3,117,3343,8,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3359,8,117,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,4,118,3371, - 8,118,11,118,12,118,3372,1,118,3,118,3376,8,118,1,118,1,118,1,118, - 1,118,1,118,4,118,3383,8,118,11,118,12,118,3384,1,118,3,118,3388, - 8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118,3398, - 8,118,10,118,12,118,3401,9,118,1,118,3,118,3404,8,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118,3417, - 8,118,10,118,12,118,3420,9,118,1,118,3,118,3423,8,118,1,118,1,118, - 1,118,1,118,3,118,3429,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,3439,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,3,118,3451,8,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,3,118,3460,8,118,1,119,1,119,1,119,1,119,1,119, - 1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,122,1,122,1,122, - 1,122,5,122,3479,8,122,10,122,12,122,3482,9,122,1,122,1,122,1,122, - 3,122,3487,8,122,1,123,1,123,1,123,4,123,3492,8,123,11,123,12,123, - 3493,1,124,1,124,1,124,1,124,1,124,1,124,3,124,3502,8,124,1,125, - 1,125,1,125,3,125,3507,8,125,1,126,3,126,3510,8,126,1,126,1,126, - 1,127,1,127,3,127,3516,8,127,1,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,1,128,1,128,3,128,3529,8,128,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,3542,8,129, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 3,130,3555,8,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,3,131,3568,8,131,1,132,1,132,1,132,1,132,1,132, - 3,132,3575,8,132,1,133,1,133,1,133,1,133,1,133,3,133,3582,8,133, - 1,134,1,134,1,135,1,135,1,136,1,136,1,137,1,137,1,138,1,138,3,138, - 3594,8,138,1,139,1,139,1,140,1,140,1,140,5,140,3601,8,140,10,140, - 12,140,3604,9,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142, - 1,143,1,143,1,143,3,143,3617,8,143,1,144,1,144,1,144,1,144,1,144, - 3,144,3624,8,144,1,145,1,145,1,145,5,145,3629,8,145,10,145,12,145, - 3632,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3641, - 8,146,1,147,1,147,1,147,1,147,1,147,3,147,3648,8,147,1,148,3,148, - 3651,8,148,1,148,1,148,3,148,3655,8,148,1,148,1,148,3,148,3659,8, - 148,1,148,3,148,3662,8,148,1,149,1,149,3,149,3666,8,149,1,150,1, - 150,1,150,0,7,46,72,138,142,144,184,204,151,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,0,36,2,0,39,39,229,229,2,0,72,72,131,131,2,0,105,105, - 122,122,2,0,92,92,123,123,1,0,239,240,2,0,101,101,174,174,2,0,324, - 324,329,329,2,0,91,91,281,281,2,0,29,29,75,75,2,0,101,101,148,148, - 2,0,22,22,79,79,2,0,33,33,259,259,3,0,35,35,150,150,270,270,2,0, - 124,124,247,247,2,0,85,85,89,89,2,0,144,144,189,189,2,0,125,125, - 197,197,2,0,54,54,281,281,1,0,318,319,1,0,320,322,1,0,291,293,4, - 0,89,89,97,97,273,273,283,283,2,0,49,49,280,280,2,0,100,100,241, - 241,1,0,312,317,3,0,22,22,26,26,254,254,2,0,97,97,273,273,5,0,67, - 67,118,118,170,171,245,245,310,310,1,0,175,178,2,0,304,304,306,306, - 2,0,102,102,212,212,3,0,113,113,137,137,263,263,4,0,80,80,132,132, - 160,160,294,294,2,0,192,192,309,309,2,0,268,268,298,298,54,0,18, - 22,24,24,26,27,29,33,35,35,37,39,42,49,51,52,56,56,65,67,69,72,74, - 75,77,78,80,82,85,87,89,89,92,92,95,95,98,102,104,104,107,113,116, - 116,118,121,123,124,126,126,129,129,131,132,134,135,137,137,144, - 151,153,153,155,155,157,157,160,171,173,180,184,189,191,193,196, - 196,198,213,215,220,222,233,235,237,239,247,249,259,261,264,266, - 271,274,276,278,280,282,284,286,289,291,295,297,299,302,303,305, - 311,4221,0,305,1,0,0,0,2,310,1,0,0,0,4,312,1,0,0,0,6,316,1,0,0,0, - 8,320,1,0,0,0,10,324,1,0,0,0,12,328,1,0,0,0,14,332,1,0,0,0,16,1233, - 1,0,0,0,18,1236,1,0,0,0,20,1240,1,0,0,0,22,1250,1,0,0,0,24,1254, - 1,0,0,0,26,1268,1,0,0,0,28,1270,1,0,0,0,30,1284,1,0,0,0,32,1290, - 1,0,0,0,34,1294,1,0,0,0,36,1302,1,0,0,0,38,1308,1,0,0,0,40,1310, - 1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0,0,46,1351,1,0,0,0,48,1387, - 1,0,0,0,50,1391,1,0,0,0,52,1400,1,0,0,0,54,1448,1,0,0,0,56,1498, - 1,0,0,0,58,1513,1,0,0,0,60,1517,1,0,0,0,62,1519,1,0,0,0,64,1526, - 1,0,0,0,66,1555,1,0,0,0,68,1564,1,0,0,0,70,1584,1,0,0,0,72,1586, - 1,0,0,0,74,1625,1,0,0,0,76,1641,1,0,0,0,78,1643,1,0,0,0,80,1652, - 1,0,0,0,82,1654,1,0,0,0,84,1662,1,0,0,0,86,1668,1,0,0,0,88,1670, - 1,0,0,0,90,1755,1,0,0,0,92,1770,1,0,0,0,94,1781,1,0,0,0,96,1802, - 1,0,0,0,98,1804,1,0,0,0,100,1817,1,0,0,0,102,1821,1,0,0,0,104,1831, - 1,0,0,0,106,1842,1,0,0,0,108,1853,1,0,0,0,110,1935,1,0,0,0,112,2014, - 1,0,0,0,114,2041,1,0,0,0,116,2043,1,0,0,0,118,2050,1,0,0,0,120,2062, - 1,0,0,0,122,2064,1,0,0,0,124,2092,1,0,0,0,126,2099,1,0,0,0,128,2171, - 1,0,0,0,130,2191,1,0,0,0,132,2193,1,0,0,0,134,2197,1,0,0,0,136,2210, - 1,0,0,0,138,2219,1,0,0,0,140,2293,1,0,0,0,142,2299,1,0,0,0,144,2771, - 1,0,0,0,146,2786,1,0,0,0,148,2804,1,0,0,0,150,2809,1,0,0,0,152,2814, - 1,0,0,0,154,2818,1,0,0,0,156,2824,1,0,0,0,158,2837,1,0,0,0,160,2845, - 1,0,0,0,162,2858,1,0,0,0,164,2860,1,0,0,0,166,2866,1,0,0,0,168,2874, - 1,0,0,0,170,2882,1,0,0,0,172,2884,1,0,0,0,174,2886,1,0,0,0,176,2888, - 1,0,0,0,178,2890,1,0,0,0,180,2900,1,0,0,0,182,2902,1,0,0,0,184,2975, - 1,0,0,0,186,2993,1,0,0,0,188,2997,1,0,0,0,190,2999,1,0,0,0,192,3004, - 1,0,0,0,194,3074,1,0,0,0,196,3076,1,0,0,0,198,3093,1,0,0,0,200,3157, - 1,0,0,0,202,3168,1,0,0,0,204,3170,1,0,0,0,206,3210,1,0,0,0,208,3242, - 1,0,0,0,210,3244,1,0,0,0,212,3252,1,0,0,0,214,3259,1,0,0,0,216,3268, - 1,0,0,0,218,3275,1,0,0,0,220,3282,1,0,0,0,222,3284,1,0,0,0,224,3292, - 1,0,0,0,226,3303,1,0,0,0,228,3317,1,0,0,0,230,3332,1,0,0,0,232,3336, - 1,0,0,0,234,3358,1,0,0,0,236,3459,1,0,0,0,238,3461,1,0,0,0,240,3466, - 1,0,0,0,242,3471,1,0,0,0,244,3474,1,0,0,0,246,3491,1,0,0,0,248,3501, - 1,0,0,0,250,3506,1,0,0,0,252,3509,1,0,0,0,254,3515,1,0,0,0,256,3528, - 1,0,0,0,258,3541,1,0,0,0,260,3554,1,0,0,0,262,3567,1,0,0,0,264,3574, - 1,0,0,0,266,3581,1,0,0,0,268,3583,1,0,0,0,270,3585,1,0,0,0,272,3587, - 1,0,0,0,274,3589,1,0,0,0,276,3593,1,0,0,0,278,3595,1,0,0,0,280,3597, - 1,0,0,0,282,3605,1,0,0,0,284,3611,1,0,0,0,286,3616,1,0,0,0,288,3623, - 1,0,0,0,290,3625,1,0,0,0,292,3640,1,0,0,0,294,3647,1,0,0,0,296,3661, - 1,0,0,0,298,3665,1,0,0,0,300,3667,1,0,0,0,302,304,3,2,1,0,303,302, - 1,0,0,0,304,307,1,0,0,0,305,303,1,0,0,0,305,306,1,0,0,0,306,308, - 1,0,0,0,307,305,1,0,0,0,308,309,5,0,0,1,309,1,1,0,0,0,310,311,3, - 4,2,0,311,3,1,0,0,0,312,314,3,16,8,0,313,315,5,325,0,0,314,313,1, - 0,0,0,314,315,1,0,0,0,315,5,1,0,0,0,316,318,3,136,68,0,317,319,5, - 325,0,0,318,317,1,0,0,0,318,319,1,0,0,0,319,7,1,0,0,0,320,322,3, - 222,111,0,321,323,5,325,0,0,322,321,1,0,0,0,322,323,1,0,0,0,323, - 9,1,0,0,0,324,326,3,184,92,0,325,327,5,325,0,0,326,325,1,0,0,0,326, - 327,1,0,0,0,327,11,1,0,0,0,328,330,3,204,102,0,329,331,5,325,0,0, - 330,329,1,0,0,0,330,331,1,0,0,0,331,13,1,0,0,0,332,333,3,224,112, - 0,333,334,5,0,0,1,334,15,1,0,0,0,335,1234,3,18,9,0,336,337,5,288, - 0,0,337,1234,3,264,132,0,338,339,5,53,0,0,339,343,5,42,0,0,340,341, - 5,119,0,0,341,342,5,182,0,0,342,344,5,94,0,0,343,340,1,0,0,0,343, - 344,1,0,0,0,344,345,1,0,0,0,345,346,3,270,135,0,346,347,5,290,0, - 0,347,350,3,294,147,0,348,349,5,46,0,0,349,351,3,168,84,0,350,348, - 1,0,0,0,350,351,1,0,0,0,351,354,1,0,0,0,352,353,5,31,0,0,353,355, - 3,288,144,0,354,352,1,0,0,0,354,355,1,0,0,0,355,358,1,0,0,0,356, - 357,5,304,0,0,357,359,3,32,16,0,358,356,1,0,0,0,358,359,1,0,0,0, - 359,1234,1,0,0,0,360,361,5,83,0,0,361,364,5,42,0,0,362,363,5,119, - 0,0,363,365,5,94,0,0,364,362,1,0,0,0,364,365,1,0,0,0,365,366,1,0, - 0,0,366,368,3,268,134,0,367,369,7,0,0,0,368,367,1,0,0,0,368,369, - 1,0,0,0,369,1234,1,0,0,0,370,371,5,53,0,0,371,375,5,243,0,0,372, - 373,5,119,0,0,373,374,5,182,0,0,374,376,5,94,0,0,375,372,1,0,0,0, - 375,376,1,0,0,0,376,377,1,0,0,0,377,380,3,266,133,0,378,379,5,31, - 0,0,379,381,3,288,144,0,380,378,1,0,0,0,380,381,1,0,0,0,381,384, - 1,0,0,0,382,383,5,304,0,0,383,385,3,32,16,0,384,382,1,0,0,0,384, - 385,1,0,0,0,385,1234,1,0,0,0,386,387,5,83,0,0,387,390,5,243,0,0, - 388,389,5,119,0,0,389,391,5,94,0,0,390,388,1,0,0,0,390,391,1,0,0, - 0,391,392,1,0,0,0,392,394,3,264,132,0,393,395,7,0,0,0,394,393,1, - 0,0,0,394,395,1,0,0,0,395,1234,1,0,0,0,396,397,5,23,0,0,397,398, - 5,243,0,0,398,399,3,264,132,0,399,400,5,223,0,0,400,401,5,269,0, - 0,401,402,3,266,133,0,402,1234,1,0,0,0,403,404,5,23,0,0,404,405, - 5,243,0,0,405,406,3,264,132,0,406,407,5,251,0,0,407,408,5,31,0,0, - 408,409,3,288,144,0,409,1234,1,0,0,0,410,413,5,53,0,0,411,412,5, - 194,0,0,412,414,5,226,0,0,413,411,1,0,0,0,413,414,1,0,0,0,414,415, - 1,0,0,0,415,419,5,260,0,0,416,417,5,119,0,0,417,418,5,182,0,0,418, - 420,5,94,0,0,419,416,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 423,3,258,129,0,422,424,3,104,52,0,423,422,1,0,0,0,423,424,1,0,0, - 0,424,427,1,0,0,0,425,426,5,46,0,0,426,428,3,168,84,0,427,425,1, - 0,0,0,427,428,1,0,0,0,428,431,1,0,0,0,429,430,5,304,0,0,430,432, - 3,32,16,0,431,429,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,439, - 5,28,0,0,434,440,3,18,9,0,435,436,5,1,0,0,436,437,3,18,9,0,437,438, - 5,2,0,0,438,440,1,0,0,0,439,434,1,0,0,0,439,435,1,0,0,0,440,446, - 1,0,0,0,441,443,5,304,0,0,442,444,5,179,0,0,443,442,1,0,0,0,443, - 444,1,0,0,0,444,445,1,0,0,0,445,447,5,65,0,0,446,441,1,0,0,0,446, - 447,1,0,0,0,447,1234,1,0,0,0,448,451,5,53,0,0,449,450,5,194,0,0, - 450,452,5,226,0,0,451,449,1,0,0,0,451,452,1,0,0,0,452,453,1,0,0, - 0,453,457,5,260,0,0,454,455,5,119,0,0,455,456,5,182,0,0,456,458, - 5,94,0,0,457,454,1,0,0,0,457,458,1,0,0,0,458,459,1,0,0,0,459,460, - 3,258,129,0,460,461,5,1,0,0,461,466,3,26,13,0,462,463,5,3,0,0,463, - 465,3,26,13,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,469,1,0,0,0,468,466,1,0,0,0,469,472,5,2,0,0,470, - 471,5,46,0,0,471,473,3,168,84,0,472,470,1,0,0,0,472,473,1,0,0,0, - 473,476,1,0,0,0,474,475,5,304,0,0,475,477,3,32,16,0,476,474,1,0, - 0,0,476,477,1,0,0,0,477,1234,1,0,0,0,478,479,5,83,0,0,479,482,5, - 260,0,0,480,481,5,119,0,0,481,483,5,94,0,0,482,480,1,0,0,0,482,483, - 1,0,0,0,483,484,1,0,0,0,484,1234,3,256,128,0,485,486,5,127,0,0,486, - 487,5,130,0,0,487,489,3,256,128,0,488,490,3,106,53,0,489,488,1,0, - 0,0,489,490,1,0,0,0,490,491,1,0,0,0,491,492,3,18,9,0,492,1234,1, - 0,0,0,493,494,5,73,0,0,494,495,5,105,0,0,495,498,3,256,128,0,496, - 497,5,301,0,0,497,499,3,138,69,0,498,496,1,0,0,0,498,499,1,0,0,0, - 499,1234,1,0,0,0,500,501,5,274,0,0,501,502,5,260,0,0,502,1234,3, - 256,128,0,503,504,5,46,0,0,504,505,5,190,0,0,505,506,5,260,0,0,506, - 507,3,256,128,0,507,510,5,133,0,0,508,511,3,168,84,0,509,511,5,183, - 0,0,510,508,1,0,0,0,510,509,1,0,0,0,511,1234,1,0,0,0,512,513,5,46, - 0,0,513,514,5,190,0,0,514,515,5,299,0,0,515,516,3,260,130,0,516, - 519,5,133,0,0,517,520,3,168,84,0,518,520,5,183,0,0,519,517,1,0,0, - 0,519,518,1,0,0,0,520,1234,1,0,0,0,521,522,5,46,0,0,522,523,5,190, - 0,0,523,524,5,44,0,0,524,525,3,276,138,0,525,528,5,133,0,0,526,529, - 3,168,84,0,527,529,5,183,0,0,528,526,1,0,0,0,528,527,1,0,0,0,529, - 1234,1,0,0,0,530,531,5,23,0,0,531,534,5,260,0,0,532,533,5,119,0, - 0,533,535,5,94,0,0,534,532,1,0,0,0,534,535,1,0,0,0,535,536,1,0,0, - 0,536,537,3,256,128,0,537,538,5,223,0,0,538,539,5,269,0,0,539,540, - 3,258,129,0,540,1234,1,0,0,0,541,542,5,23,0,0,542,545,5,260,0,0, - 543,544,5,119,0,0,544,546,5,94,0,0,545,543,1,0,0,0,545,546,1,0,0, - 0,546,547,1,0,0,0,547,548,3,256,128,0,548,549,5,19,0,0,549,553,5, - 44,0,0,550,551,5,119,0,0,551,552,5,182,0,0,552,554,5,94,0,0,553, - 550,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,3,28,14,0,556, - 1234,1,0,0,0,557,558,5,23,0,0,558,561,5,260,0,0,559,560,5,119,0, - 0,560,562,5,94,0,0,561,559,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0, - 0,563,564,3,256,128,0,564,565,5,223,0,0,565,568,5,44,0,0,566,567, - 5,119,0,0,567,569,5,94,0,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570, - 1,0,0,0,570,571,3,276,138,0,571,572,5,269,0,0,572,573,3,278,139, - 0,573,1234,1,0,0,0,574,575,5,23,0,0,575,578,5,260,0,0,576,577,5, - 119,0,0,577,579,5,94,0,0,578,576,1,0,0,0,578,579,1,0,0,0,579,580, - 1,0,0,0,580,581,3,256,128,0,581,582,5,83,0,0,582,585,5,44,0,0,583, - 584,5,119,0,0,584,586,5,94,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586, - 587,1,0,0,0,587,588,3,276,138,0,588,1234,1,0,0,0,589,590,5,23,0, - 0,590,593,5,260,0,0,591,592,5,119,0,0,592,594,5,94,0,0,593,591,1, - 0,0,0,593,594,1,0,0,0,594,595,1,0,0,0,595,596,3,256,128,0,596,597, - 5,23,0,0,597,598,5,44,0,0,598,599,3,276,138,0,599,600,5,251,0,0, - 600,601,5,65,0,0,601,602,5,276,0,0,602,603,3,184,92,0,603,1234,1, - 0,0,0,604,605,5,23,0,0,605,608,5,260,0,0,606,607,5,119,0,0,607,609, - 5,94,0,0,608,606,1,0,0,0,608,609,1,0,0,0,609,610,1,0,0,0,610,611, - 3,256,128,0,611,612,5,23,0,0,612,613,5,44,0,0,613,614,3,276,138, - 0,614,615,5,83,0,0,615,616,5,182,0,0,616,617,5,183,0,0,617,1234, - 1,0,0,0,618,619,5,23,0,0,619,620,5,260,0,0,620,621,3,256,128,0,621, - 622,5,251,0,0,622,623,5,31,0,0,623,624,3,288,144,0,624,1234,1,0, - 0,0,625,626,5,23,0,0,626,627,5,260,0,0,627,628,3,256,128,0,628,629, - 5,251,0,0,629,630,5,216,0,0,630,631,3,34,17,0,631,1234,1,0,0,0,632, - 633,5,23,0,0,633,634,5,260,0,0,634,635,3,256,128,0,635,636,5,93, - 0,0,636,649,3,272,136,0,637,646,5,1,0,0,638,643,3,218,109,0,639, - 640,5,3,0,0,640,642,3,218,109,0,641,639,1,0,0,0,642,645,1,0,0,0, - 643,641,1,0,0,0,643,644,1,0,0,0,644,647,1,0,0,0,645,643,1,0,0,0, - 646,638,1,0,0,0,646,647,1,0,0,0,647,648,1,0,0,0,648,650,5,2,0,0, - 649,637,1,0,0,0,649,650,1,0,0,0,650,653,1,0,0,0,651,652,5,301,0, - 0,652,654,3,138,69,0,653,651,1,0,0,0,653,654,1,0,0,0,654,1234,1, - 0,0,0,655,656,5,24,0,0,656,659,3,256,128,0,657,658,5,304,0,0,658, - 660,3,32,16,0,659,657,1,0,0,0,659,660,1,0,0,0,660,1234,1,0,0,0,661, - 664,5,53,0,0,662,663,5,194,0,0,663,665,5,226,0,0,664,662,1,0,0,0, - 664,665,1,0,0,0,665,666,1,0,0,0,666,667,5,167,0,0,667,671,5,299, - 0,0,668,669,5,119,0,0,669,670,5,182,0,0,670,672,5,94,0,0,671,668, - 1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,677,3,262,131,0,674, - 675,5,109,0,0,675,676,5,208,0,0,676,678,3,178,89,0,677,674,1,0,0, - 0,677,678,1,0,0,0,678,681,1,0,0,0,679,680,5,46,0,0,680,682,3,168, - 84,0,681,679,1,0,0,0,681,682,1,0,0,0,682,685,1,0,0,0,683,684,5,304, - 0,0,684,686,3,32,16,0,685,683,1,0,0,0,685,686,1,0,0,0,686,687,1, - 0,0,0,687,688,5,28,0,0,688,689,3,18,9,0,689,1234,1,0,0,0,690,693, - 5,53,0,0,691,692,5,194,0,0,692,694,5,226,0,0,693,691,1,0,0,0,693, - 694,1,0,0,0,694,695,1,0,0,0,695,696,5,299,0,0,696,699,3,262,131, - 0,697,698,5,46,0,0,698,700,3,168,84,0,699,697,1,0,0,0,699,700,1, - 0,0,0,700,703,1,0,0,0,701,702,5,246,0,0,702,704,7,1,0,0,703,701, - 1,0,0,0,703,704,1,0,0,0,704,707,1,0,0,0,705,706,5,304,0,0,706,708, - 3,32,16,0,707,705,1,0,0,0,707,708,1,0,0,0,708,709,1,0,0,0,709,710, - 5,28,0,0,710,711,3,18,9,0,711,1234,1,0,0,0,712,713,5,222,0,0,713, - 714,5,167,0,0,714,715,5,299,0,0,715,1234,3,260,130,0,716,717,5,83, - 0,0,717,718,5,167,0,0,718,721,5,299,0,0,719,720,5,119,0,0,720,722, - 5,94,0,0,721,719,1,0,0,0,721,722,1,0,0,0,722,723,1,0,0,0,723,1234, - 3,260,130,0,724,725,5,23,0,0,725,726,5,167,0,0,726,729,5,299,0,0, - 727,728,5,119,0,0,728,730,5,94,0,0,729,727,1,0,0,0,729,730,1,0,0, - 0,730,731,1,0,0,0,731,732,3,260,130,0,732,733,5,223,0,0,733,734, - 5,269,0,0,734,735,3,262,131,0,735,1234,1,0,0,0,736,737,5,23,0,0, - 737,738,5,167,0,0,738,739,5,299,0,0,739,740,3,260,130,0,740,741, - 5,251,0,0,741,742,5,216,0,0,742,743,3,34,17,0,743,1234,1,0,0,0,744, - 745,5,83,0,0,745,748,5,299,0,0,746,747,5,119,0,0,747,749,5,94,0, - 0,748,746,1,0,0,0,748,749,1,0,0,0,749,750,1,0,0,0,750,1234,3,260, - 130,0,751,752,5,23,0,0,752,753,5,299,0,0,753,754,3,260,130,0,754, - 755,5,223,0,0,755,756,5,269,0,0,756,757,3,262,131,0,757,1234,1,0, - 0,0,758,759,5,23,0,0,759,760,5,299,0,0,760,761,3,260,130,0,761,762, - 5,251,0,0,762,763,5,31,0,0,763,764,3,288,144,0,764,1234,1,0,0,0, - 765,766,5,37,0,0,766,767,3,272,136,0,767,776,5,1,0,0,768,773,3,218, - 109,0,769,770,5,3,0,0,770,772,3,218,109,0,771,769,1,0,0,0,772,775, - 1,0,0,0,773,771,1,0,0,0,773,774,1,0,0,0,774,777,1,0,0,0,775,773, - 1,0,0,0,776,768,1,0,0,0,776,777,1,0,0,0,777,778,1,0,0,0,778,779, - 5,2,0,0,779,1234,1,0,0,0,780,783,5,53,0,0,781,782,5,194,0,0,782, - 784,5,226,0,0,783,781,1,0,0,0,783,784,1,0,0,0,784,785,1,0,0,0,785, - 1234,3,224,112,0,786,787,5,83,0,0,787,790,5,107,0,0,788,789,5,119, - 0,0,789,791,5,94,0,0,790,788,1,0,0,0,790,791,1,0,0,0,791,792,1,0, - 0,0,792,1234,3,228,114,0,793,794,5,53,0,0,794,795,5,235,0,0,795, - 799,3,294,147,0,796,797,5,304,0,0,797,798,5,20,0,0,798,800,3,286, - 143,0,799,796,1,0,0,0,799,800,1,0,0,0,800,803,1,0,0,0,801,802,5, - 122,0,0,802,804,3,268,134,0,803,801,1,0,0,0,803,804,1,0,0,0,804, - 1234,1,0,0,0,805,806,5,83,0,0,806,807,5,235,0,0,807,810,3,294,147, - 0,808,809,5,122,0,0,809,811,3,268,134,0,810,808,1,0,0,0,810,811, - 1,0,0,0,811,1234,1,0,0,0,812,813,5,110,0,0,813,818,3,292,146,0,814, - 815,5,3,0,0,815,817,3,292,146,0,816,814,1,0,0,0,817,820,1,0,0,0, - 818,816,1,0,0,0,818,819,1,0,0,0,819,821,1,0,0,0,820,818,1,0,0,0, - 821,822,5,269,0,0,822,827,3,288,144,0,823,824,5,3,0,0,824,826,3, - 288,144,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,833,1,0,0,0,829,827,1,0,0,0,830,831,5,304,0,0,831,832, - 5,20,0,0,832,834,5,193,0,0,833,830,1,0,0,0,833,834,1,0,0,0,834,838, - 1,0,0,0,835,836,5,111,0,0,836,837,5,36,0,0,837,839,3,286,143,0,838, - 835,1,0,0,0,838,839,1,0,0,0,839,842,1,0,0,0,840,841,5,122,0,0,841, - 843,3,268,134,0,842,840,1,0,0,0,842,843,1,0,0,0,843,1234,1,0,0,0, - 844,855,5,110,0,0,845,850,3,292,146,0,846,847,5,3,0,0,847,849,3, - 292,146,0,848,846,1,0,0,0,849,852,1,0,0,0,850,848,1,0,0,0,850,851, - 1,0,0,0,851,856,1,0,0,0,852,850,1,0,0,0,853,854,5,22,0,0,854,856, - 5,215,0,0,855,845,1,0,0,0,855,853,1,0,0,0,856,857,1,0,0,0,857,858, - 5,190,0,0,858,859,3,252,126,0,859,860,5,269,0,0,860,864,3,288,144, - 0,861,862,5,304,0,0,862,863,5,110,0,0,863,865,5,193,0,0,864,861, - 1,0,0,0,864,865,1,0,0,0,865,1234,1,0,0,0,866,870,5,233,0,0,867,868, - 5,20,0,0,868,869,5,193,0,0,869,871,5,103,0,0,870,867,1,0,0,0,870, - 871,1,0,0,0,871,872,1,0,0,0,872,877,3,292,146,0,873,874,5,3,0,0, - 874,876,3,292,146,0,875,873,1,0,0,0,876,879,1,0,0,0,877,875,1,0, - 0,0,877,878,1,0,0,0,878,880,1,0,0,0,879,877,1,0,0,0,880,881,5,105, - 0,0,881,886,3,288,144,0,882,883,5,3,0,0,883,885,3,288,144,0,884, - 882,1,0,0,0,885,888,1,0,0,0,886,884,1,0,0,0,886,887,1,0,0,0,887, - 892,1,0,0,0,888,886,1,0,0,0,889,890,5,111,0,0,890,891,5,36,0,0,891, - 893,3,286,143,0,892,889,1,0,0,0,892,893,1,0,0,0,893,896,1,0,0,0, - 894,895,5,122,0,0,895,897,3,268,134,0,896,894,1,0,0,0,896,897,1, - 0,0,0,897,1234,1,0,0,0,898,902,5,233,0,0,899,900,5,110,0,0,900,901, - 5,193,0,0,901,903,5,103,0,0,902,899,1,0,0,0,902,903,1,0,0,0,903, - 914,1,0,0,0,904,909,3,292,146,0,905,906,5,3,0,0,906,908,3,292,146, - 0,907,905,1,0,0,0,908,911,1,0,0,0,909,907,1,0,0,0,909,910,1,0,0, - 0,910,915,1,0,0,0,911,909,1,0,0,0,912,913,5,22,0,0,913,915,5,215, - 0,0,914,904,1,0,0,0,914,912,1,0,0,0,915,916,1,0,0,0,916,917,5,190, - 0,0,917,918,3,252,126,0,918,919,5,105,0,0,919,920,3,288,144,0,920, - 1234,1,0,0,0,921,932,5,74,0,0,922,927,3,248,124,0,923,924,5,3,0, - 0,924,926,3,248,124,0,925,923,1,0,0,0,926,929,1,0,0,0,927,925,1, - 0,0,0,927,928,1,0,0,0,928,933,1,0,0,0,929,927,1,0,0,0,930,931,5, - 22,0,0,931,933,5,215,0,0,932,922,1,0,0,0,932,930,1,0,0,0,933,934, - 1,0,0,0,934,935,5,190,0,0,935,936,3,252,126,0,936,937,5,269,0,0, - 937,938,3,288,144,0,938,1234,1,0,0,0,939,940,5,251,0,0,940,944,5, - 235,0,0,941,945,5,22,0,0,942,945,5,180,0,0,943,945,3,294,147,0,944, - 941,1,0,0,0,944,942,1,0,0,0,944,943,1,0,0,0,945,948,1,0,0,0,946, - 947,5,122,0,0,947,949,3,268,134,0,948,946,1,0,0,0,948,949,1,0,0, - 0,949,1234,1,0,0,0,950,951,5,253,0,0,951,954,5,112,0,0,952,953,5, - 190,0,0,953,955,3,252,126,0,954,952,1,0,0,0,954,955,1,0,0,0,955, - 1234,1,0,0,0,956,968,5,95,0,0,957,958,5,1,0,0,958,963,3,212,106, - 0,959,960,5,3,0,0,960,962,3,212,106,0,961,959,1,0,0,0,962,965,1, - 0,0,0,963,961,1,0,0,0,963,964,1,0,0,0,964,966,1,0,0,0,965,963,1, - 0,0,0,966,967,5,2,0,0,967,969,1,0,0,0,968,957,1,0,0,0,968,969,1, - 0,0,0,969,970,1,0,0,0,970,1234,3,16,8,0,971,972,5,95,0,0,972,974, - 5,24,0,0,973,975,5,297,0,0,974,973,1,0,0,0,974,975,1,0,0,0,975,976, - 1,0,0,0,976,1234,3,16,8,0,977,978,5,253,0,0,978,979,5,53,0,0,979, - 980,5,260,0,0,980,1234,3,256,128,0,981,982,5,253,0,0,982,983,5,53, - 0,0,983,984,5,243,0,0,984,1234,3,264,132,0,985,986,5,253,0,0,986, - 987,5,53,0,0,987,988,5,299,0,0,988,1234,3,260,130,0,989,990,5,253, - 0,0,990,991,5,53,0,0,991,992,5,167,0,0,992,993,5,299,0,0,993,1234, - 3,260,130,0,994,995,5,253,0,0,995,996,5,53,0,0,996,997,5,107,0,0, - 997,1234,3,272,136,0,998,999,5,253,0,0,999,1002,5,261,0,0,1000,1001, - 7,2,0,0,1001,1003,3,264,132,0,1002,1000,1,0,0,0,1002,1003,1,0,0, - 0,1003,1010,1,0,0,0,1004,1005,5,154,0,0,1005,1008,3,168,84,0,1006, - 1007,5,90,0,0,1007,1009,3,168,84,0,1008,1006,1,0,0,0,1008,1009,1, - 0,0,0,1009,1011,1,0,0,0,1010,1004,1,0,0,0,1010,1011,1,0,0,0,1011, - 1234,1,0,0,0,1012,1013,5,253,0,0,1013,1016,5,244,0,0,1014,1015,7, - 2,0,0,1015,1017,3,268,134,0,1016,1014,1,0,0,0,1016,1017,1,0,0,0, - 1017,1024,1,0,0,0,1018,1019,5,154,0,0,1019,1022,3,168,84,0,1020, - 1021,5,90,0,0,1021,1023,3,168,84,0,1022,1020,1,0,0,0,1022,1023,1, - 0,0,0,1023,1025,1,0,0,0,1024,1018,1,0,0,0,1024,1025,1,0,0,0,1025, - 1234,1,0,0,0,1026,1027,5,253,0,0,1027,1034,5,43,0,0,1028,1029,5, - 154,0,0,1029,1032,3,168,84,0,1030,1031,5,90,0,0,1031,1033,3,168, - 84,0,1032,1030,1,0,0,0,1032,1033,1,0,0,0,1033,1035,1,0,0,0,1034, - 1028,1,0,0,0,1034,1035,1,0,0,0,1035,1234,1,0,0,0,1036,1037,5,253, - 0,0,1037,1038,5,45,0,0,1038,1039,7,2,0,0,1039,1046,3,254,127,0,1040, - 1041,5,154,0,0,1041,1044,3,168,84,0,1042,1043,5,90,0,0,1043,1045, - 3,168,84,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1047,1,0,0,0, - 1046,1040,1,0,0,0,1046,1047,1,0,0,0,1047,1234,1,0,0,0,1048,1049, - 5,253,0,0,1049,1050,5,256,0,0,1050,1051,5,103,0,0,1051,1234,3,254, - 127,0,1052,1053,5,253,0,0,1053,1054,5,256,0,0,1054,1055,5,103,0, - 0,1055,1056,5,1,0,0,1056,1057,3,18,9,0,1057,1058,5,2,0,0,1058,1234, - 1,0,0,0,1059,1061,5,253,0,0,1060,1062,5,56,0,0,1061,1060,1,0,0,0, - 1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063,1066,5,236,0,0,1064,1065, - 7,2,0,0,1065,1067,3,268,134,0,1066,1064,1,0,0,0,1066,1067,1,0,0, - 0,1067,1234,1,0,0,0,1068,1069,5,253,0,0,1069,1070,5,235,0,0,1070, - 1073,5,112,0,0,1071,1072,7,2,0,0,1072,1074,3,268,134,0,1073,1071, - 1,0,0,0,1073,1074,1,0,0,0,1074,1234,1,0,0,0,1075,1076,5,76,0,0,1076, - 1234,3,254,127,0,1077,1078,5,75,0,0,1078,1234,3,254,127,0,1079,1080, - 5,253,0,0,1080,1083,5,108,0,0,1081,1082,7,2,0,0,1082,1084,3,264, - 132,0,1083,1081,1,0,0,0,1083,1084,1,0,0,0,1084,1091,1,0,0,0,1085, - 1086,5,154,0,0,1086,1089,3,168,84,0,1087,1088,5,90,0,0,1088,1090, - 3,168,84,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1092,1,0,0,0, - 1091,1085,1,0,0,0,1091,1092,1,0,0,0,1092,1234,1,0,0,0,1093,1094, - 5,253,0,0,1094,1101,5,250,0,0,1095,1096,5,154,0,0,1096,1099,3,168, - 84,0,1097,1098,5,90,0,0,1098,1100,3,168,84,0,1099,1097,1,0,0,0,1099, - 1100,1,0,0,0,1100,1102,1,0,0,0,1101,1095,1,0,0,0,1101,1102,1,0,0, - 0,1102,1234,1,0,0,0,1103,1104,5,251,0,0,1104,1105,5,250,0,0,1105, - 1106,5,31,0,0,1106,1234,3,298,149,0,1107,1108,5,227,0,0,1108,1109, - 5,250,0,0,1109,1234,5,31,0,0,1110,1111,5,251,0,0,1111,1112,5,250, - 0,0,1112,1113,3,280,140,0,1113,1114,5,312,0,0,1114,1115,3,136,68, - 0,1115,1234,1,0,0,0,1116,1117,5,227,0,0,1117,1118,5,250,0,0,1118, - 1234,3,280,140,0,1119,1120,5,255,0,0,1120,1129,5,271,0,0,1121,1126, - 3,214,107,0,1122,1123,5,3,0,0,1123,1125,3,214,107,0,1124,1122,1, - 0,0,0,1125,1128,1,0,0,0,1126,1124,1,0,0,0,1126,1127,1,0,0,0,1127, - 1130,1,0,0,0,1128,1126,1,0,0,0,1129,1121,1,0,0,0,1129,1130,1,0,0, - 0,1130,1234,1,0,0,0,1131,1133,5,47,0,0,1132,1134,5,307,0,0,1133, - 1132,1,0,0,0,1133,1134,1,0,0,0,1134,1234,1,0,0,0,1135,1137,5,237, - 0,0,1136,1138,5,307,0,0,1137,1136,1,0,0,0,1137,1138,1,0,0,0,1138, - 1234,1,0,0,0,1139,1140,5,214,0,0,1140,1141,3,294,147,0,1141,1142, - 5,105,0,0,1142,1143,3,16,8,0,1143,1234,1,0,0,0,1144,1145,5,68,0, - 0,1145,1146,5,214,0,0,1146,1234,3,294,147,0,1147,1148,5,93,0,0,1148, - 1158,3,294,147,0,1149,1150,5,290,0,0,1150,1155,3,136,68,0,1151,1152, - 5,3,0,0,1152,1154,3,136,68,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,1159,1,0,0,0,1157,1155, - 1,0,0,0,1158,1149,1,0,0,0,1158,1159,1,0,0,0,1159,1234,1,0,0,0,1160, - 1161,5,93,0,0,1161,1162,5,121,0,0,1162,1172,3,168,84,0,1163,1164, - 5,290,0,0,1164,1169,3,136,68,0,1165,1166,5,3,0,0,1166,1168,3,136, - 68,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,1173,1,0,0,0,1171,1169,1,0,0,0,1172,1163,1,0,0, - 0,1172,1173,1,0,0,0,1173,1234,1,0,0,0,1174,1175,5,76,0,0,1175,1176, - 5,126,0,0,1176,1234,3,294,147,0,1177,1178,5,76,0,0,1178,1179,5,198, - 0,0,1179,1234,3,294,147,0,1180,1181,5,251,0,0,1181,1182,5,205,0, - 0,1182,1234,3,222,111,0,1183,1184,5,251,0,0,1184,1185,5,267,0,0, - 1185,1188,5,311,0,0,1186,1189,5,157,0,0,1187,1189,3,136,68,0,1188, - 1186,1,0,0,0,1188,1187,1,0,0,0,1189,1234,1,0,0,0,1190,1191,5,287, - 0,0,1191,1192,3,256,128,0,1192,1193,5,251,0,0,1193,1198,3,210,105, - 0,1194,1195,5,3,0,0,1195,1197,3,210,105,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,1203,1,0,0, - 0,1200,1198,1,0,0,0,1201,1202,5,301,0,0,1202,1204,3,138,69,0,1203, - 1201,1,0,0,0,1203,1204,1,0,0,0,1204,1234,1,0,0,0,1205,1206,5,169, - 0,0,1206,1207,5,130,0,0,1207,1212,3,256,128,0,1208,1210,5,28,0,0, - 1209,1208,1,0,0,0,1209,1210,1,0,0,0,1210,1211,1,0,0,0,1211,1213, - 3,294,147,0,1212,1209,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0, - 0,1214,1215,5,290,0,0,1215,1216,3,72,36,0,1216,1217,5,190,0,0,1217, - 1219,3,136,68,0,1218,1220,3,194,97,0,1219,1218,1,0,0,0,1220,1221, - 1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0,0,1222,1234,1,0,0,0,1223, - 1224,5,253,0,0,1224,1225,5,46,0,0,1225,1226,5,190,0,0,1226,1227, - 5,260,0,0,1227,1234,3,256,128,0,1228,1229,5,253,0,0,1229,1230,5, - 46,0,0,1230,1231,5,190,0,0,1231,1232,5,44,0,0,1232,1234,3,276,138, - 0,1233,335,1,0,0,0,1233,336,1,0,0,0,1233,338,1,0,0,0,1233,360,1, - 0,0,0,1233,370,1,0,0,0,1233,386,1,0,0,0,1233,396,1,0,0,0,1233,403, - 1,0,0,0,1233,410,1,0,0,0,1233,448,1,0,0,0,1233,478,1,0,0,0,1233, - 485,1,0,0,0,1233,493,1,0,0,0,1233,500,1,0,0,0,1233,503,1,0,0,0,1233, - 512,1,0,0,0,1233,521,1,0,0,0,1233,530,1,0,0,0,1233,541,1,0,0,0,1233, - 557,1,0,0,0,1233,574,1,0,0,0,1233,589,1,0,0,0,1233,604,1,0,0,0,1233, - 618,1,0,0,0,1233,625,1,0,0,0,1233,632,1,0,0,0,1233,655,1,0,0,0,1233, - 661,1,0,0,0,1233,690,1,0,0,0,1233,712,1,0,0,0,1233,716,1,0,0,0,1233, - 724,1,0,0,0,1233,736,1,0,0,0,1233,744,1,0,0,0,1233,751,1,0,0,0,1233, - 758,1,0,0,0,1233,765,1,0,0,0,1233,780,1,0,0,0,1233,786,1,0,0,0,1233, - 793,1,0,0,0,1233,805,1,0,0,0,1233,812,1,0,0,0,1233,844,1,0,0,0,1233, - 866,1,0,0,0,1233,898,1,0,0,0,1233,921,1,0,0,0,1233,939,1,0,0,0,1233, - 950,1,0,0,0,1233,956,1,0,0,0,1233,971,1,0,0,0,1233,977,1,0,0,0,1233, - 981,1,0,0,0,1233,985,1,0,0,0,1233,989,1,0,0,0,1233,994,1,0,0,0,1233, - 998,1,0,0,0,1233,1012,1,0,0,0,1233,1026,1,0,0,0,1233,1036,1,0,0, - 0,1233,1048,1,0,0,0,1233,1052,1,0,0,0,1233,1059,1,0,0,0,1233,1068, - 1,0,0,0,1233,1075,1,0,0,0,1233,1077,1,0,0,0,1233,1079,1,0,0,0,1233, - 1093,1,0,0,0,1233,1103,1,0,0,0,1233,1107,1,0,0,0,1233,1110,1,0,0, - 0,1233,1116,1,0,0,0,1233,1119,1,0,0,0,1233,1131,1,0,0,0,1233,1135, - 1,0,0,0,1233,1139,1,0,0,0,1233,1144,1,0,0,0,1233,1147,1,0,0,0,1233, - 1160,1,0,0,0,1233,1174,1,0,0,0,1233,1177,1,0,0,0,1233,1180,1,0,0, - 0,1233,1183,1,0,0,0,1233,1190,1,0,0,0,1233,1205,1,0,0,0,1233,1223, - 1,0,0,0,1233,1228,1,0,0,0,1234,17,1,0,0,0,1235,1237,3,20,10,0,1236, - 1235,1,0,0,0,1236,1237,1,0,0,0,1237,1238,1,0,0,0,1238,1239,3,22, - 11,0,1239,19,1,0,0,0,1240,1241,5,304,0,0,1241,1246,3,224,112,0,1242, - 1243,5,3,0,0,1243,1245,3,224,112,0,1244,1242,1,0,0,0,1245,1248,1, - 0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247,21,1,0,0,0,1248,1246, - 1,0,0,0,1249,1251,3,24,12,0,1250,1249,1,0,0,0,1250,1251,1,0,0,0, - 1251,1252,1,0,0,0,1252,1253,3,40,20,0,1253,23,1,0,0,0,1254,1256, - 5,304,0,0,1255,1257,5,221,0,0,1256,1255,1,0,0,0,1256,1257,1,0,0, - 0,1257,1258,1,0,0,0,1258,1263,3,66,33,0,1259,1260,5,3,0,0,1260,1262, - 3,66,33,0,1261,1259,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0, - 1263,1264,1,0,0,0,1264,25,1,0,0,0,1265,1263,1,0,0,0,1266,1269,3, - 28,14,0,1267,1269,3,30,15,0,1268,1266,1,0,0,0,1268,1267,1,0,0,0, - 1269,27,1,0,0,0,1270,1271,3,278,139,0,1271,1274,3,184,92,0,1272, - 1273,5,182,0,0,1273,1275,5,183,0,0,1274,1272,1,0,0,0,1274,1275,1, - 0,0,0,1275,1278,1,0,0,0,1276,1277,5,46,0,0,1277,1279,3,168,84,0, - 1278,1276,1,0,0,0,1278,1279,1,0,0,0,1279,1282,1,0,0,0,1280,1281, - 5,304,0,0,1281,1283,3,32,16,0,1282,1280,1,0,0,0,1282,1283,1,0,0, - 0,1283,29,1,0,0,0,1284,1285,5,154,0,0,1285,1288,3,256,128,0,1286, - 1287,7,3,0,0,1287,1289,5,216,0,0,1288,1286,1,0,0,0,1288,1289,1,0, - 0,0,1289,31,1,0,0,0,1290,1291,5,1,0,0,1291,1292,3,34,17,0,1292,1293, - 5,2,0,0,1293,33,1,0,0,0,1294,1299,3,36,18,0,1295,1296,5,3,0,0,1296, - 1298,3,36,18,0,1297,1295,1,0,0,0,1298,1301,1,0,0,0,1299,1297,1,0, - 0,0,1299,1300,1,0,0,0,1300,35,1,0,0,0,1301,1299,1,0,0,0,1302,1303, - 3,294,147,0,1303,1304,5,312,0,0,1304,1305,3,38,19,0,1305,37,1,0, - 0,0,1306,1309,5,70,0,0,1307,1309,3,136,68,0,1308,1306,1,0,0,0,1308, - 1307,1,0,0,0,1309,39,1,0,0,0,1310,1321,3,46,23,0,1311,1312,5,195, - 0,0,1312,1313,5,36,0,0,1313,1318,3,50,25,0,1314,1315,5,3,0,0,1315, - 1317,3,50,25,0,1316,1314,1,0,0,0,1317,1320,1,0,0,0,1318,1316,1,0, - 0,0,1318,1319,1,0,0,0,1319,1322,1,0,0,0,1320,1318,1,0,0,0,1321,1311, - 1,0,0,0,1321,1322,1,0,0,0,1322,1328,1,0,0,0,1323,1324,5,188,0,0, - 1324,1326,3,44,22,0,1325,1327,7,4,0,0,1326,1325,1,0,0,0,1326,1327, - 1,0,0,0,1327,1329,1,0,0,0,1328,1323,1,0,0,0,1328,1329,1,0,0,0,1329, - 1343,1,0,0,0,1330,1331,5,155,0,0,1331,1344,3,42,21,0,1332,1333,5, - 98,0,0,1333,1335,7,5,0,0,1334,1336,3,44,22,0,1335,1334,1,0,0,0,1335, - 1336,1,0,0,0,1336,1337,1,0,0,0,1337,1341,7,4,0,0,1338,1342,5,192, - 0,0,1339,1340,5,304,0,0,1340,1342,5,266,0,0,1341,1338,1,0,0,0,1341, - 1339,1,0,0,0,1342,1344,1,0,0,0,1343,1330,1,0,0,0,1343,1332,1,0,0, - 0,1343,1344,1,0,0,0,1344,41,1,0,0,0,1345,1348,5,22,0,0,1346,1348, - 3,44,22,0,1347,1345,1,0,0,0,1347,1346,1,0,0,0,1348,43,1,0,0,0,1349, - 1350,7,6,0,0,1350,45,1,0,0,0,1351,1352,6,23,-1,0,1352,1353,3,48, - 24,0,1353,1368,1,0,0,0,1354,1355,10,2,0,0,1355,1357,5,128,0,0,1356, - 1358,3,68,34,0,1357,1356,1,0,0,0,1357,1358,1,0,0,0,1358,1359,1,0, - 0,0,1359,1367,3,46,23,3,1360,1361,10,1,0,0,1361,1363,7,7,0,0,1362, - 1364,3,68,34,0,1363,1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365,1,0, - 0,0,1365,1367,3,46,23,2,1366,1354,1,0,0,0,1366,1360,1,0,0,0,1367, - 1370,1,0,0,0,1368,1366,1,0,0,0,1368,1369,1,0,0,0,1369,47,1,0,0,0, - 1370,1368,1,0,0,0,1371,1388,3,52,26,0,1372,1373,5,260,0,0,1373,1388, - 3,256,128,0,1374,1375,5,296,0,0,1375,1380,3,136,68,0,1376,1377,5, - 3,0,0,1377,1379,3,136,68,0,1378,1376,1,0,0,0,1379,1382,1,0,0,0,1380, - 1378,1,0,0,0,1380,1381,1,0,0,0,1381,1388,1,0,0,0,1382,1380,1,0,0, - 0,1383,1384,5,1,0,0,1384,1385,3,40,20,0,1385,1386,5,2,0,0,1386,1388, - 1,0,0,0,1387,1371,1,0,0,0,1387,1372,1,0,0,0,1387,1374,1,0,0,0,1387, - 1383,1,0,0,0,1388,49,1,0,0,0,1389,1392,3,276,138,0,1390,1392,3,136, - 68,0,1391,1389,1,0,0,0,1391,1390,1,0,0,0,1392,1394,1,0,0,0,1393, - 1395,7,8,0,0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1398,1,0,0, - 0,1396,1397,5,185,0,0,1397,1399,7,9,0,0,1398,1396,1,0,0,0,1398,1399, - 1,0,0,0,1399,51,1,0,0,0,1400,1402,5,248,0,0,1401,1403,3,68,34,0, - 1402,1401,1,0,0,0,1402,1403,1,0,0,0,1403,1404,1,0,0,0,1404,1409, - 3,70,35,0,1405,1406,5,3,0,0,1406,1408,3,70,35,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,1421, - 1,0,0,0,1411,1409,1,0,0,0,1412,1413,5,105,0,0,1413,1418,3,72,36, - 0,1414,1415,5,3,0,0,1415,1417,3,72,36,0,1416,1414,1,0,0,0,1417,1420, - 1,0,0,0,1418,1416,1,0,0,0,1418,1419,1,0,0,0,1419,1422,1,0,0,0,1420, - 1418,1,0,0,0,1421,1412,1,0,0,0,1421,1422,1,0,0,0,1422,1425,1,0,0, - 0,1423,1424,5,301,0,0,1424,1426,3,138,69,0,1425,1423,1,0,0,0,1425, - 1426,1,0,0,0,1426,1430,1,0,0,0,1427,1428,5,114,0,0,1428,1429,5,36, - 0,0,1429,1431,3,54,27,0,1430,1427,1,0,0,0,1430,1431,1,0,0,0,1431, - 1434,1,0,0,0,1432,1433,5,117,0,0,1433,1435,3,138,69,0,1434,1432, - 1,0,0,0,1434,1435,1,0,0,0,1435,1445,1,0,0,0,1436,1437,5,303,0,0, - 1437,1442,3,62,31,0,1438,1439,5,3,0,0,1439,1441,3,62,31,0,1440,1438, - 1,0,0,0,1441,1444,1,0,0,0,1442,1440,1,0,0,0,1442,1443,1,0,0,0,1443, - 1446,1,0,0,0,1444,1442,1,0,0,0,1445,1436,1,0,0,0,1445,1446,1,0,0, - 0,1446,53,1,0,0,0,1447,1449,3,68,34,0,1448,1447,1,0,0,0,1448,1449, - 1,0,0,0,1449,1450,1,0,0,0,1450,1455,3,56,28,0,1451,1452,5,3,0,0, - 1452,1454,3,56,28,0,1453,1451,1,0,0,0,1454,1457,1,0,0,0,1455,1453, - 1,0,0,0,1455,1456,1,0,0,0,1456,55,1,0,0,0,1457,1455,1,0,0,0,1458, - 1499,3,58,29,0,1459,1460,5,238,0,0,1460,1469,5,1,0,0,1461,1466,3, - 58,29,0,1462,1463,5,3,0,0,1463,1465,3,58,29,0,1464,1462,1,0,0,0, - 1465,1468,1,0,0,0,1466,1464,1,0,0,0,1466,1467,1,0,0,0,1467,1470, - 1,0,0,0,1468,1466,1,0,0,0,1469,1461,1,0,0,0,1469,1470,1,0,0,0,1470, - 1471,1,0,0,0,1471,1499,5,2,0,0,1472,1473,5,55,0,0,1473,1482,5,1, - 0,0,1474,1479,3,58,29,0,1475,1476,5,3,0,0,1476,1478,3,58,29,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,1483,1,0,0,0,1481,1479,1,0,0,0,1482,1474,1,0,0,0,1482,1483, - 1,0,0,0,1483,1484,1,0,0,0,1484,1499,5,2,0,0,1485,1486,5,115,0,0, - 1486,1487,5,252,0,0,1487,1488,5,1,0,0,1488,1493,3,58,29,0,1489,1490, - 5,3,0,0,1490,1492,3,58,29,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,2,0,0,1497,1499,1,0,0,0,1498,1458,1,0,0,0,1498, - 1459,1,0,0,0,1498,1472,1,0,0,0,1498,1485,1,0,0,0,1499,57,1,0,0,0, - 1500,1509,5,1,0,0,1501,1506,3,60,30,0,1502,1503,5,3,0,0,1503,1505, - 3,60,30,0,1504,1502,1,0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0,0, - 1506,1507,1,0,0,0,1507,1510,1,0,0,0,1508,1506,1,0,0,0,1509,1501, - 1,0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511,1514,5,2,0,0,1512, - 1514,3,60,30,0,1513,1500,1,0,0,0,1513,1512,1,0,0,0,1514,59,1,0,0, - 0,1515,1518,3,276,138,0,1516,1518,3,136,68,0,1517,1515,1,0,0,0,1517, - 1516,1,0,0,0,1518,61,1,0,0,0,1519,1520,3,294,147,0,1520,1521,5,28, - 0,0,1521,1522,5,1,0,0,1522,1523,3,64,32,0,1523,1524,5,2,0,0,1524, - 63,1,0,0,0,1525,1527,3,294,147,0,1526,1525,1,0,0,0,1526,1527,1,0, - 0,0,1527,1538,1,0,0,0,1528,1529,5,201,0,0,1529,1530,5,36,0,0,1530, - 1535,3,136,68,0,1531,1532,5,3,0,0,1532,1534,3,136,68,0,1533,1531, - 1,0,0,0,1534,1537,1,0,0,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536, - 1539,1,0,0,0,1537,1535,1,0,0,0,1538,1528,1,0,0,0,1538,1539,1,0,0, - 0,1539,1550,1,0,0,0,1540,1541,5,195,0,0,1541,1542,5,36,0,0,1542, - 1547,3,50,25,0,1543,1544,5,3,0,0,1544,1546,3,50,25,0,1545,1543,1, - 0,0,0,1546,1549,1,0,0,0,1547,1545,1,0,0,0,1547,1548,1,0,0,0,1548, - 1551,1,0,0,0,1549,1547,1,0,0,0,1550,1540,1,0,0,0,1550,1551,1,0,0, - 0,1551,1553,1,0,0,0,1552,1554,3,198,99,0,1553,1552,1,0,0,0,1553, - 1554,1,0,0,0,1554,65,1,0,0,0,1555,1557,3,294,147,0,1556,1558,3,108, - 54,0,1557,1556,1,0,0,0,1557,1558,1,0,0,0,1558,1559,1,0,0,0,1559, - 1560,5,28,0,0,1560,1561,5,1,0,0,1561,1562,3,22,11,0,1562,1563,5, - 2,0,0,1563,67,1,0,0,0,1564,1565,7,10,0,0,1565,69,1,0,0,0,1566,1569, - 3,276,138,0,1567,1569,3,136,68,0,1568,1566,1,0,0,0,1568,1567,1,0, - 0,0,1569,1574,1,0,0,0,1570,1572,5,28,0,0,1571,1570,1,0,0,0,1571, - 1572,1,0,0,0,1572,1573,1,0,0,0,1573,1575,3,294,147,0,1574,1571,1, - 0,0,0,1574,1575,1,0,0,0,1575,1585,1,0,0,0,1576,1577,3,144,72,0,1577, - 1578,5,4,0,0,1578,1581,5,320,0,0,1579,1580,5,28,0,0,1580,1582,3, - 108,54,0,1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,1585,1,0,0,0,1583, - 1585,5,320,0,0,1584,1568,1,0,0,0,1584,1576,1,0,0,0,1584,1583,1,0, - 0,0,1585,71,1,0,0,0,1586,1587,6,36,-1,0,1587,1588,3,78,39,0,1588, - 1607,1,0,0,0,1589,1603,10,2,0,0,1590,1591,5,54,0,0,1591,1592,5,136, - 0,0,1592,1604,3,78,39,0,1593,1594,3,74,37,0,1594,1595,5,136,0,0, - 1595,1596,3,72,36,0,1596,1597,3,76,38,0,1597,1604,1,0,0,0,1598,1599, - 5,172,0,0,1599,1600,3,74,37,0,1600,1601,5,136,0,0,1601,1602,3,78, - 39,0,1602,1604,1,0,0,0,1603,1590,1,0,0,0,1603,1593,1,0,0,0,1603, - 1598,1,0,0,0,1604,1606,1,0,0,0,1605,1589,1,0,0,0,1606,1609,1,0,0, - 0,1607,1605,1,0,0,0,1607,1608,1,0,0,0,1608,73,1,0,0,0,1609,1607, - 1,0,0,0,1610,1612,5,125,0,0,1611,1610,1,0,0,0,1611,1612,1,0,0,0, - 1612,1626,1,0,0,0,1613,1615,5,152,0,0,1614,1616,5,197,0,0,1615,1614, - 1,0,0,0,1615,1616,1,0,0,0,1616,1626,1,0,0,0,1617,1619,5,234,0,0, - 1618,1620,5,197,0,0,1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1626, - 1,0,0,0,1621,1623,5,106,0,0,1622,1624,5,197,0,0,1623,1622,1,0,0, - 0,1623,1624,1,0,0,0,1624,1626,1,0,0,0,1625,1611,1,0,0,0,1625,1613, - 1,0,0,0,1625,1617,1,0,0,0,1625,1621,1,0,0,0,1626,75,1,0,0,0,1627, - 1628,5,190,0,0,1628,1642,3,138,69,0,1629,1630,5,290,0,0,1630,1631, - 5,1,0,0,1631,1636,3,294,147,0,1632,1633,5,3,0,0,1633,1635,3,294, - 147,0,1634,1632,1,0,0,0,1635,1638,1,0,0,0,1636,1634,1,0,0,0,1636, - 1637,1,0,0,0,1637,1639,1,0,0,0,1638,1636,1,0,0,0,1639,1640,5,2,0, - 0,1640,1642,1,0,0,0,1641,1627,1,0,0,0,1641,1629,1,0,0,0,1642,77, - 1,0,0,0,1643,1650,3,88,44,0,1644,1645,5,262,0,0,1645,1646,3,80,40, - 0,1646,1647,5,1,0,0,1647,1648,3,136,68,0,1648,1649,5,2,0,0,1649, - 1651,1,0,0,0,1650,1644,1,0,0,0,1650,1651,1,0,0,0,1651,79,1,0,0,0, - 1652,1653,7,11,0,0,1653,81,1,0,0,0,1654,1655,7,12,0,0,1655,83,1, - 0,0,0,1656,1663,5,89,0,0,1657,1659,5,274,0,0,1658,1660,3,168,84, - 0,1659,1658,1,0,0,0,1659,1660,1,0,0,0,1660,1661,1,0,0,0,1661,1663, - 3,86,43,0,1662,1656,1,0,0,0,1662,1657,1,0,0,0,1663,85,1,0,0,0,1664, - 1665,5,304,0,0,1665,1669,5,51,0,0,1666,1667,5,306,0,0,1667,1669, - 5,51,0,0,1668,1664,1,0,0,0,1668,1666,1,0,0,0,1669,87,1,0,0,0,1670, - 1753,3,102,51,0,1671,1672,5,166,0,0,1672,1683,5,1,0,0,1673,1674, - 5,201,0,0,1674,1675,5,36,0,0,1675,1680,3,136,68,0,1676,1677,5,3, - 0,0,1677,1679,3,136,68,0,1678,1676,1,0,0,0,1679,1682,1,0,0,0,1680, - 1678,1,0,0,0,1680,1681,1,0,0,0,1681,1684,1,0,0,0,1682,1680,1,0,0, - 0,1683,1673,1,0,0,0,1683,1684,1,0,0,0,1684,1695,1,0,0,0,1685,1686, - 5,195,0,0,1686,1687,5,36,0,0,1687,1692,3,50,25,0,1688,1689,5,3,0, - 0,1689,1691,3,50,25,0,1690,1688,1,0,0,0,1691,1694,1,0,0,0,1692,1690, - 1,0,0,0,1692,1693,1,0,0,0,1693,1696,1,0,0,0,1694,1692,1,0,0,0,1695, - 1685,1,0,0,0,1695,1696,1,0,0,0,1696,1706,1,0,0,0,1697,1698,5,168, - 0,0,1698,1703,3,90,45,0,1699,1700,5,3,0,0,1700,1702,3,90,45,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,1707,1,0,0,0,1705,1703,1,0,0,0,1706,1697,1,0,0,0,1706,1707, - 1,0,0,0,1707,1709,1,0,0,0,1708,1710,3,92,46,0,1709,1708,1,0,0,0, - 1709,1710,1,0,0,0,1710,1714,1,0,0,0,1711,1712,5,21,0,0,1712,1713, - 5,163,0,0,1713,1715,3,96,48,0,1714,1711,1,0,0,0,1714,1715,1,0,0, - 0,1715,1717,1,0,0,0,1716,1718,7,13,0,0,1717,1716,1,0,0,0,1717,1718, - 1,0,0,0,1718,1719,1,0,0,0,1719,1720,5,206,0,0,1720,1721,5,1,0,0, - 1721,1722,3,204,102,0,1722,1732,5,2,0,0,1723,1724,5,257,0,0,1724, - 1729,3,98,49,0,1725,1726,5,3,0,0,1726,1728,3,98,49,0,1727,1725,1, - 0,0,0,1728,1731,1,0,0,0,1729,1727,1,0,0,0,1729,1730,1,0,0,0,1730, - 1733,1,0,0,0,1731,1729,1,0,0,0,1732,1723,1,0,0,0,1732,1733,1,0,0, - 0,1733,1734,1,0,0,0,1734,1735,5,71,0,0,1735,1740,3,100,50,0,1736, - 1737,5,3,0,0,1737,1739,3,100,50,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,1751,5,2,0,0,1744,1746,5,28,0,0,1745,1744,1,0, - 0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747,1749,3,294,147,0,1748, - 1750,3,108,54,0,1749,1748,1,0,0,0,1749,1750,1,0,0,0,1750,1752,1, - 0,0,0,1751,1745,1,0,0,0,1751,1752,1,0,0,0,1752,1754,1,0,0,0,1753, - 1671,1,0,0,0,1753,1754,1,0,0,0,1754,89,1,0,0,0,1755,1756,3,136,68, - 0,1756,1757,5,28,0,0,1757,1758,3,294,147,0,1758,91,1,0,0,0,1759, - 1760,5,191,0,0,1760,1761,5,239,0,0,1761,1762,5,207,0,0,1762,1771, - 5,163,0,0,1763,1764,5,22,0,0,1764,1765,5,240,0,0,1765,1766,5,207, - 0,0,1766,1768,5,163,0,0,1767,1769,3,94,47,0,1768,1767,1,0,0,0,1768, - 1769,1,0,0,0,1769,1771,1,0,0,0,1770,1759,1,0,0,0,1770,1763,1,0,0, - 0,1771,93,1,0,0,0,1772,1773,5,253,0,0,1773,1774,5,85,0,0,1774,1782, - 5,165,0,0,1775,1776,5,189,0,0,1776,1777,5,85,0,0,1777,1782,5,165, - 0,0,1778,1779,5,304,0,0,1779,1780,5,284,0,0,1780,1782,5,240,0,0, - 1781,1772,1,0,0,0,1781,1775,1,0,0,0,1781,1778,1,0,0,0,1782,95,1, - 0,0,0,1783,1784,5,5,0,0,1784,1785,5,269,0,0,1785,1786,5,174,0,0, - 1786,1803,5,239,0,0,1787,1788,5,5,0,0,1788,1789,5,204,0,0,1789,1790, - 5,148,0,0,1790,1803,5,239,0,0,1791,1792,5,5,0,0,1792,1793,5,269, - 0,0,1793,1794,5,101,0,0,1794,1803,3,294,147,0,1795,1796,5,5,0,0, - 1796,1797,5,269,0,0,1797,1798,5,148,0,0,1798,1803,3,294,147,0,1799, - 1800,5,5,0,0,1800,1801,5,269,0,0,1801,1803,3,294,147,0,1802,1783, - 1,0,0,0,1802,1787,1,0,0,0,1802,1791,1,0,0,0,1802,1795,1,0,0,0,1802, - 1799,1,0,0,0,1803,97,1,0,0,0,1804,1805,3,294,147,0,1805,1806,5,312, - 0,0,1806,1807,5,1,0,0,1807,1812,3,294,147,0,1808,1809,5,3,0,0,1809, - 1811,3,294,147,0,1810,1808,1,0,0,0,1811,1814,1,0,0,0,1812,1810,1, - 0,0,0,1812,1813,1,0,0,0,1813,1815,1,0,0,0,1814,1812,1,0,0,0,1815, - 1816,5,2,0,0,1816,99,1,0,0,0,1817,1818,3,294,147,0,1818,1819,5,28, - 0,0,1819,1820,3,136,68,0,1820,101,1,0,0,0,1821,1829,3,110,55,0,1822, - 1824,5,28,0,0,1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1825,1,0, - 0,0,1825,1827,3,294,147,0,1826,1828,3,108,54,0,1827,1826,1,0,0,0, - 1827,1828,1,0,0,0,1828,1830,1,0,0,0,1829,1823,1,0,0,0,1829,1830, - 1,0,0,0,1830,103,1,0,0,0,1831,1832,5,1,0,0,1832,1837,3,278,139,0, - 1833,1834,5,3,0,0,1834,1836,3,278,139,0,1835,1833,1,0,0,0,1836,1839, - 1,0,0,0,1837,1835,1,0,0,0,1837,1838,1,0,0,0,1838,1840,1,0,0,0,1839, - 1837,1,0,0,0,1840,1841,5,2,0,0,1841,105,1,0,0,0,1842,1843,5,1,0, - 0,1843,1848,3,276,138,0,1844,1845,5,3,0,0,1845,1847,3,276,138,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,1851,1,0,0,0,1850,1848,1,0,0,0,1851,1852,5,2,0,0,1852, - 107,1,0,0,0,1853,1854,5,1,0,0,1854,1859,3,294,147,0,1855,1856,5, - 3,0,0,1856,1858,3,294,147,0,1857,1855,1,0,0,0,1858,1861,1,0,0,0, - 1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,1862,1,0,0,0,1861,1859, - 1,0,0,0,1862,1863,5,2,0,0,1863,109,1,0,0,0,1864,1866,3,254,127,0, - 1865,1867,3,282,141,0,1866,1865,1,0,0,0,1866,1867,1,0,0,0,1867,1936, - 1,0,0,0,1868,1869,5,1,0,0,1869,1870,3,22,11,0,1870,1871,5,2,0,0, - 1871,1936,1,0,0,0,1872,1873,5,285,0,0,1873,1874,5,1,0,0,1874,1879, - 3,136,68,0,1875,1876,5,3,0,0,1876,1878,3,136,68,0,1877,1875,1,0, - 0,0,1878,1881,1,0,0,0,1879,1877,1,0,0,0,1879,1880,1,0,0,0,1880,1882, - 1,0,0,0,1881,1879,1,0,0,0,1882,1885,5,2,0,0,1883,1884,5,304,0,0, - 1884,1886,5,196,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0,0,1886,1936, - 1,0,0,0,1887,1888,5,149,0,0,1888,1889,5,1,0,0,1889,1890,3,22,11, - 0,1890,1891,5,2,0,0,1891,1936,1,0,0,0,1892,1893,5,260,0,0,1893,1894, - 5,1,0,0,1894,1895,3,122,61,0,1895,1896,5,2,0,0,1896,1936,1,0,0,0, - 1897,1898,5,1,0,0,1898,1899,3,72,36,0,1899,1900,5,2,0,0,1900,1936, - 1,0,0,0,1901,1902,5,142,0,0,1902,1903,5,1,0,0,1903,1904,3,146,73, - 0,1904,1905,5,45,0,0,1905,1906,5,1,0,0,1906,1911,3,112,56,0,1907, - 1908,5,3,0,0,1908,1910,3,112,56,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,1914,1,0,0,0,1913, - 1911,1,0,0,0,1914,1926,5,2,0,0,1915,1916,5,210,0,0,1916,1917,5,1, - 0,0,1917,1918,3,114,57,0,1918,1919,5,2,0,0,1919,1927,1,0,0,0,1920, - 1921,5,210,0,0,1921,1922,5,70,0,0,1922,1923,5,1,0,0,1923,1924,3, - 120,60,0,1924,1925,5,2,0,0,1925,1927,1,0,0,0,1926,1915,1,0,0,0,1926, - 1920,1,0,0,0,1926,1927,1,0,0,0,1927,1931,1,0,0,0,1928,1929,7,14, - 0,0,1929,1930,5,190,0,0,1930,1932,5,89,0,0,1931,1928,1,0,0,0,1931, - 1932,1,0,0,0,1932,1933,1,0,0,0,1933,1934,5,2,0,0,1934,1936,1,0,0, - 0,1935,1864,1,0,0,0,1935,1868,1,0,0,0,1935,1872,1,0,0,0,1935,1887, - 1,0,0,0,1935,1892,1,0,0,0,1935,1897,1,0,0,0,1935,1901,1,0,0,0,1936, - 111,1,0,0,0,1937,1938,3,294,147,0,1938,1939,5,103,0,0,1939,1940, - 5,196,0,0,1940,2015,1,0,0,0,1941,1942,3,294,147,0,1942,1945,3,184, - 92,0,1943,1944,5,205,0,0,1944,1946,3,168,84,0,1945,1943,1,0,0,0, - 1945,1946,1,0,0,0,1946,1951,1,0,0,0,1947,1948,3,156,78,0,1948,1949, - 5,190,0,0,1949,1950,5,85,0,0,1950,1952,1,0,0,0,1951,1947,1,0,0,0, - 1951,1952,1,0,0,0,1952,1957,1,0,0,0,1953,1954,3,156,78,0,1954,1955, - 5,190,0,0,1955,1956,5,89,0,0,1956,1958,1,0,0,0,1957,1953,1,0,0,0, - 1957,1958,1,0,0,0,1958,2015,1,0,0,0,1959,1960,3,294,147,0,1960,1961, - 3,184,92,0,1961,1962,5,104,0,0,1962,1965,3,150,75,0,1963,1964,5, - 205,0,0,1964,1966,3,168,84,0,1965,1963,1,0,0,0,1965,1966,1,0,0,0, - 1966,1970,1,0,0,0,1967,1968,3,158,79,0,1968,1969,5,308,0,0,1969, - 1971,1,0,0,0,1970,1967,1,0,0,0,1970,1971,1,0,0,0,1971,1979,1,0,0, - 0,1972,1973,7,15,0,0,1973,1977,5,218,0,0,1974,1975,5,190,0,0,1975, - 1976,5,242,0,0,1976,1978,5,264,0,0,1977,1974,1,0,0,0,1977,1978,1, - 0,0,0,1978,1980,1,0,0,0,1979,1972,1,0,0,0,1979,1980,1,0,0,0,1980, - 1985,1,0,0,0,1981,1982,3,160,80,0,1982,1983,5,190,0,0,1983,1984, - 5,85,0,0,1984,1986,1,0,0,0,1985,1981,1,0,0,0,1985,1986,1,0,0,0,1986, - 1991,1,0,0,0,1987,1988,3,160,80,0,1988,1989,5,190,0,0,1989,1990, - 5,89,0,0,1990,1992,1,0,0,0,1991,1987,1,0,0,0,1991,1992,1,0,0,0,1992, - 2015,1,0,0,0,1993,1995,5,173,0,0,1994,1996,5,205,0,0,1995,1994,1, - 0,0,0,1995,1996,1,0,0,0,1996,1997,1,0,0,0,1997,2000,3,168,84,0,1998, - 1999,5,28,0,0,1999,2001,3,294,147,0,2000,1998,1,0,0,0,2000,2001, - 1,0,0,0,2001,2002,1,0,0,0,2002,2003,5,45,0,0,2003,2004,5,1,0,0,2004, - 2009,3,112,56,0,2005,2006,5,3,0,0,2006,2008,3,112,56,0,2007,2005, - 1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010,1,0,0,0,2010, - 2012,1,0,0,0,2011,2009,1,0,0,0,2012,2013,5,2,0,0,2013,2015,1,0,0, - 0,2014,1937,1,0,0,0,2014,1941,1,0,0,0,2014,1959,1,0,0,0,2014,1993, - 1,0,0,0,2015,113,1,0,0,0,2016,2042,3,116,58,0,2017,2018,3,116,58, - 0,2018,2019,7,16,0,0,2019,2020,3,118,59,0,2020,2042,1,0,0,0,2021, - 2022,3,118,59,0,2022,2023,5,281,0,0,2023,2028,3,118,59,0,2024,2025, - 5,281,0,0,2025,2027,3,118,59,0,2026,2024,1,0,0,0,2027,2030,1,0,0, - 0,2028,2026,1,0,0,0,2028,2029,1,0,0,0,2029,2042,1,0,0,0,2030,2028, - 1,0,0,0,2031,2032,3,118,59,0,2032,2033,5,54,0,0,2033,2038,3,118, - 59,0,2034,2035,5,54,0,0,2035,2037,3,118,59,0,2036,2034,1,0,0,0,2037, - 2040,1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,2042,1,0,0, - 0,2040,2038,1,0,0,0,2041,2016,1,0,0,0,2041,2017,1,0,0,0,2041,2021, - 1,0,0,0,2041,2031,1,0,0,0,2042,115,1,0,0,0,2043,2044,3,294,147,0, - 2044,117,1,0,0,0,2045,2051,3,116,58,0,2046,2047,5,1,0,0,2047,2048, - 3,114,57,0,2048,2049,5,2,0,0,2049,2051,1,0,0,0,2050,2045,1,0,0,0, - 2050,2046,1,0,0,0,2051,119,1,0,0,0,2052,2055,7,16,0,0,2053,2054, - 5,3,0,0,2054,2056,7,17,0,0,2055,2053,1,0,0,0,2055,2056,1,0,0,0,2056, - 2063,1,0,0,0,2057,2060,7,17,0,0,2058,2059,5,3,0,0,2059,2061,7,16, - 0,0,2060,2058,1,0,0,0,2060,2061,1,0,0,0,2061,2063,1,0,0,0,2062,2052, - 1,0,0,0,2062,2057,1,0,0,0,2063,121,1,0,0,0,2064,2065,3,272,136,0, - 2065,2074,5,1,0,0,2066,2071,3,124,62,0,2067,2068,5,3,0,0,2068,2070, - 3,124,62,0,2069,2067,1,0,0,0,2070,2073,1,0,0,0,2071,2069,1,0,0,0, - 2071,2072,1,0,0,0,2072,2075,1,0,0,0,2073,2071,1,0,0,0,2074,2066, - 1,0,0,0,2074,2075,1,0,0,0,2075,2085,1,0,0,0,2076,2077,5,52,0,0,2077, - 2082,3,134,67,0,2078,2079,5,3,0,0,2079,2081,3,134,67,0,2080,2078, - 1,0,0,0,2081,2084,1,0,0,0,2082,2080,1,0,0,0,2082,2083,1,0,0,0,2083, - 2086,1,0,0,0,2084,2082,1,0,0,0,2085,2076,1,0,0,0,2085,2086,1,0,0, - 0,2086,2087,1,0,0,0,2087,2088,5,2,0,0,2088,123,1,0,0,0,2089,2090, - 3,294,147,0,2090,2091,5,6,0,0,2091,2093,1,0,0,0,2092,2089,1,0,0, - 0,2092,2093,1,0,0,0,2093,2097,1,0,0,0,2094,2098,3,126,63,0,2095, - 2098,3,130,65,0,2096,2098,3,136,68,0,2097,2094,1,0,0,0,2097,2095, - 1,0,0,0,2097,2096,1,0,0,0,2098,125,1,0,0,0,2099,2117,3,128,64,0, - 2100,2101,5,201,0,0,2101,2115,5,36,0,0,2102,2111,5,1,0,0,2103,2108, - 3,136,68,0,2104,2105,5,3,0,0,2105,2107,3,136,68,0,2106,2104,1,0, - 0,0,2107,2110,1,0,0,0,2108,2106,1,0,0,0,2108,2109,1,0,0,0,2109,2112, - 1,0,0,0,2110,2108,1,0,0,0,2111,2103,1,0,0,0,2111,2112,1,0,0,0,2112, - 2113,1,0,0,0,2113,2116,5,2,0,0,2114,2116,3,136,68,0,2115,2102,1, - 0,0,0,2115,2114,1,0,0,0,2116,2118,1,0,0,0,2117,2100,1,0,0,0,2117, - 2118,1,0,0,0,2118,2125,1,0,0,0,2119,2120,5,217,0,0,2120,2121,5,300, - 0,0,2121,2126,5,85,0,0,2122,2123,5,144,0,0,2123,2124,5,300,0,0,2124, - 2126,5,85,0,0,2125,2119,1,0,0,0,2125,2122,1,0,0,0,2125,2126,1,0, - 0,0,2126,2143,1,0,0,0,2127,2128,5,195,0,0,2128,2141,5,36,0,0,2129, - 2130,5,1,0,0,2130,2135,3,50,25,0,2131,2132,5,3,0,0,2132,2134,3,50, - 25,0,2133,2131,1,0,0,0,2134,2137,1,0,0,0,2135,2133,1,0,0,0,2135, - 2136,1,0,0,0,2136,2138,1,0,0,0,2137,2135,1,0,0,0,2138,2139,5,2,0, - 0,2139,2142,1,0,0,0,2140,2142,3,50,25,0,2141,2129,1,0,0,0,2141,2140, - 1,0,0,0,2142,2144,1,0,0,0,2143,2127,1,0,0,0,2143,2144,1,0,0,0,2144, - 127,1,0,0,0,2145,2146,5,260,0,0,2146,2147,5,1,0,0,2147,2148,3,256, - 128,0,2148,2156,5,2,0,0,2149,2151,5,28,0,0,2150,2149,1,0,0,0,2150, - 2151,1,0,0,0,2151,2152,1,0,0,0,2152,2154,3,294,147,0,2153,2155,3, - 108,54,0,2154,2153,1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156, - 2150,1,0,0,0,2156,2157,1,0,0,0,2157,2172,1,0,0,0,2158,2159,5,260, - 0,0,2159,2160,5,1,0,0,2160,2161,3,22,11,0,2161,2169,5,2,0,0,2162, - 2164,5,28,0,0,2163,2162,1,0,0,0,2163,2164,1,0,0,0,2164,2165,1,0, - 0,0,2165,2167,3,294,147,0,2166,2168,3,108,54,0,2167,2166,1,0,0,0, - 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2163,1,0,0,0,2169,2170, - 1,0,0,0,2170,2172,1,0,0,0,2171,2145,1,0,0,0,2171,2158,1,0,0,0,2172, - 129,1,0,0,0,2173,2174,5,77,0,0,2174,2175,5,1,0,0,2175,2180,3,132, - 66,0,2176,2177,5,3,0,0,2177,2179,3,132,66,0,2178,2176,1,0,0,0,2179, - 2182,1,0,0,0,2180,2178,1,0,0,0,2180,2181,1,0,0,0,2181,2183,1,0,0, - 0,2182,2180,1,0,0,0,2183,2184,5,2,0,0,2184,2192,1,0,0,0,2185,2186, - 5,41,0,0,2186,2187,5,1,0,0,2187,2188,5,183,0,0,2188,2189,5,28,0, - 0,2189,2190,5,77,0,0,2190,2192,5,2,0,0,2191,2173,1,0,0,0,2191,2185, - 1,0,0,0,2192,131,1,0,0,0,2193,2195,3,294,147,0,2194,2196,3,184,92, - 0,2195,2194,1,0,0,0,2195,2196,1,0,0,0,2196,133,1,0,0,0,2197,2198, - 5,1,0,0,2198,2199,3,280,140,0,2199,2200,5,3,0,0,2200,2205,3,280, - 140,0,2201,2202,5,3,0,0,2202,2204,3,280,140,0,2203,2201,1,0,0,0, - 2204,2207,1,0,0,0,2205,2203,1,0,0,0,2205,2206,1,0,0,0,2206,2208, - 1,0,0,0,2207,2205,1,0,0,0,2208,2209,5,2,0,0,2209,135,1,0,0,0,2210, - 2211,3,138,69,0,2211,137,1,0,0,0,2212,2213,6,69,-1,0,2213,2215,3, - 142,71,0,2214,2216,3,140,70,0,2215,2214,1,0,0,0,2215,2216,1,0,0, - 0,2216,2220,1,0,0,0,2217,2218,5,182,0,0,2218,2220,3,138,69,3,2219, - 2212,1,0,0,0,2219,2217,1,0,0,0,2220,2229,1,0,0,0,2221,2222,10,2, - 0,0,2222,2223,5,25,0,0,2223,2228,3,138,69,3,2224,2225,10,1,0,0,2225, - 2226,5,194,0,0,2226,2228,3,138,69,2,2227,2221,1,0,0,0,2227,2224, - 1,0,0,0,2228,2231,1,0,0,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230, - 139,1,0,0,0,2231,2229,1,0,0,0,2232,2233,3,172,86,0,2233,2234,3,142, - 71,0,2234,2294,1,0,0,0,2235,2236,3,172,86,0,2236,2237,3,174,87,0, - 2237,2238,5,1,0,0,2238,2239,3,22,11,0,2239,2240,5,2,0,0,2240,2294, - 1,0,0,0,2241,2243,5,182,0,0,2242,2241,1,0,0,0,2242,2243,1,0,0,0, - 2243,2244,1,0,0,0,2244,2245,5,34,0,0,2245,2246,3,142,71,0,2246,2247, - 5,25,0,0,2247,2248,3,142,71,0,2248,2294,1,0,0,0,2249,2251,5,182, - 0,0,2250,2249,1,0,0,0,2250,2251,1,0,0,0,2251,2252,1,0,0,0,2252,2253, - 5,122,0,0,2253,2254,5,1,0,0,2254,2259,3,136,68,0,2255,2256,5,3,0, - 0,2256,2258,3,136,68,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,2,0,0,2263,2294,1,0,0,0,2264,2266,5,182,0,0,2265,2264, - 1,0,0,0,2265,2266,1,0,0,0,2266,2267,1,0,0,0,2267,2268,5,122,0,0, - 2268,2269,5,1,0,0,2269,2270,3,22,11,0,2270,2271,5,2,0,0,2271,2294, - 1,0,0,0,2272,2274,5,182,0,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0, - 2274,2275,1,0,0,0,2275,2276,5,154,0,0,2276,2279,3,142,71,0,2277, - 2278,5,90,0,0,2278,2280,3,142,71,0,2279,2277,1,0,0,0,2279,2280,1, - 0,0,0,2280,2294,1,0,0,0,2281,2283,5,133,0,0,2282,2284,5,182,0,0, - 2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284,2285,1,0,0,0,2285,2294, - 5,183,0,0,2286,2288,5,133,0,0,2287,2289,5,182,0,0,2288,2287,1,0, - 0,0,2288,2289,1,0,0,0,2289,2290,1,0,0,0,2290,2291,5,79,0,0,2291, - 2292,5,105,0,0,2292,2294,3,142,71,0,2293,2232,1,0,0,0,2293,2235, - 1,0,0,0,2293,2242,1,0,0,0,2293,2250,1,0,0,0,2293,2265,1,0,0,0,2293, - 2273,1,0,0,0,2293,2281,1,0,0,0,2293,2286,1,0,0,0,2294,141,1,0,0, - 0,2295,2296,6,71,-1,0,2296,2300,3,144,72,0,2297,2298,7,18,0,0,2298, - 2300,3,142,71,4,2299,2295,1,0,0,0,2299,2297,1,0,0,0,2300,2315,1, - 0,0,0,2301,2302,10,3,0,0,2302,2303,7,19,0,0,2303,2314,3,142,71,4, - 2304,2305,10,2,0,0,2305,2306,7,18,0,0,2306,2314,3,142,71,3,2307, - 2308,10,1,0,0,2308,2309,5,323,0,0,2309,2314,3,142,71,2,2310,2311, - 10,5,0,0,2311,2312,5,30,0,0,2312,2314,3,170,85,0,2313,2301,1,0,0, - 0,2313,2304,1,0,0,0,2313,2307,1,0,0,0,2313,2310,1,0,0,0,2314,2317, - 1,0,0,0,2315,2313,1,0,0,0,2315,2316,1,0,0,0,2316,143,1,0,0,0,2317, - 2315,1,0,0,0,2318,2319,6,72,-1,0,2319,2772,5,183,0,0,2320,2772,3, - 178,89,0,2321,2322,3,294,147,0,2322,2323,3,168,84,0,2323,2772,1, - 0,0,0,2324,2325,5,82,0,0,2325,2326,5,213,0,0,2326,2772,3,168,84, - 0,2327,2772,3,296,148,0,2328,2772,3,176,88,0,2329,2772,3,168,84, - 0,2330,2772,5,328,0,0,2331,2772,5,324,0,0,2332,2333,5,211,0,0,2333, - 2334,5,1,0,0,2334,2335,3,142,71,0,2335,2336,5,122,0,0,2336,2337, - 3,142,71,0,2337,2338,5,2,0,0,2338,2772,1,0,0,0,2339,2340,5,1,0,0, - 2340,2343,3,136,68,0,2341,2342,5,3,0,0,2342,2344,3,136,68,0,2343, - 2341,1,0,0,0,2344,2345,1,0,0,0,2345,2343,1,0,0,0,2345,2346,1,0,0, - 0,2346,2347,1,0,0,0,2347,2348,5,2,0,0,2348,2772,1,0,0,0,2349,2350, - 5,239,0,0,2350,2351,5,1,0,0,2351,2356,3,136,68,0,2352,2353,5,3,0, - 0,2353,2355,3,136,68,0,2354,2352,1,0,0,0,2355,2358,1,0,0,0,2356, - 2354,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2356,1,0,0, - 0,2359,2360,5,2,0,0,2360,2772,1,0,0,0,2361,2362,5,156,0,0,2362,2364, - 5,1,0,0,2363,2365,3,68,34,0,2364,2363,1,0,0,0,2364,2365,1,0,0,0, - 2365,2366,1,0,0,0,2366,2369,3,136,68,0,2367,2368,5,3,0,0,2368,2370, - 3,168,84,0,2369,2367,1,0,0,0,2369,2370,1,0,0,0,2370,2374,1,0,0,0, - 2371,2372,5,190,0,0,2372,2373,5,200,0,0,2373,2375,3,84,42,0,2374, - 2371,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0,0,2376,2377,5,2,0, - 0,2377,2378,5,305,0,0,2378,2379,5,114,0,0,2379,2380,5,1,0,0,2380, - 2381,5,195,0,0,2381,2382,5,36,0,0,2382,2387,3,50,25,0,2383,2384, - 5,3,0,0,2384,2386,3,50,25,0,2385,2383,1,0,0,0,2386,2389,1,0,0,0, - 2387,2385,1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389,2387, - 1,0,0,0,2390,2391,5,2,0,0,2391,2393,1,0,0,0,2392,2394,3,192,96,0, - 2393,2392,1,0,0,0,2393,2394,1,0,0,0,2394,2772,1,0,0,0,2395,2397, - 3,164,82,0,2396,2395,1,0,0,0,2396,2397,1,0,0,0,2397,2398,1,0,0,0, - 2398,2399,3,272,136,0,2399,2403,5,1,0,0,2400,2401,3,294,147,0,2401, - 2402,5,4,0,0,2402,2404,1,0,0,0,2403,2400,1,0,0,0,2403,2404,1,0,0, - 0,2404,2405,1,0,0,0,2405,2406,5,320,0,0,2406,2408,5,2,0,0,2407,2409, - 3,192,96,0,2408,2407,1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0,0, - 2410,2412,3,196,98,0,2411,2410,1,0,0,0,2411,2412,1,0,0,0,2412,2772, - 1,0,0,0,2413,2415,3,164,82,0,2414,2413,1,0,0,0,2414,2415,1,0,0,0, - 2415,2416,1,0,0,0,2416,2417,3,272,136,0,2417,2429,5,1,0,0,2418,2420, - 3,68,34,0,2419,2418,1,0,0,0,2419,2420,1,0,0,0,2420,2421,1,0,0,0, - 2421,2426,3,136,68,0,2422,2423,5,3,0,0,2423,2425,3,136,68,0,2424, - 2422,1,0,0,0,2425,2428,1,0,0,0,2426,2424,1,0,0,0,2426,2427,1,0,0, - 0,2427,2430,1,0,0,0,2428,2426,1,0,0,0,2429,2419,1,0,0,0,2429,2430, - 1,0,0,0,2430,2441,1,0,0,0,2431,2432,5,195,0,0,2432,2433,5,36,0,0, - 2433,2438,3,50,25,0,2434,2435,5,3,0,0,2435,2437,3,50,25,0,2436,2434, - 1,0,0,0,2437,2440,1,0,0,0,2438,2436,1,0,0,0,2438,2439,1,0,0,0,2439, - 2442,1,0,0,0,2440,2438,1,0,0,0,2441,2431,1,0,0,0,2441,2442,1,0,0, - 0,2442,2443,1,0,0,0,2443,2445,5,2,0,0,2444,2446,3,192,96,0,2445, - 2444,1,0,0,0,2445,2446,1,0,0,0,2446,2451,1,0,0,0,2447,2449,3,166, - 83,0,2448,2447,1,0,0,0,2448,2449,1,0,0,0,2449,2450,1,0,0,0,2450, - 2452,3,196,98,0,2451,2448,1,0,0,0,2451,2452,1,0,0,0,2452,2772,1, - 0,0,0,2453,2454,3,294,147,0,2454,2455,3,196,98,0,2455,2772,1,0,0, - 0,2456,2457,3,294,147,0,2457,2458,5,7,0,0,2458,2459,3,136,68,0,2459, - 2772,1,0,0,0,2460,2469,5,1,0,0,2461,2466,3,294,147,0,2462,2463,5, - 3,0,0,2463,2465,3,294,147,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0, - 2466,2464,1,0,0,0,2466,2467,1,0,0,0,2467,2470,1,0,0,0,2468,2466, - 1,0,0,0,2469,2461,1,0,0,0,2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471, - 2472,5,2,0,0,2472,2473,5,7,0,0,2473,2772,3,136,68,0,2474,2475,5, - 1,0,0,2475,2476,3,22,11,0,2476,2477,5,2,0,0,2477,2772,1,0,0,0,2478, - 2479,5,94,0,0,2479,2480,5,1,0,0,2480,2481,3,22,11,0,2481,2482,5, - 2,0,0,2482,2772,1,0,0,0,2483,2484,5,40,0,0,2484,2486,3,136,68,0, - 2485,2487,3,190,95,0,2486,2485,1,0,0,0,2487,2488,1,0,0,0,2488,2486, - 1,0,0,0,2488,2489,1,0,0,0,2489,2492,1,0,0,0,2490,2491,5,84,0,0,2491, - 2493,3,136,68,0,2492,2490,1,0,0,0,2492,2493,1,0,0,0,2493,2494,1, - 0,0,0,2494,2495,5,88,0,0,2495,2772,1,0,0,0,2496,2498,5,40,0,0,2497, - 2499,3,190,95,0,2498,2497,1,0,0,0,2499,2500,1,0,0,0,2500,2498,1, - 0,0,0,2500,2501,1,0,0,0,2501,2504,1,0,0,0,2502,2503,5,84,0,0,2503, - 2505,3,136,68,0,2504,2502,1,0,0,0,2504,2505,1,0,0,0,2505,2506,1, - 0,0,0,2506,2507,5,88,0,0,2507,2772,1,0,0,0,2508,2509,5,41,0,0,2509, - 2510,5,1,0,0,2510,2511,3,136,68,0,2511,2512,5,28,0,0,2512,2513,3, - 184,92,0,2513,2514,5,2,0,0,2514,2772,1,0,0,0,2515,2516,5,275,0,0, - 2516,2517,5,1,0,0,2517,2518,3,136,68,0,2518,2519,5,28,0,0,2519,2520, - 3,184,92,0,2520,2521,5,2,0,0,2521,2772,1,0,0,0,2522,2523,5,27,0, - 0,2523,2532,5,8,0,0,2524,2529,3,136,68,0,2525,2526,5,3,0,0,2526, - 2528,3,136,68,0,2527,2525,1,0,0,0,2528,2531,1,0,0,0,2529,2527,1, - 0,0,0,2529,2530,1,0,0,0,2530,2533,1,0,0,0,2531,2529,1,0,0,0,2532, - 2524,1,0,0,0,2532,2533,1,0,0,0,2533,2534,1,0,0,0,2534,2772,5,9,0, - 0,2535,2772,3,294,147,0,2536,2772,5,58,0,0,2537,2541,5,62,0,0,2538, - 2539,5,1,0,0,2539,2540,5,329,0,0,2540,2542,5,2,0,0,2541,2538,1,0, - 0,0,2541,2542,1,0,0,0,2542,2772,1,0,0,0,2543,2547,5,63,0,0,2544, - 2545,5,1,0,0,2545,2546,5,329,0,0,2546,2548,5,2,0,0,2547,2544,1,0, - 0,0,2547,2548,1,0,0,0,2548,2772,1,0,0,0,2549,2553,5,158,0,0,2550, - 2551,5,1,0,0,2551,2552,5,329,0,0,2552,2554,5,2,0,0,2553,2550,1,0, - 0,0,2553,2554,1,0,0,0,2554,2772,1,0,0,0,2555,2559,5,159,0,0,2556, - 2557,5,1,0,0,2557,2558,5,329,0,0,2558,2560,5,2,0,0,2559,2556,1,0, - 0,0,2559,2560,1,0,0,0,2560,2772,1,0,0,0,2561,2772,5,64,0,0,2562, - 2772,5,57,0,0,2563,2772,5,61,0,0,2564,2772,5,59,0,0,2565,2566,5, - 272,0,0,2566,2574,5,1,0,0,2567,2569,3,82,41,0,2568,2567,1,0,0,0, - 2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572,3,142,71,0,2571,2570, - 1,0,0,0,2571,2572,1,0,0,0,2572,2573,1,0,0,0,2573,2575,5,105,0,0, - 2574,2568,1,0,0,0,2574,2575,1,0,0,0,2575,2576,1,0,0,0,2576,2577, - 3,142,71,0,2577,2578,5,2,0,0,2578,2772,1,0,0,0,2579,2580,5,272,0, - 0,2580,2581,5,1,0,0,2581,2582,3,142,71,0,2582,2583,5,3,0,0,2583, - 2584,3,142,71,0,2584,2585,5,2,0,0,2585,2772,1,0,0,0,2586,2587,5, - 258,0,0,2587,2588,5,1,0,0,2588,2589,3,142,71,0,2589,2590,5,105,0, - 0,2590,2593,3,142,71,0,2591,2592,5,103,0,0,2592,2594,3,142,71,0, - 2593,2591,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595,2596, - 5,2,0,0,2596,2772,1,0,0,0,2597,2598,5,181,0,0,2598,2599,5,1,0,0, - 2599,2602,3,142,71,0,2600,2601,5,3,0,0,2601,2603,3,182,91,0,2602, - 2600,1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0,0,0,2604,2605,5,2,0, - 0,2605,2772,1,0,0,0,2606,2607,5,96,0,0,2607,2608,5,1,0,0,2608,2609, - 3,294,147,0,2609,2610,5,105,0,0,2610,2611,3,142,71,0,2611,2612,5, - 2,0,0,2612,2772,1,0,0,0,2613,2614,5,1,0,0,2614,2615,3,136,68,0,2615, - 2616,5,2,0,0,2616,2772,1,0,0,0,2617,2618,5,115,0,0,2618,2627,5,1, - 0,0,2619,2624,3,280,140,0,2620,2621,5,3,0,0,2621,2623,3,280,140, - 0,2622,2620,1,0,0,0,2623,2626,1,0,0,0,2624,2622,1,0,0,0,2624,2625, - 1,0,0,0,2625,2628,1,0,0,0,2626,2624,1,0,0,0,2627,2619,1,0,0,0,2627, - 2628,1,0,0,0,2628,2629,1,0,0,0,2629,2772,5,2,0,0,2630,2631,5,139, - 0,0,2631,2632,5,1,0,0,2632,2637,3,146,73,0,2633,2634,3,154,77,0, - 2634,2635,5,190,0,0,2635,2636,5,89,0,0,2636,2638,1,0,0,0,2637,2633, - 1,0,0,0,2637,2638,1,0,0,0,2638,2639,1,0,0,0,2639,2640,5,2,0,0,2640, - 2772,1,0,0,0,2641,2642,5,143,0,0,2642,2643,5,1,0,0,2643,2646,3,146, - 73,0,2644,2645,5,231,0,0,2645,2647,3,184,92,0,2646,2644,1,0,0,0, - 2646,2647,1,0,0,0,2647,2652,1,0,0,0,2648,2649,3,156,78,0,2649,2650, - 5,190,0,0,2650,2651,5,85,0,0,2651,2653,1,0,0,0,2652,2648,1,0,0,0, - 2652,2653,1,0,0,0,2653,2658,1,0,0,0,2654,2655,3,156,78,0,2655,2656, - 5,190,0,0,2656,2657,5,89,0,0,2657,2659,1,0,0,0,2658,2654,1,0,0,0, - 2658,2659,1,0,0,0,2659,2660,1,0,0,0,2660,2661,5,2,0,0,2661,2772, - 1,0,0,0,2662,2663,5,141,0,0,2663,2664,5,1,0,0,2664,2671,3,146,73, - 0,2665,2666,5,231,0,0,2666,2669,3,184,92,0,2667,2668,5,104,0,0,2668, - 2670,3,150,75,0,2669,2667,1,0,0,0,2669,2670,1,0,0,0,2670,2672,1, - 0,0,0,2671,2665,1,0,0,0,2671,2672,1,0,0,0,2672,2676,1,0,0,0,2673, - 2674,3,158,79,0,2674,2675,5,308,0,0,2675,2677,1,0,0,0,2676,2673, - 1,0,0,0,2676,2677,1,0,0,0,2677,2685,1,0,0,0,2678,2679,7,15,0,0,2679, - 2683,5,218,0,0,2680,2681,5,190,0,0,2681,2682,5,242,0,0,2682,2684, - 5,264,0,0,2683,2680,1,0,0,0,2683,2684,1,0,0,0,2684,2686,1,0,0,0, - 2685,2678,1,0,0,0,2685,2686,1,0,0,0,2686,2691,1,0,0,0,2687,2688, - 3,160,80,0,2688,2689,5,190,0,0,2689,2690,5,85,0,0,2690,2692,1,0, - 0,0,2691,2687,1,0,0,0,2691,2692,1,0,0,0,2692,2697,1,0,0,0,2693,2694, - 3,160,80,0,2694,2695,5,190,0,0,2695,2696,5,89,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,2,0,0,2700,2772,1,0,0,0,2701,2702,5,140,0,0,2702,2731,5,1,0,0, - 2703,2708,3,162,81,0,2704,2705,5,3,0,0,2705,2707,3,162,81,0,2706, - 2704,1,0,0,0,2707,2710,1,0,0,0,2708,2706,1,0,0,0,2708,2709,1,0,0, - 0,2709,2717,1,0,0,0,2710,2708,1,0,0,0,2711,2712,5,183,0,0,2712,2713, - 5,190,0,0,2713,2718,5,183,0,0,2714,2715,5,18,0,0,2715,2716,5,190, - 0,0,2716,2718,5,183,0,0,2717,2711,1,0,0,0,2717,2714,1,0,0,0,2717, - 2718,1,0,0,0,2718,2729,1,0,0,0,2719,2720,5,304,0,0,2720,2722,5,282, - 0,0,2721,2723,5,146,0,0,2722,2721,1,0,0,0,2722,2723,1,0,0,0,2723, - 2730,1,0,0,0,2724,2725,5,306,0,0,2725,2727,5,282,0,0,2726,2728,5, - 146,0,0,2727,2726,1,0,0,0,2727,2728,1,0,0,0,2728,2730,1,0,0,0,2729, - 2719,1,0,0,0,2729,2724,1,0,0,0,2729,2730,1,0,0,0,2730,2732,1,0,0, - 0,2731,2703,1,0,0,0,2731,2732,1,0,0,0,2732,2739,1,0,0,0,2733,2734, - 5,231,0,0,2734,2737,3,184,92,0,2735,2736,5,104,0,0,2736,2738,3,150, - 75,0,2737,2735,1,0,0,0,2737,2738,1,0,0,0,2738,2740,1,0,0,0,2739, - 2733,1,0,0,0,2739,2740,1,0,0,0,2740,2741,1,0,0,0,2741,2772,5,2,0, - 0,2742,2743,5,138,0,0,2743,2760,5,1,0,0,2744,2749,3,148,74,0,2745, - 2746,5,3,0,0,2746,2748,3,148,74,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,2758,1,0,0,0,2751, - 2749,1,0,0,0,2752,2753,5,183,0,0,2753,2754,5,190,0,0,2754,2759,5, - 183,0,0,2755,2756,5,18,0,0,2756,2757,5,190,0,0,2757,2759,5,183,0, - 0,2758,2752,1,0,0,0,2758,2755,1,0,0,0,2758,2759,1,0,0,0,2759,2761, - 1,0,0,0,2760,2744,1,0,0,0,2760,2761,1,0,0,0,2761,2768,1,0,0,0,2762, - 2763,5,231,0,0,2763,2766,3,184,92,0,2764,2765,5,104,0,0,2765,2767, - 3,150,75,0,2766,2764,1,0,0,0,2766,2767,1,0,0,0,2767,2769,1,0,0,0, - 2768,2762,1,0,0,0,2768,2769,1,0,0,0,2769,2770,1,0,0,0,2770,2772, - 5,2,0,0,2771,2318,1,0,0,0,2771,2320,1,0,0,0,2771,2321,1,0,0,0,2771, - 2324,1,0,0,0,2771,2327,1,0,0,0,2771,2328,1,0,0,0,2771,2329,1,0,0, - 0,2771,2330,1,0,0,0,2771,2331,1,0,0,0,2771,2332,1,0,0,0,2771,2339, - 1,0,0,0,2771,2349,1,0,0,0,2771,2361,1,0,0,0,2771,2396,1,0,0,0,2771, - 2414,1,0,0,0,2771,2453,1,0,0,0,2771,2456,1,0,0,0,2771,2460,1,0,0, - 0,2771,2474,1,0,0,0,2771,2478,1,0,0,0,2771,2483,1,0,0,0,2771,2496, - 1,0,0,0,2771,2508,1,0,0,0,2771,2515,1,0,0,0,2771,2522,1,0,0,0,2771, - 2535,1,0,0,0,2771,2536,1,0,0,0,2771,2537,1,0,0,0,2771,2543,1,0,0, - 0,2771,2549,1,0,0,0,2771,2555,1,0,0,0,2771,2561,1,0,0,0,2771,2562, - 1,0,0,0,2771,2563,1,0,0,0,2771,2564,1,0,0,0,2771,2565,1,0,0,0,2771, - 2579,1,0,0,0,2771,2586,1,0,0,0,2771,2597,1,0,0,0,2771,2606,1,0,0, - 0,2771,2613,1,0,0,0,2771,2617,1,0,0,0,2771,2630,1,0,0,0,2771,2641, - 1,0,0,0,2771,2662,1,0,0,0,2771,2701,1,0,0,0,2771,2742,1,0,0,0,2772, - 2783,1,0,0,0,2773,2774,10,24,0,0,2774,2775,5,8,0,0,2775,2776,3,142, - 71,0,2776,2777,5,9,0,0,2777,2782,1,0,0,0,2778,2779,10,22,0,0,2779, - 2780,5,4,0,0,2780,2782,3,294,147,0,2781,2773,1,0,0,0,2781,2778,1, - 0,0,0,2782,2785,1,0,0,0,2783,2781,1,0,0,0,2783,2784,1,0,0,0,2784, - 145,1,0,0,0,2785,2783,1,0,0,0,2786,2787,3,148,74,0,2787,2788,5,3, - 0,0,2788,2791,3,168,84,0,2789,2790,5,28,0,0,2790,2792,3,294,147, - 0,2791,2789,1,0,0,0,2791,2792,1,0,0,0,2792,2802,1,0,0,0,2793,2794, - 5,203,0,0,2794,2799,3,152,76,0,2795,2796,5,3,0,0,2796,2798,3,152, - 76,0,2797,2795,1,0,0,0,2798,2801,1,0,0,0,2799,2797,1,0,0,0,2799, - 2800,1,0,0,0,2800,2803,1,0,0,0,2801,2799,1,0,0,0,2802,2793,1,0,0, - 0,2802,2803,1,0,0,0,2803,147,1,0,0,0,2804,2807,3,136,68,0,2805,2806, - 5,104,0,0,2806,2808,3,150,75,0,2807,2805,1,0,0,0,2807,2808,1,0,0, - 0,2808,149,1,0,0,0,2809,2812,5,137,0,0,2810,2811,5,87,0,0,2811,2813, - 7,20,0,0,2812,2810,1,0,0,0,2812,2813,1,0,0,0,2813,151,1,0,0,0,2814, - 2815,3,148,74,0,2815,2816,5,28,0,0,2816,2817,3,294,147,0,2817,153, - 1,0,0,0,2818,2819,7,21,0,0,2819,155,1,0,0,0,2820,2825,5,89,0,0,2821, - 2825,5,183,0,0,2822,2823,5,70,0,0,2823,2825,3,136,68,0,2824,2820, - 1,0,0,0,2824,2821,1,0,0,0,2824,2822,1,0,0,0,2825,157,1,0,0,0,2826, - 2828,5,306,0,0,2827,2829,5,27,0,0,2828,2827,1,0,0,0,2828,2829,1, - 0,0,0,2829,2838,1,0,0,0,2830,2832,5,304,0,0,2831,2833,7,22,0,0,2832, - 2831,1,0,0,0,2832,2833,1,0,0,0,2833,2835,1,0,0,0,2834,2836,5,27, - 0,0,2835,2834,1,0,0,0,2835,2836,1,0,0,0,2836,2838,1,0,0,0,2837,2826, - 1,0,0,0,2837,2830,1,0,0,0,2838,159,1,0,0,0,2839,2846,5,89,0,0,2840, - 2846,5,183,0,0,2841,2842,5,85,0,0,2842,2846,5,27,0,0,2843,2844,5, - 85,0,0,2844,2846,5,186,0,0,2845,2839,1,0,0,0,2845,2840,1,0,0,0,2845, - 2841,1,0,0,0,2845,2843,1,0,0,0,2846,161,1,0,0,0,2847,2849,5,145, - 0,0,2848,2847,1,0,0,0,2848,2849,1,0,0,0,2849,2850,1,0,0,0,2850,2851, - 3,136,68,0,2851,2852,5,295,0,0,2852,2853,3,148,74,0,2853,2859,1, - 0,0,0,2854,2855,3,136,68,0,2855,2856,5,10,0,0,2856,2857,3,148,74, - 0,2857,2859,1,0,0,0,2858,2848,1,0,0,0,2858,2854,1,0,0,0,2859,163, - 1,0,0,0,2860,2861,7,23,0,0,2861,165,1,0,0,0,2862,2863,5,120,0,0, - 2863,2867,5,185,0,0,2864,2865,5,228,0,0,2865,2867,5,185,0,0,2866, - 2862,1,0,0,0,2866,2864,1,0,0,0,2867,167,1,0,0,0,2868,2875,5,326, - 0,0,2869,2872,5,327,0,0,2870,2871,5,277,0,0,2871,2873,5,326,0,0, - 2872,2870,1,0,0,0,2872,2873,1,0,0,0,2873,2875,1,0,0,0,2874,2868, - 1,0,0,0,2874,2869,1,0,0,0,2875,169,1,0,0,0,2876,2877,5,267,0,0,2877, - 2878,5,311,0,0,2878,2883,3,178,89,0,2879,2880,5,267,0,0,2880,2881, - 5,311,0,0,2881,2883,3,168,84,0,2882,2876,1,0,0,0,2882,2879,1,0,0, - 0,2883,171,1,0,0,0,2884,2885,7,24,0,0,2885,173,1,0,0,0,2886,2887, - 7,25,0,0,2887,175,1,0,0,0,2888,2889,7,26,0,0,2889,177,1,0,0,0,2890, - 2892,5,129,0,0,2891,2893,7,18,0,0,2892,2891,1,0,0,0,2892,2893,1, - 0,0,0,2893,2894,1,0,0,0,2894,2895,3,168,84,0,2895,2898,3,180,90, - 0,2896,2897,5,269,0,0,2897,2899,3,180,90,0,2898,2896,1,0,0,0,2898, - 2899,1,0,0,0,2899,179,1,0,0,0,2900,2901,7,27,0,0,2901,181,1,0,0, - 0,2902,2903,7,28,0,0,2903,183,1,0,0,0,2904,2905,6,92,-1,0,2905,2906, - 5,239,0,0,2906,2907,5,1,0,0,2907,2912,3,186,93,0,2908,2909,5,3,0, - 0,2909,2911,3,186,93,0,2910,2908,1,0,0,0,2911,2914,1,0,0,0,2912, - 2910,1,0,0,0,2912,2913,1,0,0,0,2913,2915,1,0,0,0,2914,2912,1,0,0, - 0,2915,2916,5,2,0,0,2916,2976,1,0,0,0,2917,2918,5,129,0,0,2918,2921, - 3,180,90,0,2919,2920,5,269,0,0,2920,2922,3,180,90,0,2921,2919,1, - 0,0,0,2921,2922,1,0,0,0,2922,2976,1,0,0,0,2923,2928,5,268,0,0,2924, - 2925,5,1,0,0,2925,2926,3,188,94,0,2926,2927,5,2,0,0,2927,2929,1, - 0,0,0,2928,2924,1,0,0,0,2928,2929,1,0,0,0,2929,2933,1,0,0,0,2930, - 2931,7,29,0,0,2931,2932,5,267,0,0,2932,2934,5,311,0,0,2933,2930, - 1,0,0,0,2933,2934,1,0,0,0,2934,2976,1,0,0,0,2935,2940,5,267,0,0, - 2936,2937,5,1,0,0,2937,2938,3,188,94,0,2938,2939,5,2,0,0,2939,2941, - 1,0,0,0,2940,2936,1,0,0,0,2940,2941,1,0,0,0,2941,2945,1,0,0,0,2942, - 2943,7,29,0,0,2943,2944,5,267,0,0,2944,2946,5,311,0,0,2945,2942, - 1,0,0,0,2945,2946,1,0,0,0,2946,2976,1,0,0,0,2947,2948,5,82,0,0,2948, - 2976,5,213,0,0,2949,2950,5,27,0,0,2950,2951,5,314,0,0,2951,2952, - 3,184,92,0,2952,2953,5,316,0,0,2953,2976,1,0,0,0,2954,2955,5,162, - 0,0,2955,2956,5,314,0,0,2956,2957,3,184,92,0,2957,2958,5,3,0,0,2958, - 2959,3,184,92,0,2959,2960,5,316,0,0,2960,2976,1,0,0,0,2961,2973, - 3,294,147,0,2962,2963,5,1,0,0,2963,2968,3,188,94,0,2964,2965,5,3, - 0,0,2965,2967,3,188,94,0,2966,2964,1,0,0,0,2967,2970,1,0,0,0,2968, - 2966,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2968,1,0,0, - 0,2971,2972,5,2,0,0,2972,2974,1,0,0,0,2973,2962,1,0,0,0,2973,2974, - 1,0,0,0,2974,2976,1,0,0,0,2975,2904,1,0,0,0,2975,2917,1,0,0,0,2975, - 2923,1,0,0,0,2975,2935,1,0,0,0,2975,2947,1,0,0,0,2975,2949,1,0,0, - 0,2975,2954,1,0,0,0,2975,2961,1,0,0,0,2976,2986,1,0,0,0,2977,2978, - 10,2,0,0,2978,2982,5,27,0,0,2979,2980,5,8,0,0,2980,2981,5,329,0, - 0,2981,2983,5,9,0,0,2982,2979,1,0,0,0,2982,2983,1,0,0,0,2983,2985, - 1,0,0,0,2984,2977,1,0,0,0,2985,2988,1,0,0,0,2986,2984,1,0,0,0,2986, - 2987,1,0,0,0,2987,185,1,0,0,0,2988,2986,1,0,0,0,2989,2994,3,184, - 92,0,2990,2991,3,294,147,0,2991,2992,3,184,92,0,2992,2994,1,0,0, - 0,2993,2989,1,0,0,0,2993,2990,1,0,0,0,2994,187,1,0,0,0,2995,2998, - 5,329,0,0,2996,2998,3,184,92,0,2997,2995,1,0,0,0,2997,2996,1,0,0, - 0,2998,189,1,0,0,0,2999,3000,5,300,0,0,3000,3001,3,136,68,0,3001, - 3002,5,265,0,0,3002,3003,3,136,68,0,3003,191,1,0,0,0,3004,3005,5, - 99,0,0,3005,3006,5,1,0,0,3006,3007,5,301,0,0,3007,3008,3,138,69, - 0,3008,3009,5,2,0,0,3009,193,1,0,0,0,3010,3011,5,300,0,0,3011,3014, - 5,164,0,0,3012,3013,5,25,0,0,3013,3015,3,136,68,0,3014,3012,1,0, - 0,0,3014,3015,1,0,0,0,3015,3016,1,0,0,0,3016,3017,5,265,0,0,3017, - 3018,5,287,0,0,3018,3019,5,251,0,0,3019,3020,3,294,147,0,3020,3021, - 5,312,0,0,3021,3029,3,136,68,0,3022,3023,5,3,0,0,3023,3024,3,294, - 147,0,3024,3025,5,312,0,0,3025,3026,3,136,68,0,3026,3028,1,0,0,0, - 3027,3022,1,0,0,0,3028,3031,1,0,0,0,3029,3027,1,0,0,0,3029,3030, - 1,0,0,0,3030,3075,1,0,0,0,3031,3029,1,0,0,0,3032,3033,5,300,0,0, - 3033,3036,5,164,0,0,3034,3035,5,25,0,0,3035,3037,3,136,68,0,3036, - 3034,1,0,0,0,3036,3037,1,0,0,0,3037,3038,1,0,0,0,3038,3039,5,265, - 0,0,3039,3075,5,73,0,0,3040,3041,5,300,0,0,3041,3042,5,182,0,0,3042, - 3045,5,164,0,0,3043,3044,5,25,0,0,3044,3046,3,136,68,0,3045,3043, - 1,0,0,0,3045,3046,1,0,0,0,3046,3047,1,0,0,0,3047,3048,5,265,0,0, - 3048,3060,5,127,0,0,3049,3050,5,1,0,0,3050,3055,3,294,147,0,3051, - 3052,5,3,0,0,3052,3054,3,294,147,0,3053,3051,1,0,0,0,3054,3057,1, - 0,0,0,3055,3053,1,0,0,0,3055,3056,1,0,0,0,3056,3058,1,0,0,0,3057, - 3055,1,0,0,0,3058,3059,5,2,0,0,3059,3061,1,0,0,0,3060,3049,1,0,0, - 0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3063,5,296,0,0,3063,3064, - 5,1,0,0,3064,3069,3,136,68,0,3065,3066,5,3,0,0,3066,3068,3,136,68, - 0,3067,3065,1,0,0,0,3068,3071,1,0,0,0,3069,3067,1,0,0,0,3069,3070, - 1,0,0,0,3070,3072,1,0,0,0,3071,3069,1,0,0,0,3072,3073,5,2,0,0,3073, - 3075,1,0,0,0,3074,3010,1,0,0,0,3074,3032,1,0,0,0,3074,3040,1,0,0, - 0,3075,195,1,0,0,0,3076,3082,5,199,0,0,3077,3083,3,294,147,0,3078, - 3079,5,1,0,0,3079,3080,3,64,32,0,3080,3081,5,2,0,0,3081,3083,1,0, - 0,0,3082,3077,1,0,0,0,3082,3078,1,0,0,0,3083,197,1,0,0,0,3084,3085, - 5,168,0,0,3085,3090,3,90,45,0,3086,3087,5,3,0,0,3087,3089,3,90,45, - 0,3088,3086,1,0,0,0,3089,3092,1,0,0,0,3090,3088,1,0,0,0,3090,3091, - 1,0,0,0,3091,3094,1,0,0,0,3092,3090,1,0,0,0,3093,3084,1,0,0,0,3093, - 3094,1,0,0,0,3094,3095,1,0,0,0,3095,3099,3,200,100,0,3096,3097,5, - 21,0,0,3097,3098,5,163,0,0,3098,3100,3,96,48,0,3099,3096,1,0,0,0, - 3099,3100,1,0,0,0,3100,3102,1,0,0,0,3101,3103,7,13,0,0,3102,3101, - 1,0,0,0,3102,3103,1,0,0,0,3103,3109,1,0,0,0,3104,3105,5,206,0,0, - 3105,3106,5,1,0,0,3106,3107,3,204,102,0,3107,3108,5,2,0,0,3108,3110, - 1,0,0,0,3109,3104,1,0,0,0,3109,3110,1,0,0,0,3110,3120,1,0,0,0,3111, - 3112,5,257,0,0,3112,3117,3,98,49,0,3113,3114,5,3,0,0,3114,3116,3, - 98,49,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,3121,1,0,0,0,3119,3117,1,0,0,0,3120,3111,1,0,0, - 0,3120,3121,1,0,0,0,3121,3131,1,0,0,0,3122,3123,5,71,0,0,3123,3128, - 3,100,50,0,3124,3125,5,3,0,0,3125,3127,3,100,50,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,3132, - 1,0,0,0,3130,3128,1,0,0,0,3131,3122,1,0,0,0,3131,3132,1,0,0,0,3132, - 199,1,0,0,0,3133,3134,5,219,0,0,3134,3158,3,202,101,0,3135,3136, - 5,240,0,0,3136,3158,3,202,101,0,3137,3138,5,116,0,0,3138,3158,3, - 202,101,0,3139,3140,5,219,0,0,3140,3141,5,34,0,0,3141,3142,3,202, - 101,0,3142,3143,5,25,0,0,3143,3144,3,202,101,0,3144,3158,1,0,0,0, - 3145,3146,5,240,0,0,3146,3147,5,34,0,0,3147,3148,3,202,101,0,3148, - 3149,5,25,0,0,3149,3150,3,202,101,0,3150,3158,1,0,0,0,3151,3152, - 5,116,0,0,3152,3153,5,34,0,0,3153,3154,3,202,101,0,3154,3155,5,25, - 0,0,3155,3156,3,202,101,0,3156,3158,1,0,0,0,3157,3133,1,0,0,0,3157, - 3135,1,0,0,0,3157,3137,1,0,0,0,3157,3139,1,0,0,0,3157,3145,1,0,0, - 0,3157,3151,1,0,0,0,3158,201,1,0,0,0,3159,3160,5,278,0,0,3160,3169, - 5,212,0,0,3161,3162,5,278,0,0,3162,3169,5,102,0,0,3163,3164,5,56, - 0,0,3164,3169,5,239,0,0,3165,3166,3,136,68,0,3166,3167,7,30,0,0, - 3167,3169,1,0,0,0,3168,3159,1,0,0,0,3168,3161,1,0,0,0,3168,3163, - 1,0,0,0,3168,3165,1,0,0,0,3169,203,1,0,0,0,3170,3171,6,102,-1,0, - 3171,3173,3,206,103,0,3172,3174,3,208,104,0,3173,3172,1,0,0,0,3173, - 3174,1,0,0,0,3174,3182,1,0,0,0,3175,3176,10,2,0,0,3176,3181,3,204, - 102,3,3177,3178,10,1,0,0,3178,3179,5,11,0,0,3179,3181,3,204,102, - 2,3180,3175,1,0,0,0,3180,3177,1,0,0,0,3181,3184,1,0,0,0,3182,3180, - 1,0,0,0,3182,3183,1,0,0,0,3183,205,1,0,0,0,3184,3182,1,0,0,0,3185, - 3211,3,294,147,0,3186,3187,5,1,0,0,3187,3211,5,2,0,0,3188,3189,5, - 209,0,0,3189,3190,5,1,0,0,3190,3195,3,204,102,0,3191,3192,5,3,0, - 0,3192,3194,3,204,102,0,3193,3191,1,0,0,0,3194,3197,1,0,0,0,3195, - 3193,1,0,0,0,3195,3196,1,0,0,0,3196,3198,1,0,0,0,3197,3195,1,0,0, - 0,3198,3199,5,2,0,0,3199,3211,1,0,0,0,3200,3201,5,1,0,0,3201,3202, - 3,204,102,0,3202,3203,5,2,0,0,3203,3211,1,0,0,0,3204,3211,5,12,0, - 0,3205,3211,5,13,0,0,3206,3207,5,14,0,0,3207,3208,3,204,102,0,3208, - 3209,5,15,0,0,3209,3211,1,0,0,0,3210,3185,1,0,0,0,3210,3186,1,0, - 0,0,3210,3188,1,0,0,0,3210,3200,1,0,0,0,3210,3204,1,0,0,0,3210,3205, - 1,0,0,0,3210,3206,1,0,0,0,3211,207,1,0,0,0,3212,3214,5,320,0,0,3213, - 3215,5,324,0,0,3214,3213,1,0,0,0,3214,3215,1,0,0,0,3215,3243,1,0, - 0,0,3216,3218,5,318,0,0,3217,3219,5,324,0,0,3218,3217,1,0,0,0,3218, - 3219,1,0,0,0,3219,3243,1,0,0,0,3220,3222,5,324,0,0,3221,3223,5,324, - 0,0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3243,1,0,0,0,3224,3225, - 5,16,0,0,3225,3226,5,329,0,0,3226,3228,5,17,0,0,3227,3229,5,324, - 0,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229,3243,1,0,0,0,3230,3232, - 5,16,0,0,3231,3233,5,329,0,0,3232,3231,1,0,0,0,3232,3233,1,0,0,0, - 3233,3234,1,0,0,0,3234,3236,5,3,0,0,3235,3237,5,329,0,0,3236,3235, - 1,0,0,0,3236,3237,1,0,0,0,3237,3238,1,0,0,0,3238,3240,5,17,0,0,3239, - 3241,5,324,0,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0,3241,3243,1,0, - 0,0,3242,3212,1,0,0,0,3242,3216,1,0,0,0,3242,3220,1,0,0,0,3242,3224, - 1,0,0,0,3242,3230,1,0,0,0,3243,209,1,0,0,0,3244,3245,3,294,147,0, - 3245,3246,5,312,0,0,3246,3247,3,136,68,0,3247,211,1,0,0,0,3248,3249, - 5,104,0,0,3249,3253,7,31,0,0,3250,3251,5,276,0,0,3251,3253,7,32, - 0,0,3252,3248,1,0,0,0,3252,3250,1,0,0,0,3253,213,1,0,0,0,3254,3255, - 5,134,0,0,3255,3256,5,153,0,0,3256,3260,3,216,108,0,3257,3258,5, - 220,0,0,3258,3260,7,33,0,0,3259,3254,1,0,0,0,3259,3257,1,0,0,0,3260, - 215,1,0,0,0,3261,3262,5,220,0,0,3262,3269,5,279,0,0,3263,3264,5, - 220,0,0,3264,3269,5,48,0,0,3265,3266,5,225,0,0,3266,3269,5,220,0, - 0,3267,3269,5,249,0,0,3268,3261,1,0,0,0,3268,3263,1,0,0,0,3268,3265, - 1,0,0,0,3268,3267,1,0,0,0,3269,217,1,0,0,0,3270,3276,3,136,68,0, - 3271,3272,3,294,147,0,3272,3273,5,6,0,0,3273,3274,3,136,68,0,3274, - 3276,1,0,0,0,3275,3270,1,0,0,0,3275,3271,1,0,0,0,3276,219,1,0,0, - 0,3277,3278,3,294,147,0,3278,3279,5,4,0,0,3279,3280,3,294,147,0, - 3280,3283,1,0,0,0,3281,3283,3,294,147,0,3282,3277,1,0,0,0,3282,3281, - 1,0,0,0,3283,221,1,0,0,0,3284,3289,3,220,110,0,3285,3286,5,3,0,0, - 3286,3288,3,220,110,0,3287,3285,1,0,0,0,3288,3291,1,0,0,0,3289,3287, - 1,0,0,0,3289,3290,1,0,0,0,3290,223,1,0,0,0,3291,3289,1,0,0,0,3292, - 3293,5,107,0,0,3293,3294,3,226,113,0,3294,3298,3,232,116,0,3295, - 3297,3,234,117,0,3296,3295,1,0,0,0,3297,3300,1,0,0,0,3298,3296,1, - 0,0,0,3298,3299,1,0,0,0,3299,3301,1,0,0,0,3300,3298,1,0,0,0,3301, - 3302,3,236,118,0,3302,225,1,0,0,0,3303,3304,3,274,137,0,3304,3313, - 5,1,0,0,3305,3310,3,230,115,0,3306,3307,5,3,0,0,3307,3309,3,230, - 115,0,3308,3306,1,0,0,0,3309,3312,1,0,0,0,3310,3308,1,0,0,0,3310, - 3311,1,0,0,0,3311,3314,1,0,0,0,3312,3310,1,0,0,0,3313,3305,1,0,0, - 0,3313,3314,1,0,0,0,3314,3315,1,0,0,0,3315,3316,5,2,0,0,3316,227, - 1,0,0,0,3317,3318,3,272,136,0,3318,3327,5,1,0,0,3319,3324,3,230, - 115,0,3320,3321,5,3,0,0,3321,3323,3,230,115,0,3322,3320,1,0,0,0, - 3323,3326,1,0,0,0,3324,3322,1,0,0,0,3324,3325,1,0,0,0,3325,3328, - 1,0,0,0,3326,3324,1,0,0,0,3327,3319,1,0,0,0,3327,3328,1,0,0,0,3328, - 3329,1,0,0,0,3329,3330,5,2,0,0,3330,229,1,0,0,0,3331,3333,3,294, - 147,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333,3334,1,0,0,0,3334, - 3335,3,184,92,0,3335,231,1,0,0,0,3336,3337,5,232,0,0,3337,3338,3, - 184,92,0,3338,233,1,0,0,0,3339,3340,5,147,0,0,3340,3359,3,294,147, - 0,3341,3343,5,182,0,0,3342,3341,1,0,0,0,3342,3343,1,0,0,0,3343,3344, - 1,0,0,0,3344,3359,5,78,0,0,3345,3346,5,232,0,0,3346,3347,5,183,0, - 0,3347,3348,5,190,0,0,3348,3349,5,183,0,0,3349,3359,5,126,0,0,3350, - 3351,5,38,0,0,3351,3352,5,190,0,0,3352,3353,5,183,0,0,3353,3359, - 5,126,0,0,3354,3355,5,246,0,0,3355,3359,7,1,0,0,3356,3357,5,46,0, - 0,3357,3359,3,168,84,0,3358,3339,1,0,0,0,3358,3342,1,0,0,0,3358, - 3345,1,0,0,0,3358,3350,1,0,0,0,3358,3354,1,0,0,0,3358,3356,1,0,0, - 0,3359,235,1,0,0,0,3360,3361,5,230,0,0,3361,3460,3,142,71,0,3362, - 3363,5,251,0,0,3363,3364,3,294,147,0,3364,3365,5,312,0,0,3365,3366, - 3,136,68,0,3366,3460,1,0,0,0,3367,3368,5,40,0,0,3368,3370,3,136, - 68,0,3369,3371,3,238,119,0,3370,3369,1,0,0,0,3371,3372,1,0,0,0,3372, - 3370,1,0,0,0,3372,3373,1,0,0,0,3373,3375,1,0,0,0,3374,3376,3,242, - 121,0,3375,3374,1,0,0,0,3375,3376,1,0,0,0,3376,3377,1,0,0,0,3377, - 3378,5,88,0,0,3378,3379,5,40,0,0,3379,3460,1,0,0,0,3380,3382,5,40, - 0,0,3381,3383,3,238,119,0,3382,3381,1,0,0,0,3383,3384,1,0,0,0,3384, - 3382,1,0,0,0,3384,3385,1,0,0,0,3385,3387,1,0,0,0,3386,3388,3,242, - 121,0,3387,3386,1,0,0,0,3387,3388,1,0,0,0,3388,3389,1,0,0,0,3389, - 3390,5,88,0,0,3390,3391,5,40,0,0,3391,3460,1,0,0,0,3392,3393,5,119, - 0,0,3393,3394,3,136,68,0,3394,3395,5,265,0,0,3395,3399,3,246,123, - 0,3396,3398,3,240,120,0,3397,3396,1,0,0,0,3398,3401,1,0,0,0,3399, - 3397,1,0,0,0,3399,3400,1,0,0,0,3400,3403,1,0,0,0,3401,3399,1,0,0, - 0,3402,3404,3,242,121,0,3403,3402,1,0,0,0,3403,3404,1,0,0,0,3404, - 3405,1,0,0,0,3405,3406,5,88,0,0,3406,3407,5,119,0,0,3407,3460,1, - 0,0,0,3408,3409,5,135,0,0,3409,3460,3,294,147,0,3410,3411,5,151, - 0,0,3411,3460,3,294,147,0,3412,3418,5,32,0,0,3413,3414,3,244,122, - 0,3414,3415,5,325,0,0,3415,3417,1,0,0,0,3416,3413,1,0,0,0,3417,3420, - 1,0,0,0,3418,3416,1,0,0,0,3418,3419,1,0,0,0,3419,3422,1,0,0,0,3420, - 3418,1,0,0,0,3421,3423,3,246,123,0,3422,3421,1,0,0,0,3422,3423,1, - 0,0,0,3423,3424,1,0,0,0,3424,3460,5,88,0,0,3425,3426,3,294,147,0, - 3426,3427,5,10,0,0,3427,3429,1,0,0,0,3428,3425,1,0,0,0,3428,3429, - 1,0,0,0,3429,3430,1,0,0,0,3430,3431,5,161,0,0,3431,3432,3,246,123, - 0,3432,3433,5,88,0,0,3433,3434,5,161,0,0,3434,3460,1,0,0,0,3435, - 3436,3,294,147,0,3436,3437,5,10,0,0,3437,3439,1,0,0,0,3438,3435, - 1,0,0,0,3438,3439,1,0,0,0,3439,3440,1,0,0,0,3440,3441,5,302,0,0, - 3441,3442,3,136,68,0,3442,3443,5,81,0,0,3443,3444,3,246,123,0,3444, - 3445,5,88,0,0,3445,3446,5,302,0,0,3446,3460,1,0,0,0,3447,3448,3, - 294,147,0,3448,3449,5,10,0,0,3449,3451,1,0,0,0,3450,3447,1,0,0,0, - 3450,3451,1,0,0,0,3451,3452,1,0,0,0,3452,3453,5,224,0,0,3453,3454, - 3,246,123,0,3454,3455,5,286,0,0,3455,3456,3,136,68,0,3456,3457,5, - 88,0,0,3457,3458,5,224,0,0,3458,3460,1,0,0,0,3459,3360,1,0,0,0,3459, - 3362,1,0,0,0,3459,3367,1,0,0,0,3459,3380,1,0,0,0,3459,3392,1,0,0, - 0,3459,3408,1,0,0,0,3459,3410,1,0,0,0,3459,3412,1,0,0,0,3459,3428, - 1,0,0,0,3459,3438,1,0,0,0,3459,3450,1,0,0,0,3460,237,1,0,0,0,3461, - 3462,5,300,0,0,3462,3463,3,136,68,0,3463,3464,5,265,0,0,3464,3465, - 3,246,123,0,3465,239,1,0,0,0,3466,3467,5,86,0,0,3467,3468,3,136, - 68,0,3468,3469,5,265,0,0,3469,3470,3,246,123,0,3470,241,1,0,0,0, - 3471,3472,5,84,0,0,3472,3473,3,246,123,0,3473,243,1,0,0,0,3474,3475, - 5,69,0,0,3475,3480,3,294,147,0,3476,3477,5,3,0,0,3477,3479,3,294, - 147,0,3478,3476,1,0,0,0,3479,3482,1,0,0,0,3480,3478,1,0,0,0,3480, - 3481,1,0,0,0,3481,3483,1,0,0,0,3482,3480,1,0,0,0,3483,3486,3,184, - 92,0,3484,3485,5,70,0,0,3485,3487,3,142,71,0,3486,3484,1,0,0,0,3486, - 3487,1,0,0,0,3487,245,1,0,0,0,3488,3489,3,236,118,0,3489,3490,5, - 325,0,0,3490,3492,1,0,0,0,3491,3488,1,0,0,0,3492,3493,1,0,0,0,3493, - 3491,1,0,0,0,3493,3494,1,0,0,0,3494,247,1,0,0,0,3495,3502,5,53,0, - 0,3496,3502,5,248,0,0,3497,3502,5,73,0,0,3498,3502,5,127,0,0,3499, - 3502,5,287,0,0,3500,3502,3,294,147,0,3501,3495,1,0,0,0,3501,3496, - 1,0,0,0,3501,3497,1,0,0,0,3501,3498,1,0,0,0,3501,3499,1,0,0,0,3501, - 3500,1,0,0,0,3502,249,1,0,0,0,3503,3507,5,260,0,0,3504,3507,5,243, - 0,0,3505,3507,3,294,147,0,3506,3503,1,0,0,0,3506,3504,1,0,0,0,3506, - 3505,1,0,0,0,3507,251,1,0,0,0,3508,3510,3,250,125,0,3509,3508,1, - 0,0,0,3509,3510,1,0,0,0,3510,3511,1,0,0,0,3511,3512,3,280,140,0, - 3512,253,1,0,0,0,3513,3516,3,256,128,0,3514,3516,3,260,130,0,3515, - 3513,1,0,0,0,3515,3514,1,0,0,0,3516,255,1,0,0,0,3517,3529,3,294, - 147,0,3518,3519,3,294,147,0,3519,3520,5,4,0,0,3520,3521,3,294,147, - 0,3521,3529,1,0,0,0,3522,3523,3,294,147,0,3523,3524,5,4,0,0,3524, - 3525,3,294,147,0,3525,3526,5,4,0,0,3526,3527,3,294,147,0,3527,3529, - 1,0,0,0,3528,3517,1,0,0,0,3528,3518,1,0,0,0,3528,3522,1,0,0,0,3529, - 257,1,0,0,0,3530,3542,3,294,147,0,3531,3532,3,294,147,0,3532,3533, - 5,4,0,0,3533,3534,3,294,147,0,3534,3542,1,0,0,0,3535,3536,3,294, - 147,0,3536,3537,5,4,0,0,3537,3538,3,294,147,0,3538,3539,5,4,0,0, - 3539,3540,3,294,147,0,3540,3542,1,0,0,0,3541,3530,1,0,0,0,3541,3531, - 1,0,0,0,3541,3535,1,0,0,0,3542,259,1,0,0,0,3543,3555,3,294,147,0, - 3544,3545,3,294,147,0,3545,3546,5,4,0,0,3546,3547,3,294,147,0,3547, - 3555,1,0,0,0,3548,3549,3,294,147,0,3549,3550,5,4,0,0,3550,3551,3, - 294,147,0,3551,3552,5,4,0,0,3552,3553,3,294,147,0,3553,3555,1,0, - 0,0,3554,3543,1,0,0,0,3554,3544,1,0,0,0,3554,3548,1,0,0,0,3555,261, - 1,0,0,0,3556,3568,3,294,147,0,3557,3558,3,294,147,0,3558,3559,5, - 4,0,0,3559,3560,3,294,147,0,3560,3568,1,0,0,0,3561,3562,3,294,147, - 0,3562,3563,5,4,0,0,3563,3564,3,294,147,0,3564,3565,5,4,0,0,3565, - 3566,3,294,147,0,3566,3568,1,0,0,0,3567,3556,1,0,0,0,3567,3557,1, - 0,0,0,3567,3561,1,0,0,0,3568,263,1,0,0,0,3569,3575,3,294,147,0,3570, - 3571,3,294,147,0,3571,3572,5,4,0,0,3572,3573,3,294,147,0,3573,3575, - 1,0,0,0,3574,3569,1,0,0,0,3574,3570,1,0,0,0,3575,265,1,0,0,0,3576, - 3582,3,294,147,0,3577,3578,3,294,147,0,3578,3579,5,4,0,0,3579,3580, - 3,294,147,0,3580,3582,1,0,0,0,3581,3576,1,0,0,0,3581,3577,1,0,0, - 0,3582,267,1,0,0,0,3583,3584,3,294,147,0,3584,269,1,0,0,0,3585,3586, - 3,294,147,0,3586,271,1,0,0,0,3587,3588,3,280,140,0,3588,273,1,0, - 0,0,3589,3590,3,280,140,0,3590,275,1,0,0,0,3591,3594,3,280,140,0, - 3592,3594,4,138,14,0,3593,3591,1,0,0,0,3593,3592,1,0,0,0,3594,277, - 1,0,0,0,3595,3596,3,294,147,0,3596,279,1,0,0,0,3597,3602,3,294,147, - 0,3598,3599,5,4,0,0,3599,3601,3,294,147,0,3600,3598,1,0,0,0,3601, - 3604,1,0,0,0,3602,3600,1,0,0,0,3602,3603,1,0,0,0,3603,281,1,0,0, - 0,3604,3602,1,0,0,0,3605,3606,5,103,0,0,3606,3607,3,284,142,0,3607, - 3608,5,28,0,0,3608,3609,5,187,0,0,3609,3610,3,142,71,0,3610,283, - 1,0,0,0,3611,3612,7,34,0,0,3612,285,1,0,0,0,3613,3617,3,288,144, - 0,3614,3617,5,64,0,0,3615,3617,5,60,0,0,3616,3613,1,0,0,0,3616,3614, - 1,0,0,0,3616,3615,1,0,0,0,3617,287,1,0,0,0,3618,3624,3,294,147,0, - 3619,3620,5,289,0,0,3620,3624,3,294,147,0,3621,3622,5,235,0,0,3622, - 3624,3,294,147,0,3623,3618,1,0,0,0,3623,3619,1,0,0,0,3623,3621,1, - 0,0,0,3624,289,1,0,0,0,3625,3630,3,294,147,0,3626,3627,5,3,0,0,3627, - 3629,3,294,147,0,3628,3626,1,0,0,0,3629,3632,1,0,0,0,3630,3628,1, - 0,0,0,3630,3631,1,0,0,0,3631,291,1,0,0,0,3632,3630,1,0,0,0,3633, - 3641,5,53,0,0,3634,3641,5,248,0,0,3635,3641,5,73,0,0,3636,3641,5, - 127,0,0,3637,3641,5,287,0,0,3638,3641,5,93,0,0,3639,3641,3,294,147, - 0,3640,3633,1,0,0,0,3640,3634,1,0,0,0,3640,3635,1,0,0,0,3640,3636, - 1,0,0,0,3640,3637,1,0,0,0,3640,3638,1,0,0,0,3640,3639,1,0,0,0,3641, - 293,1,0,0,0,3642,3648,5,332,0,0,3643,3648,5,334,0,0,3644,3648,3, - 300,150,0,3645,3648,5,335,0,0,3646,3648,5,333,0,0,3647,3642,1,0, - 0,0,3647,3643,1,0,0,0,3647,3644,1,0,0,0,3647,3645,1,0,0,0,3647,3646, - 1,0,0,0,3648,295,1,0,0,0,3649,3651,5,319,0,0,3650,3649,1,0,0,0,3650, - 3651,1,0,0,0,3651,3652,1,0,0,0,3652,3662,5,330,0,0,3653,3655,5,319, - 0,0,3654,3653,1,0,0,0,3654,3655,1,0,0,0,3655,3656,1,0,0,0,3656,3662, - 5,331,0,0,3657,3659,5,319,0,0,3658,3657,1,0,0,0,3658,3659,1,0,0, - 0,3659,3660,1,0,0,0,3660,3662,5,329,0,0,3661,3650,1,0,0,0,3661,3654, - 1,0,0,0,3661,3658,1,0,0,0,3662,297,1,0,0,0,3663,3666,3,294,147,0, - 3664,3666,3,168,84,0,3665,3663,1,0,0,0,3665,3664,1,0,0,0,3666,299, - 1,0,0,0,3667,3668,7,35,0,0,3668,301,1,0,0,0,478,305,314,318,322, - 326,330,343,350,354,358,364,368,375,380,384,390,394,413,419,423, - 427,431,439,443,446,451,457,466,472,476,482,489,498,510,519,528, - 534,545,553,561,568,578,585,593,608,643,646,649,653,659,664,671, - 677,681,685,693,699,703,707,721,729,748,773,776,783,790,799,803, - 810,818,827,833,838,842,850,855,864,870,877,886,892,896,902,909, - 914,927,932,944,948,954,963,968,974,1002,1008,1010,1016,1022,1024, - 1032,1034,1044,1046,1061,1066,1073,1083,1089,1091,1099,1101,1126, - 1129,1133,1137,1155,1158,1169,1172,1188,1198,1203,1209,1212,1221, - 1233,1236,1246,1250,1256,1263,1268,1274,1278,1282,1288,1299,1308, - 1318,1321,1326,1328,1335,1341,1343,1347,1357,1363,1366,1368,1380, - 1387,1391,1394,1398,1402,1409,1418,1421,1425,1430,1434,1442,1445, - 1448,1455,1466,1469,1479,1482,1493,1498,1506,1509,1513,1517,1526, - 1535,1538,1547,1550,1553,1557,1568,1571,1574,1581,1584,1603,1607, - 1611,1615,1619,1623,1625,1636,1641,1650,1659,1662,1668,1680,1683, - 1692,1695,1703,1706,1709,1714,1717,1729,1732,1740,1745,1749,1751, - 1753,1768,1770,1781,1802,1812,1823,1827,1829,1837,1848,1859,1866, - 1879,1885,1911,1926,1931,1935,1945,1951,1957,1965,1970,1977,1979, - 1985,1991,1995,2000,2009,2014,2028,2038,2041,2050,2055,2060,2062, - 2071,2074,2082,2085,2092,2097,2108,2111,2115,2117,2125,2135,2141, - 2143,2150,2154,2156,2163,2167,2169,2171,2180,2191,2195,2205,2215, - 2219,2227,2229,2242,2250,2259,2265,2273,2279,2283,2288,2293,2299, - 2313,2315,2345,2356,2364,2369,2374,2387,2393,2396,2403,2408,2411, - 2414,2419,2426,2429,2438,2441,2445,2448,2451,2466,2469,2488,2492, - 2500,2504,2529,2532,2541,2547,2553,2559,2568,2571,2574,2593,2602, - 2624,2627,2637,2646,2652,2658,2669,2671,2676,2683,2685,2691,2697, - 2708,2717,2722,2727,2729,2731,2737,2739,2749,2758,2760,2766,2768, - 2771,2781,2783,2791,2799,2802,2807,2812,2824,2828,2832,2835,2837, - 2845,2848,2858,2866,2872,2874,2882,2892,2898,2912,2921,2928,2933, - 2940,2945,2968,2973,2975,2982,2986,2993,2997,3014,3029,3036,3045, - 3055,3060,3069,3074,3082,3090,3093,3099,3102,3109,3117,3120,3128, - 3131,3157,3168,3173,3180,3182,3195,3210,3214,3218,3222,3228,3232, - 3236,3240,3242,3252,3259,3268,3275,3282,3289,3298,3310,3313,3324, - 3327,3332,3342,3358,3372,3375,3384,3387,3399,3403,3418,3422,3428, - 3438,3450,3459,3480,3486,3493,3501,3506,3509,3515,3528,3541,3554, - 3567,3574,3581,3593,3602,3616,3623,3630,3640,3647,3650,3654,3658, - 3661,3665 + 8,1,8,3,8,755,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,778,8,8,10,8,12,8,781, + 9,8,3,8,783,8,8,1,8,1,8,1,8,1,8,1,8,3,8,790,8,8,1,8,1,8,1,8,1,8, + 1,8,3,8,797,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,806,8,8,1,8,1,8, + 3,8,810,8,8,1,8,1,8,1,8,1,8,1,8,3,8,817,8,8,1,8,1,8,1,8,1,8,5,8, + 823,8,8,10,8,12,8,826,9,8,1,8,1,8,1,8,1,8,5,8,832,8,8,10,8,12,8, + 835,9,8,1,8,1,8,1,8,3,8,840,8,8,1,8,1,8,1,8,3,8,845,8,8,1,8,1,8, + 3,8,849,8,8,1,8,1,8,1,8,1,8,5,8,855,8,8,10,8,12,8,858,9,8,1,8,1, + 8,3,8,862,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1, + 8,1,8,3,8,877,8,8,1,8,1,8,1,8,5,8,882,8,8,10,8,12,8,885,9,8,1,8, + 1,8,1,8,1,8,5,8,891,8,8,10,8,12,8,894,9,8,1,8,1,8,1,8,3,8,899,8, + 8,1,8,1,8,3,8,903,8,8,1,8,1,8,1,8,1,8,3,8,909,8,8,1,8,1,8,1,8,5, + 8,914,8,8,10,8,12,8,917,9,8,1,8,1,8,3,8,921,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,5,8,932,8,8,10,8,12,8,935,9,8,1,8,1,8,3,8,939, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,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,3,8,961,8,8,1,8,1,8,1,8,1,8,1,8,5,8, + 968,8,8,10,8,12,8,971,9,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,3, + 8,981,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,1,8,3,8,1009,8,8,1, + 8,1,8,1,8,1,8,3,8,1015,8,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023, + 8,8,1,8,1,8,1,8,1,8,3,8,1029,8,8,3,8,1031,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,1039,8,8,3,8,1041,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,1051,8,8,3,8,1053,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,1068,8,8,1,8,1,8,1,8,3,8,1073,8,8,1,8,1,8,1,8, + 1,8,1,8,3,8,1080,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1090,8, + 8,1,8,1,8,1,8,1,8,3,8,1096,8,8,3,8,1098,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,1106,8,8,3,8,1108,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,1131,8,8,10, + 8,12,8,1134,9,8,3,8,1136,8,8,1,8,1,8,3,8,1140,8,8,1,8,1,8,3,8,1144, + 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, + 1160,8,8,10,8,12,8,1163,9,8,3,8,1165,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,5,8,1174,8,8,10,8,12,8,1177,9,8,3,8,1179,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,1195,8,8,1,8,1,8,1,8, + 1,8,1,8,1,8,5,8,1203,8,8,10,8,12,8,1206,9,8,1,8,3,8,1209,8,8,1,8, + 1,8,1,8,1,8,3,8,1215,8,8,1,8,3,8,1218,8,8,1,8,1,8,1,8,1,8,1,8,4, + 8,1225,8,8,11,8,12,8,1226,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,3,8,1239,8,8,1,9,3,9,1242,8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10, + 1250,8,10,10,10,12,10,1253,9,10,1,11,3,11,1256,8,11,1,11,1,11,1, + 12,1,12,3,12,1262,8,12,1,12,1,12,1,12,5,12,1267,8,12,10,12,12,12, + 1270,9,12,1,13,1,13,3,13,1274,8,13,1,14,1,14,1,14,1,14,3,14,1280, + 8,14,1,14,1,14,3,14,1284,8,14,1,14,1,14,3,14,1288,8,14,1,15,1,15, + 1,15,1,15,3,15,1294,8,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,5,17, + 1303,8,17,10,17,12,17,1306,9,17,1,18,1,18,1,18,1,18,1,19,1,19,3, + 19,1314,8,19,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1322,8,20,10,20, + 12,20,1325,9,20,3,20,1327,8,20,1,20,1,20,1,20,3,20,1332,8,20,3,20, + 1334,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1341,8,20,1,20,1,20,1,20, + 1,20,3,20,1347,8,20,3,20,1349,8,20,1,21,1,21,3,21,1353,8,21,1,22, + 1,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1363,8,23,1,23,1,23,1,23, + 1,23,3,23,1369,8,23,1,23,5,23,1372,8,23,10,23,12,23,1375,9,23,1, + 24,1,24,1,24,1,24,1,24,1,24,1,24,5,24,1384,8,24,10,24,12,24,1387, + 9,24,1,24,1,24,1,24,1,24,3,24,1393,8,24,1,25,1,25,3,25,1397,8,25, + 1,25,3,25,1400,8,25,1,25,1,25,3,25,1404,8,25,1,26,1,26,3,26,1408, + 8,26,1,26,1,26,1,26,5,26,1413,8,26,10,26,12,26,1416,9,26,1,26,1, + 26,1,26,1,26,5,26,1422,8,26,10,26,12,26,1425,9,26,3,26,1427,8,26, + 1,26,3,26,1430,8,26,1,26,1,26,1,26,3,26,1435,8,26,1,26,3,26,1438, + 8,26,1,26,1,26,1,26,1,26,5,26,1444,8,26,10,26,12,26,1447,9,26,3, + 26,1449,8,26,1,27,1,27,1,27,1,28,1,28,1,28,1,29,3,29,1458,8,29,1, + 29,1,29,1,29,5,29,1463,8,29,10,29,12,29,1466,9,29,1,30,1,30,1,30, + 5,30,1471,8,30,10,30,12,30,1474,9,30,1,31,1,31,1,31,1,31,1,31,1, + 31,5,31,1482,8,31,10,31,12,31,1485,9,31,3,31,1487,8,31,1,31,1,31, + 1,31,1,31,1,31,1,31,5,31,1495,8,31,10,31,12,31,1498,9,31,3,31,1500, + 8,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,5,31,1509,8,31,10,31,12, + 31,1512,9,31,1,31,1,31,3,31,1516,8,31,1,32,1,32,1,32,1,32,5,32,1522, + 8,32,10,32,12,32,1525,9,32,3,32,1527,8,32,1,32,1,32,3,32,1531,8, + 32,1,33,1,33,3,33,1535,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,35,3, + 35,1544,8,35,1,35,1,35,1,35,3,35,1549,8,35,1,35,1,35,1,35,1,35,1, + 35,5,35,1556,8,35,10,35,12,35,1559,9,35,3,35,1561,8,35,1,35,3,35, + 1564,8,35,1,36,1,36,3,36,1568,8,36,1,36,1,36,1,36,1,36,1,36,1,37, + 1,37,1,38,1,38,3,38,1579,8,38,1,38,3,38,1582,8,38,1,38,3,38,1585, + 8,38,1,38,1,38,1,38,1,38,1,38,3,38,1592,8,38,1,38,3,38,1595,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,1,39,1,39,1,39,3,39,1614,8,39,5,39,1616,8,39,10,39,12,39,1619, + 9,39,1,40,3,40,1622,8,40,1,40,1,40,3,40,1626,8,40,1,40,1,40,3,40, + 1630,8,40,1,40,1,40,3,40,1634,8,40,3,40,1636,8,40,1,41,1,41,1,41, + 1,41,1,41,1,41,1,41,5,41,1645,8,41,10,41,12,41,1648,9,41,1,41,1, + 41,3,41,1652,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1661,8, + 42,1,43,1,43,1,44,1,44,1,45,1,45,1,45,3,45,1670,8,45,1,45,3,45,1673, + 8,45,1,46,1,46,1,46,1,46,3,46,1679,8,46,1,47,1,47,1,47,1,47,1,47, + 1,47,3,47,1687,8,47,1,47,1,47,1,47,1,47,1,47,5,47,1694,8,47,10,47, + 12,47,1697,9,47,3,47,1699,8,47,1,47,1,47,1,47,1,47,5,47,1705,8,47, + 10,47,12,47,1708,9,47,3,47,1710,8,47,1,47,3,47,1713,8,47,1,47,1, + 47,1,47,3,47,1718,8,47,1,47,3,47,1721,8,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,1,47,5,47,1731,8,47,10,47,12,47,1734,9,47,3,47,1736, + 8,47,1,47,1,47,1,47,1,47,5,47,1742,8,47,10,47,12,47,1745,9,47,1, + 47,1,47,3,47,1749,8,47,1,47,1,47,3,47,1753,8,47,3,47,1755,8,47,3, + 47,1757,8,47,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,3,49,1772,8,49,3,49,1774,8,49,1,50,1,50,1,50,1,50,1, + 50,1,50,1,50,1,50,1,50,3,50,1785,8,50,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,3,51,1806,8,51,1,52,1,52,1,52,1,52,1,52,1,52,5,52,1814,8,52,10, + 52,12,52,1817,9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,54,1,54,3,54, + 1827,8,54,1,54,1,54,3,54,1831,8,54,3,54,1833,8,54,1,55,1,55,1,55, + 1,55,5,55,1839,8,55,10,55,12,55,1842,9,55,1,55,1,55,1,56,1,56,1, + 56,1,56,5,56,1850,8,56,10,56,12,56,1853,9,56,1,56,1,56,1,57,1,57, + 1,57,1,57,5,57,1861,8,57,10,57,12,57,1864,9,57,1,57,1,57,1,58,1, + 58,3,58,1870,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5, + 58,1881,8,58,10,58,12,58,1884,9,58,1,58,1,58,1,58,3,58,1889,8,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,1913,8,58,10,58, + 12,58,1916,9,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1930,8,58,1,58,1,58,1,58,3,58,1935,8,58,1,58,1,58, + 3,58,1939,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1949, + 8,59,1,59,1,59,1,59,1,59,3,59,1955,8,59,1,59,1,59,1,59,1,59,3,59, + 1961,8,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1969,8,59,1,59,1,59, + 1,59,3,59,1974,8,59,1,59,1,59,1,59,1,59,1,59,3,59,1981,8,59,3,59, + 1983,8,59,1,59,1,59,1,59,1,59,3,59,1989,8,59,1,59,1,59,1,59,1,59, + 3,59,1995,8,59,1,59,1,59,3,59,1999,8,59,1,59,1,59,1,59,3,59,2004, + 8,59,1,59,1,59,1,59,1,59,1,59,5,59,2011,8,59,10,59,12,59,2014,9, + 59,1,59,1,59,3,59,2018,8,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1, + 60,1,60,1,60,5,60,2030,8,60,10,60,12,60,2033,9,60,1,60,1,60,1,60, + 1,60,1,60,5,60,2040,8,60,10,60,12,60,2043,9,60,3,60,2045,8,60,1, + 61,1,61,1,62,1,62,1,62,1,62,1,62,3,62,2054,8,62,1,63,1,63,1,63,3, + 63,2059,8,63,1,63,1,63,1,63,3,63,2064,8,63,3,63,2066,8,63,1,64,1, + 64,1,64,1,64,1,64,5,64,2073,8,64,10,64,12,64,2076,9,64,3,64,2078, + 8,64,1,64,1,64,1,64,1,64,5,64,2084,8,64,10,64,12,64,2087,9,64,3, + 64,2089,8,64,1,64,1,64,1,65,1,65,1,65,3,65,2096,8,65,1,65,1,65,1, + 65,3,65,2101,8,65,1,66,1,66,1,66,1,66,1,66,3,66,2108,8,66,1,66,1, + 66,3,66,2112,8,66,3,66,2114,8,66,1,66,1,66,1,66,1,66,1,66,1,66,3, + 66,2122,8,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,2130,8,66,10,66, + 12,66,2133,9,66,1,66,1,66,1,66,3,66,2138,8,66,3,66,2140,8,66,1,67, + 1,67,1,67,1,67,1,67,3,67,2147,8,67,1,67,1,67,3,67,2151,8,67,3,67, + 2153,8,67,1,67,1,67,1,67,1,67,1,67,3,67,2160,8,67,1,67,1,67,3,67, + 2164,8,67,3,67,2166,8,67,3,67,2168,8,67,1,68,1,68,1,68,1,68,1,68, + 5,68,2175,8,68,10,68,12,68,2178,9,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2188,8,68,1,69,1,69,3,69,2192,8,69,1,70,1,70,1, + 70,1,70,1,70,1,70,5,70,2200,8,70,10,70,12,70,2203,9,70,1,70,1,70, + 1,71,1,71,1,72,1,72,1,72,3,72,2212,8,72,1,72,1,72,3,72,2216,8,72, + 1,72,1,72,1,72,1,72,1,72,1,72,5,72,2224,8,72,10,72,12,72,2227,9, + 72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2239,8, + 73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2247,8,73,1,73,1,73,1,73,1, + 73,1,73,5,73,2254,8,73,10,73,12,73,2257,9,73,1,73,1,73,1,73,3,73, + 2262,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2270,8,73,1,73,1,73, + 1,73,1,73,3,73,2276,8,73,1,73,1,73,3,73,2280,8,73,1,73,1,73,1,73, + 3,73,2285,8,73,1,73,1,73,1,73,3,73,2290,8,73,1,74,1,74,1,74,1,74, + 3,74,2296,8,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,5,74,2310,8,74,10,74,12,74,2313,9,74,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,4,75,2340,8,75,11,75, + 12,75,2341,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2351,8,75,10, + 75,12,75,2354,9,75,1,75,1,75,1,75,1,75,1,75,3,75,2361,8,75,1,75, + 1,75,1,75,3,75,2366,8,75,1,75,1,75,1,75,3,75,2371,8,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2382,8,75,10,75,12,75,2385, + 9,75,1,75,1,75,1,75,3,75,2390,8,75,1,75,3,75,2393,8,75,1,75,1,75, + 1,75,1,75,1,75,3,75,2400,8,75,1,75,1,75,1,75,3,75,2405,8,75,1,75, + 3,75,2408,8,75,1,75,3,75,2411,8,75,1,75,1,75,1,75,3,75,2416,8,75, + 1,75,1,75,1,75,5,75,2421,8,75,10,75,12,75,2424,9,75,3,75,2426,8, + 75,1,75,1,75,1,75,1,75,1,75,5,75,2433,8,75,10,75,12,75,2436,9,75, + 3,75,2438,8,75,1,75,1,75,3,75,2442,8,75,1,75,3,75,2445,8,75,1,75, + 3,75,2448,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,5,75,2461,8,75,10,75,12,75,2464,9,75,3,75,2466,8,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,4,75,2483,8,75,11,75,12,75,2484,1,75,1,75,3,75,2489,8,75,1,75, + 1,75,1,75,1,75,4,75,2495,8,75,11,75,12,75,2496,1,75,1,75,3,75,2501, + 8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2524,8,75,10,75, + 12,75,2527,9,75,3,75,2529,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 3,75,2538,8,75,1,75,1,75,1,75,1,75,3,75,2544,8,75,1,75,1,75,1,75, + 1,75,3,75,2550,8,75,1,75,1,75,1,75,1,75,3,75,2556,8,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,3,75,2565,8,75,1,75,3,75,2568,8,75,1,75, + 3,75,2571,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2590,8,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,3,75,2599,8,75,1,75,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75, + 2619,8,75,10,75,12,75,2622,9,75,3,75,2624,8,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,3,75,2634,8,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,3,75,2643,8,75,1,75,1,75,1,75,1,75,3,75,2649,8,75,1,75,1, + 75,1,75,1,75,3,75,2655,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,3,75,2666,8,75,3,75,2668,8,75,1,75,1,75,1,75,3,75,2673,8, + 75,1,75,1,75,1,75,1,75,1,75,3,75,2680,8,75,3,75,2682,8,75,1,75,1, + 75,1,75,1,75,3,75,2688,8,75,1,75,1,75,1,75,1,75,3,75,2694,8,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2703,8,75,10,75,12,75,2706, + 9,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2714,8,75,1,75,1,75,1,75, + 3,75,2719,8,75,1,75,1,75,1,75,3,75,2724,8,75,3,75,2726,8,75,3,75, + 2728,8,75,1,75,1,75,1,75,1,75,3,75,2734,8,75,3,75,2736,8,75,1,75, + 1,75,1,75,1,75,1,75,1,75,5,75,2744,8,75,10,75,12,75,2747,9,75,1, + 75,1,75,1,75,1,75,1,75,1,75,3,75,2755,8,75,3,75,2757,8,75,1,75,1, + 75,1,75,1,75,3,75,2763,8,75,3,75,2765,8,75,1,75,3,75,2768,8,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2778,8,75,10,75,12,75, + 2781,9,75,1,76,1,76,1,76,1,76,1,76,3,76,2788,8,76,1,76,1,76,1,76, + 1,76,5,76,2794,8,76,10,76,12,76,2797,9,76,3,76,2799,8,76,1,77,1, + 77,1,77,3,77,2804,8,77,1,78,1,78,1,78,3,78,2809,8,78,1,79,1,79,1, + 79,1,79,1,80,1,80,1,81,1,81,1,81,1,81,3,81,2821,8,81,1,82,1,82,3, + 82,2825,8,82,1,82,1,82,3,82,2829,8,82,1,82,3,82,2832,8,82,3,82,2834, + 8,82,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2842,8,83,1,84,3,84,2845, + 8,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84,2855,8,84,1,85, + 1,85,1,86,1,86,1,86,1,86,3,86,2863,8,86,1,87,1,87,1,87,1,87,3,87, + 2869,8,87,3,87,2871,8,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,2879, + 8,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,3,92,2889,8,92,1,92, + 1,92,1,92,1,92,3,92,2895,8,92,1,93,1,93,1,94,1,94,1,95,1,95,1,95, + 1,95,1,95,1,95,5,95,2907,8,95,10,95,12,95,2910,9,95,1,95,1,95,1, + 95,1,95,1,95,1,95,3,95,2918,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2925, + 8,95,1,95,1,95,1,95,3,95,2930,8,95,1,95,1,95,1,95,1,95,1,95,3,95, + 2937,8,95,1,95,1,95,1,95,3,95,2942,8,95,1,95,1,95,1,95,1,95,1,95, + 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, + 1,95,5,95,2963,8,95,10,95,12,95,2966,9,95,1,95,1,95,3,95,2970,8, + 95,3,95,2972,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2979,8,95,5,95,2981, + 8,95,10,95,12,95,2984,9,95,1,96,1,96,1,96,1,96,3,96,2990,8,96,1, + 97,1,97,3,97,2994,8,97,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1, + 99,1,99,1,100,1,100,1,100,1,100,3,100,3010,8,100,1,100,1,100,1,100, + 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,5,100,3023,8,100, + 10,100,12,100,3026,9,100,1,100,1,100,1,100,1,100,3,100,3032,8,100, + 1,100,1,100,1,100,1,100,1,100,1,100,1,100,3,100,3041,8,100,1,100, + 1,100,1,100,1,100,1,100,1,100,5,100,3049,8,100,10,100,12,100,3052, + 9,100,1,100,1,100,3,100,3056,8,100,1,100,1,100,1,100,1,100,1,100, + 5,100,3063,8,100,10,100,12,100,3066,9,100,1,100,1,100,3,100,3070, + 8,100,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3078,8,101,1,102, + 1,102,1,102,1,102,5,102,3084,8,102,10,102,12,102,3087,9,102,3,102, + 3089,8,102,1,102,1,102,1,102,1,102,3,102,3095,8,102,1,102,3,102, + 3098,8,102,1,102,1,102,1,102,1,102,1,102,3,102,3105,8,102,1,102, + 1,102,1,102,1,102,5,102,3111,8,102,10,102,12,102,3114,9,102,3,102, + 3116,8,102,1,102,1,102,1,102,1,102,5,102,3122,8,102,10,102,12,102, + 3125,9,102,3,102,3127,8,102,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,3153,8,103,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,3164,8,104, + 1,105,1,105,1,105,3,105,3169,8,105,1,105,1,105,1,105,1,105,1,105, + 5,105,3176,8,105,10,105,12,105,3179,9,105,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,5,106,3189,8,106,10,106,12,106,3192,9,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,3,106,3206,8,106,1,107,1,107,3,107,3210,8,107,1,107,1,107, + 3,107,3214,8,107,1,107,1,107,3,107,3218,8,107,1,107,1,107,1,107, + 1,107,3,107,3224,8,107,1,107,1,107,3,107,3228,8,107,1,107,1,107, + 3,107,3232,8,107,1,107,1,107,3,107,3236,8,107,3,107,3238,8,107,1, + 108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,3,109,3248,8,109,1, + 110,1,110,1,110,1,110,1,110,3,110,3255,8,110,1,111,1,111,1,111,1, + 111,1,111,1,111,1,111,3,111,3264,8,111,1,112,1,112,1,112,1,112,1, + 112,3,112,3271,8,112,1,113,1,113,1,113,1,113,1,113,3,113,3278,8, + 113,1,114,1,114,1,114,5,114,3283,8,114,10,114,12,114,3286,9,114, + 1,115,1,115,1,115,1,115,5,115,3292,8,115,10,115,12,115,3295,9,115, + 1,115,1,115,1,116,1,116,1,116,1,116,1,116,5,116,3304,8,116,10,116, + 12,116,3307,9,116,3,116,3309,8,116,1,116,1,116,1,117,1,117,1,117, + 1,117,1,117,5,117,3318,8,117,10,117,12,117,3321,9,117,3,117,3323, + 8,117,1,117,1,117,1,118,3,118,3328,8,118,1,118,1,118,1,119,1,119, + 1,119,1,120,1,120,1,120,3,120,3338,8,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120, + 3354,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,4,121,3366,8,121,11,121,12,121,3367,1,121,3,121,3371,8,121, + 1,121,1,121,1,121,1,121,1,121,4,121,3378,8,121,11,121,12,121,3379, + 1,121,3,121,3383,8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,5,121,3393,8,121,10,121,12,121,3396,9,121,1,121,3,121,3399, + 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,5,121,3412,8,121,10,121,12,121,3415,9,121,1,121,3,121,3418, + 8,121,1,121,1,121,1,121,1,121,3,121,3424,8,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,3,121,3434,8,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,3446,8,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,3,121,3455,8,121,1,122,1,122, + 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124, + 1,125,1,125,1,125,1,125,5,125,3474,8,125,10,125,12,125,3477,9,125, + 1,125,1,125,1,125,3,125,3482,8,125,1,126,1,126,1,126,4,126,3487, + 8,126,11,126,12,126,3488,1,127,1,127,1,127,1,127,1,127,1,127,3,127, + 3497,8,127,1,128,1,128,1,128,3,128,3502,8,128,1,129,3,129,3505,8, + 129,1,129,1,129,1,130,1,130,3,130,3511,8,130,1,131,1,131,1,131,1, + 131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,3524,8,131,1, + 132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 3,132,3537,8,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,3550,8,133,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,3,134,3563,8,134,1,135,1,135, + 1,135,1,135,1,135,3,135,3570,8,135,1,136,1,136,1,136,1,136,1,136, + 3,136,3577,8,136,1,137,1,137,1,138,1,138,1,139,1,139,1,140,1,140, + 1,141,1,141,3,141,3589,8,141,1,142,1,142,1,143,1,143,1,144,1,144, + 1,144,5,144,3598,8,144,10,144,12,144,3601,9,144,1,145,1,145,1,145, + 1,145,1,145,1,145,1,146,1,146,1,147,1,147,1,147,3,147,3614,8,147, + 1,148,1,148,1,148,1,148,1,148,3,148,3621,8,148,1,149,1,149,1,149, + 5,149,3626,8,149,10,149,12,149,3629,9,149,1,150,1,150,1,150,1,150, + 1,150,1,150,1,150,3,150,3638,8,150,1,151,1,151,1,151,1,151,1,151, + 3,151,3645,8,151,1,152,3,152,3648,8,152,1,152,1,152,3,152,3652,8, + 152,1,152,1,152,3,152,3656,8,152,1,152,3,152,3659,8,152,1,153,1, + 153,3,153,3663,8,153,1,154,1,154,1,154,0,7,46,78,144,148,150,190, + 210,155,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,0,36,2,0, + 39,39,229,229,2,0,72,72,131,131,2,0,105,105,122,122,2,0,92,92,123, + 123,1,0,239,240,2,0,101,101,174,174,2,0,324,324,329,329,2,0,91,91, + 281,281,2,0,29,29,75,75,2,0,101,101,148,148,2,0,22,22,79,79,2,0, + 33,33,259,259,3,0,35,35,150,150,270,270,2,0,124,124,247,247,2,0, + 85,85,89,89,2,0,144,144,189,189,2,0,125,125,197,197,2,0,54,54,281, + 281,1,0,318,319,1,0,320,322,1,0,291,293,4,0,89,89,97,97,273,273, + 283,283,2,0,49,49,280,280,2,0,100,100,241,241,1,0,312,317,3,0,22, + 22,26,26,254,254,2,0,97,97,273,273,5,0,67,67,118,118,170,171,245, + 245,310,310,1,0,175,178,2,0,304,304,306,306,2,0,102,102,212,212, + 3,0,113,113,137,137,263,263,4,0,80,80,132,132,160,160,294,294,2, + 0,192,192,309,309,2,0,268,268,298,298,54,0,18,22,24,24,26,27,29, + 33,35,35,37,39,42,49,51,52,56,56,65,67,69,72,74,75,77,78,80,82,85, + 87,89,89,92,92,95,95,98,102,104,104,107,113,116,116,118,121,123, + 124,126,126,129,129,131,132,134,135,137,137,144,151,153,153,155, + 155,157,157,160,171,173,180,184,189,191,193,196,196,198,213,215, + 220,222,233,235,237,239,247,249,259,261,264,266,271,274,276,278, + 280,282,284,286,289,291,295,297,299,302,303,305,311,4212,0,313,1, + 0,0,0,2,318,1,0,0,0,4,320,1,0,0,0,6,324,1,0,0,0,8,328,1,0,0,0,10, + 332,1,0,0,0,12,336,1,0,0,0,14,340,1,0,0,0,16,1238,1,0,0,0,18,1241, + 1,0,0,0,20,1245,1,0,0,0,22,1255,1,0,0,0,24,1259,1,0,0,0,26,1273, + 1,0,0,0,28,1275,1,0,0,0,30,1289,1,0,0,0,32,1295,1,0,0,0,34,1299, + 1,0,0,0,36,1307,1,0,0,0,38,1313,1,0,0,0,40,1315,1,0,0,0,42,1352, + 1,0,0,0,44,1354,1,0,0,0,46,1356,1,0,0,0,48,1392,1,0,0,0,50,1396, + 1,0,0,0,52,1405,1,0,0,0,54,1450,1,0,0,0,56,1453,1,0,0,0,58,1457, + 1,0,0,0,60,1467,1,0,0,0,62,1515,1,0,0,0,64,1530,1,0,0,0,66,1534, + 1,0,0,0,68,1536,1,0,0,0,70,1543,1,0,0,0,72,1565,1,0,0,0,74,1574, + 1,0,0,0,76,1594,1,0,0,0,78,1596,1,0,0,0,80,1635,1,0,0,0,82,1651, + 1,0,0,0,84,1653,1,0,0,0,86,1662,1,0,0,0,88,1664,1,0,0,0,90,1672, + 1,0,0,0,92,1678,1,0,0,0,94,1680,1,0,0,0,96,1758,1,0,0,0,98,1773, + 1,0,0,0,100,1784,1,0,0,0,102,1805,1,0,0,0,104,1807,1,0,0,0,106,1820, + 1,0,0,0,108,1824,1,0,0,0,110,1834,1,0,0,0,112,1845,1,0,0,0,114,1856, + 1,0,0,0,116,1938,1,0,0,0,118,2017,1,0,0,0,120,2044,1,0,0,0,122,2046, + 1,0,0,0,124,2053,1,0,0,0,126,2065,1,0,0,0,128,2067,1,0,0,0,130,2095, + 1,0,0,0,132,2102,1,0,0,0,134,2167,1,0,0,0,136,2187,1,0,0,0,138,2189, + 1,0,0,0,140,2193,1,0,0,0,142,2206,1,0,0,0,144,2215,1,0,0,0,146,2289, + 1,0,0,0,148,2295,1,0,0,0,150,2767,1,0,0,0,152,2782,1,0,0,0,154,2800, + 1,0,0,0,156,2805,1,0,0,0,158,2810,1,0,0,0,160,2814,1,0,0,0,162,2820, + 1,0,0,0,164,2833,1,0,0,0,166,2841,1,0,0,0,168,2854,1,0,0,0,170,2856, + 1,0,0,0,172,2862,1,0,0,0,174,2870,1,0,0,0,176,2878,1,0,0,0,178,2880, + 1,0,0,0,180,2882,1,0,0,0,182,2884,1,0,0,0,184,2886,1,0,0,0,186,2896, + 1,0,0,0,188,2898,1,0,0,0,190,2971,1,0,0,0,192,2989,1,0,0,0,194,2993, + 1,0,0,0,196,2995,1,0,0,0,198,3000,1,0,0,0,200,3069,1,0,0,0,202,3071, + 1,0,0,0,204,3088,1,0,0,0,206,3152,1,0,0,0,208,3163,1,0,0,0,210,3165, + 1,0,0,0,212,3205,1,0,0,0,214,3237,1,0,0,0,216,3239,1,0,0,0,218,3247, + 1,0,0,0,220,3254,1,0,0,0,222,3263,1,0,0,0,224,3270,1,0,0,0,226,3277, + 1,0,0,0,228,3279,1,0,0,0,230,3287,1,0,0,0,232,3298,1,0,0,0,234,3312, + 1,0,0,0,236,3327,1,0,0,0,238,3331,1,0,0,0,240,3353,1,0,0,0,242,3454, + 1,0,0,0,244,3456,1,0,0,0,246,3461,1,0,0,0,248,3466,1,0,0,0,250,3469, + 1,0,0,0,252,3486,1,0,0,0,254,3496,1,0,0,0,256,3501,1,0,0,0,258,3504, + 1,0,0,0,260,3510,1,0,0,0,262,3523,1,0,0,0,264,3536,1,0,0,0,266,3549, + 1,0,0,0,268,3562,1,0,0,0,270,3569,1,0,0,0,272,3576,1,0,0,0,274,3578, + 1,0,0,0,276,3580,1,0,0,0,278,3582,1,0,0,0,280,3584,1,0,0,0,282,3588, + 1,0,0,0,284,3590,1,0,0,0,286,3592,1,0,0,0,288,3594,1,0,0,0,290,3602, + 1,0,0,0,292,3608,1,0,0,0,294,3613,1,0,0,0,296,3620,1,0,0,0,298,3622, + 1,0,0,0,300,3637,1,0,0,0,302,3644,1,0,0,0,304,3658,1,0,0,0,306,3662, + 1,0,0,0,308,3664,1,0,0,0,310,312,3,2,1,0,311,310,1,0,0,0,312,315, + 1,0,0,0,313,311,1,0,0,0,313,314,1,0,0,0,314,316,1,0,0,0,315,313, + 1,0,0,0,316,317,5,0,0,1,317,1,1,0,0,0,318,319,3,4,2,0,319,3,1,0, + 0,0,320,322,3,16,8,0,321,323,5,325,0,0,322,321,1,0,0,0,322,323,1, + 0,0,0,323,5,1,0,0,0,324,326,3,142,71,0,325,327,5,325,0,0,326,325, + 1,0,0,0,326,327,1,0,0,0,327,7,1,0,0,0,328,330,3,228,114,0,329,331, + 5,325,0,0,330,329,1,0,0,0,330,331,1,0,0,0,331,9,1,0,0,0,332,334, + 3,190,95,0,333,335,5,325,0,0,334,333,1,0,0,0,334,335,1,0,0,0,335, + 11,1,0,0,0,336,338,3,210,105,0,337,339,5,325,0,0,338,337,1,0,0,0, + 338,339,1,0,0,0,339,13,1,0,0,0,340,341,3,230,115,0,341,342,5,0,0, + 1,342,15,1,0,0,0,343,1239,3,18,9,0,344,345,5,288,0,0,345,1239,3, + 270,135,0,346,347,5,53,0,0,347,351,5,42,0,0,348,349,5,119,0,0,349, + 350,5,182,0,0,350,352,5,94,0,0,351,348,1,0,0,0,351,352,1,0,0,0,352, + 353,1,0,0,0,353,354,3,276,138,0,354,355,5,290,0,0,355,358,3,302, + 151,0,356,357,5,46,0,0,357,359,3,174,87,0,358,356,1,0,0,0,358,359, + 1,0,0,0,359,362,1,0,0,0,360,361,5,31,0,0,361,363,3,296,148,0,362, + 360,1,0,0,0,362,363,1,0,0,0,363,366,1,0,0,0,364,365,5,304,0,0,365, + 367,3,32,16,0,366,364,1,0,0,0,366,367,1,0,0,0,367,1239,1,0,0,0,368, + 369,5,83,0,0,369,372,5,42,0,0,370,371,5,119,0,0,371,373,5,94,0,0, + 372,370,1,0,0,0,372,373,1,0,0,0,373,374,1,0,0,0,374,376,3,274,137, + 0,375,377,7,0,0,0,376,375,1,0,0,0,376,377,1,0,0,0,377,1239,1,0,0, + 0,378,379,5,53,0,0,379,383,5,243,0,0,380,381,5,119,0,0,381,382,5, + 182,0,0,382,384,5,94,0,0,383,380,1,0,0,0,383,384,1,0,0,0,384,385, + 1,0,0,0,385,388,3,272,136,0,386,387,5,31,0,0,387,389,3,296,148,0, + 388,386,1,0,0,0,388,389,1,0,0,0,389,392,1,0,0,0,390,391,5,304,0, + 0,391,393,3,32,16,0,392,390,1,0,0,0,392,393,1,0,0,0,393,1239,1,0, + 0,0,394,395,5,83,0,0,395,398,5,243,0,0,396,397,5,119,0,0,397,399, + 5,94,0,0,398,396,1,0,0,0,398,399,1,0,0,0,399,400,1,0,0,0,400,402, + 3,270,135,0,401,403,7,0,0,0,402,401,1,0,0,0,402,403,1,0,0,0,403, + 1239,1,0,0,0,404,405,5,23,0,0,405,406,5,243,0,0,406,407,3,270,135, + 0,407,408,5,223,0,0,408,409,5,269,0,0,409,410,3,272,136,0,410,1239, + 1,0,0,0,411,412,5,23,0,0,412,413,5,243,0,0,413,414,3,270,135,0,414, + 415,5,251,0,0,415,416,5,31,0,0,416,417,3,296,148,0,417,1239,1,0, + 0,0,418,421,5,53,0,0,419,420,5,194,0,0,420,422,5,226,0,0,421,419, + 1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,427,5,260,0,0,424,425, + 5,119,0,0,425,426,5,182,0,0,426,428,5,94,0,0,427,424,1,0,0,0,427, + 428,1,0,0,0,428,429,1,0,0,0,429,431,3,264,132,0,430,432,3,110,55, + 0,431,430,1,0,0,0,431,432,1,0,0,0,432,435,1,0,0,0,433,434,5,46,0, + 0,434,436,3,174,87,0,435,433,1,0,0,0,435,436,1,0,0,0,436,439,1,0, + 0,0,437,438,5,304,0,0,438,440,3,32,16,0,439,437,1,0,0,0,439,440, + 1,0,0,0,440,441,1,0,0,0,441,447,5,28,0,0,442,448,3,18,9,0,443,444, + 5,1,0,0,444,445,3,18,9,0,445,446,5,2,0,0,446,448,1,0,0,0,447,442, + 1,0,0,0,447,443,1,0,0,0,448,454,1,0,0,0,449,451,5,304,0,0,450,452, + 5,179,0,0,451,450,1,0,0,0,451,452,1,0,0,0,452,453,1,0,0,0,453,455, + 5,65,0,0,454,449,1,0,0,0,454,455,1,0,0,0,455,1239,1,0,0,0,456,459, + 5,53,0,0,457,458,5,194,0,0,458,460,5,226,0,0,459,457,1,0,0,0,459, + 460,1,0,0,0,460,461,1,0,0,0,461,465,5,260,0,0,462,463,5,119,0,0, + 463,464,5,182,0,0,464,466,5,94,0,0,465,462,1,0,0,0,465,466,1,0,0, + 0,466,467,1,0,0,0,467,468,3,264,132,0,468,469,5,1,0,0,469,474,3, + 26,13,0,470,471,5,3,0,0,471,473,3,26,13,0,472,470,1,0,0,0,473,476, + 1,0,0,0,474,472,1,0,0,0,474,475,1,0,0,0,475,477,1,0,0,0,476,474, + 1,0,0,0,477,480,5,2,0,0,478,479,5,46,0,0,479,481,3,174,87,0,480, + 478,1,0,0,0,480,481,1,0,0,0,481,484,1,0,0,0,482,483,5,304,0,0,483, + 485,3,32,16,0,484,482,1,0,0,0,484,485,1,0,0,0,485,1239,1,0,0,0,486, + 487,5,83,0,0,487,490,5,260,0,0,488,489,5,119,0,0,489,491,5,94,0, + 0,490,488,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492,1239,3,262, + 131,0,493,494,5,127,0,0,494,495,5,130,0,0,495,497,3,262,131,0,496, + 498,3,112,56,0,497,496,1,0,0,0,497,498,1,0,0,0,498,499,1,0,0,0,499, + 500,3,18,9,0,500,1239,1,0,0,0,501,502,5,73,0,0,502,503,5,105,0,0, + 503,505,3,262,131,0,504,506,3,54,27,0,505,504,1,0,0,0,505,506,1, + 0,0,0,506,1239,1,0,0,0,507,508,5,274,0,0,508,509,5,260,0,0,509,1239, + 3,262,131,0,510,511,5,46,0,0,511,512,5,190,0,0,512,513,5,260,0,0, + 513,514,3,262,131,0,514,517,5,133,0,0,515,518,3,174,87,0,516,518, + 5,183,0,0,517,515,1,0,0,0,517,516,1,0,0,0,518,1239,1,0,0,0,519,520, + 5,46,0,0,520,521,5,190,0,0,521,522,5,299,0,0,522,523,3,266,133,0, + 523,526,5,133,0,0,524,527,3,174,87,0,525,527,5,183,0,0,526,524,1, + 0,0,0,526,525,1,0,0,0,527,1239,1,0,0,0,528,529,5,46,0,0,529,530, + 5,190,0,0,530,531,5,44,0,0,531,532,3,282,141,0,532,535,5,133,0,0, + 533,536,3,174,87,0,534,536,5,183,0,0,535,533,1,0,0,0,535,534,1,0, + 0,0,536,1239,1,0,0,0,537,538,5,23,0,0,538,541,5,260,0,0,539,540, + 5,119,0,0,540,542,5,94,0,0,541,539,1,0,0,0,541,542,1,0,0,0,542,543, + 1,0,0,0,543,544,3,262,131,0,544,545,5,223,0,0,545,546,5,269,0,0, + 546,547,3,264,132,0,547,1239,1,0,0,0,548,549,5,23,0,0,549,552,5, + 260,0,0,550,551,5,119,0,0,551,553,5,94,0,0,552,550,1,0,0,0,552,553, + 1,0,0,0,553,554,1,0,0,0,554,555,3,262,131,0,555,556,5,19,0,0,556, + 560,5,44,0,0,557,558,5,119,0,0,558,559,5,182,0,0,559,561,5,94,0, + 0,560,557,1,0,0,0,560,561,1,0,0,0,561,562,1,0,0,0,562,563,3,28,14, + 0,563,1239,1,0,0,0,564,565,5,23,0,0,565,568,5,260,0,0,566,567,5, + 119,0,0,567,569,5,94,0,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570, + 1,0,0,0,570,571,3,262,131,0,571,572,5,223,0,0,572,575,5,44,0,0,573, + 574,5,119,0,0,574,576,5,94,0,0,575,573,1,0,0,0,575,576,1,0,0,0,576, + 577,1,0,0,0,577,578,3,282,141,0,578,579,5,269,0,0,579,580,3,286, + 143,0,580,1239,1,0,0,0,581,582,5,23,0,0,582,585,5,260,0,0,583,584, + 5,119,0,0,584,586,5,94,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586,587, + 1,0,0,0,587,588,3,262,131,0,588,589,5,83,0,0,589,592,5,44,0,0,590, + 591,5,119,0,0,591,593,5,94,0,0,592,590,1,0,0,0,592,593,1,0,0,0,593, + 594,1,0,0,0,594,595,3,282,141,0,595,1239,1,0,0,0,596,597,5,23,0, + 0,597,600,5,260,0,0,598,599,5,119,0,0,599,601,5,94,0,0,600,598,1, + 0,0,0,600,601,1,0,0,0,601,602,1,0,0,0,602,603,3,262,131,0,603,604, + 5,23,0,0,604,605,5,44,0,0,605,606,3,282,141,0,606,607,5,251,0,0, + 607,608,5,65,0,0,608,609,5,276,0,0,609,610,3,190,95,0,610,1239,1, + 0,0,0,611,612,5,23,0,0,612,615,5,260,0,0,613,614,5,119,0,0,614,616, + 5,94,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616,617,1,0,0,0,617,618, + 3,262,131,0,618,619,5,23,0,0,619,620,5,44,0,0,620,621,3,282,141, + 0,621,622,5,83,0,0,622,623,5,182,0,0,623,624,5,183,0,0,624,1239, + 1,0,0,0,625,626,5,23,0,0,626,627,5,260,0,0,627,628,3,262,131,0,628, + 629,5,251,0,0,629,630,5,31,0,0,630,631,3,296,148,0,631,1239,1,0, + 0,0,632,633,5,23,0,0,633,634,5,260,0,0,634,635,3,262,131,0,635,636, + 5,251,0,0,636,637,5,216,0,0,637,638,3,34,17,0,638,1239,1,0,0,0,639, + 640,5,23,0,0,640,641,5,260,0,0,641,642,3,262,131,0,642,643,5,93, + 0,0,643,656,3,278,139,0,644,653,5,1,0,0,645,650,3,224,112,0,646, + 647,5,3,0,0,647,649,3,224,112,0,648,646,1,0,0,0,649,652,1,0,0,0, + 650,648,1,0,0,0,650,651,1,0,0,0,651,654,1,0,0,0,652,650,1,0,0,0, + 653,645,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,657,5,2,0,0, + 656,644,1,0,0,0,656,657,1,0,0,0,657,659,1,0,0,0,658,660,3,54,27, + 0,659,658,1,0,0,0,659,660,1,0,0,0,660,1239,1,0,0,0,661,662,5,24, + 0,0,662,665,3,262,131,0,663,664,5,304,0,0,664,666,3,32,16,0,665, + 663,1,0,0,0,665,666,1,0,0,0,666,1239,1,0,0,0,667,670,5,53,0,0,668, + 669,5,194,0,0,669,671,5,226,0,0,670,668,1,0,0,0,670,671,1,0,0,0, + 671,672,1,0,0,0,672,673,5,167,0,0,673,677,5,299,0,0,674,675,5,119, + 0,0,675,676,5,182,0,0,676,678,5,94,0,0,677,674,1,0,0,0,677,678,1, + 0,0,0,678,679,1,0,0,0,679,683,3,268,134,0,680,681,5,109,0,0,681, + 682,5,208,0,0,682,684,3,184,92,0,683,680,1,0,0,0,683,684,1,0,0,0, + 684,687,1,0,0,0,685,686,5,46,0,0,686,688,3,174,87,0,687,685,1,0, + 0,0,687,688,1,0,0,0,688,691,1,0,0,0,689,690,5,304,0,0,690,692,3, + 32,16,0,691,689,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,694, + 5,28,0,0,694,695,3,18,9,0,695,1239,1,0,0,0,696,699,5,53,0,0,697, + 698,5,194,0,0,698,700,5,226,0,0,699,697,1,0,0,0,699,700,1,0,0,0, + 700,701,1,0,0,0,701,702,5,299,0,0,702,705,3,268,134,0,703,704,5, + 46,0,0,704,706,3,174,87,0,705,703,1,0,0,0,705,706,1,0,0,0,706,709, + 1,0,0,0,707,708,5,246,0,0,708,710,7,1,0,0,709,707,1,0,0,0,709,710, + 1,0,0,0,710,713,1,0,0,0,711,712,5,304,0,0,712,714,3,32,16,0,713, + 711,1,0,0,0,713,714,1,0,0,0,714,715,1,0,0,0,715,716,5,28,0,0,716, + 717,3,18,9,0,717,1239,1,0,0,0,718,719,5,222,0,0,719,720,5,167,0, + 0,720,721,5,299,0,0,721,1239,3,266,133,0,722,723,5,83,0,0,723,724, + 5,167,0,0,724,727,5,299,0,0,725,726,5,119,0,0,726,728,5,94,0,0,727, + 725,1,0,0,0,727,728,1,0,0,0,728,729,1,0,0,0,729,1239,3,266,133,0, + 730,731,5,23,0,0,731,732,5,167,0,0,732,735,5,299,0,0,733,734,5,119, + 0,0,734,736,5,94,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,737,1,0, + 0,0,737,738,3,266,133,0,738,739,5,223,0,0,739,740,5,269,0,0,740, + 741,3,268,134,0,741,1239,1,0,0,0,742,743,5,23,0,0,743,744,5,167, + 0,0,744,745,5,299,0,0,745,746,3,266,133,0,746,747,5,251,0,0,747, + 748,5,216,0,0,748,749,3,34,17,0,749,1239,1,0,0,0,750,751,5,83,0, + 0,751,754,5,299,0,0,752,753,5,119,0,0,753,755,5,94,0,0,754,752,1, + 0,0,0,754,755,1,0,0,0,755,756,1,0,0,0,756,1239,3,266,133,0,757,758, + 5,23,0,0,758,759,5,299,0,0,759,760,3,266,133,0,760,761,5,223,0,0, + 761,762,5,269,0,0,762,763,3,268,134,0,763,1239,1,0,0,0,764,765,5, + 23,0,0,765,766,5,299,0,0,766,767,3,266,133,0,767,768,5,251,0,0,768, + 769,5,31,0,0,769,770,3,296,148,0,770,1239,1,0,0,0,771,772,5,37,0, + 0,772,773,3,278,139,0,773,782,5,1,0,0,774,779,3,224,112,0,775,776, + 5,3,0,0,776,778,3,224,112,0,777,775,1,0,0,0,778,781,1,0,0,0,779, + 777,1,0,0,0,779,780,1,0,0,0,780,783,1,0,0,0,781,779,1,0,0,0,782, + 774,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,5,2,0,0,785, + 1239,1,0,0,0,786,789,5,53,0,0,787,788,5,194,0,0,788,790,5,226,0, + 0,789,787,1,0,0,0,789,790,1,0,0,0,790,791,1,0,0,0,791,1239,3,230, + 115,0,792,793,5,83,0,0,793,796,5,107,0,0,794,795,5,119,0,0,795,797, + 5,94,0,0,796,794,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,1239, + 3,234,117,0,799,800,5,53,0,0,800,801,5,235,0,0,801,805,3,302,151, + 0,802,803,5,304,0,0,803,804,5,20,0,0,804,806,3,294,147,0,805,802, + 1,0,0,0,805,806,1,0,0,0,806,809,1,0,0,0,807,808,5,122,0,0,808,810, + 3,274,137,0,809,807,1,0,0,0,809,810,1,0,0,0,810,1239,1,0,0,0,811, + 812,5,83,0,0,812,813,5,235,0,0,813,816,3,302,151,0,814,815,5,122, + 0,0,815,817,3,274,137,0,816,814,1,0,0,0,816,817,1,0,0,0,817,1239, + 1,0,0,0,818,819,5,110,0,0,819,824,3,300,150,0,820,821,5,3,0,0,821, + 823,3,300,150,0,822,820,1,0,0,0,823,826,1,0,0,0,824,822,1,0,0,0, + 824,825,1,0,0,0,825,827,1,0,0,0,826,824,1,0,0,0,827,828,5,269,0, + 0,828,833,3,296,148,0,829,830,5,3,0,0,830,832,3,296,148,0,831,829, + 1,0,0,0,832,835,1,0,0,0,833,831,1,0,0,0,833,834,1,0,0,0,834,839, + 1,0,0,0,835,833,1,0,0,0,836,837,5,304,0,0,837,838,5,20,0,0,838,840, + 5,193,0,0,839,836,1,0,0,0,839,840,1,0,0,0,840,844,1,0,0,0,841,842, + 5,111,0,0,842,843,5,36,0,0,843,845,3,294,147,0,844,841,1,0,0,0,844, + 845,1,0,0,0,845,848,1,0,0,0,846,847,5,122,0,0,847,849,3,274,137, + 0,848,846,1,0,0,0,848,849,1,0,0,0,849,1239,1,0,0,0,850,861,5,110, + 0,0,851,856,3,300,150,0,852,853,5,3,0,0,853,855,3,300,150,0,854, + 852,1,0,0,0,855,858,1,0,0,0,856,854,1,0,0,0,856,857,1,0,0,0,857, + 862,1,0,0,0,858,856,1,0,0,0,859,860,5,22,0,0,860,862,5,215,0,0,861, + 851,1,0,0,0,861,859,1,0,0,0,862,863,1,0,0,0,863,864,5,190,0,0,864, + 865,3,258,129,0,865,866,5,269,0,0,866,870,3,296,148,0,867,868,5, + 304,0,0,868,869,5,110,0,0,869,871,5,193,0,0,870,867,1,0,0,0,870, + 871,1,0,0,0,871,1239,1,0,0,0,872,876,5,233,0,0,873,874,5,20,0,0, + 874,875,5,193,0,0,875,877,5,103,0,0,876,873,1,0,0,0,876,877,1,0, + 0,0,877,878,1,0,0,0,878,883,3,300,150,0,879,880,5,3,0,0,880,882, + 3,300,150,0,881,879,1,0,0,0,882,885,1,0,0,0,883,881,1,0,0,0,883, + 884,1,0,0,0,884,886,1,0,0,0,885,883,1,0,0,0,886,887,5,105,0,0,887, + 892,3,296,148,0,888,889,5,3,0,0,889,891,3,296,148,0,890,888,1,0, + 0,0,891,894,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,898,1,0, + 0,0,894,892,1,0,0,0,895,896,5,111,0,0,896,897,5,36,0,0,897,899,3, + 294,147,0,898,895,1,0,0,0,898,899,1,0,0,0,899,902,1,0,0,0,900,901, + 5,122,0,0,901,903,3,274,137,0,902,900,1,0,0,0,902,903,1,0,0,0,903, + 1239,1,0,0,0,904,908,5,233,0,0,905,906,5,110,0,0,906,907,5,193,0, + 0,907,909,5,103,0,0,908,905,1,0,0,0,908,909,1,0,0,0,909,920,1,0, + 0,0,910,915,3,300,150,0,911,912,5,3,0,0,912,914,3,300,150,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, + 921,1,0,0,0,917,915,1,0,0,0,918,919,5,22,0,0,919,921,5,215,0,0,920, + 910,1,0,0,0,920,918,1,0,0,0,921,922,1,0,0,0,922,923,5,190,0,0,923, + 924,3,258,129,0,924,925,5,105,0,0,925,926,3,296,148,0,926,1239,1, + 0,0,0,927,938,5,74,0,0,928,933,3,254,127,0,929,930,5,3,0,0,930,932, + 3,254,127,0,931,929,1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933, + 934,1,0,0,0,934,939,1,0,0,0,935,933,1,0,0,0,936,937,5,22,0,0,937, + 939,5,215,0,0,938,928,1,0,0,0,938,936,1,0,0,0,939,940,1,0,0,0,940, + 941,5,190,0,0,941,942,3,258,129,0,942,943,5,269,0,0,943,944,3,296, + 148,0,944,1239,1,0,0,0,945,946,5,251,0,0,946,950,5,235,0,0,947,951, + 5,22,0,0,948,951,5,180,0,0,949,951,3,302,151,0,950,947,1,0,0,0,950, + 948,1,0,0,0,950,949,1,0,0,0,951,954,1,0,0,0,952,953,5,122,0,0,953, + 955,3,274,137,0,954,952,1,0,0,0,954,955,1,0,0,0,955,1239,1,0,0,0, + 956,957,5,253,0,0,957,960,5,112,0,0,958,959,5,190,0,0,959,961,3, + 258,129,0,960,958,1,0,0,0,960,961,1,0,0,0,961,1239,1,0,0,0,962,974, + 5,95,0,0,963,964,5,1,0,0,964,969,3,218,109,0,965,966,5,3,0,0,966, + 968,3,218,109,0,967,965,1,0,0,0,968,971,1,0,0,0,969,967,1,0,0,0, + 969,970,1,0,0,0,970,972,1,0,0,0,971,969,1,0,0,0,972,973,5,2,0,0, + 973,975,1,0,0,0,974,963,1,0,0,0,974,975,1,0,0,0,975,976,1,0,0,0, + 976,1239,3,16,8,0,977,978,5,95,0,0,978,980,5,24,0,0,979,981,5,297, + 0,0,980,979,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,1239,3,16, + 8,0,983,984,5,253,0,0,984,985,5,53,0,0,985,986,5,260,0,0,986,1239, + 3,262,131,0,987,988,5,253,0,0,988,989,5,53,0,0,989,990,5,243,0,0, + 990,1239,3,270,135,0,991,992,5,253,0,0,992,993,5,53,0,0,993,994, + 5,299,0,0,994,1239,3,266,133,0,995,996,5,253,0,0,996,997,5,53,0, + 0,997,998,5,167,0,0,998,999,5,299,0,0,999,1239,3,266,133,0,1000, + 1001,5,253,0,0,1001,1002,5,53,0,0,1002,1003,5,107,0,0,1003,1239, + 3,278,139,0,1004,1005,5,253,0,0,1005,1008,5,261,0,0,1006,1007,7, + 2,0,0,1007,1009,3,270,135,0,1008,1006,1,0,0,0,1008,1009,1,0,0,0, + 1009,1016,1,0,0,0,1010,1011,5,154,0,0,1011,1014,3,174,87,0,1012, + 1013,5,90,0,0,1013,1015,3,174,87,0,1014,1012,1,0,0,0,1014,1015,1, + 0,0,0,1015,1017,1,0,0,0,1016,1010,1,0,0,0,1016,1017,1,0,0,0,1017, + 1239,1,0,0,0,1018,1019,5,253,0,0,1019,1022,5,244,0,0,1020,1021,7, + 2,0,0,1021,1023,3,274,137,0,1022,1020,1,0,0,0,1022,1023,1,0,0,0, + 1023,1030,1,0,0,0,1024,1025,5,154,0,0,1025,1028,3,174,87,0,1026, + 1027,5,90,0,0,1027,1029,3,174,87,0,1028,1026,1,0,0,0,1028,1029,1, + 0,0,0,1029,1031,1,0,0,0,1030,1024,1,0,0,0,1030,1031,1,0,0,0,1031, + 1239,1,0,0,0,1032,1033,5,253,0,0,1033,1040,5,43,0,0,1034,1035,5, + 154,0,0,1035,1038,3,174,87,0,1036,1037,5,90,0,0,1037,1039,3,174, + 87,0,1038,1036,1,0,0,0,1038,1039,1,0,0,0,1039,1041,1,0,0,0,1040, + 1034,1,0,0,0,1040,1041,1,0,0,0,1041,1239,1,0,0,0,1042,1043,5,253, + 0,0,1043,1044,5,45,0,0,1044,1045,7,2,0,0,1045,1052,3,260,130,0,1046, + 1047,5,154,0,0,1047,1050,3,174,87,0,1048,1049,5,90,0,0,1049,1051, + 3,174,87,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1053,1,0,0,0, + 1052,1046,1,0,0,0,1052,1053,1,0,0,0,1053,1239,1,0,0,0,1054,1055, + 5,253,0,0,1055,1056,5,256,0,0,1056,1057,5,103,0,0,1057,1239,3,260, + 130,0,1058,1059,5,253,0,0,1059,1060,5,256,0,0,1060,1061,5,103,0, + 0,1061,1062,5,1,0,0,1062,1063,3,18,9,0,1063,1064,5,2,0,0,1064,1239, + 1,0,0,0,1065,1067,5,253,0,0,1066,1068,5,56,0,0,1067,1066,1,0,0,0, + 1067,1068,1,0,0,0,1068,1069,1,0,0,0,1069,1072,5,236,0,0,1070,1071, + 7,2,0,0,1071,1073,3,274,137,0,1072,1070,1,0,0,0,1072,1073,1,0,0, + 0,1073,1239,1,0,0,0,1074,1075,5,253,0,0,1075,1076,5,235,0,0,1076, + 1079,5,112,0,0,1077,1078,7,2,0,0,1078,1080,3,274,137,0,1079,1077, + 1,0,0,0,1079,1080,1,0,0,0,1080,1239,1,0,0,0,1081,1082,5,76,0,0,1082, + 1239,3,260,130,0,1083,1084,5,75,0,0,1084,1239,3,260,130,0,1085,1086, + 5,253,0,0,1086,1089,5,108,0,0,1087,1088,7,2,0,0,1088,1090,3,270, + 135,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1097,1,0,0,0,1091, + 1092,5,154,0,0,1092,1095,3,174,87,0,1093,1094,5,90,0,0,1094,1096, + 3,174,87,0,1095,1093,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, + 1097,1091,1,0,0,0,1097,1098,1,0,0,0,1098,1239,1,0,0,0,1099,1100, + 5,253,0,0,1100,1107,5,250,0,0,1101,1102,5,154,0,0,1102,1105,3,174, + 87,0,1103,1104,5,90,0,0,1104,1106,3,174,87,0,1105,1103,1,0,0,0,1105, + 1106,1,0,0,0,1106,1108,1,0,0,0,1107,1101,1,0,0,0,1107,1108,1,0,0, + 0,1108,1239,1,0,0,0,1109,1110,5,251,0,0,1110,1111,5,250,0,0,1111, + 1112,5,31,0,0,1112,1239,3,306,153,0,1113,1114,5,227,0,0,1114,1115, + 5,250,0,0,1115,1239,5,31,0,0,1116,1117,5,251,0,0,1117,1118,5,250, + 0,0,1118,1119,3,288,144,0,1119,1120,5,312,0,0,1120,1121,3,142,71, + 0,1121,1239,1,0,0,0,1122,1123,5,227,0,0,1123,1124,5,250,0,0,1124, + 1239,3,288,144,0,1125,1126,5,255,0,0,1126,1135,5,271,0,0,1127,1132, + 3,220,110,0,1128,1129,5,3,0,0,1129,1131,3,220,110,0,1130,1128,1, + 0,0,0,1131,1134,1,0,0,0,1132,1130,1,0,0,0,1132,1133,1,0,0,0,1133, + 1136,1,0,0,0,1134,1132,1,0,0,0,1135,1127,1,0,0,0,1135,1136,1,0,0, + 0,1136,1239,1,0,0,0,1137,1139,5,47,0,0,1138,1140,5,307,0,0,1139, + 1138,1,0,0,0,1139,1140,1,0,0,0,1140,1239,1,0,0,0,1141,1143,5,237, + 0,0,1142,1144,5,307,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, + 1239,1,0,0,0,1145,1146,5,214,0,0,1146,1147,3,302,151,0,1147,1148, + 5,105,0,0,1148,1149,3,16,8,0,1149,1239,1,0,0,0,1150,1151,5,68,0, + 0,1151,1152,5,214,0,0,1152,1239,3,302,151,0,1153,1154,5,93,0,0,1154, + 1164,3,302,151,0,1155,1156,5,290,0,0,1156,1161,3,142,71,0,1157,1158, + 5,3,0,0,1158,1160,3,142,71,0,1159,1157,1,0,0,0,1160,1163,1,0,0,0, + 1161,1159,1,0,0,0,1161,1162,1,0,0,0,1162,1165,1,0,0,0,1163,1161, + 1,0,0,0,1164,1155,1,0,0,0,1164,1165,1,0,0,0,1165,1239,1,0,0,0,1166, + 1167,5,93,0,0,1167,1168,5,121,0,0,1168,1178,3,174,87,0,1169,1170, + 5,290,0,0,1170,1175,3,142,71,0,1171,1172,5,3,0,0,1172,1174,3,142, + 71,0,1173,1171,1,0,0,0,1174,1177,1,0,0,0,1175,1173,1,0,0,0,1175, + 1176,1,0,0,0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1178,1169,1,0,0, + 0,1178,1179,1,0,0,0,1179,1239,1,0,0,0,1180,1181,5,76,0,0,1181,1182, + 5,126,0,0,1182,1239,3,302,151,0,1183,1184,5,76,0,0,1184,1185,5,198, + 0,0,1185,1239,3,302,151,0,1186,1187,5,251,0,0,1187,1188,5,205,0, + 0,1188,1239,3,228,114,0,1189,1190,5,251,0,0,1190,1191,5,267,0,0, + 1191,1194,5,311,0,0,1192,1195,5,157,0,0,1193,1195,3,142,71,0,1194, + 1192,1,0,0,0,1194,1193,1,0,0,0,1195,1239,1,0,0,0,1196,1197,5,287, + 0,0,1197,1198,3,262,131,0,1198,1199,5,251,0,0,1199,1204,3,216,108, + 0,1200,1201,5,3,0,0,1201,1203,3,216,108,0,1202,1200,1,0,0,0,1203, + 1206,1,0,0,0,1204,1202,1,0,0,0,1204,1205,1,0,0,0,1205,1208,1,0,0, + 0,1206,1204,1,0,0,0,1207,1209,3,54,27,0,1208,1207,1,0,0,0,1208,1209, + 1,0,0,0,1209,1239,1,0,0,0,1210,1211,5,169,0,0,1211,1212,5,130,0, + 0,1212,1217,3,262,131,0,1213,1215,5,28,0,0,1214,1213,1,0,0,0,1214, + 1215,1,0,0,0,1215,1216,1,0,0,0,1216,1218,3,302,151,0,1217,1214,1, + 0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0,1219,1220,5,290,0,0,1220, + 1221,3,78,39,0,1221,1222,5,190,0,0,1222,1224,3,142,71,0,1223,1225, + 3,200,100,0,1224,1223,1,0,0,0,1225,1226,1,0,0,0,1226,1224,1,0,0, + 0,1226,1227,1,0,0,0,1227,1239,1,0,0,0,1228,1229,5,253,0,0,1229,1230, + 5,46,0,0,1230,1231,5,190,0,0,1231,1232,5,260,0,0,1232,1239,3,262, + 131,0,1233,1234,5,253,0,0,1234,1235,5,46,0,0,1235,1236,5,190,0,0, + 1236,1237,5,44,0,0,1237,1239,3,282,141,0,1238,343,1,0,0,0,1238,344, + 1,0,0,0,1238,346,1,0,0,0,1238,368,1,0,0,0,1238,378,1,0,0,0,1238, + 394,1,0,0,0,1238,404,1,0,0,0,1238,411,1,0,0,0,1238,418,1,0,0,0,1238, + 456,1,0,0,0,1238,486,1,0,0,0,1238,493,1,0,0,0,1238,501,1,0,0,0,1238, + 507,1,0,0,0,1238,510,1,0,0,0,1238,519,1,0,0,0,1238,528,1,0,0,0,1238, + 537,1,0,0,0,1238,548,1,0,0,0,1238,564,1,0,0,0,1238,581,1,0,0,0,1238, + 596,1,0,0,0,1238,611,1,0,0,0,1238,625,1,0,0,0,1238,632,1,0,0,0,1238, + 639,1,0,0,0,1238,661,1,0,0,0,1238,667,1,0,0,0,1238,696,1,0,0,0,1238, + 718,1,0,0,0,1238,722,1,0,0,0,1238,730,1,0,0,0,1238,742,1,0,0,0,1238, + 750,1,0,0,0,1238,757,1,0,0,0,1238,764,1,0,0,0,1238,771,1,0,0,0,1238, + 786,1,0,0,0,1238,792,1,0,0,0,1238,799,1,0,0,0,1238,811,1,0,0,0,1238, + 818,1,0,0,0,1238,850,1,0,0,0,1238,872,1,0,0,0,1238,904,1,0,0,0,1238, + 927,1,0,0,0,1238,945,1,0,0,0,1238,956,1,0,0,0,1238,962,1,0,0,0,1238, + 977,1,0,0,0,1238,983,1,0,0,0,1238,987,1,0,0,0,1238,991,1,0,0,0,1238, + 995,1,0,0,0,1238,1000,1,0,0,0,1238,1004,1,0,0,0,1238,1018,1,0,0, + 0,1238,1032,1,0,0,0,1238,1042,1,0,0,0,1238,1054,1,0,0,0,1238,1058, + 1,0,0,0,1238,1065,1,0,0,0,1238,1074,1,0,0,0,1238,1081,1,0,0,0,1238, + 1083,1,0,0,0,1238,1085,1,0,0,0,1238,1099,1,0,0,0,1238,1109,1,0,0, + 0,1238,1113,1,0,0,0,1238,1116,1,0,0,0,1238,1122,1,0,0,0,1238,1125, + 1,0,0,0,1238,1137,1,0,0,0,1238,1141,1,0,0,0,1238,1145,1,0,0,0,1238, + 1150,1,0,0,0,1238,1153,1,0,0,0,1238,1166,1,0,0,0,1238,1180,1,0,0, + 0,1238,1183,1,0,0,0,1238,1186,1,0,0,0,1238,1189,1,0,0,0,1238,1196, + 1,0,0,0,1238,1210,1,0,0,0,1238,1228,1,0,0,0,1238,1233,1,0,0,0,1239, + 17,1,0,0,0,1240,1242,3,20,10,0,1241,1240,1,0,0,0,1241,1242,1,0,0, + 0,1242,1243,1,0,0,0,1243,1244,3,22,11,0,1244,19,1,0,0,0,1245,1246, + 5,304,0,0,1246,1251,3,230,115,0,1247,1248,5,3,0,0,1248,1250,3,230, + 115,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,21,1,0,0,0,1253,1251,1,0,0,0,1254,1256,3,24,12, + 0,1255,1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258, + 3,40,20,0,1258,23,1,0,0,0,1259,1261,5,304,0,0,1260,1262,5,221,0, + 0,1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1268, + 3,72,36,0,1264,1265,5,3,0,0,1265,1267,3,72,36,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,25, + 1,0,0,0,1270,1268,1,0,0,0,1271,1274,3,28,14,0,1272,1274,3,30,15, + 0,1273,1271,1,0,0,0,1273,1272,1,0,0,0,1274,27,1,0,0,0,1275,1276, + 3,286,143,0,1276,1279,3,190,95,0,1277,1278,5,182,0,0,1278,1280,5, + 183,0,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,1283,1,0,0,0,1281, + 1282,5,46,0,0,1282,1284,3,174,87,0,1283,1281,1,0,0,0,1283,1284,1, + 0,0,0,1284,1287,1,0,0,0,1285,1286,5,304,0,0,1286,1288,3,32,16,0, + 1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,29,1,0,0,0,1289,1290,5, + 154,0,0,1290,1293,3,262,131,0,1291,1292,7,3,0,0,1292,1294,5,216, + 0,0,1293,1291,1,0,0,0,1293,1294,1,0,0,0,1294,31,1,0,0,0,1295,1296, + 5,1,0,0,1296,1297,3,34,17,0,1297,1298,5,2,0,0,1298,33,1,0,0,0,1299, + 1304,3,36,18,0,1300,1301,5,3,0,0,1301,1303,3,36,18,0,1302,1300,1, + 0,0,0,1303,1306,1,0,0,0,1304,1302,1,0,0,0,1304,1305,1,0,0,0,1305, + 35,1,0,0,0,1306,1304,1,0,0,0,1307,1308,3,302,151,0,1308,1309,5,312, + 0,0,1309,1310,3,38,19,0,1310,37,1,0,0,0,1311,1314,5,70,0,0,1312, + 1314,3,142,71,0,1313,1311,1,0,0,0,1313,1312,1,0,0,0,1314,39,1,0, + 0,0,1315,1326,3,46,23,0,1316,1317,5,195,0,0,1317,1318,5,36,0,0,1318, + 1323,3,50,25,0,1319,1320,5,3,0,0,1320,1322,3,50,25,0,1321,1319,1, + 0,0,0,1322,1325,1,0,0,0,1323,1321,1,0,0,0,1323,1324,1,0,0,0,1324, + 1327,1,0,0,0,1325,1323,1,0,0,0,1326,1316,1,0,0,0,1326,1327,1,0,0, + 0,1327,1333,1,0,0,0,1328,1329,5,188,0,0,1329,1331,3,44,22,0,1330, + 1332,7,4,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1334,1,0,0, + 0,1333,1328,1,0,0,0,1333,1334,1,0,0,0,1334,1348,1,0,0,0,1335,1336, + 5,155,0,0,1336,1349,3,42,21,0,1337,1338,5,98,0,0,1338,1340,7,5,0, + 0,1339,1341,3,44,22,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342, + 1,0,0,0,1342,1346,7,4,0,0,1343,1347,5,192,0,0,1344,1345,5,304,0, + 0,1345,1347,5,266,0,0,1346,1343,1,0,0,0,1346,1344,1,0,0,0,1347,1349, + 1,0,0,0,1348,1335,1,0,0,0,1348,1337,1,0,0,0,1348,1349,1,0,0,0,1349, + 41,1,0,0,0,1350,1353,5,22,0,0,1351,1353,3,44,22,0,1352,1350,1,0, + 0,0,1352,1351,1,0,0,0,1353,43,1,0,0,0,1354,1355,7,6,0,0,1355,45, + 1,0,0,0,1356,1357,6,23,-1,0,1357,1358,3,48,24,0,1358,1373,1,0,0, + 0,1359,1360,10,2,0,0,1360,1362,5,128,0,0,1361,1363,3,74,37,0,1362, + 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1372,3,46, + 23,3,1365,1366,10,1,0,0,1366,1368,7,7,0,0,1367,1369,3,74,37,0,1368, + 1367,1,0,0,0,1368,1369,1,0,0,0,1369,1370,1,0,0,0,1370,1372,3,46, + 23,2,1371,1359,1,0,0,0,1371,1365,1,0,0,0,1372,1375,1,0,0,0,1373, + 1371,1,0,0,0,1373,1374,1,0,0,0,1374,47,1,0,0,0,1375,1373,1,0,0,0, + 1376,1393,3,52,26,0,1377,1378,5,260,0,0,1378,1393,3,262,131,0,1379, + 1380,5,296,0,0,1380,1385,3,142,71,0,1381,1382,5,3,0,0,1382,1384, + 3,142,71,0,1383,1381,1,0,0,0,1384,1387,1,0,0,0,1385,1383,1,0,0,0, + 1385,1386,1,0,0,0,1386,1393,1,0,0,0,1387,1385,1,0,0,0,1388,1389, + 5,1,0,0,1389,1390,3,40,20,0,1390,1391,5,2,0,0,1391,1393,1,0,0,0, + 1392,1376,1,0,0,0,1392,1377,1,0,0,0,1392,1379,1,0,0,0,1392,1388, + 1,0,0,0,1393,49,1,0,0,0,1394,1397,3,282,141,0,1395,1397,3,142,71, + 0,1396,1394,1,0,0,0,1396,1395,1,0,0,0,1397,1399,1,0,0,0,1398,1400, + 7,8,0,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1403,1,0,0,0,1401, + 1402,5,185,0,0,1402,1404,7,9,0,0,1403,1401,1,0,0,0,1403,1404,1,0, + 0,0,1404,51,1,0,0,0,1405,1407,5,248,0,0,1406,1408,3,74,37,0,1407, + 1406,1,0,0,0,1407,1408,1,0,0,0,1408,1409,1,0,0,0,1409,1414,3,76, + 38,0,1410,1411,5,3,0,0,1411,1413,3,76,38,0,1412,1410,1,0,0,0,1413, + 1416,1,0,0,0,1414,1412,1,0,0,0,1414,1415,1,0,0,0,1415,1426,1,0,0, + 0,1416,1414,1,0,0,0,1417,1418,5,105,0,0,1418,1423,3,78,39,0,1419, + 1420,5,3,0,0,1420,1422,3,78,39,0,1421,1419,1,0,0,0,1422,1425,1,0, + 0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1427,1,0,0,0,1425,1423, + 1,0,0,0,1426,1417,1,0,0,0,1426,1427,1,0,0,0,1427,1429,1,0,0,0,1428, + 1430,3,54,27,0,1429,1428,1,0,0,0,1429,1430,1,0,0,0,1430,1434,1,0, + 0,0,1431,1432,5,114,0,0,1432,1433,5,36,0,0,1433,1435,3,58,29,0,1434, + 1431,1,0,0,0,1434,1435,1,0,0,0,1435,1437,1,0,0,0,1436,1438,3,56, + 28,0,1437,1436,1,0,0,0,1437,1438,1,0,0,0,1438,1448,1,0,0,0,1439, + 1440,5,303,0,0,1440,1445,3,68,34,0,1441,1442,5,3,0,0,1442,1444,3, + 68,34,0,1443,1441,1,0,0,0,1444,1447,1,0,0,0,1445,1443,1,0,0,0,1445, + 1446,1,0,0,0,1446,1449,1,0,0,0,1447,1445,1,0,0,0,1448,1439,1,0,0, + 0,1448,1449,1,0,0,0,1449,53,1,0,0,0,1450,1451,5,301,0,0,1451,1452, + 3,144,72,0,1452,55,1,0,0,0,1453,1454,5,117,0,0,1454,1455,3,144,72, + 0,1455,57,1,0,0,0,1456,1458,3,74,37,0,1457,1456,1,0,0,0,1457,1458, + 1,0,0,0,1458,1459,1,0,0,0,1459,1464,3,62,31,0,1460,1461,5,3,0,0, + 1461,1463,3,62,31,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462, + 1,0,0,0,1464,1465,1,0,0,0,1465,59,1,0,0,0,1466,1464,1,0,0,0,1467, + 1472,3,142,71,0,1468,1469,5,3,0,0,1469,1471,3,142,71,0,1470,1468, + 1,0,0,0,1471,1474,1,0,0,0,1472,1470,1,0,0,0,1472,1473,1,0,0,0,1473, + 61,1,0,0,0,1474,1472,1,0,0,0,1475,1516,3,64,32,0,1476,1477,5,238, + 0,0,1477,1486,5,1,0,0,1478,1483,3,64,32,0,1479,1480,5,3,0,0,1480, + 1482,3,64,32,0,1481,1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0, + 0,0,1483,1484,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1486,1478, + 1,0,0,0,1486,1487,1,0,0,0,1487,1488,1,0,0,0,1488,1516,5,2,0,0,1489, + 1490,5,55,0,0,1490,1499,5,1,0,0,1491,1496,3,64,32,0,1492,1493,5, + 3,0,0,1493,1495,3,64,32,0,1494,1492,1,0,0,0,1495,1498,1,0,0,0,1496, + 1494,1,0,0,0,1496,1497,1,0,0,0,1497,1500,1,0,0,0,1498,1496,1,0,0, + 0,1499,1491,1,0,0,0,1499,1500,1,0,0,0,1500,1501,1,0,0,0,1501,1516, + 5,2,0,0,1502,1503,5,115,0,0,1503,1504,5,252,0,0,1504,1505,5,1,0, + 0,1505,1510,3,64,32,0,1506,1507,5,3,0,0,1507,1509,3,64,32,0,1508, + 1506,1,0,0,0,1509,1512,1,0,0,0,1510,1508,1,0,0,0,1510,1511,1,0,0, + 0,1511,1513,1,0,0,0,1512,1510,1,0,0,0,1513,1514,5,2,0,0,1514,1516, + 1,0,0,0,1515,1475,1,0,0,0,1515,1476,1,0,0,0,1515,1489,1,0,0,0,1515, + 1502,1,0,0,0,1516,63,1,0,0,0,1517,1526,5,1,0,0,1518,1523,3,66,33, + 0,1519,1520,5,3,0,0,1520,1522,3,66,33,0,1521,1519,1,0,0,0,1522,1525, + 1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,1527,1,0,0,0,1525, + 1523,1,0,0,0,1526,1518,1,0,0,0,1526,1527,1,0,0,0,1527,1528,1,0,0, + 0,1528,1531,5,2,0,0,1529,1531,3,66,33,0,1530,1517,1,0,0,0,1530,1529, + 1,0,0,0,1531,65,1,0,0,0,1532,1535,3,282,141,0,1533,1535,3,142,71, + 0,1534,1532,1,0,0,0,1534,1533,1,0,0,0,1535,67,1,0,0,0,1536,1537, + 3,302,151,0,1537,1538,5,28,0,0,1538,1539,5,1,0,0,1539,1540,3,70, + 35,0,1540,1541,5,2,0,0,1541,69,1,0,0,0,1542,1544,3,302,151,0,1543, + 1542,1,0,0,0,1543,1544,1,0,0,0,1544,1548,1,0,0,0,1545,1546,5,201, + 0,0,1546,1547,5,36,0,0,1547,1549,3,60,30,0,1548,1545,1,0,0,0,1548, + 1549,1,0,0,0,1549,1560,1,0,0,0,1550,1551,5,195,0,0,1551,1552,5,36, + 0,0,1552,1557,3,50,25,0,1553,1554,5,3,0,0,1554,1556,3,50,25,0,1555, + 1553,1,0,0,0,1556,1559,1,0,0,0,1557,1555,1,0,0,0,1557,1558,1,0,0, + 0,1558,1561,1,0,0,0,1559,1557,1,0,0,0,1560,1550,1,0,0,0,1560,1561, + 1,0,0,0,1561,1563,1,0,0,0,1562,1564,3,204,102,0,1563,1562,1,0,0, + 0,1563,1564,1,0,0,0,1564,71,1,0,0,0,1565,1567,3,302,151,0,1566,1568, + 3,114,57,0,1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0, + 1569,1570,5,28,0,0,1570,1571,5,1,0,0,1571,1572,3,22,11,0,1572,1573, + 5,2,0,0,1573,73,1,0,0,0,1574,1575,7,10,0,0,1575,75,1,0,0,0,1576, + 1579,3,282,141,0,1577,1579,3,142,71,0,1578,1576,1,0,0,0,1578,1577, + 1,0,0,0,1579,1584,1,0,0,0,1580,1582,5,28,0,0,1581,1580,1,0,0,0,1581, + 1582,1,0,0,0,1582,1583,1,0,0,0,1583,1585,3,302,151,0,1584,1581,1, + 0,0,0,1584,1585,1,0,0,0,1585,1595,1,0,0,0,1586,1587,3,150,75,0,1587, + 1588,5,4,0,0,1588,1591,5,320,0,0,1589,1590,5,28,0,0,1590,1592,3, + 114,57,0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,1595,1,0,0,0,1593, + 1595,5,320,0,0,1594,1578,1,0,0,0,1594,1586,1,0,0,0,1594,1593,1,0, + 0,0,1595,77,1,0,0,0,1596,1597,6,39,-1,0,1597,1598,3,84,42,0,1598, + 1617,1,0,0,0,1599,1613,10,2,0,0,1600,1601,5,54,0,0,1601,1602,5,136, + 0,0,1602,1614,3,84,42,0,1603,1604,3,80,40,0,1604,1605,5,136,0,0, + 1605,1606,3,78,39,0,1606,1607,3,82,41,0,1607,1614,1,0,0,0,1608,1609, + 5,172,0,0,1609,1610,3,80,40,0,1610,1611,5,136,0,0,1611,1612,3,84, + 42,0,1612,1614,1,0,0,0,1613,1600,1,0,0,0,1613,1603,1,0,0,0,1613, + 1608,1,0,0,0,1614,1616,1,0,0,0,1615,1599,1,0,0,0,1616,1619,1,0,0, + 0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,79,1,0,0,0,1619,1617, + 1,0,0,0,1620,1622,5,125,0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0, + 1622,1636,1,0,0,0,1623,1625,5,152,0,0,1624,1626,5,197,0,0,1625,1624, + 1,0,0,0,1625,1626,1,0,0,0,1626,1636,1,0,0,0,1627,1629,5,234,0,0, + 1628,1630,5,197,0,0,1629,1628,1,0,0,0,1629,1630,1,0,0,0,1630,1636, + 1,0,0,0,1631,1633,5,106,0,0,1632,1634,5,197,0,0,1633,1632,1,0,0, + 0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1621,1,0,0,0,1635,1623, + 1,0,0,0,1635,1627,1,0,0,0,1635,1631,1,0,0,0,1636,81,1,0,0,0,1637, + 1638,5,190,0,0,1638,1652,3,144,72,0,1639,1640,5,290,0,0,1640,1641, + 5,1,0,0,1641,1646,3,302,151,0,1642,1643,5,3,0,0,1643,1645,3,302, + 151,0,1644,1642,1,0,0,0,1645,1648,1,0,0,0,1646,1644,1,0,0,0,1646, + 1647,1,0,0,0,1647,1649,1,0,0,0,1648,1646,1,0,0,0,1649,1650,5,2,0, + 0,1650,1652,1,0,0,0,1651,1637,1,0,0,0,1651,1639,1,0,0,0,1652,83, + 1,0,0,0,1653,1660,3,94,47,0,1654,1655,5,262,0,0,1655,1656,3,86,43, + 0,1656,1657,5,1,0,0,1657,1658,3,142,71,0,1658,1659,5,2,0,0,1659, + 1661,1,0,0,0,1660,1654,1,0,0,0,1660,1661,1,0,0,0,1661,85,1,0,0,0, + 1662,1663,7,11,0,0,1663,87,1,0,0,0,1664,1665,7,12,0,0,1665,89,1, + 0,0,0,1666,1673,5,89,0,0,1667,1669,5,274,0,0,1668,1670,3,174,87, + 0,1669,1668,1,0,0,0,1669,1670,1,0,0,0,1670,1671,1,0,0,0,1671,1673, + 3,92,46,0,1672,1666,1,0,0,0,1672,1667,1,0,0,0,1673,91,1,0,0,0,1674, + 1675,5,304,0,0,1675,1679,5,51,0,0,1676,1677,5,306,0,0,1677,1679, + 5,51,0,0,1678,1674,1,0,0,0,1678,1676,1,0,0,0,1679,93,1,0,0,0,1680, + 1756,3,108,54,0,1681,1682,5,166,0,0,1682,1686,5,1,0,0,1683,1684, + 5,201,0,0,1684,1685,5,36,0,0,1685,1687,3,60,30,0,1686,1683,1,0,0, + 0,1686,1687,1,0,0,0,1687,1698,1,0,0,0,1688,1689,5,195,0,0,1689,1690, + 5,36,0,0,1690,1695,3,50,25,0,1691,1692,5,3,0,0,1692,1694,3,50,25, + 0,1693,1691,1,0,0,0,1694,1697,1,0,0,0,1695,1693,1,0,0,0,1695,1696, + 1,0,0,0,1696,1699,1,0,0,0,1697,1695,1,0,0,0,1698,1688,1,0,0,0,1698, + 1699,1,0,0,0,1699,1709,1,0,0,0,1700,1701,5,168,0,0,1701,1706,3,96, + 48,0,1702,1703,5,3,0,0,1703,1705,3,96,48,0,1704,1702,1,0,0,0,1705, + 1708,1,0,0,0,1706,1704,1,0,0,0,1706,1707,1,0,0,0,1707,1710,1,0,0, + 0,1708,1706,1,0,0,0,1709,1700,1,0,0,0,1709,1710,1,0,0,0,1710,1712, + 1,0,0,0,1711,1713,3,98,49,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0, + 1713,1717,1,0,0,0,1714,1715,5,21,0,0,1715,1716,5,163,0,0,1716,1718, + 3,102,51,0,1717,1714,1,0,0,0,1717,1718,1,0,0,0,1718,1720,1,0,0,0, + 1719,1721,7,13,0,0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1722, + 1,0,0,0,1722,1723,5,206,0,0,1723,1724,5,1,0,0,1724,1725,3,210,105, + 0,1725,1735,5,2,0,0,1726,1727,5,257,0,0,1727,1732,3,104,52,0,1728, + 1729,5,3,0,0,1729,1731,3,104,52,0,1730,1728,1,0,0,0,1731,1734,1, + 0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0,0,1733,1736,1,0,0,0,1734, + 1732,1,0,0,0,1735,1726,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0,0, + 0,1737,1738,5,71,0,0,1738,1743,3,106,53,0,1739,1740,5,3,0,0,1740, + 1742,3,106,53,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, + 1754,5,2,0,0,1747,1749,5,28,0,0,1748,1747,1,0,0,0,1748,1749,1,0, + 0,0,1749,1750,1,0,0,0,1750,1752,3,302,151,0,1751,1753,3,114,57,0, + 1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1755,1,0,0,0,1754,1748, + 1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0,0,1756,1681,1,0,0,0,1756, + 1757,1,0,0,0,1757,95,1,0,0,0,1758,1759,3,142,71,0,1759,1760,5,28, + 0,0,1760,1761,3,302,151,0,1761,97,1,0,0,0,1762,1763,5,191,0,0,1763, + 1764,5,239,0,0,1764,1765,5,207,0,0,1765,1774,5,163,0,0,1766,1767, + 5,22,0,0,1767,1768,5,240,0,0,1768,1769,5,207,0,0,1769,1771,5,163, + 0,0,1770,1772,3,100,50,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, + 1774,1,0,0,0,1773,1762,1,0,0,0,1773,1766,1,0,0,0,1774,99,1,0,0,0, + 1775,1776,5,253,0,0,1776,1777,5,85,0,0,1777,1785,5,165,0,0,1778, + 1779,5,189,0,0,1779,1780,5,85,0,0,1780,1785,5,165,0,0,1781,1782, + 5,304,0,0,1782,1783,5,284,0,0,1783,1785,5,240,0,0,1784,1775,1,0, + 0,0,1784,1778,1,0,0,0,1784,1781,1,0,0,0,1785,101,1,0,0,0,1786,1787, + 5,5,0,0,1787,1788,5,269,0,0,1788,1789,5,174,0,0,1789,1806,5,239, + 0,0,1790,1791,5,5,0,0,1791,1792,5,204,0,0,1792,1793,5,148,0,0,1793, + 1806,5,239,0,0,1794,1795,5,5,0,0,1795,1796,5,269,0,0,1796,1797,5, + 101,0,0,1797,1806,3,302,151,0,1798,1799,5,5,0,0,1799,1800,5,269, + 0,0,1800,1801,5,148,0,0,1801,1806,3,302,151,0,1802,1803,5,5,0,0, + 1803,1804,5,269,0,0,1804,1806,3,302,151,0,1805,1786,1,0,0,0,1805, + 1790,1,0,0,0,1805,1794,1,0,0,0,1805,1798,1,0,0,0,1805,1802,1,0,0, + 0,1806,103,1,0,0,0,1807,1808,3,302,151,0,1808,1809,5,312,0,0,1809, + 1810,5,1,0,0,1810,1815,3,302,151,0,1811,1812,5,3,0,0,1812,1814,3, + 302,151,0,1813,1811,1,0,0,0,1814,1817,1,0,0,0,1815,1813,1,0,0,0, + 1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817,1815,1,0,0,0,1818,1819, + 5,2,0,0,1819,105,1,0,0,0,1820,1821,3,302,151,0,1821,1822,5,28,0, + 0,1822,1823,3,142,71,0,1823,107,1,0,0,0,1824,1832,3,116,58,0,1825, + 1827,5,28,0,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0, + 0,0,1828,1830,3,302,151,0,1829,1831,3,114,57,0,1830,1829,1,0,0,0, + 1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1826,1,0,0,0,1832,1833, + 1,0,0,0,1833,109,1,0,0,0,1834,1835,5,1,0,0,1835,1840,3,286,143,0, + 1836,1837,5,3,0,0,1837,1839,3,286,143,0,1838,1836,1,0,0,0,1839,1842, + 1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842, + 1840,1,0,0,0,1843,1844,5,2,0,0,1844,111,1,0,0,0,1845,1846,5,1,0, + 0,1846,1851,3,282,141,0,1847,1848,5,3,0,0,1848,1850,3,282,141,0, + 1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851,1849,1,0,0,0,1851,1852, + 1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0,0,1854,1855,5,2,0,0,1855, + 113,1,0,0,0,1856,1857,5,1,0,0,1857,1862,3,302,151,0,1858,1859,5, + 3,0,0,1859,1861,3,302,151,0,1860,1858,1,0,0,0,1861,1864,1,0,0,0, + 1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1865,1,0,0,0,1864,1862, + 1,0,0,0,1865,1866,5,2,0,0,1866,115,1,0,0,0,1867,1869,3,260,130,0, + 1868,1870,3,290,145,0,1869,1868,1,0,0,0,1869,1870,1,0,0,0,1870,1939, + 1,0,0,0,1871,1872,5,1,0,0,1872,1873,3,22,11,0,1873,1874,5,2,0,0, + 1874,1939,1,0,0,0,1875,1876,5,285,0,0,1876,1877,5,1,0,0,1877,1882, + 3,142,71,0,1878,1879,5,3,0,0,1879,1881,3,142,71,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,1885, + 1,0,0,0,1884,1882,1,0,0,0,1885,1888,5,2,0,0,1886,1887,5,304,0,0, + 1887,1889,5,196,0,0,1888,1886,1,0,0,0,1888,1889,1,0,0,0,1889,1939, + 1,0,0,0,1890,1891,5,149,0,0,1891,1892,5,1,0,0,1892,1893,3,22,11, + 0,1893,1894,5,2,0,0,1894,1939,1,0,0,0,1895,1896,5,260,0,0,1896,1897, + 5,1,0,0,1897,1898,3,128,64,0,1898,1899,5,2,0,0,1899,1939,1,0,0,0, + 1900,1901,5,1,0,0,1901,1902,3,78,39,0,1902,1903,5,2,0,0,1903,1939, + 1,0,0,0,1904,1905,5,142,0,0,1905,1906,5,1,0,0,1906,1907,3,152,76, + 0,1907,1908,5,45,0,0,1908,1909,5,1,0,0,1909,1914,3,118,59,0,1910, + 1911,5,3,0,0,1911,1913,3,118,59,0,1912,1910,1,0,0,0,1913,1916,1, + 0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1917,1,0,0,0,1916, + 1914,1,0,0,0,1917,1929,5,2,0,0,1918,1919,5,210,0,0,1919,1920,5,1, + 0,0,1920,1921,3,120,60,0,1921,1922,5,2,0,0,1922,1930,1,0,0,0,1923, + 1924,5,210,0,0,1924,1925,5,70,0,0,1925,1926,5,1,0,0,1926,1927,3, + 126,63,0,1927,1928,5,2,0,0,1928,1930,1,0,0,0,1929,1918,1,0,0,0,1929, + 1923,1,0,0,0,1929,1930,1,0,0,0,1930,1934,1,0,0,0,1931,1932,7,14, + 0,0,1932,1933,5,190,0,0,1933,1935,5,89,0,0,1934,1931,1,0,0,0,1934, + 1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,2,0,0,1937,1939,1,0,0, + 0,1938,1867,1,0,0,0,1938,1871,1,0,0,0,1938,1875,1,0,0,0,1938,1890, + 1,0,0,0,1938,1895,1,0,0,0,1938,1900,1,0,0,0,1938,1904,1,0,0,0,1939, + 117,1,0,0,0,1940,1941,3,302,151,0,1941,1942,5,103,0,0,1942,1943, + 5,196,0,0,1943,2018,1,0,0,0,1944,1945,3,302,151,0,1945,1948,3,190, + 95,0,1946,1947,5,205,0,0,1947,1949,3,174,87,0,1948,1946,1,0,0,0, + 1948,1949,1,0,0,0,1949,1954,1,0,0,0,1950,1951,3,162,81,0,1951,1952, + 5,190,0,0,1952,1953,5,85,0,0,1953,1955,1,0,0,0,1954,1950,1,0,0,0, + 1954,1955,1,0,0,0,1955,1960,1,0,0,0,1956,1957,3,162,81,0,1957,1958, + 5,190,0,0,1958,1959,5,89,0,0,1959,1961,1,0,0,0,1960,1956,1,0,0,0, + 1960,1961,1,0,0,0,1961,2018,1,0,0,0,1962,1963,3,302,151,0,1963,1964, + 3,190,95,0,1964,1965,5,104,0,0,1965,1968,3,156,78,0,1966,1967,5, + 205,0,0,1967,1969,3,174,87,0,1968,1966,1,0,0,0,1968,1969,1,0,0,0, + 1969,1973,1,0,0,0,1970,1971,3,164,82,0,1971,1972,5,308,0,0,1972, + 1974,1,0,0,0,1973,1970,1,0,0,0,1973,1974,1,0,0,0,1974,1982,1,0,0, + 0,1975,1976,7,15,0,0,1976,1980,5,218,0,0,1977,1978,5,190,0,0,1978, + 1979,5,242,0,0,1979,1981,5,264,0,0,1980,1977,1,0,0,0,1980,1981,1, + 0,0,0,1981,1983,1,0,0,0,1982,1975,1,0,0,0,1982,1983,1,0,0,0,1983, + 1988,1,0,0,0,1984,1985,3,166,83,0,1985,1986,5,190,0,0,1986,1987, + 5,85,0,0,1987,1989,1,0,0,0,1988,1984,1,0,0,0,1988,1989,1,0,0,0,1989, + 1994,1,0,0,0,1990,1991,3,166,83,0,1991,1992,5,190,0,0,1992,1993, + 5,89,0,0,1993,1995,1,0,0,0,1994,1990,1,0,0,0,1994,1995,1,0,0,0,1995, + 2018,1,0,0,0,1996,1998,5,173,0,0,1997,1999,5,205,0,0,1998,1997,1, + 0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0,2000,2003,3,174,87,0,2001, + 2002,5,28,0,0,2002,2004,3,302,151,0,2003,2001,1,0,0,0,2003,2004, + 1,0,0,0,2004,2005,1,0,0,0,2005,2006,5,45,0,0,2006,2007,5,1,0,0,2007, + 2012,3,118,59,0,2008,2009,5,3,0,0,2009,2011,3,118,59,0,2010,2008, + 1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0,2012,2013,1,0,0,0,2013, + 2015,1,0,0,0,2014,2012,1,0,0,0,2015,2016,5,2,0,0,2016,2018,1,0,0, + 0,2017,1940,1,0,0,0,2017,1944,1,0,0,0,2017,1962,1,0,0,0,2017,1996, + 1,0,0,0,2018,119,1,0,0,0,2019,2045,3,122,61,0,2020,2021,3,122,61, + 0,2021,2022,7,16,0,0,2022,2023,3,124,62,0,2023,2045,1,0,0,0,2024, + 2025,3,124,62,0,2025,2026,5,281,0,0,2026,2031,3,124,62,0,2027,2028, + 5,281,0,0,2028,2030,3,124,62,0,2029,2027,1,0,0,0,2030,2033,1,0,0, + 0,2031,2029,1,0,0,0,2031,2032,1,0,0,0,2032,2045,1,0,0,0,2033,2031, + 1,0,0,0,2034,2035,3,124,62,0,2035,2036,5,54,0,0,2036,2041,3,124, + 62,0,2037,2038,5,54,0,0,2038,2040,3,124,62,0,2039,2037,1,0,0,0,2040, + 2043,1,0,0,0,2041,2039,1,0,0,0,2041,2042,1,0,0,0,2042,2045,1,0,0, + 0,2043,2041,1,0,0,0,2044,2019,1,0,0,0,2044,2020,1,0,0,0,2044,2024, + 1,0,0,0,2044,2034,1,0,0,0,2045,121,1,0,0,0,2046,2047,3,302,151,0, + 2047,123,1,0,0,0,2048,2054,3,122,61,0,2049,2050,5,1,0,0,2050,2051, + 3,120,60,0,2051,2052,5,2,0,0,2052,2054,1,0,0,0,2053,2048,1,0,0,0, + 2053,2049,1,0,0,0,2054,125,1,0,0,0,2055,2058,7,16,0,0,2056,2057, + 5,3,0,0,2057,2059,7,17,0,0,2058,2056,1,0,0,0,2058,2059,1,0,0,0,2059, + 2066,1,0,0,0,2060,2063,7,17,0,0,2061,2062,5,3,0,0,2062,2064,7,16, + 0,0,2063,2061,1,0,0,0,2063,2064,1,0,0,0,2064,2066,1,0,0,0,2065,2055, + 1,0,0,0,2065,2060,1,0,0,0,2066,127,1,0,0,0,2067,2068,3,278,139,0, + 2068,2077,5,1,0,0,2069,2074,3,130,65,0,2070,2071,5,3,0,0,2071,2073, + 3,130,65,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,2078,1,0,0,0,2076,2074,1,0,0,0,2077,2069, + 1,0,0,0,2077,2078,1,0,0,0,2078,2088,1,0,0,0,2079,2080,5,52,0,0,2080, + 2085,3,140,70,0,2081,2082,5,3,0,0,2082,2084,3,140,70,0,2083,2081, + 1,0,0,0,2084,2087,1,0,0,0,2085,2083,1,0,0,0,2085,2086,1,0,0,0,2086, + 2089,1,0,0,0,2087,2085,1,0,0,0,2088,2079,1,0,0,0,2088,2089,1,0,0, + 0,2089,2090,1,0,0,0,2090,2091,5,2,0,0,2091,129,1,0,0,0,2092,2093, + 3,302,151,0,2093,2094,5,6,0,0,2094,2096,1,0,0,0,2095,2092,1,0,0, + 0,2095,2096,1,0,0,0,2096,2100,1,0,0,0,2097,2101,3,132,66,0,2098, + 2101,3,136,68,0,2099,2101,3,142,71,0,2100,2097,1,0,0,0,2100,2098, + 1,0,0,0,2100,2099,1,0,0,0,2101,131,1,0,0,0,2102,2113,3,134,67,0, + 2103,2104,5,201,0,0,2104,2111,5,36,0,0,2105,2107,5,1,0,0,2106,2108, + 3,60,30,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2109,1,0,0,0, + 2109,2112,5,2,0,0,2110,2112,3,142,71,0,2111,2105,1,0,0,0,2111,2110, + 1,0,0,0,2112,2114,1,0,0,0,2113,2103,1,0,0,0,2113,2114,1,0,0,0,2114, + 2121,1,0,0,0,2115,2116,5,217,0,0,2116,2117,5,300,0,0,2117,2122,5, + 85,0,0,2118,2119,5,144,0,0,2119,2120,5,300,0,0,2120,2122,5,85,0, + 0,2121,2115,1,0,0,0,2121,2118,1,0,0,0,2121,2122,1,0,0,0,2122,2139, + 1,0,0,0,2123,2124,5,195,0,0,2124,2137,5,36,0,0,2125,2126,5,1,0,0, + 2126,2131,3,50,25,0,2127,2128,5,3,0,0,2128,2130,3,50,25,0,2129,2127, + 1,0,0,0,2130,2133,1,0,0,0,2131,2129,1,0,0,0,2131,2132,1,0,0,0,2132, + 2134,1,0,0,0,2133,2131,1,0,0,0,2134,2135,5,2,0,0,2135,2138,1,0,0, + 0,2136,2138,3,50,25,0,2137,2125,1,0,0,0,2137,2136,1,0,0,0,2138,2140, + 1,0,0,0,2139,2123,1,0,0,0,2139,2140,1,0,0,0,2140,133,1,0,0,0,2141, + 2142,5,260,0,0,2142,2143,5,1,0,0,2143,2144,3,262,131,0,2144,2152, + 5,2,0,0,2145,2147,5,28,0,0,2146,2145,1,0,0,0,2146,2147,1,0,0,0,2147, + 2148,1,0,0,0,2148,2150,3,302,151,0,2149,2151,3,114,57,0,2150,2149, + 1,0,0,0,2150,2151,1,0,0,0,2151,2153,1,0,0,0,2152,2146,1,0,0,0,2152, + 2153,1,0,0,0,2153,2168,1,0,0,0,2154,2155,5,260,0,0,2155,2156,5,1, + 0,0,2156,2157,3,22,11,0,2157,2165,5,2,0,0,2158,2160,5,28,0,0,2159, + 2158,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2163,3,302, + 151,0,2162,2164,3,114,57,0,2163,2162,1,0,0,0,2163,2164,1,0,0,0,2164, + 2166,1,0,0,0,2165,2159,1,0,0,0,2165,2166,1,0,0,0,2166,2168,1,0,0, + 0,2167,2141,1,0,0,0,2167,2154,1,0,0,0,2168,135,1,0,0,0,2169,2170, + 5,77,0,0,2170,2171,5,1,0,0,2171,2176,3,138,69,0,2172,2173,5,3,0, + 0,2173,2175,3,138,69,0,2174,2172,1,0,0,0,2175,2178,1,0,0,0,2176, + 2174,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0,2178,2176,1,0,0, + 0,2179,2180,5,2,0,0,2180,2188,1,0,0,0,2181,2182,5,41,0,0,2182,2183, + 5,1,0,0,2183,2184,5,183,0,0,2184,2185,5,28,0,0,2185,2186,5,77,0, + 0,2186,2188,5,2,0,0,2187,2169,1,0,0,0,2187,2181,1,0,0,0,2188,137, + 1,0,0,0,2189,2191,3,302,151,0,2190,2192,3,190,95,0,2191,2190,1,0, + 0,0,2191,2192,1,0,0,0,2192,139,1,0,0,0,2193,2194,5,1,0,0,2194,2195, + 3,288,144,0,2195,2196,5,3,0,0,2196,2201,3,288,144,0,2197,2198,5, + 3,0,0,2198,2200,3,288,144,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,2,0,0,2205,141,1,0,0,0,2206,2207,3,144,72,0, + 2207,143,1,0,0,0,2208,2209,6,72,-1,0,2209,2211,3,148,74,0,2210,2212, + 3,146,73,0,2211,2210,1,0,0,0,2211,2212,1,0,0,0,2212,2216,1,0,0,0, + 2213,2214,5,182,0,0,2214,2216,3,144,72,3,2215,2208,1,0,0,0,2215, + 2213,1,0,0,0,2216,2225,1,0,0,0,2217,2218,10,2,0,0,2218,2219,5,25, + 0,0,2219,2224,3,144,72,3,2220,2221,10,1,0,0,2221,2222,5,194,0,0, + 2222,2224,3,144,72,2,2223,2217,1,0,0,0,2223,2220,1,0,0,0,2224,2227, + 1,0,0,0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,145,1,0,0,0,2227, + 2225,1,0,0,0,2228,2229,3,178,89,0,2229,2230,3,148,74,0,2230,2290, + 1,0,0,0,2231,2232,3,178,89,0,2232,2233,3,180,90,0,2233,2234,5,1, + 0,0,2234,2235,3,22,11,0,2235,2236,5,2,0,0,2236,2290,1,0,0,0,2237, + 2239,5,182,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, + 0,0,2240,2241,5,34,0,0,2241,2242,3,148,74,0,2242,2243,5,25,0,0,2243, + 2244,3,148,74,0,2244,2290,1,0,0,0,2245,2247,5,182,0,0,2246,2245, + 1,0,0,0,2246,2247,1,0,0,0,2247,2248,1,0,0,0,2248,2249,5,122,0,0, + 2249,2250,5,1,0,0,2250,2255,3,142,71,0,2251,2252,5,3,0,0,2252,2254, + 3,142,71,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,2290,1,0,0,0,2260,2262,5,182,0,0,2261,2260,1,0,0,0, + 2261,2262,1,0,0,0,2262,2263,1,0,0,0,2263,2264,5,122,0,0,2264,2265, + 5,1,0,0,2265,2266,3,22,11,0,2266,2267,5,2,0,0,2267,2290,1,0,0,0, + 2268,2270,5,182,0,0,2269,2268,1,0,0,0,2269,2270,1,0,0,0,2270,2271, + 1,0,0,0,2271,2272,5,154,0,0,2272,2275,3,148,74,0,2273,2274,5,90, + 0,0,2274,2276,3,148,74,0,2275,2273,1,0,0,0,2275,2276,1,0,0,0,2276, + 2290,1,0,0,0,2277,2279,5,133,0,0,2278,2280,5,182,0,0,2279,2278,1, + 0,0,0,2279,2280,1,0,0,0,2280,2281,1,0,0,0,2281,2290,5,183,0,0,2282, + 2284,5,133,0,0,2283,2285,5,182,0,0,2284,2283,1,0,0,0,2284,2285,1, + 0,0,0,2285,2286,1,0,0,0,2286,2287,5,79,0,0,2287,2288,5,105,0,0,2288, + 2290,3,148,74,0,2289,2228,1,0,0,0,2289,2231,1,0,0,0,2289,2238,1, + 0,0,0,2289,2246,1,0,0,0,2289,2261,1,0,0,0,2289,2269,1,0,0,0,2289, + 2277,1,0,0,0,2289,2282,1,0,0,0,2290,147,1,0,0,0,2291,2292,6,74,-1, + 0,2292,2296,3,150,75,0,2293,2294,7,18,0,0,2294,2296,3,148,74,4,2295, + 2291,1,0,0,0,2295,2293,1,0,0,0,2296,2311,1,0,0,0,2297,2298,10,3, + 0,0,2298,2299,7,19,0,0,2299,2310,3,148,74,4,2300,2301,10,2,0,0,2301, + 2302,7,18,0,0,2302,2310,3,148,74,3,2303,2304,10,1,0,0,2304,2305, + 5,323,0,0,2305,2310,3,148,74,2,2306,2307,10,5,0,0,2307,2308,5,30, + 0,0,2308,2310,3,176,88,0,2309,2297,1,0,0,0,2309,2300,1,0,0,0,2309, + 2303,1,0,0,0,2309,2306,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0, + 0,2311,2312,1,0,0,0,2312,149,1,0,0,0,2313,2311,1,0,0,0,2314,2315, + 6,75,-1,0,2315,2768,5,183,0,0,2316,2768,3,184,92,0,2317,2318,3,302, + 151,0,2318,2319,3,174,87,0,2319,2768,1,0,0,0,2320,2321,5,82,0,0, + 2321,2322,5,213,0,0,2322,2768,3,174,87,0,2323,2768,3,304,152,0,2324, + 2768,3,182,91,0,2325,2768,3,174,87,0,2326,2768,5,328,0,0,2327,2768, + 5,324,0,0,2328,2329,5,211,0,0,2329,2330,5,1,0,0,2330,2331,3,148, + 74,0,2331,2332,5,122,0,0,2332,2333,3,148,74,0,2333,2334,5,2,0,0, + 2334,2768,1,0,0,0,2335,2336,5,1,0,0,2336,2339,3,142,71,0,2337,2338, + 5,3,0,0,2338,2340,3,142,71,0,2339,2337,1,0,0,0,2340,2341,1,0,0,0, + 2341,2339,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0,0,2343,2344, + 5,2,0,0,2344,2768,1,0,0,0,2345,2346,5,239,0,0,2346,2347,5,1,0,0, + 2347,2352,3,142,71,0,2348,2349,5,3,0,0,2349,2351,3,142,71,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,2355,1,0,0,0,2354,2352,1,0,0,0,2355,2356,5,2,0,0,2356,2768, + 1,0,0,0,2357,2358,5,156,0,0,2358,2360,5,1,0,0,2359,2361,3,74,37, + 0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361,2362,1,0,0,0,2362,2365, + 3,142,71,0,2363,2364,5,3,0,0,2364,2366,3,174,87,0,2365,2363,1,0, + 0,0,2365,2366,1,0,0,0,2366,2370,1,0,0,0,2367,2368,5,190,0,0,2368, + 2369,5,200,0,0,2369,2371,3,90,45,0,2370,2367,1,0,0,0,2370,2371,1, + 0,0,0,2371,2372,1,0,0,0,2372,2373,5,2,0,0,2373,2374,5,305,0,0,2374, + 2375,5,114,0,0,2375,2376,5,1,0,0,2376,2377,5,195,0,0,2377,2378,5, + 36,0,0,2378,2383,3,50,25,0,2379,2380,5,3,0,0,2380,2382,3,50,25,0, + 2381,2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384, + 1,0,0,0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,2,0,0,2387, + 2389,1,0,0,0,2388,2390,3,198,99,0,2389,2388,1,0,0,0,2389,2390,1, + 0,0,0,2390,2768,1,0,0,0,2391,2393,3,170,85,0,2392,2391,1,0,0,0,2392, + 2393,1,0,0,0,2393,2394,1,0,0,0,2394,2395,3,278,139,0,2395,2399,5, + 1,0,0,2396,2397,3,302,151,0,2397,2398,5,4,0,0,2398,2400,1,0,0,0, + 2399,2396,1,0,0,0,2399,2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402, + 5,320,0,0,2402,2404,5,2,0,0,2403,2405,3,198,99,0,2404,2403,1,0,0, + 0,2404,2405,1,0,0,0,2405,2407,1,0,0,0,2406,2408,3,202,101,0,2407, + 2406,1,0,0,0,2407,2408,1,0,0,0,2408,2768,1,0,0,0,2409,2411,3,170, + 85,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0,0,0,2412, + 2413,3,278,139,0,2413,2425,5,1,0,0,2414,2416,3,74,37,0,2415,2414, + 1,0,0,0,2415,2416,1,0,0,0,2416,2417,1,0,0,0,2417,2422,3,142,71,0, + 2418,2419,5,3,0,0,2419,2421,3,142,71,0,2420,2418,1,0,0,0,2421,2424, + 1,0,0,0,2422,2420,1,0,0,0,2422,2423,1,0,0,0,2423,2426,1,0,0,0,2424, + 2422,1,0,0,0,2425,2415,1,0,0,0,2425,2426,1,0,0,0,2426,2437,1,0,0, + 0,2427,2428,5,195,0,0,2428,2429,5,36,0,0,2429,2434,3,50,25,0,2430, + 2431,5,3,0,0,2431,2433,3,50,25,0,2432,2430,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,2427,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0,0,0,2439, + 2441,5,2,0,0,2440,2442,3,198,99,0,2441,2440,1,0,0,0,2441,2442,1, + 0,0,0,2442,2447,1,0,0,0,2443,2445,3,172,86,0,2444,2443,1,0,0,0,2444, + 2445,1,0,0,0,2445,2446,1,0,0,0,2446,2448,3,202,101,0,2447,2444,1, + 0,0,0,2447,2448,1,0,0,0,2448,2768,1,0,0,0,2449,2450,3,302,151,0, + 2450,2451,3,202,101,0,2451,2768,1,0,0,0,2452,2453,3,302,151,0,2453, + 2454,5,7,0,0,2454,2455,3,142,71,0,2455,2768,1,0,0,0,2456,2465,5, + 1,0,0,2457,2462,3,302,151,0,2458,2459,5,3,0,0,2459,2461,3,302,151, + 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,2466,1,0,0,0,2464,2462,1,0,0,0,2465,2457,1,0,0,0,2465, + 2466,1,0,0,0,2466,2467,1,0,0,0,2467,2468,5,2,0,0,2468,2469,5,7,0, + 0,2469,2768,3,142,71,0,2470,2471,5,1,0,0,2471,2472,3,22,11,0,2472, + 2473,5,2,0,0,2473,2768,1,0,0,0,2474,2475,5,94,0,0,2475,2476,5,1, + 0,0,2476,2477,3,22,11,0,2477,2478,5,2,0,0,2478,2768,1,0,0,0,2479, + 2480,5,40,0,0,2480,2482,3,142,71,0,2481,2483,3,196,98,0,2482,2481, + 1,0,0,0,2483,2484,1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485, + 2488,1,0,0,0,2486,2487,5,84,0,0,2487,2489,3,142,71,0,2488,2486,1, + 0,0,0,2488,2489,1,0,0,0,2489,2490,1,0,0,0,2490,2491,5,88,0,0,2491, + 2768,1,0,0,0,2492,2494,5,40,0,0,2493,2495,3,196,98,0,2494,2493,1, + 0,0,0,2495,2496,1,0,0,0,2496,2494,1,0,0,0,2496,2497,1,0,0,0,2497, + 2500,1,0,0,0,2498,2499,5,84,0,0,2499,2501,3,142,71,0,2500,2498,1, + 0,0,0,2500,2501,1,0,0,0,2501,2502,1,0,0,0,2502,2503,5,88,0,0,2503, + 2768,1,0,0,0,2504,2505,5,41,0,0,2505,2506,5,1,0,0,2506,2507,3,142, + 71,0,2507,2508,5,28,0,0,2508,2509,3,190,95,0,2509,2510,5,2,0,0,2510, + 2768,1,0,0,0,2511,2512,5,275,0,0,2512,2513,5,1,0,0,2513,2514,3,142, + 71,0,2514,2515,5,28,0,0,2515,2516,3,190,95,0,2516,2517,5,2,0,0,2517, + 2768,1,0,0,0,2518,2519,5,27,0,0,2519,2528,5,8,0,0,2520,2525,3,142, + 71,0,2521,2522,5,3,0,0,2522,2524,3,142,71,0,2523,2521,1,0,0,0,2524, + 2527,1,0,0,0,2525,2523,1,0,0,0,2525,2526,1,0,0,0,2526,2529,1,0,0, + 0,2527,2525,1,0,0,0,2528,2520,1,0,0,0,2528,2529,1,0,0,0,2529,2530, + 1,0,0,0,2530,2768,5,9,0,0,2531,2768,3,284,142,0,2532,2768,5,58,0, + 0,2533,2537,5,62,0,0,2534,2535,5,1,0,0,2535,2536,5,329,0,0,2536, + 2538,5,2,0,0,2537,2534,1,0,0,0,2537,2538,1,0,0,0,2538,2768,1,0,0, + 0,2539,2543,5,63,0,0,2540,2541,5,1,0,0,2541,2542,5,329,0,0,2542, + 2544,5,2,0,0,2543,2540,1,0,0,0,2543,2544,1,0,0,0,2544,2768,1,0,0, + 0,2545,2549,5,158,0,0,2546,2547,5,1,0,0,2547,2548,5,329,0,0,2548, + 2550,5,2,0,0,2549,2546,1,0,0,0,2549,2550,1,0,0,0,2550,2768,1,0,0, + 0,2551,2555,5,159,0,0,2552,2553,5,1,0,0,2553,2554,5,329,0,0,2554, + 2556,5,2,0,0,2555,2552,1,0,0,0,2555,2556,1,0,0,0,2556,2768,1,0,0, + 0,2557,2768,5,64,0,0,2558,2768,5,57,0,0,2559,2768,5,61,0,0,2560, + 2768,5,59,0,0,2561,2562,5,272,0,0,2562,2570,5,1,0,0,2563,2565,3, + 88,44,0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565,2567,1,0,0,0,2566, + 2568,3,148,74,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2569,1, + 0,0,0,2569,2571,5,105,0,0,2570,2564,1,0,0,0,2570,2571,1,0,0,0,2571, + 2572,1,0,0,0,2572,2573,3,148,74,0,2573,2574,5,2,0,0,2574,2768,1, + 0,0,0,2575,2576,5,272,0,0,2576,2577,5,1,0,0,2577,2578,3,148,74,0, + 2578,2579,5,3,0,0,2579,2580,3,148,74,0,2580,2581,5,2,0,0,2581,2768, + 1,0,0,0,2582,2583,5,258,0,0,2583,2584,5,1,0,0,2584,2585,3,148,74, + 0,2585,2586,5,105,0,0,2586,2589,3,148,74,0,2587,2588,5,103,0,0,2588, + 2590,3,148,74,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590,2591,1, + 0,0,0,2591,2592,5,2,0,0,2592,2768,1,0,0,0,2593,2594,5,181,0,0,2594, + 2595,5,1,0,0,2595,2598,3,148,74,0,2596,2597,5,3,0,0,2597,2599,3, + 188,94,0,2598,2596,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, + 2601,5,2,0,0,2601,2768,1,0,0,0,2602,2603,5,96,0,0,2603,2604,5,1, + 0,0,2604,2605,3,302,151,0,2605,2606,5,105,0,0,2606,2607,3,148,74, + 0,2607,2608,5,2,0,0,2608,2768,1,0,0,0,2609,2610,5,1,0,0,2610,2611, + 3,142,71,0,2611,2612,5,2,0,0,2612,2768,1,0,0,0,2613,2614,5,115,0, + 0,2614,2623,5,1,0,0,2615,2620,3,288,144,0,2616,2617,5,3,0,0,2617, + 2619,3,288,144,0,2618,2616,1,0,0,0,2619,2622,1,0,0,0,2620,2618,1, + 0,0,0,2620,2621,1,0,0,0,2621,2624,1,0,0,0,2622,2620,1,0,0,0,2623, + 2615,1,0,0,0,2623,2624,1,0,0,0,2624,2625,1,0,0,0,2625,2768,5,2,0, + 0,2626,2627,5,139,0,0,2627,2628,5,1,0,0,2628,2633,3,152,76,0,2629, + 2630,3,160,80,0,2630,2631,5,190,0,0,2631,2632,5,89,0,0,2632,2634, + 1,0,0,0,2633,2629,1,0,0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635, + 2636,5,2,0,0,2636,2768,1,0,0,0,2637,2638,5,143,0,0,2638,2639,5,1, + 0,0,2639,2642,3,152,76,0,2640,2641,5,231,0,0,2641,2643,3,190,95, + 0,2642,2640,1,0,0,0,2642,2643,1,0,0,0,2643,2648,1,0,0,0,2644,2645, + 3,162,81,0,2645,2646,5,190,0,0,2646,2647,5,85,0,0,2647,2649,1,0, + 0,0,2648,2644,1,0,0,0,2648,2649,1,0,0,0,2649,2654,1,0,0,0,2650,2651, + 3,162,81,0,2651,2652,5,190,0,0,2652,2653,5,89,0,0,2653,2655,1,0, + 0,0,2654,2650,1,0,0,0,2654,2655,1,0,0,0,2655,2656,1,0,0,0,2656,2657, + 5,2,0,0,2657,2768,1,0,0,0,2658,2659,5,141,0,0,2659,2660,5,1,0,0, + 2660,2667,3,152,76,0,2661,2662,5,231,0,0,2662,2665,3,190,95,0,2663, + 2664,5,104,0,0,2664,2666,3,156,78,0,2665,2663,1,0,0,0,2665,2666, + 1,0,0,0,2666,2668,1,0,0,0,2667,2661,1,0,0,0,2667,2668,1,0,0,0,2668, + 2672,1,0,0,0,2669,2670,3,164,82,0,2670,2671,5,308,0,0,2671,2673, + 1,0,0,0,2672,2669,1,0,0,0,2672,2673,1,0,0,0,2673,2681,1,0,0,0,2674, + 2675,7,15,0,0,2675,2679,5,218,0,0,2676,2677,5,190,0,0,2677,2678, + 5,242,0,0,2678,2680,5,264,0,0,2679,2676,1,0,0,0,2679,2680,1,0,0, + 0,2680,2682,1,0,0,0,2681,2674,1,0,0,0,2681,2682,1,0,0,0,2682,2687, + 1,0,0,0,2683,2684,3,166,83,0,2684,2685,5,190,0,0,2685,2686,5,85, + 0,0,2686,2688,1,0,0,0,2687,2683,1,0,0,0,2687,2688,1,0,0,0,2688,2693, + 1,0,0,0,2689,2690,3,166,83,0,2690,2691,5,190,0,0,2691,2692,5,89, + 0,0,2692,2694,1,0,0,0,2693,2689,1,0,0,0,2693,2694,1,0,0,0,2694,2695, + 1,0,0,0,2695,2696,5,2,0,0,2696,2768,1,0,0,0,2697,2698,5,140,0,0, + 2698,2727,5,1,0,0,2699,2704,3,168,84,0,2700,2701,5,3,0,0,2701,2703, + 3,168,84,0,2702,2700,1,0,0,0,2703,2706,1,0,0,0,2704,2702,1,0,0,0, + 2704,2705,1,0,0,0,2705,2713,1,0,0,0,2706,2704,1,0,0,0,2707,2708, + 5,183,0,0,2708,2709,5,190,0,0,2709,2714,5,183,0,0,2710,2711,5,18, + 0,0,2711,2712,5,190,0,0,2712,2714,5,183,0,0,2713,2707,1,0,0,0,2713, + 2710,1,0,0,0,2713,2714,1,0,0,0,2714,2725,1,0,0,0,2715,2716,5,304, + 0,0,2716,2718,5,282,0,0,2717,2719,5,146,0,0,2718,2717,1,0,0,0,2718, + 2719,1,0,0,0,2719,2726,1,0,0,0,2720,2721,5,306,0,0,2721,2723,5,282, + 0,0,2722,2724,5,146,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724, + 2726,1,0,0,0,2725,2715,1,0,0,0,2725,2720,1,0,0,0,2725,2726,1,0,0, + 0,2726,2728,1,0,0,0,2727,2699,1,0,0,0,2727,2728,1,0,0,0,2728,2735, + 1,0,0,0,2729,2730,5,231,0,0,2730,2733,3,190,95,0,2731,2732,5,104, + 0,0,2732,2734,3,156,78,0,2733,2731,1,0,0,0,2733,2734,1,0,0,0,2734, + 2736,1,0,0,0,2735,2729,1,0,0,0,2735,2736,1,0,0,0,2736,2737,1,0,0, + 0,2737,2768,5,2,0,0,2738,2739,5,138,0,0,2739,2756,5,1,0,0,2740,2745, + 3,154,77,0,2741,2742,5,3,0,0,2742,2744,3,154,77,0,2743,2741,1,0, + 0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746,2754, + 1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,183,0,0,2749,2750,5,190,0, + 0,2750,2755,5,183,0,0,2751,2752,5,18,0,0,2752,2753,5,190,0,0,2753, + 2755,5,183,0,0,2754,2748,1,0,0,0,2754,2751,1,0,0,0,2754,2755,1,0, + 0,0,2755,2757,1,0,0,0,2756,2740,1,0,0,0,2756,2757,1,0,0,0,2757,2764, + 1,0,0,0,2758,2759,5,231,0,0,2759,2762,3,190,95,0,2760,2761,5,104, + 0,0,2761,2763,3,156,78,0,2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763, + 2765,1,0,0,0,2764,2758,1,0,0,0,2764,2765,1,0,0,0,2765,2766,1,0,0, + 0,2766,2768,5,2,0,0,2767,2314,1,0,0,0,2767,2316,1,0,0,0,2767,2317, + 1,0,0,0,2767,2320,1,0,0,0,2767,2323,1,0,0,0,2767,2324,1,0,0,0,2767, + 2325,1,0,0,0,2767,2326,1,0,0,0,2767,2327,1,0,0,0,2767,2328,1,0,0, + 0,2767,2335,1,0,0,0,2767,2345,1,0,0,0,2767,2357,1,0,0,0,2767,2392, + 1,0,0,0,2767,2410,1,0,0,0,2767,2449,1,0,0,0,2767,2452,1,0,0,0,2767, + 2456,1,0,0,0,2767,2470,1,0,0,0,2767,2474,1,0,0,0,2767,2479,1,0,0, + 0,2767,2492,1,0,0,0,2767,2504,1,0,0,0,2767,2511,1,0,0,0,2767,2518, + 1,0,0,0,2767,2531,1,0,0,0,2767,2532,1,0,0,0,2767,2533,1,0,0,0,2767, + 2539,1,0,0,0,2767,2545,1,0,0,0,2767,2551,1,0,0,0,2767,2557,1,0,0, + 0,2767,2558,1,0,0,0,2767,2559,1,0,0,0,2767,2560,1,0,0,0,2767,2561, + 1,0,0,0,2767,2575,1,0,0,0,2767,2582,1,0,0,0,2767,2593,1,0,0,0,2767, + 2602,1,0,0,0,2767,2609,1,0,0,0,2767,2613,1,0,0,0,2767,2626,1,0,0, + 0,2767,2637,1,0,0,0,2767,2658,1,0,0,0,2767,2697,1,0,0,0,2767,2738, + 1,0,0,0,2768,2779,1,0,0,0,2769,2770,10,24,0,0,2770,2771,5,8,0,0, + 2771,2772,3,148,74,0,2772,2773,5,9,0,0,2773,2778,1,0,0,0,2774,2775, + 10,22,0,0,2775,2776,5,4,0,0,2776,2778,3,302,151,0,2777,2769,1,0, + 0,0,2777,2774,1,0,0,0,2778,2781,1,0,0,0,2779,2777,1,0,0,0,2779,2780, + 1,0,0,0,2780,151,1,0,0,0,2781,2779,1,0,0,0,2782,2783,3,154,77,0, + 2783,2784,5,3,0,0,2784,2787,3,174,87,0,2785,2786,5,28,0,0,2786,2788, + 3,302,151,0,2787,2785,1,0,0,0,2787,2788,1,0,0,0,2788,2798,1,0,0, + 0,2789,2790,5,203,0,0,2790,2795,3,158,79,0,2791,2792,5,3,0,0,2792, + 2794,3,158,79,0,2793,2791,1,0,0,0,2794,2797,1,0,0,0,2795,2793,1, + 0,0,0,2795,2796,1,0,0,0,2796,2799,1,0,0,0,2797,2795,1,0,0,0,2798, + 2789,1,0,0,0,2798,2799,1,0,0,0,2799,153,1,0,0,0,2800,2803,3,142, + 71,0,2801,2802,5,104,0,0,2802,2804,3,156,78,0,2803,2801,1,0,0,0, + 2803,2804,1,0,0,0,2804,155,1,0,0,0,2805,2808,5,137,0,0,2806,2807, + 5,87,0,0,2807,2809,7,20,0,0,2808,2806,1,0,0,0,2808,2809,1,0,0,0, + 2809,157,1,0,0,0,2810,2811,3,154,77,0,2811,2812,5,28,0,0,2812,2813, + 3,302,151,0,2813,159,1,0,0,0,2814,2815,7,21,0,0,2815,161,1,0,0,0, + 2816,2821,5,89,0,0,2817,2821,5,183,0,0,2818,2819,5,70,0,0,2819,2821, + 3,142,71,0,2820,2816,1,0,0,0,2820,2817,1,0,0,0,2820,2818,1,0,0,0, + 2821,163,1,0,0,0,2822,2824,5,306,0,0,2823,2825,5,27,0,0,2824,2823, + 1,0,0,0,2824,2825,1,0,0,0,2825,2834,1,0,0,0,2826,2828,5,304,0,0, + 2827,2829,7,22,0,0,2828,2827,1,0,0,0,2828,2829,1,0,0,0,2829,2831, + 1,0,0,0,2830,2832,5,27,0,0,2831,2830,1,0,0,0,2831,2832,1,0,0,0,2832, + 2834,1,0,0,0,2833,2822,1,0,0,0,2833,2826,1,0,0,0,2834,165,1,0,0, + 0,2835,2842,5,89,0,0,2836,2842,5,183,0,0,2837,2838,5,85,0,0,2838, + 2842,5,27,0,0,2839,2840,5,85,0,0,2840,2842,5,186,0,0,2841,2835,1, + 0,0,0,2841,2836,1,0,0,0,2841,2837,1,0,0,0,2841,2839,1,0,0,0,2842, + 167,1,0,0,0,2843,2845,5,145,0,0,2844,2843,1,0,0,0,2844,2845,1,0, + 0,0,2845,2846,1,0,0,0,2846,2847,3,142,71,0,2847,2848,5,295,0,0,2848, + 2849,3,154,77,0,2849,2855,1,0,0,0,2850,2851,3,142,71,0,2851,2852, + 5,10,0,0,2852,2853,3,154,77,0,2853,2855,1,0,0,0,2854,2844,1,0,0, + 0,2854,2850,1,0,0,0,2855,169,1,0,0,0,2856,2857,7,23,0,0,2857,171, + 1,0,0,0,2858,2859,5,120,0,0,2859,2863,5,185,0,0,2860,2861,5,228, + 0,0,2861,2863,5,185,0,0,2862,2858,1,0,0,0,2862,2860,1,0,0,0,2863, + 173,1,0,0,0,2864,2871,5,326,0,0,2865,2868,5,327,0,0,2866,2867,5, + 277,0,0,2867,2869,5,326,0,0,2868,2866,1,0,0,0,2868,2869,1,0,0,0, + 2869,2871,1,0,0,0,2870,2864,1,0,0,0,2870,2865,1,0,0,0,2871,175,1, + 0,0,0,2872,2873,5,267,0,0,2873,2874,5,311,0,0,2874,2879,3,184,92, + 0,2875,2876,5,267,0,0,2876,2877,5,311,0,0,2877,2879,3,174,87,0,2878, + 2872,1,0,0,0,2878,2875,1,0,0,0,2879,177,1,0,0,0,2880,2881,7,24,0, + 0,2881,179,1,0,0,0,2882,2883,7,25,0,0,2883,181,1,0,0,0,2884,2885, + 7,26,0,0,2885,183,1,0,0,0,2886,2888,5,129,0,0,2887,2889,7,18,0,0, + 2888,2887,1,0,0,0,2888,2889,1,0,0,0,2889,2890,1,0,0,0,2890,2891, + 3,174,87,0,2891,2894,3,186,93,0,2892,2893,5,269,0,0,2893,2895,3, + 186,93,0,2894,2892,1,0,0,0,2894,2895,1,0,0,0,2895,185,1,0,0,0,2896, + 2897,7,27,0,0,2897,187,1,0,0,0,2898,2899,7,28,0,0,2899,189,1,0,0, + 0,2900,2901,6,95,-1,0,2901,2902,5,239,0,0,2902,2903,5,1,0,0,2903, + 2908,3,192,96,0,2904,2905,5,3,0,0,2905,2907,3,192,96,0,2906,2904, + 1,0,0,0,2907,2910,1,0,0,0,2908,2906,1,0,0,0,2908,2909,1,0,0,0,2909, + 2911,1,0,0,0,2910,2908,1,0,0,0,2911,2912,5,2,0,0,2912,2972,1,0,0, + 0,2913,2914,5,129,0,0,2914,2917,3,186,93,0,2915,2916,5,269,0,0,2916, + 2918,3,186,93,0,2917,2915,1,0,0,0,2917,2918,1,0,0,0,2918,2972,1, + 0,0,0,2919,2924,5,268,0,0,2920,2921,5,1,0,0,2921,2922,3,194,97,0, + 2922,2923,5,2,0,0,2923,2925,1,0,0,0,2924,2920,1,0,0,0,2924,2925, + 1,0,0,0,2925,2929,1,0,0,0,2926,2927,7,29,0,0,2927,2928,5,267,0,0, + 2928,2930,5,311,0,0,2929,2926,1,0,0,0,2929,2930,1,0,0,0,2930,2972, + 1,0,0,0,2931,2936,5,267,0,0,2932,2933,5,1,0,0,2933,2934,3,194,97, + 0,2934,2935,5,2,0,0,2935,2937,1,0,0,0,2936,2932,1,0,0,0,2936,2937, + 1,0,0,0,2937,2941,1,0,0,0,2938,2939,7,29,0,0,2939,2940,5,267,0,0, + 2940,2942,5,311,0,0,2941,2938,1,0,0,0,2941,2942,1,0,0,0,2942,2972, + 1,0,0,0,2943,2944,5,82,0,0,2944,2972,5,213,0,0,2945,2946,5,27,0, + 0,2946,2947,5,314,0,0,2947,2948,3,190,95,0,2948,2949,5,316,0,0,2949, + 2972,1,0,0,0,2950,2951,5,162,0,0,2951,2952,5,314,0,0,2952,2953,3, + 190,95,0,2953,2954,5,3,0,0,2954,2955,3,190,95,0,2955,2956,5,316, + 0,0,2956,2972,1,0,0,0,2957,2969,3,302,151,0,2958,2959,5,1,0,0,2959, + 2964,3,194,97,0,2960,2961,5,3,0,0,2961,2963,3,194,97,0,2962,2960, + 1,0,0,0,2963,2966,1,0,0,0,2964,2962,1,0,0,0,2964,2965,1,0,0,0,2965, + 2967,1,0,0,0,2966,2964,1,0,0,0,2967,2968,5,2,0,0,2968,2970,1,0,0, + 0,2969,2958,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0,0,2971,2900, + 1,0,0,0,2971,2913,1,0,0,0,2971,2919,1,0,0,0,2971,2931,1,0,0,0,2971, + 2943,1,0,0,0,2971,2945,1,0,0,0,2971,2950,1,0,0,0,2971,2957,1,0,0, + 0,2972,2982,1,0,0,0,2973,2974,10,2,0,0,2974,2978,5,27,0,0,2975,2976, + 5,8,0,0,2976,2977,5,329,0,0,2977,2979,5,9,0,0,2978,2975,1,0,0,0, + 2978,2979,1,0,0,0,2979,2981,1,0,0,0,2980,2973,1,0,0,0,2981,2984, + 1,0,0,0,2982,2980,1,0,0,0,2982,2983,1,0,0,0,2983,191,1,0,0,0,2984, + 2982,1,0,0,0,2985,2990,3,190,95,0,2986,2987,3,302,151,0,2987,2988, + 3,190,95,0,2988,2990,1,0,0,0,2989,2985,1,0,0,0,2989,2986,1,0,0,0, + 2990,193,1,0,0,0,2991,2994,5,329,0,0,2992,2994,3,190,95,0,2993,2991, + 1,0,0,0,2993,2992,1,0,0,0,2994,195,1,0,0,0,2995,2996,5,300,0,0,2996, + 2997,3,142,71,0,2997,2998,5,265,0,0,2998,2999,3,142,71,0,2999,197, + 1,0,0,0,3000,3001,5,99,0,0,3001,3002,5,1,0,0,3002,3003,3,54,27,0, + 3003,3004,5,2,0,0,3004,199,1,0,0,0,3005,3006,5,300,0,0,3006,3009, + 5,164,0,0,3007,3008,5,25,0,0,3008,3010,3,142,71,0,3009,3007,1,0, + 0,0,3009,3010,1,0,0,0,3010,3011,1,0,0,0,3011,3012,5,265,0,0,3012, + 3013,5,287,0,0,3013,3014,5,251,0,0,3014,3015,3,302,151,0,3015,3016, + 5,312,0,0,3016,3024,3,142,71,0,3017,3018,5,3,0,0,3018,3019,3,302, + 151,0,3019,3020,5,312,0,0,3020,3021,3,142,71,0,3021,3023,1,0,0,0, + 3022,3017,1,0,0,0,3023,3026,1,0,0,0,3024,3022,1,0,0,0,3024,3025, + 1,0,0,0,3025,3070,1,0,0,0,3026,3024,1,0,0,0,3027,3028,5,300,0,0, + 3028,3031,5,164,0,0,3029,3030,5,25,0,0,3030,3032,3,142,71,0,3031, + 3029,1,0,0,0,3031,3032,1,0,0,0,3032,3033,1,0,0,0,3033,3034,5,265, + 0,0,3034,3070,5,73,0,0,3035,3036,5,300,0,0,3036,3037,5,182,0,0,3037, + 3040,5,164,0,0,3038,3039,5,25,0,0,3039,3041,3,142,71,0,3040,3038, + 1,0,0,0,3040,3041,1,0,0,0,3041,3042,1,0,0,0,3042,3043,5,265,0,0, + 3043,3055,5,127,0,0,3044,3045,5,1,0,0,3045,3050,3,302,151,0,3046, + 3047,5,3,0,0,3047,3049,3,302,151,0,3048,3046,1,0,0,0,3049,3052,1, + 0,0,0,3050,3048,1,0,0,0,3050,3051,1,0,0,0,3051,3053,1,0,0,0,3052, + 3050,1,0,0,0,3053,3054,5,2,0,0,3054,3056,1,0,0,0,3055,3044,1,0,0, + 0,3055,3056,1,0,0,0,3056,3057,1,0,0,0,3057,3058,5,296,0,0,3058,3059, + 5,1,0,0,3059,3064,3,142,71,0,3060,3061,5,3,0,0,3061,3063,3,142,71, + 0,3062,3060,1,0,0,0,3063,3066,1,0,0,0,3064,3062,1,0,0,0,3064,3065, + 1,0,0,0,3065,3067,1,0,0,0,3066,3064,1,0,0,0,3067,3068,5,2,0,0,3068, + 3070,1,0,0,0,3069,3005,1,0,0,0,3069,3027,1,0,0,0,3069,3035,1,0,0, + 0,3070,201,1,0,0,0,3071,3077,5,199,0,0,3072,3078,3,302,151,0,3073, + 3074,5,1,0,0,3074,3075,3,70,35,0,3075,3076,5,2,0,0,3076,3078,1,0, + 0,0,3077,3072,1,0,0,0,3077,3073,1,0,0,0,3078,203,1,0,0,0,3079,3080, + 5,168,0,0,3080,3085,3,96,48,0,3081,3082,5,3,0,0,3082,3084,3,96,48, + 0,3083,3081,1,0,0,0,3084,3087,1,0,0,0,3085,3083,1,0,0,0,3085,3086, + 1,0,0,0,3086,3089,1,0,0,0,3087,3085,1,0,0,0,3088,3079,1,0,0,0,3088, + 3089,1,0,0,0,3089,3090,1,0,0,0,3090,3094,3,206,103,0,3091,3092,5, + 21,0,0,3092,3093,5,163,0,0,3093,3095,3,102,51,0,3094,3091,1,0,0, + 0,3094,3095,1,0,0,0,3095,3097,1,0,0,0,3096,3098,7,13,0,0,3097,3096, + 1,0,0,0,3097,3098,1,0,0,0,3098,3104,1,0,0,0,3099,3100,5,206,0,0, + 3100,3101,5,1,0,0,3101,3102,3,210,105,0,3102,3103,5,2,0,0,3103,3105, + 1,0,0,0,3104,3099,1,0,0,0,3104,3105,1,0,0,0,3105,3115,1,0,0,0,3106, + 3107,5,257,0,0,3107,3112,3,104,52,0,3108,3109,5,3,0,0,3109,3111, + 3,104,52,0,3110,3108,1,0,0,0,3111,3114,1,0,0,0,3112,3110,1,0,0,0, + 3112,3113,1,0,0,0,3113,3116,1,0,0,0,3114,3112,1,0,0,0,3115,3106, + 1,0,0,0,3115,3116,1,0,0,0,3116,3126,1,0,0,0,3117,3118,5,71,0,0,3118, + 3123,3,106,53,0,3119,3120,5,3,0,0,3120,3122,3,106,53,0,3121,3119, + 1,0,0,0,3122,3125,1,0,0,0,3123,3121,1,0,0,0,3123,3124,1,0,0,0,3124, + 3127,1,0,0,0,3125,3123,1,0,0,0,3126,3117,1,0,0,0,3126,3127,1,0,0, + 0,3127,205,1,0,0,0,3128,3129,5,219,0,0,3129,3153,3,208,104,0,3130, + 3131,5,240,0,0,3131,3153,3,208,104,0,3132,3133,5,116,0,0,3133,3153, + 3,208,104,0,3134,3135,5,219,0,0,3135,3136,5,34,0,0,3136,3137,3,208, + 104,0,3137,3138,5,25,0,0,3138,3139,3,208,104,0,3139,3153,1,0,0,0, + 3140,3141,5,240,0,0,3141,3142,5,34,0,0,3142,3143,3,208,104,0,3143, + 3144,5,25,0,0,3144,3145,3,208,104,0,3145,3153,1,0,0,0,3146,3147, + 5,116,0,0,3147,3148,5,34,0,0,3148,3149,3,208,104,0,3149,3150,5,25, + 0,0,3150,3151,3,208,104,0,3151,3153,1,0,0,0,3152,3128,1,0,0,0,3152, + 3130,1,0,0,0,3152,3132,1,0,0,0,3152,3134,1,0,0,0,3152,3140,1,0,0, + 0,3152,3146,1,0,0,0,3153,207,1,0,0,0,3154,3155,5,278,0,0,3155,3164, + 5,212,0,0,3156,3157,5,278,0,0,3157,3164,5,102,0,0,3158,3159,5,56, + 0,0,3159,3164,5,239,0,0,3160,3161,3,142,71,0,3161,3162,7,30,0,0, + 3162,3164,1,0,0,0,3163,3154,1,0,0,0,3163,3156,1,0,0,0,3163,3158, + 1,0,0,0,3163,3160,1,0,0,0,3164,209,1,0,0,0,3165,3166,6,105,-1,0, + 3166,3168,3,212,106,0,3167,3169,3,214,107,0,3168,3167,1,0,0,0,3168, + 3169,1,0,0,0,3169,3177,1,0,0,0,3170,3171,10,2,0,0,3171,3176,3,210, + 105,3,3172,3173,10,1,0,0,3173,3174,5,11,0,0,3174,3176,3,210,105, + 2,3175,3170,1,0,0,0,3175,3172,1,0,0,0,3176,3179,1,0,0,0,3177,3175, + 1,0,0,0,3177,3178,1,0,0,0,3178,211,1,0,0,0,3179,3177,1,0,0,0,3180, + 3206,3,302,151,0,3181,3182,5,1,0,0,3182,3206,5,2,0,0,3183,3184,5, + 209,0,0,3184,3185,5,1,0,0,3185,3190,3,210,105,0,3186,3187,5,3,0, + 0,3187,3189,3,210,105,0,3188,3186,1,0,0,0,3189,3192,1,0,0,0,3190, + 3188,1,0,0,0,3190,3191,1,0,0,0,3191,3193,1,0,0,0,3192,3190,1,0,0, + 0,3193,3194,5,2,0,0,3194,3206,1,0,0,0,3195,3196,5,1,0,0,3196,3197, + 3,210,105,0,3197,3198,5,2,0,0,3198,3206,1,0,0,0,3199,3206,5,12,0, + 0,3200,3206,5,13,0,0,3201,3202,5,14,0,0,3202,3203,3,210,105,0,3203, + 3204,5,15,0,0,3204,3206,1,0,0,0,3205,3180,1,0,0,0,3205,3181,1,0, + 0,0,3205,3183,1,0,0,0,3205,3195,1,0,0,0,3205,3199,1,0,0,0,3205,3200, + 1,0,0,0,3205,3201,1,0,0,0,3206,213,1,0,0,0,3207,3209,5,320,0,0,3208, + 3210,5,324,0,0,3209,3208,1,0,0,0,3209,3210,1,0,0,0,3210,3238,1,0, + 0,0,3211,3213,5,318,0,0,3212,3214,5,324,0,0,3213,3212,1,0,0,0,3213, + 3214,1,0,0,0,3214,3238,1,0,0,0,3215,3217,5,324,0,0,3216,3218,5,324, + 0,0,3217,3216,1,0,0,0,3217,3218,1,0,0,0,3218,3238,1,0,0,0,3219,3220, + 5,16,0,0,3220,3221,5,329,0,0,3221,3223,5,17,0,0,3222,3224,5,324, + 0,0,3223,3222,1,0,0,0,3223,3224,1,0,0,0,3224,3238,1,0,0,0,3225,3227, + 5,16,0,0,3226,3228,5,329,0,0,3227,3226,1,0,0,0,3227,3228,1,0,0,0, + 3228,3229,1,0,0,0,3229,3231,5,3,0,0,3230,3232,5,329,0,0,3231,3230, + 1,0,0,0,3231,3232,1,0,0,0,3232,3233,1,0,0,0,3233,3235,5,17,0,0,3234, + 3236,5,324,0,0,3235,3234,1,0,0,0,3235,3236,1,0,0,0,3236,3238,1,0, + 0,0,3237,3207,1,0,0,0,3237,3211,1,0,0,0,3237,3215,1,0,0,0,3237,3219, + 1,0,0,0,3237,3225,1,0,0,0,3238,215,1,0,0,0,3239,3240,3,302,151,0, + 3240,3241,5,312,0,0,3241,3242,3,142,71,0,3242,217,1,0,0,0,3243,3244, + 5,104,0,0,3244,3248,7,31,0,0,3245,3246,5,276,0,0,3246,3248,7,32, + 0,0,3247,3243,1,0,0,0,3247,3245,1,0,0,0,3248,219,1,0,0,0,3249,3250, + 5,134,0,0,3250,3251,5,153,0,0,3251,3255,3,222,111,0,3252,3253,5, + 220,0,0,3253,3255,7,33,0,0,3254,3249,1,0,0,0,3254,3252,1,0,0,0,3255, + 221,1,0,0,0,3256,3257,5,220,0,0,3257,3264,5,279,0,0,3258,3259,5, + 220,0,0,3259,3264,5,48,0,0,3260,3261,5,225,0,0,3261,3264,5,220,0, + 0,3262,3264,5,249,0,0,3263,3256,1,0,0,0,3263,3258,1,0,0,0,3263,3260, + 1,0,0,0,3263,3262,1,0,0,0,3264,223,1,0,0,0,3265,3271,3,142,71,0, + 3266,3267,3,302,151,0,3267,3268,5,6,0,0,3268,3269,3,142,71,0,3269, + 3271,1,0,0,0,3270,3265,1,0,0,0,3270,3266,1,0,0,0,3271,225,1,0,0, + 0,3272,3273,3,302,151,0,3273,3274,5,4,0,0,3274,3275,3,302,151,0, + 3275,3278,1,0,0,0,3276,3278,3,302,151,0,3277,3272,1,0,0,0,3277,3276, + 1,0,0,0,3278,227,1,0,0,0,3279,3284,3,226,113,0,3280,3281,5,3,0,0, + 3281,3283,3,226,113,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,229,1,0,0,0,3286,3284,1,0,0,0,3287, + 3288,5,107,0,0,3288,3289,3,232,116,0,3289,3293,3,238,119,0,3290, + 3292,3,240,120,0,3291,3290,1,0,0,0,3292,3295,1,0,0,0,3293,3291,1, + 0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3293,1,0,0,0,3296, + 3297,3,242,121,0,3297,231,1,0,0,0,3298,3299,3,280,140,0,3299,3308, + 5,1,0,0,3300,3305,3,236,118,0,3301,3302,5,3,0,0,3302,3304,3,236, + 118,0,3303,3301,1,0,0,0,3304,3307,1,0,0,0,3305,3303,1,0,0,0,3305, + 3306,1,0,0,0,3306,3309,1,0,0,0,3307,3305,1,0,0,0,3308,3300,1,0,0, + 0,3308,3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,2,0,0,3311,233, + 1,0,0,0,3312,3313,3,278,139,0,3313,3322,5,1,0,0,3314,3319,3,236, + 118,0,3315,3316,5,3,0,0,3316,3318,3,236,118,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,3323, + 1,0,0,0,3321,3319,1,0,0,0,3322,3314,1,0,0,0,3322,3323,1,0,0,0,3323, + 3324,1,0,0,0,3324,3325,5,2,0,0,3325,235,1,0,0,0,3326,3328,3,302, + 151,0,3327,3326,1,0,0,0,3327,3328,1,0,0,0,3328,3329,1,0,0,0,3329, + 3330,3,190,95,0,3330,237,1,0,0,0,3331,3332,5,232,0,0,3332,3333,3, + 190,95,0,3333,239,1,0,0,0,3334,3335,5,147,0,0,3335,3354,3,302,151, + 0,3336,3338,5,182,0,0,3337,3336,1,0,0,0,3337,3338,1,0,0,0,3338,3339, + 1,0,0,0,3339,3354,5,78,0,0,3340,3341,5,232,0,0,3341,3342,5,183,0, + 0,3342,3343,5,190,0,0,3343,3344,5,183,0,0,3344,3354,5,126,0,0,3345, + 3346,5,38,0,0,3346,3347,5,190,0,0,3347,3348,5,183,0,0,3348,3354, + 5,126,0,0,3349,3350,5,246,0,0,3350,3354,7,1,0,0,3351,3352,5,46,0, + 0,3352,3354,3,174,87,0,3353,3334,1,0,0,0,3353,3337,1,0,0,0,3353, + 3340,1,0,0,0,3353,3345,1,0,0,0,3353,3349,1,0,0,0,3353,3351,1,0,0, + 0,3354,241,1,0,0,0,3355,3356,5,230,0,0,3356,3455,3,148,74,0,3357, + 3358,5,251,0,0,3358,3359,3,302,151,0,3359,3360,5,312,0,0,3360,3361, + 3,142,71,0,3361,3455,1,0,0,0,3362,3363,5,40,0,0,3363,3365,3,142, + 71,0,3364,3366,3,244,122,0,3365,3364,1,0,0,0,3366,3367,1,0,0,0,3367, + 3365,1,0,0,0,3367,3368,1,0,0,0,3368,3370,1,0,0,0,3369,3371,3,248, + 124,0,3370,3369,1,0,0,0,3370,3371,1,0,0,0,3371,3372,1,0,0,0,3372, + 3373,5,88,0,0,3373,3374,5,40,0,0,3374,3455,1,0,0,0,3375,3377,5,40, + 0,0,3376,3378,3,244,122,0,3377,3376,1,0,0,0,3378,3379,1,0,0,0,3379, + 3377,1,0,0,0,3379,3380,1,0,0,0,3380,3382,1,0,0,0,3381,3383,3,248, + 124,0,3382,3381,1,0,0,0,3382,3383,1,0,0,0,3383,3384,1,0,0,0,3384, + 3385,5,88,0,0,3385,3386,5,40,0,0,3386,3455,1,0,0,0,3387,3388,5,119, + 0,0,3388,3389,3,142,71,0,3389,3390,5,265,0,0,3390,3394,3,252,126, + 0,3391,3393,3,246,123,0,3392,3391,1,0,0,0,3393,3396,1,0,0,0,3394, + 3392,1,0,0,0,3394,3395,1,0,0,0,3395,3398,1,0,0,0,3396,3394,1,0,0, + 0,3397,3399,3,248,124,0,3398,3397,1,0,0,0,3398,3399,1,0,0,0,3399, + 3400,1,0,0,0,3400,3401,5,88,0,0,3401,3402,5,119,0,0,3402,3455,1, + 0,0,0,3403,3404,5,135,0,0,3404,3455,3,302,151,0,3405,3406,5,151, + 0,0,3406,3455,3,302,151,0,3407,3413,5,32,0,0,3408,3409,3,250,125, + 0,3409,3410,5,325,0,0,3410,3412,1,0,0,0,3411,3408,1,0,0,0,3412,3415, + 1,0,0,0,3413,3411,1,0,0,0,3413,3414,1,0,0,0,3414,3417,1,0,0,0,3415, + 3413,1,0,0,0,3416,3418,3,252,126,0,3417,3416,1,0,0,0,3417,3418,1, + 0,0,0,3418,3419,1,0,0,0,3419,3455,5,88,0,0,3420,3421,3,302,151,0, + 3421,3422,5,10,0,0,3422,3424,1,0,0,0,3423,3420,1,0,0,0,3423,3424, + 1,0,0,0,3424,3425,1,0,0,0,3425,3426,5,161,0,0,3426,3427,3,252,126, + 0,3427,3428,5,88,0,0,3428,3429,5,161,0,0,3429,3455,1,0,0,0,3430, + 3431,3,302,151,0,3431,3432,5,10,0,0,3432,3434,1,0,0,0,3433,3430, + 1,0,0,0,3433,3434,1,0,0,0,3434,3435,1,0,0,0,3435,3436,5,302,0,0, + 3436,3437,3,142,71,0,3437,3438,5,81,0,0,3438,3439,3,252,126,0,3439, + 3440,5,88,0,0,3440,3441,5,302,0,0,3441,3455,1,0,0,0,3442,3443,3, + 302,151,0,3443,3444,5,10,0,0,3444,3446,1,0,0,0,3445,3442,1,0,0,0, + 3445,3446,1,0,0,0,3446,3447,1,0,0,0,3447,3448,5,224,0,0,3448,3449, + 3,252,126,0,3449,3450,5,286,0,0,3450,3451,3,142,71,0,3451,3452,5, + 88,0,0,3452,3453,5,224,0,0,3453,3455,1,0,0,0,3454,3355,1,0,0,0,3454, + 3357,1,0,0,0,3454,3362,1,0,0,0,3454,3375,1,0,0,0,3454,3387,1,0,0, + 0,3454,3403,1,0,0,0,3454,3405,1,0,0,0,3454,3407,1,0,0,0,3454,3423, + 1,0,0,0,3454,3433,1,0,0,0,3454,3445,1,0,0,0,3455,243,1,0,0,0,3456, + 3457,5,300,0,0,3457,3458,3,142,71,0,3458,3459,5,265,0,0,3459,3460, + 3,252,126,0,3460,245,1,0,0,0,3461,3462,5,86,0,0,3462,3463,3,142, + 71,0,3463,3464,5,265,0,0,3464,3465,3,252,126,0,3465,247,1,0,0,0, + 3466,3467,5,84,0,0,3467,3468,3,252,126,0,3468,249,1,0,0,0,3469,3470, + 5,69,0,0,3470,3475,3,302,151,0,3471,3472,5,3,0,0,3472,3474,3,302, + 151,0,3473,3471,1,0,0,0,3474,3477,1,0,0,0,3475,3473,1,0,0,0,3475, + 3476,1,0,0,0,3476,3478,1,0,0,0,3477,3475,1,0,0,0,3478,3481,3,190, + 95,0,3479,3480,5,70,0,0,3480,3482,3,148,74,0,3481,3479,1,0,0,0,3481, + 3482,1,0,0,0,3482,251,1,0,0,0,3483,3484,3,242,121,0,3484,3485,5, + 325,0,0,3485,3487,1,0,0,0,3486,3483,1,0,0,0,3487,3488,1,0,0,0,3488, + 3486,1,0,0,0,3488,3489,1,0,0,0,3489,253,1,0,0,0,3490,3497,5,53,0, + 0,3491,3497,5,248,0,0,3492,3497,5,73,0,0,3493,3497,5,127,0,0,3494, + 3497,5,287,0,0,3495,3497,3,302,151,0,3496,3490,1,0,0,0,3496,3491, + 1,0,0,0,3496,3492,1,0,0,0,3496,3493,1,0,0,0,3496,3494,1,0,0,0,3496, + 3495,1,0,0,0,3497,255,1,0,0,0,3498,3502,5,260,0,0,3499,3502,5,243, + 0,0,3500,3502,3,302,151,0,3501,3498,1,0,0,0,3501,3499,1,0,0,0,3501, + 3500,1,0,0,0,3502,257,1,0,0,0,3503,3505,3,256,128,0,3504,3503,1, + 0,0,0,3504,3505,1,0,0,0,3505,3506,1,0,0,0,3506,3507,3,288,144,0, + 3507,259,1,0,0,0,3508,3511,3,262,131,0,3509,3511,3,266,133,0,3510, + 3508,1,0,0,0,3510,3509,1,0,0,0,3511,261,1,0,0,0,3512,3524,3,302, + 151,0,3513,3514,3,302,151,0,3514,3515,5,4,0,0,3515,3516,3,302,151, + 0,3516,3524,1,0,0,0,3517,3518,3,302,151,0,3518,3519,5,4,0,0,3519, + 3520,3,302,151,0,3520,3521,5,4,0,0,3521,3522,3,302,151,0,3522,3524, + 1,0,0,0,3523,3512,1,0,0,0,3523,3513,1,0,0,0,3523,3517,1,0,0,0,3524, + 263,1,0,0,0,3525,3537,3,302,151,0,3526,3527,3,302,151,0,3527,3528, + 5,4,0,0,3528,3529,3,302,151,0,3529,3537,1,0,0,0,3530,3531,3,302, + 151,0,3531,3532,5,4,0,0,3532,3533,3,302,151,0,3533,3534,5,4,0,0, + 3534,3535,3,302,151,0,3535,3537,1,0,0,0,3536,3525,1,0,0,0,3536,3526, + 1,0,0,0,3536,3530,1,0,0,0,3537,265,1,0,0,0,3538,3550,3,302,151,0, + 3539,3540,3,302,151,0,3540,3541,5,4,0,0,3541,3542,3,302,151,0,3542, + 3550,1,0,0,0,3543,3544,3,302,151,0,3544,3545,5,4,0,0,3545,3546,3, + 302,151,0,3546,3547,5,4,0,0,3547,3548,3,302,151,0,3548,3550,1,0, + 0,0,3549,3538,1,0,0,0,3549,3539,1,0,0,0,3549,3543,1,0,0,0,3550,267, + 1,0,0,0,3551,3563,3,302,151,0,3552,3553,3,302,151,0,3553,3554,5, + 4,0,0,3554,3555,3,302,151,0,3555,3563,1,0,0,0,3556,3557,3,302,151, + 0,3557,3558,5,4,0,0,3558,3559,3,302,151,0,3559,3560,5,4,0,0,3560, + 3561,3,302,151,0,3561,3563,1,0,0,0,3562,3551,1,0,0,0,3562,3552,1, + 0,0,0,3562,3556,1,0,0,0,3563,269,1,0,0,0,3564,3570,3,302,151,0,3565, + 3566,3,302,151,0,3566,3567,5,4,0,0,3567,3568,3,302,151,0,3568,3570, + 1,0,0,0,3569,3564,1,0,0,0,3569,3565,1,0,0,0,3570,271,1,0,0,0,3571, + 3577,3,302,151,0,3572,3573,3,302,151,0,3573,3574,5,4,0,0,3574,3575, + 3,302,151,0,3575,3577,1,0,0,0,3576,3571,1,0,0,0,3576,3572,1,0,0, + 0,3577,273,1,0,0,0,3578,3579,3,302,151,0,3579,275,1,0,0,0,3580,3581, + 3,302,151,0,3581,277,1,0,0,0,3582,3583,3,288,144,0,3583,279,1,0, + 0,0,3584,3585,3,288,144,0,3585,281,1,0,0,0,3586,3589,3,288,144,0, + 3587,3589,4,141,14,0,3588,3586,1,0,0,0,3588,3587,1,0,0,0,3589,283, + 1,0,0,0,3590,3591,3,288,144,0,3591,285,1,0,0,0,3592,3593,3,302,151, + 0,3593,287,1,0,0,0,3594,3599,3,302,151,0,3595,3596,5,4,0,0,3596, + 3598,3,302,151,0,3597,3595,1,0,0,0,3598,3601,1,0,0,0,3599,3597,1, + 0,0,0,3599,3600,1,0,0,0,3600,289,1,0,0,0,3601,3599,1,0,0,0,3602, + 3603,5,103,0,0,3603,3604,3,292,146,0,3604,3605,5,28,0,0,3605,3606, + 5,187,0,0,3606,3607,3,148,74,0,3607,291,1,0,0,0,3608,3609,7,34,0, + 0,3609,293,1,0,0,0,3610,3614,3,296,148,0,3611,3614,5,64,0,0,3612, + 3614,5,60,0,0,3613,3610,1,0,0,0,3613,3611,1,0,0,0,3613,3612,1,0, + 0,0,3614,295,1,0,0,0,3615,3621,3,302,151,0,3616,3617,5,289,0,0,3617, + 3621,3,302,151,0,3618,3619,5,235,0,0,3619,3621,3,302,151,0,3620, + 3615,1,0,0,0,3620,3616,1,0,0,0,3620,3618,1,0,0,0,3621,297,1,0,0, + 0,3622,3627,3,302,151,0,3623,3624,5,3,0,0,3624,3626,3,302,151,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,299,1,0,0,0,3629,3627,1,0,0,0,3630,3638,5,53,0,0,3631, + 3638,5,248,0,0,3632,3638,5,73,0,0,3633,3638,5,127,0,0,3634,3638, + 5,287,0,0,3635,3638,5,93,0,0,3636,3638,3,302,151,0,3637,3630,1,0, + 0,0,3637,3631,1,0,0,0,3637,3632,1,0,0,0,3637,3633,1,0,0,0,3637,3634, + 1,0,0,0,3637,3635,1,0,0,0,3637,3636,1,0,0,0,3638,301,1,0,0,0,3639, + 3645,5,332,0,0,3640,3645,5,334,0,0,3641,3645,3,308,154,0,3642,3645, + 5,335,0,0,3643,3645,5,333,0,0,3644,3639,1,0,0,0,3644,3640,1,0,0, + 0,3644,3641,1,0,0,0,3644,3642,1,0,0,0,3644,3643,1,0,0,0,3645,303, + 1,0,0,0,3646,3648,5,319,0,0,3647,3646,1,0,0,0,3647,3648,1,0,0,0, + 3648,3649,1,0,0,0,3649,3659,5,330,0,0,3650,3652,5,319,0,0,3651,3650, + 1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3659,5,331,0,0, + 3654,3656,5,319,0,0,3655,3654,1,0,0,0,3655,3656,1,0,0,0,3656,3657, + 1,0,0,0,3657,3659,5,329,0,0,3658,3647,1,0,0,0,3658,3651,1,0,0,0, + 3658,3655,1,0,0,0,3659,305,1,0,0,0,3660,3663,3,302,151,0,3661,3663, + 3,174,87,0,3662,3660,1,0,0,0,3662,3661,1,0,0,0,3663,307,1,0,0,0, + 3664,3665,7,35,0,0,3665,309,1,0,0,0,476,313,322,326,330,334,338, + 351,358,362,366,372,376,383,388,392,398,402,421,427,431,435,439, + 447,451,454,459,465,474,480,484,490,497,505,517,526,535,541,552, + 560,568,575,585,592,600,615,650,653,656,659,665,670,677,683,687, + 691,699,705,709,713,727,735,754,779,782,789,796,805,809,816,824, + 833,839,844,848,856,861,870,876,883,892,898,902,908,915,920,933, + 938,950,954,960,969,974,980,1008,1014,1016,1022,1028,1030,1038,1040, + 1050,1052,1067,1072,1079,1089,1095,1097,1105,1107,1132,1135,1139, + 1143,1161,1164,1175,1178,1194,1204,1208,1214,1217,1226,1238,1241, + 1251,1255,1261,1268,1273,1279,1283,1287,1293,1304,1313,1323,1326, + 1331,1333,1340,1346,1348,1352,1362,1368,1371,1373,1385,1392,1396, + 1399,1403,1407,1414,1423,1426,1429,1434,1437,1445,1448,1457,1464, + 1472,1483,1486,1496,1499,1510,1515,1523,1526,1530,1534,1543,1548, + 1557,1560,1563,1567,1578,1581,1584,1591,1594,1613,1617,1621,1625, + 1629,1633,1635,1646,1651,1660,1669,1672,1678,1686,1695,1698,1706, + 1709,1712,1717,1720,1732,1735,1743,1748,1752,1754,1756,1771,1773, + 1784,1805,1815,1826,1830,1832,1840,1851,1862,1869,1882,1888,1914, + 1929,1934,1938,1948,1954,1960,1968,1973,1980,1982,1988,1994,1998, + 2003,2012,2017,2031,2041,2044,2053,2058,2063,2065,2074,2077,2085, + 2088,2095,2100,2107,2111,2113,2121,2131,2137,2139,2146,2150,2152, + 2159,2163,2165,2167,2176,2187,2191,2201,2211,2215,2223,2225,2238, + 2246,2255,2261,2269,2275,2279,2284,2289,2295,2309,2311,2341,2352, + 2360,2365,2370,2383,2389,2392,2399,2404,2407,2410,2415,2422,2425, + 2434,2437,2441,2444,2447,2462,2465,2484,2488,2496,2500,2525,2528, + 2537,2543,2549,2555,2564,2567,2570,2589,2598,2620,2623,2633,2642, + 2648,2654,2665,2667,2672,2679,2681,2687,2693,2704,2713,2718,2723, + 2725,2727,2733,2735,2745,2754,2756,2762,2764,2767,2777,2779,2787, + 2795,2798,2803,2808,2820,2824,2828,2831,2833,2841,2844,2854,2862, + 2868,2870,2878,2888,2894,2908,2917,2924,2929,2936,2941,2964,2969, + 2971,2978,2982,2989,2993,3009,3024,3031,3040,3050,3055,3064,3069, + 3077,3085,3088,3094,3097,3104,3112,3115,3123,3126,3152,3163,3168, + 3175,3177,3190,3205,3209,3213,3217,3223,3227,3231,3235,3237,3247, + 3254,3263,3270,3277,3284,3293,3305,3308,3319,3322,3327,3337,3353, + 3367,3370,3379,3382,3394,3398,3413,3417,3423,3433,3445,3454,3475, + 3481,3488,3496,3501,3504,3510,3523,3536,3549,3562,3569,3576,3588, + 3599,3613,3620,3627,3637,3644,3647,3651,3655,3658,3662 ]; private static __ATN: antlr.ATN; @@ -20897,7 +20953,6 @@ export class DropFunctionContext extends StatementContext { } } export class UpdateContext extends StatementContext { - public _where?: BooleanExpressionContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -20920,11 +20975,8 @@ export class UpdateContext extends StatementContext { return this.getRuleContext(i, UpdateAssignmentContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterUpdate) { @@ -20947,7 +20999,6 @@ export class UpdateContext extends StatementContext { export class TableExecuteContext extends StatementContext { public _tableName?: TableRefContext; public _procedureName?: FunctionNameContext; - public _where?: BooleanExpressionContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -20967,11 +21018,8 @@ export class TableExecuteContext extends StatementContext { public functionName(): FunctionNameContext { return this.getRuleContext(0, FunctionNameContext)!; } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public callArgument(): CallArgumentContext[]; public callArgument(i: number): CallArgumentContext | null; @@ -21014,11 +21062,8 @@ export class DeleteContext extends StatementContext { public tableRef(): TableRefContext { return this.getRuleContext(0, TableRefContext)!; } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterDelete) { @@ -23092,8 +23137,6 @@ export class SortItemContext extends antlr.ParserRuleContext { export class QuerySpecificationContext extends antlr.ParserRuleContext { - public _where?: BooleanExpressionContext; - public _having?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -23124,8 +23167,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationContext); } - public KW_WHERE(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_WHERE, 0); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public KW_GROUP(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_GROUP, 0); @@ -23136,8 +23179,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public groupBy(): GroupByContext | null { return this.getRuleContext(0, GroupByContext); } - public KW_HAVING(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_HAVING, 0); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } public KW_WINDOW(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_WINDOW, 0); @@ -23151,15 +23194,6 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, WindowDefinitionContext); } - public booleanExpression(): BooleanExpressionContext[]; - public booleanExpression(i: number): BooleanExpressionContext | null; - public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(BooleanExpressionContext); - } - - return this.getRuleContext(i, BooleanExpressionContext); - } public override get ruleIndex(): number { return TrinoSqlParser.RULE_querySpecification; } @@ -23183,6 +23217,74 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } +export class WhereClauseContext extends antlr.ParserRuleContext { + public _where?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_WHERE(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.KW_WHERE, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_whereClause; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterWhereClause) { + listener.enterWhereClause(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitWhereClause) { + listener.exitWhereClause(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitWhereClause) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class HavingClauseContext extends antlr.ParserRuleContext { + public _having?: BooleanExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_HAVING(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.KW_HAVING, 0)!; + } + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_havingClause; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23222,6 +23324,42 @@ export class GroupByContext extends antlr.ParserRuleContext { } +export class PartitionByContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_partitionBy; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterPartitionBy) { + listener.enterPartitionBy(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitPartitionBy) { + listener.exitPartitionBy(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitPartitionBy) { + return visitor.visitPartitionBy(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupingElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23477,8 +23615,6 @@ export class WindowDefinitionContext extends antlr.ParserRuleContext { export class WindowSpecificationContext extends antlr.ParserRuleContext { public _existingWindowName?: IdentifierContext; - public _expression?: ExpressionContext; - public _partition: ExpressionContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -23494,6 +23630,9 @@ export class WindowSpecificationContext extends antlr.ParserRuleContext { return this.getToken(TrinoSqlParser.KW_BY, i); } } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } @@ -23512,15 +23651,6 @@ export class WindowSpecificationContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public override get ruleIndex(): number { return TrinoSqlParser.RULE_windowSpecification; } @@ -24065,8 +24195,6 @@ export class ListAggCountIndicationContext extends antlr.ParserRuleContext { export class PatternRecognitionContext extends antlr.ParserRuleContext { - public _expression?: ExpressionContext; - public _partition: ExpressionContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -24106,6 +24234,9 @@ export class PatternRecognitionContext extends antlr.ParserRuleContext { return this.getToken(TrinoSqlParser.KW_BY, i); } } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } @@ -24157,15 +24288,6 @@ export class PatternRecognitionContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public KW_INITIAL(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_INITIAL, 0); } @@ -25494,14 +25616,8 @@ export class TableArgumentContext extends antlr.ParserRuleContext { public KW_ORDER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ORDER, 0); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); } public sortItem(): SortItemContext[]; public sortItem(i: number): SortItemContext | null; @@ -25512,6 +25628,9 @@ export class TableArgumentContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SortItemContext); } + public partitionBy(): PartitionByContext | null { + return this.getRuleContext(0, PartitionByContext); + } public override get ruleIndex(): number { return TrinoSqlParser.RULE_tableArgument; } @@ -27186,8 +27305,8 @@ export class ColumnReferenceContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterColumnReference) { @@ -29329,11 +29448,8 @@ export class FilterContext extends antlr.ParserRuleContext { public KW_FILTER(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.KW_FILTER, 0)!; } - public KW_WHERE(): antlr.TerminalNode { - return this.getToken(TrinoSqlParser.KW_WHERE, 0)!; - } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } public override get ruleIndex(): number { return TrinoSqlParser.RULE_filter; @@ -32399,6 +32515,36 @@ export class ColumnRefContext extends antlr.ParserRuleContext { } +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 override get ruleIndex(): number { + return TrinoSqlParser.RULE_columnName; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterColumnName) { + listener.enterColumnName(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitColumnName) { + listener.exitColumnName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitColumnName) { + return visitor.visitColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index c5b6cda23..466197c9a 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -123,7 +123,10 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { WhereClauseContext } from "./TrinoSqlParser.js"; +import { HavingClauseContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; +import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; import { CubeContext } from "./TrinoSqlParser.js"; @@ -356,6 +359,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; import { QueryPeriodContext } from "./TrinoSqlParser.js"; @@ -1171,12 +1175,30 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitQuerySpecification?: (ctx: QuerySpecificationContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.whereClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereClause?: (ctx: WhereClauseContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.havingClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree * @return the visitor result */ visitGroupBy?: (ctx: GroupByContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.partitionBy`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPartitionBy?: (ctx: PartitionByContext) => Result; /** * Visit a parse tree produced by the `singleGroupingSet` * labeled alternative in `TrinoSqlParser.groupingElement`. @@ -2716,6 +2738,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitColumnRef?: (ctx: ColumnRefContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.columnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnName?: (ctx: ColumnNameContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index ccf36e72b..db0e4f88d 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -9,17 +9,27 @@ import { ParseTreeListener, PredictionMode, ANTLRErrorListener, + Parser, } from 'antlr4ng'; import { CandidatesCollection, CodeCompletionCore } from 'antlr4-c3'; import { SQLParserBase } from '../../lib/SQLParserBase'; import { findCaretTokenIndex } from './findCaretTokenIndex'; import { ctxToText, tokenToWord, WordRange, TextSlice } from './textAndWord'; -import { CaretPosition, LOCALE_TYPE, Suggestions, SyntaxSuggestion } from './types'; +import { + CaretPosition, + LOCALE_TYPE, + SemanticCollectOptions, + Suggestions, + SyntaxSuggestion, +} from './types'; import { ParseError, ErrorListener } from './parseErrorListener'; import { ErrorStrategy } from './errorStrategy'; import type { SplitListener } from './splitListener'; import type { EntityCollector } from './entityCollector'; import { EntityContext } from './entityCollector'; +import SemanticContextCollector from './semanticContextCollector'; + +export const SQL_SPLIT_SYMBOL_TEXT = ';'; /** * Basic SQL class, every sql needs extends it. @@ -63,15 +73,13 @@ export abstract class BasicSQL< /** * Convert candidates to suggestions * @param candidates candidate list - * @param allTokens all tokens from input + * @param allTokens slice all tokens from input by tokenIndexOffset * @param caretTokenIndex tokenIndex of caretPosition - * @param tokenIndexOffset offset of the tokenIndex in the candidates compared to the tokenIndex in allTokens */ protected abstract processCandidates( candidates: CandidatesCollection, allTokens: Token[], - caretTokenIndex: number, - tokenIndexOffset: number + caretTokenIndex: number ): Suggestions; /** @@ -95,6 +103,16 @@ export abstract class BasicSQL< public locale: LOCALE_TYPE = 'en_US'; + /** + * Get a new semanticContextCollector instance. + */ + protected abstract createSemanticContextCollector( + input: string, + caretPosition: CaretPosition, + allTokens: Token[], + options?: SemanticCollectOptions + ): SemanticContextCollector; + /** * Create an antlr4 lexer from input. * @param input string @@ -247,7 +265,6 @@ export abstract class BasicSQL< return null; } const splitListener = this.splitListener; - this.listen(splitListener, this._parseTree); const res = splitListener.statementsContext @@ -260,35 +277,102 @@ export abstract class BasicSQL< } /** - * Get a minimum boundary parser near tokenIndex. - * @param input source string. - * @param tokenIndex start from which index to minimize the boundary. - * @param originParseTree the parse tree need to be minimized, default value is the result of parsing `input`. - * @returns minimum parser info + * Get the smaller range of input + * @param input string + * @param allTokens all tokens from input + * @param tokenIndexOffset offset of the tokenIndex in the range of input + * @param caretTokenIndex tokenIndex of caretPosition + * @returns inputSlice: string, caretTokenIndex: number */ - public getMinimumParserInfo( + private splitInputBySymbolText( input: string, - tokenIndex: number, - originParseTree?: ParserRuleContext | null - ) { - if (arguments.length <= 2) { - this.parseWithCache(input); - originParseTree = this._parseTree; + allTokens: Token[], + tokenIndexOffset: number, + caretTokenIndex: number + ): { inputSlice: string; allTokens: Token[]; caretTokenIndex: number } { + const tokens = allTokens.slice(tokenIndexOffset); + /** + * Set startToken + */ + let startToken: Token | null = null; + for (let tokenIndex = caretTokenIndex - tokenIndexOffset; tokenIndex >= 0; tokenIndex--) { + const token = tokens[tokenIndex]; + if (token?.text === SQL_SPLIT_SYMBOL_TEXT) { + startToken = tokens[tokenIndex + 1]; + break; + } + } + if (startToken === null) { + startToken = tokens[0]; + } + + /** + * Set stopToken + */ + let stopToken: Token | null = null; + for ( + let tokenIndex = caretTokenIndex - tokenIndexOffset; + tokenIndex < tokens.length; + tokenIndex++ + ) { + const token = tokens[tokenIndex]; + if (token?.text === SQL_SPLIT_SYMBOL_TEXT) { + stopToken = token; + break; + } } + if (stopToken === null) { + stopToken = tokens[tokens.length - 1]; + } + + const indexOffset = tokens[0].start; + let startIndex = startToken.start - indexOffset; + let stopIndex = stopToken.stop + 1 - indexOffset; + + /** + * Save offset of the tokenIndex in the range of input + * compared to the tokenIndex in the whole input + */ + const _tokenIndexOffset = startToken.tokenIndex; + const _caretTokenIndex = caretTokenIndex - _tokenIndexOffset; + + /** + * Get the smaller range of _input + */ + const _input = input.slice(startIndex, stopIndex); + + return { + inputSlice: _input, + allTokens: allTokens.slice(_tokenIndexOffset), + caretTokenIndex: _caretTokenIndex, + }; + } + /** + * Get the minimum input string that can be parsed successfully by c3. + * @param input source string + * @param caretTokenIndex tokenIndex of caretPosition + * @param originParseTree origin parseTree + * @returns MinimumInputInfo + */ + public getMinimumInputInfo( + input: string, + caretTokenIndex: number, + originParseTree: ParserRuleContext | undefined + ): { input: string; tokenIndexOffset: number; statementCount: number } | null { if (!originParseTree || !input?.length) return null; + let inputSlice = input; - const splitListener = this.splitListener; /** * Split sql by statement. * Try to collect candidates in as small a range as possible. */ + const splitListener = this.splitListener; this.listen(splitListener, originParseTree); + const statementCount = splitListener.statementsContext?.length; const statementsContext = splitListener.statementsContext; let tokenIndexOffset = 0; - let sqlParserIns = this._parser; - let parseTree = originParseTree; // If there are multiple statements. if (statementCount > 1) { @@ -313,14 +397,14 @@ export abstract class BasicSQL< const isNextCtxValid = index === statementCount - 1 || !statementsContext[index + 1]?.exception; - if (ctx.stop && ctx.stop.tokenIndex < tokenIndex && isPrevCtxValid) { + if (ctx.stop && ctx.stop.tokenIndex < caretTokenIndex && isPrevCtxValid) { startStatement = ctx; } if ( ctx.start && !stopStatement && - ctx.start.tokenIndex > tokenIndex && + ctx.start.tokenIndex > caretTokenIndex && isNextCtxValid ) { stopStatement = ctx; @@ -330,41 +414,64 @@ export abstract class BasicSQL< // A boundary consisting of the index of the input. const startIndex = startStatement?.start?.start ?? 0; - const stopIndex = stopStatement?.stop?.stop ?? input.length - 1; + const stopIndex = stopStatement?.stop?.stop ?? inputSlice.length - 1; /** * Save offset of the tokenIndex in the range of input * compared to the tokenIndex in the whole input */ tokenIndexOffset = startStatement?.start?.tokenIndex ?? 0; - tokenIndex = tokenIndex - tokenIndexOffset; + inputSlice = inputSlice.slice(startIndex, stopIndex); + } - /** - * Reparse the input fragment, - * and c3 will collect candidates in the newly generated parseTree. - */ - const inputSlice = input.slice(startIndex, stopIndex); + return { + input: inputSlice, + tokenIndexOffset, + statementCount, + }; + } - const lexer = this.createLexer(inputSlice); - lexer.removeErrorListeners(); - const tokenStream = new CommonTokenStream(lexer); - tokenStream.fill(); + /** + * Get a minimum boundary parser near caretTokenIndex. + * @param input source string. + * @param caretTokenIndex start from which index to minimize the boundary. + * @param originParseTree the parse tree need to be minimized, default value is the result of parsing `input`. + * @returns minimum parser info + */ + public getMinimumParserInfo( + input: string, + caretTokenIndex: number, + originParseTree: ParserRuleContext | undefined + ): { + parser: Parser; + parseTree: ParserRuleContext; + tokenIndexOffset: number; + newTokenIndex: number; + } | null { + if (!originParseTree || !input?.length) return null; - const parser = this.createParserFromTokenStream(tokenStream); - parser.interpreter.predictionMode = PredictionMode.SLL; - parser.removeErrorListeners(); - parser.buildParseTrees = true; - parser.errorHandler = new ErrorStrategy(); + const inputInfo = this.getMinimumInputInfo(input, caretTokenIndex, originParseTree); + if (!inputInfo) return null; + const { input: inputSlice, tokenIndexOffset } = inputInfo; + caretTokenIndex = caretTokenIndex - tokenIndexOffset; + + let sqlParserIns = this._parser; + let parseTree = originParseTree; - sqlParserIns = parser; - parseTree = parser.program(); + /** + * Reparse the input fragment, + * and c3 will collect candidates in the newly generated parseTree when input changed. + */ + if (inputSlice !== input) { + sqlParserIns = this.createParser(inputSlice); + parseTree = sqlParserIns.program(); } return { parser: sqlParserIns, parseTree, tokenIndexOffset, - newTokenIndex: tokenIndex, + newTokenIndex: caretTokenIndex, }; } @@ -379,34 +486,58 @@ export abstract class BasicSQL< caretPosition: CaretPosition ): Suggestions | null { this.parseWithCache(input); - if (!this._parseTree) return null; - const allTokens = this.getAllTokens(input); + let allTokens = this.getAllTokens(input); let caretTokenIndex = findCaretTokenIndex(caretPosition, allTokens); - if (!caretTokenIndex && caretTokenIndex !== 0) return null; - const minimumParser = this.getMinimumParserInfo(input, caretTokenIndex); + const inputInfo = this.getMinimumInputInfo(input, caretTokenIndex, this._parseTree); + if (!inputInfo) return null; + const { input: _input, tokenIndexOffset, statementCount } = inputInfo; + let inputSlice = _input; + + /** + * Split the inputSlice by separator to get the smaller range of inputSlice. + */ + if (inputSlice.includes(SQL_SPLIT_SYMBOL_TEXT)) { + const { + inputSlice: _inputSlice, + allTokens: _allTokens, + caretTokenIndex: _caretTokenIndex, + } = this.splitInputBySymbolText( + inputSlice, + allTokens, + tokenIndexOffset, + caretTokenIndex + ); + + allTokens = _allTokens; + caretTokenIndex = _caretTokenIndex; + inputSlice = _inputSlice; + } else { + if (statementCount > 1) { + caretTokenIndex = caretTokenIndex - tokenIndexOffset; + } + } - if (!minimumParser) return null; + let sqlParserIns = this._parser; + let parseTree = this._parseTree; + + /** + * Reparse the input fragment, + * and c3 will collect candidates in the newly generated parseTree when input changed. + */ + if (inputSlice !== input) { + sqlParserIns = this.createParser(inputSlice); + parseTree = sqlParserIns.program(); + } - const { - parser: sqlParserIns, - tokenIndexOffset, - newTokenIndex, - parseTree: c3Context, - } = minimumParser; const core = new CodeCompletionCore(sqlParserIns); core.preferredRules = this.preferredRules; - const candidates = core.collectCandidates(newTokenIndex, c3Context); - const originalSuggestions = this.processCandidates( - candidates, - allTokens, - newTokenIndex, - tokenIndexOffset - ); + const candidates = core.collectCandidates(caretTokenIndex, parseTree); + const originalSuggestions = this.processCandidates(candidates, allTokens, caretTokenIndex); const syntaxSuggestions: SyntaxSuggestion[] = originalSuggestions.syntax.map( (syntaxCtx) => { @@ -452,4 +583,29 @@ export abstract class BasicSQL< return collectListener.getEntities(); } + + /** + * Get semantic context infos + * @param input source string + * @param caretPosition caret position, such as cursor position + * @param options semantic context options + * @returns analyzed semantic context + */ + public getSemanticContextAtCaretPosition( + input: string, + caretPosition: CaretPosition, + options?: SemanticCollectOptions + ) { + const allTokens = this.getAllTokens(input); + const parseTree = this.parseWithCache(input); + const statementContextListener = this.createSemanticContextCollector( + input, + caretPosition, + allTokens, + options + ); + this.listen(statementContextListener, parseTree); + + return statementContextListener.semanticContext; + } } diff --git a/src/parser/common/semanticContextCollector.ts b/src/parser/common/semanticContextCollector.ts new file mode 100644 index 000000000..07b329b75 --- /dev/null +++ b/src/parser/common/semanticContextCollector.ts @@ -0,0 +1,267 @@ +import { ErrorNode, ParserRuleContext, TerminalNode, Token } from 'antlr4ng'; +import { findCaretTokenIndex } from '../common/findCaretTokenIndex'; +import { + CaretPosition, + SemanticCollectOptions, + SemanticContext, + SqlSplitStrategy, +} from '../common/types'; +import { SQL_SPLIT_SYMBOL_TEXT } from './basicSQL'; + +abstract class SemanticContextCollector { + constructor( + _input: string, + caretPosition: CaretPosition, + allTokens: Token[], + options?: SemanticCollectOptions + ) { + // If caretPosition token is whiteSpace, tokenIndex may be undefined. + const tokenIndex = findCaretTokenIndex(caretPosition, allTokens); + + if (tokenIndex !== undefined) { + this._tokenIndex = tokenIndex; + } + this._allTokens = allTokens; + this.options = { + ...this.options, + ...options, + }; + + if (allTokens?.length) { + let i = tokenIndex ? tokenIndex - 1 : allTokens.length - 1; + /** + * Link to @case4 and @case5 + * Find the previous unhidden token. + * If can't find tokenIndex or current token is whiteSpace at caretPosition, + * prevTokenIndex is useful to help us determine if it is beginning of statement. + */ + while (i >= 0) { + if ( + allTokens[i].channel !== Token.HIDDEN_CHANNEL && + (allTokens[i].line < caretPosition.lineNumber || + (allTokens[i].line === caretPosition.lineNumber && + allTokens[i].column < caretPosition.column)) + ) { + this._prevTokenIndex = allTokens[i].tokenIndex; + break; + } + i--; + } + + /** + * We can directly conclude beginning of statement semantics when current token is + * the first token of tokenStream or the previous token is semicolon + */ + if ( + tokenIndex === 0 || + i === -1 || + (this._prevTokenIndex && + this._allTokens[this._prevTokenIndex].text === SQL_SPLIT_SYMBOL_TEXT) + ) { + this._isStatementBeginning = true; + } + } + } + + public readonly options: SemanticCollectOptions = { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + }; + + private _tokenIndex: number; + private _allTokens: Token[] = []; + + /** + * If current caret position is in a beginning of statement semantics, it needs to follow some cases: + * @case1 there is no statement node with an error before the current statement in the parse tree; + * + * @case2 if it is an uncomplete keyword, it will be parsed as an `ErrorNode` + * and need be a direct child node of `program`; + * + * @case3 if it is a complete keyword, the parsed TerminalNode or ErrorNode should be + * the first leaf node of current statement rule; + * + * @case4 if it is whiteSpace in caret position, we can't visit it in antlr4 listener, + * so we find the first unhidden token before the whiteSpace token, and the unhidden token + * should be the last leaf node of statement its belongs to; + * + * @case5 if the previous token is split symbol like `;`, ignore case1 and forcefully judged as beginning of statement. + */ + private _isStatementBeginning: boolean = false; + + /** + * Prev tokenIndex that not white space before current tokenIndex or caret position + */ + private _prevTokenIndex: number; + + public get semanticContext(): SemanticContext { + return { + isStatementBeginning: this._isStatementBeginning, + }; + } + + abstract getWhiteSpaceRuleType(): number; + + abstract getStatementRuleType(): number; + + private prevStatementHasError(node: TerminalNode | ErrorNode | ParserRuleContext) { + let parent = node.parent as ParserRuleContext; + if (!parent) return false; + + const currentNodeIndex = parent.children!.findIndex((child) => child === node); + if (currentNodeIndex <= 0) return false; + + for (let i = currentNodeIndex - 1; i >= 0; i--) { + const prevNode = parent.children![i]; + if ( + prevNode instanceof ErrorNode || + (prevNode instanceof ParserRuleContext && prevNode.exception !== null) + ) + return true; + } + + return false; + } + + /** + * Most root rule is `program`. + */ + private isRootRule(node: TerminalNode | ErrorNode | ParserRuleContext) { + return node instanceof ParserRuleContext && node?.parent === null; + } + + /** + * link to @case4 + * It should be called in each language's own `enterStatement`. + */ + protected visitStatement(ctx: ParserRuleContext) { + if (this.options.sqlSplitStrategy === SqlSplitStrategy.STRICT) return; + + const isWhiteSpaceToken = + this._tokenIndex === undefined || + this._allTokens[this._tokenIndex]?.type === this.getWhiteSpaceRuleType() || + // PostgreSQL whiteSpace not inlcudes '\n' symbol + this._allTokens[this._tokenIndex]?.text === '\n'; + + const isPrevTokenEndOfStatement = + this._prevTokenIndex && ctx.stop?.tokenIndex === this._prevTokenIndex; + + if (isWhiteSpaceToken && isPrevTokenEndOfStatement && ctx.exception === null) { + this._isStatementBeginning = !this.prevStatementHasError(ctx) + ? true + : this._isStatementBeginning; + } + } + + /** + * Uncomplete keyword will be error node + */ + visitErrorNode(node: ErrorNode): void { + if ( + node.symbol.tokenIndex !== this._tokenIndex || + this._isStatementBeginning || + this.options.sqlSplitStrategy === SqlSplitStrategy.STRICT + ) + return; + + let parent: ParserRuleContext | null = node.parent as ParserRuleContext; + let currentNode: TerminalNode | ParserRuleContext = node; + + /** + * Link to @case2 + * The error node is a direct child node of the program node + */ + if (this.isRootRule(parent)) { + this._isStatementBeginning = !this.prevStatementHasError(currentNode); + return; + } + + /** + * Link to @case3 + * Error node must be the first leaf node of the statement parse tree. + **/ + while (parent !== null && parent.ruleIndex !== this.getStatementRuleType()) { + if (parent.children?.[0] !== currentNode) { + this._isStatementBeginning = false; + return; + } + + currentNode = parent; + parent = currentNode.parent; + } + + let isStatementBeginning = true; + + /** + * Link to @case1 + * Previous statement must have no exception + */ + if (parent?.ruleIndex === this.getStatementRuleType()) { + const programRule = parent.parent; + const currentStatementRuleIndex = + programRule?.children?.findIndex((node) => node === parent) || -1; + if (currentStatementRuleIndex > 0) { + /** + * When you typed a keyword and doesn't match any rule, you will get a EOF error, + * For example, just typed 'CREATE', 'INSERT'. + */ + const isStatementEOF = parent.exception?.offendingToken?.text === ''; + isStatementBeginning = + this.prevStatementHasError(parent) && !isStatementEOF + ? false + : isStatementBeginning; + } + } + + this._isStatementBeginning = isStatementBeginning; + } + + visitTerminal(node: TerminalNode): void { + if ( + node.symbol.tokenIndex !== this._tokenIndex || + this._isStatementBeginning || + this.options.sqlSplitStrategy === SqlSplitStrategy.STRICT + ) + return; + + let currentNode: TerminalNode | ParserRuleContext = node; + let parent = node.parent as ParserRuleContext | null; + + /** + * Link to @case3 + * Current terminal node must be the first leaf node of the statement parse tree. + **/ + while (parent !== null && parent.ruleIndex !== this.getStatementRuleType()) { + if (parent.children?.[0] !== currentNode) { + this._isStatementBeginning = false; + return; + } + + currentNode = parent; + parent = currentNode.parent!; + } + + let isStatementBeginning = true; + + /** + * Link to @case1 + * Previous statement must have no exception + */ + if (parent?.ruleIndex === this.getStatementRuleType()) { + const programRule = parent.parent; + const currentStatementRuleIndex = + programRule?.children?.findIndex((node) => node === parent) || -1; + if (currentStatementRuleIndex > 0) { + isStatementBeginning = this.prevStatementHasError(parent) + ? false + : isStatementBeginning; + } + } + + this._isStatementBeginning = isStatementBeginning; + } + + enterEveryRule(_node: ParserRuleContext): void {} + exitEveryRule(_node: ParserRuleContext): void {} +} + +export default SemanticContextCollector; diff --git a/src/parser/common/tokenUtils.ts b/src/parser/common/tokenUtils.ts new file mode 100644 index 000000000..2f9394da3 --- /dev/null +++ b/src/parser/common/tokenUtils.ts @@ -0,0 +1,52 @@ +/** + * Utility function for processing SQL tokens and generating keyword suggestions + */ + +import { Parser } from 'antlr4ng'; +import { CandidatesCollection } from 'antlr4-c3'; + +/** + * Process token candidates and generate a list of keyword suggestions + * @param parser SQL parser instance + * @param tokens token candidates + * @returns list of keyword suggestions + */ +export function processTokenCandidates( + parser: Parser, + tokens: CandidatesCollection['tokens'] +): string[] { + const keywords: string[] = []; + + const cleanDisplayName = (displayName: string | null): string => { + return displayName && displayName.startsWith("'") && displayName.endsWith("'") + ? displayName.slice(1, -1) + : displayName || ''; + }; + + const isKeywordToken = (token: number): boolean => { + const symbolicName = parser.vocabulary.getSymbolicName(token); + return Boolean(symbolicName?.startsWith('KW_')); + }; + + for (const [token, followSets] of tokens) { + const displayName = parser.vocabulary.getDisplayName(token); + + if (!displayName || !isKeywordToken(token)) continue; + + const keyword = cleanDisplayName(displayName); + keywords.push(keyword); + + if (followSets.length && followSets.every((s) => isKeywordToken(s))) { + const followKeywords = followSets + .map((s) => cleanDisplayName(parser.vocabulary.getDisplayName(s))) + .filter(Boolean); + + if (followKeywords.length) { + const combinedKeyword = [keyword, ...followKeywords].join(' '); + keywords.push(combinedKeyword); + } + } + } + + return keywords; +} diff --git a/src/parser/common/types.ts b/src/parser/common/types.ts index ffb7bdb65..8d2d2e67f 100644 --- a/src/parser/common/types.ts +++ b/src/parser/common/types.ts @@ -69,3 +69,31 @@ export interface Suggestions { } export type LOCALE_TYPE = 'zh_CN' | 'en_US'; + +export interface SemanticContext { + isStatementBeginning: boolean; +} + +export enum SqlSplitStrategy { + /** Only end the statement with semicolon symbol */ + STRICT, + /** Based on parse tree to split statements */ + LOOSE, +} + +export interface SemanticCollectOptions { + /** + * `sqlSplitStrategy` will affects the result of `isStatementBeginning`; + * + * For example: + * + * The sql is "select id from t1 create\" + * + * - `SqlSplitStrategy.STRICT`: split symbol `;` is missing after select statement so that it considerd as one statement, and `isStatementBeginning` is false + * + * - `SqlSplitStrategy.LOOSE`: in parse tree, it will parse to "select id from t1" and "create" two single statement, so `isStatementBeginning` is true + * + * @default SqlSplitStrategy.STRICT + */ + sqlSplitStrategy?: SqlSplitStrategy; +} diff --git a/src/parser/flink/flinkErrorListener.ts b/src/parser/flink/flinkErrorListener.ts index bc068aa23..5278cb431 100644 --- a/src/parser/flink/flinkErrorListener.ts +++ b/src/parser/flink/flinkErrorListener.ts @@ -14,8 +14,12 @@ export class FlinkErrorListener extends ParseErrorListener { [FlinkSqlParser.RULE_viewPath, 'view'], [FlinkSqlParser.RULE_viewPathCreate, 'view'], [FlinkSqlParser.RULE_functionName, 'function'], + [FlinkSqlParser.RULE_functionNameWithParams, 'function'], + [FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName, 'function'], + [FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName, 'function'], [FlinkSqlParser.RULE_functionNameCreate, 'function'], [FlinkSqlParser.RULE_columnName, 'column'], + [FlinkSqlParser.RULE_columnNamePath, 'column'], [FlinkSqlParser.RULE_columnNameCreate, 'column'], ]); @@ -59,9 +63,15 @@ export class FlinkErrorListener extends ParseErrorListener { case FlinkSqlParser.RULE_tablePath: case FlinkSqlParser.RULE_viewPath: case FlinkSqlParser.RULE_functionName: + case FlinkSqlParser.RULE_functionNameWithParams: + case FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName: + case FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName: case FlinkSqlParser.RULE_columnName: + case FlinkSqlParser.RULE_columnNamePath: case FlinkSqlParser.RULE_catalogPath: { - result.push(`{existing}${name}`); + if (!result.includes(`{existing}${name}`)) { + result.push(`{existing}${name}`); + } break; } case FlinkSqlParser.RULE_databasePathCreate: @@ -70,7 +80,9 @@ export class FlinkErrorListener extends ParseErrorListener { case FlinkSqlParser.RULE_viewPathCreate: case FlinkSqlParser.RULE_columnNameCreate: case FlinkSqlParser.RULE_catalogPathCreate: { - result.push(`{new}${name}`); + if (!result.includes(`{new}${name}`)) { + result.push(`{new}${name}`); + } break; } } diff --git a/src/parser/flink/flinkSemanticContextCollector.ts b/src/parser/flink/flinkSemanticContextCollector.ts new file mode 100644 index 000000000..d4d63553d --- /dev/null +++ b/src/parser/flink/flinkSemanticContextCollector.ts @@ -0,0 +1,20 @@ +import { FlinkSqlParserListener } from '../../lib'; +import { FlinkSqlParser, SingleStatementContext } from '../../lib/flink/FlinkSqlParser'; +import SemanticContextCollector from '../common/semanticContextCollector'; + +class FlinkSemanticContextCollector + extends SemanticContextCollector + implements FlinkSqlParserListener +{ + override getWhiteSpaceRuleType(): number { + return FlinkSqlParser.WHITE_SPACE; + } + override getStatementRuleType(): number { + return FlinkSqlParser.RULE_singleStatement; + } + enterSingleStatement(ctx: SingleStatementContext) { + this.visitStatement(ctx); + } +} + +export { FlinkSemanticContextCollector }; diff --git a/src/parser/flink/index.ts b/src/parser/flink/index.ts index 86c278188..6bb80a28f 100644 --- a/src/parser/flink/index.ts +++ b/src/parser/flink/index.ts @@ -1,15 +1,22 @@ import { CandidatesCollection } from 'antlr4-c3'; import { CharStream, CommonTokenStream, Token } from 'antlr4ng'; - +import { processTokenCandidates } from '../common/tokenUtils'; import { FlinkSqlLexer } from '../../lib/flink/FlinkSqlLexer'; import { FlinkSqlParser, ProgramContext } from '../../lib/flink/FlinkSqlParser'; +import { + CaretPosition, + EntityContextType, + SemanticCollectOptions, + Suggestions, + SyntaxSuggestion, +} from '../common/types'; import { BasicSQL } from '../common/basicSQL'; import { StmtContextType } from '../common/entityCollector'; import { ErrorListener } from '../common/parseErrorListener'; -import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/types'; import { FlinkEntityCollector } from './flinkEntityCollector'; import { FlinkErrorListener } from './flinkErrorListener'; import { FlinkSqlSplitListener } from './flinkSplitListener'; +import { FlinkSemanticContextCollector } from './flinkSemanticContextCollector'; export { FlinkEntityCollector, FlinkSqlSplitListener }; @@ -36,6 +43,7 @@ export class FlinkSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (let candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); + let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { case FlinkSqlParser.RULE_catalogPath: { @@ -116,6 +129,19 @@ export class FlinkSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (let candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -107,6 +120,26 @@ export class HiveSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (let candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -104,6 +116,18 @@ export class ImpalaSQL extends BasicSQL { return new MySqlEntityCollector(input, allTokens, caretTokenIndex); } + protected createSemanticContextCollector( + input: string, + caretPosition: CaretPosition, + allTokens: Token[], + options?: SemanticCollectOptions + ) { + return new MySqlSemanticContextCollector(input, caretPosition, allTokens, options); + } + protected processCandidates( candidates: CandidatesCollection, allTokens: Token[], - caretTokenIndex: number, - tokenIndexOffset: number + caretTokenIndex: number ): Suggestions { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (const candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -118,17 +129,8 @@ export class MySQL extends BasicSQL { } } - for (const candidate of candidates.tokens) { - const symbolicName = this._parser.vocabulary.getSymbolicName(candidate[0]); - const displayName = this._parser.vocabulary.getDisplayName(candidate[0]); - if (displayName && symbolicName && symbolicName.startsWith('KW_')) { - const keyword = - displayName.startsWith("'") && displayName.endsWith("'") - ? displayName.slice(1, -1) - : displayName; - keywords.push(keyword); - } - } + const processedKeywords = processTokenCandidates(this._parser, candidates.tokens); + keywords.push(...processedKeywords); return { syntax: originalSyntaxSuggestions, diff --git a/src/parser/mysql/mysqlErrorListener.ts b/src/parser/mysql/mysqlErrorListener.ts index c015ee5a0..fe2668fde 100644 --- a/src/parser/mysql/mysqlErrorListener.ts +++ b/src/parser/mysql/mysqlErrorListener.ts @@ -58,7 +58,9 @@ export class MysqlErrorListener extends ParseErrorListener { case MySqlParser.RULE_functionName: case MySqlParser.RULE_viewName: case MySqlParser.RULE_columnName: { - result.push(`{existing}${name}`); + if (!result.includes(`{existing}${name}`)) { + result.push(`{existing}${name}`); + } break; } case MySqlParser.RULE_databaseNameCreate: @@ -66,7 +68,9 @@ export class MysqlErrorListener extends ParseErrorListener { case MySqlParser.RULE_functionNameCreate: case MySqlParser.RULE_viewNameCreate: case MySqlParser.RULE_columnNameCreate: { - result.push(`{new}${name}`); + if (!result.includes(`{new}${name}`)) { + result.push(`{new}${name}`); + } break; } } diff --git a/src/parser/mysql/mysqlSemanticContextCollector.ts b/src/parser/mysql/mysqlSemanticContextCollector.ts new file mode 100644 index 000000000..e945b44d1 --- /dev/null +++ b/src/parser/mysql/mysqlSemanticContextCollector.ts @@ -0,0 +1,20 @@ +import { MySqlParserListener } from '../../lib'; +import { MySqlParser, SingleStatementContext } from '../../lib/mysql/MySqlParser'; +import SemanticContextCollector from '../common/semanticContextCollector'; + +class MySqlSemanticContextCollector + extends SemanticContextCollector + implements MySqlParserListener +{ + override getWhiteSpaceRuleType(): number { + return MySqlParser.WHITE_SPACE; + } + override getStatementRuleType(): number { + return MySqlParser.RULE_singleStatement; + } + enterSingleStatement(ctx: SingleStatementContext) { + this.visitStatement(ctx); + } +} + +export { MySqlSemanticContextCollector }; diff --git a/src/parser/postgresql/index.ts b/src/parser/postgresql/index.ts index 125f386a8..a62276cf2 100644 --- a/src/parser/postgresql/index.ts +++ b/src/parser/postgresql/index.ts @@ -1,15 +1,23 @@ import { CandidatesCollection } from 'antlr4-c3'; import { CharStream, CommonTokenStream, Token } from 'antlr4ng'; +import { processTokenCandidates } from '../common/tokenUtils'; import { PostgreSqlLexer } from '../../lib/postgresql/PostgreSqlLexer'; import { PostgreSqlParser, ProgramContext } from '../../lib/postgresql/PostgreSqlParser'; +import { + CaretPosition, + EntityContextType, + SemanticCollectOptions, + Suggestions, + SyntaxSuggestion, +} from '../common/types'; import { BasicSQL } from '../common/basicSQL'; import { StmtContextType } from '../common/entityCollector'; import { ErrorListener } from '../common/parseErrorListener'; -import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/types'; import { PostgreSqlEntityCollector } from './postgreEntityCollector'; import { PostgreSqlErrorListener } from './postgreErrorListener'; import { PostgreSqlSplitListener } from './postgreSplitListener'; +import { PostgreSemanticContextCollector } from './postgreSemanticContextCollector'; export { PostgreSqlEntityCollector, PostgreSqlSplitListener }; @@ -37,6 +45,7 @@ export class PostgreSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (let candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -125,6 +138,20 @@ export class PostgreSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (const candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -106,6 +118,23 @@ export class SparkSQL extends BasicSQL = new Set([ TrinoSqlParser.RULE_catalogRef, TrinoSqlParser.RULE_catalogNameCreate, @@ -46,25 +62,21 @@ export class TrinoSQL extends BasicSQL { const originalSyntaxSuggestions: SyntaxSuggestion[] = []; const keywords: string[] = []; for (let candidate of candidates.rules) { const [ruleType, candidateRule] = candidate; - const startTokenIndex = candidateRule.startTokenIndex + tokenIndexOffset; - const tokenRanges = allTokens.slice( - startTokenIndex, - caretTokenIndex + tokenIndexOffset + 1 - ); + const tokenRanges = allTokens.slice(candidateRule.startTokenIndex, caretTokenIndex + 1); let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0; switch (ruleType) { @@ -116,6 +128,19 @@ export class TrinoSQL extends BasicSQL { expect(tokens.length).toBe(8); expect(tokens[0].type).toBe(FlinkSqlLexer.KW_SELECT); - expect(tokens[1].type).toBe(FlinkSqlLexer.SPACE); + expect(tokens[1].type).toBe(FlinkSqlLexer.WHITE_SPACE); expect(tokens[2].type).toBe(FlinkSqlLexer.ASTERISK_SIGN); - expect(tokens[3].type).toBe(FlinkSqlLexer.SPACE); + expect(tokens[3].type).toBe(FlinkSqlLexer.WHITE_SPACE); expect(tokens[4].type).toBe(FlinkSqlLexer.KW_FROM); - expect(tokens[5].type).toBe(FlinkSqlLexer.SPACE); + expect(tokens[5].type).toBe(FlinkSqlLexer.WHITE_SPACE); expect(tokens[6].type).toBe(FlinkSqlLexer.ID_LITERAL); expect(tokens[7].type).toBe(FlinkSqlLexer.SEMICOLON); }); diff --git a/test/helper.ts b/test/helper.ts index 34eb37af0..aa88ca2bf 100644 --- a/test/helper.ts +++ b/test/helper.ts @@ -32,10 +32,68 @@ export const readSQL = (dirname: string, fileName: string) => { return result; }; -export function commentOtherLine( - sqlContent: string, - line: number | [startLine: number, endLine: number] -) { +/** + * Read a sql string with special range + * @param range line and column start from 1 + */ +export const readSQLByRange = ( + sqlSource: { + dirname?: string; + fileName?: string; + sql?: string; + }, + range: { startLine: number; endLine: number; startColumn?: number; endColumn?: number } +) => { + const { dirname, fileName, sql } = sqlSource; + const { startLine, endLine, startColumn, endColumn } = range; + + if (endLine < startLine) throw new RangeError('endLine must greater or equal than startLine!'); + if (!sql && (!dirname || !fileName)) + throw new Error('A sql input or file info params is required!'); + + const content = + sql !== undefined + ? sql + : fs.readFileSync(path.join(dirname, 'fixtures', fileName), 'utf-8'); + let index = 0; + let middleText = ''; + let startLineText = ''; + let endLineText = ''; + let currLine = 1; + + while (index < content.length && currLine <= endLine) { + const char = content[index]; + if (char === '\n') { + currLine++; + } + + if (currLine === startLine) { + // The line break at the beginning needs to be discarded. + if (!(char === '\n' && startLineText === '')) { + startLineText += char; + } + } else if ( + currLine > startLine && + (currLine < endLine || (currLine === endLine && char === '\n')) + ) { + middleText += char; + } else if (currLine === endLine && startLine !== endLine) { + endLineText += char; + } + + index++; + } + + startLineText = startLineText.slice( + startColumn !== undefined ? startColumn - 1 : 0, + endLine === startLine && endColumn !== undefined ? endColumn - 1 : undefined + ); + endLineText = endLineText.slice(0, endColumn !== undefined ? endColumn - 1 : undefined); + + return startLineText + middleText + endLineText; +}; + +export function commentOtherLine(sqlContent: string, line: number[] | number) { const slices = sqlContent.split('\n').map((item, index) => { if ( (Array.isArray(line) && (index + 1 < line[0] || index + 1 > line[1])) || diff --git a/test/parser/flink/contextCollect/fixtures/semantic.sql b/test/parser/flink/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..233da1b8e --- /dev/null +++ b/test/parser/flink/contextCollect/fixtures/semantic.sql @@ -0,0 +1,35 @@ +CREA + +CREATE + +INSERT INTO t1 SEL + +INSERT INTO t1 SELECT + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE t1 ( + id INT, +) WITH ( + 'connector' = 'kafka', +) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT) WITH ('connector' = 'kafka'); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) WITH ('connector' = 'kafka'); +CREATE TABLE +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) WITH ('connector' = 'kafka') +CREATE \ No newline at end of file diff --git a/test/parser/flink/contextCollect/semanticContextCollector.test.ts b/test/parser/flink/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..e02e8c8ae --- /dev/null +++ b/test/parser/flink/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { FlinkSQL } from 'src/parser/flink'; +import { readSQLByRange } from 'test/helper'; + +describe('Flink semantic context collector tests', () => { + const flinkSql = new FlinkSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 22, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 22, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 22 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 6, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 24, endLine: 24 }); + // typed keyword + const ctx1 = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 32 }); + const { isStatementBeginning } = flinkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 13, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 34, endLine: 35 }); + const { isStatementBeginning: isStatementBeginning1 } = + flinkSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + flinkSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/flink/errorListener.test.ts b/test/parser/flink/errorListener.test.ts index 1a82a9b39..c16a8ef53 100644 --- a/test/parser/flink/errorListener.test.ts +++ b/test/parser/flink/errorListener.test.ts @@ -7,6 +7,7 @@ const sql3 = `DROP VIEW IF EXIsST aaa aaa`; const sql4 = `SELECT * froma aaa`; const sql5 = `CREATE VIEW `; const sql6 = `DROP CATALOG `; +const sql7 = `SELECT SUM(amount) FROM Orders GROUP BY length(users) HAVING SUM( `; describe('FlinkSQL validate invalid sql and test msg', () => { const flink = new FlinkSQL(); @@ -64,6 +65,14 @@ describe('FlinkSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql7', () => { + const errors = flink.validate(sql7); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { flink.locale = 'zh_CN'; const errors = flink.validate(randomText); @@ -97,4 +106,12 @@ describe('FlinkSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'aaa' 在此位置无效,期望一个存在的column或者一个关键字`); }); + + test('validate unComplete sql7 cn', () => { + const errors = flink.validate(sql7); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `语句不完整,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts b/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..a6def22a4 --- /dev/null +++ b/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,65 @@ +import { FlinkSQL } from 'src/parser/flink'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('FlinkSQL Complete After Syntax Error', () => { + const flink = new FlinkSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = flink.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(0); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = flink.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = flink.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql index 046580296..74cbb7864 100644 --- a/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql @@ -38,4 +38,10 @@ INSERT INTO tb (col, tb.c ); CREATE TABLE yourTable (ts TIMESTAMP(3), WATERMARK FOR ); -CREATE TABLE newTable ( ); \ No newline at end of file +CREATE TABLE newTable ( ); + +SELECT SUM(amount) FROM Orders GROUP BY length(users) HAVING SUM(amount) > 50; + +SELECT * FROM Orders ORDER BY orderTime LIMIT length(order_id); + +SELECT age CASE WHEN age < 18 THEN 1 ELSE 0 END AS is_minor FROM dt_catalog.dt_db.subscriptions; \ No newline at end of file diff --git a/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql b/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql index 2b86d7ca5..01a0ae892 100644 --- a/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql @@ -5,7 +5,10 @@ USE CREATE ; SHOW +; +CREATE TABLE IF NOT EXISTS +; CREATE TABLE tb (id -); \ No newline at end of file +); diff --git a/test/parser/flink/suggestion/multipleStatement.test.ts b/test/parser/flink/suggestion/multipleStatement.test.ts index e89e4bdfe..e0ecd308d 100644 --- a/test/parser/flink/suggestion/multipleStatement.test.ts +++ b/test/parser/flink/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('FlinkSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 16, + startIndex: 306, + endIndex: 307, + startColumn: 14, + endColumn: 16, + }, + { + text: '.', + line: 16, + startIndex: 308, + endIndex: 308, + startColumn: 16, + endColumn: 17, + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/flink/suggestion/syntaxSuggestion.test.ts b/test/parser/flink/suggestion/syntaxSuggestion.test.ts index a017c641e..ebe47c7f6 100644 --- a/test/parser/flink/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/flink/suggestion/syntaxSuggestion.test.ts @@ -32,7 +32,17 @@ describe('Flink SQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['cat']); + expect(suggestion?.wordRanges?.length).toBe(1); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'cat', + line: 1, + startIndex: 13, + endIndex: 15, + startColumn: 14, + endColumn: 17, + }, + ]); }); test('Select table', () => { @@ -374,4 +384,89 @@ describe('Flink SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 43, + column: 18, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['amount']); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 43, + column: 53, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['users']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 43, + column: 72, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['amount']); + }); + + test('Limit by expression column', () => { + const pos: CaretPosition = { + lineNumber: 45, + column: 62, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['order_id']); + }); + + test('When by expression column', () => { + const pos: CaretPosition = { + lineNumber: 47, + column: 25, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['age']); + }); }); diff --git a/test/parser/flink/suggestion/tokenSuggestion.test.ts b/test/parser/flink/suggestion/tokenSuggestion.test.ts index 5e77b558a..2b2ab1b39 100644 --- a/test/parser/flink/suggestion/tokenSuggestion.test.ts +++ b/test/parser/flink/suggestion/tokenSuggestion.test.ts @@ -68,13 +68,39 @@ describe('Flink SQL Token Suggestion', () => { ]); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 14, + }; + const suggestion = flink.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 17, + }; + const suggestion = flink.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 10, + lineNumber: 13, column: 2, }; const suggestion = flink.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [9, 11]), + commentOtherLine(tokenSql, [12, 14]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/hive/contextCollect/fixtures/semantic.sql b/test/parser/hive/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..f75cfb8e3 --- /dev/null +++ b/test/parser/hive/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +CREATE TABLE a A + +CREATE TABLE a AS + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW diff --git a/test/parser/hive/contextCollect/semanticContextCollector.test.ts b/test/parser/hive/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..5c2854444 --- /dev/null +++ b/test/parser/hive/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { HiveSQL } from 'src/parser/hive'; +import { readSQLByRange } from 'test/helper'; + +describe('Hive semantic context collector tests', () => { + const hiveSql = new HiveSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 22, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 18, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = hiveSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + hiveSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + hiveSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/hive/errorListener.test.ts b/test/parser/hive/errorListener.test.ts index 1bc9b6a1b..baa0cb970 100644 --- a/test/parser/hive/errorListener.test.ts +++ b/test/parser/hive/errorListener.test.ts @@ -6,6 +6,7 @@ const sql2 = `SELECT * FROM `; const sql3 = `DROP VIEW IF EXIsST aaa aaa`; const sql4 = `SELECT * froma aaa`; const sql5 = `CREATE TABLE `; +const sql6 = `SELECT col1 FROM t1 GROUP BY col1 HAVING SUM(col2 `; describe('HiveSQL validate invalid sql and test msg', () => { const hive = new HiveSQL(); @@ -55,6 +56,14 @@ describe('HiveSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql6', () => { + const errors = hive.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { hive.locale = 'zh_CN'; const errors = hive.validate(randomText); @@ -88,4 +97,18 @@ describe('HiveSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'froma' 在此位置无效,期望一个关键字`); }); + + test('validate unComplete sql5', () => { + const errors = hive.validate(sql5); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe(`语句不完整,期望一个新的table或者一个关键字`); + }); + + test('validate unComplete sql6 cn', () => { + const errors = hive.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `语句不完整,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts b/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..93e7f9af0 --- /dev/null +++ b/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,66 @@ +import { HiveSQL } from 'src/parser/hive'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('HiveSQL Complete After Syntax Error', () => { + const hive = new HiveSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = hive.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(1); + expect(keywords[0]).toBe('TABLE'); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = hive.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = hive.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql index fdb98153e..840d210a6 100644 --- a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql @@ -38,4 +38,24 @@ 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 +FROM page_view_stg INSERT; + +SELECT key FROM (SELECT key FROM src ORDER BY sum(a,b) LIMIT 10)subq1; + +SELECT col1 FROM t1 GROUP BY col1 HAVING SUM(col2) > 10; + +SELECT col1 FROM (SELECT col1, SUM(col2) AS col2sum FROM t1 GROUP BY col1 > 20) t2 WHERE t2.col2sum > 10; + +SELECT col1, col2 FROM t1 DISTRIBUTE BY col1 SORT BY col1 ASC, col2 DESC; + +SELECT id, RANK() OVER (PARTITION BY customer_id ORDER BY sale_date) AS rank FROM sales QUALIFY rank = 1; + +SELECT id, customer_id, amount FROM sales CLUSTER BY customer_id; + +SELECT sum(t3.col), col2 FROM t1 DISTRIBUTE BY col1 SORT BY col1 ASC, col2 DESC; + +SELECT a, COUNT(b) OVER (PARTITION BY c, d) FROM T; + +SELECT a.* FROM a JOIN b ON (a.id = b.id AND a.department = b.department); + +SELECT col1, col2, CASE WHEN month = 'January' THEN 2023 ELSE 2024 END AS year, CAST(day AS int) AS day FROM source_table; \ No newline at end of file diff --git a/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql b/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql index db08e8aef..b7d1854ba 100644 --- a/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql @@ -18,7 +18,9 @@ LOAD ; SHOW ; +CREATE TABLE IF NOT EXISTS +; CREATE TABLE tb (id -); \ 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 0c1d36fe2..223ab8466 100644 --- a/test/parser/hive/suggestion/multipleStatement.test.ts +++ b/test/parser/hive/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('HiveSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 9, + startIndex: 272, + endIndex: 273, + startColumn: 14, + endColumn: 16, + }, + { + text: '.', + line: 9, + startIndex: 274, + endIndex: 274, + startColumn: 16, + endColumn: 17, + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/hive/suggestion/syntaxSuggestion.test.ts b/test/parser/hive/suggestion/syntaxSuggestion.test.ts index f2066a8fc..2013d5788 100644 --- a/test/parser/hive/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/hive/suggestion/syntaxSuggestion.test.ts @@ -32,7 +32,33 @@ describe('Hive SQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 1, + startIndex: 12, + endIndex: 13, + startColumn: 13, + endColumn: 15, + }, + { + text: '.', + line: 1, + startIndex: 14, + endIndex: 14, + startColumn: 15, + endColumn: 16, + }, + { + text: 'tb', + line: 1, + startIndex: 15, + endIndex: 16, + startColumn: 16, + endColumn: 18, + }, + ]); }); test('Select table ', () => { @@ -361,4 +387,208 @@ describe('Hive SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['page_view_stg']); }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 43, + column: 54, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 45, + column: 50, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col2']); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 47, + column: 74, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col1']); + }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 47, + column: 100, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t2', '.', 'col2sum']); + }); + + test('Sort by expression column', () => { + const pos: CaretPosition = { + lineNumber: 49, + column: 58, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col1']); + }); + + test('Cluster by expression column', () => { + const pos: CaretPosition = { + lineNumber: 53, + column: 63, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['customer_id']); + }); + + test('Distribute by expression column', () => { + const pos: CaretPosition = { + lineNumber: 55, + column: 52, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col1']); + }); + + test('select expression column', () => { + const pos: CaretPosition = { + lineNumber: 55, + column: 18, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t3', '.', 'col']); + }); + + test('Partition by expression column', () => { + const pos: CaretPosition = { + lineNumber: 57, + column: 40, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['c']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 41, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b', '.', 'id']); + }); + + test('Cast expression column', () => { + const pos: CaretPosition = { + lineNumber: 61, + column: 89, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['day']); + }); + + test('Case/When expression column', () => { + const pos: CaretPosition = { + lineNumber: 61, + column: 35, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['month']); + }); }); diff --git a/test/parser/hive/suggestion/tokenSuggestion.test.ts b/test/parser/hive/suggestion/tokenSuggestion.test.ts index b2a971d4d..6eb2b2b41 100644 --- a/test/parser/hive/suggestion/tokenSuggestion.test.ts +++ b/test/parser/hive/suggestion/tokenSuggestion.test.ts @@ -33,6 +33,9 @@ describe('Hive SQL Token Suggestion', () => { 'MATERIALIZED', 'VIEW', 'TABLE', + 'RESOURCE PLAN', + 'SCHEDULED QUERY', + 'MATERIALIZED VIEW', ]); }); @@ -68,6 +71,11 @@ describe('Hive SQL Token Suggestion', () => { 'REMOTE', 'DATABASE', 'SCHEMA', + 'RESOURCE PLAN', + 'SCHEDULED QUERY', + 'MATERIALIZED VIEW', + 'OR REPLACE', + 'MANAGED TABLE', ]); }); @@ -129,6 +137,9 @@ describe('Hive SQL Token Suggestion', () => { 'TABLE', 'DATABASE', 'SCHEMA', + 'RESOURCE PLAN', + 'MATERIALIZED VIEW', + 'SCHEDULED QUERY', ]); }); @@ -217,16 +228,46 @@ describe('Hive SQL Token Suggestion', () => { 'EXTENDED', 'DATABASES', 'SCHEMAS', + 'CURRENT ROLES', + 'ROLE GRANT', + 'TABLE EXTENDED', + 'MATERIALIZED VIEWS', ]); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 14, + }; + const suggestion = hive.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 17, + }; + const suggestion = hive.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 23, + lineNumber: 25, column: 2, }; const suggestion = hive.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [21, 23]), + commentOtherLine(tokenSql, [24, 26]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/impala/contextCollect/fixtures/semantic.sql b/test/parser/impala/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..9dfc27172 --- /dev/null +++ b/test/parser/impala/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +CREATE TABLE a AS SEL + +CREATE TABLE a AS + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW \ No newline at end of file diff --git a/test/parser/impala/contextCollect/semanticContextCollector.test.ts b/test/parser/impala/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..ac7a13fd6 --- /dev/null +++ b/test/parser/impala/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { ImpalaSQL } from 'src/parser/impala'; +import { readSQLByRange } from 'test/helper'; + +describe('Impala semantic context collector tests', () => { + const impalaSql = new ImpalaSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 17, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 18, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = impalaSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + impalaSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + impalaSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/impala/errorListener.test.ts b/test/parser/impala/errorListener.test.ts index 36a91b402..26778f9de 100644 --- a/test/parser/impala/errorListener.test.ts +++ b/test/parser/impala/errorListener.test.ts @@ -6,6 +6,7 @@ const sql2 = `SELECT * FROM `; const sql3 = `DROP VIEW IF EXIsST aaa aaa`; const sql4 = `SELECT * froma aaa`; const sql5 = `CREATE VIEW `; +const sql6 = 'SELECT * FROM t1 LEFT OUTER JOIN t2 ON t1.int_col < '; describe('ImpalaSQL validate invalid sql and test msg', () => { const impala = new ImpalaSQL(); @@ -55,6 +56,14 @@ describe('ImpalaSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql6', () => { + const errors = impala.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `'<' is not valid at this position, expecting an existing column or a keyword` + ); + }); + test('validate random text cn', () => { impala.locale = 'zh_CN'; const errors = impala.validate(randomText); @@ -88,4 +97,10 @@ describe('ImpalaSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'froma' 在此位置无效,期望一个关键字`); }); + + test('validate unComplete sql6', () => { + const errors = impala.validate(sql6); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe(`'<' 在此位置无效,期望一个存在的column或者一个关键字`); + }); }); diff --git a/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts b/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..792e87c68 --- /dev/null +++ b/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,66 @@ +import { ImpalaSQL } from 'src/parser/impala'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('ImpalaSQL Complete After Syntax Error', () => { + const impala = new ImpalaSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = impala.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(1); + expect(keywords[0]).toBe('TABLE'); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = impala.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = impala.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql index 777d9e422..845353523 100644 --- a/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql +++ b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql @@ -12,4 +12,14 @@ CREATE TABLE sorted_census_data AS SELECT id, FROM unsorted_census_data; SELECT id FROM tb WHERE -SELECT id FROM tb GROUP BY ; \ No newline at end of file +SELECT id FROM tb GROUP BY ; + +SELECT t1.c1, t2.c2 FROM t1, t2 WHERE t1.id = t2.id AND t1.type_flag = t2.type_flag AND t1.c1 > 100; + +SELECT * FROM t1 LEFT OUTER JOIN t2 ON t1.int_col < t2.int_col; + +SELECT user_id AS "Top 10 Visitors", SUM(page_views) FROM web_stats GROUP BY page_views, user_id having times_purchased >= 100 ORDER BY SUM(page_views) DESC LIMIT 10; + +UPDATE my_table SET col1 = CASE WHEN col2 > 10 THEN 'High' WHEN col2 > 5 THEN 'Medium' ELSE 'Low' END WHERE col3 = 'value'; + +create table million_rows_one_range (id string primary key, s string) partition by hash(id) partitions 50, range (partition 'a' <= values < '{') stored as kudu; diff --git a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql index be628c058..f6b45e137 100644 --- a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql @@ -10,6 +10,8 @@ SHOW ; CREATE TABLE t1 (id ); +CREATE TABLE IF NOT EXISTS; + CREATE TABLE tb (id -); \ No newline at end of file +); diff --git a/test/parser/impala/suggestion/multipleStatement.test.ts b/test/parser/impala/suggestion/multipleStatement.test.ts index 115d2012f..d9a00b028 100644 --- a/test/parser/impala/suggestion/multipleStatement.test.ts +++ b/test/parser/impala/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('ImpalaSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 9, + startIndex: 203, + endIndex: 204, + startColumn: 14, + endColumn: 16, + }, + { + text: '.', + line: 9, + startIndex: 205, + endIndex: 205, + startColumn: 16, + endColumn: 17, + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/impala/suggestion/suggestionWithEntity.test.ts b/test/parser/impala/suggestion/suggestionWithEntity.test.ts index 7015df0f9..2a5856e47 100644 --- a/test/parser/impala/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/impala/suggestion/suggestionWithEntity.test.ts @@ -175,4 +175,124 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { const entities = impala.getAllEntities(sql, pos); expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 52, + }; + 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(['t2', '.', 'id']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 63, + }; + 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(['t2', '.', 'int_col']); + }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 52, + }; + 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(['page_views']); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 97, + }; + 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(['user_id']); + }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 151, + }; + 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(['page_views']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 120, + }; + 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(['times_purchased']); + }); + + test('When case expression column', () => { + const pos: CaretPosition = { + lineNumber: 23, + column: 69, + }; + 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(['col2']); + }); + + test('Partition by expression column', () => { + const pos: CaretPosition = { + lineNumber: 25, + column: 91, + }; + 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(['id']); + }); }); diff --git a/test/parser/impala/suggestion/syntaxSuggestion.test.ts b/test/parser/impala/suggestion/syntaxSuggestion.test.ts index 086291876..02cf8d4de 100644 --- a/test/parser/impala/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/impala/suggestion/syntaxSuggestion.test.ts @@ -26,7 +26,33 @@ describe('Impala SQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['cat', '.', 'a']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'cat', + line: 1, + startIndex: 14, + endIndex: 16, + startColumn: 15, + endColumn: 18, + }, + { + text: '.', + line: 1, + startIndex: 17, + endIndex: 17, + startColumn: 18, + endColumn: 19, + }, + { + text: 'a', + line: 1, + startIndex: 18, + endIndex: 18, + startColumn: 19, + endColumn: 20, + }, + ]); }); test('Function call', () => { diff --git a/test/parser/impala/suggestion/tokenSuggestion.test.ts b/test/parser/impala/suggestion/tokenSuggestion.test.ts index 55ca12c03..68b24d85c 100644 --- a/test/parser/impala/suggestion/tokenSuggestion.test.ts +++ b/test/parser/impala/suggestion/tokenSuggestion.test.ts @@ -107,6 +107,10 @@ describe('Impala SQL Token Suggestion', () => { 'ROLE', 'ROLES', 'CURRENT', + 'TABLE STATS', + 'COLUMN STATS', + 'FILES IN', + 'ROLE GRANT GROUP', ]); }); @@ -144,13 +148,39 @@ describe('Impala SQL Token Suggestion', () => { expect(dataTypes.every((dataType) => suggestion.includes(dataType))).toBe(true); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 13, + column: 14, + }; + const suggestion = impala.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 13, + column: 17, + }; + const suggestion = impala.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 14, + lineNumber: 16, column: 2, }; const suggestion = impala.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [13, 15]), + commentOtherLine(tokenSql, [15, 17]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/mysql/contextCollect/fixtures/semantic.sql b/test/parser/mysql/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..0e255e192 --- /dev/null +++ b/test/parser/mysql/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +INSERT IN + +CREATE TABLE a AS + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW \ No newline at end of file diff --git a/test/parser/mysql/contextCollect/semanticContextCollector.test.ts b/test/parser/mysql/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..f281c5b48 --- /dev/null +++ b/test/parser/mysql/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { MySQL } from 'src/parser/mysql'; +import { readSQLByRange } from 'test/helper'; + +describe('MySQL semantic context collector tests', () => { + const mySQL = new MySQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 10, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 18, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = mySQL.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + mySQL.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + mySQL.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/mysql/errorListener.test.ts b/test/parser/mysql/errorListener.test.ts index 443666bf8..a7a44240d 100644 --- a/test/parser/mysql/errorListener.test.ts +++ b/test/parser/mysql/errorListener.test.ts @@ -5,6 +5,7 @@ const sql1 = `SHOW CREATE TABLE`; const sql2 = `CREATE DATABASE `; const sql3 = `SHOW CREATE DATABASE IF NOT EXIsST aaa aaa`; const sql4 = `SELECT * froma aaa`; +const sql5 = `SELECT user, MAX(salary) FROM users where `; describe('MySQL validate invalid sql and test msg', () => { const mysql = new MySQL(); @@ -46,6 +47,14 @@ describe('MySQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql5', () => { + const errors = mysql.validate(sql5); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { mysql.locale = 'zh_CN'; const errors = mysql.validate(randomText); @@ -77,4 +86,12 @@ describe('MySQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'froma' 在此位置无效,期望一个存在的column或者一个关键字`); }); + + test('validate unComplete sql5 cn', () => { + const errors = mysql.validate(sql5); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `语句不完整,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts b/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..7f5acc4a4 --- /dev/null +++ b/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,65 @@ +import { MySQL } from 'src/parser/mysql'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('MySQL Complete After Syntax Error', () => { + const mysql = new MySQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = mysql.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(0); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = mysql.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = mysql.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT', 'SIGNAL']); + }); +}); diff --git a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql index a97a3520b..878c11dbe 100644 --- a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql @@ -54,4 +54,10 @@ SHOW CREATE TABLE tbl_name; SHOW CREATE DATABASE IF NOT EXISTS db_name; -SHOW CREATE VIEW test.v; \ No newline at end of file +SHOW CREATE VIEW test.v; + +SELECT user, MAX(salary) FROM users where age = 10 GROUP BY length(user) HAVING MAX(salary) > 10; + +SELECT c.category_id FROM category c JOIN product p ON c.category_id = p.category_id; + +SELECT score, CASE WHEN score >= 90 THEN 'A' ELSE 'F' END AS grade FROM students; \ No newline at end of file diff --git a/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql b/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql index 708379b61..817d559c2 100644 --- a/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql @@ -14,7 +14,9 @@ LOAD ; SHOW ; +CREATE TABLE IF NOT EXISTS +; CREATE TABLE tb (id -); \ 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 48efa7139..d08099b85 100644 --- a/test/parser/mysql/suggestion/multipleStatement.test.ts +++ b/test/parser/mysql/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('MySQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 9, + startIndex: 306, + endIndex: 307, + startColumn: 14, + endColumn: 16, + }, + { + text: '.', + line: 9, + startIndex: 308, + endIndex: 308, + startColumn: 16, + endColumn: 17, + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index 03ac43a99..98bb48521 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -30,7 +30,33 @@ describe('MySQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 1, + startIndex: 12, + endIndex: 13, + startColumn: 13, + endColumn: 15, + }, + { + text: '.', + line: 1, + startIndex: 14, + endIndex: 14, + startColumn: 15, + endColumn: 16, + }, + { + text: 'tb', + line: 1, + startIndex: 15, + endIndex: 16, + startColumn: 16, + endColumn: 18, + }, + ]); }); test('Select table ', () => { @@ -508,4 +534,110 @@ describe('MySQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['test', '.', 'v']); }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 24, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['salary']); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 72, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['user']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 91, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['salary']); + }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 46, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['age']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 61, + column: 85, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ + 'p', + '.', + 'category_id', + ]); + }); + + test('Case expression column', () => { + const pos: CaretPosition = { + lineNumber: 63, + column: 30, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['score']); + }); }); diff --git a/test/parser/mysql/suggestion/tokenSuggestion.test.ts b/test/parser/mysql/suggestion/tokenSuggestion.test.ts index 1d42572b3..f252f7dbf 100644 --- a/test/parser/mysql/suggestion/tokenSuggestion.test.ts +++ b/test/parser/mysql/suggestion/tokenSuggestion.test.ts @@ -37,6 +37,10 @@ describe('MySQL Token Suggestion', () => { 'EVENT', 'DATABASE', 'SCHEMA', + 'RESOURCE GROUP', + 'SQL SECURITY', + 'LOGFILE GROUP', + 'INSTANCE ROTATE INNODB MASTER KEY', ]); }); @@ -79,6 +83,11 @@ describe('MySQL Token Suggestion', () => { 'EVENT', 'DATABASE', 'SCHEMA', + 'RESOURCE GROUP', + 'SQL SECURITY', + 'OR REPLACE', + 'IF NOT EXISTS', + 'LOGFILE GROUP', ]); }); @@ -116,6 +125,7 @@ describe('MySQL Token Suggestion', () => { 'FORMAT', 'PARTITIONS', 'EXTENDED', + 'FOR CONNECTION', ]); }); @@ -149,6 +159,9 @@ describe('MySQL Token Suggestion', () => { 'EVENT', 'DATABASE', 'SCHEMA', + 'RESOURCE GROUP', + 'SPATIAL REFERENCE SYSTEM', + 'LOGFILE GROUP', ]); }); @@ -181,7 +194,7 @@ describe('MySQL Token Suggestion', () => { pos )?.keywords; - expect(suggestion).toMatchUnorderedArray(['INDEX', 'XML', 'DATA']); + expect(suggestion).toMatchUnorderedArray(['INDEX', 'XML', 'DATA', 'INDEX INTO CACHE']); }); test('After SHOW', () => { @@ -240,16 +253,46 @@ describe('MySQL Token Suggestion', () => { 'BINLOG', 'RELAYLOG', 'BINARY', + 'OPEN TABLES', + 'TABLE STATUS', + 'CHARACTER SET', ]); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 14, + }; + const suggestion = mysql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 17, + }; + const suggestion = mysql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 19, + lineNumber: 21, column: 2, }; const suggestion = mysql.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [18, 20]), + commentOtherLine(tokenSql, [20, 22]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/postgresql/contextCollect/fixtures/semantic.sql b/test/parser/postgresql/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..279f09b0f --- /dev/null +++ b/test/parser/postgresql/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +ALTER TAB + +ALTER TABLE + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW \ No newline at end of file diff --git a/test/parser/postgresql/contextCollect/semanticContextCollector.test.ts b/test/parser/postgresql/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..ff3774e35 --- /dev/null +++ b/test/parser/postgresql/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { PostgreSQL } from 'src/parser/postgresql'; +import { readSQLByRange } from 'test/helper'; + +describe('PostgreSQL semantic context collector tests', () => { + const postgreSql = new PostgreSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 10, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = postgreSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + postgreSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + postgreSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/postgresql/errorListener.test.ts b/test/parser/postgresql/errorListener.test.ts index 153f31abf..8d570f4ba 100644 --- a/test/parser/postgresql/errorListener.test.ts +++ b/test/parser/postgresql/errorListener.test.ts @@ -5,6 +5,7 @@ const sql1 = `ALTER EVENT`; const sql2 = `CREATE FUNCTION `; const sql3 = `SELECT name, altitude FROM ONLY cities WHERE `; const sql4 = `DROP PROCEDURE name1 a`; +const sql5 = `SELECT * FROM db.tbs GROUP BY sum( `; describe('PostgreSQL validate invalid sql and test msg', () => { const pgSQL = new PostgreSQL(); @@ -45,6 +46,14 @@ describe('PostgreSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql5', () => { + const errors = pgSQL.validate(sql5); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing column or an existing function or a keyword` + ); + }); + test('validate random text cn', () => { pgSQL.locale = 'zh_CN'; const errors = pgSQL.validate(randomText); diff --git a/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts b/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..07f5ddac8 --- /dev/null +++ b/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,65 @@ +import { PostgreSQL } from 'src/parser/postgresql'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('PostgreSQL Complete After Syntax Error', () => { + const postgresql = new PostgreSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(0); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('SEL') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql index 3b27e0eb8..7870c4621 100644 --- a/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql @@ -79,3 +79,11 @@ SELECT * FROM db.tbs GROUP BY (col1, col2) ORDER BY col3; TRUNCATE TABLE ; TRUNCATE TABLE t1; + +SELECT * FROM db.tbs GROUP BY sum(length(col1+col2)) ORDER BY length(sum(col1/clo2)); + +VALUES (1, '3'), (3, 'sdsd') ORDER BY sort_expression ASC LIMIT id = 1; + +CREATE OR REPLACE RULE name AS ON SELECT TO table_name WHERE length(y+x) = 3 DO INSTEAD NOTHING; + +WITH query_name (id) AS (SELECT id FROM table_expression) SELECT DISTINCT ON (col1) random() AS name1 FROM table_expression WHERE name1=name1 GROUP BY id HAVING sum(len+y) < interval '5 hours' WINDOW w AS (PARTITION BY depname ORDER BY salary DESC) EXCEPT (SELECT * FROM others) ORDER BY salary USING > NULLS FIRST OFFSET start FETCH NEXT ROW ONLY FOR KEY SHARE OF table_name NOWAIT; diff --git a/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql b/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql index 6a22c90ff..a0abe5f83 100644 --- a/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql @@ -8,6 +8,8 @@ DELETE ; CREATE ; +CREATE TABLE IF NOT EXISTS; + CREATE TABLE tb (id -); \ No newline at end of file +); diff --git a/test/parser/postgresql/suggestion/multipleStatement.test.ts b/test/parser/postgresql/suggestion/multipleStatement.test.ts index 48e199a89..a688db41c 100644 --- a/test/parser/postgresql/suggestion/multipleStatement.test.ts +++ b/test/parser/postgresql/suggestion/multipleStatement.test.ts @@ -69,6 +69,24 @@ describe('PgSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 21, + startIndex: 682, + endIndex: 683, + startColumn: 62, + endColumn: 64, + }, + { + text: '.', + line: 21, + startIndex: 684, + endIndex: 684, + startColumn: 64, + endColumn: 65, + }, + ]); }); }); diff --git a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts index 89ae26a69..a80adff32 100644 --- a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts @@ -166,7 +166,17 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['a_column']); + expect(suggestion?.wordRanges?.length).toBe(1); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'a_column', + line: 13, + startIndex: 399, + endIndex: 406, + startColumn: 27, + endColumn: 35, + }, + ]); const entities = postgre.getAllEntities(sql, pos); expect(entities.length).toBe(1); diff --git a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts index 664b2b52b..abc906ba1 100644 --- a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts @@ -32,7 +32,33 @@ describe('Postgre SQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 3, + startIndex: 88, + endIndex: 89, + startColumn: 13, + endColumn: 15, + }, + { + text: '.', + line: 3, + startIndex: 90, + endIndex: 90, + startColumn: 15, + endColumn: 16, + }, + { + text: 'tb', + line: 3, + startIndex: 91, + endIndex: 92, + startColumn: 16, + endColumn: 18, + }, + ]); }); test('Alter table ', () => { @@ -1002,4 +1028,118 @@ describe('Postgre SQL Syntax Suggestion', () => { expect(suggestion2).not.toBeUndefined(); expect(suggestion2?.wordRanges.map((token) => token.text)).toEqual(['t1']); }); + + test('Group by expression', () => { + const pos: CaretPosition = { + lineNumber: 83, + column: 51, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col2']); + }); + + test('Order by expression', () => { + const pos: CaretPosition = { + lineNumber: 83, + column: 78, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col1']); + }); + + test('Limit expression', () => { + const pos: CaretPosition = { + lineNumber: 85, + column: 67, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['id']); + }); + + test('Where expression', () => { + const pos: CaretPosition = { + lineNumber: 87, + column: 72, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['x']); + }); + + test('Having expression', () => { + const pos: CaretPosition = { + lineNumber: 89, + column: 170, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['len']); + }); + + test('Partition by expression', () => { + const pos: CaretPosition = { + lineNumber: 89, + column: 229, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['depname']); + }); }); diff --git a/test/parser/postgresql/suggestion/tokenSuggestion.test.ts b/test/parser/postgresql/suggestion/tokenSuggestion.test.ts index 45de889fe..7f7b1b8e2 100644 --- a/test/parser/postgresql/suggestion/tokenSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/tokenSuggestion.test.ts @@ -54,6 +54,10 @@ describe('Postgres SQL Token Suggestion', () => { 'LARGE', 'EXTENSION', 'DEFAULT', + 'TEXT SEARCH', + 'EVENT TRIGGER', + 'LARGE OBJECT', + 'DEFAULT PRIVILEGES', ]); }); @@ -114,6 +118,12 @@ describe('Postgres SQL Token Suggestion', () => { 'CAST', 'ASSERTION', 'ACCESS', + 'RECURSIVE VIEW', + 'TEXT SEARCH', + 'EVENT TRIGGER', + 'TRANSFORM FOR', + 'MATERIALIZED VIEW', + 'ACCESS METHOD', ]); }); @@ -176,6 +186,10 @@ describe('Postgres SQL Token Suggestion', () => { 'MATERIALIZED', 'SEQUENCE', 'TABLE', + 'OWNED BY', + 'TEXT SEARCH', + 'EVENT TRIGGER', + 'ACCESS METHOD', ]); }); @@ -191,13 +205,39 @@ describe('Postgres SQL Token Suggestion', () => { expect(suggestion).toMatchUnorderedArray(['INTO']); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 14, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 17, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 12, + lineNumber: 14, column: 2, }; const suggestion = postgresql.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [11, 13]), + commentOtherLine(tokenSql, [13, 15]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/spark/contextCollect/fixtures/semantic.sql b/test/parser/spark/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..88dbd568f --- /dev/null +++ b/test/parser/spark/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +CREATE TABLE a A + +CREATE TABLE a AS + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW \ No newline at end of file diff --git a/test/parser/spark/contextCollect/semanticContextCollector.test.ts b/test/parser/spark/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..ca9878bfb --- /dev/null +++ b/test/parser/spark/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { SparkSQL } from 'src/parser/spark'; +import { readSQLByRange } from 'test/helper'; + +describe('Spark semantic context collector tests', () => { + const sparkSql = new SparkSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 22, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 18, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = sparkSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + sparkSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + sparkSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/spark/errorListener.test.ts b/test/parser/spark/errorListener.test.ts index bc356160d..e9983a3fb 100644 --- a/test/parser/spark/errorListener.test.ts +++ b/test/parser/spark/errorListener.test.ts @@ -4,6 +4,7 @@ const randomText = `dhsdansdnkla ndjnsla ndnalks`; const sql1 = `ALTER VIEW`; const sql2 = `SELECT * FROM `; const sql3 = `DROP SCHEMA aaa aaa`; +const sql4 = `SELECT name, age FROM person ORDER BY length( `; describe('SparkSQL validate invalid sql and test msg', () => { const spark = new SparkSQL(); @@ -38,6 +39,14 @@ describe('SparkSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql4', () => { + const errors = spark.validate(sql4); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { spark.locale = 'zh_CN'; const errors = spark.validate(randomText); @@ -64,4 +73,12 @@ describe('SparkSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'aaa' 在此位置无效,期望一个存在的namespace或者一个关键字`); }); + + test('validate unComplete sql4', () => { + const errors = spark.validate(sql4); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `语句不完整,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts b/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..fde5b27d3 --- /dev/null +++ b/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,66 @@ +import { SparkSQL } from 'src/parser/spark'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('SparkSQL Complete After Syntax Error', () => { + const spark = new SparkSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = spark.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(1); + expect(keywords[0]).toBe('TABLE'); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = spark.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = spark.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql index fff4e7b39..982aed11a 100644 --- a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql @@ -64,4 +64,14 @@ OPTIMIZE db.tb; OPTIMIZE db.tb ZORDER BY ; -OPTIMIZE db.tb ZORDER BY name, i; \ No newline at end of file +OPTIMIZE db.tb ZORDER BY name, i; + +SELECT name, age FROM person ORDER BY length(age) LIMIT length(name); + +SELECT id, CASE id WHEN 100 then 'bigger' WHEN id > 300 THEN '300' ELSE 'small' END FROM person; + +INSERT OVERWRITE students PARTITION (student_id = 222222) SELECT name, address FROM persons WHERE name = "Dora Williams"; + +SELECT id, name, employee.deptno, deptname FROM employee FULL JOIN department ON employee.deptno = department.deptno; + +SELECT city, sum(quantity) AS sum FROM dealer GROUP BY sum(city) HAVING max(quantity) > 15; diff --git a/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql b/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql index d4f238649..aa9b0e52e 100644 --- a/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql @@ -16,7 +16,9 @@ SHOW ; EXPORT ; +CREATE TABLE IF NOT EXISTS +; CREATE TABLE tb (id -); \ 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 a65b020ec..04ee292f9 100644 --- a/test/parser/spark/suggestion/multipleStatement.test.ts +++ b/test/parser/spark/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('SparkSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + endColumn: 17, + endIndex: 258, + line: 9, + startColumn: 15, + startIndex: 257, + text: 'db', + }, + { + endColumn: 18, + endIndex: 259, + line: 9, + startColumn: 17, + startIndex: 259, + text: '.', + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/spark/suggestion/suggestionWithEntity.test.ts b/test/parser/spark/suggestion/suggestionWithEntity.test.ts index 936889628..dc968a071 100644 --- a/test/parser/spark/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/spark/suggestion/suggestionWithEntity.test.ts @@ -9,7 +9,7 @@ const syntaxSql = fs.readFileSync( 'utf-8' ); -describe('PostgreSql Syntax Suggestion with collect entity', () => { +describe('Spark SQL Syntax Suggestion with collect entity', () => { const spark = new SparkSQL(); test('select with no column', () => { diff --git a/test/parser/spark/suggestion/syntaxSuggestion.test.ts b/test/parser/spark/suggestion/syntaxSuggestion.test.ts index 2ed6c655d..4bb8245f0 100644 --- a/test/parser/spark/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/spark/suggestion/syntaxSuggestion.test.ts @@ -32,7 +32,33 @@ describe('Spark SQL Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 1, + startIndex: 12, + endIndex: 13, + startColumn: 13, + endColumn: 15, + }, + { + text: '.', + line: 1, + startIndex: 14, + endIndex: 14, + startColumn: 15, + endColumn: 16, + }, + { + text: 'tb', + line: 1, + startIndex: 15, + endIndex: 16, + startColumn: 16, + endColumn: 18, + }, + ]); }); test('Select table ', () => { @@ -595,4 +621,144 @@ describe('Spark SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['i']); }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 69, + column: 49, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['age']); + }); + + test('Limit expression column', () => { + const pos: CaretPosition = { + lineNumber: 69, + column: 68, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['name']); + }); + + test('Case/When expression column', () => { + const pos: CaretPosition = { + lineNumber: 71, + column: 19, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['id']); + }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 73, + column: 103, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['name']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 75, + column: 97, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ + 'employee', + '.', + 'deptno', + ]); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 64, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['city']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 85, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); + }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 26, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); + }); }); diff --git a/test/parser/spark/suggestion/tokenSuggestion.test.ts b/test/parser/spark/suggestion/tokenSuggestion.test.ts index 680a2326f..7eb2c8742 100644 --- a/test/parser/spark/suggestion/tokenSuggestion.test.ts +++ b/test/parser/spark/suggestion/tokenSuggestion.test.ts @@ -27,6 +27,7 @@ describe('Spark SQL Token Suggestion', () => { 'DATABASE', 'NAMESPACE', 'SCHEMA', + 'MATERIALIZED VIEW', ]); }); @@ -54,6 +55,7 @@ describe('Spark SQL Token Suggestion', () => { 'DATABASE', 'NAMESPACE', 'SCHEMA', + 'MATERIALIZED VIEW', ]); }); @@ -117,6 +119,7 @@ describe('Spark SQL Token Suggestion', () => { 'DATABASE', 'NAMESPACE', 'SCHEMA', + 'MATERIALIZED VIEW', ]); }); @@ -182,6 +185,8 @@ describe('Spark SQL Token Suggestion', () => { 'DATABASES', 'NAMESPACES', 'SCHEMAS', + 'MATERIALIZED VIEWS', + 'TABLE EXTENDED', ]); }); @@ -198,13 +203,39 @@ describe('Spark SQL Token Suggestion', () => { expect(suggestion).toMatchUnorderedArray(['TABLE']); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 14, + }; + const suggestion = spark.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 17, + }; + const suggestion = spark.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 21, + lineNumber: 23, column: 2, }; const suggestion = spark.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [20, 22]), + commentOtherLine(tokenSql, [22, 24]), pos )?.keywords; expect(suggestion.length).not.toBe(0); diff --git a/test/parser/spark/syntax/alter.test.ts b/test/parser/spark/syntax/alter.test.ts index 5aee90cbe..e4f9af9cd 100644 --- a/test/parser/spark/syntax/alter.test.ts +++ b/test/parser/spark/syntax/alter.test.ts @@ -5,7 +5,7 @@ const spark = new SparkSQL(); const features = { alterDatabase: readSQL(__dirname, 'alterDatabase.sql'), - altertTable: readSQL(__dirname, 'alterTable.sql'), + alterTable: readSQL(__dirname, 'alterTable.sql'), alterView: readSQL(__dirname, 'alterView.sql'), alterMaterializedView: readSQL(__dirname, 'alterMaterializedView.sql'), }; diff --git a/test/parser/trino/contextCollect/fixtures/semantic.sql b/test/parser/trino/contextCollect/fixtures/semantic.sql new file mode 100644 index 000000000..88dbd568f --- /dev/null +++ b/test/parser/trino/contextCollect/fixtures/semantic.sql @@ -0,0 +1,31 @@ +CREA + +CREATE + +CREATE TABLE a A + +CREATE TABLE a AS + +INSERT + +SELECT id FROM t1; +CRE + +SELECT id FROM t2; + + +CREATE TABLE IF NOT EXISTS a1(id INT, ) +SEL + +CREATE; SEL + +CREATE TABLE a1(id INT); +SEL +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT); +CREATE VIEW +INSERT INTO t1 VALUES(1); + +CREATE TABLE a1(id INT) +CREATE VIEW \ No newline at end of file diff --git a/test/parser/trino/contextCollect/semanticContextCollector.test.ts b/test/parser/trino/contextCollect/semanticContextCollector.test.ts new file mode 100644 index 000000000..540a1216a --- /dev/null +++ b/test/parser/trino/contextCollect/semanticContextCollector.test.ts @@ -0,0 +1,146 @@ +import fs from 'fs'; +import path from 'path'; +import { SqlSplitStrategy } from 'src/parser/common/types'; +import { TrinoSQL } from 'src/parser/trino'; +import { readSQLByRange } from 'test/helper'; + +describe('Trino semantic context collector tests', () => { + const trinoSql = new TrinoSQL(); + const text = fs.readFileSync(path.join(__dirname, 'fixtures', 'semantic.sql'), 'utf-8'); + + test('beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 1, endLine: 1 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 5, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 3, endLine: 3 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 7, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement with uncomplete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 5, endLine: 5 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 22, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement with complete keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 7, endLine: 7 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 18, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('not beginning of statement if type white space after keyword', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 9, endLine: 9 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 8, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement after an exists statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 11, endLine: 12 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement after an exists statement and typed white space', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 14, endLine: 15 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 2, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement if previous statement exists error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 17, endLine: 18 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('beginning of statement if previous token text is semicolon even if has error', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 20, endLine: 20 }); + // typed keyword + const ctx1 = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 13, + }); + expect(ctx1.isStatementBeginning).toBeTruthy(); + + // typed white space + const ctx2 = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 1, + column: 9, + }); + expect(ctx2.isStatementBeginning).toBeTruthy(); + }); + + test('beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 22, endLine: 24 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 4, + }); + expect(isStatementBeginning).toBeTruthy(); + }); + + test('not beginning of statement between two statement', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 26, endLine: 28 }); + const { isStatementBeginning } = trinoSql.getSemanticContextAtCaretPosition(sql, { + lineNumber: 2, + column: 12, + }); + expect(isStatementBeginning).toBeFalsy(); + }); + + test('test sqlSplitStrategy', () => { + const sql = readSQLByRange({ sql: text }, { startLine: 30, endLine: 31 }); + const { isStatementBeginning: isStatementBeginning1 } = + trinoSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.LOOSE, + } + ); + expect(isStatementBeginning1).toBeTruthy(); + + const { isStatementBeginning: isStatementBeginning2 } = + trinoSql.getSemanticContextAtCaretPosition( + sql, + { + lineNumber: 2, + column: 7, + }, + { + sqlSplitStrategy: SqlSplitStrategy.STRICT, + } + ); + expect(isStatementBeginning2).toBeFalsy(); + }); +}); diff --git a/test/parser/trino/errorListener.test.ts b/test/parser/trino/errorListener.test.ts index c4d174d6f..65cd0bd54 100644 --- a/test/parser/trino/errorListener.test.ts +++ b/test/parser/trino/errorListener.test.ts @@ -4,6 +4,7 @@ const randomText = `dhsdansdnkla ndjnsla ndnalks`; const sql1 = `SHOW CREATE TABLE`; const sql2 = `CREATE VIEW `; const sql3 = `SHOW CREATE TABLE aaa aaa`; +const sql4 = `SELECT count(*) FROM customer order BY sum(a`; describe('TrinoSQL validate invalid sql and test msg', () => { const trinoSQL = new TrinoSQL(); @@ -36,6 +37,15 @@ describe('TrinoSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql4', () => { + const errors = trinoSQL.validate(sql4); + expect(errors.length).toBe(2); + expect(errors[0].message).toBe(`Statement is incomplete`); + expect(errors[1].message).toBe( + `'a' is not valid at this position, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { trinoSQL.locale = 'zh_CN'; const errors = trinoSQL.validate(randomText); @@ -60,4 +70,13 @@ describe('TrinoSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'aaa' 在此位置无效,期望一个存在的table或者一个关键字`); }); + + test('validate unComplete sql4', () => { + const errors = trinoSQL.validate(sql4); + expect(errors.length).toBe(2); + expect(errors[0].message).toBe(`语句不完整`); + expect(errors[1].message).toBe( + `'a' 在此位置无效,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts b/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts new file mode 100644 index 000000000..59f33213d --- /dev/null +++ b/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts @@ -0,0 +1,65 @@ +import { TrinoSQL } from 'src/parser/trino'; +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; + +describe('TrinoSQL Complete After Syntax Error', () => { + const trino = new TrinoSQL(); + + const sql1 = `SELECT FROM tb2;\nINSERT INTO `; + const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; + const sql3 = `SELECT FROM t1;\nSL`; + + test('Syntax error but end with semi, should suggest tableName', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 13, + }; + const suggestion = trino.getSuggestionAtCaretPosition(sql1, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords.length).toBe(0); + }); + + test('Syntax error but end with semi, should suggest tableNameCreate', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 14, + }; + const suggestion = trino.getSuggestionAtCaretPosition(sql2, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(1); + expect(syntaxes[0].syntaxContextType).toBe(EntityContextType.TABLE_CREATE); + + // keyword + const keywords = suggestion?.keywords; + expect(keywords).toMatchUnorderedArray(['IF', 'IF NOT EXISTS']); + }); + + test('Syntax error but end with semi, should suggest filter token', () => { + const pos: CaretPosition = { + lineNumber: 2, + column: 2, + }; + const suggestion = trino.getSuggestionAtCaretPosition(sql3, pos); + expect(suggestion).not.toBeUndefined(); + + // syntax + const syntaxes = suggestion?.syntax; + expect(syntaxes.length).toBe(0); + + // keyword + const filterKeywords = suggestion?.keywords?.filter( + (item) => item.startsWith('S') && /S(?=.*L)/.test(item) + ); + expect(filterKeywords).toMatchUnorderedArray(['SELECT']); + }); +}); diff --git a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql index 15e05ed1d..a7adc828c 100644 --- a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql @@ -42,4 +42,18 @@ DROP CATALOG cat ; CREATE FUNCTION example.default. ; -DROP FUNCTION ; \ No newline at end of file +DROP FUNCTION ; + +SELECT count(*) FROM customer order BY sum() + +SELECT count(*) FROM customer where a > b + +SELECT product_id, SUM(amount) AS total_sales FROM sales HAVING SUM(amount) > 1000; + +SELECT array_agg(x ORDER BY t.y) FROM t; + +SELECT orderId FROM orders WINDOW w AS (PARTITION BY clerk ORDER BY totalprice DESC) + +SELECT id, amount, CASE WHEN amount > 1000 THEN 'High' WHEN amount BETWEEN 500 AND 1000 THEN 'Medium' ELSE 'Low' END AS sales_category FROM sales; + +SELECT * FROM users CROSS JOIN UNNEST(friends) WITH ordinality; diff --git a/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql b/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql index c711011b0..d3398ec9d 100644 --- a/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql @@ -12,6 +12,8 @@ DROP ; INSERT ; +CREATE TABLE IF NOT EXISTS ; + CREATE TABLE tb (id -); \ No newline at end of file +); diff --git a/test/parser/trino/suggestion/multipleStatement.test.ts b/test/parser/trino/suggestion/multipleStatement.test.ts index a224030de..1d8c1fb9e 100644 --- a/test/parser/trino/suggestion/multipleStatement.test.ts +++ b/test/parser/trino/suggestion/multipleStatement.test.ts @@ -36,7 +36,25 @@ describe('TrinoSQL Multiple Statements Syntax Suggestion', () => { ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + expect(suggestion?.wordRanges?.length).toBe(2); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 9, + startIndex: 137, + endIndex: 138, + startColumn: 17, + endColumn: 19, + }, + { + text: '.', + line: 9, + startIndex: 139, + endIndex: 139, + startColumn: 19, + endColumn: 20, + }, + ]); }); test('Insert into table ', () => { diff --git a/test/parser/trino/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts index 74bbd084b..864ba7518 100644 --- a/test/parser/trino/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -32,7 +32,33 @@ describe('Trino SQL Syntax Suggestion', () => { (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); + expect(suggestion?.wordRanges?.length).toBe(3); + expect(suggestion?.wordRanges).toEqual([ + { + text: 'db', + line: 1, + startIndex: 12, + endIndex: 13, + startColumn: 13, + endColumn: 15, + }, + { + text: '.', + line: 1, + startIndex: 14, + endIndex: 14, + startColumn: 15, + endColumn: 16, + }, + { + text: 'tb', + line: 1, + startIndex: 15, + endIndex: 16, + startColumn: 16, + endColumn: 18, + }, + ]); }); test('Select table ', () => { @@ -419,4 +445,123 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); }); + + test('GroupBy expression column', () => { + const pos: CaretPosition = { + lineNumber: 47, + column: 44, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['sum', '(']); + }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 49, + column: 42, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 51, + column: 75, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['amount']); + }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 53, + column: 32, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t', '.', 'y']); + }); + + test('Partition by expression column', () => { + const pos: CaretPosition = { + lineNumber: 55, + column: 59, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['clerk']); + }); + + test('Case When expression column', () => { + const pos: CaretPosition = { + lineNumber: 57, + column: 67, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['amount']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 59, + column: 46, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['friends']); + }); }); diff --git a/test/parser/trino/suggestion/tokenSuggestion.test.ts b/test/parser/trino/suggestion/tokenSuggestion.test.ts index 6d7b3c057..f1b726669 100644 --- a/test/parser/trino/suggestion/tokenSuggestion.test.ts +++ b/test/parser/trino/suggestion/tokenSuggestion.test.ts @@ -19,7 +19,13 @@ describe('Trino SQL Token Suggestion', () => { pos )?.keywords; - expect(suggestion).toMatchUnorderedArray(['VIEW', 'MATERIALIZED', 'TABLE', 'SCHEMA']); + expect(suggestion).toMatchUnorderedArray([ + 'VIEW', + 'MATERIALIZED', + 'TABLE', + 'SCHEMA', + 'MATERIALIZED VIEW', + ]); }); test('After CREATE', () => { @@ -41,6 +47,8 @@ describe('Trino SQL Token Suggestion', () => { 'TABLE', 'SCHEMA', 'CATALOG', + 'OR REPLACE', + 'MATERIALIZED VIEW', ]); }); @@ -109,6 +117,7 @@ describe('Trino SQL Token Suggestion', () => { 'TABLE', 'SCHEMA', 'CATALOG', + 'MATERIALIZED VIEW', ]); }); @@ -125,13 +134,39 @@ describe('Trino SQL Token Suggestion', () => { expect(suggestion).toMatchUnorderedArray(['INTO']); }); + test('After CREATE TABLE, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 15, + column: 14, + }; + const suggestion = trino.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('IF'); + expect(suggestion).toContain('IF NOT EXISTS'); + }); + + test('After CREATE TABLE IF, show combined keywords', () => { + const pos: CaretPosition = { + lineNumber: 15, + column: 17, + }; + const suggestion = trino.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toContain('NOT'); + expect(suggestion).toContain('NOT EXISTS'); + }); + test('Suggestion in new line', () => { const pos: CaretPosition = { - lineNumber: 16, + lineNumber: 18, column: 2, }; const suggestion = trino.getSuggestionAtCaretPosition( - commentOtherLine(tokenSql, [15, 17]), + commentOtherLine(tokenSql, [17, 19]), pos )?.keywords; expect(suggestion.length).not.toBe(0);