diff --git a/internal/endtoend/testdata/sqlite_table_options/sqlite/go/db.go b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/db.go new file mode 100644 index 0000000000..fb6ae669f6 --- /dev/null +++ b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.19.1 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlite_table_options/sqlite/go/models.go b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/models.go new file mode 100644 index 0000000000..e3c184cd8a --- /dev/null +++ b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/models.go @@ -0,0 +1,33 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.19.1 + +package querytest + +import ( + "database/sql" +) + +type Authors1 struct { + ID int64 + Name string + Bio sql.NullString +} + +type Authors2 struct { + ID int64 + Name string + Bio sql.NullString +} + +type Authors3 struct { + ID int64 + Name string + Bio sql.NullString +} + +type Authors4 struct { + ID int64 + Name string + Bio sql.NullString +} diff --git a/internal/endtoend/testdata/sqlite_table_options/sqlite/go/query.sql.go b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/query.sql.go new file mode 100644 index 0000000000..ed0378c555 --- /dev/null +++ b/internal/endtoend/testdata/sqlite_table_options/sqlite/go/query.sql.go @@ -0,0 +1,22 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.19.1 +// source: query.sql + +package querytest + +import ( + "context" +) + +const getAuthor = `-- name: GetAuthor :one +SELECT id, name, bio FROM authors1 +WHERE id = ?1 LIMIT 1 +` + +func (q *Queries) GetAuthor(ctx context.Context, id int64) (Authors1, error) { + row := q.db.QueryRowContext(ctx, getAuthor, id) + var i Authors1 + err := row.Scan(&i.ID, &i.Name, &i.Bio) + return i, err +} diff --git a/internal/endtoend/testdata/sqlite_table_options/sqlite/query.sql b/internal/endtoend/testdata/sqlite_table_options/sqlite/query.sql new file mode 100644 index 0000000000..d54bfdfe73 --- /dev/null +++ b/internal/endtoend/testdata/sqlite_table_options/sqlite/query.sql @@ -0,0 +1,27 @@ +CREATE TABLE authors1 ( + id INTEGER PRIMARY KEY, + name text NOT NULL, + bio text +) STRICT, WITHOUT ROWID; + +CREATE TABLE authors2 ( + id INTEGER PRIMARY KEY, + name text NOT NULL, + bio text +) WITHOUT ROWID, STRICT; + +CREATE TABLE authors3 ( + id INTEGER PRIMARY KEY, + name text NOT NULL, + bio text +) WITHOUT ROWID; + +CREATE TABLE authors4 ( + id INTEGER PRIMARY KEY, + name text NOT NULL, + bio text +) STRICT; + +-- name: GetAuthor :one +SELECT * FROM authors1 +WHERE id = ?1 LIMIT 1; diff --git a/internal/endtoend/testdata/sqlite_table_options/sqlite/sqlc.json b/internal/endtoend/testdata/sqlite_table_options/sqlite/sqlc.json new file mode 100644 index 0000000000..3ed5eea856 --- /dev/null +++ b/internal/endtoend/testdata/sqlite_table_options/sqlite/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "sqlite", + "schema": "query.sql", + "queries": "query.sql", + "name": "querytest" + } + ] +} \ No newline at end of file diff --git a/internal/engine/sqlite/parser/SQLiteParser.g4 b/internal/engine/sqlite/parser/SQLiteParser.g4 index deccf81fe3..03371fd786 100644 --- a/internal/engine/sqlite/parser/SQLiteParser.g4 +++ b/internal/engine/sqlite/parser/SQLiteParser.g4 @@ -117,12 +117,17 @@ create_index_stmt: indexed_column: (column_name | expr) (COLLATE_ collation_name)? asc_desc? ; +table_option: + WITHOUT_ row_ROW_ID = IDENTIFIER + | STRICT_ +; + create_table_stmt: CREATE_ (TEMP_ | TEMPORARY_)? TABLE_ (IF_ NOT_ EXISTS_)? ( schema_name DOT )? table_name ( OPEN_PAR column_def (COMMA column_def)*? (COMMA table_constraint)* CLOSE_PAR ( - (WITHOUT_ row_ROW_ID = IDENTIFIER) | (STRICT_) + table_option (COMMA table_option)* )? | AS_ select_stmt ) diff --git a/internal/engine/sqlite/parser/SQLiteParser.interp b/internal/engine/sqlite/parser/SQLiteParser.interp index 1510b37c32..9d1a741caf 100644 --- a/internal/engine/sqlite/parser/SQLiteParser.interp +++ b/internal/engine/sqlite/parser/SQLiteParser.interp @@ -408,6 +408,7 @@ savepoint_stmt release_stmt create_index_stmt indexed_column +table_option create_table_stmt column_def type_name @@ -511,4 +512,4 @@ any_name atn: -[4, 1, 195, 2092, 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, 1, 0, 5, 0, 228, 8, 0, 10, 0, 12, 0, 231, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 236, 8, 1, 10, 1, 12, 1, 239, 9, 1, 1, 1, 1, 1, 4, 1, 243, 8, 1, 11, 1, 12, 1, 244, 1, 1, 5, 1, 248, 8, 1, 10, 1, 12, 1, 251, 9, 1, 1, 1, 5, 1, 254, 8, 1, 10, 1, 12, 1, 257, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 262, 8, 2, 3, 2, 264, 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, 3, 2, 290, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 297, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 304, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 310, 8, 3, 1, 3, 1, 3, 3, 3, 314, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 319, 8, 3, 1, 3, 3, 3, 322, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 329, 8, 4, 1, 4, 3, 4, 332, 8, 4, 1, 5, 1, 5, 3, 5, 336, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 344, 8, 6, 1, 6, 1, 6, 3, 6, 348, 8, 6, 3, 6, 350, 8, 6, 1, 7, 1, 7, 3, 7, 354, 8, 7, 1, 8, 1, 8, 3, 8, 358, 8, 8, 1, 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 3, 8, 365, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 372, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 378, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 384, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 389, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 398, 8, 11, 10, 11, 12, 11, 401, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 406, 8, 11, 1, 12, 1, 12, 3, 12, 410, 8, 12, 1, 12, 1, 12, 3, 12, 414, 8, 12, 1, 12, 3, 12, 417, 8, 12, 1, 13, 1, 13, 3, 13, 421, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 427, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 432, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 439, 8, 13, 10, 13, 12, 13, 442, 9, 13, 1, 13, 1, 13, 5, 13, 446, 8, 13, 10, 13, 12, 13, 449, 9, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 455, 8, 13, 1, 13, 1, 13, 3, 13, 459, 8, 13, 1, 14, 1, 14, 3, 14, 463, 8, 14, 1, 14, 5, 14, 466, 8, 14, 10, 14, 12, 14, 469, 9, 14, 1, 15, 4, 15, 472, 8, 15, 11, 15, 12, 15, 473, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 486, 8, 15, 1, 16, 1, 16, 3, 16, 490, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 495, 8, 16, 1, 16, 3, 16, 498, 8, 16, 1, 16, 3, 16, 501, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 506, 8, 16, 1, 16, 3, 16, 509, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 523, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 530, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 537, 8, 16, 3, 16, 539, 8, 16, 1, 17, 3, 17, 542, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 548, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 559, 8, 18, 10, 18, 12, 18, 562, 9, 18, 1, 18, 1, 18, 3, 18, 566, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 579, 8, 18, 10, 18, 12, 18, 582, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 595, 8, 19, 10, 19, 12, 19, 598, 9, 19, 1, 19, 1, 19, 3, 19, 602, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 612, 8, 19, 1, 19, 1, 19, 5, 19, 616, 8, 19, 10, 19, 12, 19, 619, 9, 19, 1, 19, 3, 19, 622, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 627, 8, 19, 3, 19, 629, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 648, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 655, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 664, 8, 21, 10, 21, 12, 21, 667, 9, 21, 3, 21, 669, 8, 21, 3, 21, 671, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 678, 8, 21, 1, 21, 1, 21, 3, 21, 682, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 689, 8, 21, 1, 21, 1, 21, 4, 21, 693, 8, 21, 11, 21, 12, 21, 694, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 701, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 707, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 712, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 719, 8, 22, 10, 22, 12, 22, 722, 9, 22, 1, 22, 1, 22, 3, 22, 726, 8, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 737, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 742, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 751, 8, 23, 10, 23, 12, 23, 754, 9, 23, 1, 23, 1, 23, 3, 23, 758, 8, 23, 1, 24, 1, 24, 3, 24, 762, 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, 5, 24, 776, 8, 24, 10, 24, 12, 24, 779, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 786, 8, 25, 10, 25, 12, 25, 789, 9, 25, 1, 25, 1, 25, 3, 25, 793, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 801, 8, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 811, 8, 27, 10, 27, 12, 27, 814, 9, 27, 1, 27, 1, 27, 3, 27, 818, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 829, 8, 28, 1, 28, 3, 28, 832, 8, 28, 3, 28, 834, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 840, 8, 28, 1, 28, 3, 28, 843, 8, 28, 3, 28, 845, 8, 28, 5, 28, 847, 8, 28, 10, 28, 12, 28, 850, 9, 28, 1, 29, 3, 29, 853, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 860, 8, 29, 1, 29, 3, 29, 863, 8, 29, 1, 30, 3, 30, 866, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 873, 8, 30, 1, 30, 3, 30, 876, 8, 30, 1, 30, 3, 30, 879, 8, 30, 1, 30, 3, 30, 882, 8, 30, 1, 31, 1, 31, 3, 31, 886, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 894, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 899, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 910, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 915, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 924, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 929, 8, 33, 10, 33, 12, 33, 932, 9, 33, 1, 33, 3, 33, 935, 8, 33, 1, 33, 1, 33, 3, 33, 939, 8, 33, 1, 33, 3, 33, 942, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 948, 8, 33, 10, 33, 12, 33, 951, 9, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 963, 8, 33, 1, 33, 3, 33, 966, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 974, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 981, 8, 33, 11, 33, 12, 33, 982, 1, 33, 1, 33, 3, 33, 987, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 992, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1022, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1033, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1045, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1051, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1058, 8, 33, 1, 33, 1, 33, 3, 33, 1062, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1070, 8, 33, 10, 33, 12, 33, 1073, 9, 33, 3, 33, 1075, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1081, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1087, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1094, 8, 33, 10, 33, 12, 33, 1097, 9, 33, 3, 33, 1099, 8, 33, 1, 33, 1, 33, 3, 33, 1103, 8, 33, 5, 33, 1105, 8, 33, 10, 33, 12, 33, 1108, 9, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1116, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 3, 36, 1123, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1130, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1136, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1141, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1147, 8, 36, 10, 36, 12, 36, 1150, 9, 36, 1, 36, 1, 36, 3, 36, 1154, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1161, 8, 36, 10, 36, 12, 36, 1164, 9, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1172, 8, 36, 10, 36, 12, 36, 1175, 9, 36, 1, 36, 1, 36, 5, 36, 1179, 8, 36, 10, 36, 12, 36, 1182, 9, 36, 1, 36, 3, 36, 1185, 8, 36, 1, 36, 3, 36, 1188, 8, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 3, 36, 1195, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1203, 8, 37, 10, 37, 12, 37, 1206, 9, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1211, 8, 37, 3, 37, 1213, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1221, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1228, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1233, 8, 37, 10, 37, 12, 37, 1236, 9, 37, 1, 37, 1, 37, 3, 37, 1240, 8, 37, 3, 37, 1242, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1248, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1257, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1262, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1269, 8, 40, 1, 40, 1, 40, 3, 40, 1273, 8, 40, 3, 40, 1275, 8, 40, 1, 41, 3, 41, 1278, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1284, 8, 41, 10, 41, 12, 41, 1287, 9, 41, 1, 41, 3, 41, 1290, 8, 41, 1, 41, 3, 41, 1293, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1299, 8, 42, 5, 42, 1301, 8, 42, 10, 42, 12, 42, 1304, 9, 42, 1, 43, 1, 43, 3, 43, 1308, 8, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1313, 8, 43, 10, 43, 12, 43, 1316, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1322, 8, 43, 10, 43, 12, 43, 1325, 9, 43, 1, 43, 3, 43, 1328, 8, 43, 3, 43, 1330, 8, 43, 1, 43, 1, 43, 3, 43, 1334, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1341, 8, 43, 10, 43, 12, 43, 1344, 9, 43, 1, 43, 1, 43, 3, 43, 1348, 8, 43, 3, 43, 1350, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1361, 8, 43, 10, 43, 12, 43, 1364, 9, 43, 3, 43, 1366, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1373, 8, 43, 10, 43, 12, 43, 1376, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1384, 8, 43, 10, 43, 12, 43, 1387, 9, 43, 1, 43, 1, 43, 5, 43, 1391, 8, 43, 10, 43, 12, 43, 1394, 9, 43, 3, 43, 1396, 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1401, 8, 45, 1, 45, 1, 45, 3, 45, 1405, 8, 45, 1, 45, 3, 45, 1408, 8, 45, 1, 46, 3, 46, 1411, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1416, 8, 46, 1, 46, 1, 46, 3, 46, 1420, 8, 46, 1, 46, 4, 46, 1423, 8, 46, 11, 46, 12, 46, 1424, 1, 46, 3, 46, 1428, 8, 46, 1, 46, 3, 46, 1431, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1436, 8, 47, 1, 47, 1, 47, 3, 47, 1440, 8, 47, 1, 47, 3, 47, 1443, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1450, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1455, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1462, 8, 47, 10, 47, 12, 47, 1465, 9, 47, 1, 47, 1, 47, 3, 47, 1469, 8, 47, 1, 47, 3, 47, 1472, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1478, 8, 47, 10, 47, 12, 47, 1481, 9, 47, 1, 47, 3, 47, 1484, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1492, 8, 47, 1, 47, 3, 47, 1495, 8, 47, 3, 47, 1497, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1506, 8, 48, 1, 48, 3, 48, 1509, 8, 48, 3, 48, 1511, 8, 48, 1, 49, 1, 49, 3, 49, 1515, 8, 49, 1, 49, 1, 49, 3, 49, 1519, 8, 49, 1, 49, 1, 49, 3, 49, 1523, 8, 49, 1, 49, 3, 49, 1526, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1535, 8, 50, 10, 50, 12, 50, 1538, 9, 50, 1, 50, 1, 50, 3, 50, 1542, 8, 50, 1, 51, 1, 51, 3, 51, 1546, 8, 51, 1, 51, 1, 51, 3, 51, 1550, 8, 51, 1, 52, 3, 52, 1553, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1558, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1564, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1571, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1576, 8, 52, 10, 52, 12, 52, 1579, 9, 52, 1, 52, 1, 52, 3, 52, 1583, 8, 52, 1, 52, 3, 52, 1586, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1592, 8, 53, 10, 53, 12, 53, 1595, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1600, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1605, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1611, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1618, 8, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1623, 8, 54, 10, 54, 12, 54, 1626, 9, 54, 1, 54, 1, 54, 3, 54, 1630, 8, 54, 1, 54, 3, 54, 1633, 8, 54, 1, 54, 3, 54, 1636, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1641, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1646, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1653, 8, 55, 1, 56, 1, 56, 3, 56, 1657, 8, 56, 1, 56, 1, 56, 3, 56, 1661, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1671, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1678, 8, 58, 10, 58, 12, 58, 1681, 9, 58, 3, 58, 1683, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1690, 8, 58, 10, 58, 12, 58, 1693, 9, 58, 1, 58, 3, 58, 1696, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1704, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1711, 8, 59, 10, 59, 12, 59, 1714, 9, 59, 3, 59, 1716, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1723, 8, 59, 10, 59, 12, 59, 1726, 9, 59, 3, 59, 1728, 8, 59, 1, 59, 3, 59, 1731, 8, 59, 1, 59, 3, 59, 1734, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1744, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1753, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1760, 8, 62, 10, 62, 12, 62, 1763, 9, 62, 1, 62, 3, 62, 1766, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1773, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1778, 8, 63, 10, 63, 12, 63, 1781, 9, 63, 1, 63, 3, 63, 1784, 8, 63, 1, 63, 1, 63, 3, 63, 1788, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1795, 8, 64, 10, 64, 12, 64, 1798, 9, 64, 1, 64, 3, 64, 1801, 8, 64, 1, 64, 1, 64, 3, 64, 1805, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1810, 8, 64, 1, 65, 1, 65, 3, 65, 1814, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1819, 8, 65, 10, 65, 12, 65, 1822, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1829, 8, 66, 10, 66, 12, 66, 1832, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1838, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1843, 8, 68, 1, 68, 3, 68, 1846, 8, 68, 1, 68, 1, 68, 3, 68, 1850, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1864, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1876, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1885, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1894, 8, 73, 1, 73, 1, 73, 3, 73, 1898, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1908, 8, 73, 1, 73, 3, 73, 1911, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1920, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1929, 8, 73, 1, 73, 3, 73, 1932, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1938, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1952, 8, 73, 1, 73, 1, 73, 3, 73, 1956, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1967, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1972, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1983, 8, 76, 11, 76, 12, 76, 1984, 1, 77, 1, 77, 1, 77, 4, 77, 1990, 8, 77, 11, 77, 12, 77, 1991, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 2000, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2005, 8, 79, 5, 79, 2007, 8, 79, 10, 79, 12, 79, 2010, 9, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2022, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2035, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2090, 8, 112, 1, 112, 2, 440, 473, 1, 66, 113, 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, 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, 2, 0, 147, 147, 172, 172, 1, 0, 8, 9, 2, 0, 59, 59, 142, 142, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, 122, 126, 126, 4, 0, 84, 84, 133, 133, 139, 139, 146, 146, 2, 0, 7, 7, 12, 13, 1, 0, 14, 17, 1, 0, 18, 21, 4, 0, 77, 77, 97, 97, 99, 99, 118, 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 173, 174, 187, 187, 190, 191, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 155, 155, 180, 180, 2, 0, 5, 5, 106, 106, 1, 0, 177, 178, 2, 0, 34, 34, 60, 60, 2, 0, 152, 152, 163, 163, 2, 0, 160, 160, 167, 167, 2, 0, 161, 161, 168, 169, 2, 0, 162, 162, 164, 164, 2, 0, 8, 10, 102, 102, 2, 0, 186, 186, 190, 190, 1, 0, 25, 181, 2380, 0, 229, 1, 0, 0, 0, 2, 237, 1, 0, 0, 0, 4, 263, 1, 0, 0, 0, 6, 291, 1, 0, 0, 0, 8, 323, 1, 0, 0, 0, 10, 333, 1, 0, 0, 0, 12, 341, 1, 0, 0, 0, 14, 351, 1, 0, 0, 0, 16, 355, 1, 0, 0, 0, 18, 366, 1, 0, 0, 0, 20, 369, 1, 0, 0, 0, 22, 375, 1, 0, 0, 0, 24, 409, 1, 0, 0, 0, 26, 418, 1, 0, 0, 0, 28, 460, 1, 0, 0, 0, 30, 471, 1, 0, 0, 0, 32, 489, 1, 0, 0, 0, 34, 541, 1, 0, 0, 0, 36, 547, 1, 0, 0, 0, 38, 588, 1, 0, 0, 0, 40, 630, 1, 0, 0, 0, 42, 634, 1, 0, 0, 0, 44, 698, 1, 0, 0, 0, 46, 730, 1, 0, 0, 0, 48, 759, 1, 0, 0, 0, 50, 780, 1, 0, 0, 0, 52, 794, 1, 0, 0, 0, 54, 805, 1, 0, 0, 0, 56, 824, 1, 0, 0, 0, 58, 852, 1, 0, 0, 0, 60, 865, 1, 0, 0, 0, 62, 883, 1, 0, 0, 0, 64, 889, 1, 0, 0, 0, 66, 991, 1, 0, 0, 0, 68, 1109, 1, 0, 0, 0, 70, 1119, 1, 0, 0, 0, 72, 1194, 1, 0, 0, 0, 74, 1196, 1, 0, 0, 0, 76, 1243, 1, 0, 0, 0, 78, 1261, 1, 0, 0, 0, 80, 1263, 1, 0, 0, 0, 82, 1277, 1, 0, 0, 0, 84, 1294, 1, 0, 0, 0, 86, 1395, 1, 0, 0, 0, 88, 1397, 1, 0, 0, 0, 90, 1400, 1, 0, 0, 0, 92, 1410, 1, 0, 0, 0, 94, 1496, 1, 0, 0, 0, 96, 1510, 1, 0, 0, 0, 98, 1525, 1, 0, 0, 0, 100, 1541, 1, 0, 0, 0, 102, 1549, 1, 0, 0, 0, 104, 1552, 1, 0, 0, 0, 106, 1587, 1, 0, 0, 0, 108, 1599, 1, 0, 0, 0, 110, 1640, 1, 0, 0, 0, 112, 1654, 1, 0, 0, 0, 114, 1662, 1, 0, 0, 0, 116, 1668, 1, 0, 0, 0, 118, 1699, 1, 0, 0, 0, 120, 1735, 1, 0, 0, 0, 122, 1745, 1, 0, 0, 0, 124, 1754, 1, 0, 0, 0, 126, 1769, 1, 0, 0, 0, 128, 1789, 1, 0, 0, 0, 130, 1811, 1, 0, 0, 0, 132, 1823, 1, 0, 0, 0, 134, 1833, 1, 0, 0, 0, 136, 1839, 1, 0, 0, 0, 138, 1851, 1, 0, 0, 0, 140, 1863, 1, 0, 0, 0, 142, 1875, 1, 0, 0, 0, 144, 1884, 1, 0, 0, 0, 146, 1971, 1, 0, 0, 0, 148, 1973, 1, 0, 0, 0, 150, 1976, 1, 0, 0, 0, 152, 1979, 1, 0, 0, 0, 154, 1986, 1, 0, 0, 0, 156, 1993, 1, 0, 0, 0, 158, 1997, 1, 0, 0, 0, 160, 2011, 1, 0, 0, 0, 162, 2013, 1, 0, 0, 0, 164, 2015, 1, 0, 0, 0, 166, 2017, 1, 0, 0, 0, 168, 2021, 1, 0, 0, 0, 170, 2023, 1, 0, 0, 0, 172, 2025, 1, 0, 0, 0, 174, 2027, 1, 0, 0, 0, 176, 2029, 1, 0, 0, 0, 178, 2034, 1, 0, 0, 0, 180, 2038, 1, 0, 0, 0, 182, 2040, 1, 0, 0, 0, 184, 2042, 1, 0, 0, 0, 186, 2044, 1, 0, 0, 0, 188, 2046, 1, 0, 0, 0, 190, 2048, 1, 0, 0, 0, 192, 2050, 1, 0, 0, 0, 194, 2052, 1, 0, 0, 0, 196, 2054, 1, 0, 0, 0, 198, 2056, 1, 0, 0, 0, 200, 2058, 1, 0, 0, 0, 202, 2060, 1, 0, 0, 0, 204, 2062, 1, 0, 0, 0, 206, 2064, 1, 0, 0, 0, 208, 2066, 1, 0, 0, 0, 210, 2068, 1, 0, 0, 0, 212, 2070, 1, 0, 0, 0, 214, 2072, 1, 0, 0, 0, 216, 2074, 1, 0, 0, 0, 218, 2076, 1, 0, 0, 0, 220, 2078, 1, 0, 0, 0, 222, 2080, 1, 0, 0, 0, 224, 2089, 1, 0, 0, 0, 226, 228, 3, 2, 1, 0, 227, 226, 1, 0, 0, 0, 228, 231, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 232, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 232, 233, 5, 0, 0, 1, 233, 1, 1, 0, 0, 0, 234, 236, 5, 1, 0, 0, 235, 234, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 240, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 249, 3, 4, 2, 0, 241, 243, 5, 1, 0, 0, 242, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 248, 3, 4, 2, 0, 247, 242, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 255, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 254, 5, 1, 0, 0, 253, 252, 1, 0, 0, 0, 254, 257, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 3, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 258, 261, 5, 71, 0, 0, 259, 260, 5, 114, 0, 0, 260, 262, 5, 111, 0, 0, 261, 259, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 264, 1, 0, 0, 0, 263, 258, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 289, 1, 0, 0, 0, 265, 290, 3, 6, 3, 0, 266, 290, 3, 8, 4, 0, 267, 290, 3, 10, 5, 0, 268, 290, 3, 12, 6, 0, 269, 290, 3, 14, 7, 0, 270, 290, 3, 22, 11, 0, 271, 290, 3, 26, 13, 0, 272, 290, 3, 42, 21, 0, 273, 290, 3, 44, 22, 0, 274, 290, 3, 46, 23, 0, 275, 290, 3, 58, 29, 0, 276, 290, 3, 60, 30, 0, 277, 290, 3, 62, 31, 0, 278, 290, 3, 64, 32, 0, 279, 290, 3, 72, 36, 0, 280, 290, 3, 76, 38, 0, 281, 290, 3, 80, 40, 0, 282, 290, 3, 20, 10, 0, 283, 290, 3, 16, 8, 0, 284, 290, 3, 18, 9, 0, 285, 290, 3, 82, 41, 0, 286, 290, 3, 104, 52, 0, 287, 290, 3, 108, 54, 0, 288, 290, 3, 112, 56, 0, 289, 265, 1, 0, 0, 0, 289, 266, 1, 0, 0, 0, 289, 267, 1, 0, 0, 0, 289, 268, 1, 0, 0, 0, 289, 269, 1, 0, 0, 0, 289, 270, 1, 0, 0, 0, 289, 271, 1, 0, 0, 0, 289, 272, 1, 0, 0, 0, 289, 273, 1, 0, 0, 0, 289, 274, 1, 0, 0, 0, 289, 275, 1, 0, 0, 0, 289, 276, 1, 0, 0, 0, 289, 277, 1, 0, 0, 0, 289, 278, 1, 0, 0, 0, 289, 279, 1, 0, 0, 0, 289, 280, 1, 0, 0, 0, 289, 281, 1, 0, 0, 0, 289, 282, 1, 0, 0, 0, 289, 283, 1, 0, 0, 0, 289, 284, 1, 0, 0, 0, 289, 285, 1, 0, 0, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 290, 5, 1, 0, 0, 0, 291, 292, 5, 30, 0, 0, 292, 296, 5, 133, 0, 0, 293, 294, 3, 180, 90, 0, 294, 295, 5, 2, 0, 0, 295, 297, 1, 0, 0, 0, 296, 293, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 321, 3, 182, 91, 0, 299, 309, 5, 121, 0, 0, 300, 301, 5, 137, 0, 0, 301, 310, 3, 186, 93, 0, 302, 304, 5, 46, 0, 0, 303, 302, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306, 3, 188, 94, 0, 306, 307, 5, 137, 0, 0, 307, 308, 3, 188, 94, 0, 308, 310, 1, 0, 0, 0, 309, 300, 1, 0, 0, 0, 309, 303, 1, 0, 0, 0, 310, 322, 1, 0, 0, 0, 311, 313, 5, 27, 0, 0, 312, 314, 5, 46, 0, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 322, 3, 28, 14, 0, 316, 318, 5, 63, 0, 0, 317, 319, 5, 46, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 322, 3, 188, 94, 0, 321, 299, 1, 0, 0, 0, 321, 311, 1, 0, 0, 0, 321, 316, 1, 0, 0, 0, 322, 7, 1, 0, 0, 0, 323, 331, 5, 31, 0, 0, 324, 332, 3, 180, 90, 0, 325, 326, 3, 180, 90, 0, 326, 327, 5, 2, 0, 0, 327, 329, 1, 0, 0, 0, 328, 325, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 332, 3, 184, 92, 0, 331, 324, 1, 0, 0, 0, 331, 328, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 9, 1, 0, 0, 0, 333, 335, 5, 35, 0, 0, 334, 336, 5, 55, 0, 0, 335, 334, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 3, 66, 33, 0, 338, 339, 5, 33, 0, 0, 339, 340, 3, 180, 90, 0, 340, 11, 1, 0, 0, 0, 341, 343, 5, 38, 0, 0, 342, 344, 7, 0, 0, 0, 343, 342, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 349, 1, 0, 0, 0, 345, 347, 5, 138, 0, 0, 346, 348, 3, 208, 104, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 345, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 13, 1, 0, 0, 0, 351, 353, 7, 1, 0, 0, 352, 354, 5, 138, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 15, 1, 0, 0, 0, 355, 357, 5, 126, 0, 0, 356, 358, 5, 138, 0, 0, 357, 356, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 364, 1, 0, 0, 0, 359, 361, 5, 137, 0, 0, 360, 362, 5, 129, 0, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 365, 3, 204, 102, 0, 364, 359, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 17, 1, 0, 0, 0, 366, 367, 5, 129, 0, 0, 367, 368, 3, 204, 102, 0, 368, 19, 1, 0, 0, 0, 369, 371, 5, 120, 0, 0, 370, 372, 5, 129, 0, 0, 371, 370, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 3, 204, 102, 0, 374, 21, 1, 0, 0, 0, 375, 377, 5, 50, 0, 0, 376, 378, 5, 141, 0, 0, 377, 376, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 383, 5, 84, 0, 0, 380, 381, 5, 80, 0, 0, 381, 382, 5, 102, 0, 0, 382, 384, 5, 70, 0, 0, 383, 380, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 388, 1, 0, 0, 0, 385, 386, 3, 180, 90, 0, 386, 387, 5, 2, 0, 0, 387, 389, 1, 0, 0, 0, 388, 385, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 391, 3, 194, 97, 0, 391, 392, 5, 107, 0, 0, 392, 393, 3, 182, 91, 0, 393, 394, 5, 3, 0, 0, 394, 399, 3, 24, 12, 0, 395, 396, 5, 5, 0, 0, 396, 398, 3, 24, 12, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 402, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 405, 5, 4, 0, 0, 403, 404, 5, 149, 0, 0, 404, 406, 3, 66, 33, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 23, 1, 0, 0, 0, 407, 410, 3, 188, 94, 0, 408, 410, 3, 66, 33, 0, 409, 407, 1, 0, 0, 0, 409, 408, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 414, 3, 190, 95, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 416, 1, 0, 0, 0, 415, 417, 3, 138, 69, 0, 416, 415, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 25, 1, 0, 0, 0, 418, 420, 5, 50, 0, 0, 419, 421, 7, 2, 0, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 426, 5, 133, 0, 0, 423, 424, 5, 80, 0, 0, 424, 425, 5, 102, 0, 0, 425, 427, 5, 70, 0, 0, 426, 423, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 431, 1, 0, 0, 0, 428, 429, 3, 180, 90, 0, 429, 430, 5, 2, 0, 0, 430, 432, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 458, 3, 182, 91, 0, 434, 435, 5, 3, 0, 0, 435, 440, 3, 28, 14, 0, 436, 437, 5, 5, 0, 0, 437, 439, 3, 28, 14, 0, 438, 436, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 447, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, 444, 446, 3, 36, 18, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 450, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 454, 5, 4, 0, 0, 451, 452, 5, 151, 0, 0, 452, 455, 5, 186, 0, 0, 453, 455, 5, 132, 0, 0, 454, 451, 1, 0, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 459, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 459, 3, 82, 41, 0, 458, 434, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 27, 1, 0, 0, 0, 460, 462, 3, 188, 94, 0, 461, 463, 3, 30, 15, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 467, 1, 0, 0, 0, 464, 466, 3, 32, 16, 0, 465, 464, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 29, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 470, 472, 3, 174, 87, 0, 471, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 485, 1, 0, 0, 0, 475, 476, 5, 3, 0, 0, 476, 477, 3, 34, 17, 0, 477, 478, 5, 4, 0, 0, 478, 486, 1, 0, 0, 0, 479, 480, 5, 3, 0, 0, 480, 481, 3, 34, 17, 0, 481, 482, 5, 5, 0, 0, 482, 483, 3, 34, 17, 0, 483, 484, 5, 4, 0, 0, 484, 486, 1, 0, 0, 0, 485, 475, 1, 0, 0, 0, 485, 479, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 31, 1, 0, 0, 0, 487, 488, 5, 49, 0, 0, 488, 490, 3, 174, 87, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 538, 1, 0, 0, 0, 491, 492, 5, 113, 0, 0, 492, 494, 5, 95, 0, 0, 493, 495, 3, 138, 69, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 3, 40, 20, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 500, 1, 0, 0, 0, 499, 501, 5, 36, 0, 0, 500, 499, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 539, 1, 0, 0, 0, 502, 503, 5, 102, 0, 0, 503, 506, 5, 104, 0, 0, 504, 506, 5, 141, 0, 0, 505, 502, 1, 0, 0, 0, 505, 504, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 509, 3, 40, 20, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 539, 1, 0, 0, 0, 510, 511, 5, 44, 0, 0, 511, 512, 5, 3, 0, 0, 512, 513, 3, 66, 33, 0, 513, 514, 5, 4, 0, 0, 514, 539, 1, 0, 0, 0, 515, 522, 5, 56, 0, 0, 516, 523, 3, 34, 17, 0, 517, 523, 3, 70, 35, 0, 518, 519, 5, 3, 0, 0, 519, 520, 3, 66, 33, 0, 520, 521, 5, 4, 0, 0, 521, 523, 1, 0, 0, 0, 522, 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 523, 539, 1, 0, 0, 0, 524, 525, 5, 45, 0, 0, 525, 539, 3, 190, 95, 0, 526, 539, 3, 38, 19, 0, 527, 528, 5, 170, 0, 0, 528, 530, 5, 171, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 33, 0, 0, 532, 533, 5, 3, 0, 0, 533, 534, 3, 66, 33, 0, 534, 536, 5, 4, 0, 0, 535, 537, 7, 3, 0, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 539, 1, 0, 0, 0, 538, 491, 1, 0, 0, 0, 538, 505, 1, 0, 0, 0, 538, 510, 1, 0, 0, 0, 538, 515, 1, 0, 0, 0, 538, 524, 1, 0, 0, 0, 538, 526, 1, 0, 0, 0, 538, 529, 1, 0, 0, 0, 539, 33, 1, 0, 0, 0, 540, 542, 7, 4, 0, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 5, 187, 0, 0, 544, 35, 1, 0, 0, 0, 545, 546, 5, 49, 0, 0, 546, 548, 3, 174, 87, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 586, 1, 0, 0, 0, 549, 550, 5, 113, 0, 0, 550, 553, 5, 95, 0, 0, 551, 553, 5, 141, 0, 0, 552, 549, 1, 0, 0, 0, 552, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 5, 3, 0, 0, 555, 560, 3, 24, 12, 0, 556, 557, 5, 5, 0, 0, 557, 559, 3, 24, 12, 0, 558, 556, 1, 0, 0, 0, 559, 562, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 563, 1, 0, 0, 0, 562, 560, 1, 0, 0, 0, 563, 565, 5, 4, 0, 0, 564, 566, 3, 40, 20, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 587, 1, 0, 0, 0, 567, 568, 5, 44, 0, 0, 568, 569, 5, 3, 0, 0, 569, 570, 3, 66, 33, 0, 570, 571, 5, 4, 0, 0, 571, 587, 1, 0, 0, 0, 572, 573, 5, 74, 0, 0, 573, 574, 5, 95, 0, 0, 574, 575, 5, 3, 0, 0, 575, 580, 3, 188, 94, 0, 576, 577, 5, 5, 0, 0, 577, 579, 3, 188, 94, 0, 578, 576, 1, 0, 0, 0, 579, 582, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 583, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 583, 584, 5, 4, 0, 0, 584, 585, 3, 38, 19, 0, 585, 587, 1, 0, 0, 0, 586, 552, 1, 0, 0, 0, 586, 567, 1, 0, 0, 0, 586, 572, 1, 0, 0, 0, 587, 37, 1, 0, 0, 0, 588, 589, 5, 117, 0, 0, 589, 601, 3, 192, 96, 0, 590, 591, 5, 3, 0, 0, 591, 596, 3, 188, 94, 0, 592, 593, 5, 5, 0, 0, 593, 595, 3, 188, 94, 0, 594, 592, 1, 0, 0, 0, 595, 598, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 599, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 599, 600, 5, 4, 0, 0, 600, 602, 1, 0, 0, 0, 601, 590, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 617, 1, 0, 0, 0, 603, 604, 5, 107, 0, 0, 604, 611, 7, 5, 0, 0, 605, 606, 5, 131, 0, 0, 606, 612, 7, 6, 0, 0, 607, 612, 5, 41, 0, 0, 608, 612, 5, 123, 0, 0, 609, 610, 5, 101, 0, 0, 610, 612, 5, 26, 0, 0, 611, 605, 1, 0, 0, 0, 611, 607, 1, 0, 0, 0, 611, 608, 1, 0, 0, 0, 611, 609, 1, 0, 0, 0, 612, 616, 1, 0, 0, 0, 613, 614, 5, 99, 0, 0, 614, 616, 3, 174, 87, 0, 615, 603, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 619, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 628, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 620, 622, 5, 102, 0, 0, 621, 620, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 626, 5, 57, 0, 0, 624, 625, 5, 86, 0, 0, 625, 627, 7, 7, 0, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 1, 0, 0, 0, 628, 621, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 39, 1, 0, 0, 0, 630, 631, 5, 107, 0, 0, 631, 632, 5, 48, 0, 0, 632, 633, 7, 8, 0, 0, 633, 41, 1, 0, 0, 0, 634, 636, 5, 50, 0, 0, 635, 637, 7, 2, 0, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 5, 139, 0, 0, 639, 640, 5, 80, 0, 0, 640, 641, 5, 102, 0, 0, 641, 643, 5, 70, 0, 0, 642, 639, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 647, 1, 0, 0, 0, 644, 645, 3, 180, 90, 0, 645, 646, 5, 2, 0, 0, 646, 648, 1, 0, 0, 0, 647, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 654, 3, 196, 98, 0, 650, 655, 5, 37, 0, 0, 651, 655, 5, 28, 0, 0, 652, 653, 5, 89, 0, 0, 653, 655, 5, 105, 0, 0, 654, 650, 1, 0, 0, 0, 654, 651, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 670, 1, 0, 0, 0, 656, 671, 5, 59, 0, 0, 657, 671, 5, 88, 0, 0, 658, 668, 5, 142, 0, 0, 659, 660, 5, 105, 0, 0, 660, 665, 3, 188, 94, 0, 661, 662, 5, 5, 0, 0, 662, 664, 3, 188, 94, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 659, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 656, 1, 0, 0, 0, 670, 657, 1, 0, 0, 0, 670, 658, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 107, 0, 0, 673, 677, 3, 182, 91, 0, 674, 675, 5, 73, 0, 0, 675, 676, 5, 64, 0, 0, 676, 678, 5, 127, 0, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 680, 5, 148, 0, 0, 680, 682, 3, 66, 33, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 692, 5, 38, 0, 0, 684, 689, 3, 104, 52, 0, 685, 689, 3, 72, 36, 0, 686, 689, 3, 58, 29, 0, 687, 689, 3, 82, 41, 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, 690, 1, 0, 0, 0, 690, 691, 5, 1, 0, 0, 691, 693, 1, 0, 0, 0, 692, 688, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 5, 66, 0, 0, 697, 43, 1, 0, 0, 0, 698, 700, 5, 50, 0, 0, 699, 701, 7, 2, 0, 0, 700, 699, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 706, 5, 146, 0, 0, 703, 704, 5, 80, 0, 0, 704, 705, 5, 102, 0, 0, 705, 707, 5, 70, 0, 0, 706, 703, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 711, 1, 0, 0, 0, 708, 709, 3, 180, 90, 0, 709, 710, 5, 2, 0, 0, 710, 712, 1, 0, 0, 0, 711, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 725, 3, 198, 99, 0, 714, 715, 5, 3, 0, 0, 715, 720, 3, 188, 94, 0, 716, 717, 5, 5, 0, 0, 717, 719, 3, 188, 94, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 723, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 5, 4, 0, 0, 724, 726, 1, 0, 0, 0, 725, 714, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 5, 33, 0, 0, 728, 729, 3, 82, 41, 0, 729, 45, 1, 0, 0, 0, 730, 731, 5, 50, 0, 0, 731, 732, 5, 147, 0, 0, 732, 736, 5, 133, 0, 0, 733, 734, 5, 80, 0, 0, 734, 735, 5, 102, 0, 0, 735, 737, 5, 70, 0, 0, 736, 733, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 741, 1, 0, 0, 0, 738, 739, 3, 180, 90, 0, 739, 740, 5, 2, 0, 0, 740, 742, 1, 0, 0, 0, 741, 738, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 3, 182, 91, 0, 744, 745, 5, 143, 0, 0, 745, 757, 3, 200, 100, 0, 746, 747, 5, 3, 0, 0, 747, 752, 3, 168, 84, 0, 748, 749, 5, 5, 0, 0, 749, 751, 3, 168, 84, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 756, 5, 4, 0, 0, 756, 758, 1, 0, 0, 0, 757, 746, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 47, 1, 0, 0, 0, 759, 761, 5, 150, 0, 0, 760, 762, 5, 116, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 3, 50, 25, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 3, 0, 0, 766, 767, 3, 82, 41, 0, 767, 777, 5, 4, 0, 0, 768, 769, 5, 5, 0, 0, 769, 770, 3, 50, 25, 0, 770, 771, 5, 33, 0, 0, 771, 772, 5, 3, 0, 0, 772, 773, 3, 82, 41, 0, 773, 774, 5, 4, 0, 0, 774, 776, 1, 0, 0, 0, 775, 768, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 49, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 792, 3, 182, 91, 0, 781, 782, 5, 3, 0, 0, 782, 787, 3, 188, 94, 0, 783, 784, 5, 5, 0, 0, 784, 786, 3, 188, 94, 0, 785, 783, 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, 4, 0, 0, 791, 793, 1, 0, 0, 0, 792, 781, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 51, 1, 0, 0, 0, 794, 795, 3, 50, 25, 0, 795, 796, 5, 33, 0, 0, 796, 797, 5, 3, 0, 0, 797, 798, 3, 160, 80, 0, 798, 800, 5, 140, 0, 0, 799, 801, 5, 29, 0, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 3, 162, 81, 0, 803, 804, 5, 4, 0, 0, 804, 53, 1, 0, 0, 0, 805, 817, 3, 182, 91, 0, 806, 807, 5, 3, 0, 0, 807, 812, 3, 188, 94, 0, 808, 809, 5, 5, 0, 0, 809, 811, 3, 188, 94, 0, 810, 808, 1, 0, 0, 0, 811, 814, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 812, 1, 0, 0, 0, 815, 816, 5, 4, 0, 0, 816, 818, 1, 0, 0, 0, 817, 806, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 5, 33, 0, 0, 820, 821, 5, 3, 0, 0, 821, 822, 3, 82, 41, 0, 822, 823, 5, 4, 0, 0, 823, 55, 1, 0, 0, 0, 824, 833, 5, 124, 0, 0, 825, 834, 5, 7, 0, 0, 826, 831, 3, 66, 33, 0, 827, 829, 5, 33, 0, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 3, 170, 85, 0, 831, 828, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 825, 1, 0, 0, 0, 833, 826, 1, 0, 0, 0, 834, 848, 1, 0, 0, 0, 835, 844, 5, 5, 0, 0, 836, 845, 5, 7, 0, 0, 837, 842, 3, 66, 33, 0, 838, 840, 5, 33, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 3, 170, 85, 0, 842, 839, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 836, 1, 0, 0, 0, 844, 837, 1, 0, 0, 0, 845, 847, 1, 0, 0, 0, 846, 835, 1, 0, 0, 0, 847, 850, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 57, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 851, 853, 3, 48, 24, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 5, 59, 0, 0, 855, 856, 5, 75, 0, 0, 856, 859, 3, 110, 55, 0, 857, 858, 5, 149, 0, 0, 858, 860, 3, 66, 33, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 863, 3, 56, 28, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 59, 1, 0, 0, 0, 864, 866, 3, 48, 24, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 5, 59, 0, 0, 868, 869, 5, 75, 0, 0, 869, 872, 3, 110, 55, 0, 870, 871, 5, 149, 0, 0, 871, 873, 3, 66, 33, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 878, 1, 0, 0, 0, 874, 876, 3, 132, 66, 0, 875, 874, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 3, 134, 67, 0, 878, 875, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 881, 1, 0, 0, 0, 880, 882, 3, 56, 28, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 61, 1, 0, 0, 0, 883, 885, 5, 61, 0, 0, 884, 886, 5, 55, 0, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 888, 3, 180, 90, 0, 888, 63, 1, 0, 0, 0, 889, 890, 5, 63, 0, 0, 890, 893, 7, 9, 0, 0, 891, 892, 5, 80, 0, 0, 892, 894, 5, 70, 0, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 898, 1, 0, 0, 0, 895, 896, 3, 180, 90, 0, 896, 897, 5, 2, 0, 0, 897, 899, 1, 0, 0, 0, 898, 895, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 901, 3, 224, 112, 0, 901, 65, 1, 0, 0, 0, 902, 903, 6, 33, -1, 0, 903, 992, 3, 70, 35, 0, 904, 992, 5, 188, 0, 0, 905, 992, 5, 189, 0, 0, 906, 907, 3, 180, 90, 0, 907, 908, 5, 2, 0, 0, 908, 910, 1, 0, 0, 0, 909, 906, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 3, 182, 91, 0, 912, 913, 5, 2, 0, 0, 913, 915, 1, 0, 0, 0, 914, 909, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 992, 3, 188, 94, 0, 917, 918, 3, 164, 82, 0, 918, 919, 3, 66, 33, 20, 919, 992, 1, 0, 0, 0, 920, 921, 3, 178, 89, 0, 921, 934, 5, 3, 0, 0, 922, 924, 5, 62, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 930, 3, 66, 33, 0, 926, 927, 5, 5, 0, 0, 927, 929, 3, 66, 33, 0, 928, 926, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 935, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 935, 5, 7, 0, 0, 934, 923, 1, 0, 0, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 5, 4, 0, 0, 937, 939, 3, 114, 57, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 1, 0, 0, 0, 940, 942, 3, 118, 59, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 992, 1, 0, 0, 0, 943, 944, 5, 3, 0, 0, 944, 949, 3, 66, 33, 0, 945, 946, 5, 5, 0, 0, 946, 948, 3, 66, 33, 0, 947, 945, 1, 0, 0, 0, 948, 951, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 952, 953, 5, 4, 0, 0, 953, 992, 1, 0, 0, 0, 954, 955, 5, 43, 0, 0, 955, 956, 5, 3, 0, 0, 956, 957, 3, 66, 33, 0, 957, 958, 5, 33, 0, 0, 958, 959, 3, 30, 15, 0, 959, 960, 5, 4, 0, 0, 960, 992, 1, 0, 0, 0, 961, 963, 5, 102, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 5, 70, 0, 0, 965, 962, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 5, 3, 0, 0, 968, 969, 3, 82, 41, 0, 969, 970, 5, 4, 0, 0, 970, 992, 1, 0, 0, 0, 971, 973, 5, 42, 0, 0, 972, 974, 3, 66, 33, 0, 973, 972, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 980, 1, 0, 0, 0, 975, 976, 5, 148, 0, 0, 976, 977, 3, 66, 33, 0, 977, 978, 5, 136, 0, 0, 978, 979, 3, 66, 33, 0, 979, 981, 1, 0, 0, 0, 980, 975, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 985, 5, 65, 0, 0, 985, 987, 3, 66, 33, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 5, 66, 0, 0, 989, 992, 1, 0, 0, 0, 990, 992, 3, 68, 34, 0, 991, 902, 1, 0, 0, 0, 991, 904, 1, 0, 0, 0, 991, 905, 1, 0, 0, 0, 991, 914, 1, 0, 0, 0, 991, 917, 1, 0, 0, 0, 991, 920, 1, 0, 0, 0, 991, 943, 1, 0, 0, 0, 991, 954, 1, 0, 0, 0, 991, 965, 1, 0, 0, 0, 991, 971, 1, 0, 0, 0, 991, 990, 1, 0, 0, 0, 992, 1106, 1, 0, 0, 0, 993, 994, 10, 19, 0, 0, 994, 995, 5, 11, 0, 0, 995, 1105, 3, 66, 33, 20, 996, 997, 10, 18, 0, 0, 997, 998, 7, 10, 0, 0, 998, 1105, 3, 66, 33, 19, 999, 1000, 10, 17, 0, 0, 1000, 1001, 7, 4, 0, 0, 1001, 1105, 3, 66, 33, 18, 1002, 1003, 10, 16, 0, 0, 1003, 1004, 7, 11, 0, 0, 1004, 1105, 3, 66, 33, 17, 1005, 1006, 10, 15, 0, 0, 1006, 1007, 7, 12, 0, 0, 1007, 1105, 3, 66, 33, 16, 1008, 1021, 10, 14, 0, 0, 1009, 1022, 5, 6, 0, 0, 1010, 1022, 5, 22, 0, 0, 1011, 1022, 5, 23, 0, 0, 1012, 1022, 5, 24, 0, 0, 1013, 1022, 5, 92, 0, 0, 1014, 1015, 5, 92, 0, 0, 1015, 1022, 5, 102, 0, 0, 1016, 1022, 5, 83, 0, 0, 1017, 1022, 5, 97, 0, 0, 1018, 1022, 5, 77, 0, 0, 1019, 1022, 5, 99, 0, 0, 1020, 1022, 5, 118, 0, 0, 1021, 1009, 1, 0, 0, 0, 1021, 1010, 1, 0, 0, 0, 1021, 1011, 1, 0, 0, 0, 1021, 1012, 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1014, 1, 0, 0, 0, 1021, 1016, 1, 0, 0, 0, 1021, 1017, 1, 0, 0, 0, 1021, 1018, 1, 0, 0, 0, 1021, 1019, 1, 0, 0, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1105, 3, 66, 33, 15, 1024, 1025, 10, 13, 0, 0, 1025, 1026, 5, 32, 0, 0, 1026, 1105, 3, 66, 33, 14, 1027, 1028, 10, 12, 0, 0, 1028, 1029, 5, 108, 0, 0, 1029, 1105, 3, 66, 33, 13, 1030, 1032, 10, 5, 0, 0, 1031, 1033, 5, 102, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 5, 39, 0, 0, 1035, 1036, 3, 66, 33, 0, 1036, 1037, 5, 32, 0, 0, 1037, 1038, 3, 66, 33, 6, 1038, 1105, 1, 0, 0, 0, 1039, 1040, 10, 8, 0, 0, 1040, 1041, 5, 45, 0, 0, 1041, 1105, 3, 190, 95, 0, 1042, 1044, 10, 7, 0, 0, 1043, 1045, 5, 102, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 7, 13, 0, 0, 1047, 1050, 3, 66, 33, 0, 1048, 1049, 5, 67, 0, 0, 1049, 1051, 3, 66, 33, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1105, 1, 0, 0, 0, 1052, 1057, 10, 6, 0, 0, 1053, 1058, 5, 93, 0, 0, 1054, 1058, 5, 103, 0, 0, 1055, 1056, 5, 102, 0, 0, 1056, 1058, 5, 104, 0, 0, 1057, 1053, 1, 0, 0, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1055, 1, 0, 0, 0, 1058, 1105, 1, 0, 0, 0, 1059, 1061, 10, 4, 0, 0, 1060, 1062, 5, 102, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1102, 5, 83, 0, 0, 1064, 1074, 5, 3, 0, 0, 1065, 1075, 3, 82, 41, 0, 1066, 1071, 3, 66, 33, 0, 1067, 1068, 5, 5, 0, 0, 1068, 1070, 3, 66, 33, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1074, 1065, 1, 0, 0, 0, 1074, 1066, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1103, 5, 4, 0, 0, 1077, 1078, 3, 180, 90, 0, 1078, 1079, 5, 2, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1103, 3, 182, 91, 0, 1083, 1084, 3, 180, 90, 0, 1084, 1085, 5, 2, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 3, 222, 111, 0, 1089, 1098, 5, 3, 0, 0, 1090, 1095, 3, 66, 33, 0, 1091, 1092, 5, 5, 0, 0, 1092, 1094, 3, 66, 33, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1090, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 5, 4, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1064, 1, 0, 0, 0, 1102, 1080, 1, 0, 0, 0, 1102, 1086, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 993, 1, 0, 0, 0, 1104, 996, 1, 0, 0, 0, 1104, 999, 1, 0, 0, 0, 1104, 1002, 1, 0, 0, 0, 1104, 1005, 1, 0, 0, 0, 1104, 1008, 1, 0, 0, 0, 1104, 1024, 1, 0, 0, 0, 1104, 1027, 1, 0, 0, 0, 1104, 1030, 1, 0, 0, 0, 1104, 1039, 1, 0, 0, 0, 1104, 1042, 1, 0, 0, 0, 1104, 1052, 1, 0, 0, 0, 1104, 1059, 1, 0, 0, 0, 1105, 1108, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 67, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1109, 1110, 5, 115, 0, 0, 1110, 1115, 5, 3, 0, 0, 1111, 1116, 5, 81, 0, 0, 1112, 1113, 7, 14, 0, 0, 1113, 1114, 5, 5, 0, 0, 1114, 1116, 3, 166, 83, 0, 1115, 1111, 1, 0, 0, 0, 1115, 1112, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 5, 4, 0, 0, 1118, 69, 1, 0, 0, 0, 1119, 1120, 7, 15, 0, 0, 1120, 71, 1, 0, 0, 0, 1121, 1123, 3, 48, 24, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1129, 1, 0, 0, 0, 1124, 1130, 5, 88, 0, 0, 1125, 1130, 5, 122, 0, 0, 1126, 1127, 5, 88, 0, 0, 1127, 1128, 5, 108, 0, 0, 1128, 1130, 7, 8, 0, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1125, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1135, 5, 91, 0, 0, 1132, 1133, 3, 180, 90, 0, 1133, 1134, 5, 2, 0, 0, 1134, 1136, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 3, 182, 91, 0, 1138, 1139, 5, 33, 0, 0, 1139, 1141, 3, 206, 103, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1153, 1, 0, 0, 0, 1142, 1143, 5, 3, 0, 0, 1143, 1148, 3, 188, 94, 0, 1144, 1145, 5, 5, 0, 0, 1145, 1147, 3, 188, 94, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1150, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1151, 1152, 5, 4, 0, 0, 1152, 1154, 1, 0, 0, 0, 1153, 1142, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1184, 1, 0, 0, 0, 1155, 1156, 5, 145, 0, 0, 1156, 1157, 5, 3, 0, 0, 1157, 1162, 3, 66, 33, 0, 1158, 1159, 5, 5, 0, 0, 1159, 1161, 3, 66, 33, 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, 1165, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1180, 5, 4, 0, 0, 1166, 1167, 5, 5, 0, 0, 1167, 1168, 5, 3, 0, 0, 1168, 1173, 3, 66, 33, 0, 1169, 1170, 5, 5, 0, 0, 1170, 1172, 3, 66, 33, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1177, 5, 4, 0, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1166, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1185, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1183, 1185, 3, 82, 41, 0, 1184, 1155, 1, 0, 0, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 3, 74, 37, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1190, 1, 0, 0, 0, 1189, 1191, 3, 56, 28, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1195, 1, 0, 0, 0, 1192, 1193, 5, 56, 0, 0, 1193, 1195, 5, 145, 0, 0, 1194, 1122, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 73, 1, 0, 0, 0, 1196, 1197, 5, 107, 0, 0, 1197, 1212, 5, 48, 0, 0, 1198, 1199, 5, 3, 0, 0, 1199, 1204, 3, 24, 12, 0, 1200, 1201, 5, 5, 0, 0, 1201, 1203, 3, 24, 12, 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, 1207, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1210, 5, 4, 0, 0, 1208, 1209, 5, 149, 0, 0, 1209, 1211, 3, 66, 33, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1198, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1241, 5, 184, 0, 0, 1215, 1242, 5, 185, 0, 0, 1216, 1217, 5, 142, 0, 0, 1217, 1220, 5, 131, 0, 0, 1218, 1221, 3, 188, 94, 0, 1219, 1221, 3, 106, 53, 0, 1220, 1218, 1, 0, 0, 0, 1220, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 5, 6, 0, 0, 1223, 1234, 3, 66, 33, 0, 1224, 1227, 5, 5, 0, 0, 1225, 1228, 3, 188, 94, 0, 1226, 1228, 3, 106, 53, 0, 1227, 1225, 1, 0, 0, 0, 1227, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 5, 6, 0, 0, 1230, 1231, 3, 66, 33, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1224, 1, 0, 0, 0, 1233, 1236, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1239, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1238, 5, 149, 0, 0, 1238, 1240, 3, 66, 33, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1215, 1, 0, 0, 0, 1241, 1216, 1, 0, 0, 0, 1242, 75, 1, 0, 0, 0, 1243, 1247, 5, 112, 0, 0, 1244, 1245, 3, 180, 90, 0, 1245, 1246, 5, 2, 0, 0, 1246, 1248, 1, 0, 0, 0, 1247, 1244, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1256, 3, 202, 101, 0, 1250, 1251, 5, 6, 0, 0, 1251, 1257, 3, 78, 39, 0, 1252, 1253, 5, 3, 0, 0, 1253, 1254, 3, 78, 39, 0, 1254, 1255, 5, 4, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1250, 1, 0, 0, 0, 1256, 1252, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 77, 1, 0, 0, 0, 1258, 1262, 3, 34, 17, 0, 1259, 1262, 3, 174, 87, 0, 1260, 1262, 5, 190, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 79, 1, 0, 0, 0, 1263, 1274, 5, 119, 0, 0, 1264, 1275, 3, 190, 95, 0, 1265, 1266, 3, 180, 90, 0, 1266, 1267, 5, 2, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1265, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1272, 1, 0, 0, 0, 1270, 1273, 3, 182, 91, 0, 1271, 1273, 3, 194, 97, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1264, 1, 0, 0, 0, 1274, 1268, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 81, 1, 0, 0, 0, 1276, 1278, 3, 130, 65, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1285, 3, 86, 43, 0, 1280, 1281, 3, 102, 51, 0, 1281, 1282, 3, 86, 43, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1280, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1290, 3, 132, 66, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 134, 67, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 83, 1, 0, 0, 0, 1294, 1302, 3, 94, 47, 0, 1295, 1296, 3, 98, 49, 0, 1296, 1298, 3, 94, 47, 0, 1297, 1299, 3, 100, 50, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1295, 1, 0, 0, 0, 1301, 1304, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 85, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1305, 1307, 5, 130, 0, 0, 1306, 1308, 7, 16, 0, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1314, 3, 96, 48, 0, 1310, 1311, 5, 5, 0, 0, 1311, 1313, 3, 96, 48, 0, 1312, 1310, 1, 0, 0, 0, 1313, 1316, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1329, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1327, 5, 75, 0, 0, 1318, 1323, 3, 94, 47, 0, 1319, 1320, 5, 5, 0, 0, 1320, 1322, 3, 94, 47, 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, 1328, 1, 0, 0, 0, 1325, 1323, 1, 0, 0, 0, 1326, 1328, 3, 84, 42, 0, 1327, 1318, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1317, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1332, 5, 149, 0, 0, 1332, 1334, 3, 66, 33, 0, 1333, 1331, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1349, 1, 0, 0, 0, 1335, 1336, 5, 78, 0, 0, 1336, 1337, 5, 40, 0, 0, 1337, 1342, 3, 66, 33, 0, 1338, 1339, 5, 5, 0, 0, 1339, 1341, 3, 66, 33, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1347, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1346, 5, 79, 0, 0, 1346, 1348, 3, 66, 33, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1365, 1, 0, 0, 0, 1351, 1352, 5, 175, 0, 0, 1352, 1353, 3, 210, 105, 0, 1353, 1354, 5, 33, 0, 0, 1354, 1362, 3, 116, 58, 0, 1355, 1356, 5, 5, 0, 0, 1356, 1357, 3, 210, 105, 0, 1357, 1358, 5, 33, 0, 0, 1358, 1359, 3, 116, 58, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1355, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1351, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1396, 1, 0, 0, 0, 1367, 1368, 5, 145, 0, 0, 1368, 1369, 5, 3, 0, 0, 1369, 1374, 3, 66, 33, 0, 1370, 1371, 5, 5, 0, 0, 1371, 1373, 3, 66, 33, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1376, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1377, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1377, 1392, 5, 4, 0, 0, 1378, 1379, 5, 5, 0, 0, 1379, 1380, 5, 3, 0, 0, 1380, 1385, 3, 66, 33, 0, 1381, 1382, 5, 5, 0, 0, 1382, 1384, 3, 66, 33, 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, 1388, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1389, 5, 4, 0, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1378, 1, 0, 0, 0, 1391, 1394, 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1396, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1395, 1305, 1, 0, 0, 0, 1395, 1367, 1, 0, 0, 0, 1396, 87, 1, 0, 0, 0, 1397, 1398, 3, 82, 41, 0, 1398, 89, 1, 0, 0, 0, 1399, 1401, 3, 130, 65, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 3, 86, 43, 0, 1403, 1405, 3, 132, 66, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1408, 3, 134, 67, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 91, 1, 0, 0, 0, 1409, 1411, 3, 130, 65, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1422, 3, 86, 43, 0, 1413, 1415, 5, 140, 0, 0, 1414, 1416, 5, 29, 0, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1420, 1, 0, 0, 0, 1417, 1420, 5, 90, 0, 0, 1418, 1420, 5, 68, 0, 0, 1419, 1413, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1419, 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1423, 3, 86, 43, 0, 1422, 1419, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 3, 132, 66, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 3, 134, 67, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 93, 1, 0, 0, 0, 1432, 1433, 3, 180, 90, 0, 1433, 1434, 5, 2, 0, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1442, 3, 182, 91, 0, 1438, 1440, 5, 33, 0, 0, 1439, 1438, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1443, 3, 206, 103, 0, 1442, 1439, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1449, 1, 0, 0, 0, 1444, 1445, 5, 85, 0, 0, 1445, 1446, 5, 40, 0, 0, 1446, 1450, 3, 194, 97, 0, 1447, 1448, 5, 102, 0, 0, 1448, 1450, 5, 85, 0, 0, 1449, 1444, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1497, 1, 0, 0, 0, 1451, 1452, 3, 180, 90, 0, 1452, 1453, 5, 2, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 3, 222, 111, 0, 1457, 1458, 5, 3, 0, 0, 1458, 1463, 3, 66, 33, 0, 1459, 1460, 5, 5, 0, 0, 1460, 1462, 3, 66, 33, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1465, 1, 0, 0, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1466, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1466, 1471, 5, 4, 0, 0, 1467, 1469, 5, 33, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1472, 3, 206, 103, 0, 1471, 1468, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1497, 1, 0, 0, 0, 1473, 1483, 5, 3, 0, 0, 1474, 1479, 3, 94, 47, 0, 1475, 1476, 5, 5, 0, 0, 1476, 1478, 3, 94, 47, 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, 1484, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1484, 3, 84, 42, 0, 1483, 1474, 1, 0, 0, 0, 1483, 1482, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 5, 4, 0, 0, 1486, 1497, 1, 0, 0, 0, 1487, 1488, 5, 3, 0, 0, 1488, 1489, 3, 82, 41, 0, 1489, 1494, 5, 4, 0, 0, 1490, 1492, 5, 33, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 3, 206, 103, 0, 1494, 1491, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1497, 1, 0, 0, 0, 1496, 1435, 1, 0, 0, 0, 1496, 1454, 1, 0, 0, 0, 1496, 1473, 1, 0, 0, 0, 1496, 1487, 1, 0, 0, 0, 1497, 95, 1, 0, 0, 0, 1498, 1511, 5, 7, 0, 0, 1499, 1500, 3, 182, 91, 0, 1500, 1501, 5, 2, 0, 0, 1501, 1502, 5, 7, 0, 0, 1502, 1511, 1, 0, 0, 0, 1503, 1508, 3, 66, 33, 0, 1504, 1506, 5, 33, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 3, 170, 85, 0, 1508, 1505, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1498, 1, 0, 0, 0, 1510, 1499, 1, 0, 0, 0, 1510, 1503, 1, 0, 0, 0, 1511, 97, 1, 0, 0, 0, 1512, 1526, 5, 5, 0, 0, 1513, 1515, 5, 100, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1522, 1, 0, 0, 0, 1516, 1518, 5, 96, 0, 0, 1517, 1519, 5, 110, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1523, 1, 0, 0, 0, 1520, 1523, 5, 87, 0, 0, 1521, 1523, 5, 51, 0, 0, 1522, 1516, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 94, 0, 0, 1525, 1512, 1, 0, 0, 0, 1525, 1514, 1, 0, 0, 0, 1526, 99, 1, 0, 0, 0, 1527, 1528, 5, 107, 0, 0, 1528, 1542, 3, 66, 33, 0, 1529, 1530, 5, 143, 0, 0, 1530, 1531, 5, 3, 0, 0, 1531, 1536, 3, 188, 94, 0, 1532, 1533, 5, 5, 0, 0, 1533, 1535, 3, 188, 94, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1539, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1540, 5, 4, 0, 0, 1540, 1542, 1, 0, 0, 0, 1541, 1527, 1, 0, 0, 0, 1541, 1529, 1, 0, 0, 0, 1542, 101, 1, 0, 0, 0, 1543, 1545, 5, 140, 0, 0, 1544, 1546, 5, 29, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1550, 1, 0, 0, 0, 1547, 1550, 5, 90, 0, 0, 1548, 1550, 5, 68, 0, 0, 1549, 1543, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1548, 1, 0, 0, 0, 1550, 103, 1, 0, 0, 0, 1551, 1553, 3, 48, 24, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1557, 5, 142, 0, 0, 1555, 1556, 5, 108, 0, 0, 1556, 1558, 7, 8, 0, 0, 1557, 1555, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 3, 110, 55, 0, 1560, 1563, 5, 131, 0, 0, 1561, 1564, 3, 188, 94, 0, 1562, 1564, 3, 106, 53, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 5, 6, 0, 0, 1566, 1577, 3, 66, 33, 0, 1567, 1570, 5, 5, 0, 0, 1568, 1571, 3, 188, 94, 0, 1569, 1571, 3, 106, 53, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 5, 6, 0, 0, 1573, 1574, 3, 66, 33, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1567, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1582, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 5, 149, 0, 0, 1581, 1583, 3, 66, 33, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1586, 3, 56, 28, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 105, 1, 0, 0, 0, 1587, 1588, 5, 3, 0, 0, 1588, 1593, 3, 188, 94, 0, 1589, 1590, 5, 5, 0, 0, 1590, 1592, 3, 188, 94, 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, 1596, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 4, 0, 0, 1597, 107, 1, 0, 0, 0, 1598, 1600, 3, 48, 24, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1604, 5, 142, 0, 0, 1602, 1603, 5, 108, 0, 0, 1603, 1605, 7, 8, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 3, 110, 55, 0, 1607, 1610, 5, 131, 0, 0, 1608, 1611, 3, 188, 94, 0, 1609, 1611, 3, 106, 53, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 5, 6, 0, 0, 1613, 1624, 3, 66, 33, 0, 1614, 1617, 5, 5, 0, 0, 1615, 1618, 3, 188, 94, 0, 1616, 1618, 3, 106, 53, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 5, 6, 0, 0, 1620, 1621, 3, 66, 33, 0, 1621, 1623, 1, 0, 0, 0, 1622, 1614, 1, 0, 0, 0, 1623, 1626, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1629, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1628, 5, 149, 0, 0, 1628, 1630, 3, 66, 33, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1635, 1, 0, 0, 0, 1631, 1633, 3, 132, 66, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 3, 134, 67, 0, 1635, 1632, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 109, 1, 0, 0, 0, 1637, 1638, 3, 180, 90, 0, 1638, 1639, 5, 2, 0, 0, 1639, 1641, 1, 0, 0, 0, 1640, 1637, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1645, 3, 182, 91, 0, 1643, 1644, 5, 33, 0, 0, 1644, 1646, 3, 212, 106, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1652, 1, 0, 0, 0, 1647, 1648, 5, 85, 0, 0, 1648, 1649, 5, 40, 0, 0, 1649, 1653, 3, 194, 97, 0, 1650, 1651, 5, 102, 0, 0, 1651, 1653, 5, 85, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 111, 1, 0, 0, 0, 1654, 1656, 5, 144, 0, 0, 1655, 1657, 3, 180, 90, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1659, 5, 91, 0, 0, 1659, 1661, 3, 214, 107, 0, 1660, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 113, 1, 0, 0, 0, 1662, 1663, 5, 179, 0, 0, 1663, 1664, 5, 3, 0, 0, 1664, 1665, 5, 149, 0, 0, 1665, 1666, 3, 66, 33, 0, 1666, 1667, 5, 4, 0, 0, 1667, 115, 1, 0, 0, 0, 1668, 1670, 5, 3, 0, 0, 1669, 1671, 3, 216, 108, 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1682, 1, 0, 0, 0, 1672, 1673, 5, 154, 0, 0, 1673, 1674, 5, 40, 0, 0, 1674, 1679, 3, 66, 33, 0, 1675, 1676, 5, 5, 0, 0, 1676, 1678, 3, 66, 33, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1681, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1672, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 5, 109, 0, 0, 1685, 1686, 5, 40, 0, 0, 1686, 1691, 3, 136, 68, 0, 1687, 1688, 5, 5, 0, 0, 1688, 1690, 3, 136, 68, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1696, 3, 120, 60, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 5, 4, 0, 0, 1698, 117, 1, 0, 0, 0, 1699, 1733, 5, 153, 0, 0, 1700, 1734, 3, 210, 105, 0, 1701, 1703, 5, 3, 0, 0, 1702, 1704, 3, 216, 108, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1715, 1, 0, 0, 0, 1705, 1706, 5, 154, 0, 0, 1706, 1707, 5, 40, 0, 0, 1707, 1712, 3, 66, 33, 0, 1708, 1709, 5, 5, 0, 0, 1709, 1711, 3, 66, 33, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1714, 1, 0, 0, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1716, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1715, 1705, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1727, 1, 0, 0, 0, 1717, 1718, 5, 109, 0, 0, 1718, 1719, 5, 40, 0, 0, 1719, 1724, 3, 136, 68, 0, 1720, 1721, 5, 5, 0, 0, 1721, 1723, 3, 136, 68, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1717, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1731, 3, 120, 60, 0, 1730, 1729, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1734, 5, 4, 0, 0, 1733, 1700, 1, 0, 0, 0, 1733, 1701, 1, 0, 0, 0, 1734, 119, 1, 0, 0, 0, 1735, 1743, 3, 122, 61, 0, 1736, 1737, 5, 181, 0, 0, 1737, 1738, 5, 101, 0, 0, 1738, 1744, 5, 183, 0, 0, 1739, 1740, 5, 158, 0, 0, 1740, 1744, 5, 127, 0, 0, 1741, 1744, 5, 78, 0, 0, 1742, 1744, 5, 182, 0, 0, 1743, 1736, 1, 0, 0, 0, 1743, 1739, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 121, 1, 0, 0, 0, 1745, 1752, 7, 17, 0, 0, 1746, 1753, 3, 144, 72, 0, 1747, 1748, 5, 39, 0, 0, 1748, 1749, 3, 140, 70, 0, 1749, 1750, 5, 32, 0, 0, 1750, 1751, 3, 142, 71, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1746, 1, 0, 0, 0, 1752, 1747, 1, 0, 0, 0, 1753, 123, 1, 0, 0, 0, 1754, 1755, 3, 218, 109, 0, 1755, 1765, 5, 3, 0, 0, 1756, 1761, 3, 66, 33, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 66, 33, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1766, 5, 7, 0, 0, 1765, 1756, 1, 0, 0, 0, 1765, 1764, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 5, 4, 0, 0, 1768, 125, 1, 0, 0, 0, 1769, 1770, 3, 220, 110, 0, 1770, 1783, 5, 3, 0, 0, 1771, 1773, 5, 62, 0, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1779, 3, 66, 33, 0, 1775, 1776, 5, 5, 0, 0, 1776, 1778, 3, 66, 33, 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, 1784, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 5, 7, 0, 0, 1783, 1772, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1787, 5, 4, 0, 0, 1786, 1788, 3, 114, 57, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 127, 1, 0, 0, 0, 1789, 1790, 3, 146, 73, 0, 1790, 1800, 5, 3, 0, 0, 1791, 1796, 3, 66, 33, 0, 1792, 1793, 5, 5, 0, 0, 1793, 1795, 3, 66, 33, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1801, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1801, 5, 7, 0, 0, 1800, 1791, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1804, 5, 4, 0, 0, 1803, 1805, 3, 114, 57, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1809, 5, 153, 0, 0, 1807, 1810, 3, 116, 58, 0, 1808, 1810, 3, 210, 105, 0, 1809, 1807, 1, 0, 0, 0, 1809, 1808, 1, 0, 0, 0, 1810, 129, 1, 0, 0, 0, 1811, 1813, 5, 150, 0, 0, 1812, 1814, 5, 116, 0, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1820, 3, 54, 27, 0, 1816, 1817, 5, 5, 0, 0, 1817, 1819, 3, 54, 27, 0, 1818, 1816, 1, 0, 0, 0, 1819, 1822, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 131, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1823, 1824, 5, 109, 0, 0, 1824, 1825, 5, 40, 0, 0, 1825, 1830, 3, 136, 68, 0, 1826, 1827, 5, 5, 0, 0, 1827, 1829, 3, 136, 68, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 133, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 98, 0, 0, 1834, 1837, 3, 66, 33, 0, 1835, 1836, 7, 18, 0, 0, 1836, 1838, 3, 66, 33, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 135, 1, 0, 0, 0, 1839, 1842, 3, 66, 33, 0, 1840, 1841, 5, 45, 0, 0, 1841, 1843, 3, 190, 95, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1846, 3, 138, 69, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1848, 5, 176, 0, 0, 1848, 1850, 7, 19, 0, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 137, 1, 0, 0, 0, 1851, 1852, 7, 20, 0, 0, 1852, 139, 1, 0, 0, 0, 1853, 1854, 3, 66, 33, 0, 1854, 1855, 5, 156, 0, 0, 1855, 1864, 1, 0, 0, 0, 1856, 1857, 3, 66, 33, 0, 1857, 1858, 5, 159, 0, 0, 1858, 1864, 1, 0, 0, 0, 1859, 1860, 5, 158, 0, 0, 1860, 1864, 5, 127, 0, 0, 1861, 1862, 5, 157, 0, 0, 1862, 1864, 5, 156, 0, 0, 1863, 1853, 1, 0, 0, 0, 1863, 1856, 1, 0, 0, 0, 1863, 1859, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 141, 1, 0, 0, 0, 1865, 1866, 3, 66, 33, 0, 1866, 1867, 5, 156, 0, 0, 1867, 1876, 1, 0, 0, 0, 1868, 1869, 3, 66, 33, 0, 1869, 1870, 5, 159, 0, 0, 1870, 1876, 1, 0, 0, 0, 1871, 1872, 5, 158, 0, 0, 1872, 1876, 5, 127, 0, 0, 1873, 1874, 5, 157, 0, 0, 1874, 1876, 5, 159, 0, 0, 1875, 1865, 1, 0, 0, 0, 1875, 1868, 1, 0, 0, 0, 1875, 1871, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 143, 1, 0, 0, 0, 1877, 1878, 3, 66, 33, 0, 1878, 1879, 5, 156, 0, 0, 1879, 1885, 1, 0, 0, 0, 1880, 1881, 5, 157, 0, 0, 1881, 1885, 5, 156, 0, 0, 1882, 1883, 5, 158, 0, 0, 1883, 1885, 5, 127, 0, 0, 1884, 1877, 1, 0, 0, 0, 1884, 1880, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 145, 1, 0, 0, 0, 1886, 1887, 7, 21, 0, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1889, 3, 66, 33, 0, 1889, 1890, 5, 4, 0, 0, 1890, 1891, 5, 153, 0, 0, 1891, 1893, 5, 3, 0, 0, 1892, 1894, 3, 152, 76, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1897, 3, 156, 78, 0, 1896, 1898, 3, 122, 61, 0, 1897, 1896, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 5, 4, 0, 0, 1900, 1972, 1, 0, 0, 0, 1901, 1902, 7, 22, 0, 0, 1902, 1903, 5, 3, 0, 0, 1903, 1904, 5, 4, 0, 0, 1904, 1905, 5, 153, 0, 0, 1905, 1907, 5, 3, 0, 0, 1906, 1908, 3, 152, 76, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1910, 1, 0, 0, 0, 1909, 1911, 3, 154, 77, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1972, 5, 4, 0, 0, 1913, 1914, 7, 23, 0, 0, 1914, 1915, 5, 3, 0, 0, 1915, 1916, 5, 4, 0, 0, 1916, 1917, 5, 153, 0, 0, 1917, 1919, 5, 3, 0, 0, 1918, 1920, 3, 152, 76, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 3, 156, 78, 0, 1922, 1923, 5, 4, 0, 0, 1923, 1972, 1, 0, 0, 0, 1924, 1925, 7, 24, 0, 0, 1925, 1926, 5, 3, 0, 0, 1926, 1928, 3, 66, 33, 0, 1927, 1929, 3, 148, 74, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1931, 1, 0, 0, 0, 1930, 1932, 3, 150, 75, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 4, 0, 0, 1934, 1935, 5, 153, 0, 0, 1935, 1937, 5, 3, 0, 0, 1936, 1938, 3, 152, 76, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 3, 156, 78, 0, 1940, 1941, 5, 4, 0, 0, 1941, 1972, 1, 0, 0, 0, 1942, 1943, 5, 165, 0, 0, 1943, 1944, 5, 3, 0, 0, 1944, 1945, 3, 66, 33, 0, 1945, 1946, 5, 5, 0, 0, 1946, 1947, 3, 34, 17, 0, 1947, 1948, 5, 4, 0, 0, 1948, 1949, 5, 153, 0, 0, 1949, 1951, 5, 3, 0, 0, 1950, 1952, 3, 152, 76, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1955, 3, 156, 78, 0, 1954, 1956, 3, 122, 61, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 5, 4, 0, 0, 1958, 1972, 1, 0, 0, 0, 1959, 1960, 5, 166, 0, 0, 1960, 1961, 5, 3, 0, 0, 1961, 1962, 3, 66, 33, 0, 1962, 1963, 5, 4, 0, 0, 1963, 1964, 5, 153, 0, 0, 1964, 1966, 5, 3, 0, 0, 1965, 1967, 3, 152, 76, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 3, 156, 78, 0, 1969, 1970, 5, 4, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1886, 1, 0, 0, 0, 1971, 1901, 1, 0, 0, 0, 1971, 1913, 1, 0, 0, 0, 1971, 1924, 1, 0, 0, 0, 1971, 1942, 1, 0, 0, 0, 1971, 1959, 1, 0, 0, 0, 1972, 147, 1, 0, 0, 0, 1973, 1974, 5, 5, 0, 0, 1974, 1975, 3, 34, 17, 0, 1975, 149, 1, 0, 0, 0, 1976, 1977, 5, 5, 0, 0, 1977, 1978, 3, 34, 17, 0, 1978, 151, 1, 0, 0, 0, 1979, 1980, 5, 154, 0, 0, 1980, 1982, 5, 40, 0, 0, 1981, 1983, 3, 66, 33, 0, 1982, 1981, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 153, 1, 0, 0, 0, 1986, 1987, 5, 109, 0, 0, 1987, 1989, 5, 40, 0, 0, 1988, 1990, 3, 66, 33, 0, 1989, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 155, 1, 0, 0, 0, 1993, 1994, 5, 109, 0, 0, 1994, 1995, 5, 40, 0, 0, 1995, 1996, 3, 156, 78, 0, 1996, 157, 1, 0, 0, 0, 1997, 1999, 3, 66, 33, 0, 1998, 2000, 3, 138, 69, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2008, 1, 0, 0, 0, 2001, 2002, 5, 5, 0, 0, 2002, 2004, 3, 66, 33, 0, 2003, 2005, 3, 138, 69, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 1, 0, 0, 0, 2006, 2001, 1, 0, 0, 0, 2007, 2010, 1, 0, 0, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 159, 1, 0, 0, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2012, 3, 82, 41, 0, 2012, 161, 1, 0, 0, 0, 2013, 2014, 3, 82, 41, 0, 2014, 163, 1, 0, 0, 0, 2015, 2016, 7, 25, 0, 0, 2016, 165, 1, 0, 0, 0, 2017, 2018, 5, 190, 0, 0, 2018, 167, 1, 0, 0, 0, 2019, 2022, 3, 66, 33, 0, 2020, 2022, 3, 28, 14, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2022, 169, 1, 0, 0, 0, 2023, 2024, 7, 26, 0, 0, 2024, 171, 1, 0, 0, 0, 2025, 2026, 7, 27, 0, 0, 2026, 173, 1, 0, 0, 0, 2027, 2028, 3, 224, 112, 0, 2028, 175, 1, 0, 0, 0, 2029, 2030, 3, 224, 112, 0, 2030, 177, 1, 0, 0, 0, 2031, 2032, 3, 180, 90, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2031, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 3, 176, 88, 0, 2037, 179, 1, 0, 0, 0, 2038, 2039, 3, 224, 112, 0, 2039, 181, 1, 0, 0, 0, 2040, 2041, 3, 224, 112, 0, 2041, 183, 1, 0, 0, 0, 2042, 2043, 3, 224, 112, 0, 2043, 185, 1, 0, 0, 0, 2044, 2045, 3, 224, 112, 0, 2045, 187, 1, 0, 0, 0, 2046, 2047, 3, 224, 112, 0, 2047, 189, 1, 0, 0, 0, 2048, 2049, 3, 224, 112, 0, 2049, 191, 1, 0, 0, 0, 2050, 2051, 3, 224, 112, 0, 2051, 193, 1, 0, 0, 0, 2052, 2053, 3, 224, 112, 0, 2053, 195, 1, 0, 0, 0, 2054, 2055, 3, 224, 112, 0, 2055, 197, 1, 0, 0, 0, 2056, 2057, 3, 224, 112, 0, 2057, 199, 1, 0, 0, 0, 2058, 2059, 3, 224, 112, 0, 2059, 201, 1, 0, 0, 0, 2060, 2061, 3, 224, 112, 0, 2061, 203, 1, 0, 0, 0, 2062, 2063, 3, 224, 112, 0, 2063, 205, 1, 0, 0, 0, 2064, 2065, 3, 224, 112, 0, 2065, 207, 1, 0, 0, 0, 2066, 2067, 3, 224, 112, 0, 2067, 209, 1, 0, 0, 0, 2068, 2069, 3, 224, 112, 0, 2069, 211, 1, 0, 0, 0, 2070, 2071, 3, 224, 112, 0, 2071, 213, 1, 0, 0, 0, 2072, 2073, 3, 224, 112, 0, 2073, 215, 1, 0, 0, 0, 2074, 2075, 3, 224, 112, 0, 2075, 217, 1, 0, 0, 0, 2076, 2077, 3, 224, 112, 0, 2077, 219, 1, 0, 0, 0, 2078, 2079, 3, 224, 112, 0, 2079, 221, 1, 0, 0, 0, 2080, 2081, 3, 224, 112, 0, 2081, 223, 1, 0, 0, 0, 2082, 2090, 5, 186, 0, 0, 2083, 2090, 3, 172, 86, 0, 2084, 2090, 5, 190, 0, 0, 2085, 2086, 5, 3, 0, 0, 2086, 2087, 3, 224, 112, 0, 2087, 2088, 5, 4, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2082, 1, 0, 0, 0, 2089, 2083, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2089, 2085, 1, 0, 0, 0, 2090, 225, 1, 0, 0, 0, 300, 229, 237, 244, 249, 255, 261, 263, 289, 296, 303, 309, 313, 318, 321, 328, 331, 335, 343, 347, 349, 353, 357, 361, 364, 371, 377, 383, 388, 399, 405, 409, 413, 416, 420, 426, 431, 440, 447, 454, 458, 462, 467, 473, 485, 489, 494, 497, 500, 505, 508, 522, 529, 536, 538, 541, 547, 552, 560, 565, 580, 586, 596, 601, 611, 615, 617, 621, 626, 628, 636, 642, 647, 654, 665, 668, 670, 677, 681, 688, 694, 700, 706, 711, 720, 725, 736, 741, 752, 757, 761, 777, 787, 792, 800, 812, 817, 828, 831, 833, 839, 842, 844, 848, 852, 859, 862, 865, 872, 875, 878, 881, 885, 893, 898, 909, 914, 923, 930, 934, 938, 941, 949, 962, 965, 973, 982, 986, 991, 1021, 1032, 1044, 1050, 1057, 1061, 1071, 1074, 1080, 1086, 1095, 1098, 1102, 1104, 1106, 1115, 1122, 1129, 1135, 1140, 1148, 1153, 1162, 1173, 1180, 1184, 1187, 1190, 1194, 1204, 1210, 1212, 1220, 1227, 1234, 1239, 1241, 1247, 1256, 1261, 1268, 1272, 1274, 1277, 1285, 1289, 1292, 1298, 1302, 1307, 1314, 1323, 1327, 1329, 1333, 1342, 1347, 1349, 1362, 1365, 1374, 1385, 1392, 1395, 1400, 1404, 1407, 1410, 1415, 1419, 1424, 1427, 1430, 1435, 1439, 1442, 1449, 1454, 1463, 1468, 1471, 1479, 1483, 1491, 1494, 1496, 1505, 1508, 1510, 1514, 1518, 1522, 1525, 1536, 1541, 1545, 1549, 1552, 1557, 1563, 1570, 1577, 1582, 1585, 1593, 1599, 1604, 1610, 1617, 1624, 1629, 1632, 1635, 1640, 1645, 1652, 1656, 1660, 1670, 1679, 1682, 1691, 1695, 1703, 1712, 1715, 1724, 1727, 1730, 1733, 1743, 1752, 1761, 1765, 1772, 1779, 1783, 1787, 1796, 1800, 1804, 1809, 1813, 1820, 1830, 1837, 1842, 1845, 1849, 1863, 1875, 1884, 1893, 1897, 1907, 1910, 1919, 1928, 1931, 1937, 1951, 1955, 1966, 1971, 1984, 1991, 1999, 2004, 2008, 2021, 2034, 2089] \ No newline at end of file +[4, 1, 195, 2104, 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, 1, 0, 5, 0, 230, 8, 0, 10, 0, 12, 0, 233, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 238, 8, 1, 10, 1, 12, 1, 241, 9, 1, 1, 1, 1, 1, 4, 1, 245, 8, 1, 11, 1, 12, 1, 246, 1, 1, 5, 1, 250, 8, 1, 10, 1, 12, 1, 253, 9, 1, 1, 1, 5, 1, 256, 8, 1, 10, 1, 12, 1, 259, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 264, 8, 2, 3, 2, 266, 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, 3, 2, 292, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 299, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 306, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 312, 8, 3, 1, 3, 1, 3, 3, 3, 316, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 321, 8, 3, 1, 3, 3, 3, 324, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 331, 8, 4, 1, 4, 3, 4, 334, 8, 4, 1, 5, 1, 5, 3, 5, 338, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 346, 8, 6, 1, 6, 1, 6, 3, 6, 350, 8, 6, 3, 6, 352, 8, 6, 1, 7, 1, 7, 3, 7, 356, 8, 7, 1, 8, 1, 8, 3, 8, 360, 8, 8, 1, 8, 1, 8, 3, 8, 364, 8, 8, 1, 8, 3, 8, 367, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 374, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 380, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 386, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 391, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 400, 8, 11, 10, 11, 12, 11, 403, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 408, 8, 11, 1, 12, 1, 12, 3, 12, 412, 8, 12, 1, 12, 1, 12, 3, 12, 416, 8, 12, 1, 12, 3, 12, 419, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 424, 8, 13, 1, 14, 1, 14, 3, 14, 428, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 434, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 439, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 446, 8, 14, 10, 14, 12, 14, 449, 9, 14, 1, 14, 1, 14, 5, 14, 453, 8, 14, 10, 14, 12, 14, 456, 9, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 462, 8, 14, 10, 14, 12, 14, 465, 9, 14, 3, 14, 467, 8, 14, 1, 14, 1, 14, 3, 14, 471, 8, 14, 1, 15, 1, 15, 3, 15, 475, 8, 15, 1, 15, 5, 15, 478, 8, 15, 10, 15, 12, 15, 481, 9, 15, 1, 16, 4, 16, 484, 8, 16, 11, 16, 12, 16, 485, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 498, 8, 16, 1, 17, 1, 17, 3, 17, 502, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 507, 8, 17, 1, 17, 3, 17, 510, 8, 17, 1, 17, 3, 17, 513, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 518, 8, 17, 1, 17, 3, 17, 521, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 535, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 542, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 549, 8, 17, 3, 17, 551, 8, 17, 1, 18, 3, 18, 554, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 560, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 565, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 571, 8, 19, 10, 19, 12, 19, 574, 9, 19, 1, 19, 1, 19, 3, 19, 578, 8, 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, 591, 8, 19, 10, 19, 12, 19, 594, 9, 19, 1, 19, 1, 19, 1, 19, 3, 19, 599, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 607, 8, 20, 10, 20, 12, 20, 610, 9, 20, 1, 20, 1, 20, 3, 20, 614, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 624, 8, 20, 1, 20, 1, 20, 5, 20, 628, 8, 20, 10, 20, 12, 20, 631, 9, 20, 1, 20, 3, 20, 634, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 639, 8, 20, 3, 20, 641, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 649, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 655, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 660, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 667, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 676, 8, 22, 10, 22, 12, 22, 679, 9, 22, 3, 22, 681, 8, 22, 3, 22, 683, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 690, 8, 22, 1, 22, 1, 22, 3, 22, 694, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 701, 8, 22, 1, 22, 1, 22, 4, 22, 705, 8, 22, 11, 22, 12, 22, 706, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 713, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 719, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 724, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 731, 8, 23, 10, 23, 12, 23, 734, 9, 23, 1, 23, 1, 23, 3, 23, 738, 8, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 749, 8, 24, 1, 24, 1, 24, 1, 24, 3, 24, 754, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 763, 8, 24, 10, 24, 12, 24, 766, 9, 24, 1, 24, 1, 24, 3, 24, 770, 8, 24, 1, 25, 1, 25, 3, 25, 774, 8, 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, 788, 8, 25, 10, 25, 12, 25, 791, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 798, 8, 26, 10, 26, 12, 26, 801, 9, 26, 1, 26, 1, 26, 3, 26, 805, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 813, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 823, 8, 28, 10, 28, 12, 28, 826, 9, 28, 1, 28, 1, 28, 3, 28, 830, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 841, 8, 29, 1, 29, 3, 29, 844, 8, 29, 3, 29, 846, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 852, 8, 29, 1, 29, 3, 29, 855, 8, 29, 3, 29, 857, 8, 29, 5, 29, 859, 8, 29, 10, 29, 12, 29, 862, 9, 29, 1, 30, 3, 30, 865, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 872, 8, 30, 1, 30, 3, 30, 875, 8, 30, 1, 31, 3, 31, 878, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 885, 8, 31, 1, 31, 3, 31, 888, 8, 31, 1, 31, 3, 31, 891, 8, 31, 1, 31, 3, 31, 894, 8, 31, 1, 32, 1, 32, 3, 32, 898, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 906, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 911, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 922, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 927, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 936, 8, 34, 1, 34, 1, 34, 1, 34, 5, 34, 941, 8, 34, 10, 34, 12, 34, 944, 9, 34, 1, 34, 3, 34, 947, 8, 34, 1, 34, 1, 34, 3, 34, 951, 8, 34, 1, 34, 3, 34, 954, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 960, 8, 34, 10, 34, 12, 34, 963, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 975, 8, 34, 1, 34, 3, 34, 978, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 986, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 4, 34, 993, 8, 34, 11, 34, 12, 34, 994, 1, 34, 1, 34, 3, 34, 999, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1004, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1034, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1045, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1057, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1063, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1070, 8, 34, 1, 34, 1, 34, 3, 34, 1074, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1082, 8, 34, 10, 34, 12, 34, 1085, 9, 34, 3, 34, 1087, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1093, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1099, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1106, 8, 34, 10, 34, 12, 34, 1109, 9, 34, 3, 34, 1111, 8, 34, 1, 34, 1, 34, 3, 34, 1115, 8, 34, 5, 34, 1117, 8, 34, 10, 34, 12, 34, 1120, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1128, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 3, 37, 1135, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1142, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1148, 8, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1153, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1159, 8, 37, 10, 37, 12, 37, 1162, 9, 37, 1, 37, 1, 37, 3, 37, 1166, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1173, 8, 37, 10, 37, 12, 37, 1176, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1184, 8, 37, 10, 37, 12, 37, 1187, 9, 37, 1, 37, 1, 37, 5, 37, 1191, 8, 37, 10, 37, 12, 37, 1194, 9, 37, 1, 37, 3, 37, 1197, 8, 37, 1, 37, 3, 37, 1200, 8, 37, 1, 37, 3, 37, 1203, 8, 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1215, 8, 38, 10, 38, 12, 38, 1218, 9, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1223, 8, 38, 3, 38, 1225, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1233, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1240, 8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1245, 8, 38, 10, 38, 12, 38, 1248, 9, 38, 1, 38, 1, 38, 3, 38, 1252, 8, 38, 3, 38, 1254, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1260, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1269, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1274, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1281, 8, 41, 1, 41, 1, 41, 3, 41, 1285, 8, 41, 3, 41, 1287, 8, 41, 1, 42, 3, 42, 1290, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1296, 8, 42, 10, 42, 12, 42, 1299, 9, 42, 1, 42, 3, 42, 1302, 8, 42, 1, 42, 3, 42, 1305, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1311, 8, 43, 5, 43, 1313, 8, 43, 10, 43, 12, 43, 1316, 9, 43, 1, 44, 1, 44, 3, 44, 1320, 8, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1325, 8, 44, 10, 44, 12, 44, 1328, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1334, 8, 44, 10, 44, 12, 44, 1337, 9, 44, 1, 44, 3, 44, 1340, 8, 44, 3, 44, 1342, 8, 44, 1, 44, 1, 44, 3, 44, 1346, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1353, 8, 44, 10, 44, 12, 44, 1356, 9, 44, 1, 44, 1, 44, 3, 44, 1360, 8, 44, 3, 44, 1362, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1373, 8, 44, 10, 44, 12, 44, 1376, 9, 44, 3, 44, 1378, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1385, 8, 44, 10, 44, 12, 44, 1388, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1396, 8, 44, 10, 44, 12, 44, 1399, 9, 44, 1, 44, 1, 44, 5, 44, 1403, 8, 44, 10, 44, 12, 44, 1406, 9, 44, 3, 44, 1408, 8, 44, 1, 45, 1, 45, 1, 46, 3, 46, 1413, 8, 46, 1, 46, 1, 46, 3, 46, 1417, 8, 46, 1, 46, 3, 46, 1420, 8, 46, 1, 47, 3, 47, 1423, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1428, 8, 47, 1, 47, 1, 47, 3, 47, 1432, 8, 47, 1, 47, 4, 47, 1435, 8, 47, 11, 47, 12, 47, 1436, 1, 47, 3, 47, 1440, 8, 47, 1, 47, 3, 47, 1443, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 1448, 8, 48, 1, 48, 1, 48, 3, 48, 1452, 8, 48, 1, 48, 3, 48, 1455, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1462, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1467, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1474, 8, 48, 10, 48, 12, 48, 1477, 9, 48, 1, 48, 1, 48, 3, 48, 1481, 8, 48, 1, 48, 3, 48, 1484, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1490, 8, 48, 10, 48, 12, 48, 1493, 9, 48, 1, 48, 3, 48, 1496, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1504, 8, 48, 1, 48, 3, 48, 1507, 8, 48, 3, 48, 1509, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1518, 8, 49, 1, 49, 3, 49, 1521, 8, 49, 3, 49, 1523, 8, 49, 1, 50, 1, 50, 3, 50, 1527, 8, 50, 1, 50, 1, 50, 3, 50, 1531, 8, 50, 1, 50, 1, 50, 3, 50, 1535, 8, 50, 1, 50, 3, 50, 1538, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1547, 8, 51, 10, 51, 12, 51, 1550, 9, 51, 1, 51, 1, 51, 3, 51, 1554, 8, 51, 1, 52, 1, 52, 3, 52, 1558, 8, 52, 1, 52, 1, 52, 3, 52, 1562, 8, 52, 1, 53, 3, 53, 1565, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1570, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1576, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1583, 8, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1588, 8, 53, 10, 53, 12, 53, 1591, 9, 53, 1, 53, 1, 53, 3, 53, 1595, 8, 53, 1, 53, 3, 53, 1598, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1604, 8, 54, 10, 54, 12, 54, 1607, 9, 54, 1, 54, 1, 54, 1, 55, 3, 55, 1612, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1617, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1623, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1630, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1635, 8, 55, 10, 55, 12, 55, 1638, 9, 55, 1, 55, 1, 55, 3, 55, 1642, 8, 55, 1, 55, 3, 55, 1645, 8, 55, 1, 55, 3, 55, 1648, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1653, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1658, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1665, 8, 56, 1, 57, 1, 57, 3, 57, 1669, 8, 57, 1, 57, 1, 57, 3, 57, 1673, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1683, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1690, 8, 59, 10, 59, 12, 59, 1693, 9, 59, 3, 59, 1695, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1702, 8, 59, 10, 59, 12, 59, 1705, 9, 59, 1, 59, 3, 59, 1708, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1716, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1723, 8, 60, 10, 60, 12, 60, 1726, 9, 60, 3, 60, 1728, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1735, 8, 60, 10, 60, 12, 60, 1738, 9, 60, 3, 60, 1740, 8, 60, 1, 60, 3, 60, 1743, 8, 60, 1, 60, 3, 60, 1746, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1756, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1765, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1772, 8, 63, 10, 63, 12, 63, 1775, 9, 63, 1, 63, 3, 63, 1778, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1785, 8, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1790, 8, 64, 10, 64, 12, 64, 1793, 9, 64, 1, 64, 3, 64, 1796, 8, 64, 1, 64, 1, 64, 3, 64, 1800, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1807, 8, 65, 10, 65, 12, 65, 1810, 9, 65, 1, 65, 3, 65, 1813, 8, 65, 1, 65, 1, 65, 3, 65, 1817, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1822, 8, 65, 1, 66, 1, 66, 3, 66, 1826, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1831, 8, 66, 10, 66, 12, 66, 1834, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 1841, 8, 67, 10, 67, 12, 67, 1844, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1850, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1855, 8, 69, 1, 69, 3, 69, 1858, 8, 69, 1, 69, 1, 69, 3, 69, 1862, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1876, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1888, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1897, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1906, 8, 74, 1, 74, 1, 74, 3, 74, 1910, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1920, 8, 74, 1, 74, 3, 74, 1923, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1932, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1941, 8, 74, 1, 74, 3, 74, 1944, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1950, 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, 3, 74, 1964, 8, 74, 1, 74, 1, 74, 3, 74, 1968, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1979, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1984, 8, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 4, 77, 1995, 8, 77, 11, 77, 12, 77, 1996, 1, 78, 1, 78, 1, 78, 4, 78, 2002, 8, 78, 11, 78, 12, 78, 2003, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 2012, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2017, 8, 80, 5, 80, 2019, 8, 80, 10, 80, 12, 80, 2022, 9, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2034, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2047, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2102, 8, 113, 1, 113, 2, 447, 485, 1, 68, 114, 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, 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, 2, 0, 147, 147, 172, 172, 1, 0, 8, 9, 2, 0, 59, 59, 142, 142, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, 122, 126, 126, 4, 0, 84, 84, 133, 133, 139, 139, 146, 146, 2, 0, 7, 7, 12, 13, 1, 0, 14, 17, 1, 0, 18, 21, 4, 0, 77, 77, 97, 97, 99, 99, 118, 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 173, 174, 187, 187, 190, 191, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 155, 155, 180, 180, 2, 0, 5, 5, 106, 106, 1, 0, 177, 178, 2, 0, 34, 34, 60, 60, 2, 0, 152, 152, 163, 163, 2, 0, 160, 160, 167, 167, 2, 0, 161, 161, 168, 169, 2, 0, 162, 162, 164, 164, 2, 0, 8, 10, 102, 102, 2, 0, 186, 186, 190, 190, 1, 0, 25, 181, 2392, 0, 231, 1, 0, 0, 0, 2, 239, 1, 0, 0, 0, 4, 265, 1, 0, 0, 0, 6, 293, 1, 0, 0, 0, 8, 325, 1, 0, 0, 0, 10, 335, 1, 0, 0, 0, 12, 343, 1, 0, 0, 0, 14, 353, 1, 0, 0, 0, 16, 357, 1, 0, 0, 0, 18, 368, 1, 0, 0, 0, 20, 371, 1, 0, 0, 0, 22, 377, 1, 0, 0, 0, 24, 411, 1, 0, 0, 0, 26, 423, 1, 0, 0, 0, 28, 425, 1, 0, 0, 0, 30, 472, 1, 0, 0, 0, 32, 483, 1, 0, 0, 0, 34, 501, 1, 0, 0, 0, 36, 553, 1, 0, 0, 0, 38, 559, 1, 0, 0, 0, 40, 600, 1, 0, 0, 0, 42, 642, 1, 0, 0, 0, 44, 646, 1, 0, 0, 0, 46, 710, 1, 0, 0, 0, 48, 742, 1, 0, 0, 0, 50, 771, 1, 0, 0, 0, 52, 792, 1, 0, 0, 0, 54, 806, 1, 0, 0, 0, 56, 817, 1, 0, 0, 0, 58, 836, 1, 0, 0, 0, 60, 864, 1, 0, 0, 0, 62, 877, 1, 0, 0, 0, 64, 895, 1, 0, 0, 0, 66, 901, 1, 0, 0, 0, 68, 1003, 1, 0, 0, 0, 70, 1121, 1, 0, 0, 0, 72, 1131, 1, 0, 0, 0, 74, 1206, 1, 0, 0, 0, 76, 1208, 1, 0, 0, 0, 78, 1255, 1, 0, 0, 0, 80, 1273, 1, 0, 0, 0, 82, 1275, 1, 0, 0, 0, 84, 1289, 1, 0, 0, 0, 86, 1306, 1, 0, 0, 0, 88, 1407, 1, 0, 0, 0, 90, 1409, 1, 0, 0, 0, 92, 1412, 1, 0, 0, 0, 94, 1422, 1, 0, 0, 0, 96, 1508, 1, 0, 0, 0, 98, 1522, 1, 0, 0, 0, 100, 1537, 1, 0, 0, 0, 102, 1553, 1, 0, 0, 0, 104, 1561, 1, 0, 0, 0, 106, 1564, 1, 0, 0, 0, 108, 1599, 1, 0, 0, 0, 110, 1611, 1, 0, 0, 0, 112, 1652, 1, 0, 0, 0, 114, 1666, 1, 0, 0, 0, 116, 1674, 1, 0, 0, 0, 118, 1680, 1, 0, 0, 0, 120, 1711, 1, 0, 0, 0, 122, 1747, 1, 0, 0, 0, 124, 1757, 1, 0, 0, 0, 126, 1766, 1, 0, 0, 0, 128, 1781, 1, 0, 0, 0, 130, 1801, 1, 0, 0, 0, 132, 1823, 1, 0, 0, 0, 134, 1835, 1, 0, 0, 0, 136, 1845, 1, 0, 0, 0, 138, 1851, 1, 0, 0, 0, 140, 1863, 1, 0, 0, 0, 142, 1875, 1, 0, 0, 0, 144, 1887, 1, 0, 0, 0, 146, 1896, 1, 0, 0, 0, 148, 1983, 1, 0, 0, 0, 150, 1985, 1, 0, 0, 0, 152, 1988, 1, 0, 0, 0, 154, 1991, 1, 0, 0, 0, 156, 1998, 1, 0, 0, 0, 158, 2005, 1, 0, 0, 0, 160, 2009, 1, 0, 0, 0, 162, 2023, 1, 0, 0, 0, 164, 2025, 1, 0, 0, 0, 166, 2027, 1, 0, 0, 0, 168, 2029, 1, 0, 0, 0, 170, 2033, 1, 0, 0, 0, 172, 2035, 1, 0, 0, 0, 174, 2037, 1, 0, 0, 0, 176, 2039, 1, 0, 0, 0, 178, 2041, 1, 0, 0, 0, 180, 2046, 1, 0, 0, 0, 182, 2050, 1, 0, 0, 0, 184, 2052, 1, 0, 0, 0, 186, 2054, 1, 0, 0, 0, 188, 2056, 1, 0, 0, 0, 190, 2058, 1, 0, 0, 0, 192, 2060, 1, 0, 0, 0, 194, 2062, 1, 0, 0, 0, 196, 2064, 1, 0, 0, 0, 198, 2066, 1, 0, 0, 0, 200, 2068, 1, 0, 0, 0, 202, 2070, 1, 0, 0, 0, 204, 2072, 1, 0, 0, 0, 206, 2074, 1, 0, 0, 0, 208, 2076, 1, 0, 0, 0, 210, 2078, 1, 0, 0, 0, 212, 2080, 1, 0, 0, 0, 214, 2082, 1, 0, 0, 0, 216, 2084, 1, 0, 0, 0, 218, 2086, 1, 0, 0, 0, 220, 2088, 1, 0, 0, 0, 222, 2090, 1, 0, 0, 0, 224, 2092, 1, 0, 0, 0, 226, 2101, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 230, 233, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 234, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 234, 235, 5, 0, 0, 1, 235, 1, 1, 0, 0, 0, 236, 238, 5, 1, 0, 0, 237, 236, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 242, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, 251, 3, 4, 2, 0, 243, 245, 5, 1, 0, 0, 244, 243, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 250, 3, 4, 2, 0, 249, 244, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 257, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 256, 5, 1, 0, 0, 255, 254, 1, 0, 0, 0, 256, 259, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 3, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 260, 263, 5, 71, 0, 0, 261, 262, 5, 114, 0, 0, 262, 264, 5, 111, 0, 0, 263, 261, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 266, 1, 0, 0, 0, 265, 260, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 291, 1, 0, 0, 0, 267, 292, 3, 6, 3, 0, 268, 292, 3, 8, 4, 0, 269, 292, 3, 10, 5, 0, 270, 292, 3, 12, 6, 0, 271, 292, 3, 14, 7, 0, 272, 292, 3, 22, 11, 0, 273, 292, 3, 28, 14, 0, 274, 292, 3, 44, 22, 0, 275, 292, 3, 46, 23, 0, 276, 292, 3, 48, 24, 0, 277, 292, 3, 60, 30, 0, 278, 292, 3, 62, 31, 0, 279, 292, 3, 64, 32, 0, 280, 292, 3, 66, 33, 0, 281, 292, 3, 74, 37, 0, 282, 292, 3, 78, 39, 0, 283, 292, 3, 82, 41, 0, 284, 292, 3, 20, 10, 0, 285, 292, 3, 16, 8, 0, 286, 292, 3, 18, 9, 0, 287, 292, 3, 84, 42, 0, 288, 292, 3, 106, 53, 0, 289, 292, 3, 110, 55, 0, 290, 292, 3, 114, 57, 0, 291, 267, 1, 0, 0, 0, 291, 268, 1, 0, 0, 0, 291, 269, 1, 0, 0, 0, 291, 270, 1, 0, 0, 0, 291, 271, 1, 0, 0, 0, 291, 272, 1, 0, 0, 0, 291, 273, 1, 0, 0, 0, 291, 274, 1, 0, 0, 0, 291, 275, 1, 0, 0, 0, 291, 276, 1, 0, 0, 0, 291, 277, 1, 0, 0, 0, 291, 278, 1, 0, 0, 0, 291, 279, 1, 0, 0, 0, 291, 280, 1, 0, 0, 0, 291, 281, 1, 0, 0, 0, 291, 282, 1, 0, 0, 0, 291, 283, 1, 0, 0, 0, 291, 284, 1, 0, 0, 0, 291, 285, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 291, 288, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 290, 1, 0, 0, 0, 292, 5, 1, 0, 0, 0, 293, 294, 5, 30, 0, 0, 294, 298, 5, 133, 0, 0, 295, 296, 3, 182, 91, 0, 296, 297, 5, 2, 0, 0, 297, 299, 1, 0, 0, 0, 298, 295, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 323, 3, 184, 92, 0, 301, 311, 5, 121, 0, 0, 302, 303, 5, 137, 0, 0, 303, 312, 3, 188, 94, 0, 304, 306, 5, 46, 0, 0, 305, 304, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 308, 3, 190, 95, 0, 308, 309, 5, 137, 0, 0, 309, 310, 3, 190, 95, 0, 310, 312, 1, 0, 0, 0, 311, 302, 1, 0, 0, 0, 311, 305, 1, 0, 0, 0, 312, 324, 1, 0, 0, 0, 313, 315, 5, 27, 0, 0, 314, 316, 5, 46, 0, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 324, 3, 30, 15, 0, 318, 320, 5, 63, 0, 0, 319, 321, 5, 46, 0, 0, 320, 319, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 324, 3, 190, 95, 0, 323, 301, 1, 0, 0, 0, 323, 313, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 324, 7, 1, 0, 0, 0, 325, 333, 5, 31, 0, 0, 326, 334, 3, 182, 91, 0, 327, 328, 3, 182, 91, 0, 328, 329, 5, 2, 0, 0, 329, 331, 1, 0, 0, 0, 330, 327, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 3, 186, 93, 0, 333, 326, 1, 0, 0, 0, 333, 330, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 9, 1, 0, 0, 0, 335, 337, 5, 35, 0, 0, 336, 338, 5, 55, 0, 0, 337, 336, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 3, 68, 34, 0, 340, 341, 5, 33, 0, 0, 341, 342, 3, 182, 91, 0, 342, 11, 1, 0, 0, 0, 343, 345, 5, 38, 0, 0, 344, 346, 7, 0, 0, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 351, 1, 0, 0, 0, 347, 349, 5, 138, 0, 0, 348, 350, 3, 210, 105, 0, 349, 348, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, 347, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 13, 1, 0, 0, 0, 353, 355, 7, 1, 0, 0, 354, 356, 5, 138, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 15, 1, 0, 0, 0, 357, 359, 5, 126, 0, 0, 358, 360, 5, 138, 0, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 366, 1, 0, 0, 0, 361, 363, 5, 137, 0, 0, 362, 364, 5, 129, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 367, 3, 206, 103, 0, 366, 361, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 17, 1, 0, 0, 0, 368, 369, 5, 129, 0, 0, 369, 370, 3, 206, 103, 0, 370, 19, 1, 0, 0, 0, 371, 373, 5, 120, 0, 0, 372, 374, 5, 129, 0, 0, 373, 372, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 3, 206, 103, 0, 376, 21, 1, 0, 0, 0, 377, 379, 5, 50, 0, 0, 378, 380, 5, 141, 0, 0, 379, 378, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 385, 5, 84, 0, 0, 382, 383, 5, 80, 0, 0, 383, 384, 5, 102, 0, 0, 384, 386, 5, 70, 0, 0, 385, 382, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 390, 1, 0, 0, 0, 387, 388, 3, 182, 91, 0, 388, 389, 5, 2, 0, 0, 389, 391, 1, 0, 0, 0, 390, 387, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 3, 196, 98, 0, 393, 394, 5, 107, 0, 0, 394, 395, 3, 184, 92, 0, 395, 396, 5, 3, 0, 0, 396, 401, 3, 24, 12, 0, 397, 398, 5, 5, 0, 0, 398, 400, 3, 24, 12, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 407, 5, 4, 0, 0, 405, 406, 5, 149, 0, 0, 406, 408, 3, 68, 34, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 23, 1, 0, 0, 0, 409, 412, 3, 190, 95, 0, 410, 412, 3, 68, 34, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 415, 1, 0, 0, 0, 413, 414, 5, 45, 0, 0, 414, 416, 3, 192, 96, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 419, 3, 140, 70, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 25, 1, 0, 0, 0, 420, 421, 5, 151, 0, 0, 421, 424, 5, 186, 0, 0, 422, 424, 5, 132, 0, 0, 423, 420, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 27, 1, 0, 0, 0, 425, 427, 5, 50, 0, 0, 426, 428, 7, 2, 0, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 433, 5, 133, 0, 0, 430, 431, 5, 80, 0, 0, 431, 432, 5, 102, 0, 0, 432, 434, 5, 70, 0, 0, 433, 430, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 438, 1, 0, 0, 0, 435, 436, 3, 182, 91, 0, 436, 437, 5, 2, 0, 0, 437, 439, 1, 0, 0, 0, 438, 435, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 470, 3, 184, 92, 0, 441, 442, 5, 3, 0, 0, 442, 447, 3, 30, 15, 0, 443, 444, 5, 5, 0, 0, 444, 446, 3, 30, 15, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 454, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 451, 5, 5, 0, 0, 451, 453, 3, 38, 19, 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, 457, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 466, 5, 4, 0, 0, 458, 463, 3, 26, 13, 0, 459, 460, 5, 5, 0, 0, 460, 462, 3, 26, 13, 0, 461, 459, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 467, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 458, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 471, 1, 0, 0, 0, 468, 469, 5, 33, 0, 0, 469, 471, 3, 84, 42, 0, 470, 441, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 29, 1, 0, 0, 0, 472, 474, 3, 190, 95, 0, 473, 475, 3, 32, 16, 0, 474, 473, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 479, 1, 0, 0, 0, 476, 478, 3, 34, 17, 0, 477, 476, 1, 0, 0, 0, 478, 481, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 31, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 482, 484, 3, 176, 88, 0, 483, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 486, 497, 1, 0, 0, 0, 487, 488, 5, 3, 0, 0, 488, 489, 3, 36, 18, 0, 489, 490, 5, 4, 0, 0, 490, 498, 1, 0, 0, 0, 491, 492, 5, 3, 0, 0, 492, 493, 3, 36, 18, 0, 493, 494, 5, 5, 0, 0, 494, 495, 3, 36, 18, 0, 495, 496, 5, 4, 0, 0, 496, 498, 1, 0, 0, 0, 497, 487, 1, 0, 0, 0, 497, 491, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 33, 1, 0, 0, 0, 499, 500, 5, 49, 0, 0, 500, 502, 3, 176, 88, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 550, 1, 0, 0, 0, 503, 504, 5, 113, 0, 0, 504, 506, 5, 95, 0, 0, 505, 507, 3, 140, 70, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 509, 1, 0, 0, 0, 508, 510, 3, 42, 21, 0, 509, 508, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 512, 1, 0, 0, 0, 511, 513, 5, 36, 0, 0, 512, 511, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 551, 1, 0, 0, 0, 514, 515, 5, 102, 0, 0, 515, 518, 5, 104, 0, 0, 516, 518, 5, 141, 0, 0, 517, 514, 1, 0, 0, 0, 517, 516, 1, 0, 0, 0, 518, 520, 1, 0, 0, 0, 519, 521, 3, 42, 21, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 551, 1, 0, 0, 0, 522, 523, 5, 44, 0, 0, 523, 524, 5, 3, 0, 0, 524, 525, 3, 68, 34, 0, 525, 526, 5, 4, 0, 0, 526, 551, 1, 0, 0, 0, 527, 534, 5, 56, 0, 0, 528, 535, 3, 36, 18, 0, 529, 535, 3, 72, 36, 0, 530, 531, 5, 3, 0, 0, 531, 532, 3, 68, 34, 0, 532, 533, 5, 4, 0, 0, 533, 535, 1, 0, 0, 0, 534, 528, 1, 0, 0, 0, 534, 529, 1, 0, 0, 0, 534, 530, 1, 0, 0, 0, 535, 551, 1, 0, 0, 0, 536, 537, 5, 45, 0, 0, 537, 551, 3, 192, 96, 0, 538, 551, 3, 40, 20, 0, 539, 540, 5, 170, 0, 0, 540, 542, 5, 171, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 5, 33, 0, 0, 544, 545, 5, 3, 0, 0, 545, 546, 3, 68, 34, 0, 546, 548, 5, 4, 0, 0, 547, 549, 7, 3, 0, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 551, 1, 0, 0, 0, 550, 503, 1, 0, 0, 0, 550, 517, 1, 0, 0, 0, 550, 522, 1, 0, 0, 0, 550, 527, 1, 0, 0, 0, 550, 536, 1, 0, 0, 0, 550, 538, 1, 0, 0, 0, 550, 541, 1, 0, 0, 0, 551, 35, 1, 0, 0, 0, 552, 554, 7, 4, 0, 0, 553, 552, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 187, 0, 0, 556, 37, 1, 0, 0, 0, 557, 558, 5, 49, 0, 0, 558, 560, 3, 176, 88, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 598, 1, 0, 0, 0, 561, 562, 5, 113, 0, 0, 562, 565, 5, 95, 0, 0, 563, 565, 5, 141, 0, 0, 564, 561, 1, 0, 0, 0, 564, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 5, 3, 0, 0, 567, 572, 3, 24, 12, 0, 568, 569, 5, 5, 0, 0, 569, 571, 3, 24, 12, 0, 570, 568, 1, 0, 0, 0, 571, 574, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 577, 5, 4, 0, 0, 576, 578, 3, 42, 21, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 599, 1, 0, 0, 0, 579, 580, 5, 44, 0, 0, 580, 581, 5, 3, 0, 0, 581, 582, 3, 68, 34, 0, 582, 583, 5, 4, 0, 0, 583, 599, 1, 0, 0, 0, 584, 585, 5, 74, 0, 0, 585, 586, 5, 95, 0, 0, 586, 587, 5, 3, 0, 0, 587, 592, 3, 190, 95, 0, 588, 589, 5, 5, 0, 0, 589, 591, 3, 190, 95, 0, 590, 588, 1, 0, 0, 0, 591, 594, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 595, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 5, 4, 0, 0, 596, 597, 3, 40, 20, 0, 597, 599, 1, 0, 0, 0, 598, 564, 1, 0, 0, 0, 598, 579, 1, 0, 0, 0, 598, 584, 1, 0, 0, 0, 599, 39, 1, 0, 0, 0, 600, 601, 5, 117, 0, 0, 601, 613, 3, 194, 97, 0, 602, 603, 5, 3, 0, 0, 603, 608, 3, 190, 95, 0, 604, 605, 5, 5, 0, 0, 605, 607, 3, 190, 95, 0, 606, 604, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 611, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 5, 4, 0, 0, 612, 614, 1, 0, 0, 0, 613, 602, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 629, 1, 0, 0, 0, 615, 616, 5, 107, 0, 0, 616, 623, 7, 5, 0, 0, 617, 618, 5, 131, 0, 0, 618, 624, 7, 6, 0, 0, 619, 624, 5, 41, 0, 0, 620, 624, 5, 123, 0, 0, 621, 622, 5, 101, 0, 0, 622, 624, 5, 26, 0, 0, 623, 617, 1, 0, 0, 0, 623, 619, 1, 0, 0, 0, 623, 620, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 626, 5, 99, 0, 0, 626, 628, 3, 176, 88, 0, 627, 615, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 631, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 640, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 632, 634, 5, 102, 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 638, 5, 57, 0, 0, 636, 637, 5, 86, 0, 0, 637, 639, 7, 7, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 633, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 41, 1, 0, 0, 0, 642, 643, 5, 107, 0, 0, 643, 644, 5, 48, 0, 0, 644, 645, 7, 8, 0, 0, 645, 43, 1, 0, 0, 0, 646, 648, 5, 50, 0, 0, 647, 649, 7, 2, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 654, 5, 139, 0, 0, 651, 652, 5, 80, 0, 0, 652, 653, 5, 102, 0, 0, 653, 655, 5, 70, 0, 0, 654, 651, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 659, 1, 0, 0, 0, 656, 657, 3, 182, 91, 0, 657, 658, 5, 2, 0, 0, 658, 660, 1, 0, 0, 0, 659, 656, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 666, 3, 198, 99, 0, 662, 667, 5, 37, 0, 0, 663, 667, 5, 28, 0, 0, 664, 665, 5, 89, 0, 0, 665, 667, 5, 105, 0, 0, 666, 662, 1, 0, 0, 0, 666, 663, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 682, 1, 0, 0, 0, 668, 683, 5, 59, 0, 0, 669, 683, 5, 88, 0, 0, 670, 680, 5, 142, 0, 0, 671, 672, 5, 105, 0, 0, 672, 677, 3, 190, 95, 0, 673, 674, 5, 5, 0, 0, 674, 676, 3, 190, 95, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 671, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 668, 1, 0, 0, 0, 682, 669, 1, 0, 0, 0, 682, 670, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 107, 0, 0, 685, 689, 3, 184, 92, 0, 686, 687, 5, 73, 0, 0, 687, 688, 5, 64, 0, 0, 688, 690, 5, 127, 0, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 692, 5, 148, 0, 0, 692, 694, 3, 68, 34, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 704, 5, 38, 0, 0, 696, 701, 3, 106, 53, 0, 697, 701, 3, 74, 37, 0, 698, 701, 3, 60, 30, 0, 699, 701, 3, 84, 42, 0, 700, 696, 1, 0, 0, 0, 700, 697, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 703, 5, 1, 0, 0, 703, 705, 1, 0, 0, 0, 704, 700, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 66, 0, 0, 709, 45, 1, 0, 0, 0, 710, 712, 5, 50, 0, 0, 711, 713, 7, 2, 0, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 718, 5, 146, 0, 0, 715, 716, 5, 80, 0, 0, 716, 717, 5, 102, 0, 0, 717, 719, 5, 70, 0, 0, 718, 715, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 723, 1, 0, 0, 0, 720, 721, 3, 182, 91, 0, 721, 722, 5, 2, 0, 0, 722, 724, 1, 0, 0, 0, 723, 720, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 737, 3, 200, 100, 0, 726, 727, 5, 3, 0, 0, 727, 732, 3, 190, 95, 0, 728, 729, 5, 5, 0, 0, 729, 731, 3, 190, 95, 0, 730, 728, 1, 0, 0, 0, 731, 734, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 735, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 5, 4, 0, 0, 736, 738, 1, 0, 0, 0, 737, 726, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 5, 33, 0, 0, 740, 741, 3, 84, 42, 0, 741, 47, 1, 0, 0, 0, 742, 743, 5, 50, 0, 0, 743, 744, 5, 147, 0, 0, 744, 748, 5, 133, 0, 0, 745, 746, 5, 80, 0, 0, 746, 747, 5, 102, 0, 0, 747, 749, 5, 70, 0, 0, 748, 745, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 753, 1, 0, 0, 0, 750, 751, 3, 182, 91, 0, 751, 752, 5, 2, 0, 0, 752, 754, 1, 0, 0, 0, 753, 750, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 3, 184, 92, 0, 756, 757, 5, 143, 0, 0, 757, 769, 3, 202, 101, 0, 758, 759, 5, 3, 0, 0, 759, 764, 3, 170, 85, 0, 760, 761, 5, 5, 0, 0, 761, 763, 3, 170, 85, 0, 762, 760, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 767, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 767, 768, 5, 4, 0, 0, 768, 770, 1, 0, 0, 0, 769, 758, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 49, 1, 0, 0, 0, 771, 773, 5, 150, 0, 0, 772, 774, 5, 116, 0, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 3, 52, 26, 0, 776, 777, 5, 33, 0, 0, 777, 778, 5, 3, 0, 0, 778, 779, 3, 84, 42, 0, 779, 789, 5, 4, 0, 0, 780, 781, 5, 5, 0, 0, 781, 782, 3, 52, 26, 0, 782, 783, 5, 33, 0, 0, 783, 784, 5, 3, 0, 0, 784, 785, 3, 84, 42, 0, 785, 786, 5, 4, 0, 0, 786, 788, 1, 0, 0, 0, 787, 780, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 51, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 804, 3, 184, 92, 0, 793, 794, 5, 3, 0, 0, 794, 799, 3, 190, 95, 0, 795, 796, 5, 5, 0, 0, 796, 798, 3, 190, 95, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 4, 0, 0, 803, 805, 1, 0, 0, 0, 804, 793, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 53, 1, 0, 0, 0, 806, 807, 3, 52, 26, 0, 807, 808, 5, 33, 0, 0, 808, 809, 5, 3, 0, 0, 809, 810, 3, 162, 81, 0, 810, 812, 5, 140, 0, 0, 811, 813, 5, 29, 0, 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 3, 164, 82, 0, 815, 816, 5, 4, 0, 0, 816, 55, 1, 0, 0, 0, 817, 829, 3, 184, 92, 0, 818, 819, 5, 3, 0, 0, 819, 824, 3, 190, 95, 0, 820, 821, 5, 5, 0, 0, 821, 823, 3, 190, 95, 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, 4, 0, 0, 828, 830, 1, 0, 0, 0, 829, 818, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 5, 33, 0, 0, 832, 833, 5, 3, 0, 0, 833, 834, 3, 84, 42, 0, 834, 835, 5, 4, 0, 0, 835, 57, 1, 0, 0, 0, 836, 845, 5, 124, 0, 0, 837, 846, 5, 7, 0, 0, 838, 843, 3, 68, 34, 0, 839, 841, 5, 33, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 844, 3, 172, 86, 0, 843, 840, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 837, 1, 0, 0, 0, 845, 838, 1, 0, 0, 0, 846, 860, 1, 0, 0, 0, 847, 856, 5, 5, 0, 0, 848, 857, 5, 7, 0, 0, 849, 854, 3, 68, 34, 0, 850, 852, 5, 33, 0, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 855, 3, 172, 86, 0, 854, 851, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 857, 1, 0, 0, 0, 856, 848, 1, 0, 0, 0, 856, 849, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 847, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 59, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 865, 3, 50, 25, 0, 864, 863, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 5, 59, 0, 0, 867, 868, 5, 75, 0, 0, 868, 871, 3, 112, 56, 0, 869, 870, 5, 149, 0, 0, 870, 872, 3, 68, 34, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 1, 0, 0, 0, 873, 875, 3, 58, 29, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 61, 1, 0, 0, 0, 876, 878, 3, 50, 25, 0, 877, 876, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 59, 0, 0, 880, 881, 5, 75, 0, 0, 881, 884, 3, 112, 56, 0, 882, 883, 5, 149, 0, 0, 883, 885, 3, 68, 34, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 890, 1, 0, 0, 0, 886, 888, 3, 134, 67, 0, 887, 886, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 3, 136, 68, 0, 890, 887, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 1, 0, 0, 0, 892, 894, 3, 58, 29, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 63, 1, 0, 0, 0, 895, 897, 5, 61, 0, 0, 896, 898, 5, 55, 0, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 3, 182, 91, 0, 900, 65, 1, 0, 0, 0, 901, 902, 5, 63, 0, 0, 902, 905, 7, 9, 0, 0, 903, 904, 5, 80, 0, 0, 904, 906, 5, 70, 0, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 910, 1, 0, 0, 0, 907, 908, 3, 182, 91, 0, 908, 909, 5, 2, 0, 0, 909, 911, 1, 0, 0, 0, 910, 907, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 3, 226, 113, 0, 913, 67, 1, 0, 0, 0, 914, 915, 6, 34, -1, 0, 915, 1004, 3, 72, 36, 0, 916, 1004, 5, 188, 0, 0, 917, 1004, 5, 189, 0, 0, 918, 919, 3, 182, 91, 0, 919, 920, 5, 2, 0, 0, 920, 922, 1, 0, 0, 0, 921, 918, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 184, 92, 0, 924, 925, 5, 2, 0, 0, 925, 927, 1, 0, 0, 0, 926, 921, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 1004, 3, 190, 95, 0, 929, 930, 3, 166, 83, 0, 930, 931, 3, 68, 34, 20, 931, 1004, 1, 0, 0, 0, 932, 933, 3, 180, 90, 0, 933, 946, 5, 3, 0, 0, 934, 936, 5, 62, 0, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 942, 3, 68, 34, 0, 938, 939, 5, 5, 0, 0, 939, 941, 3, 68, 34, 0, 940, 938, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 947, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 947, 5, 7, 0, 0, 946, 935, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 5, 4, 0, 0, 949, 951, 3, 116, 58, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 953, 1, 0, 0, 0, 952, 954, 3, 120, 60, 0, 953, 952, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 1004, 1, 0, 0, 0, 955, 956, 5, 3, 0, 0, 956, 961, 3, 68, 34, 0, 957, 958, 5, 5, 0, 0, 958, 960, 3, 68, 34, 0, 959, 957, 1, 0, 0, 0, 960, 963, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 964, 965, 5, 4, 0, 0, 965, 1004, 1, 0, 0, 0, 966, 967, 5, 43, 0, 0, 967, 968, 5, 3, 0, 0, 968, 969, 3, 68, 34, 0, 969, 970, 5, 33, 0, 0, 970, 971, 3, 32, 16, 0, 971, 972, 5, 4, 0, 0, 972, 1004, 1, 0, 0, 0, 973, 975, 5, 102, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 5, 70, 0, 0, 977, 974, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 5, 3, 0, 0, 980, 981, 3, 84, 42, 0, 981, 982, 5, 4, 0, 0, 982, 1004, 1, 0, 0, 0, 983, 985, 5, 42, 0, 0, 984, 986, 3, 68, 34, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 992, 1, 0, 0, 0, 987, 988, 5, 148, 0, 0, 988, 989, 3, 68, 34, 0, 989, 990, 5, 136, 0, 0, 990, 991, 3, 68, 34, 0, 991, 993, 1, 0, 0, 0, 992, 987, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 998, 1, 0, 0, 0, 996, 997, 5, 65, 0, 0, 997, 999, 3, 68, 34, 0, 998, 996, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 5, 66, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1004, 3, 70, 35, 0, 1003, 914, 1, 0, 0, 0, 1003, 916, 1, 0, 0, 0, 1003, 917, 1, 0, 0, 0, 1003, 926, 1, 0, 0, 0, 1003, 929, 1, 0, 0, 0, 1003, 932, 1, 0, 0, 0, 1003, 955, 1, 0, 0, 0, 1003, 966, 1, 0, 0, 0, 1003, 977, 1, 0, 0, 0, 1003, 983, 1, 0, 0, 0, 1003, 1002, 1, 0, 0, 0, 1004, 1118, 1, 0, 0, 0, 1005, 1006, 10, 19, 0, 0, 1006, 1007, 5, 11, 0, 0, 1007, 1117, 3, 68, 34, 20, 1008, 1009, 10, 18, 0, 0, 1009, 1010, 7, 10, 0, 0, 1010, 1117, 3, 68, 34, 19, 1011, 1012, 10, 17, 0, 0, 1012, 1013, 7, 4, 0, 0, 1013, 1117, 3, 68, 34, 18, 1014, 1015, 10, 16, 0, 0, 1015, 1016, 7, 11, 0, 0, 1016, 1117, 3, 68, 34, 17, 1017, 1018, 10, 15, 0, 0, 1018, 1019, 7, 12, 0, 0, 1019, 1117, 3, 68, 34, 16, 1020, 1033, 10, 14, 0, 0, 1021, 1034, 5, 6, 0, 0, 1022, 1034, 5, 22, 0, 0, 1023, 1034, 5, 23, 0, 0, 1024, 1034, 5, 24, 0, 0, 1025, 1034, 5, 92, 0, 0, 1026, 1027, 5, 92, 0, 0, 1027, 1034, 5, 102, 0, 0, 1028, 1034, 5, 83, 0, 0, 1029, 1034, 5, 97, 0, 0, 1030, 1034, 5, 77, 0, 0, 1031, 1034, 5, 99, 0, 0, 1032, 1034, 5, 118, 0, 0, 1033, 1021, 1, 0, 0, 0, 1033, 1022, 1, 0, 0, 0, 1033, 1023, 1, 0, 0, 0, 1033, 1024, 1, 0, 0, 0, 1033, 1025, 1, 0, 0, 0, 1033, 1026, 1, 0, 0, 0, 1033, 1028, 1, 0, 0, 0, 1033, 1029, 1, 0, 0, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1117, 3, 68, 34, 15, 1036, 1037, 10, 13, 0, 0, 1037, 1038, 5, 32, 0, 0, 1038, 1117, 3, 68, 34, 14, 1039, 1040, 10, 12, 0, 0, 1040, 1041, 5, 108, 0, 0, 1041, 1117, 3, 68, 34, 13, 1042, 1044, 10, 5, 0, 0, 1043, 1045, 5, 102, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 5, 39, 0, 0, 1047, 1048, 3, 68, 34, 0, 1048, 1049, 5, 32, 0, 0, 1049, 1050, 3, 68, 34, 6, 1050, 1117, 1, 0, 0, 0, 1051, 1052, 10, 8, 0, 0, 1052, 1053, 5, 45, 0, 0, 1053, 1117, 3, 192, 96, 0, 1054, 1056, 10, 7, 0, 0, 1055, 1057, 5, 102, 0, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 7, 13, 0, 0, 1059, 1062, 3, 68, 34, 0, 1060, 1061, 5, 67, 0, 0, 1061, 1063, 3, 68, 34, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1117, 1, 0, 0, 0, 1064, 1069, 10, 6, 0, 0, 1065, 1070, 5, 93, 0, 0, 1066, 1070, 5, 103, 0, 0, 1067, 1068, 5, 102, 0, 0, 1068, 1070, 5, 104, 0, 0, 1069, 1065, 1, 0, 0, 0, 1069, 1066, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1117, 1, 0, 0, 0, 1071, 1073, 10, 4, 0, 0, 1072, 1074, 5, 102, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1114, 5, 83, 0, 0, 1076, 1086, 5, 3, 0, 0, 1077, 1087, 3, 84, 42, 0, 1078, 1083, 3, 68, 34, 0, 1079, 1080, 5, 5, 0, 0, 1080, 1082, 3, 68, 34, 0, 1081, 1079, 1, 0, 0, 0, 1082, 1085, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1087, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1086, 1077, 1, 0, 0, 0, 1086, 1078, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1115, 5, 4, 0, 0, 1089, 1090, 3, 182, 91, 0, 1090, 1091, 5, 2, 0, 0, 1091, 1093, 1, 0, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1115, 3, 184, 92, 0, 1095, 1096, 3, 182, 91, 0, 1096, 1097, 5, 2, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 3, 224, 112, 0, 1101, 1110, 5, 3, 0, 0, 1102, 1107, 3, 68, 34, 0, 1103, 1104, 5, 5, 0, 0, 1104, 1106, 3, 68, 34, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1102, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 5, 4, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1076, 1, 0, 0, 0, 1114, 1092, 1, 0, 0, 0, 1114, 1098, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1005, 1, 0, 0, 0, 1116, 1008, 1, 0, 0, 0, 1116, 1011, 1, 0, 0, 0, 1116, 1014, 1, 0, 0, 0, 1116, 1017, 1, 0, 0, 0, 1116, 1020, 1, 0, 0, 0, 1116, 1036, 1, 0, 0, 0, 1116, 1039, 1, 0, 0, 0, 1116, 1042, 1, 0, 0, 0, 1116, 1051, 1, 0, 0, 0, 1116, 1054, 1, 0, 0, 0, 1116, 1064, 1, 0, 0, 0, 1116, 1071, 1, 0, 0, 0, 1117, 1120, 1, 0, 0, 0, 1118, 1116, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 69, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1121, 1122, 5, 115, 0, 0, 1122, 1127, 5, 3, 0, 0, 1123, 1128, 5, 81, 0, 0, 1124, 1125, 7, 14, 0, 0, 1125, 1126, 5, 5, 0, 0, 1126, 1128, 3, 168, 84, 0, 1127, 1123, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 5, 4, 0, 0, 1130, 71, 1, 0, 0, 0, 1131, 1132, 7, 15, 0, 0, 1132, 73, 1, 0, 0, 0, 1133, 1135, 3, 50, 25, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1141, 1, 0, 0, 0, 1136, 1142, 5, 88, 0, 0, 1137, 1142, 5, 122, 0, 0, 1138, 1139, 5, 88, 0, 0, 1139, 1140, 5, 108, 0, 0, 1140, 1142, 7, 8, 0, 0, 1141, 1136, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1138, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1147, 5, 91, 0, 0, 1144, 1145, 3, 182, 91, 0, 1145, 1146, 5, 2, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1144, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1152, 3, 184, 92, 0, 1150, 1151, 5, 33, 0, 0, 1151, 1153, 3, 208, 104, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1165, 1, 0, 0, 0, 1154, 1155, 5, 3, 0, 0, 1155, 1160, 3, 190, 95, 0, 1156, 1157, 5, 5, 0, 0, 1157, 1159, 3, 190, 95, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1164, 5, 4, 0, 0, 1164, 1166, 1, 0, 0, 0, 1165, 1154, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1196, 1, 0, 0, 0, 1167, 1168, 5, 145, 0, 0, 1168, 1169, 5, 3, 0, 0, 1169, 1174, 3, 68, 34, 0, 1170, 1171, 5, 5, 0, 0, 1171, 1173, 3, 68, 34, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1176, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1177, 1192, 5, 4, 0, 0, 1178, 1179, 5, 5, 0, 0, 1179, 1180, 5, 3, 0, 0, 1180, 1185, 3, 68, 34, 0, 1181, 1182, 5, 5, 0, 0, 1182, 1184, 3, 68, 34, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1189, 5, 4, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1178, 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1197, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1197, 3, 84, 42, 0, 1196, 1167, 1, 0, 0, 0, 1196, 1195, 1, 0, 0, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1200, 3, 76, 38, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1203, 3, 58, 29, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1207, 1, 0, 0, 0, 1204, 1205, 5, 56, 0, 0, 1205, 1207, 5, 145, 0, 0, 1206, 1134, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 75, 1, 0, 0, 0, 1208, 1209, 5, 107, 0, 0, 1209, 1224, 5, 48, 0, 0, 1210, 1211, 5, 3, 0, 0, 1211, 1216, 3, 24, 12, 0, 1212, 1213, 5, 5, 0, 0, 1213, 1215, 3, 24, 12, 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, 1219, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1222, 5, 4, 0, 0, 1220, 1221, 5, 149, 0, 0, 1221, 1223, 3, 68, 34, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1210, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1253, 5, 184, 0, 0, 1227, 1254, 5, 185, 0, 0, 1228, 1229, 5, 142, 0, 0, 1229, 1232, 5, 131, 0, 0, 1230, 1233, 3, 190, 95, 0, 1231, 1233, 3, 108, 54, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1231, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 5, 6, 0, 0, 1235, 1246, 3, 68, 34, 0, 1236, 1239, 5, 5, 0, 0, 1237, 1240, 3, 190, 95, 0, 1238, 1240, 3, 108, 54, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 5, 6, 0, 0, 1242, 1243, 3, 68, 34, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1236, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1251, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1250, 5, 149, 0, 0, 1250, 1252, 3, 68, 34, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1227, 1, 0, 0, 0, 1253, 1228, 1, 0, 0, 0, 1254, 77, 1, 0, 0, 0, 1255, 1259, 5, 112, 0, 0, 1256, 1257, 3, 182, 91, 0, 1257, 1258, 5, 2, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1256, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1268, 3, 204, 102, 0, 1262, 1263, 5, 6, 0, 0, 1263, 1269, 3, 80, 40, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1266, 3, 80, 40, 0, 1266, 1267, 5, 4, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1262, 1, 0, 0, 0, 1268, 1264, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 79, 1, 0, 0, 0, 1270, 1274, 3, 36, 18, 0, 1271, 1274, 3, 176, 88, 0, 1272, 1274, 5, 190, 0, 0, 1273, 1270, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 81, 1, 0, 0, 0, 1275, 1286, 5, 119, 0, 0, 1276, 1287, 3, 192, 96, 0, 1277, 1278, 3, 182, 91, 0, 1278, 1279, 5, 2, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1277, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1285, 3, 184, 92, 0, 1283, 1285, 3, 196, 98, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1276, 1, 0, 0, 0, 1286, 1280, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 83, 1, 0, 0, 0, 1288, 1290, 3, 132, 66, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1297, 3, 88, 44, 0, 1292, 1293, 3, 104, 52, 0, 1293, 1294, 3, 88, 44, 0, 1294, 1296, 1, 0, 0, 0, 1295, 1292, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1302, 3, 134, 67, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 1, 0, 0, 0, 1303, 1305, 3, 136, 68, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 85, 1, 0, 0, 0, 1306, 1314, 3, 96, 48, 0, 1307, 1308, 3, 100, 50, 0, 1308, 1310, 3, 96, 48, 0, 1309, 1311, 3, 102, 51, 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, 1313, 1316, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 87, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1319, 5, 130, 0, 0, 1318, 1320, 7, 16, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1326, 3, 98, 49, 0, 1322, 1323, 5, 5, 0, 0, 1323, 1325, 3, 98, 49, 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, 1341, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1339, 5, 75, 0, 0, 1330, 1335, 3, 96, 48, 0, 1331, 1332, 5, 5, 0, 0, 1332, 1334, 3, 96, 48, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1337, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1340, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1340, 3, 86, 43, 0, 1339, 1330, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1329, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1345, 1, 0, 0, 0, 1343, 1344, 5, 149, 0, 0, 1344, 1346, 3, 68, 34, 0, 1345, 1343, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1361, 1, 0, 0, 0, 1347, 1348, 5, 78, 0, 0, 1348, 1349, 5, 40, 0, 0, 1349, 1354, 3, 68, 34, 0, 1350, 1351, 5, 5, 0, 0, 1351, 1353, 3, 68, 34, 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, 1359, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1358, 5, 79, 0, 0, 1358, 1360, 3, 68, 34, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 1, 0, 0, 0, 1361, 1347, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1377, 1, 0, 0, 0, 1363, 1364, 5, 175, 0, 0, 1364, 1365, 3, 212, 106, 0, 1365, 1366, 5, 33, 0, 0, 1366, 1374, 3, 118, 59, 0, 1367, 1368, 5, 5, 0, 0, 1368, 1369, 3, 212, 106, 0, 1369, 1370, 5, 33, 0, 0, 1370, 1371, 3, 118, 59, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1367, 1, 0, 0, 0, 1373, 1376, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1378, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1377, 1363, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1408, 1, 0, 0, 0, 1379, 1380, 5, 145, 0, 0, 1380, 1381, 5, 3, 0, 0, 1381, 1386, 3, 68, 34, 0, 1382, 1383, 5, 5, 0, 0, 1383, 1385, 3, 68, 34, 0, 1384, 1382, 1, 0, 0, 0, 1385, 1388, 1, 0, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1389, 1404, 5, 4, 0, 0, 1390, 1391, 5, 5, 0, 0, 1391, 1392, 5, 3, 0, 0, 1392, 1397, 3, 68, 34, 0, 1393, 1394, 5, 5, 0, 0, 1394, 1396, 3, 68, 34, 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, 4, 0, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1390, 1, 0, 0, 0, 1403, 1406, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1408, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1407, 1317, 1, 0, 0, 0, 1407, 1379, 1, 0, 0, 0, 1408, 89, 1, 0, 0, 0, 1409, 1410, 3, 84, 42, 0, 1410, 91, 1, 0, 0, 0, 1411, 1413, 3, 132, 66, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 3, 88, 44, 0, 1415, 1417, 3, 134, 67, 0, 1416, 1415, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1419, 1, 0, 0, 0, 1418, 1420, 3, 136, 68, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 93, 1, 0, 0, 0, 1421, 1423, 3, 132, 66, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1434, 3, 88, 44, 0, 1425, 1427, 5, 140, 0, 0, 1426, 1428, 5, 29, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1432, 1, 0, 0, 0, 1429, 1432, 5, 90, 0, 0, 1430, 1432, 5, 68, 0, 0, 1431, 1425, 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1431, 1430, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1435, 3, 88, 44, 0, 1434, 1431, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1439, 1, 0, 0, 0, 1438, 1440, 3, 134, 67, 0, 1439, 1438, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1442, 1, 0, 0, 0, 1441, 1443, 3, 136, 68, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 95, 1, 0, 0, 0, 1444, 1445, 3, 182, 91, 0, 1445, 1446, 5, 2, 0, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1444, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1454, 3, 184, 92, 0, 1450, 1452, 5, 33, 0, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1455, 3, 208, 104, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1461, 1, 0, 0, 0, 1456, 1457, 5, 85, 0, 0, 1457, 1458, 5, 40, 0, 0, 1458, 1462, 3, 196, 98, 0, 1459, 1460, 5, 102, 0, 0, 1460, 1462, 5, 85, 0, 0, 1461, 1456, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1509, 1, 0, 0, 0, 1463, 1464, 3, 182, 91, 0, 1464, 1465, 5, 2, 0, 0, 1465, 1467, 1, 0, 0, 0, 1466, 1463, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 224, 112, 0, 1469, 1470, 5, 3, 0, 0, 1470, 1475, 3, 68, 34, 0, 1471, 1472, 5, 5, 0, 0, 1472, 1474, 3, 68, 34, 0, 1473, 1471, 1, 0, 0, 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1483, 5, 4, 0, 0, 1479, 1481, 5, 33, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 3, 208, 104, 0, 1483, 1480, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1509, 1, 0, 0, 0, 1485, 1495, 5, 3, 0, 0, 1486, 1491, 3, 96, 48, 0, 1487, 1488, 5, 5, 0, 0, 1488, 1490, 3, 96, 48, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1496, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1486, 1, 0, 0, 0, 1495, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 5, 4, 0, 0, 1498, 1509, 1, 0, 0, 0, 1499, 1500, 5, 3, 0, 0, 1500, 1501, 3, 84, 42, 0, 1501, 1506, 5, 4, 0, 0, 1502, 1504, 5, 33, 0, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1507, 3, 208, 104, 0, 1506, 1503, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1447, 1, 0, 0, 0, 1508, 1466, 1, 0, 0, 0, 1508, 1485, 1, 0, 0, 0, 1508, 1499, 1, 0, 0, 0, 1509, 97, 1, 0, 0, 0, 1510, 1523, 5, 7, 0, 0, 1511, 1512, 3, 184, 92, 0, 1512, 1513, 5, 2, 0, 0, 1513, 1514, 5, 7, 0, 0, 1514, 1523, 1, 0, 0, 0, 1515, 1520, 3, 68, 34, 0, 1516, 1518, 5, 33, 0, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, 3, 172, 86, 0, 1520, 1517, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1523, 1, 0, 0, 0, 1522, 1510, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1522, 1515, 1, 0, 0, 0, 1523, 99, 1, 0, 0, 0, 1524, 1538, 5, 5, 0, 0, 1525, 1527, 5, 100, 0, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1534, 1, 0, 0, 0, 1528, 1530, 5, 96, 0, 0, 1529, 1531, 5, 110, 0, 0, 1530, 1529, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1535, 1, 0, 0, 0, 1532, 1535, 5, 87, 0, 0, 1533, 1535, 5, 51, 0, 0, 1534, 1528, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 94, 0, 0, 1537, 1524, 1, 0, 0, 0, 1537, 1526, 1, 0, 0, 0, 1538, 101, 1, 0, 0, 0, 1539, 1540, 5, 107, 0, 0, 1540, 1554, 3, 68, 34, 0, 1541, 1542, 5, 143, 0, 0, 1542, 1543, 5, 3, 0, 0, 1543, 1548, 3, 190, 95, 0, 1544, 1545, 5, 5, 0, 0, 1545, 1547, 3, 190, 95, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1550, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1551, 1552, 5, 4, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1539, 1, 0, 0, 0, 1553, 1541, 1, 0, 0, 0, 1554, 103, 1, 0, 0, 0, 1555, 1557, 5, 140, 0, 0, 1556, 1558, 5, 29, 0, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1562, 1, 0, 0, 0, 1559, 1562, 5, 90, 0, 0, 1560, 1562, 5, 68, 0, 0, 1561, 1555, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1561, 1560, 1, 0, 0, 0, 1562, 105, 1, 0, 0, 0, 1563, 1565, 3, 50, 25, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1569, 5, 142, 0, 0, 1567, 1568, 5, 108, 0, 0, 1568, 1570, 7, 8, 0, 0, 1569, 1567, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 3, 112, 56, 0, 1572, 1575, 5, 131, 0, 0, 1573, 1576, 3, 190, 95, 0, 1574, 1576, 3, 108, 54, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 6, 0, 0, 1578, 1589, 3, 68, 34, 0, 1579, 1582, 5, 5, 0, 0, 1580, 1583, 3, 190, 95, 0, 1581, 1583, 3, 108, 54, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 5, 6, 0, 0, 1585, 1586, 3, 68, 34, 0, 1586, 1588, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1594, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 149, 0, 0, 1593, 1595, 3, 68, 34, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1598, 3, 58, 29, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 107, 1, 0, 0, 0, 1599, 1600, 5, 3, 0, 0, 1600, 1605, 3, 190, 95, 0, 1601, 1602, 5, 5, 0, 0, 1602, 1604, 3, 190, 95, 0, 1603, 1601, 1, 0, 0, 0, 1604, 1607, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1608, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1609, 5, 4, 0, 0, 1609, 109, 1, 0, 0, 0, 1610, 1612, 3, 50, 25, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1616, 5, 142, 0, 0, 1614, 1615, 5, 108, 0, 0, 1615, 1617, 7, 8, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 3, 112, 56, 0, 1619, 1622, 5, 131, 0, 0, 1620, 1623, 3, 190, 95, 0, 1621, 1623, 3, 108, 54, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 5, 6, 0, 0, 1625, 1636, 3, 68, 34, 0, 1626, 1629, 5, 5, 0, 0, 1627, 1630, 3, 190, 95, 0, 1628, 1630, 3, 108, 54, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1628, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 5, 6, 0, 0, 1632, 1633, 3, 68, 34, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1626, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1641, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1640, 5, 149, 0, 0, 1640, 1642, 3, 68, 34, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1647, 1, 0, 0, 0, 1643, 1645, 3, 134, 67, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 3, 136, 68, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 111, 1, 0, 0, 0, 1649, 1650, 3, 182, 91, 0, 1650, 1651, 5, 2, 0, 0, 1651, 1653, 1, 0, 0, 0, 1652, 1649, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1657, 3, 184, 92, 0, 1655, 1656, 5, 33, 0, 0, 1656, 1658, 3, 214, 107, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1664, 1, 0, 0, 0, 1659, 1660, 5, 85, 0, 0, 1660, 1661, 5, 40, 0, 0, 1661, 1665, 3, 196, 98, 0, 1662, 1663, 5, 102, 0, 0, 1663, 1665, 5, 85, 0, 0, 1664, 1659, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 113, 1, 0, 0, 0, 1666, 1668, 5, 144, 0, 0, 1667, 1669, 3, 182, 91, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1672, 1, 0, 0, 0, 1670, 1671, 5, 91, 0, 0, 1671, 1673, 3, 216, 108, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 115, 1, 0, 0, 0, 1674, 1675, 5, 179, 0, 0, 1675, 1676, 5, 3, 0, 0, 1676, 1677, 5, 149, 0, 0, 1677, 1678, 3, 68, 34, 0, 1678, 1679, 5, 4, 0, 0, 1679, 117, 1, 0, 0, 0, 1680, 1682, 5, 3, 0, 0, 1681, 1683, 3, 218, 109, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1694, 1, 0, 0, 0, 1684, 1685, 5, 154, 0, 0, 1685, 1686, 5, 40, 0, 0, 1686, 1691, 3, 68, 34, 0, 1687, 1688, 5, 5, 0, 0, 1688, 1690, 3, 68, 34, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1684, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 5, 109, 0, 0, 1697, 1698, 5, 40, 0, 0, 1698, 1703, 3, 138, 69, 0, 1699, 1700, 5, 5, 0, 0, 1700, 1702, 3, 138, 69, 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, 1708, 3, 122, 61, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 5, 4, 0, 0, 1710, 119, 1, 0, 0, 0, 1711, 1745, 5, 153, 0, 0, 1712, 1746, 3, 212, 106, 0, 1713, 1715, 5, 3, 0, 0, 1714, 1716, 3, 218, 109, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1727, 1, 0, 0, 0, 1717, 1718, 5, 154, 0, 0, 1718, 1719, 5, 40, 0, 0, 1719, 1724, 3, 68, 34, 0, 1720, 1721, 5, 5, 0, 0, 1721, 1723, 3, 68, 34, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1717, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1739, 1, 0, 0, 0, 1729, 1730, 5, 109, 0, 0, 1730, 1731, 5, 40, 0, 0, 1731, 1736, 3, 138, 69, 0, 1732, 1733, 5, 5, 0, 0, 1733, 1735, 3, 138, 69, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1738, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1729, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1742, 1, 0, 0, 0, 1741, 1743, 3, 122, 61, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 5, 4, 0, 0, 1745, 1712, 1, 0, 0, 0, 1745, 1713, 1, 0, 0, 0, 1746, 121, 1, 0, 0, 0, 1747, 1755, 3, 124, 62, 0, 1748, 1749, 5, 181, 0, 0, 1749, 1750, 5, 101, 0, 0, 1750, 1756, 5, 183, 0, 0, 1751, 1752, 5, 158, 0, 0, 1752, 1756, 5, 127, 0, 0, 1753, 1756, 5, 78, 0, 0, 1754, 1756, 5, 182, 0, 0, 1755, 1748, 1, 0, 0, 0, 1755, 1751, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1754, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 123, 1, 0, 0, 0, 1757, 1764, 7, 17, 0, 0, 1758, 1765, 3, 146, 73, 0, 1759, 1760, 5, 39, 0, 0, 1760, 1761, 3, 142, 71, 0, 1761, 1762, 5, 32, 0, 0, 1762, 1763, 3, 144, 72, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1759, 1, 0, 0, 0, 1765, 125, 1, 0, 0, 0, 1766, 1767, 3, 220, 110, 0, 1767, 1777, 5, 3, 0, 0, 1768, 1773, 3, 68, 34, 0, 1769, 1770, 5, 5, 0, 0, 1770, 1772, 3, 68, 34, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1778, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 5, 7, 0, 0, 1777, 1768, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 5, 4, 0, 0, 1780, 127, 1, 0, 0, 0, 1781, 1782, 3, 222, 111, 0, 1782, 1795, 5, 3, 0, 0, 1783, 1785, 5, 62, 0, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 3, 68, 34, 0, 1787, 1788, 5, 5, 0, 0, 1788, 1790, 3, 68, 34, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1796, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1796, 5, 7, 0, 0, 1795, 1784, 1, 0, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, 5, 4, 0, 0, 1798, 1800, 3, 116, 58, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 129, 1, 0, 0, 0, 1801, 1802, 3, 148, 74, 0, 1802, 1812, 5, 3, 0, 0, 1803, 1808, 3, 68, 34, 0, 1804, 1805, 5, 5, 0, 0, 1805, 1807, 3, 68, 34, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1813, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1813, 5, 7, 0, 0, 1812, 1803, 1, 0, 0, 0, 1812, 1811, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 5, 4, 0, 0, 1815, 1817, 3, 116, 58, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1821, 5, 153, 0, 0, 1819, 1822, 3, 118, 59, 0, 1820, 1822, 3, 212, 106, 0, 1821, 1819, 1, 0, 0, 0, 1821, 1820, 1, 0, 0, 0, 1822, 131, 1, 0, 0, 0, 1823, 1825, 5, 150, 0, 0, 1824, 1826, 5, 116, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1832, 3, 56, 28, 0, 1828, 1829, 5, 5, 0, 0, 1829, 1831, 3, 56, 28, 0, 1830, 1828, 1, 0, 0, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 133, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1836, 5, 109, 0, 0, 1836, 1837, 5, 40, 0, 0, 1837, 1842, 3, 138, 69, 0, 1838, 1839, 5, 5, 0, 0, 1839, 1841, 3, 138, 69, 0, 1840, 1838, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 135, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1846, 5, 98, 0, 0, 1846, 1849, 3, 68, 34, 0, 1847, 1848, 7, 18, 0, 0, 1848, 1850, 3, 68, 34, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 137, 1, 0, 0, 0, 1851, 1854, 3, 68, 34, 0, 1852, 1853, 5, 45, 0, 0, 1853, 1855, 3, 192, 96, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1858, 3, 140, 70, 0, 1857, 1856, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1860, 5, 176, 0, 0, 1860, 1862, 7, 19, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 139, 1, 0, 0, 0, 1863, 1864, 7, 20, 0, 0, 1864, 141, 1, 0, 0, 0, 1865, 1866, 3, 68, 34, 0, 1866, 1867, 5, 156, 0, 0, 1867, 1876, 1, 0, 0, 0, 1868, 1869, 3, 68, 34, 0, 1869, 1870, 5, 159, 0, 0, 1870, 1876, 1, 0, 0, 0, 1871, 1872, 5, 158, 0, 0, 1872, 1876, 5, 127, 0, 0, 1873, 1874, 5, 157, 0, 0, 1874, 1876, 5, 156, 0, 0, 1875, 1865, 1, 0, 0, 0, 1875, 1868, 1, 0, 0, 0, 1875, 1871, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 143, 1, 0, 0, 0, 1877, 1878, 3, 68, 34, 0, 1878, 1879, 5, 156, 0, 0, 1879, 1888, 1, 0, 0, 0, 1880, 1881, 3, 68, 34, 0, 1881, 1882, 5, 159, 0, 0, 1882, 1888, 1, 0, 0, 0, 1883, 1884, 5, 158, 0, 0, 1884, 1888, 5, 127, 0, 0, 1885, 1886, 5, 157, 0, 0, 1886, 1888, 5, 159, 0, 0, 1887, 1877, 1, 0, 0, 0, 1887, 1880, 1, 0, 0, 0, 1887, 1883, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 145, 1, 0, 0, 0, 1889, 1890, 3, 68, 34, 0, 1890, 1891, 5, 156, 0, 0, 1891, 1897, 1, 0, 0, 0, 1892, 1893, 5, 157, 0, 0, 1893, 1897, 5, 156, 0, 0, 1894, 1895, 5, 158, 0, 0, 1895, 1897, 5, 127, 0, 0, 1896, 1889, 1, 0, 0, 0, 1896, 1892, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 147, 1, 0, 0, 0, 1898, 1899, 7, 21, 0, 0, 1899, 1900, 5, 3, 0, 0, 1900, 1901, 3, 68, 34, 0, 1901, 1902, 5, 4, 0, 0, 1902, 1903, 5, 153, 0, 0, 1903, 1905, 5, 3, 0, 0, 1904, 1906, 3, 154, 77, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 3, 158, 79, 0, 1908, 1910, 3, 124, 62, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 5, 4, 0, 0, 1912, 1984, 1, 0, 0, 0, 1913, 1914, 7, 22, 0, 0, 1914, 1915, 5, 3, 0, 0, 1915, 1916, 5, 4, 0, 0, 1916, 1917, 5, 153, 0, 0, 1917, 1919, 5, 3, 0, 0, 1918, 1920, 3, 154, 77, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1923, 3, 156, 78, 0, 1922, 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1984, 5, 4, 0, 0, 1925, 1926, 7, 23, 0, 0, 1926, 1927, 5, 3, 0, 0, 1927, 1928, 5, 4, 0, 0, 1928, 1929, 5, 153, 0, 0, 1929, 1931, 5, 3, 0, 0, 1930, 1932, 3, 154, 77, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 3, 158, 79, 0, 1934, 1935, 5, 4, 0, 0, 1935, 1984, 1, 0, 0, 0, 1936, 1937, 7, 24, 0, 0, 1937, 1938, 5, 3, 0, 0, 1938, 1940, 3, 68, 34, 0, 1939, 1941, 3, 150, 75, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1944, 3, 152, 76, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 5, 4, 0, 0, 1946, 1947, 5, 153, 0, 0, 1947, 1949, 5, 3, 0, 0, 1948, 1950, 3, 154, 77, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1952, 3, 158, 79, 0, 1952, 1953, 5, 4, 0, 0, 1953, 1984, 1, 0, 0, 0, 1954, 1955, 5, 165, 0, 0, 1955, 1956, 5, 3, 0, 0, 1956, 1957, 3, 68, 34, 0, 1957, 1958, 5, 5, 0, 0, 1958, 1959, 3, 36, 18, 0, 1959, 1960, 5, 4, 0, 0, 1960, 1961, 5, 153, 0, 0, 1961, 1963, 5, 3, 0, 0, 1962, 1964, 3, 154, 77, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 3, 158, 79, 0, 1966, 1968, 3, 124, 62, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 4, 0, 0, 1970, 1984, 1, 0, 0, 0, 1971, 1972, 5, 166, 0, 0, 1972, 1973, 5, 3, 0, 0, 1973, 1974, 3, 68, 34, 0, 1974, 1975, 5, 4, 0, 0, 1975, 1976, 5, 153, 0, 0, 1976, 1978, 5, 3, 0, 0, 1977, 1979, 3, 154, 77, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 3, 158, 79, 0, 1981, 1982, 5, 4, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1898, 1, 0, 0, 0, 1983, 1913, 1, 0, 0, 0, 1983, 1925, 1, 0, 0, 0, 1983, 1936, 1, 0, 0, 0, 1983, 1954, 1, 0, 0, 0, 1983, 1971, 1, 0, 0, 0, 1984, 149, 1, 0, 0, 0, 1985, 1986, 5, 5, 0, 0, 1986, 1987, 3, 36, 18, 0, 1987, 151, 1, 0, 0, 0, 1988, 1989, 5, 5, 0, 0, 1989, 1990, 3, 36, 18, 0, 1990, 153, 1, 0, 0, 0, 1991, 1992, 5, 154, 0, 0, 1992, 1994, 5, 40, 0, 0, 1993, 1995, 3, 68, 34, 0, 1994, 1993, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 155, 1, 0, 0, 0, 1998, 1999, 5, 109, 0, 0, 1999, 2001, 5, 40, 0, 0, 2000, 2002, 3, 68, 34, 0, 2001, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 157, 1, 0, 0, 0, 2005, 2006, 5, 109, 0, 0, 2006, 2007, 5, 40, 0, 0, 2007, 2008, 3, 158, 79, 0, 2008, 159, 1, 0, 0, 0, 2009, 2011, 3, 68, 34, 0, 2010, 2012, 3, 140, 70, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2020, 1, 0, 0, 0, 2013, 2014, 5, 5, 0, 0, 2014, 2016, 3, 68, 34, 0, 2015, 2017, 3, 140, 70, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2013, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 161, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2023, 2024, 3, 84, 42, 0, 2024, 163, 1, 0, 0, 0, 2025, 2026, 3, 84, 42, 0, 2026, 165, 1, 0, 0, 0, 2027, 2028, 7, 25, 0, 0, 2028, 167, 1, 0, 0, 0, 2029, 2030, 5, 190, 0, 0, 2030, 169, 1, 0, 0, 0, 2031, 2034, 3, 68, 34, 0, 2032, 2034, 3, 30, 15, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 171, 1, 0, 0, 0, 2035, 2036, 7, 26, 0, 0, 2036, 173, 1, 0, 0, 0, 2037, 2038, 7, 27, 0, 0, 2038, 175, 1, 0, 0, 0, 2039, 2040, 3, 226, 113, 0, 2040, 177, 1, 0, 0, 0, 2041, 2042, 3, 226, 113, 0, 2042, 179, 1, 0, 0, 0, 2043, 2044, 3, 182, 91, 0, 2044, 2045, 5, 2, 0, 0, 2045, 2047, 1, 0, 0, 0, 2046, 2043, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 3, 178, 89, 0, 2049, 181, 1, 0, 0, 0, 2050, 2051, 3, 226, 113, 0, 2051, 183, 1, 0, 0, 0, 2052, 2053, 3, 226, 113, 0, 2053, 185, 1, 0, 0, 0, 2054, 2055, 3, 226, 113, 0, 2055, 187, 1, 0, 0, 0, 2056, 2057, 3, 226, 113, 0, 2057, 189, 1, 0, 0, 0, 2058, 2059, 3, 226, 113, 0, 2059, 191, 1, 0, 0, 0, 2060, 2061, 3, 226, 113, 0, 2061, 193, 1, 0, 0, 0, 2062, 2063, 3, 226, 113, 0, 2063, 195, 1, 0, 0, 0, 2064, 2065, 3, 226, 113, 0, 2065, 197, 1, 0, 0, 0, 2066, 2067, 3, 226, 113, 0, 2067, 199, 1, 0, 0, 0, 2068, 2069, 3, 226, 113, 0, 2069, 201, 1, 0, 0, 0, 2070, 2071, 3, 226, 113, 0, 2071, 203, 1, 0, 0, 0, 2072, 2073, 3, 226, 113, 0, 2073, 205, 1, 0, 0, 0, 2074, 2075, 3, 226, 113, 0, 2075, 207, 1, 0, 0, 0, 2076, 2077, 3, 226, 113, 0, 2077, 209, 1, 0, 0, 0, 2078, 2079, 3, 226, 113, 0, 2079, 211, 1, 0, 0, 0, 2080, 2081, 3, 226, 113, 0, 2081, 213, 1, 0, 0, 0, 2082, 2083, 3, 226, 113, 0, 2083, 215, 1, 0, 0, 0, 2084, 2085, 3, 226, 113, 0, 2085, 217, 1, 0, 0, 0, 2086, 2087, 3, 226, 113, 0, 2087, 219, 1, 0, 0, 0, 2088, 2089, 3, 226, 113, 0, 2089, 221, 1, 0, 0, 0, 2090, 2091, 3, 226, 113, 0, 2091, 223, 1, 0, 0, 0, 2092, 2093, 3, 226, 113, 0, 2093, 225, 1, 0, 0, 0, 2094, 2102, 5, 186, 0, 0, 2095, 2102, 3, 174, 87, 0, 2096, 2102, 5, 190, 0, 0, 2097, 2098, 5, 3, 0, 0, 2098, 2099, 3, 226, 113, 0, 2099, 2100, 5, 4, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2094, 1, 0, 0, 0, 2101, 2095, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2097, 1, 0, 0, 0, 2102, 227, 1, 0, 0, 0, 302, 231, 239, 246, 251, 257, 263, 265, 291, 298, 305, 311, 315, 320, 323, 330, 333, 337, 345, 349, 351, 355, 359, 363, 366, 373, 379, 385, 390, 401, 407, 411, 415, 418, 423, 427, 433, 438, 447, 454, 463, 466, 470, 474, 479, 485, 497, 501, 506, 509, 512, 517, 520, 534, 541, 548, 550, 553, 559, 564, 572, 577, 592, 598, 608, 613, 623, 627, 629, 633, 638, 640, 648, 654, 659, 666, 677, 680, 682, 689, 693, 700, 706, 712, 718, 723, 732, 737, 748, 753, 764, 769, 773, 789, 799, 804, 812, 824, 829, 840, 843, 845, 851, 854, 856, 860, 864, 871, 874, 877, 884, 887, 890, 893, 897, 905, 910, 921, 926, 935, 942, 946, 950, 953, 961, 974, 977, 985, 994, 998, 1003, 1033, 1044, 1056, 1062, 1069, 1073, 1083, 1086, 1092, 1098, 1107, 1110, 1114, 1116, 1118, 1127, 1134, 1141, 1147, 1152, 1160, 1165, 1174, 1185, 1192, 1196, 1199, 1202, 1206, 1216, 1222, 1224, 1232, 1239, 1246, 1251, 1253, 1259, 1268, 1273, 1280, 1284, 1286, 1289, 1297, 1301, 1304, 1310, 1314, 1319, 1326, 1335, 1339, 1341, 1345, 1354, 1359, 1361, 1374, 1377, 1386, 1397, 1404, 1407, 1412, 1416, 1419, 1422, 1427, 1431, 1436, 1439, 1442, 1447, 1451, 1454, 1461, 1466, 1475, 1480, 1483, 1491, 1495, 1503, 1506, 1508, 1517, 1520, 1522, 1526, 1530, 1534, 1537, 1548, 1553, 1557, 1561, 1564, 1569, 1575, 1582, 1589, 1594, 1597, 1605, 1611, 1616, 1622, 1629, 1636, 1641, 1644, 1647, 1652, 1657, 1664, 1668, 1672, 1682, 1691, 1694, 1703, 1707, 1715, 1724, 1727, 1736, 1739, 1742, 1745, 1755, 1764, 1773, 1777, 1784, 1791, 1795, 1799, 1808, 1812, 1816, 1821, 1825, 1832, 1842, 1849, 1854, 1857, 1861, 1875, 1887, 1896, 1905, 1909, 1919, 1922, 1931, 1940, 1943, 1949, 1963, 1967, 1978, 1983, 1996, 2003, 2011, 2016, 2020, 2033, 2046, 2101] \ No newline at end of file diff --git a/internal/engine/sqlite/parser/sqlite_parser.go b/internal/engine/sqlite/parser/sqlite_parser.go index 9ac9829263..1c0f3ec66a 100644 --- a/internal/engine/sqlite/parser/sqlite_parser.go +++ b/internal/engine/sqlite/parser/sqlite_parser.go @@ -72,34 +72,35 @@ func sqliteparserParserInit() { staticData.ruleNames = []string{ "parse", "sql_stmt_list", "sql_stmt", "alter_table_stmt", "analyze_stmt", "attach_stmt", "begin_stmt", "commit_stmt", "rollback_stmt", "savepoint_stmt", - "release_stmt", "create_index_stmt", "indexed_column", "create_table_stmt", - "column_def", "type_name", "column_constraint", "signed_number", "table_constraint", - "foreign_key_clause", "conflict_clause", "create_trigger_stmt", "create_view_stmt", - "create_virtual_table_stmt", "with_clause", "cte_table_name", "recursive_cte", - "common_table_expression", "returning_clause", "delete_stmt", "delete_stmt_limited", - "detach_stmt", "drop_stmt", "expr", "raise_function", "literal_value", - "insert_stmt", "upsert_clause", "pragma_stmt", "pragma_value", "reindex_stmt", - "select_stmt", "join_clause", "select_core", "factored_select_stmt", - "simple_select_stmt", "compound_select_stmt", "table_or_subquery", "result_column", - "join_operator", "join_constraint", "compound_operator", "update_stmt", - "column_name_list", "update_stmt_limited", "qualified_table_name", "vacuum_stmt", - "filter_clause", "window_defn", "over_clause", "frame_spec", "frame_clause", - "simple_function_invocation", "aggregate_function_invocation", "window_function_invocation", - "common_table_stmt", "order_by_stmt", "limit_stmt", "ordering_term", - "asc_desc", "frame_left", "frame_right", "frame_single", "window_function", - "of_OF_fset", "default_DEFAULT__value", "partition_by", "order_by_expr", - "order_by_expr_asc_desc", "expr_asc_desc", "initial_select", "recursive__select", - "unary_operator", "error_message", "module_argument", "column_alias", - "keyword", "name", "function_name", "qualified_function_name", "schema_name", - "table_name", "table_or_index_name", "new_table_name", "column_name", - "collation_name", "foreign_table", "index_name", "trigger_name", "view_name", - "module_name", "pragma_name", "savepoint_name", "table_alias", "transaction_name", - "window_name", "alias", "filename", "base_window_name", "simple_func", - "aggregate_func", "table_function_name", "any_name", + "release_stmt", "create_index_stmt", "indexed_column", "table_option", + "create_table_stmt", "column_def", "type_name", "column_constraint", + "signed_number", "table_constraint", "foreign_key_clause", "conflict_clause", + "create_trigger_stmt", "create_view_stmt", "create_virtual_table_stmt", + "with_clause", "cte_table_name", "recursive_cte", "common_table_expression", + "returning_clause", "delete_stmt", "delete_stmt_limited", "detach_stmt", + "drop_stmt", "expr", "raise_function", "literal_value", "insert_stmt", + "upsert_clause", "pragma_stmt", "pragma_value", "reindex_stmt", "select_stmt", + "join_clause", "select_core", "factored_select_stmt", "simple_select_stmt", + "compound_select_stmt", "table_or_subquery", "result_column", "join_operator", + "join_constraint", "compound_operator", "update_stmt", "column_name_list", + "update_stmt_limited", "qualified_table_name", "vacuum_stmt", "filter_clause", + "window_defn", "over_clause", "frame_spec", "frame_clause", "simple_function_invocation", + "aggregate_function_invocation", "window_function_invocation", "common_table_stmt", + "order_by_stmt", "limit_stmt", "ordering_term", "asc_desc", "frame_left", + "frame_right", "frame_single", "window_function", "of_OF_fset", "default_DEFAULT__value", + "partition_by", "order_by_expr", "order_by_expr_asc_desc", "expr_asc_desc", + "initial_select", "recursive__select", "unary_operator", "error_message", + "module_argument", "column_alias", "keyword", "name", "function_name", + "qualified_function_name", "schema_name", "table_name", "table_or_index_name", + "new_table_name", "column_name", "collation_name", "foreign_table", + "index_name", "trigger_name", "view_name", "module_name", "pragma_name", + "savepoint_name", "table_alias", "transaction_name", "window_name", + "alias", "filename", "base_window_name", "simple_func", "aggregate_func", + "table_function_name", "any_name", } staticData.predictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 195, 2092, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, + 4, 1, 195, 2104, 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, @@ -120,223 +121,225 @@ func sqliteparserParserInit() { 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, 1, - 0, 5, 0, 228, 8, 0, 10, 0, 12, 0, 231, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 236, - 8, 1, 10, 1, 12, 1, 239, 9, 1, 1, 1, 1, 1, 4, 1, 243, 8, 1, 11, 1, 12, - 1, 244, 1, 1, 5, 1, 248, 8, 1, 10, 1, 12, 1, 251, 9, 1, 1, 1, 5, 1, 254, - 8, 1, 10, 1, 12, 1, 257, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 262, 8, 2, 3, 2, - 264, 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, 3, 2, 290, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 297, 8, - 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 304, 8, 3, 1, 3, 1, 3, 1, 3, 1, - 3, 3, 3, 310, 8, 3, 1, 3, 1, 3, 3, 3, 314, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, - 319, 8, 3, 1, 3, 3, 3, 322, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 329, - 8, 4, 1, 4, 3, 4, 332, 8, 4, 1, 5, 1, 5, 3, 5, 336, 8, 5, 1, 5, 1, 5, 1, - 5, 1, 5, 1, 6, 1, 6, 3, 6, 344, 8, 6, 1, 6, 1, 6, 3, 6, 348, 8, 6, 3, 6, - 350, 8, 6, 1, 7, 1, 7, 3, 7, 354, 8, 7, 1, 8, 1, 8, 3, 8, 358, 8, 8, 1, - 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 3, 8, 365, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, - 1, 10, 3, 10, 372, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 378, 8, 11, - 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 384, 8, 11, 1, 11, 1, 11, 1, 11, 3, - 11, 389, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, - 398, 8, 11, 10, 11, 12, 11, 401, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 406, - 8, 11, 1, 12, 1, 12, 3, 12, 410, 8, 12, 1, 12, 1, 12, 3, 12, 414, 8, 12, - 1, 12, 3, 12, 417, 8, 12, 1, 13, 1, 13, 3, 13, 421, 8, 13, 1, 13, 1, 13, - 1, 13, 1, 13, 3, 13, 427, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 432, 8, 13, - 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 439, 8, 13, 10, 13, 12, 13, 442, - 9, 13, 1, 13, 1, 13, 5, 13, 446, 8, 13, 10, 13, 12, 13, 449, 9, 13, 1, - 13, 1, 13, 1, 13, 1, 13, 3, 13, 455, 8, 13, 1, 13, 1, 13, 3, 13, 459, 8, - 13, 1, 14, 1, 14, 3, 14, 463, 8, 14, 1, 14, 5, 14, 466, 8, 14, 10, 14, - 12, 14, 469, 9, 14, 1, 15, 4, 15, 472, 8, 15, 11, 15, 12, 15, 473, 1, 15, - 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 486, - 8, 15, 1, 16, 1, 16, 3, 16, 490, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 495, - 8, 16, 1, 16, 3, 16, 498, 8, 16, 1, 16, 3, 16, 501, 8, 16, 1, 16, 1, 16, - 1, 16, 3, 16, 506, 8, 16, 1, 16, 3, 16, 509, 8, 16, 1, 16, 1, 16, 1, 16, - 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 523, - 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 530, 8, 16, 1, 16, 1, - 16, 1, 16, 1, 16, 1, 16, 3, 16, 537, 8, 16, 3, 16, 539, 8, 16, 1, 17, 3, - 17, 542, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 548, 8, 18, 1, 18, 1, - 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 559, 8, - 18, 10, 18, 12, 18, 562, 9, 18, 1, 18, 1, 18, 3, 18, 566, 8, 18, 1, 18, - 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, - 18, 579, 8, 18, 10, 18, 12, 18, 582, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, - 587, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 595, 8, 19, - 10, 19, 12, 19, 598, 9, 19, 1, 19, 1, 19, 3, 19, 602, 8, 19, 1, 19, 1, - 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 612, 8, 19, 1, 19, - 1, 19, 5, 19, 616, 8, 19, 10, 19, 12, 19, 619, 9, 19, 1, 19, 3, 19, 622, - 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 627, 8, 19, 3, 19, 629, 8, 19, 1, 20, - 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, - 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 648, 8, 21, 1, - 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 655, 8, 21, 1, 21, 1, 21, 1, 21, - 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 664, 8, 21, 10, 21, 12, 21, 667, 9, - 21, 3, 21, 669, 8, 21, 3, 21, 671, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, - 21, 3, 21, 678, 8, 21, 1, 21, 1, 21, 3, 21, 682, 8, 21, 1, 21, 1, 21, 1, - 21, 1, 21, 1, 21, 3, 21, 689, 8, 21, 1, 21, 1, 21, 4, 21, 693, 8, 21, 11, - 21, 12, 21, 694, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 701, 8, 22, 1, 22, - 1, 22, 1, 22, 1, 22, 3, 22, 707, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 712, - 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 719, 8, 22, 10, 22, 12, - 22, 722, 9, 22, 1, 22, 1, 22, 3, 22, 726, 8, 22, 1, 22, 1, 22, 1, 22, 1, - 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 737, 8, 23, 1, 23, 1, 23, - 1, 23, 3, 23, 742, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, - 23, 5, 23, 751, 8, 23, 10, 23, 12, 23, 754, 9, 23, 1, 23, 1, 23, 3, 23, - 758, 8, 23, 1, 24, 1, 24, 3, 24, 762, 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, 5, 24, 776, 8, - 24, 10, 24, 12, 24, 779, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, - 786, 8, 25, 10, 25, 12, 25, 789, 9, 25, 1, 25, 1, 25, 3, 25, 793, 8, 25, - 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 801, 8, 26, 1, 26, 1, - 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 811, 8, 27, 10, 27, - 12, 27, 814, 9, 27, 1, 27, 1, 27, 3, 27, 818, 8, 27, 1, 27, 1, 27, 1, 27, - 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 829, 8, 28, 1, 28, 3, - 28, 832, 8, 28, 3, 28, 834, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 840, - 8, 28, 1, 28, 3, 28, 843, 8, 28, 3, 28, 845, 8, 28, 5, 28, 847, 8, 28, - 10, 28, 12, 28, 850, 9, 28, 1, 29, 3, 29, 853, 8, 29, 1, 29, 1, 29, 1, - 29, 1, 29, 1, 29, 3, 29, 860, 8, 29, 1, 29, 3, 29, 863, 8, 29, 1, 30, 3, - 30, 866, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 873, 8, 30, 1, - 30, 3, 30, 876, 8, 30, 1, 30, 3, 30, 879, 8, 30, 1, 30, 3, 30, 882, 8, - 30, 1, 31, 1, 31, 3, 31, 886, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, - 1, 32, 3, 32, 894, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 899, 8, 32, 1, 32, - 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 910, 8, - 33, 1, 33, 1, 33, 1, 33, 3, 33, 915, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 3, 33, 924, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 929, - 8, 33, 10, 33, 12, 33, 932, 9, 33, 1, 33, 3, 33, 935, 8, 33, 1, 33, 1, - 33, 3, 33, 939, 8, 33, 1, 33, 3, 33, 942, 8, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 5, 33, 948, 8, 33, 10, 33, 12, 33, 951, 9, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 963, 8, 33, 1, - 33, 3, 33, 966, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, - 974, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 981, 8, 33, 11, 33, - 12, 33, 982, 1, 33, 1, 33, 3, 33, 987, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, - 992, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1022, - 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, - 33, 1033, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 1, 33, 3, 33, 1045, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1051, - 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1058, 8, 33, 1, 33, 1, - 33, 3, 33, 1062, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, - 1070, 8, 33, 10, 33, 12, 33, 1073, 9, 33, 3, 33, 1075, 8, 33, 1, 33, 1, - 33, 1, 33, 1, 33, 3, 33, 1081, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, - 1087, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1094, 8, 33, 10, - 33, 12, 33, 1097, 9, 33, 3, 33, 1099, 8, 33, 1, 33, 1, 33, 3, 33, 1103, - 8, 33, 5, 33, 1105, 8, 33, 10, 33, 12, 33, 1108, 9, 33, 1, 34, 1, 34, 1, - 34, 1, 34, 1, 34, 1, 34, 3, 34, 1116, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, - 1, 36, 3, 36, 1123, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1130, - 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1136, 8, 36, 1, 36, 1, 36, 1, - 36, 3, 36, 1141, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1147, 8, 36, - 10, 36, 12, 36, 1150, 9, 36, 1, 36, 1, 36, 3, 36, 1154, 8, 36, 1, 36, 1, - 36, 1, 36, 1, 36, 1, 36, 5, 36, 1161, 8, 36, 10, 36, 12, 36, 1164, 9, 36, - 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1172, 8, 36, 10, 36, 12, - 36, 1175, 9, 36, 1, 36, 1, 36, 5, 36, 1179, 8, 36, 10, 36, 12, 36, 1182, - 9, 36, 1, 36, 3, 36, 1185, 8, 36, 1, 36, 3, 36, 1188, 8, 36, 1, 36, 3, - 36, 1191, 8, 36, 1, 36, 1, 36, 3, 36, 1195, 8, 36, 1, 37, 1, 37, 1, 37, - 1, 37, 1, 37, 1, 37, 5, 37, 1203, 8, 37, 10, 37, 12, 37, 1206, 9, 37, 1, - 37, 1, 37, 1, 37, 3, 37, 1211, 8, 37, 3, 37, 1213, 8, 37, 1, 37, 1, 37, - 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1221, 8, 37, 1, 37, 1, 37, 1, 37, 1, - 37, 1, 37, 3, 37, 1228, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1233, 8, 37, - 10, 37, 12, 37, 1236, 9, 37, 1, 37, 1, 37, 3, 37, 1240, 8, 37, 3, 37, 1242, - 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1248, 8, 38, 1, 38, 1, 38, 1, - 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1257, 8, 38, 1, 39, 1, 39, 1, 39, - 3, 39, 1262, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1269, 8, - 40, 1, 40, 1, 40, 3, 40, 1273, 8, 40, 3, 40, 1275, 8, 40, 1, 41, 3, 41, - 1278, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1284, 8, 41, 10, 41, 12, - 41, 1287, 9, 41, 1, 41, 3, 41, 1290, 8, 41, 1, 41, 3, 41, 1293, 8, 41, - 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1299, 8, 42, 5, 42, 1301, 8, 42, 10, - 42, 12, 42, 1304, 9, 42, 1, 43, 1, 43, 3, 43, 1308, 8, 43, 1, 43, 1, 43, - 1, 43, 5, 43, 1313, 8, 43, 10, 43, 12, 43, 1316, 9, 43, 1, 43, 1, 43, 1, - 43, 1, 43, 5, 43, 1322, 8, 43, 10, 43, 12, 43, 1325, 9, 43, 1, 43, 3, 43, - 1328, 8, 43, 3, 43, 1330, 8, 43, 1, 43, 1, 43, 3, 43, 1334, 8, 43, 1, 43, - 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1341, 8, 43, 10, 43, 12, 43, 1344, 9, - 43, 1, 43, 1, 43, 3, 43, 1348, 8, 43, 3, 43, 1350, 8, 43, 1, 43, 1, 43, - 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1361, 8, 43, 10, - 43, 12, 43, 1364, 9, 43, 3, 43, 1366, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, - 1, 43, 5, 43, 1373, 8, 43, 10, 43, 12, 43, 1376, 9, 43, 1, 43, 1, 43, 1, - 43, 1, 43, 1, 43, 1, 43, 5, 43, 1384, 8, 43, 10, 43, 12, 43, 1387, 9, 43, - 1, 43, 1, 43, 5, 43, 1391, 8, 43, 10, 43, 12, 43, 1394, 9, 43, 3, 43, 1396, - 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1401, 8, 45, 1, 45, 1, 45, 3, 45, 1405, - 8, 45, 1, 45, 3, 45, 1408, 8, 45, 1, 46, 3, 46, 1411, 8, 46, 1, 46, 1, - 46, 1, 46, 3, 46, 1416, 8, 46, 1, 46, 1, 46, 3, 46, 1420, 8, 46, 1, 46, - 4, 46, 1423, 8, 46, 11, 46, 12, 46, 1424, 1, 46, 3, 46, 1428, 8, 46, 1, - 46, 3, 46, 1431, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1436, 8, 47, 1, 47, - 1, 47, 3, 47, 1440, 8, 47, 1, 47, 3, 47, 1443, 8, 47, 1, 47, 1, 47, 1, - 47, 1, 47, 1, 47, 3, 47, 1450, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1455, - 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1462, 8, 47, 10, 47, 12, - 47, 1465, 9, 47, 1, 47, 1, 47, 3, 47, 1469, 8, 47, 1, 47, 3, 47, 1472, - 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1478, 8, 47, 10, 47, 12, 47, - 1481, 9, 47, 1, 47, 3, 47, 1484, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, - 47, 1, 47, 3, 47, 1492, 8, 47, 1, 47, 3, 47, 1495, 8, 47, 3, 47, 1497, - 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1506, 8, - 48, 1, 48, 3, 48, 1509, 8, 48, 3, 48, 1511, 8, 48, 1, 49, 1, 49, 3, 49, - 1515, 8, 49, 1, 49, 1, 49, 3, 49, 1519, 8, 49, 1, 49, 1, 49, 3, 49, 1523, - 8, 49, 1, 49, 3, 49, 1526, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, - 50, 1, 50, 5, 50, 1535, 8, 50, 10, 50, 12, 50, 1538, 9, 50, 1, 50, 1, 50, - 3, 50, 1542, 8, 50, 1, 51, 1, 51, 3, 51, 1546, 8, 51, 1, 51, 1, 51, 3, - 51, 1550, 8, 51, 1, 52, 3, 52, 1553, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, - 1558, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1564, 8, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 3, 52, 1571, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, - 1576, 8, 52, 10, 52, 12, 52, 1579, 9, 52, 1, 52, 1, 52, 3, 52, 1583, 8, - 52, 1, 52, 3, 52, 1586, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1592, - 8, 53, 10, 53, 12, 53, 1595, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1600, 8, - 54, 1, 54, 1, 54, 1, 54, 3, 54, 1605, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, - 3, 54, 1611, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1618, 8, - 54, 1, 54, 1, 54, 1, 54, 5, 54, 1623, 8, 54, 10, 54, 12, 54, 1626, 9, 54, - 1, 54, 1, 54, 3, 54, 1630, 8, 54, 1, 54, 3, 54, 1633, 8, 54, 1, 54, 3, - 54, 1636, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1641, 8, 55, 1, 55, 1, 55, - 1, 55, 3, 55, 1646, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1653, - 8, 55, 1, 56, 1, 56, 3, 56, 1657, 8, 56, 1, 56, 1, 56, 3, 56, 1661, 8, - 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1671, - 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1678, 8, 58, 10, 58, 12, - 58, 1681, 9, 58, 3, 58, 1683, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, - 5, 58, 1690, 8, 58, 10, 58, 12, 58, 1693, 9, 58, 1, 58, 3, 58, 1696, 8, - 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1704, 8, 59, 1, 59, - 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1711, 8, 59, 10, 59, 12, 59, 1714, 9, - 59, 3, 59, 1716, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1723, - 8, 59, 10, 59, 12, 59, 1726, 9, 59, 3, 59, 1728, 8, 59, 1, 59, 3, 59, 1731, - 8, 59, 1, 59, 3, 59, 1734, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, - 60, 1, 60, 1, 60, 3, 60, 1744, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, - 1, 61, 1, 61, 3, 61, 1753, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, - 62, 1760, 8, 62, 10, 62, 12, 62, 1763, 9, 62, 1, 62, 3, 62, 1766, 8, 62, - 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1773, 8, 63, 1, 63, 1, 63, 1, - 63, 5, 63, 1778, 8, 63, 10, 63, 12, 63, 1781, 9, 63, 1, 63, 3, 63, 1784, - 8, 63, 1, 63, 1, 63, 3, 63, 1788, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, - 64, 5, 64, 1795, 8, 64, 10, 64, 12, 64, 1798, 9, 64, 1, 64, 3, 64, 1801, - 8, 64, 1, 64, 1, 64, 3, 64, 1805, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1810, - 8, 64, 1, 65, 1, 65, 3, 65, 1814, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1819, - 8, 65, 10, 65, 12, 65, 1822, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, - 5, 66, 1829, 8, 66, 10, 66, 12, 66, 1832, 9, 66, 1, 67, 1, 67, 1, 67, 1, - 67, 3, 67, 1838, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1843, 8, 68, 1, 68, - 3, 68, 1846, 8, 68, 1, 68, 1, 68, 3, 68, 1850, 8, 68, 1, 69, 1, 69, 1, - 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, - 1864, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, - 71, 1, 71, 3, 71, 1876, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, - 1, 72, 3, 72, 1885, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, - 73, 3, 73, 1894, 8, 73, 1, 73, 1, 73, 3, 73, 1898, 8, 73, 1, 73, 1, 73, - 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1908, 8, 73, 1, 73, 3, - 73, 1911, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, - 1920, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1929, - 8, 73, 1, 73, 3, 73, 1932, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1938, - 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, - 73, 1, 73, 1, 73, 3, 73, 1952, 8, 73, 1, 73, 1, 73, 3, 73, 1956, 8, 73, - 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1967, - 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1972, 8, 73, 1, 74, 1, 74, 1, 74, 1, - 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1983, 8, 76, 11, 76, 12, - 76, 1984, 1, 77, 1, 77, 1, 77, 4, 77, 1990, 8, 77, 11, 77, 12, 77, 1991, - 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 2000, 8, 79, 1, 79, 1, - 79, 1, 79, 3, 79, 2005, 8, 79, 5, 79, 2007, 8, 79, 10, 79, 12, 79, 2010, - 9, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, - 84, 3, 84, 2022, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, - 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2035, 8, 89, 1, 89, 1, 89, 1, 90, 1, - 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, - 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, - 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, - 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, - 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, - 1, 112, 1, 112, 3, 112, 2090, 8, 112, 1, 112, 2, 440, 473, 1, 66, 113, + 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, + 113, 7, 113, 1, 0, 5, 0, 230, 8, 0, 10, 0, 12, 0, 233, 9, 0, 1, 0, 1, 0, + 1, 1, 5, 1, 238, 8, 1, 10, 1, 12, 1, 241, 9, 1, 1, 1, 1, 1, 4, 1, 245, + 8, 1, 11, 1, 12, 1, 246, 1, 1, 5, 1, 250, 8, 1, 10, 1, 12, 1, 253, 9, 1, + 1, 1, 5, 1, 256, 8, 1, 10, 1, 12, 1, 259, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, + 264, 8, 2, 3, 2, 266, 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, 3, 2, 292, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, + 3, 3, 3, 299, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 306, 8, 3, 1, 3, + 1, 3, 1, 3, 1, 3, 3, 3, 312, 8, 3, 1, 3, 1, 3, 3, 3, 316, 8, 3, 1, 3, 1, + 3, 1, 3, 3, 3, 321, 8, 3, 1, 3, 3, 3, 324, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 3, 4, 331, 8, 4, 1, 4, 3, 4, 334, 8, 4, 1, 5, 1, 5, 3, 5, 338, 8, + 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 346, 8, 6, 1, 6, 1, 6, 3, + 6, 350, 8, 6, 3, 6, 352, 8, 6, 1, 7, 1, 7, 3, 7, 356, 8, 7, 1, 8, 1, 8, + 3, 8, 360, 8, 8, 1, 8, 1, 8, 3, 8, 364, 8, 8, 1, 8, 3, 8, 367, 8, 8, 1, + 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 374, 8, 10, 1, 10, 1, 10, 1, 11, 1, + 11, 3, 11, 380, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 386, 8, 11, 1, + 11, 1, 11, 1, 11, 3, 11, 391, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, + 1, 11, 1, 11, 5, 11, 400, 8, 11, 10, 11, 12, 11, 403, 9, 11, 1, 11, 1, + 11, 1, 11, 3, 11, 408, 8, 11, 1, 12, 1, 12, 3, 12, 412, 8, 12, 1, 12, 1, + 12, 3, 12, 416, 8, 12, 1, 12, 3, 12, 419, 8, 12, 1, 13, 1, 13, 1, 13, 3, + 13, 424, 8, 13, 1, 14, 1, 14, 3, 14, 428, 8, 14, 1, 14, 1, 14, 1, 14, 1, + 14, 3, 14, 434, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 439, 8, 14, 1, 14, 1, + 14, 1, 14, 1, 14, 1, 14, 5, 14, 446, 8, 14, 10, 14, 12, 14, 449, 9, 14, + 1, 14, 1, 14, 5, 14, 453, 8, 14, 10, 14, 12, 14, 456, 9, 14, 1, 14, 1, + 14, 1, 14, 1, 14, 5, 14, 462, 8, 14, 10, 14, 12, 14, 465, 9, 14, 3, 14, + 467, 8, 14, 1, 14, 1, 14, 3, 14, 471, 8, 14, 1, 15, 1, 15, 3, 15, 475, + 8, 15, 1, 15, 5, 15, 478, 8, 15, 10, 15, 12, 15, 481, 9, 15, 1, 16, 4, + 16, 484, 8, 16, 11, 16, 12, 16, 485, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, + 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 498, 8, 16, 1, 17, 1, 17, 3, + 17, 502, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 507, 8, 17, 1, 17, 3, 17, 510, + 8, 17, 1, 17, 3, 17, 513, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 518, 8, 17, + 1, 17, 3, 17, 521, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, + 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 535, 8, 17, 1, 17, 1, 17, + 1, 17, 1, 17, 1, 17, 3, 17, 542, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, + 17, 3, 17, 549, 8, 17, 3, 17, 551, 8, 17, 1, 18, 3, 18, 554, 8, 18, 1, + 18, 1, 18, 1, 19, 1, 19, 3, 19, 560, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, + 565, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 571, 8, 19, 10, 19, 12, + 19, 574, 9, 19, 1, 19, 1, 19, 3, 19, 578, 8, 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, 591, 8, 19, + 10, 19, 12, 19, 594, 9, 19, 1, 19, 1, 19, 1, 19, 3, 19, 599, 8, 19, 1, + 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 607, 8, 20, 10, 20, 12, 20, + 610, 9, 20, 1, 20, 1, 20, 3, 20, 614, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, + 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 624, 8, 20, 1, 20, 1, 20, 5, 20, 628, + 8, 20, 10, 20, 12, 20, 631, 9, 20, 1, 20, 3, 20, 634, 8, 20, 1, 20, 1, + 20, 1, 20, 3, 20, 639, 8, 20, 3, 20, 641, 8, 20, 1, 21, 1, 21, 1, 21, 1, + 21, 1, 22, 1, 22, 3, 22, 649, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, + 655, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 660, 8, 22, 1, 22, 1, 22, 1, 22, + 1, 22, 1, 22, 3, 22, 667, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, + 22, 1, 22, 5, 22, 676, 8, 22, 10, 22, 12, 22, 679, 9, 22, 3, 22, 681, 8, + 22, 3, 22, 683, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 690, 8, + 22, 1, 22, 1, 22, 3, 22, 694, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, + 3, 22, 701, 8, 22, 1, 22, 1, 22, 4, 22, 705, 8, 22, 11, 22, 12, 22, 706, + 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 713, 8, 23, 1, 23, 1, 23, 1, 23, 1, + 23, 3, 23, 719, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 724, 8, 23, 1, 23, 1, + 23, 1, 23, 1, 23, 1, 23, 5, 23, 731, 8, 23, 10, 23, 12, 23, 734, 9, 23, + 1, 23, 1, 23, 3, 23, 738, 8, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, + 24, 1, 24, 1, 24, 1, 24, 3, 24, 749, 8, 24, 1, 24, 1, 24, 1, 24, 3, 24, + 754, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 763, + 8, 24, 10, 24, 12, 24, 766, 9, 24, 1, 24, 1, 24, 3, 24, 770, 8, 24, 1, + 25, 1, 25, 3, 25, 774, 8, 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, 788, 8, 25, 10, 25, 12, + 25, 791, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 798, 8, 26, 10, + 26, 12, 26, 801, 9, 26, 1, 26, 1, 26, 3, 26, 805, 8, 26, 1, 27, 1, 27, + 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 813, 8, 27, 1, 27, 1, 27, 1, 27, 1, + 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 823, 8, 28, 10, 28, 12, 28, 826, + 9, 28, 1, 28, 1, 28, 3, 28, 830, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, + 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 841, 8, 29, 1, 29, 3, 29, 844, 8, + 29, 3, 29, 846, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 852, 8, 29, 1, + 29, 3, 29, 855, 8, 29, 3, 29, 857, 8, 29, 5, 29, 859, 8, 29, 10, 29, 12, + 29, 862, 9, 29, 1, 30, 3, 30, 865, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, + 30, 3, 30, 872, 8, 30, 1, 30, 3, 30, 875, 8, 30, 1, 31, 3, 31, 878, 8, + 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 885, 8, 31, 1, 31, 3, 31, + 888, 8, 31, 1, 31, 3, 31, 891, 8, 31, 1, 31, 3, 31, 894, 8, 31, 1, 32, + 1, 32, 3, 32, 898, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, + 33, 906, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 911, 8, 33, 1, 33, 1, 33, 1, + 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 922, 8, 34, 1, 34, + 1, 34, 1, 34, 3, 34, 927, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, + 34, 1, 34, 3, 34, 936, 8, 34, 1, 34, 1, 34, 1, 34, 5, 34, 941, 8, 34, 10, + 34, 12, 34, 944, 9, 34, 1, 34, 3, 34, 947, 8, 34, 1, 34, 1, 34, 3, 34, + 951, 8, 34, 1, 34, 3, 34, 954, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, + 960, 8, 34, 10, 34, 12, 34, 963, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, + 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 975, 8, 34, 1, 34, 3, 34, + 978, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 986, 8, 34, + 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 4, 34, 993, 8, 34, 11, 34, 12, 34, 994, + 1, 34, 1, 34, 3, 34, 999, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1004, 8, 34, + 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, + 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, + 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1034, 8, 34, 1, + 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1045, + 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, + 34, 3, 34, 1057, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1063, 8, 34, + 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1070, 8, 34, 1, 34, 1, 34, 3, + 34, 1074, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1082, + 8, 34, 10, 34, 12, 34, 1085, 9, 34, 3, 34, 1087, 8, 34, 1, 34, 1, 34, 1, + 34, 1, 34, 3, 34, 1093, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1099, + 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1106, 8, 34, 10, 34, 12, + 34, 1109, 9, 34, 3, 34, 1111, 8, 34, 1, 34, 1, 34, 3, 34, 1115, 8, 34, + 5, 34, 1117, 8, 34, 10, 34, 12, 34, 1120, 9, 34, 1, 35, 1, 35, 1, 35, 1, + 35, 1, 35, 1, 35, 3, 35, 1128, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, + 3, 37, 1135, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1142, 8, + 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1148, 8, 37, 1, 37, 1, 37, 1, 37, + 3, 37, 1153, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1159, 8, 37, 10, + 37, 12, 37, 1162, 9, 37, 1, 37, 1, 37, 3, 37, 1166, 8, 37, 1, 37, 1, 37, + 1, 37, 1, 37, 1, 37, 5, 37, 1173, 8, 37, 10, 37, 12, 37, 1176, 9, 37, 1, + 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1184, 8, 37, 10, 37, 12, + 37, 1187, 9, 37, 1, 37, 1, 37, 5, 37, 1191, 8, 37, 10, 37, 12, 37, 1194, + 9, 37, 1, 37, 3, 37, 1197, 8, 37, 1, 37, 3, 37, 1200, 8, 37, 1, 37, 3, + 37, 1203, 8, 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 1, 38, 1, 38, 1, 38, + 1, 38, 1, 38, 1, 38, 5, 38, 1215, 8, 38, 10, 38, 12, 38, 1218, 9, 38, 1, + 38, 1, 38, 1, 38, 3, 38, 1223, 8, 38, 3, 38, 1225, 8, 38, 1, 38, 1, 38, + 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1233, 8, 38, 1, 38, 1, 38, 1, 38, 1, + 38, 1, 38, 3, 38, 1240, 8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1245, 8, 38, + 10, 38, 12, 38, 1248, 9, 38, 1, 38, 1, 38, 3, 38, 1252, 8, 38, 3, 38, 1254, + 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1260, 8, 39, 1, 39, 1, 39, 1, + 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1269, 8, 39, 1, 40, 1, 40, 1, 40, + 3, 40, 1274, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1281, 8, + 41, 1, 41, 1, 41, 3, 41, 1285, 8, 41, 3, 41, 1287, 8, 41, 1, 42, 3, 42, + 1290, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1296, 8, 42, 10, 42, 12, + 42, 1299, 9, 42, 1, 42, 3, 42, 1302, 8, 42, 1, 42, 3, 42, 1305, 8, 42, + 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1311, 8, 43, 5, 43, 1313, 8, 43, 10, + 43, 12, 43, 1316, 9, 43, 1, 44, 1, 44, 3, 44, 1320, 8, 44, 1, 44, 1, 44, + 1, 44, 5, 44, 1325, 8, 44, 10, 44, 12, 44, 1328, 9, 44, 1, 44, 1, 44, 1, + 44, 1, 44, 5, 44, 1334, 8, 44, 10, 44, 12, 44, 1337, 9, 44, 1, 44, 3, 44, + 1340, 8, 44, 3, 44, 1342, 8, 44, 1, 44, 1, 44, 3, 44, 1346, 8, 44, 1, 44, + 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1353, 8, 44, 10, 44, 12, 44, 1356, 9, + 44, 1, 44, 1, 44, 3, 44, 1360, 8, 44, 3, 44, 1362, 8, 44, 1, 44, 1, 44, + 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1373, 8, 44, 10, + 44, 12, 44, 1376, 9, 44, 3, 44, 1378, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, + 1, 44, 5, 44, 1385, 8, 44, 10, 44, 12, 44, 1388, 9, 44, 1, 44, 1, 44, 1, + 44, 1, 44, 1, 44, 1, 44, 5, 44, 1396, 8, 44, 10, 44, 12, 44, 1399, 9, 44, + 1, 44, 1, 44, 5, 44, 1403, 8, 44, 10, 44, 12, 44, 1406, 9, 44, 3, 44, 1408, + 8, 44, 1, 45, 1, 45, 1, 46, 3, 46, 1413, 8, 46, 1, 46, 1, 46, 3, 46, 1417, + 8, 46, 1, 46, 3, 46, 1420, 8, 46, 1, 47, 3, 47, 1423, 8, 47, 1, 47, 1, + 47, 1, 47, 3, 47, 1428, 8, 47, 1, 47, 1, 47, 3, 47, 1432, 8, 47, 1, 47, + 4, 47, 1435, 8, 47, 11, 47, 12, 47, 1436, 1, 47, 3, 47, 1440, 8, 47, 1, + 47, 3, 47, 1443, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 1448, 8, 48, 1, 48, + 1, 48, 3, 48, 1452, 8, 48, 1, 48, 3, 48, 1455, 8, 48, 1, 48, 1, 48, 1, + 48, 1, 48, 1, 48, 3, 48, 1462, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1467, + 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1474, 8, 48, 10, 48, 12, + 48, 1477, 9, 48, 1, 48, 1, 48, 3, 48, 1481, 8, 48, 1, 48, 3, 48, 1484, + 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1490, 8, 48, 10, 48, 12, 48, + 1493, 9, 48, 1, 48, 3, 48, 1496, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, + 48, 1, 48, 3, 48, 1504, 8, 48, 1, 48, 3, 48, 1507, 8, 48, 3, 48, 1509, + 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1518, 8, + 49, 1, 49, 3, 49, 1521, 8, 49, 3, 49, 1523, 8, 49, 1, 50, 1, 50, 3, 50, + 1527, 8, 50, 1, 50, 1, 50, 3, 50, 1531, 8, 50, 1, 50, 1, 50, 3, 50, 1535, + 8, 50, 1, 50, 3, 50, 1538, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, + 51, 1, 51, 5, 51, 1547, 8, 51, 10, 51, 12, 51, 1550, 9, 51, 1, 51, 1, 51, + 3, 51, 1554, 8, 51, 1, 52, 1, 52, 3, 52, 1558, 8, 52, 1, 52, 1, 52, 3, + 52, 1562, 8, 52, 1, 53, 3, 53, 1565, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, + 1570, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1576, 8, 53, 1, 53, 1, + 53, 1, 53, 1, 53, 1, 53, 3, 53, 1583, 8, 53, 1, 53, 1, 53, 1, 53, 5, 53, + 1588, 8, 53, 10, 53, 12, 53, 1591, 9, 53, 1, 53, 1, 53, 3, 53, 1595, 8, + 53, 1, 53, 3, 53, 1598, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1604, + 8, 54, 10, 54, 12, 54, 1607, 9, 54, 1, 54, 1, 54, 1, 55, 3, 55, 1612, 8, + 55, 1, 55, 1, 55, 1, 55, 3, 55, 1617, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, + 3, 55, 1623, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1630, 8, + 55, 1, 55, 1, 55, 1, 55, 5, 55, 1635, 8, 55, 10, 55, 12, 55, 1638, 9, 55, + 1, 55, 1, 55, 3, 55, 1642, 8, 55, 1, 55, 3, 55, 1645, 8, 55, 1, 55, 3, + 55, 1648, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1653, 8, 56, 1, 56, 1, 56, + 1, 56, 3, 56, 1658, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1665, + 8, 56, 1, 57, 1, 57, 3, 57, 1669, 8, 57, 1, 57, 1, 57, 3, 57, 1673, 8, + 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1683, + 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1690, 8, 59, 10, 59, 12, + 59, 1693, 9, 59, 3, 59, 1695, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, + 5, 59, 1702, 8, 59, 10, 59, 12, 59, 1705, 9, 59, 1, 59, 3, 59, 1708, 8, + 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1716, 8, 60, 1, 60, + 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1723, 8, 60, 10, 60, 12, 60, 1726, 9, + 60, 3, 60, 1728, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1735, + 8, 60, 10, 60, 12, 60, 1738, 9, 60, 3, 60, 1740, 8, 60, 1, 60, 3, 60, 1743, + 8, 60, 1, 60, 3, 60, 1746, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, + 61, 1, 61, 1, 61, 3, 61, 1756, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, + 1, 62, 1, 62, 3, 62, 1765, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, + 63, 1772, 8, 63, 10, 63, 12, 63, 1775, 9, 63, 1, 63, 3, 63, 1778, 8, 63, + 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1785, 8, 64, 1, 64, 1, 64, 1, + 64, 5, 64, 1790, 8, 64, 10, 64, 12, 64, 1793, 9, 64, 1, 64, 3, 64, 1796, + 8, 64, 1, 64, 1, 64, 3, 64, 1800, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, + 65, 5, 65, 1807, 8, 65, 10, 65, 12, 65, 1810, 9, 65, 1, 65, 3, 65, 1813, + 8, 65, 1, 65, 1, 65, 3, 65, 1817, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1822, + 8, 65, 1, 66, 1, 66, 3, 66, 1826, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1831, + 8, 66, 10, 66, 12, 66, 1834, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, + 5, 67, 1841, 8, 67, 10, 67, 12, 67, 1844, 9, 67, 1, 68, 1, 68, 1, 68, 1, + 68, 3, 68, 1850, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1855, 8, 69, 1, 69, + 3, 69, 1858, 8, 69, 1, 69, 1, 69, 3, 69, 1862, 8, 69, 1, 70, 1, 70, 1, + 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, + 1876, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, + 72, 1, 72, 3, 72, 1888, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, + 1, 73, 3, 73, 1897, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, + 74, 3, 74, 1906, 8, 74, 1, 74, 1, 74, 3, 74, 1910, 8, 74, 1, 74, 1, 74, + 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1920, 8, 74, 1, 74, 3, + 74, 1923, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, + 1932, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1941, + 8, 74, 1, 74, 3, 74, 1944, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1950, + 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, 3, 74, 1964, 8, 74, 1, 74, 1, 74, 3, 74, 1968, 8, 74, + 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1979, + 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1984, 8, 74, 1, 75, 1, 75, 1, 75, 1, + 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 4, 77, 1995, 8, 77, 11, 77, 12, + 77, 1996, 1, 78, 1, 78, 1, 78, 4, 78, 2002, 8, 78, 11, 78, 12, 78, 2003, + 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 2012, 8, 80, 1, 80, 1, + 80, 1, 80, 3, 80, 2017, 8, 80, 5, 80, 2019, 8, 80, 10, 80, 12, 80, 2022, + 9, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, + 85, 3, 85, 2034, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, + 1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2047, 8, 90, 1, 90, 1, 90, 1, 91, 1, + 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, + 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, + 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, + 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, + 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, + 1, 113, 1, 113, 3, 113, 2102, 8, 113, 1, 113, 2, 447, 485, 1, 68, 114, 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, 0, - 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, + 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, + 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, 2, 0, 147, 147, 172, 172, 1, 0, 8, 9, 2, 0, 59, 59, 142, 142, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, 122, 126, 126, 4, 0, 84, 84, 133, 133, 139, 139, 146, 146, 2, 0, 7, 7, @@ -346,807 +349,810 @@ func sqliteparserParserInit() { 180, 2, 0, 5, 5, 106, 106, 1, 0, 177, 178, 2, 0, 34, 34, 60, 60, 2, 0, 152, 152, 163, 163, 2, 0, 160, 160, 167, 167, 2, 0, 161, 161, 168, 169, 2, 0, 162, 162, 164, 164, 2, 0, 8, 10, 102, 102, 2, 0, 186, 186, 190, 190, - 1, 0, 25, 181, 2380, 0, 229, 1, 0, 0, 0, 2, 237, 1, 0, 0, 0, 4, 263, 1, - 0, 0, 0, 6, 291, 1, 0, 0, 0, 8, 323, 1, 0, 0, 0, 10, 333, 1, 0, 0, 0, 12, - 341, 1, 0, 0, 0, 14, 351, 1, 0, 0, 0, 16, 355, 1, 0, 0, 0, 18, 366, 1, - 0, 0, 0, 20, 369, 1, 0, 0, 0, 22, 375, 1, 0, 0, 0, 24, 409, 1, 0, 0, 0, - 26, 418, 1, 0, 0, 0, 28, 460, 1, 0, 0, 0, 30, 471, 1, 0, 0, 0, 32, 489, - 1, 0, 0, 0, 34, 541, 1, 0, 0, 0, 36, 547, 1, 0, 0, 0, 38, 588, 1, 0, 0, - 0, 40, 630, 1, 0, 0, 0, 42, 634, 1, 0, 0, 0, 44, 698, 1, 0, 0, 0, 46, 730, - 1, 0, 0, 0, 48, 759, 1, 0, 0, 0, 50, 780, 1, 0, 0, 0, 52, 794, 1, 0, 0, - 0, 54, 805, 1, 0, 0, 0, 56, 824, 1, 0, 0, 0, 58, 852, 1, 0, 0, 0, 60, 865, - 1, 0, 0, 0, 62, 883, 1, 0, 0, 0, 64, 889, 1, 0, 0, 0, 66, 991, 1, 0, 0, - 0, 68, 1109, 1, 0, 0, 0, 70, 1119, 1, 0, 0, 0, 72, 1194, 1, 0, 0, 0, 74, - 1196, 1, 0, 0, 0, 76, 1243, 1, 0, 0, 0, 78, 1261, 1, 0, 0, 0, 80, 1263, - 1, 0, 0, 0, 82, 1277, 1, 0, 0, 0, 84, 1294, 1, 0, 0, 0, 86, 1395, 1, 0, - 0, 0, 88, 1397, 1, 0, 0, 0, 90, 1400, 1, 0, 0, 0, 92, 1410, 1, 0, 0, 0, - 94, 1496, 1, 0, 0, 0, 96, 1510, 1, 0, 0, 0, 98, 1525, 1, 0, 0, 0, 100, - 1541, 1, 0, 0, 0, 102, 1549, 1, 0, 0, 0, 104, 1552, 1, 0, 0, 0, 106, 1587, - 1, 0, 0, 0, 108, 1599, 1, 0, 0, 0, 110, 1640, 1, 0, 0, 0, 112, 1654, 1, - 0, 0, 0, 114, 1662, 1, 0, 0, 0, 116, 1668, 1, 0, 0, 0, 118, 1699, 1, 0, - 0, 0, 120, 1735, 1, 0, 0, 0, 122, 1745, 1, 0, 0, 0, 124, 1754, 1, 0, 0, - 0, 126, 1769, 1, 0, 0, 0, 128, 1789, 1, 0, 0, 0, 130, 1811, 1, 0, 0, 0, - 132, 1823, 1, 0, 0, 0, 134, 1833, 1, 0, 0, 0, 136, 1839, 1, 0, 0, 0, 138, - 1851, 1, 0, 0, 0, 140, 1863, 1, 0, 0, 0, 142, 1875, 1, 0, 0, 0, 144, 1884, - 1, 0, 0, 0, 146, 1971, 1, 0, 0, 0, 148, 1973, 1, 0, 0, 0, 150, 1976, 1, - 0, 0, 0, 152, 1979, 1, 0, 0, 0, 154, 1986, 1, 0, 0, 0, 156, 1993, 1, 0, - 0, 0, 158, 1997, 1, 0, 0, 0, 160, 2011, 1, 0, 0, 0, 162, 2013, 1, 0, 0, - 0, 164, 2015, 1, 0, 0, 0, 166, 2017, 1, 0, 0, 0, 168, 2021, 1, 0, 0, 0, - 170, 2023, 1, 0, 0, 0, 172, 2025, 1, 0, 0, 0, 174, 2027, 1, 0, 0, 0, 176, - 2029, 1, 0, 0, 0, 178, 2034, 1, 0, 0, 0, 180, 2038, 1, 0, 0, 0, 182, 2040, - 1, 0, 0, 0, 184, 2042, 1, 0, 0, 0, 186, 2044, 1, 0, 0, 0, 188, 2046, 1, - 0, 0, 0, 190, 2048, 1, 0, 0, 0, 192, 2050, 1, 0, 0, 0, 194, 2052, 1, 0, - 0, 0, 196, 2054, 1, 0, 0, 0, 198, 2056, 1, 0, 0, 0, 200, 2058, 1, 0, 0, - 0, 202, 2060, 1, 0, 0, 0, 204, 2062, 1, 0, 0, 0, 206, 2064, 1, 0, 0, 0, - 208, 2066, 1, 0, 0, 0, 210, 2068, 1, 0, 0, 0, 212, 2070, 1, 0, 0, 0, 214, - 2072, 1, 0, 0, 0, 216, 2074, 1, 0, 0, 0, 218, 2076, 1, 0, 0, 0, 220, 2078, - 1, 0, 0, 0, 222, 2080, 1, 0, 0, 0, 224, 2089, 1, 0, 0, 0, 226, 228, 3, - 2, 1, 0, 227, 226, 1, 0, 0, 0, 228, 231, 1, 0, 0, 0, 229, 227, 1, 0, 0, - 0, 229, 230, 1, 0, 0, 0, 230, 232, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 232, - 233, 5, 0, 0, 1, 233, 1, 1, 0, 0, 0, 234, 236, 5, 1, 0, 0, 235, 234, 1, - 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, - 0, 238, 240, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 249, 3, 4, 2, 0, 241, - 243, 5, 1, 0, 0, 242, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 242, - 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 248, 3, 4, - 2, 0, 247, 242, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, - 249, 250, 1, 0, 0, 0, 250, 255, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, - 254, 5, 1, 0, 0, 253, 252, 1, 0, 0, 0, 254, 257, 1, 0, 0, 0, 255, 253, - 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 3, 1, 0, 0, 0, 257, 255, 1, 0, 0, - 0, 258, 261, 5, 71, 0, 0, 259, 260, 5, 114, 0, 0, 260, 262, 5, 111, 0, - 0, 261, 259, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 264, 1, 0, 0, 0, 263, - 258, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 289, 1, 0, 0, 0, 265, 290, - 3, 6, 3, 0, 266, 290, 3, 8, 4, 0, 267, 290, 3, 10, 5, 0, 268, 290, 3, 12, - 6, 0, 269, 290, 3, 14, 7, 0, 270, 290, 3, 22, 11, 0, 271, 290, 3, 26, 13, - 0, 272, 290, 3, 42, 21, 0, 273, 290, 3, 44, 22, 0, 274, 290, 3, 46, 23, - 0, 275, 290, 3, 58, 29, 0, 276, 290, 3, 60, 30, 0, 277, 290, 3, 62, 31, - 0, 278, 290, 3, 64, 32, 0, 279, 290, 3, 72, 36, 0, 280, 290, 3, 76, 38, - 0, 281, 290, 3, 80, 40, 0, 282, 290, 3, 20, 10, 0, 283, 290, 3, 16, 8, - 0, 284, 290, 3, 18, 9, 0, 285, 290, 3, 82, 41, 0, 286, 290, 3, 104, 52, - 0, 287, 290, 3, 108, 54, 0, 288, 290, 3, 112, 56, 0, 289, 265, 1, 0, 0, - 0, 289, 266, 1, 0, 0, 0, 289, 267, 1, 0, 0, 0, 289, 268, 1, 0, 0, 0, 289, - 269, 1, 0, 0, 0, 289, 270, 1, 0, 0, 0, 289, 271, 1, 0, 0, 0, 289, 272, - 1, 0, 0, 0, 289, 273, 1, 0, 0, 0, 289, 274, 1, 0, 0, 0, 289, 275, 1, 0, - 0, 0, 289, 276, 1, 0, 0, 0, 289, 277, 1, 0, 0, 0, 289, 278, 1, 0, 0, 0, - 289, 279, 1, 0, 0, 0, 289, 280, 1, 0, 0, 0, 289, 281, 1, 0, 0, 0, 289, - 282, 1, 0, 0, 0, 289, 283, 1, 0, 0, 0, 289, 284, 1, 0, 0, 0, 289, 285, - 1, 0, 0, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, - 0, 0, 290, 5, 1, 0, 0, 0, 291, 292, 5, 30, 0, 0, 292, 296, 5, 133, 0, 0, - 293, 294, 3, 180, 90, 0, 294, 295, 5, 2, 0, 0, 295, 297, 1, 0, 0, 0, 296, - 293, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 321, - 3, 182, 91, 0, 299, 309, 5, 121, 0, 0, 300, 301, 5, 137, 0, 0, 301, 310, - 3, 186, 93, 0, 302, 304, 5, 46, 0, 0, 303, 302, 1, 0, 0, 0, 303, 304, 1, - 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306, 3, 188, 94, 0, 306, 307, 5, 137, - 0, 0, 307, 308, 3, 188, 94, 0, 308, 310, 1, 0, 0, 0, 309, 300, 1, 0, 0, - 0, 309, 303, 1, 0, 0, 0, 310, 322, 1, 0, 0, 0, 311, 313, 5, 27, 0, 0, 312, - 314, 5, 46, 0, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, - 1, 0, 0, 0, 315, 322, 3, 28, 14, 0, 316, 318, 5, 63, 0, 0, 317, 319, 5, - 46, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, - 0, 320, 322, 3, 188, 94, 0, 321, 299, 1, 0, 0, 0, 321, 311, 1, 0, 0, 0, - 321, 316, 1, 0, 0, 0, 322, 7, 1, 0, 0, 0, 323, 331, 5, 31, 0, 0, 324, 332, - 3, 180, 90, 0, 325, 326, 3, 180, 90, 0, 326, 327, 5, 2, 0, 0, 327, 329, - 1, 0, 0, 0, 328, 325, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 330, 1, 0, - 0, 0, 330, 332, 3, 184, 92, 0, 331, 324, 1, 0, 0, 0, 331, 328, 1, 0, 0, - 0, 331, 332, 1, 0, 0, 0, 332, 9, 1, 0, 0, 0, 333, 335, 5, 35, 0, 0, 334, - 336, 5, 55, 0, 0, 335, 334, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 337, - 1, 0, 0, 0, 337, 338, 3, 66, 33, 0, 338, 339, 5, 33, 0, 0, 339, 340, 3, - 180, 90, 0, 340, 11, 1, 0, 0, 0, 341, 343, 5, 38, 0, 0, 342, 344, 7, 0, - 0, 0, 343, 342, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 349, 1, 0, 0, 0, - 345, 347, 5, 138, 0, 0, 346, 348, 3, 208, 104, 0, 347, 346, 1, 0, 0, 0, - 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 345, 1, 0, 0, 0, 349, - 350, 1, 0, 0, 0, 350, 13, 1, 0, 0, 0, 351, 353, 7, 1, 0, 0, 352, 354, 5, - 138, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 15, 1, 0, 0, - 0, 355, 357, 5, 126, 0, 0, 356, 358, 5, 138, 0, 0, 357, 356, 1, 0, 0, 0, - 357, 358, 1, 0, 0, 0, 358, 364, 1, 0, 0, 0, 359, 361, 5, 137, 0, 0, 360, - 362, 5, 129, 0, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 363, - 1, 0, 0, 0, 363, 365, 3, 204, 102, 0, 364, 359, 1, 0, 0, 0, 364, 365, 1, - 0, 0, 0, 365, 17, 1, 0, 0, 0, 366, 367, 5, 129, 0, 0, 367, 368, 3, 204, - 102, 0, 368, 19, 1, 0, 0, 0, 369, 371, 5, 120, 0, 0, 370, 372, 5, 129, - 0, 0, 371, 370, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, - 373, 374, 3, 204, 102, 0, 374, 21, 1, 0, 0, 0, 375, 377, 5, 50, 0, 0, 376, - 378, 5, 141, 0, 0, 377, 376, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, - 1, 0, 0, 0, 379, 383, 5, 84, 0, 0, 380, 381, 5, 80, 0, 0, 381, 382, 5, - 102, 0, 0, 382, 384, 5, 70, 0, 0, 383, 380, 1, 0, 0, 0, 383, 384, 1, 0, - 0, 0, 384, 388, 1, 0, 0, 0, 385, 386, 3, 180, 90, 0, 386, 387, 5, 2, 0, - 0, 387, 389, 1, 0, 0, 0, 388, 385, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, - 390, 1, 0, 0, 0, 390, 391, 3, 194, 97, 0, 391, 392, 5, 107, 0, 0, 392, - 393, 3, 182, 91, 0, 393, 394, 5, 3, 0, 0, 394, 399, 3, 24, 12, 0, 395, - 396, 5, 5, 0, 0, 396, 398, 3, 24, 12, 0, 397, 395, 1, 0, 0, 0, 398, 401, - 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 402, 1, 0, - 0, 0, 401, 399, 1, 0, 0, 0, 402, 405, 5, 4, 0, 0, 403, 404, 5, 149, 0, - 0, 404, 406, 3, 66, 33, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, - 406, 23, 1, 0, 0, 0, 407, 410, 3, 188, 94, 0, 408, 410, 3, 66, 33, 0, 409, - 407, 1, 0, 0, 0, 409, 408, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 412, - 5, 45, 0, 0, 412, 414, 3, 190, 95, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, - 0, 0, 0, 414, 416, 1, 0, 0, 0, 415, 417, 3, 138, 69, 0, 416, 415, 1, 0, - 0, 0, 416, 417, 1, 0, 0, 0, 417, 25, 1, 0, 0, 0, 418, 420, 5, 50, 0, 0, - 419, 421, 7, 2, 0, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, - 422, 1, 0, 0, 0, 422, 426, 5, 133, 0, 0, 423, 424, 5, 80, 0, 0, 424, 425, - 5, 102, 0, 0, 425, 427, 5, 70, 0, 0, 426, 423, 1, 0, 0, 0, 426, 427, 1, - 0, 0, 0, 427, 431, 1, 0, 0, 0, 428, 429, 3, 180, 90, 0, 429, 430, 5, 2, - 0, 0, 430, 432, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, - 432, 433, 1, 0, 0, 0, 433, 458, 3, 182, 91, 0, 434, 435, 5, 3, 0, 0, 435, - 440, 3, 28, 14, 0, 436, 437, 5, 5, 0, 0, 437, 439, 3, 28, 14, 0, 438, 436, - 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 440, 438, 1, 0, - 0, 0, 441, 447, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, - 444, 446, 3, 36, 18, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, - 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 450, 1, 0, 0, 0, 449, 447, - 1, 0, 0, 0, 450, 454, 5, 4, 0, 0, 451, 452, 5, 151, 0, 0, 452, 455, 5, - 186, 0, 0, 453, 455, 5, 132, 0, 0, 454, 451, 1, 0, 0, 0, 454, 453, 1, 0, - 0, 0, 454, 455, 1, 0, 0, 0, 455, 459, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, - 457, 459, 3, 82, 41, 0, 458, 434, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, - 27, 1, 0, 0, 0, 460, 462, 3, 188, 94, 0, 461, 463, 3, 30, 15, 0, 462, 461, - 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 467, 1, 0, 0, 0, 464, 466, 3, 32, - 16, 0, 465, 464, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, - 467, 468, 1, 0, 0, 0, 468, 29, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 470, 472, - 3, 174, 87, 0, 471, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, - 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 485, 1, 0, 0, 0, 475, 476, 5, 3, 0, - 0, 476, 477, 3, 34, 17, 0, 477, 478, 5, 4, 0, 0, 478, 486, 1, 0, 0, 0, - 479, 480, 5, 3, 0, 0, 480, 481, 3, 34, 17, 0, 481, 482, 5, 5, 0, 0, 482, - 483, 3, 34, 17, 0, 483, 484, 5, 4, 0, 0, 484, 486, 1, 0, 0, 0, 485, 475, - 1, 0, 0, 0, 485, 479, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 31, 1, 0, - 0, 0, 487, 488, 5, 49, 0, 0, 488, 490, 3, 174, 87, 0, 489, 487, 1, 0, 0, - 0, 489, 490, 1, 0, 0, 0, 490, 538, 1, 0, 0, 0, 491, 492, 5, 113, 0, 0, - 492, 494, 5, 95, 0, 0, 493, 495, 3, 138, 69, 0, 494, 493, 1, 0, 0, 0, 494, - 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 3, 40, 20, 0, 497, 496, - 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 500, 1, 0, 0, 0, 499, 501, 5, 36, - 0, 0, 500, 499, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 539, 1, 0, 0, 0, - 502, 503, 5, 102, 0, 0, 503, 506, 5, 104, 0, 0, 504, 506, 5, 141, 0, 0, - 505, 502, 1, 0, 0, 0, 505, 504, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, - 509, 3, 40, 20, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 539, - 1, 0, 0, 0, 510, 511, 5, 44, 0, 0, 511, 512, 5, 3, 0, 0, 512, 513, 3, 66, - 33, 0, 513, 514, 5, 4, 0, 0, 514, 539, 1, 0, 0, 0, 515, 522, 5, 56, 0, - 0, 516, 523, 3, 34, 17, 0, 517, 523, 3, 70, 35, 0, 518, 519, 5, 3, 0, 0, - 519, 520, 3, 66, 33, 0, 520, 521, 5, 4, 0, 0, 521, 523, 1, 0, 0, 0, 522, - 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 523, 539, - 1, 0, 0, 0, 524, 525, 5, 45, 0, 0, 525, 539, 3, 190, 95, 0, 526, 539, 3, - 38, 19, 0, 527, 528, 5, 170, 0, 0, 528, 530, 5, 171, 0, 0, 529, 527, 1, - 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 33, 0, - 0, 532, 533, 5, 3, 0, 0, 533, 534, 3, 66, 33, 0, 534, 536, 5, 4, 0, 0, - 535, 537, 7, 3, 0, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, - 539, 1, 0, 0, 0, 538, 491, 1, 0, 0, 0, 538, 505, 1, 0, 0, 0, 538, 510, - 1, 0, 0, 0, 538, 515, 1, 0, 0, 0, 538, 524, 1, 0, 0, 0, 538, 526, 1, 0, - 0, 0, 538, 529, 1, 0, 0, 0, 539, 33, 1, 0, 0, 0, 540, 542, 7, 4, 0, 0, - 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, - 544, 5, 187, 0, 0, 544, 35, 1, 0, 0, 0, 545, 546, 5, 49, 0, 0, 546, 548, - 3, 174, 87, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 586, 1, - 0, 0, 0, 549, 550, 5, 113, 0, 0, 550, 553, 5, 95, 0, 0, 551, 553, 5, 141, - 0, 0, 552, 549, 1, 0, 0, 0, 552, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, - 554, 555, 5, 3, 0, 0, 555, 560, 3, 24, 12, 0, 556, 557, 5, 5, 0, 0, 557, - 559, 3, 24, 12, 0, 558, 556, 1, 0, 0, 0, 559, 562, 1, 0, 0, 0, 560, 558, - 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 563, 1, 0, 0, 0, 562, 560, 1, 0, - 0, 0, 563, 565, 5, 4, 0, 0, 564, 566, 3, 40, 20, 0, 565, 564, 1, 0, 0, - 0, 565, 566, 1, 0, 0, 0, 566, 587, 1, 0, 0, 0, 567, 568, 5, 44, 0, 0, 568, - 569, 5, 3, 0, 0, 569, 570, 3, 66, 33, 0, 570, 571, 5, 4, 0, 0, 571, 587, - 1, 0, 0, 0, 572, 573, 5, 74, 0, 0, 573, 574, 5, 95, 0, 0, 574, 575, 5, - 3, 0, 0, 575, 580, 3, 188, 94, 0, 576, 577, 5, 5, 0, 0, 577, 579, 3, 188, - 94, 0, 578, 576, 1, 0, 0, 0, 579, 582, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, - 580, 581, 1, 0, 0, 0, 581, 583, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 583, - 584, 5, 4, 0, 0, 584, 585, 3, 38, 19, 0, 585, 587, 1, 0, 0, 0, 586, 552, - 1, 0, 0, 0, 586, 567, 1, 0, 0, 0, 586, 572, 1, 0, 0, 0, 587, 37, 1, 0, - 0, 0, 588, 589, 5, 117, 0, 0, 589, 601, 3, 192, 96, 0, 590, 591, 5, 3, - 0, 0, 591, 596, 3, 188, 94, 0, 592, 593, 5, 5, 0, 0, 593, 595, 3, 188, - 94, 0, 594, 592, 1, 0, 0, 0, 595, 598, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, - 596, 597, 1, 0, 0, 0, 597, 599, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 599, - 600, 5, 4, 0, 0, 600, 602, 1, 0, 0, 0, 601, 590, 1, 0, 0, 0, 601, 602, - 1, 0, 0, 0, 602, 617, 1, 0, 0, 0, 603, 604, 5, 107, 0, 0, 604, 611, 7, - 5, 0, 0, 605, 606, 5, 131, 0, 0, 606, 612, 7, 6, 0, 0, 607, 612, 5, 41, - 0, 0, 608, 612, 5, 123, 0, 0, 609, 610, 5, 101, 0, 0, 610, 612, 5, 26, - 0, 0, 611, 605, 1, 0, 0, 0, 611, 607, 1, 0, 0, 0, 611, 608, 1, 0, 0, 0, - 611, 609, 1, 0, 0, 0, 612, 616, 1, 0, 0, 0, 613, 614, 5, 99, 0, 0, 614, - 616, 3, 174, 87, 0, 615, 603, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 619, - 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 628, 1, 0, - 0, 0, 619, 617, 1, 0, 0, 0, 620, 622, 5, 102, 0, 0, 621, 620, 1, 0, 0, - 0, 621, 622, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 626, 5, 57, 0, 0, 624, - 625, 5, 86, 0, 0, 625, 627, 7, 7, 0, 0, 626, 624, 1, 0, 0, 0, 626, 627, - 1, 0, 0, 0, 627, 629, 1, 0, 0, 0, 628, 621, 1, 0, 0, 0, 628, 629, 1, 0, - 0, 0, 629, 39, 1, 0, 0, 0, 630, 631, 5, 107, 0, 0, 631, 632, 5, 48, 0, - 0, 632, 633, 7, 8, 0, 0, 633, 41, 1, 0, 0, 0, 634, 636, 5, 50, 0, 0, 635, - 637, 7, 2, 0, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, - 1, 0, 0, 0, 638, 642, 5, 139, 0, 0, 639, 640, 5, 80, 0, 0, 640, 641, 5, - 102, 0, 0, 641, 643, 5, 70, 0, 0, 642, 639, 1, 0, 0, 0, 642, 643, 1, 0, - 0, 0, 643, 647, 1, 0, 0, 0, 644, 645, 3, 180, 90, 0, 645, 646, 5, 2, 0, - 0, 646, 648, 1, 0, 0, 0, 647, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, - 649, 1, 0, 0, 0, 649, 654, 3, 196, 98, 0, 650, 655, 5, 37, 0, 0, 651, 655, - 5, 28, 0, 0, 652, 653, 5, 89, 0, 0, 653, 655, 5, 105, 0, 0, 654, 650, 1, - 0, 0, 0, 654, 651, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, - 0, 655, 670, 1, 0, 0, 0, 656, 671, 5, 59, 0, 0, 657, 671, 5, 88, 0, 0, - 658, 668, 5, 142, 0, 0, 659, 660, 5, 105, 0, 0, 660, 665, 3, 188, 94, 0, - 661, 662, 5, 5, 0, 0, 662, 664, 3, 188, 94, 0, 663, 661, 1, 0, 0, 0, 664, - 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 669, - 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 659, 1, 0, 0, 0, 668, 669, 1, 0, - 0, 0, 669, 671, 1, 0, 0, 0, 670, 656, 1, 0, 0, 0, 670, 657, 1, 0, 0, 0, - 670, 658, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 107, 0, 0, 673, - 677, 3, 182, 91, 0, 674, 675, 5, 73, 0, 0, 675, 676, 5, 64, 0, 0, 676, - 678, 5, 127, 0, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, - 1, 0, 0, 0, 679, 680, 5, 148, 0, 0, 680, 682, 3, 66, 33, 0, 681, 679, 1, - 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 692, 5, 38, 0, - 0, 684, 689, 3, 104, 52, 0, 685, 689, 3, 72, 36, 0, 686, 689, 3, 58, 29, - 0, 687, 689, 3, 82, 41, 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, 690, 1, 0, 0, 0, 690, - 691, 5, 1, 0, 0, 691, 693, 1, 0, 0, 0, 692, 688, 1, 0, 0, 0, 693, 694, - 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 1, 0, - 0, 0, 696, 697, 5, 66, 0, 0, 697, 43, 1, 0, 0, 0, 698, 700, 5, 50, 0, 0, - 699, 701, 7, 2, 0, 0, 700, 699, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, - 702, 1, 0, 0, 0, 702, 706, 5, 146, 0, 0, 703, 704, 5, 80, 0, 0, 704, 705, - 5, 102, 0, 0, 705, 707, 5, 70, 0, 0, 706, 703, 1, 0, 0, 0, 706, 707, 1, - 0, 0, 0, 707, 711, 1, 0, 0, 0, 708, 709, 3, 180, 90, 0, 709, 710, 5, 2, - 0, 0, 710, 712, 1, 0, 0, 0, 711, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, - 712, 713, 1, 0, 0, 0, 713, 725, 3, 198, 99, 0, 714, 715, 5, 3, 0, 0, 715, - 720, 3, 188, 94, 0, 716, 717, 5, 5, 0, 0, 717, 719, 3, 188, 94, 0, 718, - 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, - 1, 0, 0, 0, 721, 723, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 5, 4, - 0, 0, 724, 726, 1, 0, 0, 0, 725, 714, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, - 726, 727, 1, 0, 0, 0, 727, 728, 5, 33, 0, 0, 728, 729, 3, 82, 41, 0, 729, - 45, 1, 0, 0, 0, 730, 731, 5, 50, 0, 0, 731, 732, 5, 147, 0, 0, 732, 736, - 5, 133, 0, 0, 733, 734, 5, 80, 0, 0, 734, 735, 5, 102, 0, 0, 735, 737, - 5, 70, 0, 0, 736, 733, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 741, 1, 0, - 0, 0, 738, 739, 3, 180, 90, 0, 739, 740, 5, 2, 0, 0, 740, 742, 1, 0, 0, - 0, 741, 738, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, - 744, 3, 182, 91, 0, 744, 745, 5, 143, 0, 0, 745, 757, 3, 200, 100, 0, 746, - 747, 5, 3, 0, 0, 747, 752, 3, 168, 84, 0, 748, 749, 5, 5, 0, 0, 749, 751, - 3, 168, 84, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, - 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 752, 1, 0, 0, - 0, 755, 756, 5, 4, 0, 0, 756, 758, 1, 0, 0, 0, 757, 746, 1, 0, 0, 0, 757, - 758, 1, 0, 0, 0, 758, 47, 1, 0, 0, 0, 759, 761, 5, 150, 0, 0, 760, 762, - 5, 116, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 1, - 0, 0, 0, 763, 764, 3, 50, 25, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 3, - 0, 0, 766, 767, 3, 82, 41, 0, 767, 777, 5, 4, 0, 0, 768, 769, 5, 5, 0, - 0, 769, 770, 3, 50, 25, 0, 770, 771, 5, 33, 0, 0, 771, 772, 5, 3, 0, 0, - 772, 773, 3, 82, 41, 0, 773, 774, 5, 4, 0, 0, 774, 776, 1, 0, 0, 0, 775, - 768, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, - 1, 0, 0, 0, 778, 49, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 792, 3, 182, - 91, 0, 781, 782, 5, 3, 0, 0, 782, 787, 3, 188, 94, 0, 783, 784, 5, 5, 0, - 0, 784, 786, 3, 188, 94, 0, 785, 783, 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, 4, 0, 0, 791, 793, 1, 0, 0, 0, 792, 781, - 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 51, 1, 0, 0, 0, 794, 795, 3, 50, - 25, 0, 795, 796, 5, 33, 0, 0, 796, 797, 5, 3, 0, 0, 797, 798, 3, 160, 80, - 0, 798, 800, 5, 140, 0, 0, 799, 801, 5, 29, 0, 0, 800, 799, 1, 0, 0, 0, - 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 3, 162, 81, 0, 803, - 804, 5, 4, 0, 0, 804, 53, 1, 0, 0, 0, 805, 817, 3, 182, 91, 0, 806, 807, - 5, 3, 0, 0, 807, 812, 3, 188, 94, 0, 808, 809, 5, 5, 0, 0, 809, 811, 3, - 188, 94, 0, 810, 808, 1, 0, 0, 0, 811, 814, 1, 0, 0, 0, 812, 810, 1, 0, - 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 812, 1, 0, 0, 0, - 815, 816, 5, 4, 0, 0, 816, 818, 1, 0, 0, 0, 817, 806, 1, 0, 0, 0, 817, - 818, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 5, 33, 0, 0, 820, 821, - 5, 3, 0, 0, 821, 822, 3, 82, 41, 0, 822, 823, 5, 4, 0, 0, 823, 55, 1, 0, - 0, 0, 824, 833, 5, 124, 0, 0, 825, 834, 5, 7, 0, 0, 826, 831, 3, 66, 33, - 0, 827, 829, 5, 33, 0, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, - 830, 1, 0, 0, 0, 830, 832, 3, 170, 85, 0, 831, 828, 1, 0, 0, 0, 831, 832, - 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 825, 1, 0, 0, 0, 833, 826, 1, 0, - 0, 0, 834, 848, 1, 0, 0, 0, 835, 844, 5, 5, 0, 0, 836, 845, 5, 7, 0, 0, - 837, 842, 3, 66, 33, 0, 838, 840, 5, 33, 0, 0, 839, 838, 1, 0, 0, 0, 839, - 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 3, 170, 85, 0, 842, 839, - 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 836, 1, 0, - 0, 0, 844, 837, 1, 0, 0, 0, 845, 847, 1, 0, 0, 0, 846, 835, 1, 0, 0, 0, - 847, 850, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, - 57, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 851, 853, 3, 48, 24, 0, 852, 851, - 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 5, 59, - 0, 0, 855, 856, 5, 75, 0, 0, 856, 859, 3, 110, 55, 0, 857, 858, 5, 149, - 0, 0, 858, 860, 3, 66, 33, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, - 0, 860, 862, 1, 0, 0, 0, 861, 863, 3, 56, 28, 0, 862, 861, 1, 0, 0, 0, - 862, 863, 1, 0, 0, 0, 863, 59, 1, 0, 0, 0, 864, 866, 3, 48, 24, 0, 865, - 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, - 5, 59, 0, 0, 868, 869, 5, 75, 0, 0, 869, 872, 3, 110, 55, 0, 870, 871, - 5, 149, 0, 0, 871, 873, 3, 66, 33, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, - 0, 0, 0, 873, 878, 1, 0, 0, 0, 874, 876, 3, 132, 66, 0, 875, 874, 1, 0, - 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 3, 134, 67, - 0, 878, 875, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 881, 1, 0, 0, 0, 880, - 882, 3, 56, 28, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 61, - 1, 0, 0, 0, 883, 885, 5, 61, 0, 0, 884, 886, 5, 55, 0, 0, 885, 884, 1, - 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 888, 3, 180, - 90, 0, 888, 63, 1, 0, 0, 0, 889, 890, 5, 63, 0, 0, 890, 893, 7, 9, 0, 0, - 891, 892, 5, 80, 0, 0, 892, 894, 5, 70, 0, 0, 893, 891, 1, 0, 0, 0, 893, - 894, 1, 0, 0, 0, 894, 898, 1, 0, 0, 0, 895, 896, 3, 180, 90, 0, 896, 897, - 5, 2, 0, 0, 897, 899, 1, 0, 0, 0, 898, 895, 1, 0, 0, 0, 898, 899, 1, 0, - 0, 0, 899, 900, 1, 0, 0, 0, 900, 901, 3, 224, 112, 0, 901, 65, 1, 0, 0, - 0, 902, 903, 6, 33, -1, 0, 903, 992, 3, 70, 35, 0, 904, 992, 5, 188, 0, - 0, 905, 992, 5, 189, 0, 0, 906, 907, 3, 180, 90, 0, 907, 908, 5, 2, 0, - 0, 908, 910, 1, 0, 0, 0, 909, 906, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, - 911, 1, 0, 0, 0, 911, 912, 3, 182, 91, 0, 912, 913, 5, 2, 0, 0, 913, 915, - 1, 0, 0, 0, 914, 909, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, - 0, 0, 916, 992, 3, 188, 94, 0, 917, 918, 3, 164, 82, 0, 918, 919, 3, 66, - 33, 20, 919, 992, 1, 0, 0, 0, 920, 921, 3, 178, 89, 0, 921, 934, 5, 3, - 0, 0, 922, 924, 5, 62, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, - 924, 925, 1, 0, 0, 0, 925, 930, 3, 66, 33, 0, 926, 927, 5, 5, 0, 0, 927, - 929, 3, 66, 33, 0, 928, 926, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, - 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 935, 1, 0, 0, 0, 932, 930, 1, 0, - 0, 0, 933, 935, 5, 7, 0, 0, 934, 923, 1, 0, 0, 0, 934, 933, 1, 0, 0, 0, - 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 5, 4, 0, 0, 937, - 939, 3, 114, 57, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, - 1, 0, 0, 0, 940, 942, 3, 118, 59, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, - 0, 0, 0, 942, 992, 1, 0, 0, 0, 943, 944, 5, 3, 0, 0, 944, 949, 3, 66, 33, - 0, 945, 946, 5, 5, 0, 0, 946, 948, 3, 66, 33, 0, 947, 945, 1, 0, 0, 0, - 948, 951, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, - 952, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 952, 953, 5, 4, 0, 0, 953, 992, - 1, 0, 0, 0, 954, 955, 5, 43, 0, 0, 955, 956, 5, 3, 0, 0, 956, 957, 3, 66, - 33, 0, 957, 958, 5, 33, 0, 0, 958, 959, 3, 30, 15, 0, 959, 960, 5, 4, 0, - 0, 960, 992, 1, 0, 0, 0, 961, 963, 5, 102, 0, 0, 962, 961, 1, 0, 0, 0, - 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 5, 70, 0, 0, 965, - 962, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, - 5, 3, 0, 0, 968, 969, 3, 82, 41, 0, 969, 970, 5, 4, 0, 0, 970, 992, 1, - 0, 0, 0, 971, 973, 5, 42, 0, 0, 972, 974, 3, 66, 33, 0, 973, 972, 1, 0, - 0, 0, 973, 974, 1, 0, 0, 0, 974, 980, 1, 0, 0, 0, 975, 976, 5, 148, 0, - 0, 976, 977, 3, 66, 33, 0, 977, 978, 5, 136, 0, 0, 978, 979, 3, 66, 33, - 0, 979, 981, 1, 0, 0, 0, 980, 975, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, - 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 985, - 5, 65, 0, 0, 985, 987, 3, 66, 33, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, - 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 5, 66, 0, 0, 989, 992, 1, 0, 0, - 0, 990, 992, 3, 68, 34, 0, 991, 902, 1, 0, 0, 0, 991, 904, 1, 0, 0, 0, - 991, 905, 1, 0, 0, 0, 991, 914, 1, 0, 0, 0, 991, 917, 1, 0, 0, 0, 991, - 920, 1, 0, 0, 0, 991, 943, 1, 0, 0, 0, 991, 954, 1, 0, 0, 0, 991, 965, - 1, 0, 0, 0, 991, 971, 1, 0, 0, 0, 991, 990, 1, 0, 0, 0, 992, 1106, 1, 0, - 0, 0, 993, 994, 10, 19, 0, 0, 994, 995, 5, 11, 0, 0, 995, 1105, 3, 66, - 33, 20, 996, 997, 10, 18, 0, 0, 997, 998, 7, 10, 0, 0, 998, 1105, 3, 66, - 33, 19, 999, 1000, 10, 17, 0, 0, 1000, 1001, 7, 4, 0, 0, 1001, 1105, 3, - 66, 33, 18, 1002, 1003, 10, 16, 0, 0, 1003, 1004, 7, 11, 0, 0, 1004, 1105, - 3, 66, 33, 17, 1005, 1006, 10, 15, 0, 0, 1006, 1007, 7, 12, 0, 0, 1007, - 1105, 3, 66, 33, 16, 1008, 1021, 10, 14, 0, 0, 1009, 1022, 5, 6, 0, 0, - 1010, 1022, 5, 22, 0, 0, 1011, 1022, 5, 23, 0, 0, 1012, 1022, 5, 24, 0, - 0, 1013, 1022, 5, 92, 0, 0, 1014, 1015, 5, 92, 0, 0, 1015, 1022, 5, 102, - 0, 0, 1016, 1022, 5, 83, 0, 0, 1017, 1022, 5, 97, 0, 0, 1018, 1022, 5, - 77, 0, 0, 1019, 1022, 5, 99, 0, 0, 1020, 1022, 5, 118, 0, 0, 1021, 1009, - 1, 0, 0, 0, 1021, 1010, 1, 0, 0, 0, 1021, 1011, 1, 0, 0, 0, 1021, 1012, - 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1014, 1, 0, 0, 0, 1021, 1016, - 1, 0, 0, 0, 1021, 1017, 1, 0, 0, 0, 1021, 1018, 1, 0, 0, 0, 1021, 1019, - 1, 0, 0, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1105, - 3, 66, 33, 15, 1024, 1025, 10, 13, 0, 0, 1025, 1026, 5, 32, 0, 0, 1026, - 1105, 3, 66, 33, 14, 1027, 1028, 10, 12, 0, 0, 1028, 1029, 5, 108, 0, 0, - 1029, 1105, 3, 66, 33, 13, 1030, 1032, 10, 5, 0, 0, 1031, 1033, 5, 102, - 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, - 0, 0, 1034, 1035, 5, 39, 0, 0, 1035, 1036, 3, 66, 33, 0, 1036, 1037, 5, - 32, 0, 0, 1037, 1038, 3, 66, 33, 6, 1038, 1105, 1, 0, 0, 0, 1039, 1040, - 10, 8, 0, 0, 1040, 1041, 5, 45, 0, 0, 1041, 1105, 3, 190, 95, 0, 1042, - 1044, 10, 7, 0, 0, 1043, 1045, 5, 102, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, - 1045, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 7, 13, 0, 0, 1047, - 1050, 3, 66, 33, 0, 1048, 1049, 5, 67, 0, 0, 1049, 1051, 3, 66, 33, 0, - 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1105, 1, 0, 0, 0, - 1052, 1057, 10, 6, 0, 0, 1053, 1058, 5, 93, 0, 0, 1054, 1058, 5, 103, 0, - 0, 1055, 1056, 5, 102, 0, 0, 1056, 1058, 5, 104, 0, 0, 1057, 1053, 1, 0, - 0, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1055, 1, 0, 0, 0, 1058, 1105, 1, 0, - 0, 0, 1059, 1061, 10, 4, 0, 0, 1060, 1062, 5, 102, 0, 0, 1061, 1060, 1, - 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1102, 5, - 83, 0, 0, 1064, 1074, 5, 3, 0, 0, 1065, 1075, 3, 82, 41, 0, 1066, 1071, - 3, 66, 33, 0, 1067, 1068, 5, 5, 0, 0, 1068, 1070, 3, 66, 33, 0, 1069, 1067, - 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, - 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1074, 1065, - 1, 0, 0, 0, 1074, 1066, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, - 1, 0, 0, 0, 1076, 1103, 5, 4, 0, 0, 1077, 1078, 3, 180, 90, 0, 1078, 1079, - 5, 2, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1080, 1081, - 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1103, 3, 182, 91, 0, 1083, 1084, - 3, 180, 90, 0, 1084, 1085, 5, 2, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1083, - 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, - 3, 222, 111, 0, 1089, 1098, 5, 3, 0, 0, 1090, 1095, 3, 66, 33, 0, 1091, - 1092, 5, 5, 0, 0, 1092, 1094, 3, 66, 33, 0, 1093, 1091, 1, 0, 0, 0, 1094, - 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, - 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1090, 1, 0, 0, 0, 1098, - 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 5, 4, 0, 0, 1101, - 1103, 1, 0, 0, 0, 1102, 1064, 1, 0, 0, 0, 1102, 1080, 1, 0, 0, 0, 1102, - 1086, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 993, 1, 0, 0, 0, 1104, - 996, 1, 0, 0, 0, 1104, 999, 1, 0, 0, 0, 1104, 1002, 1, 0, 0, 0, 1104, 1005, - 1, 0, 0, 0, 1104, 1008, 1, 0, 0, 0, 1104, 1024, 1, 0, 0, 0, 1104, 1027, - 1, 0, 0, 0, 1104, 1030, 1, 0, 0, 0, 1104, 1039, 1, 0, 0, 0, 1104, 1042, - 1, 0, 0, 0, 1104, 1052, 1, 0, 0, 0, 1104, 1059, 1, 0, 0, 0, 1105, 1108, - 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 67, 1, - 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1109, 1110, 5, 115, 0, 0, 1110, 1115, - 5, 3, 0, 0, 1111, 1116, 5, 81, 0, 0, 1112, 1113, 7, 14, 0, 0, 1113, 1114, - 5, 5, 0, 0, 1114, 1116, 3, 166, 83, 0, 1115, 1111, 1, 0, 0, 0, 1115, 1112, - 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 5, 4, 0, 0, 1118, 69, 1, - 0, 0, 0, 1119, 1120, 7, 15, 0, 0, 1120, 71, 1, 0, 0, 0, 1121, 1123, 3, - 48, 24, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1129, - 1, 0, 0, 0, 1124, 1130, 5, 88, 0, 0, 1125, 1130, 5, 122, 0, 0, 1126, 1127, - 5, 88, 0, 0, 1127, 1128, 5, 108, 0, 0, 1128, 1130, 7, 8, 0, 0, 1129, 1124, - 1, 0, 0, 0, 1129, 1125, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1130, 1131, - 1, 0, 0, 0, 1131, 1135, 5, 91, 0, 0, 1132, 1133, 3, 180, 90, 0, 1133, 1134, - 5, 2, 0, 0, 1134, 1136, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1135, 1136, - 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 3, 182, 91, 0, 1138, 1139, - 5, 33, 0, 0, 1139, 1141, 3, 206, 103, 0, 1140, 1138, 1, 0, 0, 0, 1140, - 1141, 1, 0, 0, 0, 1141, 1153, 1, 0, 0, 0, 1142, 1143, 5, 3, 0, 0, 1143, - 1148, 3, 188, 94, 0, 1144, 1145, 5, 5, 0, 0, 1145, 1147, 3, 188, 94, 0, - 1146, 1144, 1, 0, 0, 0, 1147, 1150, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, - 1148, 1149, 1, 0, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, - 1151, 1152, 5, 4, 0, 0, 1152, 1154, 1, 0, 0, 0, 1153, 1142, 1, 0, 0, 0, - 1153, 1154, 1, 0, 0, 0, 1154, 1184, 1, 0, 0, 0, 1155, 1156, 5, 145, 0, - 0, 1156, 1157, 5, 3, 0, 0, 1157, 1162, 3, 66, 33, 0, 1158, 1159, 5, 5, - 0, 0, 1159, 1161, 3, 66, 33, 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, 1165, 1, - 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1180, 5, 4, 0, 0, 1166, 1167, 5, - 5, 0, 0, 1167, 1168, 5, 3, 0, 0, 1168, 1173, 3, 66, 33, 0, 1169, 1170, - 5, 5, 0, 0, 1170, 1172, 3, 66, 33, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, - 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1176, - 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1177, 5, 4, 0, 0, 1177, 1179, - 1, 0, 0, 0, 1178, 1166, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1178, - 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1185, 1, 0, 0, 0, 1182, 1180, - 1, 0, 0, 0, 1183, 1185, 3, 82, 41, 0, 1184, 1155, 1, 0, 0, 0, 1184, 1183, - 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 3, 74, 37, 0, 1187, 1186, - 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1190, 1, 0, 0, 0, 1189, 1191, - 3, 56, 28, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1195, - 1, 0, 0, 0, 1192, 1193, 5, 56, 0, 0, 1193, 1195, 5, 145, 0, 0, 1194, 1122, - 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 73, 1, 0, 0, 0, 1196, 1197, 5, - 107, 0, 0, 1197, 1212, 5, 48, 0, 0, 1198, 1199, 5, 3, 0, 0, 1199, 1204, - 3, 24, 12, 0, 1200, 1201, 5, 5, 0, 0, 1201, 1203, 3, 24, 12, 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, 1207, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1210, - 5, 4, 0, 0, 1208, 1209, 5, 149, 0, 0, 1209, 1211, 3, 66, 33, 0, 1210, 1208, - 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1198, - 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1241, - 5, 184, 0, 0, 1215, 1242, 5, 185, 0, 0, 1216, 1217, 5, 142, 0, 0, 1217, - 1220, 5, 131, 0, 0, 1218, 1221, 3, 188, 94, 0, 1219, 1221, 3, 106, 53, - 0, 1220, 1218, 1, 0, 0, 0, 1220, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, - 0, 1222, 1223, 5, 6, 0, 0, 1223, 1234, 3, 66, 33, 0, 1224, 1227, 5, 5, - 0, 0, 1225, 1228, 3, 188, 94, 0, 1226, 1228, 3, 106, 53, 0, 1227, 1225, - 1, 0, 0, 0, 1227, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, - 5, 6, 0, 0, 1230, 1231, 3, 66, 33, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1224, - 1, 0, 0, 0, 1233, 1236, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, - 1, 0, 0, 0, 1235, 1239, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1238, - 5, 149, 0, 0, 1238, 1240, 3, 66, 33, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1240, - 1, 0, 0, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1215, 1, 0, 0, 0, 1241, 1216, - 1, 0, 0, 0, 1242, 75, 1, 0, 0, 0, 1243, 1247, 5, 112, 0, 0, 1244, 1245, - 3, 180, 90, 0, 1245, 1246, 5, 2, 0, 0, 1246, 1248, 1, 0, 0, 0, 1247, 1244, - 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1256, - 3, 202, 101, 0, 1250, 1251, 5, 6, 0, 0, 1251, 1257, 3, 78, 39, 0, 1252, - 1253, 5, 3, 0, 0, 1253, 1254, 3, 78, 39, 0, 1254, 1255, 5, 4, 0, 0, 1255, - 1257, 1, 0, 0, 0, 1256, 1250, 1, 0, 0, 0, 1256, 1252, 1, 0, 0, 0, 1256, - 1257, 1, 0, 0, 0, 1257, 77, 1, 0, 0, 0, 1258, 1262, 3, 34, 17, 0, 1259, - 1262, 3, 174, 87, 0, 1260, 1262, 5, 190, 0, 0, 1261, 1258, 1, 0, 0, 0, - 1261, 1259, 1, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 79, 1, 0, 0, 0, 1263, - 1274, 5, 119, 0, 0, 1264, 1275, 3, 190, 95, 0, 1265, 1266, 3, 180, 90, - 0, 1266, 1267, 5, 2, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1265, 1, 0, 0, - 0, 1268, 1269, 1, 0, 0, 0, 1269, 1272, 1, 0, 0, 0, 1270, 1273, 3, 182, - 91, 0, 1271, 1273, 3, 194, 97, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1271, 1, - 0, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1264, 1, 0, 0, 0, 1274, 1268, 1, - 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 81, 1, 0, 0, 0, 1276, 1278, 3, 130, - 65, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, - 0, 0, 1279, 1285, 3, 86, 43, 0, 1280, 1281, 3, 102, 51, 0, 1281, 1282, - 3, 86, 43, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1280, 1, 0, 0, 0, 1284, 1287, - 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1289, - 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1290, 3, 132, 66, 0, 1289, 1288, - 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, - 3, 134, 67, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 83, - 1, 0, 0, 0, 1294, 1302, 3, 94, 47, 0, 1295, 1296, 3, 98, 49, 0, 1296, 1298, - 3, 94, 47, 0, 1297, 1299, 3, 100, 50, 0, 1298, 1297, 1, 0, 0, 0, 1298, - 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1295, 1, 0, 0, 0, 1301, - 1304, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, - 85, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1305, 1307, 5, 130, 0, 0, 1306, - 1308, 7, 16, 0, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, - 1309, 1, 0, 0, 0, 1309, 1314, 3, 96, 48, 0, 1310, 1311, 5, 5, 0, 0, 1311, - 1313, 3, 96, 48, 0, 1312, 1310, 1, 0, 0, 0, 1313, 1316, 1, 0, 0, 0, 1314, - 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1329, 1, 0, 0, 0, 1316, - 1314, 1, 0, 0, 0, 1317, 1327, 5, 75, 0, 0, 1318, 1323, 3, 94, 47, 0, 1319, - 1320, 5, 5, 0, 0, 1320, 1322, 3, 94, 47, 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, - 1328, 1, 0, 0, 0, 1325, 1323, 1, 0, 0, 0, 1326, 1328, 3, 84, 42, 0, 1327, - 1318, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, - 1317, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, - 1332, 5, 149, 0, 0, 1332, 1334, 3, 66, 33, 0, 1333, 1331, 1, 0, 0, 0, 1333, - 1334, 1, 0, 0, 0, 1334, 1349, 1, 0, 0, 0, 1335, 1336, 5, 78, 0, 0, 1336, - 1337, 5, 40, 0, 0, 1337, 1342, 3, 66, 33, 0, 1338, 1339, 5, 5, 0, 0, 1339, - 1341, 3, 66, 33, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, - 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1347, 1, 0, 0, 0, 1344, - 1342, 1, 0, 0, 0, 1345, 1346, 5, 79, 0, 0, 1346, 1348, 3, 66, 33, 0, 1347, - 1345, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 1, 0, 0, 0, 1349, - 1335, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1365, 1, 0, 0, 0, 1351, - 1352, 5, 175, 0, 0, 1352, 1353, 3, 210, 105, 0, 1353, 1354, 5, 33, 0, 0, - 1354, 1362, 3, 116, 58, 0, 1355, 1356, 5, 5, 0, 0, 1356, 1357, 3, 210, - 105, 0, 1357, 1358, 5, 33, 0, 0, 1358, 1359, 3, 116, 58, 0, 1359, 1361, - 1, 0, 0, 0, 1360, 1355, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, - 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, - 1, 0, 0, 0, 1365, 1351, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1396, - 1, 0, 0, 0, 1367, 1368, 5, 145, 0, 0, 1368, 1369, 5, 3, 0, 0, 1369, 1374, - 3, 66, 33, 0, 1370, 1371, 5, 5, 0, 0, 1371, 1373, 3, 66, 33, 0, 1372, 1370, - 1, 0, 0, 0, 1373, 1376, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1374, 1375, - 1, 0, 0, 0, 1375, 1377, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1377, 1392, - 5, 4, 0, 0, 1378, 1379, 5, 5, 0, 0, 1379, 1380, 5, 3, 0, 0, 1380, 1385, - 3, 66, 33, 0, 1381, 1382, 5, 5, 0, 0, 1382, 1384, 3, 66, 33, 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, 1388, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1389, - 5, 4, 0, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1378, 1, 0, 0, 0, 1391, 1394, - 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1396, - 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1395, 1305, 1, 0, 0, 0, 1395, 1367, - 1, 0, 0, 0, 1396, 87, 1, 0, 0, 0, 1397, 1398, 3, 82, 41, 0, 1398, 89, 1, - 0, 0, 0, 1399, 1401, 3, 130, 65, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, - 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 3, 86, 43, 0, 1403, 1405, - 3, 132, 66, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1407, - 1, 0, 0, 0, 1406, 1408, 3, 134, 67, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, - 1, 0, 0, 0, 1408, 91, 1, 0, 0, 0, 1409, 1411, 3, 130, 65, 0, 1410, 1409, - 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1422, - 3, 86, 43, 0, 1413, 1415, 5, 140, 0, 0, 1414, 1416, 5, 29, 0, 0, 1415, - 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1420, 1, 0, 0, 0, 1417, - 1420, 5, 90, 0, 0, 1418, 1420, 5, 68, 0, 0, 1419, 1413, 1, 0, 0, 0, 1419, - 1417, 1, 0, 0, 0, 1419, 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, - 1423, 3, 86, 43, 0, 1422, 1419, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, - 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, - 1428, 3, 132, 66, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, - 1430, 1, 0, 0, 0, 1429, 1431, 3, 134, 67, 0, 1430, 1429, 1, 0, 0, 0, 1430, - 1431, 1, 0, 0, 0, 1431, 93, 1, 0, 0, 0, 1432, 1433, 3, 180, 90, 0, 1433, - 1434, 5, 2, 0, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1432, 1, 0, 0, 0, 1435, - 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1442, 3, 182, 91, 0, 1438, - 1440, 5, 33, 0, 0, 1439, 1438, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, - 1441, 1, 0, 0, 0, 1441, 1443, 3, 206, 103, 0, 1442, 1439, 1, 0, 0, 0, 1442, - 1443, 1, 0, 0, 0, 1443, 1449, 1, 0, 0, 0, 1444, 1445, 5, 85, 0, 0, 1445, - 1446, 5, 40, 0, 0, 1446, 1450, 3, 194, 97, 0, 1447, 1448, 5, 102, 0, 0, - 1448, 1450, 5, 85, 0, 0, 1449, 1444, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, - 1449, 1450, 1, 0, 0, 0, 1450, 1497, 1, 0, 0, 0, 1451, 1452, 3, 180, 90, - 0, 1452, 1453, 5, 2, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1451, 1, 0, 0, - 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 3, 222, - 111, 0, 1457, 1458, 5, 3, 0, 0, 1458, 1463, 3, 66, 33, 0, 1459, 1460, 5, - 5, 0, 0, 1460, 1462, 3, 66, 33, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1465, - 1, 0, 0, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1466, - 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1466, 1471, 5, 4, 0, 0, 1467, 1469, - 5, 33, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, - 1, 0, 0, 0, 1470, 1472, 3, 206, 103, 0, 1471, 1468, 1, 0, 0, 0, 1471, 1472, - 1, 0, 0, 0, 1472, 1497, 1, 0, 0, 0, 1473, 1483, 5, 3, 0, 0, 1474, 1479, - 3, 94, 47, 0, 1475, 1476, 5, 5, 0, 0, 1476, 1478, 3, 94, 47, 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, 1484, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1484, - 3, 84, 42, 0, 1483, 1474, 1, 0, 0, 0, 1483, 1482, 1, 0, 0, 0, 1484, 1485, - 1, 0, 0, 0, 1485, 1486, 5, 4, 0, 0, 1486, 1497, 1, 0, 0, 0, 1487, 1488, - 5, 3, 0, 0, 1488, 1489, 3, 82, 41, 0, 1489, 1494, 5, 4, 0, 0, 1490, 1492, - 5, 33, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, - 1, 0, 0, 0, 1493, 1495, 3, 206, 103, 0, 1494, 1491, 1, 0, 0, 0, 1494, 1495, - 1, 0, 0, 0, 1495, 1497, 1, 0, 0, 0, 1496, 1435, 1, 0, 0, 0, 1496, 1454, - 1, 0, 0, 0, 1496, 1473, 1, 0, 0, 0, 1496, 1487, 1, 0, 0, 0, 1497, 95, 1, - 0, 0, 0, 1498, 1511, 5, 7, 0, 0, 1499, 1500, 3, 182, 91, 0, 1500, 1501, - 5, 2, 0, 0, 1501, 1502, 5, 7, 0, 0, 1502, 1511, 1, 0, 0, 0, 1503, 1508, - 3, 66, 33, 0, 1504, 1506, 5, 33, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, - 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 3, 170, 85, 0, 1508, 1505, - 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1498, - 1, 0, 0, 0, 1510, 1499, 1, 0, 0, 0, 1510, 1503, 1, 0, 0, 0, 1511, 97, 1, - 0, 0, 0, 1512, 1526, 5, 5, 0, 0, 1513, 1515, 5, 100, 0, 0, 1514, 1513, - 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1522, 1, 0, 0, 0, 1516, 1518, - 5, 96, 0, 0, 1517, 1519, 5, 110, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, - 1, 0, 0, 0, 1519, 1523, 1, 0, 0, 0, 1520, 1523, 5, 87, 0, 0, 1521, 1523, - 5, 51, 0, 0, 1522, 1516, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, - 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, - 5, 94, 0, 0, 1525, 1512, 1, 0, 0, 0, 1525, 1514, 1, 0, 0, 0, 1526, 99, - 1, 0, 0, 0, 1527, 1528, 5, 107, 0, 0, 1528, 1542, 3, 66, 33, 0, 1529, 1530, - 5, 143, 0, 0, 1530, 1531, 5, 3, 0, 0, 1531, 1536, 3, 188, 94, 0, 1532, - 1533, 5, 5, 0, 0, 1533, 1535, 3, 188, 94, 0, 1534, 1532, 1, 0, 0, 0, 1535, - 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, - 1539, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1540, 5, 4, 0, 0, 1540, - 1542, 1, 0, 0, 0, 1541, 1527, 1, 0, 0, 0, 1541, 1529, 1, 0, 0, 0, 1542, - 101, 1, 0, 0, 0, 1543, 1545, 5, 140, 0, 0, 1544, 1546, 5, 29, 0, 0, 1545, - 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1550, 1, 0, 0, 0, 1547, - 1550, 5, 90, 0, 0, 1548, 1550, 5, 68, 0, 0, 1549, 1543, 1, 0, 0, 0, 1549, - 1547, 1, 0, 0, 0, 1549, 1548, 1, 0, 0, 0, 1550, 103, 1, 0, 0, 0, 1551, - 1553, 3, 48, 24, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, - 1554, 1, 0, 0, 0, 1554, 1557, 5, 142, 0, 0, 1555, 1556, 5, 108, 0, 0, 1556, - 1558, 7, 8, 0, 0, 1557, 1555, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, - 1559, 1, 0, 0, 0, 1559, 1560, 3, 110, 55, 0, 1560, 1563, 5, 131, 0, 0, - 1561, 1564, 3, 188, 94, 0, 1562, 1564, 3, 106, 53, 0, 1563, 1561, 1, 0, - 0, 0, 1563, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 5, 6, - 0, 0, 1566, 1577, 3, 66, 33, 0, 1567, 1570, 5, 5, 0, 0, 1568, 1571, 3, - 188, 94, 0, 1569, 1571, 3, 106, 53, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1569, - 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 5, 6, 0, 0, 1573, 1574, - 3, 66, 33, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1567, 1, 0, 0, 0, 1576, 1579, - 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1582, - 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 5, 149, 0, 0, 1581, 1583, - 3, 66, 33, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, - 1, 0, 0, 0, 1584, 1586, 3, 56, 28, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, - 1, 0, 0, 0, 1586, 105, 1, 0, 0, 0, 1587, 1588, 5, 3, 0, 0, 1588, 1593, - 3, 188, 94, 0, 1589, 1590, 5, 5, 0, 0, 1590, 1592, 3, 188, 94, 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, 1596, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, - 1597, 5, 4, 0, 0, 1597, 107, 1, 0, 0, 0, 1598, 1600, 3, 48, 24, 0, 1599, - 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, - 1604, 5, 142, 0, 0, 1602, 1603, 5, 108, 0, 0, 1603, 1605, 7, 8, 0, 0, 1604, - 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, - 1607, 3, 110, 55, 0, 1607, 1610, 5, 131, 0, 0, 1608, 1611, 3, 188, 94, - 0, 1609, 1611, 3, 106, 53, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1609, 1, 0, - 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 5, 6, 0, 0, 1613, 1624, 3, 66, - 33, 0, 1614, 1617, 5, 5, 0, 0, 1615, 1618, 3, 188, 94, 0, 1616, 1618, 3, - 106, 53, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 1619, - 1, 0, 0, 0, 1619, 1620, 5, 6, 0, 0, 1620, 1621, 3, 66, 33, 0, 1621, 1623, - 1, 0, 0, 0, 1622, 1614, 1, 0, 0, 0, 1623, 1626, 1, 0, 0, 0, 1624, 1622, - 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1629, 1, 0, 0, 0, 1626, 1624, - 1, 0, 0, 0, 1627, 1628, 5, 149, 0, 0, 1628, 1630, 3, 66, 33, 0, 1629, 1627, - 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1635, 1, 0, 0, 0, 1631, 1633, - 3, 132, 66, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, - 1, 0, 0, 0, 1634, 1636, 3, 134, 67, 0, 1635, 1632, 1, 0, 0, 0, 1635, 1636, - 1, 0, 0, 0, 1636, 109, 1, 0, 0, 0, 1637, 1638, 3, 180, 90, 0, 1638, 1639, - 5, 2, 0, 0, 1639, 1641, 1, 0, 0, 0, 1640, 1637, 1, 0, 0, 0, 1640, 1641, - 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1645, 3, 182, 91, 0, 1643, 1644, - 5, 33, 0, 0, 1644, 1646, 3, 212, 106, 0, 1645, 1643, 1, 0, 0, 0, 1645, - 1646, 1, 0, 0, 0, 1646, 1652, 1, 0, 0, 0, 1647, 1648, 5, 85, 0, 0, 1648, - 1649, 5, 40, 0, 0, 1649, 1653, 3, 194, 97, 0, 1650, 1651, 5, 102, 0, 0, - 1651, 1653, 5, 85, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, - 1652, 1653, 1, 0, 0, 0, 1653, 111, 1, 0, 0, 0, 1654, 1656, 5, 144, 0, 0, - 1655, 1657, 3, 180, 90, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, - 0, 1657, 1660, 1, 0, 0, 0, 1658, 1659, 5, 91, 0, 0, 1659, 1661, 3, 214, - 107, 0, 1660, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 113, 1, 0, - 0, 0, 1662, 1663, 5, 179, 0, 0, 1663, 1664, 5, 3, 0, 0, 1664, 1665, 5, - 149, 0, 0, 1665, 1666, 3, 66, 33, 0, 1666, 1667, 5, 4, 0, 0, 1667, 115, - 1, 0, 0, 0, 1668, 1670, 5, 3, 0, 0, 1669, 1671, 3, 216, 108, 0, 1670, 1669, - 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1682, 1, 0, 0, 0, 1672, 1673, - 5, 154, 0, 0, 1673, 1674, 5, 40, 0, 0, 1674, 1679, 3, 66, 33, 0, 1675, - 1676, 5, 5, 0, 0, 1676, 1678, 3, 66, 33, 0, 1677, 1675, 1, 0, 0, 0, 1678, - 1681, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, - 1683, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1672, 1, 0, 0, 0, 1682, - 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 5, 109, 0, 0, 1685, - 1686, 5, 40, 0, 0, 1686, 1691, 3, 136, 68, 0, 1687, 1688, 5, 5, 0, 0, 1688, - 1690, 3, 136, 68, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, - 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, - 1691, 1, 0, 0, 0, 1694, 1696, 3, 120, 60, 0, 1695, 1694, 1, 0, 0, 0, 1695, - 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 5, 4, 0, 0, 1698, - 117, 1, 0, 0, 0, 1699, 1733, 5, 153, 0, 0, 1700, 1734, 3, 210, 105, 0, - 1701, 1703, 5, 3, 0, 0, 1702, 1704, 3, 216, 108, 0, 1703, 1702, 1, 0, 0, - 0, 1703, 1704, 1, 0, 0, 0, 1704, 1715, 1, 0, 0, 0, 1705, 1706, 5, 154, - 0, 0, 1706, 1707, 5, 40, 0, 0, 1707, 1712, 3, 66, 33, 0, 1708, 1709, 5, - 5, 0, 0, 1709, 1711, 3, 66, 33, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1714, - 1, 0, 0, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1716, - 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1715, 1705, 1, 0, 0, 0, 1715, 1716, - 1, 0, 0, 0, 1716, 1727, 1, 0, 0, 0, 1717, 1718, 5, 109, 0, 0, 1718, 1719, - 5, 40, 0, 0, 1719, 1724, 3, 136, 68, 0, 1720, 1721, 5, 5, 0, 0, 1721, 1723, - 3, 136, 68, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, - 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1724, - 1, 0, 0, 0, 1727, 1717, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, - 1, 0, 0, 0, 1729, 1731, 3, 120, 60, 0, 1730, 1729, 1, 0, 0, 0, 1730, 1731, - 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1734, 5, 4, 0, 0, 1733, 1700, - 1, 0, 0, 0, 1733, 1701, 1, 0, 0, 0, 1734, 119, 1, 0, 0, 0, 1735, 1743, - 3, 122, 61, 0, 1736, 1737, 5, 181, 0, 0, 1737, 1738, 5, 101, 0, 0, 1738, - 1744, 5, 183, 0, 0, 1739, 1740, 5, 158, 0, 0, 1740, 1744, 5, 127, 0, 0, - 1741, 1744, 5, 78, 0, 0, 1742, 1744, 5, 182, 0, 0, 1743, 1736, 1, 0, 0, - 0, 1743, 1739, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1742, 1, 0, 0, - 0, 1743, 1744, 1, 0, 0, 0, 1744, 121, 1, 0, 0, 0, 1745, 1752, 7, 17, 0, - 0, 1746, 1753, 3, 144, 72, 0, 1747, 1748, 5, 39, 0, 0, 1748, 1749, 3, 140, - 70, 0, 1749, 1750, 5, 32, 0, 0, 1750, 1751, 3, 142, 71, 0, 1751, 1753, - 1, 0, 0, 0, 1752, 1746, 1, 0, 0, 0, 1752, 1747, 1, 0, 0, 0, 1753, 123, - 1, 0, 0, 0, 1754, 1755, 3, 218, 109, 0, 1755, 1765, 5, 3, 0, 0, 1756, 1761, - 3, 66, 33, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 66, 33, 0, 1759, 1757, - 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, - 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1766, - 5, 7, 0, 0, 1765, 1756, 1, 0, 0, 0, 1765, 1764, 1, 0, 0, 0, 1766, 1767, - 1, 0, 0, 0, 1767, 1768, 5, 4, 0, 0, 1768, 125, 1, 0, 0, 0, 1769, 1770, - 3, 220, 110, 0, 1770, 1783, 5, 3, 0, 0, 1771, 1773, 5, 62, 0, 0, 1772, - 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, - 1779, 3, 66, 33, 0, 1775, 1776, 5, 5, 0, 0, 1776, 1778, 3, 66, 33, 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, 1784, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, - 1784, 5, 7, 0, 0, 1783, 1772, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, - 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1787, 5, 4, 0, 0, 1786, - 1788, 3, 114, 57, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, - 127, 1, 0, 0, 0, 1789, 1790, 3, 146, 73, 0, 1790, 1800, 5, 3, 0, 0, 1791, - 1796, 3, 66, 33, 0, 1792, 1793, 5, 5, 0, 0, 1793, 1795, 3, 66, 33, 0, 1794, - 1792, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, - 1797, 1, 0, 0, 0, 1797, 1801, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, - 1801, 5, 7, 0, 0, 1800, 1791, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, - 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1804, 5, 4, 0, 0, 1803, - 1805, 3, 114, 57, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, - 1806, 1, 0, 0, 0, 1806, 1809, 5, 153, 0, 0, 1807, 1810, 3, 116, 58, 0, - 1808, 1810, 3, 210, 105, 0, 1809, 1807, 1, 0, 0, 0, 1809, 1808, 1, 0, 0, - 0, 1810, 129, 1, 0, 0, 0, 1811, 1813, 5, 150, 0, 0, 1812, 1814, 5, 116, - 0, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 1, 0, - 0, 0, 1815, 1820, 3, 54, 27, 0, 1816, 1817, 5, 5, 0, 0, 1817, 1819, 3, - 54, 27, 0, 1818, 1816, 1, 0, 0, 0, 1819, 1822, 1, 0, 0, 0, 1820, 1818, - 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 131, 1, 0, 0, 0, 1822, 1820, - 1, 0, 0, 0, 1823, 1824, 5, 109, 0, 0, 1824, 1825, 5, 40, 0, 0, 1825, 1830, - 3, 136, 68, 0, 1826, 1827, 5, 5, 0, 0, 1827, 1829, 3, 136, 68, 0, 1828, - 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, - 1831, 1, 0, 0, 0, 1831, 133, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, - 1834, 5, 98, 0, 0, 1834, 1837, 3, 66, 33, 0, 1835, 1836, 7, 18, 0, 0, 1836, - 1838, 3, 66, 33, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, - 135, 1, 0, 0, 0, 1839, 1842, 3, 66, 33, 0, 1840, 1841, 5, 45, 0, 0, 1841, - 1843, 3, 190, 95, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, - 1845, 1, 0, 0, 0, 1844, 1846, 3, 138, 69, 0, 1845, 1844, 1, 0, 0, 0, 1845, - 1846, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1848, 5, 176, 0, 0, 1848, - 1850, 7, 19, 0, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, - 137, 1, 0, 0, 0, 1851, 1852, 7, 20, 0, 0, 1852, 139, 1, 0, 0, 0, 1853, - 1854, 3, 66, 33, 0, 1854, 1855, 5, 156, 0, 0, 1855, 1864, 1, 0, 0, 0, 1856, - 1857, 3, 66, 33, 0, 1857, 1858, 5, 159, 0, 0, 1858, 1864, 1, 0, 0, 0, 1859, - 1860, 5, 158, 0, 0, 1860, 1864, 5, 127, 0, 0, 1861, 1862, 5, 157, 0, 0, - 1862, 1864, 5, 156, 0, 0, 1863, 1853, 1, 0, 0, 0, 1863, 1856, 1, 0, 0, - 0, 1863, 1859, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 141, 1, 0, 0, - 0, 1865, 1866, 3, 66, 33, 0, 1866, 1867, 5, 156, 0, 0, 1867, 1876, 1, 0, - 0, 0, 1868, 1869, 3, 66, 33, 0, 1869, 1870, 5, 159, 0, 0, 1870, 1876, 1, - 0, 0, 0, 1871, 1872, 5, 158, 0, 0, 1872, 1876, 5, 127, 0, 0, 1873, 1874, - 5, 157, 0, 0, 1874, 1876, 5, 159, 0, 0, 1875, 1865, 1, 0, 0, 0, 1875, 1868, + 1, 0, 25, 181, 2392, 0, 231, 1, 0, 0, 0, 2, 239, 1, 0, 0, 0, 4, 265, 1, + 0, 0, 0, 6, 293, 1, 0, 0, 0, 8, 325, 1, 0, 0, 0, 10, 335, 1, 0, 0, 0, 12, + 343, 1, 0, 0, 0, 14, 353, 1, 0, 0, 0, 16, 357, 1, 0, 0, 0, 18, 368, 1, + 0, 0, 0, 20, 371, 1, 0, 0, 0, 22, 377, 1, 0, 0, 0, 24, 411, 1, 0, 0, 0, + 26, 423, 1, 0, 0, 0, 28, 425, 1, 0, 0, 0, 30, 472, 1, 0, 0, 0, 32, 483, + 1, 0, 0, 0, 34, 501, 1, 0, 0, 0, 36, 553, 1, 0, 0, 0, 38, 559, 1, 0, 0, + 0, 40, 600, 1, 0, 0, 0, 42, 642, 1, 0, 0, 0, 44, 646, 1, 0, 0, 0, 46, 710, + 1, 0, 0, 0, 48, 742, 1, 0, 0, 0, 50, 771, 1, 0, 0, 0, 52, 792, 1, 0, 0, + 0, 54, 806, 1, 0, 0, 0, 56, 817, 1, 0, 0, 0, 58, 836, 1, 0, 0, 0, 60, 864, + 1, 0, 0, 0, 62, 877, 1, 0, 0, 0, 64, 895, 1, 0, 0, 0, 66, 901, 1, 0, 0, + 0, 68, 1003, 1, 0, 0, 0, 70, 1121, 1, 0, 0, 0, 72, 1131, 1, 0, 0, 0, 74, + 1206, 1, 0, 0, 0, 76, 1208, 1, 0, 0, 0, 78, 1255, 1, 0, 0, 0, 80, 1273, + 1, 0, 0, 0, 82, 1275, 1, 0, 0, 0, 84, 1289, 1, 0, 0, 0, 86, 1306, 1, 0, + 0, 0, 88, 1407, 1, 0, 0, 0, 90, 1409, 1, 0, 0, 0, 92, 1412, 1, 0, 0, 0, + 94, 1422, 1, 0, 0, 0, 96, 1508, 1, 0, 0, 0, 98, 1522, 1, 0, 0, 0, 100, + 1537, 1, 0, 0, 0, 102, 1553, 1, 0, 0, 0, 104, 1561, 1, 0, 0, 0, 106, 1564, + 1, 0, 0, 0, 108, 1599, 1, 0, 0, 0, 110, 1611, 1, 0, 0, 0, 112, 1652, 1, + 0, 0, 0, 114, 1666, 1, 0, 0, 0, 116, 1674, 1, 0, 0, 0, 118, 1680, 1, 0, + 0, 0, 120, 1711, 1, 0, 0, 0, 122, 1747, 1, 0, 0, 0, 124, 1757, 1, 0, 0, + 0, 126, 1766, 1, 0, 0, 0, 128, 1781, 1, 0, 0, 0, 130, 1801, 1, 0, 0, 0, + 132, 1823, 1, 0, 0, 0, 134, 1835, 1, 0, 0, 0, 136, 1845, 1, 0, 0, 0, 138, + 1851, 1, 0, 0, 0, 140, 1863, 1, 0, 0, 0, 142, 1875, 1, 0, 0, 0, 144, 1887, + 1, 0, 0, 0, 146, 1896, 1, 0, 0, 0, 148, 1983, 1, 0, 0, 0, 150, 1985, 1, + 0, 0, 0, 152, 1988, 1, 0, 0, 0, 154, 1991, 1, 0, 0, 0, 156, 1998, 1, 0, + 0, 0, 158, 2005, 1, 0, 0, 0, 160, 2009, 1, 0, 0, 0, 162, 2023, 1, 0, 0, + 0, 164, 2025, 1, 0, 0, 0, 166, 2027, 1, 0, 0, 0, 168, 2029, 1, 0, 0, 0, + 170, 2033, 1, 0, 0, 0, 172, 2035, 1, 0, 0, 0, 174, 2037, 1, 0, 0, 0, 176, + 2039, 1, 0, 0, 0, 178, 2041, 1, 0, 0, 0, 180, 2046, 1, 0, 0, 0, 182, 2050, + 1, 0, 0, 0, 184, 2052, 1, 0, 0, 0, 186, 2054, 1, 0, 0, 0, 188, 2056, 1, + 0, 0, 0, 190, 2058, 1, 0, 0, 0, 192, 2060, 1, 0, 0, 0, 194, 2062, 1, 0, + 0, 0, 196, 2064, 1, 0, 0, 0, 198, 2066, 1, 0, 0, 0, 200, 2068, 1, 0, 0, + 0, 202, 2070, 1, 0, 0, 0, 204, 2072, 1, 0, 0, 0, 206, 2074, 1, 0, 0, 0, + 208, 2076, 1, 0, 0, 0, 210, 2078, 1, 0, 0, 0, 212, 2080, 1, 0, 0, 0, 214, + 2082, 1, 0, 0, 0, 216, 2084, 1, 0, 0, 0, 218, 2086, 1, 0, 0, 0, 220, 2088, + 1, 0, 0, 0, 222, 2090, 1, 0, 0, 0, 224, 2092, 1, 0, 0, 0, 226, 2101, 1, + 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 230, 233, 1, 0, 0, + 0, 231, 229, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 234, 1, 0, 0, 0, 233, + 231, 1, 0, 0, 0, 234, 235, 5, 0, 0, 1, 235, 1, 1, 0, 0, 0, 236, 238, 5, + 1, 0, 0, 237, 236, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, + 0, 239, 240, 1, 0, 0, 0, 240, 242, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, + 251, 3, 4, 2, 0, 243, 245, 5, 1, 0, 0, 244, 243, 1, 0, 0, 0, 245, 246, + 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, + 0, 0, 248, 250, 3, 4, 2, 0, 249, 244, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, + 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 257, 1, 0, 0, 0, 253, + 251, 1, 0, 0, 0, 254, 256, 5, 1, 0, 0, 255, 254, 1, 0, 0, 0, 256, 259, + 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 3, 1, 0, 0, + 0, 259, 257, 1, 0, 0, 0, 260, 263, 5, 71, 0, 0, 261, 262, 5, 114, 0, 0, + 262, 264, 5, 111, 0, 0, 263, 261, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, + 266, 1, 0, 0, 0, 265, 260, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 291, + 1, 0, 0, 0, 267, 292, 3, 6, 3, 0, 268, 292, 3, 8, 4, 0, 269, 292, 3, 10, + 5, 0, 270, 292, 3, 12, 6, 0, 271, 292, 3, 14, 7, 0, 272, 292, 3, 22, 11, + 0, 273, 292, 3, 28, 14, 0, 274, 292, 3, 44, 22, 0, 275, 292, 3, 46, 23, + 0, 276, 292, 3, 48, 24, 0, 277, 292, 3, 60, 30, 0, 278, 292, 3, 62, 31, + 0, 279, 292, 3, 64, 32, 0, 280, 292, 3, 66, 33, 0, 281, 292, 3, 74, 37, + 0, 282, 292, 3, 78, 39, 0, 283, 292, 3, 82, 41, 0, 284, 292, 3, 20, 10, + 0, 285, 292, 3, 16, 8, 0, 286, 292, 3, 18, 9, 0, 287, 292, 3, 84, 42, 0, + 288, 292, 3, 106, 53, 0, 289, 292, 3, 110, 55, 0, 290, 292, 3, 114, 57, + 0, 291, 267, 1, 0, 0, 0, 291, 268, 1, 0, 0, 0, 291, 269, 1, 0, 0, 0, 291, + 270, 1, 0, 0, 0, 291, 271, 1, 0, 0, 0, 291, 272, 1, 0, 0, 0, 291, 273, + 1, 0, 0, 0, 291, 274, 1, 0, 0, 0, 291, 275, 1, 0, 0, 0, 291, 276, 1, 0, + 0, 0, 291, 277, 1, 0, 0, 0, 291, 278, 1, 0, 0, 0, 291, 279, 1, 0, 0, 0, + 291, 280, 1, 0, 0, 0, 291, 281, 1, 0, 0, 0, 291, 282, 1, 0, 0, 0, 291, + 283, 1, 0, 0, 0, 291, 284, 1, 0, 0, 0, 291, 285, 1, 0, 0, 0, 291, 286, + 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 291, 288, 1, 0, 0, 0, 291, 289, 1, 0, + 0, 0, 291, 290, 1, 0, 0, 0, 292, 5, 1, 0, 0, 0, 293, 294, 5, 30, 0, 0, + 294, 298, 5, 133, 0, 0, 295, 296, 3, 182, 91, 0, 296, 297, 5, 2, 0, 0, + 297, 299, 1, 0, 0, 0, 298, 295, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, + 300, 1, 0, 0, 0, 300, 323, 3, 184, 92, 0, 301, 311, 5, 121, 0, 0, 302, + 303, 5, 137, 0, 0, 303, 312, 3, 188, 94, 0, 304, 306, 5, 46, 0, 0, 305, + 304, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 308, + 3, 190, 95, 0, 308, 309, 5, 137, 0, 0, 309, 310, 3, 190, 95, 0, 310, 312, + 1, 0, 0, 0, 311, 302, 1, 0, 0, 0, 311, 305, 1, 0, 0, 0, 312, 324, 1, 0, + 0, 0, 313, 315, 5, 27, 0, 0, 314, 316, 5, 46, 0, 0, 315, 314, 1, 0, 0, + 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 324, 3, 30, 15, 0, + 318, 320, 5, 63, 0, 0, 319, 321, 5, 46, 0, 0, 320, 319, 1, 0, 0, 0, 320, + 321, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 324, 3, 190, 95, 0, 323, 301, + 1, 0, 0, 0, 323, 313, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 324, 7, 1, 0, 0, + 0, 325, 333, 5, 31, 0, 0, 326, 334, 3, 182, 91, 0, 327, 328, 3, 182, 91, + 0, 328, 329, 5, 2, 0, 0, 329, 331, 1, 0, 0, 0, 330, 327, 1, 0, 0, 0, 330, + 331, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 3, 186, 93, 0, 333, 326, + 1, 0, 0, 0, 333, 330, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 9, 1, 0, 0, + 0, 335, 337, 5, 35, 0, 0, 336, 338, 5, 55, 0, 0, 337, 336, 1, 0, 0, 0, + 337, 338, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 3, 68, 34, 0, 340, + 341, 5, 33, 0, 0, 341, 342, 3, 182, 91, 0, 342, 11, 1, 0, 0, 0, 343, 345, + 5, 38, 0, 0, 344, 346, 7, 0, 0, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, + 0, 0, 346, 351, 1, 0, 0, 0, 347, 349, 5, 138, 0, 0, 348, 350, 3, 210, 105, + 0, 349, 348, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, + 347, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 13, 1, 0, 0, 0, 353, 355, 7, + 1, 0, 0, 354, 356, 5, 138, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, + 0, 0, 356, 15, 1, 0, 0, 0, 357, 359, 5, 126, 0, 0, 358, 360, 5, 138, 0, + 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 366, 1, 0, 0, 0, 361, + 363, 5, 137, 0, 0, 362, 364, 5, 129, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, + 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 367, 3, 206, 103, 0, 366, 361, 1, + 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 17, 1, 0, 0, 0, 368, 369, 5, 129, 0, + 0, 369, 370, 3, 206, 103, 0, 370, 19, 1, 0, 0, 0, 371, 373, 5, 120, 0, + 0, 372, 374, 5, 129, 0, 0, 373, 372, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, + 374, 375, 1, 0, 0, 0, 375, 376, 3, 206, 103, 0, 376, 21, 1, 0, 0, 0, 377, + 379, 5, 50, 0, 0, 378, 380, 5, 141, 0, 0, 379, 378, 1, 0, 0, 0, 379, 380, + 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 385, 5, 84, 0, 0, 382, 383, 5, 80, + 0, 0, 383, 384, 5, 102, 0, 0, 384, 386, 5, 70, 0, 0, 385, 382, 1, 0, 0, + 0, 385, 386, 1, 0, 0, 0, 386, 390, 1, 0, 0, 0, 387, 388, 3, 182, 91, 0, + 388, 389, 5, 2, 0, 0, 389, 391, 1, 0, 0, 0, 390, 387, 1, 0, 0, 0, 390, + 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 3, 196, 98, 0, 393, 394, + 5, 107, 0, 0, 394, 395, 3, 184, 92, 0, 395, 396, 5, 3, 0, 0, 396, 401, + 3, 24, 12, 0, 397, 398, 5, 5, 0, 0, 398, 400, 3, 24, 12, 0, 399, 397, 1, + 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, + 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 407, 5, 4, 0, 0, 405, + 406, 5, 149, 0, 0, 406, 408, 3, 68, 34, 0, 407, 405, 1, 0, 0, 0, 407, 408, + 1, 0, 0, 0, 408, 23, 1, 0, 0, 0, 409, 412, 3, 190, 95, 0, 410, 412, 3, + 68, 34, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 415, 1, 0, + 0, 0, 413, 414, 5, 45, 0, 0, 414, 416, 3, 192, 96, 0, 415, 413, 1, 0, 0, + 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 419, 3, 140, 70, 0, + 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 25, 1, 0, 0, 0, 420, 421, + 5, 151, 0, 0, 421, 424, 5, 186, 0, 0, 422, 424, 5, 132, 0, 0, 423, 420, + 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 27, 1, 0, 0, 0, 425, 427, 5, 50, + 0, 0, 426, 428, 7, 2, 0, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, + 428, 429, 1, 0, 0, 0, 429, 433, 5, 133, 0, 0, 430, 431, 5, 80, 0, 0, 431, + 432, 5, 102, 0, 0, 432, 434, 5, 70, 0, 0, 433, 430, 1, 0, 0, 0, 433, 434, + 1, 0, 0, 0, 434, 438, 1, 0, 0, 0, 435, 436, 3, 182, 91, 0, 436, 437, 5, + 2, 0, 0, 437, 439, 1, 0, 0, 0, 438, 435, 1, 0, 0, 0, 438, 439, 1, 0, 0, + 0, 439, 440, 1, 0, 0, 0, 440, 470, 3, 184, 92, 0, 441, 442, 5, 3, 0, 0, + 442, 447, 3, 30, 15, 0, 443, 444, 5, 5, 0, 0, 444, 446, 3, 30, 15, 0, 445, + 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 447, 445, + 1, 0, 0, 0, 448, 454, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 451, 5, 5, + 0, 0, 451, 453, 3, 38, 19, 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, 457, 1, 0, 0, 0, 456, + 454, 1, 0, 0, 0, 457, 466, 5, 4, 0, 0, 458, 463, 3, 26, 13, 0, 459, 460, + 5, 5, 0, 0, 460, 462, 3, 26, 13, 0, 461, 459, 1, 0, 0, 0, 462, 465, 1, + 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 467, 1, 0, 0, + 0, 465, 463, 1, 0, 0, 0, 466, 458, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, + 471, 1, 0, 0, 0, 468, 469, 5, 33, 0, 0, 469, 471, 3, 84, 42, 0, 470, 441, + 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 29, 1, 0, 0, 0, 472, 474, 3, 190, + 95, 0, 473, 475, 3, 32, 16, 0, 474, 473, 1, 0, 0, 0, 474, 475, 1, 0, 0, + 0, 475, 479, 1, 0, 0, 0, 476, 478, 3, 34, 17, 0, 477, 476, 1, 0, 0, 0, + 478, 481, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, + 31, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 482, 484, 3, 176, 88, 0, 483, 482, + 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 485, 483, 1, 0, + 0, 0, 486, 497, 1, 0, 0, 0, 487, 488, 5, 3, 0, 0, 488, 489, 3, 36, 18, + 0, 489, 490, 5, 4, 0, 0, 490, 498, 1, 0, 0, 0, 491, 492, 5, 3, 0, 0, 492, + 493, 3, 36, 18, 0, 493, 494, 5, 5, 0, 0, 494, 495, 3, 36, 18, 0, 495, 496, + 5, 4, 0, 0, 496, 498, 1, 0, 0, 0, 497, 487, 1, 0, 0, 0, 497, 491, 1, 0, + 0, 0, 497, 498, 1, 0, 0, 0, 498, 33, 1, 0, 0, 0, 499, 500, 5, 49, 0, 0, + 500, 502, 3, 176, 88, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, + 550, 1, 0, 0, 0, 503, 504, 5, 113, 0, 0, 504, 506, 5, 95, 0, 0, 505, 507, + 3, 140, 70, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 509, 1, + 0, 0, 0, 508, 510, 3, 42, 21, 0, 509, 508, 1, 0, 0, 0, 509, 510, 1, 0, + 0, 0, 510, 512, 1, 0, 0, 0, 511, 513, 5, 36, 0, 0, 512, 511, 1, 0, 0, 0, + 512, 513, 1, 0, 0, 0, 513, 551, 1, 0, 0, 0, 514, 515, 5, 102, 0, 0, 515, + 518, 5, 104, 0, 0, 516, 518, 5, 141, 0, 0, 517, 514, 1, 0, 0, 0, 517, 516, + 1, 0, 0, 0, 518, 520, 1, 0, 0, 0, 519, 521, 3, 42, 21, 0, 520, 519, 1, + 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 551, 1, 0, 0, 0, 522, 523, 5, 44, 0, + 0, 523, 524, 5, 3, 0, 0, 524, 525, 3, 68, 34, 0, 525, 526, 5, 4, 0, 0, + 526, 551, 1, 0, 0, 0, 527, 534, 5, 56, 0, 0, 528, 535, 3, 36, 18, 0, 529, + 535, 3, 72, 36, 0, 530, 531, 5, 3, 0, 0, 531, 532, 3, 68, 34, 0, 532, 533, + 5, 4, 0, 0, 533, 535, 1, 0, 0, 0, 534, 528, 1, 0, 0, 0, 534, 529, 1, 0, + 0, 0, 534, 530, 1, 0, 0, 0, 535, 551, 1, 0, 0, 0, 536, 537, 5, 45, 0, 0, + 537, 551, 3, 192, 96, 0, 538, 551, 3, 40, 20, 0, 539, 540, 5, 170, 0, 0, + 540, 542, 5, 171, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, + 543, 1, 0, 0, 0, 543, 544, 5, 33, 0, 0, 544, 545, 5, 3, 0, 0, 545, 546, + 3, 68, 34, 0, 546, 548, 5, 4, 0, 0, 547, 549, 7, 3, 0, 0, 548, 547, 1, + 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 551, 1, 0, 0, 0, 550, 503, 1, 0, 0, + 0, 550, 517, 1, 0, 0, 0, 550, 522, 1, 0, 0, 0, 550, 527, 1, 0, 0, 0, 550, + 536, 1, 0, 0, 0, 550, 538, 1, 0, 0, 0, 550, 541, 1, 0, 0, 0, 551, 35, 1, + 0, 0, 0, 552, 554, 7, 4, 0, 0, 553, 552, 1, 0, 0, 0, 553, 554, 1, 0, 0, + 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 187, 0, 0, 556, 37, 1, 0, 0, 0, 557, + 558, 5, 49, 0, 0, 558, 560, 3, 176, 88, 0, 559, 557, 1, 0, 0, 0, 559, 560, + 1, 0, 0, 0, 560, 598, 1, 0, 0, 0, 561, 562, 5, 113, 0, 0, 562, 565, 5, + 95, 0, 0, 563, 565, 5, 141, 0, 0, 564, 561, 1, 0, 0, 0, 564, 563, 1, 0, + 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 5, 3, 0, 0, 567, 572, 3, 24, 12, + 0, 568, 569, 5, 5, 0, 0, 569, 571, 3, 24, 12, 0, 570, 568, 1, 0, 0, 0, + 571, 574, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, + 575, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 577, 5, 4, 0, 0, 576, 578, + 3, 42, 21, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 599, 1, + 0, 0, 0, 579, 580, 5, 44, 0, 0, 580, 581, 5, 3, 0, 0, 581, 582, 3, 68, + 34, 0, 582, 583, 5, 4, 0, 0, 583, 599, 1, 0, 0, 0, 584, 585, 5, 74, 0, + 0, 585, 586, 5, 95, 0, 0, 586, 587, 5, 3, 0, 0, 587, 592, 3, 190, 95, 0, + 588, 589, 5, 5, 0, 0, 589, 591, 3, 190, 95, 0, 590, 588, 1, 0, 0, 0, 591, + 594, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 595, + 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 5, 4, 0, 0, 596, 597, 3, 40, + 20, 0, 597, 599, 1, 0, 0, 0, 598, 564, 1, 0, 0, 0, 598, 579, 1, 0, 0, 0, + 598, 584, 1, 0, 0, 0, 599, 39, 1, 0, 0, 0, 600, 601, 5, 117, 0, 0, 601, + 613, 3, 194, 97, 0, 602, 603, 5, 3, 0, 0, 603, 608, 3, 190, 95, 0, 604, + 605, 5, 5, 0, 0, 605, 607, 3, 190, 95, 0, 606, 604, 1, 0, 0, 0, 607, 610, + 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 611, 1, 0, + 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 5, 4, 0, 0, 612, 614, 1, 0, 0, 0, + 613, 602, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 629, 1, 0, 0, 0, 615, + 616, 5, 107, 0, 0, 616, 623, 7, 5, 0, 0, 617, 618, 5, 131, 0, 0, 618, 624, + 7, 6, 0, 0, 619, 624, 5, 41, 0, 0, 620, 624, 5, 123, 0, 0, 621, 622, 5, + 101, 0, 0, 622, 624, 5, 26, 0, 0, 623, 617, 1, 0, 0, 0, 623, 619, 1, 0, + 0, 0, 623, 620, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, + 625, 626, 5, 99, 0, 0, 626, 628, 3, 176, 88, 0, 627, 615, 1, 0, 0, 0, 627, + 625, 1, 0, 0, 0, 628, 631, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 629, 630, + 1, 0, 0, 0, 630, 640, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 632, 634, 5, 102, + 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, + 635, 638, 5, 57, 0, 0, 636, 637, 5, 86, 0, 0, 637, 639, 7, 7, 0, 0, 638, + 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 633, + 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 41, 1, 0, 0, 0, 642, 643, 5, 107, + 0, 0, 643, 644, 5, 48, 0, 0, 644, 645, 7, 8, 0, 0, 645, 43, 1, 0, 0, 0, + 646, 648, 5, 50, 0, 0, 647, 649, 7, 2, 0, 0, 648, 647, 1, 0, 0, 0, 648, + 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 654, 5, 139, 0, 0, 651, 652, + 5, 80, 0, 0, 652, 653, 5, 102, 0, 0, 653, 655, 5, 70, 0, 0, 654, 651, 1, + 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 659, 1, 0, 0, 0, 656, 657, 3, 182, + 91, 0, 657, 658, 5, 2, 0, 0, 658, 660, 1, 0, 0, 0, 659, 656, 1, 0, 0, 0, + 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 666, 3, 198, 99, 0, 662, + 667, 5, 37, 0, 0, 663, 667, 5, 28, 0, 0, 664, 665, 5, 89, 0, 0, 665, 667, + 5, 105, 0, 0, 666, 662, 1, 0, 0, 0, 666, 663, 1, 0, 0, 0, 666, 664, 1, + 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 682, 1, 0, 0, 0, 668, 683, 5, 59, 0, + 0, 669, 683, 5, 88, 0, 0, 670, 680, 5, 142, 0, 0, 671, 672, 5, 105, 0, + 0, 672, 677, 3, 190, 95, 0, 673, 674, 5, 5, 0, 0, 674, 676, 3, 190, 95, + 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, + 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 671, + 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 668, 1, 0, + 0, 0, 682, 669, 1, 0, 0, 0, 682, 670, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, + 684, 685, 5, 107, 0, 0, 685, 689, 3, 184, 92, 0, 686, 687, 5, 73, 0, 0, + 687, 688, 5, 64, 0, 0, 688, 690, 5, 127, 0, 0, 689, 686, 1, 0, 0, 0, 689, + 690, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 692, 5, 148, 0, 0, 692, 694, + 3, 68, 34, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, + 0, 0, 0, 695, 704, 5, 38, 0, 0, 696, 701, 3, 106, 53, 0, 697, 701, 3, 74, + 37, 0, 698, 701, 3, 60, 30, 0, 699, 701, 3, 84, 42, 0, 700, 696, 1, 0, + 0, 0, 700, 697, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, + 701, 702, 1, 0, 0, 0, 702, 703, 5, 1, 0, 0, 703, 705, 1, 0, 0, 0, 704, + 700, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, + 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 66, 0, 0, 709, 45, 1, 0, + 0, 0, 710, 712, 5, 50, 0, 0, 711, 713, 7, 2, 0, 0, 712, 711, 1, 0, 0, 0, + 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 718, 5, 146, 0, 0, 715, + 716, 5, 80, 0, 0, 716, 717, 5, 102, 0, 0, 717, 719, 5, 70, 0, 0, 718, 715, + 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 723, 1, 0, 0, 0, 720, 721, 3, 182, + 91, 0, 721, 722, 5, 2, 0, 0, 722, 724, 1, 0, 0, 0, 723, 720, 1, 0, 0, 0, + 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 737, 3, 200, 100, 0, 726, + 727, 5, 3, 0, 0, 727, 732, 3, 190, 95, 0, 728, 729, 5, 5, 0, 0, 729, 731, + 3, 190, 95, 0, 730, 728, 1, 0, 0, 0, 731, 734, 1, 0, 0, 0, 732, 730, 1, + 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 735, 1, 0, 0, 0, 734, 732, 1, 0, 0, + 0, 735, 736, 5, 4, 0, 0, 736, 738, 1, 0, 0, 0, 737, 726, 1, 0, 0, 0, 737, + 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 5, 33, 0, 0, 740, 741, + 3, 84, 42, 0, 741, 47, 1, 0, 0, 0, 742, 743, 5, 50, 0, 0, 743, 744, 5, + 147, 0, 0, 744, 748, 5, 133, 0, 0, 745, 746, 5, 80, 0, 0, 746, 747, 5, + 102, 0, 0, 747, 749, 5, 70, 0, 0, 748, 745, 1, 0, 0, 0, 748, 749, 1, 0, + 0, 0, 749, 753, 1, 0, 0, 0, 750, 751, 3, 182, 91, 0, 751, 752, 5, 2, 0, + 0, 752, 754, 1, 0, 0, 0, 753, 750, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, + 755, 1, 0, 0, 0, 755, 756, 3, 184, 92, 0, 756, 757, 5, 143, 0, 0, 757, + 769, 3, 202, 101, 0, 758, 759, 5, 3, 0, 0, 759, 764, 3, 170, 85, 0, 760, + 761, 5, 5, 0, 0, 761, 763, 3, 170, 85, 0, 762, 760, 1, 0, 0, 0, 763, 766, + 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 767, 1, 0, + 0, 0, 766, 764, 1, 0, 0, 0, 767, 768, 5, 4, 0, 0, 768, 770, 1, 0, 0, 0, + 769, 758, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 49, 1, 0, 0, 0, 771, 773, + 5, 150, 0, 0, 772, 774, 5, 116, 0, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, + 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 3, 52, 26, 0, 776, 777, 5, 33, + 0, 0, 777, 778, 5, 3, 0, 0, 778, 779, 3, 84, 42, 0, 779, 789, 5, 4, 0, + 0, 780, 781, 5, 5, 0, 0, 781, 782, 3, 52, 26, 0, 782, 783, 5, 33, 0, 0, + 783, 784, 5, 3, 0, 0, 784, 785, 3, 84, 42, 0, 785, 786, 5, 4, 0, 0, 786, + 788, 1, 0, 0, 0, 787, 780, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, + 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 51, 1, 0, 0, 0, 791, 789, 1, 0, + 0, 0, 792, 804, 3, 184, 92, 0, 793, 794, 5, 3, 0, 0, 794, 799, 3, 190, + 95, 0, 795, 796, 5, 5, 0, 0, 796, 798, 3, 190, 95, 0, 797, 795, 1, 0, 0, + 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, + 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 4, 0, 0, 803, 805, + 1, 0, 0, 0, 804, 793, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 53, 1, 0, + 0, 0, 806, 807, 3, 52, 26, 0, 807, 808, 5, 33, 0, 0, 808, 809, 5, 3, 0, + 0, 809, 810, 3, 162, 81, 0, 810, 812, 5, 140, 0, 0, 811, 813, 5, 29, 0, + 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, + 815, 3, 164, 82, 0, 815, 816, 5, 4, 0, 0, 816, 55, 1, 0, 0, 0, 817, 829, + 3, 184, 92, 0, 818, 819, 5, 3, 0, 0, 819, 824, 3, 190, 95, 0, 820, 821, + 5, 5, 0, 0, 821, 823, 3, 190, 95, 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, 4, 0, 0, 828, 830, 1, 0, 0, 0, 829, + 818, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, + 5, 33, 0, 0, 832, 833, 5, 3, 0, 0, 833, 834, 3, 84, 42, 0, 834, 835, 5, + 4, 0, 0, 835, 57, 1, 0, 0, 0, 836, 845, 5, 124, 0, 0, 837, 846, 5, 7, 0, + 0, 838, 843, 3, 68, 34, 0, 839, 841, 5, 33, 0, 0, 840, 839, 1, 0, 0, 0, + 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 844, 3, 172, 86, 0, 843, + 840, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 837, + 1, 0, 0, 0, 845, 838, 1, 0, 0, 0, 846, 860, 1, 0, 0, 0, 847, 856, 5, 5, + 0, 0, 848, 857, 5, 7, 0, 0, 849, 854, 3, 68, 34, 0, 850, 852, 5, 33, 0, + 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, + 855, 3, 172, 86, 0, 854, 851, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 857, + 1, 0, 0, 0, 856, 848, 1, 0, 0, 0, 856, 849, 1, 0, 0, 0, 857, 859, 1, 0, + 0, 0, 858, 847, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, + 860, 861, 1, 0, 0, 0, 861, 59, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 865, + 3, 50, 25, 0, 864, 863, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 1, + 0, 0, 0, 866, 867, 5, 59, 0, 0, 867, 868, 5, 75, 0, 0, 868, 871, 3, 112, + 56, 0, 869, 870, 5, 149, 0, 0, 870, 872, 3, 68, 34, 0, 871, 869, 1, 0, + 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 1, 0, 0, 0, 873, 875, 3, 58, 29, + 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 61, 1, 0, 0, 0, 876, + 878, 3, 50, 25, 0, 877, 876, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, + 1, 0, 0, 0, 879, 880, 5, 59, 0, 0, 880, 881, 5, 75, 0, 0, 881, 884, 3, + 112, 56, 0, 882, 883, 5, 149, 0, 0, 883, 885, 3, 68, 34, 0, 884, 882, 1, + 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 890, 1, 0, 0, 0, 886, 888, 3, 134, + 67, 0, 887, 886, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, + 889, 891, 3, 136, 68, 0, 890, 887, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, + 893, 1, 0, 0, 0, 892, 894, 3, 58, 29, 0, 893, 892, 1, 0, 0, 0, 893, 894, + 1, 0, 0, 0, 894, 63, 1, 0, 0, 0, 895, 897, 5, 61, 0, 0, 896, 898, 5, 55, + 0, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, + 899, 900, 3, 182, 91, 0, 900, 65, 1, 0, 0, 0, 901, 902, 5, 63, 0, 0, 902, + 905, 7, 9, 0, 0, 903, 904, 5, 80, 0, 0, 904, 906, 5, 70, 0, 0, 905, 903, + 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 910, 1, 0, 0, 0, 907, 908, 3, 182, + 91, 0, 908, 909, 5, 2, 0, 0, 909, 911, 1, 0, 0, 0, 910, 907, 1, 0, 0, 0, + 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 3, 226, 113, 0, 913, + 67, 1, 0, 0, 0, 914, 915, 6, 34, -1, 0, 915, 1004, 3, 72, 36, 0, 916, 1004, + 5, 188, 0, 0, 917, 1004, 5, 189, 0, 0, 918, 919, 3, 182, 91, 0, 919, 920, + 5, 2, 0, 0, 920, 922, 1, 0, 0, 0, 921, 918, 1, 0, 0, 0, 921, 922, 1, 0, + 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 184, 92, 0, 924, 925, 5, 2, 0, + 0, 925, 927, 1, 0, 0, 0, 926, 921, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, + 928, 1, 0, 0, 0, 928, 1004, 3, 190, 95, 0, 929, 930, 3, 166, 83, 0, 930, + 931, 3, 68, 34, 20, 931, 1004, 1, 0, 0, 0, 932, 933, 3, 180, 90, 0, 933, + 946, 5, 3, 0, 0, 934, 936, 5, 62, 0, 0, 935, 934, 1, 0, 0, 0, 935, 936, + 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 942, 3, 68, 34, 0, 938, 939, 5, + 5, 0, 0, 939, 941, 3, 68, 34, 0, 940, 938, 1, 0, 0, 0, 941, 944, 1, 0, + 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 947, 1, 0, 0, 0, + 944, 942, 1, 0, 0, 0, 945, 947, 5, 7, 0, 0, 946, 935, 1, 0, 0, 0, 946, + 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, + 5, 4, 0, 0, 949, 951, 3, 116, 58, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, + 0, 0, 0, 951, 953, 1, 0, 0, 0, 952, 954, 3, 120, 60, 0, 953, 952, 1, 0, + 0, 0, 953, 954, 1, 0, 0, 0, 954, 1004, 1, 0, 0, 0, 955, 956, 5, 3, 0, 0, + 956, 961, 3, 68, 34, 0, 957, 958, 5, 5, 0, 0, 958, 960, 3, 68, 34, 0, 959, + 957, 1, 0, 0, 0, 960, 963, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, + 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 964, 965, 5, 4, + 0, 0, 965, 1004, 1, 0, 0, 0, 966, 967, 5, 43, 0, 0, 967, 968, 5, 3, 0, + 0, 968, 969, 3, 68, 34, 0, 969, 970, 5, 33, 0, 0, 970, 971, 3, 32, 16, + 0, 971, 972, 5, 4, 0, 0, 972, 1004, 1, 0, 0, 0, 973, 975, 5, 102, 0, 0, + 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, + 978, 5, 70, 0, 0, 977, 974, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, + 1, 0, 0, 0, 979, 980, 5, 3, 0, 0, 980, 981, 3, 84, 42, 0, 981, 982, 5, + 4, 0, 0, 982, 1004, 1, 0, 0, 0, 983, 985, 5, 42, 0, 0, 984, 986, 3, 68, + 34, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 992, 1, 0, 0, 0, + 987, 988, 5, 148, 0, 0, 988, 989, 3, 68, 34, 0, 989, 990, 5, 136, 0, 0, + 990, 991, 3, 68, 34, 0, 991, 993, 1, 0, 0, 0, 992, 987, 1, 0, 0, 0, 993, + 994, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 998, + 1, 0, 0, 0, 996, 997, 5, 65, 0, 0, 997, 999, 3, 68, 34, 0, 998, 996, 1, + 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 5, 66, + 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1004, 3, 70, 35, 0, 1003, 914, 1, 0, + 0, 0, 1003, 916, 1, 0, 0, 0, 1003, 917, 1, 0, 0, 0, 1003, 926, 1, 0, 0, + 0, 1003, 929, 1, 0, 0, 0, 1003, 932, 1, 0, 0, 0, 1003, 955, 1, 0, 0, 0, + 1003, 966, 1, 0, 0, 0, 1003, 977, 1, 0, 0, 0, 1003, 983, 1, 0, 0, 0, 1003, + 1002, 1, 0, 0, 0, 1004, 1118, 1, 0, 0, 0, 1005, 1006, 10, 19, 0, 0, 1006, + 1007, 5, 11, 0, 0, 1007, 1117, 3, 68, 34, 20, 1008, 1009, 10, 18, 0, 0, + 1009, 1010, 7, 10, 0, 0, 1010, 1117, 3, 68, 34, 19, 1011, 1012, 10, 17, + 0, 0, 1012, 1013, 7, 4, 0, 0, 1013, 1117, 3, 68, 34, 18, 1014, 1015, 10, + 16, 0, 0, 1015, 1016, 7, 11, 0, 0, 1016, 1117, 3, 68, 34, 17, 1017, 1018, + 10, 15, 0, 0, 1018, 1019, 7, 12, 0, 0, 1019, 1117, 3, 68, 34, 16, 1020, + 1033, 10, 14, 0, 0, 1021, 1034, 5, 6, 0, 0, 1022, 1034, 5, 22, 0, 0, 1023, + 1034, 5, 23, 0, 0, 1024, 1034, 5, 24, 0, 0, 1025, 1034, 5, 92, 0, 0, 1026, + 1027, 5, 92, 0, 0, 1027, 1034, 5, 102, 0, 0, 1028, 1034, 5, 83, 0, 0, 1029, + 1034, 5, 97, 0, 0, 1030, 1034, 5, 77, 0, 0, 1031, 1034, 5, 99, 0, 0, 1032, + 1034, 5, 118, 0, 0, 1033, 1021, 1, 0, 0, 0, 1033, 1022, 1, 0, 0, 0, 1033, + 1023, 1, 0, 0, 0, 1033, 1024, 1, 0, 0, 0, 1033, 1025, 1, 0, 0, 0, 1033, + 1026, 1, 0, 0, 0, 1033, 1028, 1, 0, 0, 0, 1033, 1029, 1, 0, 0, 0, 1033, + 1030, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1032, 1, 0, 0, 0, 1034, + 1035, 1, 0, 0, 0, 1035, 1117, 3, 68, 34, 15, 1036, 1037, 10, 13, 0, 0, + 1037, 1038, 5, 32, 0, 0, 1038, 1117, 3, 68, 34, 14, 1039, 1040, 10, 12, + 0, 0, 1040, 1041, 5, 108, 0, 0, 1041, 1117, 3, 68, 34, 13, 1042, 1044, + 10, 5, 0, 0, 1043, 1045, 5, 102, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, + 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 5, 39, 0, 0, 1047, 1048, + 3, 68, 34, 0, 1048, 1049, 5, 32, 0, 0, 1049, 1050, 3, 68, 34, 6, 1050, + 1117, 1, 0, 0, 0, 1051, 1052, 10, 8, 0, 0, 1052, 1053, 5, 45, 0, 0, 1053, + 1117, 3, 192, 96, 0, 1054, 1056, 10, 7, 0, 0, 1055, 1057, 5, 102, 0, 0, + 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, + 1058, 1059, 7, 13, 0, 0, 1059, 1062, 3, 68, 34, 0, 1060, 1061, 5, 67, 0, + 0, 1061, 1063, 3, 68, 34, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, + 0, 0, 1063, 1117, 1, 0, 0, 0, 1064, 1069, 10, 6, 0, 0, 1065, 1070, 5, 93, + 0, 0, 1066, 1070, 5, 103, 0, 0, 1067, 1068, 5, 102, 0, 0, 1068, 1070, 5, + 104, 0, 0, 1069, 1065, 1, 0, 0, 0, 1069, 1066, 1, 0, 0, 0, 1069, 1067, + 1, 0, 0, 0, 1070, 1117, 1, 0, 0, 0, 1071, 1073, 10, 4, 0, 0, 1072, 1074, + 5, 102, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, + 1, 0, 0, 0, 1075, 1114, 5, 83, 0, 0, 1076, 1086, 5, 3, 0, 0, 1077, 1087, + 3, 84, 42, 0, 1078, 1083, 3, 68, 34, 0, 1079, 1080, 5, 5, 0, 0, 1080, 1082, + 3, 68, 34, 0, 1081, 1079, 1, 0, 0, 0, 1082, 1085, 1, 0, 0, 0, 1083, 1081, + 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1087, 1, 0, 0, 0, 1085, 1083, + 1, 0, 0, 0, 1086, 1077, 1, 0, 0, 0, 1086, 1078, 1, 0, 0, 0, 1086, 1087, + 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1115, 5, 4, 0, 0, 1089, 1090, + 3, 182, 91, 0, 1090, 1091, 5, 2, 0, 0, 1091, 1093, 1, 0, 0, 0, 1092, 1089, + 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1115, + 3, 184, 92, 0, 1095, 1096, 3, 182, 91, 0, 1096, 1097, 5, 2, 0, 0, 1097, + 1099, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, + 1100, 1, 0, 0, 0, 1100, 1101, 3, 224, 112, 0, 1101, 1110, 5, 3, 0, 0, 1102, + 1107, 3, 68, 34, 0, 1103, 1104, 5, 5, 0, 0, 1104, 1106, 3, 68, 34, 0, 1105, + 1103, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, + 1108, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, + 1102, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, + 1113, 5, 4, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1076, 1, 0, 0, 0, 1114, + 1092, 1, 0, 0, 0, 1114, 1098, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, + 1005, 1, 0, 0, 0, 1116, 1008, 1, 0, 0, 0, 1116, 1011, 1, 0, 0, 0, 1116, + 1014, 1, 0, 0, 0, 1116, 1017, 1, 0, 0, 0, 1116, 1020, 1, 0, 0, 0, 1116, + 1036, 1, 0, 0, 0, 1116, 1039, 1, 0, 0, 0, 1116, 1042, 1, 0, 0, 0, 1116, + 1051, 1, 0, 0, 0, 1116, 1054, 1, 0, 0, 0, 1116, 1064, 1, 0, 0, 0, 1116, + 1071, 1, 0, 0, 0, 1117, 1120, 1, 0, 0, 0, 1118, 1116, 1, 0, 0, 0, 1118, + 1119, 1, 0, 0, 0, 1119, 69, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1121, 1122, + 5, 115, 0, 0, 1122, 1127, 5, 3, 0, 0, 1123, 1128, 5, 81, 0, 0, 1124, 1125, + 7, 14, 0, 0, 1125, 1126, 5, 5, 0, 0, 1126, 1128, 3, 168, 84, 0, 1127, 1123, + 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, + 5, 4, 0, 0, 1130, 71, 1, 0, 0, 0, 1131, 1132, 7, 15, 0, 0, 1132, 73, 1, + 0, 0, 0, 1133, 1135, 3, 50, 25, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, + 1, 0, 0, 0, 1135, 1141, 1, 0, 0, 0, 1136, 1142, 5, 88, 0, 0, 1137, 1142, + 5, 122, 0, 0, 1138, 1139, 5, 88, 0, 0, 1139, 1140, 5, 108, 0, 0, 1140, + 1142, 7, 8, 0, 0, 1141, 1136, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, + 1138, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1147, 5, 91, 0, 0, 1144, + 1145, 3, 182, 91, 0, 1145, 1146, 5, 2, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, + 1144, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, + 1152, 3, 184, 92, 0, 1150, 1151, 5, 33, 0, 0, 1151, 1153, 3, 208, 104, + 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1165, 1, 0, 0, + 0, 1154, 1155, 5, 3, 0, 0, 1155, 1160, 3, 190, 95, 0, 1156, 1157, 5, 5, + 0, 0, 1157, 1159, 3, 190, 95, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1162, 1, + 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1163, 1, + 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1164, 5, 4, 0, 0, 1164, 1166, 1, + 0, 0, 0, 1165, 1154, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1196, 1, + 0, 0, 0, 1167, 1168, 5, 145, 0, 0, 1168, 1169, 5, 3, 0, 0, 1169, 1174, + 3, 68, 34, 0, 1170, 1171, 5, 5, 0, 0, 1171, 1173, 3, 68, 34, 0, 1172, 1170, + 1, 0, 0, 0, 1173, 1176, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1174, 1175, + 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1177, 1192, + 5, 4, 0, 0, 1178, 1179, 5, 5, 0, 0, 1179, 1180, 5, 3, 0, 0, 1180, 1185, + 3, 68, 34, 0, 1181, 1182, 5, 5, 0, 0, 1182, 1184, 3, 68, 34, 0, 1183, 1181, + 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, + 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1189, + 5, 4, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1178, 1, 0, 0, 0, 1191, 1194, + 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1197, + 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1197, 3, 84, 42, 0, 1196, 1167, + 1, 0, 0, 0, 1196, 1195, 1, 0, 0, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1200, + 3, 76, 38, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, + 1, 0, 0, 0, 1201, 1203, 3, 58, 29, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, + 1, 0, 0, 0, 1203, 1207, 1, 0, 0, 0, 1204, 1205, 5, 56, 0, 0, 1205, 1207, + 5, 145, 0, 0, 1206, 1134, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 75, + 1, 0, 0, 0, 1208, 1209, 5, 107, 0, 0, 1209, 1224, 5, 48, 0, 0, 1210, 1211, + 5, 3, 0, 0, 1211, 1216, 3, 24, 12, 0, 1212, 1213, 5, 5, 0, 0, 1213, 1215, + 3, 24, 12, 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, 1219, 1, 0, 0, 0, 1218, 1216, + 1, 0, 0, 0, 1219, 1222, 5, 4, 0, 0, 1220, 1221, 5, 149, 0, 0, 1221, 1223, + 3, 68, 34, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, + 1, 0, 0, 0, 1224, 1210, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, + 1, 0, 0, 0, 1226, 1253, 5, 184, 0, 0, 1227, 1254, 5, 185, 0, 0, 1228, 1229, + 5, 142, 0, 0, 1229, 1232, 5, 131, 0, 0, 1230, 1233, 3, 190, 95, 0, 1231, + 1233, 3, 108, 54, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1231, 1, 0, 0, 0, 1233, + 1234, 1, 0, 0, 0, 1234, 1235, 5, 6, 0, 0, 1235, 1246, 3, 68, 34, 0, 1236, + 1239, 5, 5, 0, 0, 1237, 1240, 3, 190, 95, 0, 1238, 1240, 3, 108, 54, 0, + 1239, 1237, 1, 0, 0, 0, 1239, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, + 1241, 1242, 5, 6, 0, 0, 1242, 1243, 3, 68, 34, 0, 1243, 1245, 1, 0, 0, + 0, 1244, 1236, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, + 0, 1246, 1247, 1, 0, 0, 0, 1247, 1251, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, + 0, 1249, 1250, 5, 149, 0, 0, 1250, 1252, 3, 68, 34, 0, 1251, 1249, 1, 0, + 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1227, 1, 0, + 0, 0, 1253, 1228, 1, 0, 0, 0, 1254, 77, 1, 0, 0, 0, 1255, 1259, 5, 112, + 0, 0, 1256, 1257, 3, 182, 91, 0, 1257, 1258, 5, 2, 0, 0, 1258, 1260, 1, + 0, 0, 0, 1259, 1256, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, + 0, 0, 0, 1261, 1268, 3, 204, 102, 0, 1262, 1263, 5, 6, 0, 0, 1263, 1269, + 3, 80, 40, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1266, 3, 80, 40, 0, 1266, 1267, + 5, 4, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1262, 1, 0, 0, 0, 1268, 1264, + 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 79, 1, 0, 0, 0, 1270, 1274, 3, + 36, 18, 0, 1271, 1274, 3, 176, 88, 0, 1272, 1274, 5, 190, 0, 0, 1273, 1270, + 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 81, 1, + 0, 0, 0, 1275, 1286, 5, 119, 0, 0, 1276, 1287, 3, 192, 96, 0, 1277, 1278, + 3, 182, 91, 0, 1278, 1279, 5, 2, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1277, + 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1285, + 3, 184, 92, 0, 1283, 1285, 3, 196, 98, 0, 1284, 1282, 1, 0, 0, 0, 1284, + 1283, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1276, 1, 0, 0, 0, 1286, + 1280, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 83, 1, 0, 0, 0, 1288, 1290, + 3, 132, 66, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, + 1, 0, 0, 0, 1291, 1297, 3, 88, 44, 0, 1292, 1293, 3, 104, 52, 0, 1293, + 1294, 3, 88, 44, 0, 1294, 1296, 1, 0, 0, 0, 1295, 1292, 1, 0, 0, 0, 1296, + 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, + 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1302, 3, 134, 67, 0, 1301, + 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 1, 0, 0, 0, 1303, + 1305, 3, 136, 68, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, + 85, 1, 0, 0, 0, 1306, 1314, 3, 96, 48, 0, 1307, 1308, 3, 100, 50, 0, 1308, + 1310, 3, 96, 48, 0, 1309, 1311, 3, 102, 51, 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, + 1313, 1316, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, + 1315, 87, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1319, 5, 130, 0, 0, + 1318, 1320, 7, 16, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, + 1320, 1321, 1, 0, 0, 0, 1321, 1326, 3, 98, 49, 0, 1322, 1323, 5, 5, 0, + 0, 1323, 1325, 3, 98, 49, 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, 1341, 1, 0, + 0, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1339, 5, 75, 0, 0, 1330, 1335, 3, 96, + 48, 0, 1331, 1332, 5, 5, 0, 0, 1332, 1334, 3, 96, 48, 0, 1333, 1331, 1, + 0, 0, 0, 1334, 1337, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, + 0, 0, 0, 1336, 1340, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1340, 3, + 86, 43, 0, 1339, 1330, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 1342, + 1, 0, 0, 0, 1341, 1329, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1345, + 1, 0, 0, 0, 1343, 1344, 5, 149, 0, 0, 1344, 1346, 3, 68, 34, 0, 1345, 1343, + 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1361, 1, 0, 0, 0, 1347, 1348, + 5, 78, 0, 0, 1348, 1349, 5, 40, 0, 0, 1349, 1354, 3, 68, 34, 0, 1350, 1351, + 5, 5, 0, 0, 1351, 1353, 3, 68, 34, 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, 1359, + 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1358, 5, 79, 0, 0, 1358, 1360, + 3, 68, 34, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, + 1, 0, 0, 0, 1361, 1347, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1377, + 1, 0, 0, 0, 1363, 1364, 5, 175, 0, 0, 1364, 1365, 3, 212, 106, 0, 1365, + 1366, 5, 33, 0, 0, 1366, 1374, 3, 118, 59, 0, 1367, 1368, 5, 5, 0, 0, 1368, + 1369, 3, 212, 106, 0, 1369, 1370, 5, 33, 0, 0, 1370, 1371, 3, 118, 59, + 0, 1371, 1373, 1, 0, 0, 0, 1372, 1367, 1, 0, 0, 0, 1373, 1376, 1, 0, 0, + 0, 1374, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1378, 1, 0, 0, + 0, 1376, 1374, 1, 0, 0, 0, 1377, 1363, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, + 0, 1378, 1408, 1, 0, 0, 0, 1379, 1380, 5, 145, 0, 0, 1380, 1381, 5, 3, + 0, 0, 1381, 1386, 3, 68, 34, 0, 1382, 1383, 5, 5, 0, 0, 1383, 1385, 3, + 68, 34, 0, 1384, 1382, 1, 0, 0, 0, 1385, 1388, 1, 0, 0, 0, 1386, 1384, + 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1386, + 1, 0, 0, 0, 1389, 1404, 5, 4, 0, 0, 1390, 1391, 5, 5, 0, 0, 1391, 1392, + 5, 3, 0, 0, 1392, 1397, 3, 68, 34, 0, 1393, 1394, 5, 5, 0, 0, 1394, 1396, + 3, 68, 34, 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, 4, 0, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1390, + 1, 0, 0, 0, 1403, 1406, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1405, + 1, 0, 0, 0, 1405, 1408, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1407, 1317, + 1, 0, 0, 0, 1407, 1379, 1, 0, 0, 0, 1408, 89, 1, 0, 0, 0, 1409, 1410, 3, + 84, 42, 0, 1410, 91, 1, 0, 0, 0, 1411, 1413, 3, 132, 66, 0, 1412, 1411, + 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, + 3, 88, 44, 0, 1415, 1417, 3, 134, 67, 0, 1416, 1415, 1, 0, 0, 0, 1416, + 1417, 1, 0, 0, 0, 1417, 1419, 1, 0, 0, 0, 1418, 1420, 3, 136, 68, 0, 1419, + 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 93, 1, 0, 0, 0, 1421, 1423, + 3, 132, 66, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, + 1, 0, 0, 0, 1424, 1434, 3, 88, 44, 0, 1425, 1427, 5, 140, 0, 0, 1426, 1428, + 5, 29, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1432, + 1, 0, 0, 0, 1429, 1432, 5, 90, 0, 0, 1430, 1432, 5, 68, 0, 0, 1431, 1425, + 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1431, 1430, 1, 0, 0, 0, 1432, 1433, + 1, 0, 0, 0, 1433, 1435, 3, 88, 44, 0, 1434, 1431, 1, 0, 0, 0, 1435, 1436, + 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1439, + 1, 0, 0, 0, 1438, 1440, 3, 134, 67, 0, 1439, 1438, 1, 0, 0, 0, 1439, 1440, + 1, 0, 0, 0, 1440, 1442, 1, 0, 0, 0, 1441, 1443, 3, 136, 68, 0, 1442, 1441, + 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 95, 1, 0, 0, 0, 1444, 1445, 3, + 182, 91, 0, 1445, 1446, 5, 2, 0, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1444, + 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1454, + 3, 184, 92, 0, 1450, 1452, 5, 33, 0, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, + 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1455, 3, 208, 104, 0, 1454, 1451, + 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1461, 1, 0, 0, 0, 1456, 1457, + 5, 85, 0, 0, 1457, 1458, 5, 40, 0, 0, 1458, 1462, 3, 196, 98, 0, 1459, + 1460, 5, 102, 0, 0, 1460, 1462, 5, 85, 0, 0, 1461, 1456, 1, 0, 0, 0, 1461, + 1459, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1509, 1, 0, 0, 0, 1463, + 1464, 3, 182, 91, 0, 1464, 1465, 5, 2, 0, 0, 1465, 1467, 1, 0, 0, 0, 1466, + 1463, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, + 1469, 3, 224, 112, 0, 1469, 1470, 5, 3, 0, 0, 1470, 1475, 3, 68, 34, 0, + 1471, 1472, 5, 5, 0, 0, 1472, 1474, 3, 68, 34, 0, 1473, 1471, 1, 0, 0, + 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, + 0, 1476, 1478, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1483, 5, 4, 0, + 0, 1479, 1481, 5, 33, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, + 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 3, 208, 104, 0, 1483, 1480, 1, 0, + 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1509, 1, 0, 0, 0, 1485, 1495, 5, 3, + 0, 0, 1486, 1491, 3, 96, 48, 0, 1487, 1488, 5, 5, 0, 0, 1488, 1490, 3, + 96, 48, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, + 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1496, 1, 0, 0, 0, 1493, 1491, + 1, 0, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1486, 1, 0, 0, 0, 1495, 1494, + 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 5, 4, 0, 0, 1498, 1509, + 1, 0, 0, 0, 1499, 1500, 5, 3, 0, 0, 1500, 1501, 3, 84, 42, 0, 1501, 1506, + 5, 4, 0, 0, 1502, 1504, 5, 33, 0, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, + 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1507, 3, 208, 104, 0, 1506, 1503, + 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1447, + 1, 0, 0, 0, 1508, 1466, 1, 0, 0, 0, 1508, 1485, 1, 0, 0, 0, 1508, 1499, + 1, 0, 0, 0, 1509, 97, 1, 0, 0, 0, 1510, 1523, 5, 7, 0, 0, 1511, 1512, 3, + 184, 92, 0, 1512, 1513, 5, 2, 0, 0, 1513, 1514, 5, 7, 0, 0, 1514, 1523, + 1, 0, 0, 0, 1515, 1520, 3, 68, 34, 0, 1516, 1518, 5, 33, 0, 0, 1517, 1516, + 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, + 3, 172, 86, 0, 1520, 1517, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1523, + 1, 0, 0, 0, 1522, 1510, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1522, 1515, + 1, 0, 0, 0, 1523, 99, 1, 0, 0, 0, 1524, 1538, 5, 5, 0, 0, 1525, 1527, 5, + 100, 0, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1534, + 1, 0, 0, 0, 1528, 1530, 5, 96, 0, 0, 1529, 1531, 5, 110, 0, 0, 1530, 1529, + 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1535, 1, 0, 0, 0, 1532, 1535, + 5, 87, 0, 0, 1533, 1535, 5, 51, 0, 0, 1534, 1528, 1, 0, 0, 0, 1534, 1532, + 1, 0, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, + 1, 0, 0, 0, 1536, 1538, 5, 94, 0, 0, 1537, 1524, 1, 0, 0, 0, 1537, 1526, + 1, 0, 0, 0, 1538, 101, 1, 0, 0, 0, 1539, 1540, 5, 107, 0, 0, 1540, 1554, + 3, 68, 34, 0, 1541, 1542, 5, 143, 0, 0, 1542, 1543, 5, 3, 0, 0, 1543, 1548, + 3, 190, 95, 0, 1544, 1545, 5, 5, 0, 0, 1545, 1547, 3, 190, 95, 0, 1546, + 1544, 1, 0, 0, 0, 1547, 1550, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1548, + 1549, 1, 0, 0, 0, 1549, 1551, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1551, + 1552, 5, 4, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1539, 1, 0, 0, 0, 1553, + 1541, 1, 0, 0, 0, 1554, 103, 1, 0, 0, 0, 1555, 1557, 5, 140, 0, 0, 1556, + 1558, 5, 29, 0, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, + 1562, 1, 0, 0, 0, 1559, 1562, 5, 90, 0, 0, 1560, 1562, 5, 68, 0, 0, 1561, + 1555, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1561, 1560, 1, 0, 0, 0, 1562, + 105, 1, 0, 0, 0, 1563, 1565, 3, 50, 25, 0, 1564, 1563, 1, 0, 0, 0, 1564, + 1565, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1569, 5, 142, 0, 0, 1567, + 1568, 5, 108, 0, 0, 1568, 1570, 7, 8, 0, 0, 1569, 1567, 1, 0, 0, 0, 1569, + 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 3, 112, 56, 0, 1572, + 1575, 5, 131, 0, 0, 1573, 1576, 3, 190, 95, 0, 1574, 1576, 3, 108, 54, + 0, 1575, 1573, 1, 0, 0, 0, 1575, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, + 0, 1577, 1578, 5, 6, 0, 0, 1578, 1589, 3, 68, 34, 0, 1579, 1582, 5, 5, + 0, 0, 1580, 1583, 3, 190, 95, 0, 1581, 1583, 3, 108, 54, 0, 1582, 1580, + 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, + 5, 6, 0, 0, 1585, 1586, 3, 68, 34, 0, 1586, 1588, 1, 0, 0, 0, 1587, 1579, + 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, + 1, 0, 0, 0, 1590, 1594, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, + 5, 149, 0, 0, 1593, 1595, 3, 68, 34, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, + 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1598, 3, 58, 29, 0, 1597, 1596, + 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 107, 1, 0, 0, 0, 1599, 1600, + 5, 3, 0, 0, 1600, 1605, 3, 190, 95, 0, 1601, 1602, 5, 5, 0, 0, 1602, 1604, + 3, 190, 95, 0, 1603, 1601, 1, 0, 0, 0, 1604, 1607, 1, 0, 0, 0, 1605, 1603, + 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1608, 1, 0, 0, 0, 1607, 1605, + 1, 0, 0, 0, 1608, 1609, 5, 4, 0, 0, 1609, 109, 1, 0, 0, 0, 1610, 1612, + 3, 50, 25, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, + 1, 0, 0, 0, 1613, 1616, 5, 142, 0, 0, 1614, 1615, 5, 108, 0, 0, 1615, 1617, + 7, 8, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, + 1, 0, 0, 0, 1618, 1619, 3, 112, 56, 0, 1619, 1622, 5, 131, 0, 0, 1620, + 1623, 3, 190, 95, 0, 1621, 1623, 3, 108, 54, 0, 1622, 1620, 1, 0, 0, 0, + 1622, 1621, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 5, 6, 0, 0, + 1625, 1636, 3, 68, 34, 0, 1626, 1629, 5, 5, 0, 0, 1627, 1630, 3, 190, 95, + 0, 1628, 1630, 3, 108, 54, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1628, 1, 0, + 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 5, 6, 0, 0, 1632, 1633, 3, 68, + 34, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1626, 1, 0, 0, 0, 1635, 1638, 1, 0, + 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1641, 1, 0, + 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1640, 5, 149, 0, 0, 1640, 1642, 3, + 68, 34, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1647, + 1, 0, 0, 0, 1643, 1645, 3, 134, 67, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, + 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 3, 136, 68, 0, 1647, 1644, + 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 111, 1, 0, 0, 0, 1649, 1650, + 3, 182, 91, 0, 1650, 1651, 5, 2, 0, 0, 1651, 1653, 1, 0, 0, 0, 1652, 1649, + 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1657, + 3, 184, 92, 0, 1655, 1656, 5, 33, 0, 0, 1656, 1658, 3, 214, 107, 0, 1657, + 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1664, 1, 0, 0, 0, 1659, + 1660, 5, 85, 0, 0, 1660, 1661, 5, 40, 0, 0, 1661, 1665, 3, 196, 98, 0, + 1662, 1663, 5, 102, 0, 0, 1663, 1665, 5, 85, 0, 0, 1664, 1659, 1, 0, 0, + 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 113, 1, 0, 0, + 0, 1666, 1668, 5, 144, 0, 0, 1667, 1669, 3, 182, 91, 0, 1668, 1667, 1, + 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1672, 1, 0, 0, 0, 1670, 1671, 5, + 91, 0, 0, 1671, 1673, 3, 216, 108, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, + 1, 0, 0, 0, 1673, 115, 1, 0, 0, 0, 1674, 1675, 5, 179, 0, 0, 1675, 1676, + 5, 3, 0, 0, 1676, 1677, 5, 149, 0, 0, 1677, 1678, 3, 68, 34, 0, 1678, 1679, + 5, 4, 0, 0, 1679, 117, 1, 0, 0, 0, 1680, 1682, 5, 3, 0, 0, 1681, 1683, + 3, 218, 109, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1694, + 1, 0, 0, 0, 1684, 1685, 5, 154, 0, 0, 1685, 1686, 5, 40, 0, 0, 1686, 1691, + 3, 68, 34, 0, 1687, 1688, 5, 5, 0, 0, 1688, 1690, 3, 68, 34, 0, 1689, 1687, + 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, + 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1684, + 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, + 5, 109, 0, 0, 1697, 1698, 5, 40, 0, 0, 1698, 1703, 3, 138, 69, 0, 1699, + 1700, 5, 5, 0, 0, 1700, 1702, 3, 138, 69, 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, 1708, 3, 122, 61, 0, 1707, + 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, + 1710, 5, 4, 0, 0, 1710, 119, 1, 0, 0, 0, 1711, 1745, 5, 153, 0, 0, 1712, + 1746, 3, 212, 106, 0, 1713, 1715, 5, 3, 0, 0, 1714, 1716, 3, 218, 109, + 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1727, 1, 0, 0, + 0, 1717, 1718, 5, 154, 0, 0, 1718, 1719, 5, 40, 0, 0, 1719, 1724, 3, 68, + 34, 0, 1720, 1721, 5, 5, 0, 0, 1721, 1723, 3, 68, 34, 0, 1722, 1720, 1, + 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, + 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1717, 1, + 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1739, 1, 0, 0, 0, 1729, 1730, 5, + 109, 0, 0, 1730, 1731, 5, 40, 0, 0, 1731, 1736, 3, 138, 69, 0, 1732, 1733, + 5, 5, 0, 0, 1733, 1735, 3, 138, 69, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1738, + 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1740, + 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1729, 1, 0, 0, 0, 1739, 1740, + 1, 0, 0, 0, 1740, 1742, 1, 0, 0, 0, 1741, 1743, 3, 122, 61, 0, 1742, 1741, + 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, + 5, 4, 0, 0, 1745, 1712, 1, 0, 0, 0, 1745, 1713, 1, 0, 0, 0, 1746, 121, + 1, 0, 0, 0, 1747, 1755, 3, 124, 62, 0, 1748, 1749, 5, 181, 0, 0, 1749, + 1750, 5, 101, 0, 0, 1750, 1756, 5, 183, 0, 0, 1751, 1752, 5, 158, 0, 0, + 1752, 1756, 5, 127, 0, 0, 1753, 1756, 5, 78, 0, 0, 1754, 1756, 5, 182, + 0, 0, 1755, 1748, 1, 0, 0, 0, 1755, 1751, 1, 0, 0, 0, 1755, 1753, 1, 0, + 0, 0, 1755, 1754, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 123, 1, 0, + 0, 0, 1757, 1764, 7, 17, 0, 0, 1758, 1765, 3, 146, 73, 0, 1759, 1760, 5, + 39, 0, 0, 1760, 1761, 3, 142, 71, 0, 1761, 1762, 5, 32, 0, 0, 1762, 1763, + 3, 144, 72, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1759, + 1, 0, 0, 0, 1765, 125, 1, 0, 0, 0, 1766, 1767, 3, 220, 110, 0, 1767, 1777, + 5, 3, 0, 0, 1768, 1773, 3, 68, 34, 0, 1769, 1770, 5, 5, 0, 0, 1770, 1772, + 3, 68, 34, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, + 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1778, 1, 0, 0, 0, 1775, 1773, + 1, 0, 0, 0, 1776, 1778, 5, 7, 0, 0, 1777, 1768, 1, 0, 0, 0, 1777, 1776, + 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 5, 4, 0, 0, 1780, 127, + 1, 0, 0, 0, 1781, 1782, 3, 222, 111, 0, 1782, 1795, 5, 3, 0, 0, 1783, 1785, + 5, 62, 0, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, + 1, 0, 0, 0, 1786, 1791, 3, 68, 34, 0, 1787, 1788, 5, 5, 0, 0, 1788, 1790, + 3, 68, 34, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, + 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1796, 1, 0, 0, 0, 1793, 1791, + 1, 0, 0, 0, 1794, 1796, 5, 7, 0, 0, 1795, 1784, 1, 0, 0, 0, 1795, 1794, + 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, + 5, 4, 0, 0, 1798, 1800, 3, 116, 58, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, + 1, 0, 0, 0, 1800, 129, 1, 0, 0, 0, 1801, 1802, 3, 148, 74, 0, 1802, 1812, + 5, 3, 0, 0, 1803, 1808, 3, 68, 34, 0, 1804, 1805, 5, 5, 0, 0, 1805, 1807, + 3, 68, 34, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, + 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1813, 1, 0, 0, 0, 1810, 1808, + 1, 0, 0, 0, 1811, 1813, 5, 7, 0, 0, 1812, 1803, 1, 0, 0, 0, 1812, 1811, + 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, + 5, 4, 0, 0, 1815, 1817, 3, 116, 58, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, + 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1821, 5, 153, 0, 0, 1819, 1822, + 3, 118, 59, 0, 1820, 1822, 3, 212, 106, 0, 1821, 1819, 1, 0, 0, 0, 1821, + 1820, 1, 0, 0, 0, 1822, 131, 1, 0, 0, 0, 1823, 1825, 5, 150, 0, 0, 1824, + 1826, 5, 116, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, + 1827, 1, 0, 0, 0, 1827, 1832, 3, 56, 28, 0, 1828, 1829, 5, 5, 0, 0, 1829, + 1831, 3, 56, 28, 0, 1830, 1828, 1, 0, 0, 0, 1831, 1834, 1, 0, 0, 0, 1832, + 1830, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 133, 1, 0, 0, 0, 1834, + 1832, 1, 0, 0, 0, 1835, 1836, 5, 109, 0, 0, 1836, 1837, 5, 40, 0, 0, 1837, + 1842, 3, 138, 69, 0, 1838, 1839, 5, 5, 0, 0, 1839, 1841, 3, 138, 69, 0, + 1840, 1838, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, + 1842, 1843, 1, 0, 0, 0, 1843, 135, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, + 1845, 1846, 5, 98, 0, 0, 1846, 1849, 3, 68, 34, 0, 1847, 1848, 7, 18, 0, + 0, 1848, 1850, 3, 68, 34, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, + 0, 0, 1850, 137, 1, 0, 0, 0, 1851, 1854, 3, 68, 34, 0, 1852, 1853, 5, 45, + 0, 0, 1853, 1855, 3, 192, 96, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, + 0, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1858, 3, 140, 70, 0, 1857, 1856, + 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1860, + 5, 176, 0, 0, 1860, 1862, 7, 19, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, + 1, 0, 0, 0, 1862, 139, 1, 0, 0, 0, 1863, 1864, 7, 20, 0, 0, 1864, 141, + 1, 0, 0, 0, 1865, 1866, 3, 68, 34, 0, 1866, 1867, 5, 156, 0, 0, 1867, 1876, + 1, 0, 0, 0, 1868, 1869, 3, 68, 34, 0, 1869, 1870, 5, 159, 0, 0, 1870, 1876, + 1, 0, 0, 0, 1871, 1872, 5, 158, 0, 0, 1872, 1876, 5, 127, 0, 0, 1873, 1874, + 5, 157, 0, 0, 1874, 1876, 5, 156, 0, 0, 1875, 1865, 1, 0, 0, 0, 1875, 1868, 1, 0, 0, 0, 1875, 1871, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 143, - 1, 0, 0, 0, 1877, 1878, 3, 66, 33, 0, 1878, 1879, 5, 156, 0, 0, 1879, 1885, - 1, 0, 0, 0, 1880, 1881, 5, 157, 0, 0, 1881, 1885, 5, 156, 0, 0, 1882, 1883, - 5, 158, 0, 0, 1883, 1885, 5, 127, 0, 0, 1884, 1877, 1, 0, 0, 0, 1884, 1880, - 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 145, 1, 0, 0, 0, 1886, 1887, - 7, 21, 0, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1889, 3, 66, 33, 0, 1889, 1890, - 5, 4, 0, 0, 1890, 1891, 5, 153, 0, 0, 1891, 1893, 5, 3, 0, 0, 1892, 1894, - 3, 152, 76, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, - 1, 0, 0, 0, 1895, 1897, 3, 156, 78, 0, 1896, 1898, 3, 122, 61, 0, 1897, - 1896, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, - 1900, 5, 4, 0, 0, 1900, 1972, 1, 0, 0, 0, 1901, 1902, 7, 22, 0, 0, 1902, - 1903, 5, 3, 0, 0, 1903, 1904, 5, 4, 0, 0, 1904, 1905, 5, 153, 0, 0, 1905, - 1907, 5, 3, 0, 0, 1906, 1908, 3, 152, 76, 0, 1907, 1906, 1, 0, 0, 0, 1907, - 1908, 1, 0, 0, 0, 1908, 1910, 1, 0, 0, 0, 1909, 1911, 3, 154, 77, 0, 1910, - 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, - 1972, 5, 4, 0, 0, 1913, 1914, 7, 23, 0, 0, 1914, 1915, 5, 3, 0, 0, 1915, - 1916, 5, 4, 0, 0, 1916, 1917, 5, 153, 0, 0, 1917, 1919, 5, 3, 0, 0, 1918, - 1920, 3, 152, 76, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, - 1921, 1, 0, 0, 0, 1921, 1922, 3, 156, 78, 0, 1922, 1923, 5, 4, 0, 0, 1923, - 1972, 1, 0, 0, 0, 1924, 1925, 7, 24, 0, 0, 1925, 1926, 5, 3, 0, 0, 1926, - 1928, 3, 66, 33, 0, 1927, 1929, 3, 148, 74, 0, 1928, 1927, 1, 0, 0, 0, - 1928, 1929, 1, 0, 0, 0, 1929, 1931, 1, 0, 0, 0, 1930, 1932, 3, 150, 75, - 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, - 0, 1933, 1934, 5, 4, 0, 0, 1934, 1935, 5, 153, 0, 0, 1935, 1937, 5, 3, - 0, 0, 1936, 1938, 3, 152, 76, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, - 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 3, 156, 78, 0, 1940, 1941, - 5, 4, 0, 0, 1941, 1972, 1, 0, 0, 0, 1942, 1943, 5, 165, 0, 0, 1943, 1944, - 5, 3, 0, 0, 1944, 1945, 3, 66, 33, 0, 1945, 1946, 5, 5, 0, 0, 1946, 1947, - 3, 34, 17, 0, 1947, 1948, 5, 4, 0, 0, 1948, 1949, 5, 153, 0, 0, 1949, 1951, - 5, 3, 0, 0, 1950, 1952, 3, 152, 76, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, - 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1955, 3, 156, 78, 0, 1954, 1956, - 3, 122, 61, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, - 1, 0, 0, 0, 1957, 1958, 5, 4, 0, 0, 1958, 1972, 1, 0, 0, 0, 1959, 1960, - 5, 166, 0, 0, 1960, 1961, 5, 3, 0, 0, 1961, 1962, 3, 66, 33, 0, 1962, 1963, - 5, 4, 0, 0, 1963, 1964, 5, 153, 0, 0, 1964, 1966, 5, 3, 0, 0, 1965, 1967, - 3, 152, 76, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, - 1, 0, 0, 0, 1968, 1969, 3, 156, 78, 0, 1969, 1970, 5, 4, 0, 0, 1970, 1972, - 1, 0, 0, 0, 1971, 1886, 1, 0, 0, 0, 1971, 1901, 1, 0, 0, 0, 1971, 1913, - 1, 0, 0, 0, 1971, 1924, 1, 0, 0, 0, 1971, 1942, 1, 0, 0, 0, 1971, 1959, - 1, 0, 0, 0, 1972, 147, 1, 0, 0, 0, 1973, 1974, 5, 5, 0, 0, 1974, 1975, - 3, 34, 17, 0, 1975, 149, 1, 0, 0, 0, 1976, 1977, 5, 5, 0, 0, 1977, 1978, - 3, 34, 17, 0, 1978, 151, 1, 0, 0, 0, 1979, 1980, 5, 154, 0, 0, 1980, 1982, - 5, 40, 0, 0, 1981, 1983, 3, 66, 33, 0, 1982, 1981, 1, 0, 0, 0, 1983, 1984, - 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 153, - 1, 0, 0, 0, 1986, 1987, 5, 109, 0, 0, 1987, 1989, 5, 40, 0, 0, 1988, 1990, - 3, 66, 33, 0, 1989, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1989, - 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 155, 1, 0, 0, 0, 1993, 1994, - 5, 109, 0, 0, 1994, 1995, 5, 40, 0, 0, 1995, 1996, 3, 156, 78, 0, 1996, - 157, 1, 0, 0, 0, 1997, 1999, 3, 66, 33, 0, 1998, 2000, 3, 138, 69, 0, 1999, - 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2008, 1, 0, 0, 0, 2001, - 2002, 5, 5, 0, 0, 2002, 2004, 3, 66, 33, 0, 2003, 2005, 3, 138, 69, 0, - 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 1, 0, 0, 0, - 2006, 2001, 1, 0, 0, 0, 2007, 2010, 1, 0, 0, 0, 2008, 2006, 1, 0, 0, 0, - 2008, 2009, 1, 0, 0, 0, 2009, 159, 1, 0, 0, 0, 2010, 2008, 1, 0, 0, 0, - 2011, 2012, 3, 82, 41, 0, 2012, 161, 1, 0, 0, 0, 2013, 2014, 3, 82, 41, - 0, 2014, 163, 1, 0, 0, 0, 2015, 2016, 7, 25, 0, 0, 2016, 165, 1, 0, 0, - 0, 2017, 2018, 5, 190, 0, 0, 2018, 167, 1, 0, 0, 0, 2019, 2022, 3, 66, - 33, 0, 2020, 2022, 3, 28, 14, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2020, 1, - 0, 0, 0, 2022, 169, 1, 0, 0, 0, 2023, 2024, 7, 26, 0, 0, 2024, 171, 1, - 0, 0, 0, 2025, 2026, 7, 27, 0, 0, 2026, 173, 1, 0, 0, 0, 2027, 2028, 3, - 224, 112, 0, 2028, 175, 1, 0, 0, 0, 2029, 2030, 3, 224, 112, 0, 2030, 177, - 1, 0, 0, 0, 2031, 2032, 3, 180, 90, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2035, - 1, 0, 0, 0, 2034, 2031, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, - 1, 0, 0, 0, 2036, 2037, 3, 176, 88, 0, 2037, 179, 1, 0, 0, 0, 2038, 2039, - 3, 224, 112, 0, 2039, 181, 1, 0, 0, 0, 2040, 2041, 3, 224, 112, 0, 2041, - 183, 1, 0, 0, 0, 2042, 2043, 3, 224, 112, 0, 2043, 185, 1, 0, 0, 0, 2044, - 2045, 3, 224, 112, 0, 2045, 187, 1, 0, 0, 0, 2046, 2047, 3, 224, 112, 0, - 2047, 189, 1, 0, 0, 0, 2048, 2049, 3, 224, 112, 0, 2049, 191, 1, 0, 0, - 0, 2050, 2051, 3, 224, 112, 0, 2051, 193, 1, 0, 0, 0, 2052, 2053, 3, 224, - 112, 0, 2053, 195, 1, 0, 0, 0, 2054, 2055, 3, 224, 112, 0, 2055, 197, 1, - 0, 0, 0, 2056, 2057, 3, 224, 112, 0, 2057, 199, 1, 0, 0, 0, 2058, 2059, - 3, 224, 112, 0, 2059, 201, 1, 0, 0, 0, 2060, 2061, 3, 224, 112, 0, 2061, - 203, 1, 0, 0, 0, 2062, 2063, 3, 224, 112, 0, 2063, 205, 1, 0, 0, 0, 2064, - 2065, 3, 224, 112, 0, 2065, 207, 1, 0, 0, 0, 2066, 2067, 3, 224, 112, 0, - 2067, 209, 1, 0, 0, 0, 2068, 2069, 3, 224, 112, 0, 2069, 211, 1, 0, 0, - 0, 2070, 2071, 3, 224, 112, 0, 2071, 213, 1, 0, 0, 0, 2072, 2073, 3, 224, - 112, 0, 2073, 215, 1, 0, 0, 0, 2074, 2075, 3, 224, 112, 0, 2075, 217, 1, - 0, 0, 0, 2076, 2077, 3, 224, 112, 0, 2077, 219, 1, 0, 0, 0, 2078, 2079, - 3, 224, 112, 0, 2079, 221, 1, 0, 0, 0, 2080, 2081, 3, 224, 112, 0, 2081, - 223, 1, 0, 0, 0, 2082, 2090, 5, 186, 0, 0, 2083, 2090, 3, 172, 86, 0, 2084, - 2090, 5, 190, 0, 0, 2085, 2086, 5, 3, 0, 0, 2086, 2087, 3, 224, 112, 0, - 2087, 2088, 5, 4, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2082, 1, 0, 0, 0, - 2089, 2083, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2089, 2085, 1, 0, 0, 0, - 2090, 225, 1, 0, 0, 0, 300, 229, 237, 244, 249, 255, 261, 263, 289, 296, - 303, 309, 313, 318, 321, 328, 331, 335, 343, 347, 349, 353, 357, 361, 364, - 371, 377, 383, 388, 399, 405, 409, 413, 416, 420, 426, 431, 440, 447, 454, - 458, 462, 467, 473, 485, 489, 494, 497, 500, 505, 508, 522, 529, 536, 538, - 541, 547, 552, 560, 565, 580, 586, 596, 601, 611, 615, 617, 621, 626, 628, - 636, 642, 647, 654, 665, 668, 670, 677, 681, 688, 694, 700, 706, 711, 720, - 725, 736, 741, 752, 757, 761, 777, 787, 792, 800, 812, 817, 828, 831, 833, - 839, 842, 844, 848, 852, 859, 862, 865, 872, 875, 878, 881, 885, 893, 898, - 909, 914, 923, 930, 934, 938, 941, 949, 962, 965, 973, 982, 986, 991, 1021, - 1032, 1044, 1050, 1057, 1061, 1071, 1074, 1080, 1086, 1095, 1098, 1102, - 1104, 1106, 1115, 1122, 1129, 1135, 1140, 1148, 1153, 1162, 1173, 1180, - 1184, 1187, 1190, 1194, 1204, 1210, 1212, 1220, 1227, 1234, 1239, 1241, - 1247, 1256, 1261, 1268, 1272, 1274, 1277, 1285, 1289, 1292, 1298, 1302, - 1307, 1314, 1323, 1327, 1329, 1333, 1342, 1347, 1349, 1362, 1365, 1374, - 1385, 1392, 1395, 1400, 1404, 1407, 1410, 1415, 1419, 1424, 1427, 1430, - 1435, 1439, 1442, 1449, 1454, 1463, 1468, 1471, 1479, 1483, 1491, 1494, - 1496, 1505, 1508, 1510, 1514, 1518, 1522, 1525, 1536, 1541, 1545, 1549, - 1552, 1557, 1563, 1570, 1577, 1582, 1585, 1593, 1599, 1604, 1610, 1617, - 1624, 1629, 1632, 1635, 1640, 1645, 1652, 1656, 1660, 1670, 1679, 1682, - 1691, 1695, 1703, 1712, 1715, 1724, 1727, 1730, 1733, 1743, 1752, 1761, - 1765, 1772, 1779, 1783, 1787, 1796, 1800, 1804, 1809, 1813, 1820, 1830, - 1837, 1842, 1845, 1849, 1863, 1875, 1884, 1893, 1897, 1907, 1910, 1919, - 1928, 1931, 1937, 1951, 1955, 1966, 1971, 1984, 1991, 1999, 2004, 2008, - 2021, 2034, 2089, + 1, 0, 0, 0, 1877, 1878, 3, 68, 34, 0, 1878, 1879, 5, 156, 0, 0, 1879, 1888, + 1, 0, 0, 0, 1880, 1881, 3, 68, 34, 0, 1881, 1882, 5, 159, 0, 0, 1882, 1888, + 1, 0, 0, 0, 1883, 1884, 5, 158, 0, 0, 1884, 1888, 5, 127, 0, 0, 1885, 1886, + 5, 157, 0, 0, 1886, 1888, 5, 159, 0, 0, 1887, 1877, 1, 0, 0, 0, 1887, 1880, + 1, 0, 0, 0, 1887, 1883, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 145, + 1, 0, 0, 0, 1889, 1890, 3, 68, 34, 0, 1890, 1891, 5, 156, 0, 0, 1891, 1897, + 1, 0, 0, 0, 1892, 1893, 5, 157, 0, 0, 1893, 1897, 5, 156, 0, 0, 1894, 1895, + 5, 158, 0, 0, 1895, 1897, 5, 127, 0, 0, 1896, 1889, 1, 0, 0, 0, 1896, 1892, + 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 147, 1, 0, 0, 0, 1898, 1899, + 7, 21, 0, 0, 1899, 1900, 5, 3, 0, 0, 1900, 1901, 3, 68, 34, 0, 1901, 1902, + 5, 4, 0, 0, 1902, 1903, 5, 153, 0, 0, 1903, 1905, 5, 3, 0, 0, 1904, 1906, + 3, 154, 77, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, + 1, 0, 0, 0, 1907, 1909, 3, 158, 79, 0, 1908, 1910, 3, 124, 62, 0, 1909, + 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, + 1912, 5, 4, 0, 0, 1912, 1984, 1, 0, 0, 0, 1913, 1914, 7, 22, 0, 0, 1914, + 1915, 5, 3, 0, 0, 1915, 1916, 5, 4, 0, 0, 1916, 1917, 5, 153, 0, 0, 1917, + 1919, 5, 3, 0, 0, 1918, 1920, 3, 154, 77, 0, 1919, 1918, 1, 0, 0, 0, 1919, + 1920, 1, 0, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1923, 3, 156, 78, 0, 1922, + 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, + 1984, 5, 4, 0, 0, 1925, 1926, 7, 23, 0, 0, 1926, 1927, 5, 3, 0, 0, 1927, + 1928, 5, 4, 0, 0, 1928, 1929, 5, 153, 0, 0, 1929, 1931, 5, 3, 0, 0, 1930, + 1932, 3, 154, 77, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, + 1933, 1, 0, 0, 0, 1933, 1934, 3, 158, 79, 0, 1934, 1935, 5, 4, 0, 0, 1935, + 1984, 1, 0, 0, 0, 1936, 1937, 7, 24, 0, 0, 1937, 1938, 5, 3, 0, 0, 1938, + 1940, 3, 68, 34, 0, 1939, 1941, 3, 150, 75, 0, 1940, 1939, 1, 0, 0, 0, + 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1944, 3, 152, 76, + 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, + 0, 1945, 1946, 5, 4, 0, 0, 1946, 1947, 5, 153, 0, 0, 1947, 1949, 5, 3, + 0, 0, 1948, 1950, 3, 154, 77, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, + 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1952, 3, 158, 79, 0, 1952, 1953, + 5, 4, 0, 0, 1953, 1984, 1, 0, 0, 0, 1954, 1955, 5, 165, 0, 0, 1955, 1956, + 5, 3, 0, 0, 1956, 1957, 3, 68, 34, 0, 1957, 1958, 5, 5, 0, 0, 1958, 1959, + 3, 36, 18, 0, 1959, 1960, 5, 4, 0, 0, 1960, 1961, 5, 153, 0, 0, 1961, 1963, + 5, 3, 0, 0, 1962, 1964, 3, 154, 77, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, + 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 3, 158, 79, 0, 1966, 1968, + 3, 124, 62, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, + 1, 0, 0, 0, 1969, 1970, 5, 4, 0, 0, 1970, 1984, 1, 0, 0, 0, 1971, 1972, + 5, 166, 0, 0, 1972, 1973, 5, 3, 0, 0, 1973, 1974, 3, 68, 34, 0, 1974, 1975, + 5, 4, 0, 0, 1975, 1976, 5, 153, 0, 0, 1976, 1978, 5, 3, 0, 0, 1977, 1979, + 3, 154, 77, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1980, + 1, 0, 0, 0, 1980, 1981, 3, 158, 79, 0, 1981, 1982, 5, 4, 0, 0, 1982, 1984, + 1, 0, 0, 0, 1983, 1898, 1, 0, 0, 0, 1983, 1913, 1, 0, 0, 0, 1983, 1925, + 1, 0, 0, 0, 1983, 1936, 1, 0, 0, 0, 1983, 1954, 1, 0, 0, 0, 1983, 1971, + 1, 0, 0, 0, 1984, 149, 1, 0, 0, 0, 1985, 1986, 5, 5, 0, 0, 1986, 1987, + 3, 36, 18, 0, 1987, 151, 1, 0, 0, 0, 1988, 1989, 5, 5, 0, 0, 1989, 1990, + 3, 36, 18, 0, 1990, 153, 1, 0, 0, 0, 1991, 1992, 5, 154, 0, 0, 1992, 1994, + 5, 40, 0, 0, 1993, 1995, 3, 68, 34, 0, 1994, 1993, 1, 0, 0, 0, 1995, 1996, + 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 155, + 1, 0, 0, 0, 1998, 1999, 5, 109, 0, 0, 1999, 2001, 5, 40, 0, 0, 2000, 2002, + 3, 68, 34, 0, 2001, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2001, + 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 157, 1, 0, 0, 0, 2005, 2006, + 5, 109, 0, 0, 2006, 2007, 5, 40, 0, 0, 2007, 2008, 3, 158, 79, 0, 2008, + 159, 1, 0, 0, 0, 2009, 2011, 3, 68, 34, 0, 2010, 2012, 3, 140, 70, 0, 2011, + 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2020, 1, 0, 0, 0, 2013, + 2014, 5, 5, 0, 0, 2014, 2016, 3, 68, 34, 0, 2015, 2017, 3, 140, 70, 0, + 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2019, 1, 0, 0, 0, + 2018, 2013, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, + 2020, 2021, 1, 0, 0, 0, 2021, 161, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, + 2023, 2024, 3, 84, 42, 0, 2024, 163, 1, 0, 0, 0, 2025, 2026, 3, 84, 42, + 0, 2026, 165, 1, 0, 0, 0, 2027, 2028, 7, 25, 0, 0, 2028, 167, 1, 0, 0, + 0, 2029, 2030, 5, 190, 0, 0, 2030, 169, 1, 0, 0, 0, 2031, 2034, 3, 68, + 34, 0, 2032, 2034, 3, 30, 15, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2032, 1, + 0, 0, 0, 2034, 171, 1, 0, 0, 0, 2035, 2036, 7, 26, 0, 0, 2036, 173, 1, + 0, 0, 0, 2037, 2038, 7, 27, 0, 0, 2038, 175, 1, 0, 0, 0, 2039, 2040, 3, + 226, 113, 0, 2040, 177, 1, 0, 0, 0, 2041, 2042, 3, 226, 113, 0, 2042, 179, + 1, 0, 0, 0, 2043, 2044, 3, 182, 91, 0, 2044, 2045, 5, 2, 0, 0, 2045, 2047, + 1, 0, 0, 0, 2046, 2043, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, + 1, 0, 0, 0, 2048, 2049, 3, 178, 89, 0, 2049, 181, 1, 0, 0, 0, 2050, 2051, + 3, 226, 113, 0, 2051, 183, 1, 0, 0, 0, 2052, 2053, 3, 226, 113, 0, 2053, + 185, 1, 0, 0, 0, 2054, 2055, 3, 226, 113, 0, 2055, 187, 1, 0, 0, 0, 2056, + 2057, 3, 226, 113, 0, 2057, 189, 1, 0, 0, 0, 2058, 2059, 3, 226, 113, 0, + 2059, 191, 1, 0, 0, 0, 2060, 2061, 3, 226, 113, 0, 2061, 193, 1, 0, 0, + 0, 2062, 2063, 3, 226, 113, 0, 2063, 195, 1, 0, 0, 0, 2064, 2065, 3, 226, + 113, 0, 2065, 197, 1, 0, 0, 0, 2066, 2067, 3, 226, 113, 0, 2067, 199, 1, + 0, 0, 0, 2068, 2069, 3, 226, 113, 0, 2069, 201, 1, 0, 0, 0, 2070, 2071, + 3, 226, 113, 0, 2071, 203, 1, 0, 0, 0, 2072, 2073, 3, 226, 113, 0, 2073, + 205, 1, 0, 0, 0, 2074, 2075, 3, 226, 113, 0, 2075, 207, 1, 0, 0, 0, 2076, + 2077, 3, 226, 113, 0, 2077, 209, 1, 0, 0, 0, 2078, 2079, 3, 226, 113, 0, + 2079, 211, 1, 0, 0, 0, 2080, 2081, 3, 226, 113, 0, 2081, 213, 1, 0, 0, + 0, 2082, 2083, 3, 226, 113, 0, 2083, 215, 1, 0, 0, 0, 2084, 2085, 3, 226, + 113, 0, 2085, 217, 1, 0, 0, 0, 2086, 2087, 3, 226, 113, 0, 2087, 219, 1, + 0, 0, 0, 2088, 2089, 3, 226, 113, 0, 2089, 221, 1, 0, 0, 0, 2090, 2091, + 3, 226, 113, 0, 2091, 223, 1, 0, 0, 0, 2092, 2093, 3, 226, 113, 0, 2093, + 225, 1, 0, 0, 0, 2094, 2102, 5, 186, 0, 0, 2095, 2102, 3, 174, 87, 0, 2096, + 2102, 5, 190, 0, 0, 2097, 2098, 5, 3, 0, 0, 2098, 2099, 3, 226, 113, 0, + 2099, 2100, 5, 4, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2094, 1, 0, 0, 0, + 2101, 2095, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2097, 1, 0, 0, 0, + 2102, 227, 1, 0, 0, 0, 302, 231, 239, 246, 251, 257, 263, 265, 291, 298, + 305, 311, 315, 320, 323, 330, 333, 337, 345, 349, 351, 355, 359, 363, 366, + 373, 379, 385, 390, 401, 407, 411, 415, 418, 423, 427, 433, 438, 447, 454, + 463, 466, 470, 474, 479, 485, 497, 501, 506, 509, 512, 517, 520, 534, 541, + 548, 550, 553, 559, 564, 572, 577, 592, 598, 608, 613, 623, 627, 629, 633, + 638, 640, 648, 654, 659, 666, 677, 680, 682, 689, 693, 700, 706, 712, 718, + 723, 732, 737, 748, 753, 764, 769, 773, 789, 799, 804, 812, 824, 829, 840, + 843, 845, 851, 854, 856, 860, 864, 871, 874, 877, 884, 887, 890, 893, 897, + 905, 910, 921, 926, 935, 942, 946, 950, 953, 961, 974, 977, 985, 994, 998, + 1003, 1033, 1044, 1056, 1062, 1069, 1073, 1083, 1086, 1092, 1098, 1107, + 1110, 1114, 1116, 1118, 1127, 1134, 1141, 1147, 1152, 1160, 1165, 1174, + 1185, 1192, 1196, 1199, 1202, 1206, 1216, 1222, 1224, 1232, 1239, 1246, + 1251, 1253, 1259, 1268, 1273, 1280, 1284, 1286, 1289, 1297, 1301, 1304, + 1310, 1314, 1319, 1326, 1335, 1339, 1341, 1345, 1354, 1359, 1361, 1374, + 1377, 1386, 1397, 1404, 1407, 1412, 1416, 1419, 1422, 1427, 1431, 1436, + 1439, 1442, 1447, 1451, 1454, 1461, 1466, 1475, 1480, 1483, 1491, 1495, + 1503, 1506, 1508, 1517, 1520, 1522, 1526, 1530, 1534, 1537, 1548, 1553, + 1557, 1561, 1564, 1569, 1575, 1582, 1589, 1594, 1597, 1605, 1611, 1616, + 1622, 1629, 1636, 1641, 1644, 1647, 1652, 1657, 1664, 1668, 1672, 1682, + 1691, 1694, 1703, 1707, 1715, 1724, 1727, 1736, 1739, 1742, 1745, 1755, + 1764, 1773, 1777, 1784, 1791, 1795, 1799, 1808, 1812, 1816, 1821, 1825, + 1832, 1842, 1849, 1854, 1857, 1861, 1875, 1887, 1896, 1905, 1909, 1919, + 1922, 1931, 1940, 1943, 1949, 1963, 1967, 1978, 1983, 1996, 2003, 2011, + 2016, 2020, 2033, 2046, 2101, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -1397,106 +1403,107 @@ const ( SQLiteParserRULE_release_stmt = 10 SQLiteParserRULE_create_index_stmt = 11 SQLiteParserRULE_indexed_column = 12 - SQLiteParserRULE_create_table_stmt = 13 - SQLiteParserRULE_column_def = 14 - SQLiteParserRULE_type_name = 15 - SQLiteParserRULE_column_constraint = 16 - SQLiteParserRULE_signed_number = 17 - SQLiteParserRULE_table_constraint = 18 - SQLiteParserRULE_foreign_key_clause = 19 - SQLiteParserRULE_conflict_clause = 20 - SQLiteParserRULE_create_trigger_stmt = 21 - SQLiteParserRULE_create_view_stmt = 22 - SQLiteParserRULE_create_virtual_table_stmt = 23 - SQLiteParserRULE_with_clause = 24 - SQLiteParserRULE_cte_table_name = 25 - SQLiteParserRULE_recursive_cte = 26 - SQLiteParserRULE_common_table_expression = 27 - SQLiteParserRULE_returning_clause = 28 - SQLiteParserRULE_delete_stmt = 29 - SQLiteParserRULE_delete_stmt_limited = 30 - SQLiteParserRULE_detach_stmt = 31 - SQLiteParserRULE_drop_stmt = 32 - SQLiteParserRULE_expr = 33 - SQLiteParserRULE_raise_function = 34 - SQLiteParserRULE_literal_value = 35 - SQLiteParserRULE_insert_stmt = 36 - SQLiteParserRULE_upsert_clause = 37 - SQLiteParserRULE_pragma_stmt = 38 - SQLiteParserRULE_pragma_value = 39 - SQLiteParserRULE_reindex_stmt = 40 - SQLiteParserRULE_select_stmt = 41 - SQLiteParserRULE_join_clause = 42 - SQLiteParserRULE_select_core = 43 - SQLiteParserRULE_factored_select_stmt = 44 - SQLiteParserRULE_simple_select_stmt = 45 - SQLiteParserRULE_compound_select_stmt = 46 - SQLiteParserRULE_table_or_subquery = 47 - SQLiteParserRULE_result_column = 48 - SQLiteParserRULE_join_operator = 49 - SQLiteParserRULE_join_constraint = 50 - SQLiteParserRULE_compound_operator = 51 - SQLiteParserRULE_update_stmt = 52 - SQLiteParserRULE_column_name_list = 53 - SQLiteParserRULE_update_stmt_limited = 54 - SQLiteParserRULE_qualified_table_name = 55 - SQLiteParserRULE_vacuum_stmt = 56 - SQLiteParserRULE_filter_clause = 57 - SQLiteParserRULE_window_defn = 58 - SQLiteParserRULE_over_clause = 59 - SQLiteParserRULE_frame_spec = 60 - SQLiteParserRULE_frame_clause = 61 - SQLiteParserRULE_simple_function_invocation = 62 - SQLiteParserRULE_aggregate_function_invocation = 63 - SQLiteParserRULE_window_function_invocation = 64 - SQLiteParserRULE_common_table_stmt = 65 - SQLiteParserRULE_order_by_stmt = 66 - SQLiteParserRULE_limit_stmt = 67 - SQLiteParserRULE_ordering_term = 68 - SQLiteParserRULE_asc_desc = 69 - SQLiteParserRULE_frame_left = 70 - SQLiteParserRULE_frame_right = 71 - SQLiteParserRULE_frame_single = 72 - SQLiteParserRULE_window_function = 73 - SQLiteParserRULE_of_OF_fset = 74 - SQLiteParserRULE_default_DEFAULT__value = 75 - SQLiteParserRULE_partition_by = 76 - SQLiteParserRULE_order_by_expr = 77 - SQLiteParserRULE_order_by_expr_asc_desc = 78 - SQLiteParserRULE_expr_asc_desc = 79 - SQLiteParserRULE_initial_select = 80 - SQLiteParserRULE_recursive__select = 81 - SQLiteParserRULE_unary_operator = 82 - SQLiteParserRULE_error_message = 83 - SQLiteParserRULE_module_argument = 84 - SQLiteParserRULE_column_alias = 85 - SQLiteParserRULE_keyword = 86 - SQLiteParserRULE_name = 87 - SQLiteParserRULE_function_name = 88 - SQLiteParserRULE_qualified_function_name = 89 - SQLiteParserRULE_schema_name = 90 - SQLiteParserRULE_table_name = 91 - SQLiteParserRULE_table_or_index_name = 92 - SQLiteParserRULE_new_table_name = 93 - SQLiteParserRULE_column_name = 94 - SQLiteParserRULE_collation_name = 95 - SQLiteParserRULE_foreign_table = 96 - SQLiteParserRULE_index_name = 97 - SQLiteParserRULE_trigger_name = 98 - SQLiteParserRULE_view_name = 99 - SQLiteParserRULE_module_name = 100 - SQLiteParserRULE_pragma_name = 101 - SQLiteParserRULE_savepoint_name = 102 - SQLiteParserRULE_table_alias = 103 - SQLiteParserRULE_transaction_name = 104 - SQLiteParserRULE_window_name = 105 - SQLiteParserRULE_alias = 106 - SQLiteParserRULE_filename = 107 - SQLiteParserRULE_base_window_name = 108 - SQLiteParserRULE_simple_func = 109 - SQLiteParserRULE_aggregate_func = 110 - SQLiteParserRULE_table_function_name = 111 - SQLiteParserRULE_any_name = 112 + SQLiteParserRULE_table_option = 13 + SQLiteParserRULE_create_table_stmt = 14 + SQLiteParserRULE_column_def = 15 + SQLiteParserRULE_type_name = 16 + SQLiteParserRULE_column_constraint = 17 + SQLiteParserRULE_signed_number = 18 + SQLiteParserRULE_table_constraint = 19 + SQLiteParserRULE_foreign_key_clause = 20 + SQLiteParserRULE_conflict_clause = 21 + SQLiteParserRULE_create_trigger_stmt = 22 + SQLiteParserRULE_create_view_stmt = 23 + SQLiteParserRULE_create_virtual_table_stmt = 24 + SQLiteParserRULE_with_clause = 25 + SQLiteParserRULE_cte_table_name = 26 + SQLiteParserRULE_recursive_cte = 27 + SQLiteParserRULE_common_table_expression = 28 + SQLiteParserRULE_returning_clause = 29 + SQLiteParserRULE_delete_stmt = 30 + SQLiteParserRULE_delete_stmt_limited = 31 + SQLiteParserRULE_detach_stmt = 32 + SQLiteParserRULE_drop_stmt = 33 + SQLiteParserRULE_expr = 34 + SQLiteParserRULE_raise_function = 35 + SQLiteParserRULE_literal_value = 36 + SQLiteParserRULE_insert_stmt = 37 + SQLiteParserRULE_upsert_clause = 38 + SQLiteParserRULE_pragma_stmt = 39 + SQLiteParserRULE_pragma_value = 40 + SQLiteParserRULE_reindex_stmt = 41 + SQLiteParserRULE_select_stmt = 42 + SQLiteParserRULE_join_clause = 43 + SQLiteParserRULE_select_core = 44 + SQLiteParserRULE_factored_select_stmt = 45 + SQLiteParserRULE_simple_select_stmt = 46 + SQLiteParserRULE_compound_select_stmt = 47 + SQLiteParserRULE_table_or_subquery = 48 + SQLiteParserRULE_result_column = 49 + SQLiteParserRULE_join_operator = 50 + SQLiteParserRULE_join_constraint = 51 + SQLiteParserRULE_compound_operator = 52 + SQLiteParserRULE_update_stmt = 53 + SQLiteParserRULE_column_name_list = 54 + SQLiteParserRULE_update_stmt_limited = 55 + SQLiteParserRULE_qualified_table_name = 56 + SQLiteParserRULE_vacuum_stmt = 57 + SQLiteParserRULE_filter_clause = 58 + SQLiteParserRULE_window_defn = 59 + SQLiteParserRULE_over_clause = 60 + SQLiteParserRULE_frame_spec = 61 + SQLiteParserRULE_frame_clause = 62 + SQLiteParserRULE_simple_function_invocation = 63 + SQLiteParserRULE_aggregate_function_invocation = 64 + SQLiteParserRULE_window_function_invocation = 65 + SQLiteParserRULE_common_table_stmt = 66 + SQLiteParserRULE_order_by_stmt = 67 + SQLiteParserRULE_limit_stmt = 68 + SQLiteParserRULE_ordering_term = 69 + SQLiteParserRULE_asc_desc = 70 + SQLiteParserRULE_frame_left = 71 + SQLiteParserRULE_frame_right = 72 + SQLiteParserRULE_frame_single = 73 + SQLiteParserRULE_window_function = 74 + SQLiteParserRULE_of_OF_fset = 75 + SQLiteParserRULE_default_DEFAULT__value = 76 + SQLiteParserRULE_partition_by = 77 + SQLiteParserRULE_order_by_expr = 78 + SQLiteParserRULE_order_by_expr_asc_desc = 79 + SQLiteParserRULE_expr_asc_desc = 80 + SQLiteParserRULE_initial_select = 81 + SQLiteParserRULE_recursive__select = 82 + SQLiteParserRULE_unary_operator = 83 + SQLiteParserRULE_error_message = 84 + SQLiteParserRULE_module_argument = 85 + SQLiteParserRULE_column_alias = 86 + SQLiteParserRULE_keyword = 87 + SQLiteParserRULE_name = 88 + SQLiteParserRULE_function_name = 89 + SQLiteParserRULE_qualified_function_name = 90 + SQLiteParserRULE_schema_name = 91 + SQLiteParserRULE_table_name = 92 + SQLiteParserRULE_table_or_index_name = 93 + SQLiteParserRULE_new_table_name = 94 + SQLiteParserRULE_column_name = 95 + SQLiteParserRULE_collation_name = 96 + SQLiteParserRULE_foreign_table = 97 + SQLiteParserRULE_index_name = 98 + SQLiteParserRULE_trigger_name = 99 + SQLiteParserRULE_view_name = 100 + SQLiteParserRULE_module_name = 101 + SQLiteParserRULE_pragma_name = 102 + SQLiteParserRULE_savepoint_name = 103 + SQLiteParserRULE_table_alias = 104 + SQLiteParserRULE_transaction_name = 105 + SQLiteParserRULE_window_name = 106 + SQLiteParserRULE_alias = 107 + SQLiteParserRULE_filename = 108 + SQLiteParserRULE_base_window_name = 109 + SQLiteParserRULE_simple_func = 110 + SQLiteParserRULE_aggregate_func = 111 + SQLiteParserRULE_table_function_name = 112 + SQLiteParserRULE_any_name = 113 ) // IParseContext is an interface to support dynamic dispatch. @@ -1632,22 +1639,22 @@ func (p *SQLiteParser) Parse() (localctx IParseContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(229) + p.SetState(231) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-6267743731445661694) != 0) || ((int64((_la-66)) & ^0x3f) == 0 && ((int64(1)<<(_la-66))&-7971300971697405919) != 0) || ((int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&1101825) != 0) { { - p.SetState(226) + p.SetState(228) p.Sql_stmt_list() } - p.SetState(231) + p.SetState(233) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(232) + p.SetState(234) p.Match(SQLiteParserEOF) } @@ -1794,67 +1801,67 @@ func (p *SQLiteParser) Sql_stmt_list() (localctx ISql_stmt_listContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(237) + p.SetState(239) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserSCOL { { - p.SetState(234) + p.SetState(236) p.Match(SQLiteParserSCOL) } - p.SetState(239) + p.SetState(241) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(240) + p.SetState(242) p.Sql_stmt() } - p.SetState(249) + p.SetState(251) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 3, p.GetParserRuleContext()) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { - p.SetState(242) + p.SetState(244) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ok := true; ok; ok = _la == SQLiteParserSCOL { { - p.SetState(241) + p.SetState(243) p.Match(SQLiteParserSCOL) } - p.SetState(244) + p.SetState(246) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(246) + p.SetState(248) p.Sql_stmt() } } - p.SetState(251) + p.SetState(253) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 3, p.GetParserRuleContext()) } - p.SetState(255) + p.SetState(257) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 4, p.GetParserRuleContext()) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(252) + p.SetState(254) p.Match(SQLiteParserSCOL) } } - p.SetState(257) + p.SetState(259) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 4, p.GetParserRuleContext()) } @@ -2370,176 +2377,176 @@ func (p *SQLiteParser) Sql_stmt() (localctx ISql_stmtContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(263) + p.SetState(265) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserEXPLAIN_ { { - p.SetState(258) + p.SetState(260) p.Match(SQLiteParserEXPLAIN_) } - p.SetState(261) + p.SetState(263) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserQUERY_ { { - p.SetState(259) + p.SetState(261) p.Match(SQLiteParserQUERY_) } { - p.SetState(260) + p.SetState(262) p.Match(SQLiteParserPLAN_) } } } - p.SetState(289) + p.SetState(291) p.GetErrorHandler().Sync(p) switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 7, p.GetParserRuleContext()) { case 1: { - p.SetState(265) + p.SetState(267) p.Alter_table_stmt() } case 2: { - p.SetState(266) + p.SetState(268) p.Analyze_stmt() } case 3: { - p.SetState(267) + p.SetState(269) p.Attach_stmt() } case 4: { - p.SetState(268) + p.SetState(270) p.Begin_stmt() } case 5: { - p.SetState(269) + p.SetState(271) p.Commit_stmt() } case 6: { - p.SetState(270) + p.SetState(272) p.Create_index_stmt() } case 7: { - p.SetState(271) + p.SetState(273) p.Create_table_stmt() } case 8: { - p.SetState(272) + p.SetState(274) p.Create_trigger_stmt() } case 9: { - p.SetState(273) + p.SetState(275) p.Create_view_stmt() } case 10: { - p.SetState(274) + p.SetState(276) p.Create_virtual_table_stmt() } case 11: { - p.SetState(275) + p.SetState(277) p.Delete_stmt() } case 12: { - p.SetState(276) + p.SetState(278) p.Delete_stmt_limited() } case 13: { - p.SetState(277) + p.SetState(279) p.Detach_stmt() } case 14: { - p.SetState(278) + p.SetState(280) p.Drop_stmt() } case 15: { - p.SetState(279) + p.SetState(281) p.Insert_stmt() } case 16: { - p.SetState(280) + p.SetState(282) p.Pragma_stmt() } case 17: { - p.SetState(281) + p.SetState(283) p.Reindex_stmt() } case 18: { - p.SetState(282) + p.SetState(284) p.Release_stmt() } case 19: { - p.SetState(283) + p.SetState(285) p.Rollback_stmt() } case 20: { - p.SetState(284) + p.SetState(286) p.Savepoint_stmt() } case 21: { - p.SetState(285) + p.SetState(287) p.Select_stmt() } case 22: { - p.SetState(286) + p.SetState(288) p.Update_stmt() } case 23: { - p.SetState(287) + p.SetState(289) p.Update_stmt_limited() } case 24: { - p.SetState(288) + p.SetState(290) p.Vacuum_stmt() } @@ -2806,77 +2813,77 @@ func (p *SQLiteParser) Alter_table_stmt() (localctx IAlter_table_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(291) + p.SetState(293) p.Match(SQLiteParserALTER_) } { - p.SetState(292) + p.SetState(294) p.Match(SQLiteParserTABLE_) } - p.SetState(296) + p.SetState(298) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 8, p.GetParserRuleContext()) == 1 { { - p.SetState(293) + p.SetState(295) p.Schema_name() } { - p.SetState(294) + p.SetState(296) p.Match(SQLiteParserDOT) } } { - p.SetState(298) + p.SetState(300) p.Table_name() } - p.SetState(321) + p.SetState(323) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserRENAME_: { - p.SetState(299) + p.SetState(301) p.Match(SQLiteParserRENAME_) } - p.SetState(309) + p.SetState(311) p.GetErrorHandler().Sync(p) switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 10, p.GetParserRuleContext()) { case 1: { - p.SetState(300) + p.SetState(302) p.Match(SQLiteParserTO_) } { - p.SetState(301) + p.SetState(303) p.New_table_name() } case 2: - p.SetState(303) + p.SetState(305) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 9, p.GetParserRuleContext()) == 1 { { - p.SetState(302) + p.SetState(304) p.Match(SQLiteParserCOLUMN_) } } { - p.SetState(305) + p.SetState(307) var _x = p.Column_name() localctx.(*Alter_table_stmtContext).old_column_name = _x } { - p.SetState(306) + p.SetState(308) p.Match(SQLiteParserTO_) } { - p.SetState(307) + p.SetState(309) var _x = p.Column_name() @@ -2887,41 +2894,41 @@ func (p *SQLiteParser) Alter_table_stmt() (localctx IAlter_table_stmtContext) { case SQLiteParserADD_: { - p.SetState(311) + p.SetState(313) p.Match(SQLiteParserADD_) } - p.SetState(313) + p.SetState(315) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 11, p.GetParserRuleContext()) == 1 { { - p.SetState(312) + p.SetState(314) p.Match(SQLiteParserCOLUMN_) } } { - p.SetState(315) + p.SetState(317) p.Column_def() } case SQLiteParserDROP_: { - p.SetState(316) + p.SetState(318) p.Match(SQLiteParserDROP_) } - p.SetState(318) + p.SetState(320) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 12, p.GetParserRuleContext()) == 1 { { - p.SetState(317) + p.SetState(319) p.Match(SQLiteParserCOLUMN_) } } { - p.SetState(320) + p.SetState(322) p.Column_name() } @@ -3061,35 +3068,35 @@ func (p *SQLiteParser) Analyze_stmt() (localctx IAnalyze_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(323) + p.SetState(325) p.Match(SQLiteParserANALYZE_) } - p.SetState(331) + p.SetState(333) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 15, p.GetParserRuleContext()) == 1 { { - p.SetState(324) + p.SetState(326) p.Schema_name() } } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 15, p.GetParserRuleContext()) == 2 { - p.SetState(328) + p.SetState(330) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 14, p.GetParserRuleContext()) == 1 { { - p.SetState(325) + p.SetState(327) p.Schema_name() } { - p.SetState(326) + p.SetState(328) p.Match(SQLiteParserDOT) } } { - p.SetState(330) + p.SetState(332) p.Table_or_index_name() } @@ -3232,29 +3239,29 @@ func (p *SQLiteParser) Attach_stmt() (localctx IAttach_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(333) + p.SetState(335) p.Match(SQLiteParserATTACH_) } - p.SetState(335) + p.SetState(337) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 16, p.GetParserRuleContext()) == 1 { { - p.SetState(334) + p.SetState(336) p.Match(SQLiteParserDATABASE_) } } { - p.SetState(337) + p.SetState(339) p.expr(0) } { - p.SetState(338) + p.SetState(340) p.Match(SQLiteParserAS_) } { - p.SetState(339) + p.SetState(341) p.Schema_name() } @@ -3389,16 +3396,16 @@ func (p *SQLiteParser) Begin_stmt() (localctx IBegin_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(341) + p.SetState(343) p.Match(SQLiteParserBEGIN_) } - p.SetState(343) + p.SetState(345) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if (int64((_la-58)) & ^0x3f) == 0 && ((int64(1)<<(_la-58))&16779265) != 0 { { - p.SetState(342) + p.SetState(344) _la = p.GetTokenStream().LA(1) if !((int64((_la-58)) & ^0x3f) == 0 && ((int64(1)<<(_la-58))&16779265) != 0) { @@ -3410,21 +3417,21 @@ func (p *SQLiteParser) Begin_stmt() (localctx IBegin_stmtContext) { } } - p.SetState(349) + p.SetState(351) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTRANSACTION_ { { - p.SetState(345) + p.SetState(347) p.Match(SQLiteParserTRANSACTION_) } - p.SetState(347) + p.SetState(349) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 18, p.GetParserRuleContext()) == 1 { { - p.SetState(346) + p.SetState(348) p.Transaction_name() } @@ -3536,7 +3543,7 @@ func (p *SQLiteParser) Commit_stmt() (localctx ICommit_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(351) + p.SetState(353) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserCOMMIT_ || _la == SQLiteParserEND_) { @@ -3546,13 +3553,13 @@ func (p *SQLiteParser) Commit_stmt() (localctx ICommit_stmtContext) { p.Consume() } } - p.SetState(353) + p.SetState(355) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTRANSACTION_ { { - p.SetState(352) + p.SetState(354) p.Match(SQLiteParserTRANSACTION_) } @@ -3684,41 +3691,41 @@ func (p *SQLiteParser) Rollback_stmt() (localctx IRollback_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(355) + p.SetState(357) p.Match(SQLiteParserROLLBACK_) } - p.SetState(357) + p.SetState(359) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTRANSACTION_ { { - p.SetState(356) + p.SetState(358) p.Match(SQLiteParserTRANSACTION_) } } - p.SetState(364) + p.SetState(366) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTO_ { { - p.SetState(359) + p.SetState(361) p.Match(SQLiteParserTO_) } - p.SetState(361) + p.SetState(363) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 22, p.GetParserRuleContext()) == 1 { { - p.SetState(360) + p.SetState(362) p.Match(SQLiteParserSAVEPOINT_) } } { - p.SetState(363) + p.SetState(365) p.Savepoint_name() } @@ -3834,11 +3841,11 @@ func (p *SQLiteParser) Savepoint_stmt() (localctx ISavepoint_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(366) + p.SetState(368) p.Match(SQLiteParserSAVEPOINT_) } { - p.SetState(367) + p.SetState(369) p.Savepoint_name() } @@ -3957,21 +3964,21 @@ func (p *SQLiteParser) Release_stmt() (localctx IRelease_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(369) + p.SetState(371) p.Match(SQLiteParserRELEASE_) } - p.SetState(371) + p.SetState(373) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 24, p.GetParserRuleContext()) == 1 { { - p.SetState(370) + p.SetState(372) p.Match(SQLiteParserSAVEPOINT_) } } { - p.SetState(373) + p.SetState(375) p.Savepoint_name() } @@ -4240,109 +4247,109 @@ func (p *SQLiteParser) Create_index_stmt() (localctx ICreate_index_stmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(375) + p.SetState(377) p.Match(SQLiteParserCREATE_) } - p.SetState(377) + p.SetState(379) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserUNIQUE_ { { - p.SetState(376) + p.SetState(378) p.Match(SQLiteParserUNIQUE_) } } { - p.SetState(379) + p.SetState(381) p.Match(SQLiteParserINDEX_) } - p.SetState(383) + p.SetState(385) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 26, p.GetParserRuleContext()) == 1 { { - p.SetState(380) + p.SetState(382) p.Match(SQLiteParserIF_) } { - p.SetState(381) + p.SetState(383) p.Match(SQLiteParserNOT_) } { - p.SetState(382) + p.SetState(384) p.Match(SQLiteParserEXISTS_) } } - p.SetState(388) + p.SetState(390) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 27, p.GetParserRuleContext()) == 1 { { - p.SetState(385) + p.SetState(387) p.Schema_name() } { - p.SetState(386) + p.SetState(388) p.Match(SQLiteParserDOT) } } { - p.SetState(390) + p.SetState(392) p.Index_name() } { - p.SetState(391) + p.SetState(393) p.Match(SQLiteParserON_) } { - p.SetState(392) + p.SetState(394) p.Table_name() } { - p.SetState(393) + p.SetState(395) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(394) + p.SetState(396) p.Indexed_column() } - p.SetState(399) + p.SetState(401) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(395) + p.SetState(397) p.Match(SQLiteParserCOMMA) } { - p.SetState(396) + p.SetState(398) p.Indexed_column() } - p.SetState(401) + p.SetState(403) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(402) + p.SetState(404) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(405) + p.SetState(407) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(403) + p.SetState(405) p.Match(SQLiteParserWHERE_) } { - p.SetState(404) + p.SetState(406) p.expr(0) } @@ -4509,44 +4516,44 @@ func (p *SQLiteParser) Indexed_column() (localctx IIndexed_columnContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(409) + p.SetState(411) p.GetErrorHandler().Sync(p) switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 30, p.GetParserRuleContext()) { case 1: { - p.SetState(407) + p.SetState(409) p.Column_name() } case 2: { - p.SetState(408) + p.SetState(410) p.expr(0) } } - p.SetState(413) + p.SetState(415) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCOLLATE_ { { - p.SetState(411) + p.SetState(413) p.Match(SQLiteParserCOLLATE_) } { - p.SetState(412) + p.SetState(414) p.Collation_name() } } - p.SetState(416) + p.SetState(418) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ { { - p.SetState(415) + p.SetState(417) p.Asc_desc() } @@ -4555,8 +4562,8 @@ func (p *SQLiteParser) Indexed_column() (localctx IIndexed_columnContext) { return localctx } -// ICreate_table_stmtContext is an interface to support dynamic dispatch. -type ICreate_table_stmtContext interface { +// ITable_optionContext is an interface to support dynamic dispatch. +type ITable_optionContext interface { antlr.ParserRuleContext // GetParser returns the parser. @@ -4568,6 +4575,141 @@ type ICreate_table_stmtContext interface { // SetRow_ROW_ID sets the row_ROW_ID token. SetRow_ROW_ID(antlr.Token) + // Getter signatures + WITHOUT_() antlr.TerminalNode + IDENTIFIER() antlr.TerminalNode + STRICT_() antlr.TerminalNode + + // IsTable_optionContext differentiates from other interfaces. + IsTable_optionContext() +} + +type Table_optionContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser + row_ROW_ID antlr.Token +} + +func NewEmptyTable_optionContext() *Table_optionContext { + var p = new(Table_optionContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = SQLiteParserRULE_table_option + return p +} + +func (*Table_optionContext) IsTable_optionContext() {} + +func NewTable_optionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_optionContext { + var p = new(Table_optionContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = SQLiteParserRULE_table_option + + return p +} + +func (s *Table_optionContext) GetParser() antlr.Parser { return s.parser } + +func (s *Table_optionContext) GetRow_ROW_ID() antlr.Token { return s.row_ROW_ID } + +func (s *Table_optionContext) SetRow_ROW_ID(v antlr.Token) { s.row_ROW_ID = v } + +func (s *Table_optionContext) WITHOUT_() antlr.TerminalNode { + return s.GetToken(SQLiteParserWITHOUT_, 0) +} + +func (s *Table_optionContext) IDENTIFIER() antlr.TerminalNode { + return s.GetToken(SQLiteParserIDENTIFIER, 0) +} + +func (s *Table_optionContext) STRICT_() antlr.TerminalNode { + return s.GetToken(SQLiteParserSTRICT_, 0) +} + +func (s *Table_optionContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *Table_optionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *Table_optionContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(SQLiteParserListener); ok { + listenerT.EnterTable_option(s) + } +} + +func (s *Table_optionContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(SQLiteParserListener); ok { + listenerT.ExitTable_option(s) + } +} + +func (p *SQLiteParser) Table_option() (localctx ITable_optionContext) { + this := p + _ = this + + localctx = NewTable_optionContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 26, SQLiteParserRULE_table_option) + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.SetState(423) + p.GetErrorHandler().Sync(p) + + switch p.GetTokenStream().LA(1) { + case SQLiteParserWITHOUT_: + p.EnterOuterAlt(localctx, 1) + { + p.SetState(420) + p.Match(SQLiteParserWITHOUT_) + } + { + p.SetState(421) + + var _m = p.Match(SQLiteParserIDENTIFIER) + + localctx.(*Table_optionContext).row_ROW_ID = _m + } + + case SQLiteParserSTRICT_: + p.EnterOuterAlt(localctx, 2) + { + p.SetState(422) + p.Match(SQLiteParserSTRICT_) + } + + default: + panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) + } + + return localctx +} + +// ICreate_table_stmtContext is an interface to support dynamic dispatch. +type ICreate_table_stmtContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + // Getter signatures CREATE_() antlr.TerminalNode TABLE_() antlr.TerminalNode @@ -4589,9 +4731,8 @@ type ICreate_table_stmtContext interface { COMMA(i int) antlr.TerminalNode AllTable_constraint() []ITable_constraintContext Table_constraint(i int) ITable_constraintContext - WITHOUT_() antlr.TerminalNode - STRICT_() antlr.TerminalNode - IDENTIFIER() antlr.TerminalNode + AllTable_option() []ITable_optionContext + Table_option(i int) ITable_optionContext // IsCreate_table_stmtContext differentiates from other interfaces. IsCreate_table_stmtContext() @@ -4599,8 +4740,7 @@ type ICreate_table_stmtContext interface { type Create_table_stmtContext struct { *antlr.BaseParserRuleContext - parser antlr.Parser - row_ROW_ID antlr.Token + parser antlr.Parser } func NewEmptyCreate_table_stmtContext() *Create_table_stmtContext { @@ -4625,10 +4765,6 @@ func NewCreate_table_stmtContext(parser antlr.Parser, parent antlr.ParserRuleCon func (s *Create_table_stmtContext) GetParser() antlr.Parser { return s.parser } -func (s *Create_table_stmtContext) GetRow_ROW_ID() antlr.Token { return s.row_ROW_ID } - -func (s *Create_table_stmtContext) SetRow_ROW_ID(v antlr.Token) { s.row_ROW_ID = v } - func (s *Create_table_stmtContext) CREATE_() antlr.TerminalNode { return s.GetToken(SQLiteParserCREATE_, 0) } @@ -4811,16 +4947,45 @@ func (s *Create_table_stmtContext) Table_constraint(i int) ITable_constraintCont return t.(ITable_constraintContext) } -func (s *Create_table_stmtContext) WITHOUT_() antlr.TerminalNode { - return s.GetToken(SQLiteParserWITHOUT_, 0) -} +func (s *Create_table_stmtContext) AllTable_option() []ITable_optionContext { + children := s.GetChildren() + len := 0 + for _, ctx := range children { + if _, ok := ctx.(ITable_optionContext); ok { + len++ + } + } -func (s *Create_table_stmtContext) STRICT_() antlr.TerminalNode { - return s.GetToken(SQLiteParserSTRICT_, 0) + tst := make([]ITable_optionContext, len) + i := 0 + for _, ctx := range children { + if t, ok := ctx.(ITable_optionContext); ok { + tst[i] = t.(ITable_optionContext) + i++ + } + } + + return tst } -func (s *Create_table_stmtContext) IDENTIFIER() antlr.TerminalNode { - return s.GetToken(SQLiteParserIDENTIFIER, 0) +func (s *Create_table_stmtContext) Table_option(i int) ITable_optionContext { + var t antlr.RuleContext + j := 0 + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(ITable_optionContext); ok { + if j == i { + t = ctx.(antlr.RuleContext) + break + } + j++ + } + } + + if t == nil { + return nil + } + + return t.(ITable_optionContext) } func (s *Create_table_stmtContext) GetRuleContext() antlr.RuleContext { @@ -4848,7 +5013,7 @@ func (p *SQLiteParser) Create_table_stmt() (localctx ICreate_table_stmtContext) _ = this localctx = NewCreate_table_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 26, SQLiteParserRULE_create_table_stmt) + p.EnterRule(localctx, 28, SQLiteParserRULE_create_table_stmt) var _la int defer func() { @@ -4871,16 +5036,16 @@ func (p *SQLiteParser) Create_table_stmt() (localctx ICreate_table_stmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(418) + p.SetState(425) p.Match(SQLiteParserCREATE_) } - p.SetState(420) + p.SetState(427) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ { { - p.SetState(419) + p.SetState(426) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) { @@ -4893,135 +5058,137 @@ func (p *SQLiteParser) Create_table_stmt() (localctx ICreate_table_stmtContext) } { - p.SetState(422) + p.SetState(429) p.Match(SQLiteParserTABLE_) } - p.SetState(426) + p.SetState(433) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 34, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 35, p.GetParserRuleContext()) == 1 { { - p.SetState(423) + p.SetState(430) p.Match(SQLiteParserIF_) } { - p.SetState(424) + p.SetState(431) p.Match(SQLiteParserNOT_) } { - p.SetState(425) + p.SetState(432) p.Match(SQLiteParserEXISTS_) } } - p.SetState(431) + p.SetState(438) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 35, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 36, p.GetParserRuleContext()) == 1 { { - p.SetState(428) + p.SetState(435) p.Schema_name() } { - p.SetState(429) + p.SetState(436) p.Match(SQLiteParserDOT) } } { - p.SetState(433) + p.SetState(440) p.Table_name() } - p.SetState(458) + p.SetState(470) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserOPEN_PAR: { - p.SetState(434) + p.SetState(441) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(435) + p.SetState(442) p.Column_def() } - p.SetState(440) + p.SetState(447) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 36, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 37, p.GetParserRuleContext()) for _alt != 1 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1+1 { { - p.SetState(436) + p.SetState(443) p.Match(SQLiteParserCOMMA) } { - p.SetState(437) + p.SetState(444) p.Column_def() } } - p.SetState(442) + p.SetState(449) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 36, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 37, p.GetParserRuleContext()) } - p.SetState(447) + p.SetState(454) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(443) + p.SetState(450) p.Match(SQLiteParserCOMMA) } { - p.SetState(444) + p.SetState(451) p.Table_constraint() } - p.SetState(449) + p.SetState(456) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(450) + p.SetState(457) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(454) + p.SetState(466) p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) - switch p.GetTokenStream().LA(1) { - case SQLiteParserWITHOUT_: + if _la == SQLiteParserSTRICT_ || _la == SQLiteParserWITHOUT_ { { - p.SetState(451) - p.Match(SQLiteParserWITHOUT_) + p.SetState(458) + p.Table_option() } - { - p.SetState(452) - - var _m = p.Match(SQLiteParserIDENTIFIER) + p.SetState(463) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) - localctx.(*Create_table_stmtContext).row_ROW_ID = _m - } + for _la == SQLiteParserCOMMA { + { + p.SetState(459) + p.Match(SQLiteParserCOMMA) + } + { + p.SetState(460) + p.Table_option() + } - case SQLiteParserSTRICT_: - { - p.SetState(453) - p.Match(SQLiteParserSTRICT_) + p.SetState(465) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) } - case SQLiteParserEOF, SQLiteParserSCOL, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserATTACH_, SQLiteParserBEGIN_, SQLiteParserCOMMIT_, SQLiteParserCREATE_, SQLiteParserDEFAULT_, SQLiteParserDELETE_, SQLiteParserDETACH_, SQLiteParserDROP_, SQLiteParserEND_, SQLiteParserEXPLAIN_, SQLiteParserINSERT_, SQLiteParserPRAGMA_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserREPLACE_, SQLiteParserROLLBACK_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserUPDATE_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserWITH_: - - default: } case SQLiteParserAS_: { - p.SetState(456) + p.SetState(468) p.Match(SQLiteParserAS_) } { - p.SetState(457) + p.SetState(469) p.Select_stmt() } @@ -5174,7 +5341,7 @@ func (p *SQLiteParser) Column_def() (localctx IColumn_defContext) { _ = this localctx = NewColumn_defContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 28, SQLiteParserRULE_column_def) + p.EnterRule(localctx, 30, SQLiteParserRULE_column_def) defer func() { p.ExitRule() @@ -5196,34 +5363,34 @@ func (p *SQLiteParser) Column_def() (localctx IColumn_defContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(460) + p.SetState(472) p.Column_name() } - p.SetState(462) + p.SetState(474) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 40, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 42, p.GetParserRuleContext()) == 1 { { - p.SetState(461) + p.SetState(473) p.Type_name() } } - p.SetState(467) + p.SetState(479) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 41, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 43, p.GetParserRuleContext()) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(464) + p.SetState(476) p.Column_constraint() } } - p.SetState(469) + p.SetState(481) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 41, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 43, p.GetParserRuleContext()) } return localctx @@ -5395,7 +5562,7 @@ func (p *SQLiteParser) Type_name() (localctx IType_nameContext) { _ = this localctx = NewType_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 30, SQLiteParserRULE_type_name) + p.EnterRule(localctx, 32, SQLiteParserRULE_type_name) defer func() { p.ExitRule() @@ -5416,14 +5583,14 @@ func (p *SQLiteParser) Type_name() (localctx IType_nameContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(471) + p.SetState(483) p.GetErrorHandler().Sync(p) _alt = 1 + 1 for ok := true; ok; ok = _alt != 1 && _alt != antlr.ATNInvalidAltNumber { switch _alt { case 1 + 1: { - p.SetState(470) + p.SetState(482) p.Name() } @@ -5431,46 +5598,46 @@ func (p *SQLiteParser) Type_name() (localctx IType_nameContext) { panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(473) + p.SetState(485) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 42, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 44, p.GetParserRuleContext()) } - p.SetState(485) + p.SetState(497) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 43, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 45, p.GetParserRuleContext()) == 1 { { - p.SetState(475) + p.SetState(487) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(476) + p.SetState(488) p.Signed_number() } { - p.SetState(477) + p.SetState(489) p.Match(SQLiteParserCLOSE_PAR) } - } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 43, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 45, p.GetParserRuleContext()) == 2 { { - p.SetState(479) + p.SetState(491) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(480) + p.SetState(492) p.Signed_number() } { - p.SetState(481) + p.SetState(493) p.Match(SQLiteParserCOMMA) } { - p.SetState(482) + p.SetState(494) p.Signed_number() } { - p.SetState(483) + p.SetState(495) p.Match(SQLiteParserCLOSE_PAR) } @@ -5765,7 +5932,7 @@ func (p *SQLiteParser) Column_constraint() (localctx IColumn_constraintContext) _ = this localctx = NewColumn_constraintContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 32, SQLiteParserRULE_column_constraint) + p.EnterRule(localctx, 34, SQLiteParserRULE_column_constraint) var _la int defer func() { @@ -5785,99 +5952,99 @@ func (p *SQLiteParser) Column_constraint() (localctx IColumn_constraintContext) }() p.EnterOuterAlt(localctx, 1) - p.SetState(489) + p.SetState(501) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCONSTRAINT_ { { - p.SetState(487) + p.SetState(499) p.Match(SQLiteParserCONSTRAINT_) } { - p.SetState(488) + p.SetState(500) p.Name() } } - p.SetState(538) + p.SetState(550) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserPRIMARY_: { - p.SetState(491) + p.SetState(503) p.Match(SQLiteParserPRIMARY_) } { - p.SetState(492) + p.SetState(504) p.Match(SQLiteParserKEY_) } - p.SetState(494) + p.SetState(506) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ { { - p.SetState(493) + p.SetState(505) p.Asc_desc() } } - p.SetState(497) + p.SetState(509) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserON_ { { - p.SetState(496) + p.SetState(508) p.Conflict_clause() } } - p.SetState(500) + p.SetState(512) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAUTOINCREMENT_ { { - p.SetState(499) + p.SetState(511) p.Match(SQLiteParserAUTOINCREMENT_) } } case SQLiteParserNOT_, SQLiteParserUNIQUE_: - p.SetState(505) + p.SetState(517) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserNOT_: { - p.SetState(502) + p.SetState(514) p.Match(SQLiteParserNOT_) } { - p.SetState(503) + p.SetState(515) p.Match(SQLiteParserNULL_) } case SQLiteParserUNIQUE_: { - p.SetState(504) + p.SetState(516) p.Match(SQLiteParserUNIQUE_) } default: panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(508) + p.SetState(520) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserON_ { { - p.SetState(507) + p.SetState(519) p.Conflict_clause() } @@ -5885,53 +6052,53 @@ func (p *SQLiteParser) Column_constraint() (localctx IColumn_constraintContext) case SQLiteParserCHECK_: { - p.SetState(510) + p.SetState(522) p.Match(SQLiteParserCHECK_) } { - p.SetState(511) + p.SetState(523) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(512) + p.SetState(524) p.expr(0) } { - p.SetState(513) + p.SetState(525) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserDEFAULT_: { - p.SetState(515) + p.SetState(527) p.Match(SQLiteParserDEFAULT_) } - p.SetState(522) + p.SetState(534) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 50, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 52, p.GetParserRuleContext()) { case 1: { - p.SetState(516) + p.SetState(528) p.Signed_number() } case 2: { - p.SetState(517) + p.SetState(529) p.Literal_value() } case 3: { - p.SetState(518) + p.SetState(530) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(519) + p.SetState(531) p.expr(0) } { - p.SetState(520) + p.SetState(532) p.Match(SQLiteParserCLOSE_PAR) } @@ -5939,59 +6106,59 @@ func (p *SQLiteParser) Column_constraint() (localctx IColumn_constraintContext) case SQLiteParserCOLLATE_: { - p.SetState(524) + p.SetState(536) p.Match(SQLiteParserCOLLATE_) } { - p.SetState(525) + p.SetState(537) p.Collation_name() } case SQLiteParserREFERENCES_: { - p.SetState(526) + p.SetState(538) p.Foreign_key_clause() } case SQLiteParserAS_, SQLiteParserGENERATED_: - p.SetState(529) + p.SetState(541) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserGENERATED_ { { - p.SetState(527) + p.SetState(539) p.Match(SQLiteParserGENERATED_) } { - p.SetState(528) + p.SetState(540) p.Match(SQLiteParserALWAYS_) } } { - p.SetState(531) + p.SetState(543) p.Match(SQLiteParserAS_) } { - p.SetState(532) + p.SetState(544) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(533) + p.SetState(545) p.expr(0) } { - p.SetState(534) + p.SetState(546) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(536) + p.SetState(548) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserVIRTUAL_ || _la == SQLiteParserSTORED_ { { - p.SetState(535) + p.SetState(547) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserVIRTUAL_ || _la == SQLiteParserSTORED_) { @@ -6091,7 +6258,7 @@ func (p *SQLiteParser) Signed_number() (localctx ISigned_numberContext) { _ = this localctx = NewSigned_numberContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 34, SQLiteParserRULE_signed_number) + p.EnterRule(localctx, 36, SQLiteParserRULE_signed_number) var _la int defer func() { @@ -6111,13 +6278,13 @@ func (p *SQLiteParser) Signed_number() (localctx ISigned_numberContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(541) + p.SetState(553) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPLUS || _la == SQLiteParserMINUS { { - p.SetState(540) + p.SetState(552) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserPLUS || _la == SQLiteParserMINUS) { @@ -6130,7 +6297,7 @@ func (p *SQLiteParser) Signed_number() (localctx ISigned_numberContext) { } { - p.SetState(543) + p.SetState(555) p.Match(SQLiteParserNUMERIC_LITERAL) } @@ -6406,7 +6573,7 @@ func (p *SQLiteParser) Table_constraint() (localctx ITable_constraintContext) { _ = this localctx = NewTable_constraintContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 36, SQLiteParserRULE_table_constraint) + p.EnterRule(localctx, 38, SQLiteParserRULE_table_constraint) var _la int defer func() { @@ -6426,43 +6593,43 @@ func (p *SQLiteParser) Table_constraint() (localctx ITable_constraintContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(547) + p.SetState(559) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCONSTRAINT_ { { - p.SetState(545) + p.SetState(557) p.Match(SQLiteParserCONSTRAINT_) } { - p.SetState(546) + p.SetState(558) p.Name() } } - p.SetState(586) + p.SetState(598) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserPRIMARY_, SQLiteParserUNIQUE_: - p.SetState(552) + p.SetState(564) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserPRIMARY_: { - p.SetState(549) + p.SetState(561) p.Match(SQLiteParserPRIMARY_) } { - p.SetState(550) + p.SetState(562) p.Match(SQLiteParserKEY_) } case SQLiteParserUNIQUE_: { - p.SetState(551) + p.SetState(563) p.Match(SQLiteParserUNIQUE_) } @@ -6470,42 +6637,42 @@ func (p *SQLiteParser) Table_constraint() (localctx ITable_constraintContext) { panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } { - p.SetState(554) + p.SetState(566) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(555) + p.SetState(567) p.Indexed_column() } - p.SetState(560) + p.SetState(572) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(556) + p.SetState(568) p.Match(SQLiteParserCOMMA) } { - p.SetState(557) + p.SetState(569) p.Indexed_column() } - p.SetState(562) + p.SetState(574) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(563) + p.SetState(575) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(565) + p.SetState(577) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserON_ { { - p.SetState(564) + p.SetState(576) p.Conflict_clause() } @@ -6513,63 +6680,63 @@ func (p *SQLiteParser) Table_constraint() (localctx ITable_constraintContext) { case SQLiteParserCHECK_: { - p.SetState(567) + p.SetState(579) p.Match(SQLiteParserCHECK_) } { - p.SetState(568) + p.SetState(580) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(569) + p.SetState(581) p.expr(0) } { - p.SetState(570) + p.SetState(582) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserFOREIGN_: { - p.SetState(572) + p.SetState(584) p.Match(SQLiteParserFOREIGN_) } { - p.SetState(573) + p.SetState(585) p.Match(SQLiteParserKEY_) } { - p.SetState(574) + p.SetState(586) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(575) + p.SetState(587) p.Column_name() } - p.SetState(580) + p.SetState(592) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(576) + p.SetState(588) p.Match(SQLiteParserCOMMA) } { - p.SetState(577) + p.SetState(589) p.Column_name() } - p.SetState(582) + p.SetState(594) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(583) + p.SetState(595) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(584) + p.SetState(596) p.Foreign_key_clause() } @@ -6908,7 +7075,7 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext _ = this localctx = NewForeign_key_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 38, SQLiteParserRULE_foreign_key_clause) + p.EnterRule(localctx, 40, SQLiteParserRULE_foreign_key_clause) var _la int defer func() { @@ -6929,66 +7096,66 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext p.EnterOuterAlt(localctx, 1) { - p.SetState(588) + p.SetState(600) p.Match(SQLiteParserREFERENCES_) } { - p.SetState(589) + p.SetState(601) p.Foreign_table() } - p.SetState(601) + p.SetState(613) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(590) + p.SetState(602) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(591) + p.SetState(603) p.Column_name() } - p.SetState(596) + p.SetState(608) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(592) + p.SetState(604) p.Match(SQLiteParserCOMMA) } { - p.SetState(593) + p.SetState(605) p.Column_name() } - p.SetState(598) + p.SetState(610) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(599) + p.SetState(611) p.Match(SQLiteParserCLOSE_PAR) } } - p.SetState(617) + p.SetState(629) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserMATCH_ || _la == SQLiteParserON_ { - p.SetState(615) + p.SetState(627) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserON_: { - p.SetState(603) + p.SetState(615) p.Match(SQLiteParserON_) } { - p.SetState(604) + p.SetState(616) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserDELETE_ || _la == SQLiteParserUPDATE_) { @@ -6998,17 +7165,17 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext p.Consume() } } - p.SetState(611) + p.SetState(623) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserSET_: { - p.SetState(605) + p.SetState(617) p.Match(SQLiteParserSET_) } { - p.SetState(606) + p.SetState(618) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserDEFAULT_ || _la == SQLiteParserNULL_) { @@ -7021,23 +7188,23 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext case SQLiteParserCASCADE_: { - p.SetState(607) + p.SetState(619) p.Match(SQLiteParserCASCADE_) } case SQLiteParserRESTRICT_: { - p.SetState(608) + p.SetState(620) p.Match(SQLiteParserRESTRICT_) } case SQLiteParserNO_: { - p.SetState(609) + p.SetState(621) p.Match(SQLiteParserNO_) } { - p.SetState(610) + p.SetState(622) p.Match(SQLiteParserACTION_) } @@ -7047,11 +7214,11 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext case SQLiteParserMATCH_: { - p.SetState(613) + p.SetState(625) p.Match(SQLiteParserMATCH_) } { - p.SetState(614) + p.SetState(626) p.Name() } @@ -7059,40 +7226,40 @@ func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(619) + p.SetState(631) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(628) + p.SetState(640) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 68, p.GetParserRuleContext()) == 1 { - p.SetState(621) + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 70, p.GetParserRuleContext()) == 1 { + p.SetState(633) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNOT_ { { - p.SetState(620) + p.SetState(632) p.Match(SQLiteParserNOT_) } } { - p.SetState(623) + p.SetState(635) p.Match(SQLiteParserDEFERRABLE_) } - p.SetState(626) + p.SetState(638) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserINITIALLY_ { { - p.SetState(624) + p.SetState(636) p.Match(SQLiteParserINITIALLY_) } { - p.SetState(625) + p.SetState(637) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserDEFERRED_ || _la == SQLiteParserIMMEDIATE_) { @@ -7210,7 +7377,7 @@ func (p *SQLiteParser) Conflict_clause() (localctx IConflict_clauseContext) { _ = this localctx = NewConflict_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 40, SQLiteParserRULE_conflict_clause) + p.EnterRule(localctx, 42, SQLiteParserRULE_conflict_clause) var _la int defer func() { @@ -7231,15 +7398,15 @@ func (p *SQLiteParser) Conflict_clause() (localctx IConflict_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(630) + p.SetState(642) p.Match(SQLiteParserON_) } { - p.SetState(631) + p.SetState(643) p.Match(SQLiteParserCONFLICT_) } { - p.SetState(632) + p.SetState(644) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserABORT_ || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&19140298416325121) != 0)) { @@ -7736,7 +7903,7 @@ func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtConte _ = this localctx = NewCreate_trigger_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 42, SQLiteParserRULE_create_trigger_stmt) + p.EnterRule(localctx, 44, SQLiteParserRULE_create_trigger_stmt) var _la int defer func() { @@ -7757,16 +7924,16 @@ func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(634) + p.SetState(646) p.Match(SQLiteParserCREATE_) } - p.SetState(636) + p.SetState(648) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ { { - p.SetState(635) + p.SetState(647) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) { @@ -7779,68 +7946,68 @@ func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtConte } { - p.SetState(638) + p.SetState(650) p.Match(SQLiteParserTRIGGER_) } - p.SetState(642) + p.SetState(654) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 70, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 72, p.GetParserRuleContext()) == 1 { { - p.SetState(639) + p.SetState(651) p.Match(SQLiteParserIF_) } { - p.SetState(640) + p.SetState(652) p.Match(SQLiteParserNOT_) } { - p.SetState(641) + p.SetState(653) p.Match(SQLiteParserEXISTS_) } } - p.SetState(647) + p.SetState(659) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 71, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 73, p.GetParserRuleContext()) == 1 { { - p.SetState(644) + p.SetState(656) p.Schema_name() } { - p.SetState(645) + p.SetState(657) p.Match(SQLiteParserDOT) } } { - p.SetState(649) + p.SetState(661) p.Trigger_name() } - p.SetState(654) + p.SetState(666) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserBEFORE_: { - p.SetState(650) + p.SetState(662) p.Match(SQLiteParserBEFORE_) } case SQLiteParserAFTER_: { - p.SetState(651) + p.SetState(663) p.Match(SQLiteParserAFTER_) } case SQLiteParserINSTEAD_: { - p.SetState(652) + p.SetState(664) p.Match(SQLiteParserINSTEAD_) } { - p.SetState(653) + p.SetState(665) p.Match(SQLiteParserOF_) } @@ -7848,55 +8015,55 @@ func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtConte default: } - p.SetState(670) + p.SetState(682) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserDELETE_: { - p.SetState(656) + p.SetState(668) p.Match(SQLiteParserDELETE_) } case SQLiteParserINSERT_: { - p.SetState(657) + p.SetState(669) p.Match(SQLiteParserINSERT_) } case SQLiteParserUPDATE_: { - p.SetState(658) + p.SetState(670) p.Match(SQLiteParserUPDATE_) } - p.SetState(668) + p.SetState(680) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOF_ { { - p.SetState(659) + p.SetState(671) p.Match(SQLiteParserOF_) } { - p.SetState(660) + p.SetState(672) p.Column_name() } - p.SetState(665) + p.SetState(677) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(661) + p.SetState(673) p.Match(SQLiteParserCOMMA) } { - p.SetState(662) + p.SetState(674) p.Column_name() } - p.SetState(667) + p.SetState(679) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -7907,95 +8074,95 @@ func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtConte panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } { - p.SetState(672) + p.SetState(684) p.Match(SQLiteParserON_) } { - p.SetState(673) + p.SetState(685) p.Table_name() } - p.SetState(677) + p.SetState(689) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserFOR_ { { - p.SetState(674) + p.SetState(686) p.Match(SQLiteParserFOR_) } { - p.SetState(675) + p.SetState(687) p.Match(SQLiteParserEACH_) } { - p.SetState(676) + p.SetState(688) p.Match(SQLiteParserROW_) } } - p.SetState(681) + p.SetState(693) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHEN_ { { - p.SetState(679) + p.SetState(691) p.Match(SQLiteParserWHEN_) } { - p.SetState(680) + p.SetState(692) p.expr(0) } } { - p.SetState(683) + p.SetState(695) p.Match(SQLiteParserBEGIN_) } - p.SetState(692) + p.SetState(704) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ok := true; ok; ok = _la == SQLiteParserDEFAULT_ || _la == SQLiteParserDELETE_ || ((int64((_la-88)) & ^0x3f) == 0 && ((int64(1)<<(_la-88))&4773820020239106049) != 0) { - p.SetState(688) + p.SetState(700) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 78, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 80, p.GetParserRuleContext()) { case 1: { - p.SetState(684) + p.SetState(696) p.Update_stmt() } case 2: { - p.SetState(685) + p.SetState(697) p.Insert_stmt() } case 3: { - p.SetState(686) + p.SetState(698) p.Delete_stmt() } case 4: { - p.SetState(687) + p.SetState(699) p.Select_stmt() } } { - p.SetState(690) + p.SetState(702) p.Match(SQLiteParserSCOL) } - p.SetState(694) + p.SetState(706) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(696) + p.SetState(708) p.Match(SQLiteParserEND_) } @@ -8226,7 +8393,7 @@ func (p *SQLiteParser) Create_view_stmt() (localctx ICreate_view_stmtContext) { _ = this localctx = NewCreate_view_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 44, SQLiteParserRULE_create_view_stmt) + p.EnterRule(localctx, 46, SQLiteParserRULE_create_view_stmt) var _la int defer func() { @@ -8247,16 +8414,16 @@ func (p *SQLiteParser) Create_view_stmt() (localctx ICreate_view_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(698) + p.SetState(710) p.Match(SQLiteParserCREATE_) } - p.SetState(700) + p.SetState(712) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ { { - p.SetState(699) + p.SetState(711) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) { @@ -8269,88 +8436,88 @@ func (p *SQLiteParser) Create_view_stmt() (localctx ICreate_view_stmtContext) { } { - p.SetState(702) + p.SetState(714) p.Match(SQLiteParserVIEW_) } - p.SetState(706) + p.SetState(718) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 81, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 83, p.GetParserRuleContext()) == 1 { { - p.SetState(703) + p.SetState(715) p.Match(SQLiteParserIF_) } { - p.SetState(704) + p.SetState(716) p.Match(SQLiteParserNOT_) } { - p.SetState(705) + p.SetState(717) p.Match(SQLiteParserEXISTS_) } } - p.SetState(711) + p.SetState(723) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 82, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 84, p.GetParserRuleContext()) == 1 { { - p.SetState(708) + p.SetState(720) p.Schema_name() } { - p.SetState(709) + p.SetState(721) p.Match(SQLiteParserDOT) } } { - p.SetState(713) + p.SetState(725) p.View_name() } - p.SetState(725) + p.SetState(737) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(714) + p.SetState(726) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(715) + p.SetState(727) p.Column_name() } - p.SetState(720) + p.SetState(732) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(716) + p.SetState(728) p.Match(SQLiteParserCOMMA) } { - p.SetState(717) + p.SetState(729) p.Column_name() } - p.SetState(722) + p.SetState(734) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(723) + p.SetState(735) p.Match(SQLiteParserCLOSE_PAR) } } { - p.SetState(727) + p.SetState(739) p.Match(SQLiteParserAS_) } { - p.SetState(728) + p.SetState(740) p.Select_stmt() } @@ -8576,7 +8743,7 @@ func (p *SQLiteParser) Create_virtual_table_stmt() (localctx ICreate_virtual_tab _ = this localctx = NewCreate_virtual_table_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 46, SQLiteParserRULE_create_virtual_table_stmt) + p.EnterRule(localctx, 48, SQLiteParserRULE_create_virtual_table_stmt) var _la int defer func() { @@ -8597,94 +8764,94 @@ func (p *SQLiteParser) Create_virtual_table_stmt() (localctx ICreate_virtual_tab p.EnterOuterAlt(localctx, 1) { - p.SetState(730) + p.SetState(742) p.Match(SQLiteParserCREATE_) } { - p.SetState(731) + p.SetState(743) p.Match(SQLiteParserVIRTUAL_) } { - p.SetState(732) + p.SetState(744) p.Match(SQLiteParserTABLE_) } - p.SetState(736) + p.SetState(748) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 85, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 87, p.GetParserRuleContext()) == 1 { { - p.SetState(733) + p.SetState(745) p.Match(SQLiteParserIF_) } { - p.SetState(734) + p.SetState(746) p.Match(SQLiteParserNOT_) } { - p.SetState(735) + p.SetState(747) p.Match(SQLiteParserEXISTS_) } } - p.SetState(741) + p.SetState(753) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 86, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 88, p.GetParserRuleContext()) == 1 { { - p.SetState(738) + p.SetState(750) p.Schema_name() } { - p.SetState(739) + p.SetState(751) p.Match(SQLiteParserDOT) } } { - p.SetState(743) + p.SetState(755) p.Table_name() } { - p.SetState(744) + p.SetState(756) p.Match(SQLiteParserUSING_) } { - p.SetState(745) + p.SetState(757) p.Module_name() } - p.SetState(757) + p.SetState(769) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(746) + p.SetState(758) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(747) + p.SetState(759) p.Module_argument() } - p.SetState(752) + p.SetState(764) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(748) + p.SetState(760) p.Match(SQLiteParserCOMMA) } { - p.SetState(749) + p.SetState(761) p.Module_argument() } - p.SetState(754) + p.SetState(766) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(755) + p.SetState(767) p.Match(SQLiteParserCLOSE_PAR) } @@ -8894,7 +9061,7 @@ func (p *SQLiteParser) With_clause() (localctx IWith_clauseContext) { _ = this localctx = NewWith_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 48, SQLiteParserRULE_with_clause) + p.EnterRule(localctx, 50, SQLiteParserRULE_with_clause) var _la int defer func() { @@ -8915,70 +9082,70 @@ func (p *SQLiteParser) With_clause() (localctx IWith_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(759) + p.SetState(771) p.Match(SQLiteParserWITH_) } - p.SetState(761) + p.SetState(773) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 89, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 91, p.GetParserRuleContext()) == 1 { { - p.SetState(760) + p.SetState(772) p.Match(SQLiteParserRECURSIVE_) } } { - p.SetState(763) + p.SetState(775) p.Cte_table_name() } { - p.SetState(764) + p.SetState(776) p.Match(SQLiteParserAS_) } { - p.SetState(765) + p.SetState(777) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(766) + p.SetState(778) p.Select_stmt() } { - p.SetState(767) + p.SetState(779) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(777) + p.SetState(789) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(768) + p.SetState(780) p.Match(SQLiteParserCOMMA) } { - p.SetState(769) + p.SetState(781) p.Cte_table_name() } { - p.SetState(770) + p.SetState(782) p.Match(SQLiteParserAS_) } { - p.SetState(771) + p.SetState(783) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(772) + p.SetState(784) p.Select_stmt() } { - p.SetState(773) + p.SetState(785) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(779) + p.SetState(791) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -9131,7 +9298,7 @@ func (p *SQLiteParser) Cte_table_name() (localctx ICte_table_nameContext) { _ = this localctx = NewCte_table_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 50, SQLiteParserRULE_cte_table_name) + p.EnterRule(localctx, 52, SQLiteParserRULE_cte_table_name) var _la int defer func() { @@ -9152,42 +9319,42 @@ func (p *SQLiteParser) Cte_table_name() (localctx ICte_table_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(780) + p.SetState(792) p.Table_name() } - p.SetState(792) + p.SetState(804) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(781) + p.SetState(793) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(782) + p.SetState(794) p.Column_name() } - p.SetState(787) + p.SetState(799) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(783) + p.SetState(795) p.Match(SQLiteParserCOMMA) } { - p.SetState(784) + p.SetState(796) p.Column_name() } - p.SetState(789) + p.SetState(801) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(790) + p.SetState(802) p.Match(SQLiteParserCLOSE_PAR) } @@ -9337,7 +9504,7 @@ func (p *SQLiteParser) Recursive_cte() (localctx IRecursive_cteContext) { _ = this localctx = NewRecursive_cteContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 52, SQLiteParserRULE_recursive_cte) + p.EnterRule(localctx, 54, SQLiteParserRULE_recursive_cte) var _la int defer func() { @@ -9358,42 +9525,42 @@ func (p *SQLiteParser) Recursive_cte() (localctx IRecursive_cteContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(794) + p.SetState(806) p.Cte_table_name() } { - p.SetState(795) + p.SetState(807) p.Match(SQLiteParserAS_) } { - p.SetState(796) + p.SetState(808) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(797) + p.SetState(809) p.Initial_select() } { - p.SetState(798) + p.SetState(810) p.Match(SQLiteParserUNION_) } - p.SetState(800) + p.SetState(812) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserALL_ { { - p.SetState(799) + p.SetState(811) p.Match(SQLiteParserALL_) } } { - p.SetState(802) + p.SetState(814) p.Recursive__select() } { - p.SetState(803) + p.SetState(815) p.Match(SQLiteParserCLOSE_PAR) } @@ -9577,7 +9744,7 @@ func (p *SQLiteParser) Common_table_expression() (localctx ICommon_table_express _ = this localctx = NewCommon_table_expressionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 54, SQLiteParserRULE_common_table_expression) + p.EnterRule(localctx, 56, SQLiteParserRULE_common_table_expression) var _la int defer func() { @@ -9598,60 +9765,60 @@ func (p *SQLiteParser) Common_table_expression() (localctx ICommon_table_express p.EnterOuterAlt(localctx, 1) { - p.SetState(805) + p.SetState(817) p.Table_name() } - p.SetState(817) + p.SetState(829) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(806) + p.SetState(818) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(807) + p.SetState(819) p.Column_name() } - p.SetState(812) + p.SetState(824) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(808) + p.SetState(820) p.Match(SQLiteParserCOMMA) } { - p.SetState(809) + p.SetState(821) p.Column_name() } - p.SetState(814) + p.SetState(826) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(815) + p.SetState(827) p.Match(SQLiteParserCLOSE_PAR) } } { - p.SetState(819) + p.SetState(831) p.Match(SQLiteParserAS_) } { - p.SetState(820) + p.SetState(832) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(821) + p.SetState(833) p.Select_stmt() } { - p.SetState(822) + p.SetState(834) p.Match(SQLiteParserCLOSE_PAR) } @@ -9844,7 +10011,7 @@ func (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseContext) { _ = this localctx = NewReturning_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 56, SQLiteParserRULE_returning_clause) + p.EnterRule(localctx, 58, SQLiteParserRULE_returning_clause) var _la int defer func() { @@ -9865,43 +10032,43 @@ func (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(824) + p.SetState(836) p.Match(SQLiteParserRETURNING_) } - p.SetState(833) + p.SetState(845) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserSTAR: { - p.SetState(825) + p.SetState(837) p.Match(SQLiteParserSTAR) } case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: { - p.SetState(826) + p.SetState(838) p.expr(0) } - p.SetState(831) + p.SetState(843) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL { - p.SetState(828) + p.SetState(840) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ { { - p.SetState(827) + p.SetState(839) p.Match(SQLiteParserAS_) } } { - p.SetState(830) + p.SetState(842) p.Column_alias() } @@ -9910,48 +10077,48 @@ func (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseContext) { default: panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(848) + p.SetState(860) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(835) + p.SetState(847) p.Match(SQLiteParserCOMMA) } - p.SetState(844) + p.SetState(856) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserSTAR: { - p.SetState(836) + p.SetState(848) p.Match(SQLiteParserSTAR) } case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: { - p.SetState(837) + p.SetState(849) p.expr(0) } - p.SetState(842) + p.SetState(854) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL { - p.SetState(839) + p.SetState(851) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ { { - p.SetState(838) + p.SetState(850) p.Match(SQLiteParserAS_) } } { - p.SetState(841) + p.SetState(853) p.Column_alias() } @@ -9961,7 +10128,7 @@ func (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseContext) { panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(850) + p.SetState(862) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -10117,7 +10284,7 @@ func (p *SQLiteParser) Delete_stmt() (localctx IDelete_stmtContext) { _ = this localctx = NewDelete_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 58, SQLiteParserRULE_delete_stmt) + p.EnterRule(localctx, 60, SQLiteParserRULE_delete_stmt) var _la int defer func() { @@ -10137,51 +10304,51 @@ func (p *SQLiteParser) Delete_stmt() (localctx IDelete_stmtContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(852) + p.SetState(864) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(851) + p.SetState(863) p.With_clause() } } { - p.SetState(854) + p.SetState(866) p.Match(SQLiteParserDELETE_) } { - p.SetState(855) + p.SetState(867) p.Match(SQLiteParserFROM_) } { - p.SetState(856) + p.SetState(868) p.Qualified_table_name() } - p.SetState(859) + p.SetState(871) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(857) + p.SetState(869) p.Match(SQLiteParserWHERE_) } { - p.SetState(858) + p.SetState(870) p.expr(0) } } - p.SetState(862) + p.SetState(874) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserRETURNING_ { { - p.SetState(861) + p.SetState(873) p.Returning_clause() } @@ -10372,7 +10539,7 @@ func (p *SQLiteParser) Delete_stmt_limited() (localctx IDelete_stmt_limitedConte _ = this localctx = NewDelete_stmt_limitedContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 60, SQLiteParserRULE_delete_stmt_limited) + p.EnterRule(localctx, 62, SQLiteParserRULE_delete_stmt_limited) var _la int defer func() { @@ -10392,73 +10559,73 @@ func (p *SQLiteParser) Delete_stmt_limited() (localctx IDelete_stmt_limitedConte }() p.EnterOuterAlt(localctx, 1) - p.SetState(865) + p.SetState(877) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(864) + p.SetState(876) p.With_clause() } } { - p.SetState(867) + p.SetState(879) p.Match(SQLiteParserDELETE_) } { - p.SetState(868) + p.SetState(880) p.Match(SQLiteParserFROM_) } { - p.SetState(869) + p.SetState(881) p.Qualified_table_name() } - p.SetState(872) + p.SetState(884) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(870) + p.SetState(882) p.Match(SQLiteParserWHERE_) } { - p.SetState(871) + p.SetState(883) p.expr(0) } } - p.SetState(878) + p.SetState(890) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserLIMIT_ || _la == SQLiteParserORDER_ { - p.SetState(875) + p.SetState(887) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(874) + p.SetState(886) p.Order_by_stmt() } } { - p.SetState(877) + p.SetState(889) p.Limit_stmt() } } - p.SetState(881) + p.SetState(893) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserRETURNING_ { { - p.SetState(880) + p.SetState(892) p.Returning_clause() } @@ -10559,7 +10726,7 @@ func (p *SQLiteParser) Detach_stmt() (localctx IDetach_stmtContext) { _ = this localctx = NewDetach_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 62, SQLiteParserRULE_detach_stmt) + p.EnterRule(localctx, 64, SQLiteParserRULE_detach_stmt) defer func() { p.ExitRule() @@ -10579,21 +10746,21 @@ func (p *SQLiteParser) Detach_stmt() (localctx IDetach_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(883) + p.SetState(895) p.Match(SQLiteParserDETACH_) } - p.SetState(885) + p.SetState(897) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 111, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 113, p.GetParserRuleContext()) == 1 { { - p.SetState(884) + p.SetState(896) p.Match(SQLiteParserDATABASE_) } } { - p.SetState(887) + p.SetState(899) p.Schema_name() } @@ -10750,7 +10917,7 @@ func (p *SQLiteParser) Drop_stmt() (localctx IDrop_stmtContext) { _ = this localctx = NewDrop_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 64, SQLiteParserRULE_drop_stmt) + p.EnterRule(localctx, 66, SQLiteParserRULE_drop_stmt) var _la int defer func() { @@ -10771,11 +10938,11 @@ func (p *SQLiteParser) Drop_stmt() (localctx IDrop_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(889) + p.SetState(901) p.Match(SQLiteParserDROP_) } { - p.SetState(890) + p.SetState(902) var _lt = p.GetTokenStream().LT(1) @@ -10792,36 +10959,36 @@ func (p *SQLiteParser) Drop_stmt() (localctx IDrop_stmtContext) { p.Consume() } } - p.SetState(893) + p.SetState(905) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 112, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 114, p.GetParserRuleContext()) == 1 { { - p.SetState(891) + p.SetState(903) p.Match(SQLiteParserIF_) } { - p.SetState(892) + p.SetState(904) p.Match(SQLiteParserEXISTS_) } } - p.SetState(898) + p.SetState(910) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 113, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 115, p.GetParserRuleContext()) == 1 { { - p.SetState(895) + p.SetState(907) p.Schema_name() } { - p.SetState(896) + p.SetState(908) p.Match(SQLiteParserDOT) } } { - p.SetState(900) + p.SetState(912) p.Any_name() } @@ -12278,8 +12445,8 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { localctx = NewExprContext(p, p.GetParserRuleContext(), _parentState) var _prevctx IExprContext = localctx var _ antlr.ParserRuleContext = _prevctx // TODO: To prevent unused variable warning. - _startState := 66 - p.EnterRecursionRule(localctx, 66, SQLiteParserRULE_expr, _p) + _startState := 68 + p.EnterRecursionRule(localctx, 68, SQLiteParserRULE_expr, _p) var _la int defer func() { @@ -12301,16 +12468,16 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(991) + p.SetState(1003) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 127, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 129, p.GetParserRuleContext()) { case 1: localctx = NewExpr_literalContext(p, localctx) p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(903) + p.SetState(915) p.Literal_value() } @@ -12319,7 +12486,7 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(904) + p.SetState(916) p.Match(SQLiteParserNUMBERED_BIND_PARAMETER) } @@ -12328,7 +12495,7 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(905) + p.SetState(917) p.Match(SQLiteParserNAMED_BIND_PARAMETER) } @@ -12336,36 +12503,36 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { localctx = NewExpr_qualified_column_nameContext(p, localctx) p.SetParserRuleContext(localctx) _prevctx = localctx - p.SetState(914) + p.SetState(926) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 115, p.GetParserRuleContext()) == 1 { - p.SetState(909) + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 117, p.GetParserRuleContext()) == 1 { + p.SetState(921) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 114, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 116, p.GetParserRuleContext()) == 1 { { - p.SetState(906) + p.SetState(918) p.Schema_name() } { - p.SetState(907) + p.SetState(919) p.Match(SQLiteParserDOT) } } { - p.SetState(911) + p.SetState(923) p.Table_name() } { - p.SetState(912) + p.SetState(924) p.Match(SQLiteParserDOT) } } { - p.SetState(916) + p.SetState(928) p.Column_name() } @@ -12374,11 +12541,11 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(917) + p.SetState(929) p.Unary_operator() } { - p.SetState(918) + p.SetState(930) p.expr(20) } @@ -12387,54 +12554,54 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(920) + p.SetState(932) p.Qualified_function_name() } { - p.SetState(921) + p.SetState(933) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(934) + p.SetState(946) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: - p.SetState(923) + p.SetState(935) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 116, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 118, p.GetParserRuleContext()) == 1 { { - p.SetState(922) + p.SetState(934) p.Match(SQLiteParserDISTINCT_) } } { - p.SetState(925) + p.SetState(937) p.expr(0) } - p.SetState(930) + p.SetState(942) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(926) + p.SetState(938) p.Match(SQLiteParserCOMMA) } { - p.SetState(927) + p.SetState(939) p.expr(0) } - p.SetState(932) + p.SetState(944) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case SQLiteParserSTAR: { - p.SetState(933) + p.SetState(945) p.Match(SQLiteParserSTAR) } @@ -12443,25 +12610,25 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { default: } { - p.SetState(936) + p.SetState(948) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(938) + p.SetState(950) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 119, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 121, p.GetParserRuleContext()) == 1 { { - p.SetState(937) + p.SetState(949) p.Filter_clause() } } - p.SetState(941) + p.SetState(953) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 120, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 122, p.GetParserRuleContext()) == 1 { { - p.SetState(940) + p.SetState(952) p.Over_clause() } @@ -12472,33 +12639,33 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(943) + p.SetState(955) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(944) + p.SetState(956) p.expr(0) } - p.SetState(949) + p.SetState(961) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(945) + p.SetState(957) p.Match(SQLiteParserCOMMA) } { - p.SetState(946) + p.SetState(958) p.expr(0) } - p.SetState(951) + p.SetState(963) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(952) + p.SetState(964) p.Match(SQLiteParserCLOSE_PAR) } @@ -12507,27 +12674,27 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(954) + p.SetState(966) p.Match(SQLiteParserCAST_) } { - p.SetState(955) + p.SetState(967) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(956) + p.SetState(968) p.expr(0) } { - p.SetState(957) + p.SetState(969) p.Match(SQLiteParserAS_) } { - p.SetState(958) + p.SetState(970) p.Type_name() } { - p.SetState(959) + p.SetState(971) p.Match(SQLiteParserCLOSE_PAR) } @@ -12535,38 +12702,38 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { localctx = NewExpr_in_selectContext(p, localctx) p.SetParserRuleContext(localctx) _prevctx = localctx - p.SetState(965) + p.SetState(977) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserEXISTS_ || _la == SQLiteParserNOT_ { - p.SetState(962) + p.SetState(974) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNOT_ { { - p.SetState(961) + p.SetState(973) p.Match(SQLiteParserNOT_) } } { - p.SetState(964) + p.SetState(976) p.Match(SQLiteParserEXISTS_) } } { - p.SetState(967) + p.SetState(979) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(968) + p.SetState(980) p.Select_stmt() } { - p.SetState(969) + p.SetState(981) p.Match(SQLiteParserCLOSE_PAR) } @@ -12575,62 +12742,62 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(971) + p.SetState(983) p.Match(SQLiteParserCASE_) } - p.SetState(973) + p.SetState(985) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 124, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 126, p.GetParserRuleContext()) == 1 { { - p.SetState(972) + p.SetState(984) p.expr(0) } } - p.SetState(980) + p.SetState(992) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ok := true; ok; ok = _la == SQLiteParserWHEN_ { { - p.SetState(975) + p.SetState(987) p.Match(SQLiteParserWHEN_) } { - p.SetState(976) + p.SetState(988) p.expr(0) } { - p.SetState(977) + p.SetState(989) p.Match(SQLiteParserTHEN_) } { - p.SetState(978) + p.SetState(990) p.expr(0) } - p.SetState(982) + p.SetState(994) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(986) + p.SetState(998) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserELSE_ { { - p.SetState(984) + p.SetState(996) p.Match(SQLiteParserELSE_) } { - p.SetState(985) + p.SetState(997) p.expr(0) } } { - p.SetState(988) + p.SetState(1000) p.Match(SQLiteParserEND_) } @@ -12639,15 +12806,15 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.SetParserRuleContext(localctx) _prevctx = localctx { - p.SetState(990) + p.SetState(1002) p.Raise_function() } } p.GetParserRuleContext().SetStop(p.GetTokenStream().LT(-1)) - p.SetState(1106) + p.SetState(1118) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 142, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 144, p.GetParserRuleContext()) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { @@ -12655,36 +12822,36 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { p.TriggerExitRuleEvent() } _prevctx = localctx - p.SetState(1104) + p.SetState(1116) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 141, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 143, p.GetParserRuleContext()) { case 1: localctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(993) + p.SetState(1005) if !(p.Precpred(p.GetParserRuleContext(), 19)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 19)", "")) } { - p.SetState(994) + p.SetState(1006) p.Match(SQLiteParserPIPE2) } { - p.SetState(995) + p.SetState(1007) p.expr(20) } case 2: localctx = NewExpr_math_opContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(996) + p.SetState(1008) if !(p.Precpred(p.GetParserRuleContext(), 18)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 18)", "")) } { - p.SetState(997) + p.SetState(1009) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&12416) != 0) { @@ -12695,20 +12862,20 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } { - p.SetState(998) + p.SetState(1010) p.expr(19) } case 3: localctx = NewExpr_math_opContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(999) + p.SetState(1011) if !(p.Precpred(p.GetParserRuleContext(), 17)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 17)", "")) } { - p.SetState(1000) + p.SetState(1012) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserPLUS || _la == SQLiteParserMINUS) { @@ -12719,20 +12886,20 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } { - p.SetState(1001) + p.SetState(1013) p.expr(18) } case 4: localctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1002) + p.SetState(1014) if !(p.Precpred(p.GetParserRuleContext(), 16)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 16)", "")) } { - p.SetState(1003) + p.SetState(1015) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&245760) != 0) { @@ -12743,20 +12910,20 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } { - p.SetState(1004) + p.SetState(1016) p.expr(17) } case 5: localctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1005) + p.SetState(1017) if !(p.Precpred(p.GetParserRuleContext(), 15)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 15)", "")) } { - p.SetState(1006) + p.SetState(1018) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3932160) != 0) { @@ -12767,205 +12934,205 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } { - p.SetState(1007) + p.SetState(1019) p.expr(16) } case 6: localctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1008) + p.SetState(1020) if !(p.Precpred(p.GetParserRuleContext(), 14)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 14)", "")) } - p.SetState(1021) + p.SetState(1033) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 128, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 130, p.GetParserRuleContext()) { case 1: { - p.SetState(1009) + p.SetState(1021) p.Match(SQLiteParserASSIGN) } case 2: { - p.SetState(1010) + p.SetState(1022) p.Match(SQLiteParserEQ) } case 3: { - p.SetState(1011) + p.SetState(1023) p.Match(SQLiteParserNOT_EQ1) } case 4: { - p.SetState(1012) + p.SetState(1024) p.Match(SQLiteParserNOT_EQ2) } case 5: { - p.SetState(1013) + p.SetState(1025) p.Match(SQLiteParserIS_) } case 6: { - p.SetState(1014) + p.SetState(1026) p.Match(SQLiteParserIS_) } { - p.SetState(1015) + p.SetState(1027) p.Match(SQLiteParserNOT_) } case 7: { - p.SetState(1016) + p.SetState(1028) p.Match(SQLiteParserIN_) } case 8: { - p.SetState(1017) + p.SetState(1029) p.Match(SQLiteParserLIKE_) } case 9: { - p.SetState(1018) + p.SetState(1030) p.Match(SQLiteParserGLOB_) } case 10: { - p.SetState(1019) + p.SetState(1031) p.Match(SQLiteParserMATCH_) } case 11: { - p.SetState(1020) + p.SetState(1032) p.Match(SQLiteParserREGEXP_) } } { - p.SetState(1023) + p.SetState(1035) p.expr(15) } case 7: localctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1024) + p.SetState(1036) if !(p.Precpred(p.GetParserRuleContext(), 13)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 13)", "")) } { - p.SetState(1025) + p.SetState(1037) p.Match(SQLiteParserAND_) } { - p.SetState(1026) + p.SetState(1038) p.expr(14) } case 8: localctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1027) + p.SetState(1039) if !(p.Precpred(p.GetParserRuleContext(), 12)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 12)", "")) } { - p.SetState(1028) + p.SetState(1040) p.Match(SQLiteParserOR_) } { - p.SetState(1029) + p.SetState(1041) p.expr(13) } case 9: localctx = NewExpr_betweenContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1030) + p.SetState(1042) if !(p.Precpred(p.GetParserRuleContext(), 5)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 5)", "")) } - p.SetState(1032) + p.SetState(1044) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNOT_ { { - p.SetState(1031) + p.SetState(1043) p.Match(SQLiteParserNOT_) } } { - p.SetState(1034) + p.SetState(1046) p.Match(SQLiteParserBETWEEN_) } { - p.SetState(1035) + p.SetState(1047) p.expr(0) } { - p.SetState(1036) + p.SetState(1048) p.Match(SQLiteParserAND_) } { - p.SetState(1037) + p.SetState(1049) p.expr(6) } case 10: localctx = NewExpr_collateContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1039) + p.SetState(1051) if !(p.Precpred(p.GetParserRuleContext(), 8)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 8)", "")) } { - p.SetState(1040) + p.SetState(1052) p.Match(SQLiteParserCOLLATE_) } { - p.SetState(1041) + p.SetState(1053) p.Collation_name() } case 11: localctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1042) + p.SetState(1054) if !(p.Precpred(p.GetParserRuleContext(), 7)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 7)", "")) } - p.SetState(1044) + p.SetState(1056) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNOT_ { { - p.SetState(1043) + p.SetState(1055) p.Match(SQLiteParserNOT_) } } { - p.SetState(1046) + p.SetState(1058) _la = p.GetTokenStream().LA(1) if !((int64((_la-77)) & ^0x3f) == 0 && ((int64(1)<<(_la-77))&2199028498433) != 0) { @@ -12976,19 +13143,19 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } { - p.SetState(1047) + p.SetState(1059) p.expr(0) } - p.SetState(1050) + p.SetState(1062) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 131, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 133, p.GetParserRuleContext()) == 1 { { - p.SetState(1048) + p.SetState(1060) p.Match(SQLiteParserESCAPE_) } { - p.SetState(1049) + p.SetState(1061) p.expr(0) } @@ -12997,34 +13164,34 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { case 12: localctx = NewExpr_null_compContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1052) + p.SetState(1064) if !(p.Precpred(p.GetParserRuleContext(), 6)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 6)", "")) } - p.SetState(1057) + p.SetState(1069) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserISNULL_: { - p.SetState(1053) + p.SetState(1065) p.Match(SQLiteParserISNULL_) } case SQLiteParserNOTNULL_: { - p.SetState(1054) + p.SetState(1066) p.Match(SQLiteParserNOTNULL_) } case SQLiteParserNOT_: { - p.SetState(1055) + p.SetState(1067) p.Match(SQLiteParserNOT_) } { - p.SetState(1056) + p.SetState(1068) p.Match(SQLiteParserNULL_) } @@ -13035,147 +13202,147 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { case 13: localctx = NewExpr_in_selectContext(p, NewExprContext(p, _parentctx, _parentState)) p.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr) - p.SetState(1059) + p.SetState(1071) if !(p.Precpred(p.GetParserRuleContext(), 4)) { panic(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 4)", "")) } - p.SetState(1061) + p.SetState(1073) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNOT_ { { - p.SetState(1060) + p.SetState(1072) p.Match(SQLiteParserNOT_) } } { - p.SetState(1063) + p.SetState(1075) p.Match(SQLiteParserIN_) } - p.SetState(1102) + p.SetState(1114) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 140, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 142, p.GetParserRuleContext()) { case 1: { - p.SetState(1064) + p.SetState(1076) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1074) + p.SetState(1086) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 135, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 137, p.GetParserRuleContext()) == 1 { { - p.SetState(1065) + p.SetState(1077) p.Select_stmt() } - } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 135, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 137, p.GetParserRuleContext()) == 2 { { - p.SetState(1066) + p.SetState(1078) p.expr(0) } - p.SetState(1071) + p.SetState(1083) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1067) + p.SetState(1079) p.Match(SQLiteParserCOMMA) } { - p.SetState(1068) + p.SetState(1080) p.expr(0) } - p.SetState(1073) + p.SetState(1085) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } } { - p.SetState(1076) + p.SetState(1088) p.Match(SQLiteParserCLOSE_PAR) } case 2: - p.SetState(1080) + p.SetState(1092) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 136, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 138, p.GetParserRuleContext()) == 1 { { - p.SetState(1077) + p.SetState(1089) p.Schema_name() } { - p.SetState(1078) + p.SetState(1090) p.Match(SQLiteParserDOT) } } { - p.SetState(1082) + p.SetState(1094) p.Table_name() } case 3: - p.SetState(1086) + p.SetState(1098) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 137, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 139, p.GetParserRuleContext()) == 1 { { - p.SetState(1083) + p.SetState(1095) p.Schema_name() } { - p.SetState(1084) + p.SetState(1096) p.Match(SQLiteParserDOT) } } { - p.SetState(1088) + p.SetState(1100) p.Table_function_name() } { - p.SetState(1089) + p.SetState(1101) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1098) + p.SetState(1110) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-33552632) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&-270215977642229761) != 0) { { - p.SetState(1090) + p.SetState(1102) p.expr(0) } - p.SetState(1095) + p.SetState(1107) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1091) + p.SetState(1103) p.Match(SQLiteParserCOMMA) } { - p.SetState(1092) + p.SetState(1104) p.expr(0) } - p.SetState(1097) + p.SetState(1109) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } } { - p.SetState(1100) + p.SetState(1112) p.Match(SQLiteParserCLOSE_PAR) } @@ -13184,9 +13351,9 @@ func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { } } - p.SetState(1108) + p.SetState(1120) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 142, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 144, p.GetParserRuleContext()) } return localctx @@ -13314,7 +13481,7 @@ func (p *SQLiteParser) Raise_function() (localctx IRaise_functionContext) { _ = this localctx = NewRaise_functionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 68, SQLiteParserRULE_raise_function) + p.EnterRule(localctx, 70, SQLiteParserRULE_raise_function) var _la int defer func() { @@ -13335,26 +13502,26 @@ func (p *SQLiteParser) Raise_function() (localctx IRaise_functionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1109) + p.SetState(1121) p.Match(SQLiteParserRAISE_) } { - p.SetState(1110) + p.SetState(1122) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1115) + p.SetState(1127) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserIGNORE_: { - p.SetState(1111) + p.SetState(1123) p.Match(SQLiteParserIGNORE_) } case SQLiteParserABORT_, SQLiteParserFAIL_, SQLiteParserROLLBACK_: { - p.SetState(1112) + p.SetState(1124) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserABORT_ || _la == SQLiteParserFAIL_ || _la == SQLiteParserROLLBACK_) { @@ -13365,11 +13532,11 @@ func (p *SQLiteParser) Raise_function() (localctx IRaise_functionContext) { } } { - p.SetState(1113) + p.SetState(1125) p.Match(SQLiteParserCOMMA) } { - p.SetState(1114) + p.SetState(1126) p.Error_message() } @@ -13377,7 +13544,7 @@ func (p *SQLiteParser) Raise_function() (localctx IRaise_functionContext) { panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } { - p.SetState(1117) + p.SetState(1129) p.Match(SQLiteParserCLOSE_PAR) } @@ -13494,7 +13661,7 @@ func (p *SQLiteParser) Literal_value() (localctx ILiteral_valueContext) { _ = this localctx = NewLiteral_valueContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 70, SQLiteParserRULE_literal_value) + p.EnterRule(localctx, 72, SQLiteParserRULE_literal_value) var _la int defer func() { @@ -13515,7 +13682,7 @@ func (p *SQLiteParser) Literal_value() (localctx ILiteral_valueContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1119) + p.SetState(1131) _la = p.GetTokenStream().LA(1) if !(((int64((_la-52)) & ^0x3f) == 0 && ((int64(1)<<(_la-52))&4503599627370503) != 0) || ((int64((_la-173)) & ^0x3f) == 0 && ((int64(1)<<(_la-173))&409603) != 0)) { @@ -13889,7 +14056,7 @@ func (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) { _ = this localctx = NewInsert_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 72, SQLiteParserRULE_insert_stmt) + p.EnterRule(localctx, 74, SQLiteParserRULE_insert_stmt) var _la int defer func() { @@ -13908,49 +14075,49 @@ func (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) { } }() - p.SetState(1194) + p.SetState(1206) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserINSERT_, SQLiteParserREPLACE_, SQLiteParserWITH_: p.EnterOuterAlt(localctx, 1) - p.SetState(1122) + p.SetState(1134) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1121) + p.SetState(1133) p.With_clause() } } - p.SetState(1129) + p.SetState(1141) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 145, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 147, p.GetParserRuleContext()) { case 1: { - p.SetState(1124) + p.SetState(1136) p.Match(SQLiteParserINSERT_) } case 2: { - p.SetState(1125) + p.SetState(1137) p.Match(SQLiteParserREPLACE_) } case 3: { - p.SetState(1126) + p.SetState(1138) p.Match(SQLiteParserINSERT_) } { - p.SetState(1127) + p.SetState(1139) p.Match(SQLiteParserOR_) } { - p.SetState(1128) + p.SetState(1140) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserABORT_ || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&19140298416325121) != 0)) { @@ -13963,188 +14130,188 @@ func (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) { } { - p.SetState(1131) + p.SetState(1143) p.Match(SQLiteParserINTO_) } - p.SetState(1135) + p.SetState(1147) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 146, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 148, p.GetParserRuleContext()) == 1 { { - p.SetState(1132) + p.SetState(1144) p.Schema_name() } { - p.SetState(1133) + p.SetState(1145) p.Match(SQLiteParserDOT) } } { - p.SetState(1137) + p.SetState(1149) p.Table_name() } - p.SetState(1140) + p.SetState(1152) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ { { - p.SetState(1138) + p.SetState(1150) p.Match(SQLiteParserAS_) } { - p.SetState(1139) + p.SetState(1151) p.Table_alias() } } - p.SetState(1153) + p.SetState(1165) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(1142) + p.SetState(1154) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1143) + p.SetState(1155) p.Column_name() } - p.SetState(1148) + p.SetState(1160) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1144) + p.SetState(1156) p.Match(SQLiteParserCOMMA) } { - p.SetState(1145) + p.SetState(1157) p.Column_name() } - p.SetState(1150) + p.SetState(1162) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1151) + p.SetState(1163) p.Match(SQLiteParserCLOSE_PAR) } } - p.SetState(1184) + p.SetState(1196) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 153, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 155, p.GetParserRuleContext()) { case 1: { - p.SetState(1155) + p.SetState(1167) p.Match(SQLiteParserVALUES_) } { - p.SetState(1156) + p.SetState(1168) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1157) + p.SetState(1169) p.expr(0) } - p.SetState(1162) + p.SetState(1174) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1158) + p.SetState(1170) p.Match(SQLiteParserCOMMA) } { - p.SetState(1159) + p.SetState(1171) p.expr(0) } - p.SetState(1164) + p.SetState(1176) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1165) + p.SetState(1177) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1180) + p.SetState(1192) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1166) + p.SetState(1178) p.Match(SQLiteParserCOMMA) } { - p.SetState(1167) + p.SetState(1179) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1168) + p.SetState(1180) p.expr(0) } - p.SetState(1173) + p.SetState(1185) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1169) + p.SetState(1181) p.Match(SQLiteParserCOMMA) } { - p.SetState(1170) + p.SetState(1182) p.expr(0) } - p.SetState(1175) + p.SetState(1187) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1176) + p.SetState(1188) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1182) + p.SetState(1194) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case 2: { - p.SetState(1183) + p.SetState(1195) p.Select_stmt() } } - p.SetState(1187) + p.SetState(1199) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserON_ { { - p.SetState(1186) + p.SetState(1198) p.Upsert_clause() } } - p.SetState(1190) + p.SetState(1202) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserRETURNING_ { { - p.SetState(1189) + p.SetState(1201) p.Returning_clause() } @@ -14153,11 +14320,11 @@ func (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) { case SQLiteParserDEFAULT_: p.EnterOuterAlt(localctx, 2) { - p.SetState(1192) + p.SetState(1204) p.Match(SQLiteParserDEFAULT_) } { - p.SetState(1193) + p.SetState(1205) p.Match(SQLiteParserVALUES_) } @@ -14475,7 +14642,7 @@ func (p *SQLiteParser) Upsert_clause() (localctx IUpsert_clauseContext) { _ = this localctx = NewUpsert_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 74, SQLiteParserRULE_upsert_clause) + p.EnterRule(localctx, 76, SQLiteParserRULE_upsert_clause) var _la int defer func() { @@ -14496,59 +14663,59 @@ func (p *SQLiteParser) Upsert_clause() (localctx IUpsert_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1196) + p.SetState(1208) p.Match(SQLiteParserON_) } { - p.SetState(1197) + p.SetState(1209) p.Match(SQLiteParserCONFLICT_) } - p.SetState(1212) + p.SetState(1224) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOPEN_PAR { { - p.SetState(1198) + p.SetState(1210) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1199) + p.SetState(1211) p.Indexed_column() } - p.SetState(1204) + p.SetState(1216) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1200) + p.SetState(1212) p.Match(SQLiteParserCOMMA) } { - p.SetState(1201) + p.SetState(1213) p.Indexed_column() } - p.SetState(1206) + p.SetState(1218) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1207) + p.SetState(1219) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1210) + p.SetState(1222) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(1208) + p.SetState(1220) p.Match(SQLiteParserWHERE_) } { - p.SetState(1209) + p.SetState(1221) p.expr(0) } @@ -14556,102 +14723,102 @@ func (p *SQLiteParser) Upsert_clause() (localctx IUpsert_clauseContext) { } { - p.SetState(1214) + p.SetState(1226) p.Match(SQLiteParserDO_) } - p.SetState(1241) + p.SetState(1253) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserNOTHING_: { - p.SetState(1215) + p.SetState(1227) p.Match(SQLiteParserNOTHING_) } case SQLiteParserUPDATE_: { - p.SetState(1216) + p.SetState(1228) p.Match(SQLiteParserUPDATE_) } { - p.SetState(1217) + p.SetState(1229) p.Match(SQLiteParserSET_) } - p.SetState(1220) + p.SetState(1232) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 160, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 162, p.GetParserRuleContext()) { case 1: { - p.SetState(1218) + p.SetState(1230) p.Column_name() } case 2: { - p.SetState(1219) + p.SetState(1231) p.Column_name_list() } } { - p.SetState(1222) + p.SetState(1234) p.Match(SQLiteParserASSIGN) } { - p.SetState(1223) + p.SetState(1235) p.expr(0) } - p.SetState(1234) + p.SetState(1246) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1224) + p.SetState(1236) p.Match(SQLiteParserCOMMA) } - p.SetState(1227) + p.SetState(1239) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 161, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 163, p.GetParserRuleContext()) { case 1: { - p.SetState(1225) + p.SetState(1237) p.Column_name() } case 2: { - p.SetState(1226) + p.SetState(1238) p.Column_name_list() } } { - p.SetState(1229) + p.SetState(1241) p.Match(SQLiteParserASSIGN) } { - p.SetState(1230) + p.SetState(1242) p.expr(0) } - p.SetState(1236) + p.SetState(1248) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1239) + p.SetState(1251) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(1237) + p.SetState(1249) p.Match(SQLiteParserWHERE_) } { - p.SetState(1238) + p.SetState(1250) p.expr(0) } @@ -14805,7 +14972,7 @@ func (p *SQLiteParser) Pragma_stmt() (localctx IPragma_stmtContext) { _ = this localctx = NewPragma_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 76, SQLiteParserRULE_pragma_stmt) + p.EnterRule(localctx, 78, SQLiteParserRULE_pragma_stmt) defer func() { p.ExitRule() @@ -14825,52 +14992,52 @@ func (p *SQLiteParser) Pragma_stmt() (localctx IPragma_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1243) + p.SetState(1255) p.Match(SQLiteParserPRAGMA_) } - p.SetState(1247) + p.SetState(1259) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 165, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 167, p.GetParserRuleContext()) == 1 { { - p.SetState(1244) + p.SetState(1256) p.Schema_name() } { - p.SetState(1245) + p.SetState(1257) p.Match(SQLiteParserDOT) } } { - p.SetState(1249) + p.SetState(1261) p.Pragma_name() } - p.SetState(1256) + p.SetState(1268) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserASSIGN: { - p.SetState(1250) + p.SetState(1262) p.Match(SQLiteParserASSIGN) } { - p.SetState(1251) + p.SetState(1263) p.Pragma_value() } case SQLiteParserOPEN_PAR: { - p.SetState(1252) + p.SetState(1264) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1253) + p.SetState(1265) p.Pragma_value() } { - p.SetState(1254) + p.SetState(1266) p.Match(SQLiteParserCLOSE_PAR) } @@ -14986,7 +15153,7 @@ func (p *SQLiteParser) Pragma_value() (localctx IPragma_valueContext) { _ = this localctx = NewPragma_valueContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 78, SQLiteParserRULE_pragma_value) + p.EnterRule(localctx, 80, SQLiteParserRULE_pragma_value) defer func() { p.ExitRule() @@ -15004,27 +15171,27 @@ func (p *SQLiteParser) Pragma_value() (localctx IPragma_valueContext) { } }() - p.SetState(1261) + p.SetState(1273) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 167, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 169, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1258) + p.SetState(1270) p.Signed_number() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1259) + p.SetState(1271) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1260) + p.SetState(1272) p.Match(SQLiteParserSTRING_LITERAL) } @@ -15176,7 +15343,7 @@ func (p *SQLiteParser) Reindex_stmt() (localctx IReindex_stmtContext) { _ = this localctx = NewReindex_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 80, SQLiteParserRULE_reindex_stmt) + p.EnterRule(localctx, 82, SQLiteParserRULE_reindex_stmt) defer func() { p.ExitRule() @@ -15196,45 +15363,45 @@ func (p *SQLiteParser) Reindex_stmt() (localctx IReindex_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1263) + p.SetState(1275) p.Match(SQLiteParserREINDEX_) } - p.SetState(1274) + p.SetState(1286) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 170, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 172, p.GetParserRuleContext()) == 1 { { - p.SetState(1264) + p.SetState(1276) p.Collation_name() } - } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 170, p.GetParserRuleContext()) == 2 { - p.SetState(1268) + } else if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 172, p.GetParserRuleContext()) == 2 { + p.SetState(1280) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 168, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 170, p.GetParserRuleContext()) == 1 { { - p.SetState(1265) + p.SetState(1277) p.Schema_name() } { - p.SetState(1266) + p.SetState(1278) p.Match(SQLiteParserDOT) } } - p.SetState(1272) + p.SetState(1284) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 169, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 171, p.GetParserRuleContext()) { case 1: { - p.SetState(1270) + p.SetState(1282) p.Table_name() } case 2: { - p.SetState(1271) + p.SetState(1283) p.Index_name() } @@ -15447,7 +15614,7 @@ func (p *SQLiteParser) Select_stmt() (localctx ISelect_stmtContext) { _ = this localctx = NewSelect_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 82, SQLiteParserRULE_select_stmt) + p.EnterRule(localctx, 84, SQLiteParserRULE_select_stmt) var _la int defer func() { @@ -15469,59 +15636,59 @@ func (p *SQLiteParser) Select_stmt() (localctx ISelect_stmtContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1277) + p.SetState(1289) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1276) + p.SetState(1288) p.Common_table_stmt() } } { - p.SetState(1279) + p.SetState(1291) p.Select_core() } - p.SetState(1285) + p.SetState(1297) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 172, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 174, p.GetParserRuleContext()) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1280) + p.SetState(1292) p.Compound_operator() } { - p.SetState(1281) + p.SetState(1293) p.Select_core() } } - p.SetState(1287) + p.SetState(1299) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 172, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 174, p.GetParserRuleContext()) } - p.SetState(1289) + p.SetState(1301) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1288) + p.SetState(1300) p.Order_by_stmt() } } - p.SetState(1292) + p.SetState(1304) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserLIMIT_ { { - p.SetState(1291) + p.SetState(1303) p.Limit_stmt() } @@ -15724,7 +15891,7 @@ func (p *SQLiteParser) Join_clause() (localctx IJoin_clauseContext) { _ = this localctx = NewJoin_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 84, SQLiteParserRULE_join_clause) + p.EnterRule(localctx, 86, SQLiteParserRULE_join_clause) var _la int defer func() { @@ -15745,34 +15912,34 @@ func (p *SQLiteParser) Join_clause() (localctx IJoin_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1294) + p.SetState(1306) p.Table_or_subquery() } - p.SetState(1302) + p.SetState(1314) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA || _la == SQLiteParserCROSS_ || ((int64((_la-87)) & ^0x3f) == 0 && ((int64(1)<<(_la-87))&8833) != 0) { { - p.SetState(1295) + p.SetState(1307) p.Join_operator() } { - p.SetState(1296) + p.SetState(1308) p.Table_or_subquery() } - p.SetState(1298) + p.SetState(1310) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 175, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 177, p.GetParserRuleContext()) == 1 { { - p.SetState(1297) + p.SetState(1309) p.Join_constraint() } } - p.SetState(1304) + p.SetState(1316) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -16167,7 +16334,7 @@ func (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) { _ = this localctx = NewSelect_coreContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 86, SQLiteParserRULE_select_core) + p.EnterRule(localctx, 88, SQLiteParserRULE_select_core) var _la int defer func() { @@ -16186,22 +16353,22 @@ func (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) { } }() - p.SetState(1395) + p.SetState(1407) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserSELECT_: p.EnterOuterAlt(localctx, 1) { - p.SetState(1305) + p.SetState(1317) p.Match(SQLiteParserSELECT_) } - p.SetState(1307) + p.SetState(1319) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 177, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 179, p.GetParserRuleContext()) == 1 { { - p.SetState(1306) + p.SetState(1318) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserALL_ || _la == SQLiteParserDISTINCT_) { @@ -16214,183 +16381,183 @@ func (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) { } { - p.SetState(1309) + p.SetState(1321) p.Result_column() } - p.SetState(1314) + p.SetState(1326) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1310) + p.SetState(1322) p.Match(SQLiteParserCOMMA) } { - p.SetState(1311) + p.SetState(1323) p.Result_column() } - p.SetState(1316) + p.SetState(1328) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1329) + p.SetState(1341) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserFROM_ { { - p.SetState(1317) + p.SetState(1329) p.Match(SQLiteParserFROM_) } - p.SetState(1327) + p.SetState(1339) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 180, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 182, p.GetParserRuleContext()) { case 1: { - p.SetState(1318) + p.SetState(1330) p.Table_or_subquery() } - p.SetState(1323) + p.SetState(1335) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1319) + p.SetState(1331) p.Match(SQLiteParserCOMMA) } { - p.SetState(1320) + p.SetState(1332) p.Table_or_subquery() } - p.SetState(1325) + p.SetState(1337) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case 2: { - p.SetState(1326) + p.SetState(1338) p.Join_clause() } } } - p.SetState(1333) + p.SetState(1345) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(1331) + p.SetState(1343) p.Match(SQLiteParserWHERE_) } { - p.SetState(1332) + p.SetState(1344) p.expr(0) } } - p.SetState(1349) + p.SetState(1361) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserGROUP_ { { - p.SetState(1335) + p.SetState(1347) p.Match(SQLiteParserGROUP_) } { - p.SetState(1336) + p.SetState(1348) p.Match(SQLiteParserBY_) } { - p.SetState(1337) + p.SetState(1349) p.expr(0) } - p.SetState(1342) + p.SetState(1354) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1338) + p.SetState(1350) p.Match(SQLiteParserCOMMA) } { - p.SetState(1339) + p.SetState(1351) p.expr(0) } - p.SetState(1344) + p.SetState(1356) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1347) + p.SetState(1359) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserHAVING_ { { - p.SetState(1345) + p.SetState(1357) p.Match(SQLiteParserHAVING_) } { - p.SetState(1346) + p.SetState(1358) p.expr(0) } } } - p.SetState(1365) + p.SetState(1377) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWINDOW_ { { - p.SetState(1351) + p.SetState(1363) p.Match(SQLiteParserWINDOW_) } { - p.SetState(1352) + p.SetState(1364) p.Window_name() } { - p.SetState(1353) + p.SetState(1365) p.Match(SQLiteParserAS_) } { - p.SetState(1354) + p.SetState(1366) p.Window_defn() } - p.SetState(1362) + p.SetState(1374) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1355) + p.SetState(1367) p.Match(SQLiteParserCOMMA) } { - p.SetState(1356) + p.SetState(1368) p.Window_name() } { - p.SetState(1357) + p.SetState(1369) p.Match(SQLiteParserAS_) } { - p.SetState(1358) + p.SetState(1370) p.Window_defn() } - p.SetState(1364) + p.SetState(1376) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -16400,80 +16567,80 @@ func (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) { case SQLiteParserVALUES_: p.EnterOuterAlt(localctx, 2) { - p.SetState(1367) + p.SetState(1379) p.Match(SQLiteParserVALUES_) } { - p.SetState(1368) + p.SetState(1380) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1369) + p.SetState(1381) p.expr(0) } - p.SetState(1374) + p.SetState(1386) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1370) + p.SetState(1382) p.Match(SQLiteParserCOMMA) } { - p.SetState(1371) + p.SetState(1383) p.expr(0) } - p.SetState(1376) + p.SetState(1388) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1377) + p.SetState(1389) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1392) + p.SetState(1404) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1378) + p.SetState(1390) p.Match(SQLiteParserCOMMA) } { - p.SetState(1379) + p.SetState(1391) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1380) + p.SetState(1392) p.expr(0) } - p.SetState(1385) + p.SetState(1397) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1381) + p.SetState(1393) p.Match(SQLiteParserCOMMA) } { - p.SetState(1382) + p.SetState(1394) p.expr(0) } - p.SetState(1387) + p.SetState(1399) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1388) + p.SetState(1400) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1394) + p.SetState(1406) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -16567,7 +16734,7 @@ func (p *SQLiteParser) Factored_select_stmt() (localctx IFactored_select_stmtCon _ = this localctx = NewFactored_select_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 88, SQLiteParserRULE_factored_select_stmt) + p.EnterRule(localctx, 90, SQLiteParserRULE_factored_select_stmt) defer func() { p.ExitRule() @@ -16587,7 +16754,7 @@ func (p *SQLiteParser) Factored_select_stmt() (localctx IFactored_select_stmtCon p.EnterOuterAlt(localctx, 1) { - p.SetState(1397) + p.SetState(1409) p.Select_stmt() } @@ -16727,7 +16894,7 @@ func (p *SQLiteParser) Simple_select_stmt() (localctx ISimple_select_stmtContext _ = this localctx = NewSimple_select_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 90, SQLiteParserRULE_simple_select_stmt) + p.EnterRule(localctx, 92, SQLiteParserRULE_simple_select_stmt) var _la int defer func() { @@ -16747,39 +16914,39 @@ func (p *SQLiteParser) Simple_select_stmt() (localctx ISimple_select_stmtContext }() p.EnterOuterAlt(localctx, 1) - p.SetState(1400) + p.SetState(1412) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1399) + p.SetState(1411) p.Common_table_stmt() } } { - p.SetState(1402) + p.SetState(1414) p.Select_core() } - p.SetState(1404) + p.SetState(1416) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1403) + p.SetState(1415) p.Order_by_stmt() } } - p.SetState(1407) + p.SetState(1419) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserLIMIT_ { { - p.SetState(1406) + p.SetState(1418) p.Limit_stmt() } @@ -16987,7 +17154,7 @@ func (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_select_stmtCon _ = this localctx = NewCompound_select_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 92, SQLiteParserRULE_compound_select_stmt) + p.EnterRule(localctx, 94, SQLiteParserRULE_compound_select_stmt) var _la int defer func() { @@ -17007,42 +17174,42 @@ func (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_select_stmtCon }() p.EnterOuterAlt(localctx, 1) - p.SetState(1410) + p.SetState(1422) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1409) + p.SetState(1421) p.Common_table_stmt() } } { - p.SetState(1412) + p.SetState(1424) p.Select_core() } - p.SetState(1422) + p.SetState(1434) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ok := true; ok; ok = _la == SQLiteParserEXCEPT_ || _la == SQLiteParserINTERSECT_ || _la == SQLiteParserUNION_ { - p.SetState(1419) + p.SetState(1431) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserUNION_: { - p.SetState(1413) + p.SetState(1425) p.Match(SQLiteParserUNION_) } - p.SetState(1415) + p.SetState(1427) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserALL_ { { - p.SetState(1414) + p.SetState(1426) p.Match(SQLiteParserALL_) } @@ -17050,13 +17217,13 @@ func (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_select_stmtCon case SQLiteParserINTERSECT_: { - p.SetState(1417) + p.SetState(1429) p.Match(SQLiteParserINTERSECT_) } case SQLiteParserEXCEPT_: { - p.SetState(1418) + p.SetState(1430) p.Match(SQLiteParserEXCEPT_) } @@ -17064,32 +17231,32 @@ func (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_select_stmtCon panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } { - p.SetState(1421) + p.SetState(1433) p.Select_core() } - p.SetState(1424) + p.SetState(1436) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1427) + p.SetState(1439) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1426) + p.SetState(1438) p.Order_by_stmt() } } - p.SetState(1430) + p.SetState(1442) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserLIMIT_ { { - p.SetState(1429) + p.SetState(1441) p.Limit_stmt() } @@ -17413,7 +17580,7 @@ func (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subqueryContext) _ = this localctx = NewTable_or_subqueryContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 94, SQLiteParserRULE_table_or_subquery) + p.EnterRule(localctx, 96, SQLiteParserRULE_table_or_subquery) var _la int defer func() { @@ -17432,74 +17599,74 @@ func (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subqueryContext) } }() - p.SetState(1496) + p.SetState(1508) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 213, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 215, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(1435) + p.SetState(1447) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 201, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 203, p.GetParserRuleContext()) == 1 { { - p.SetState(1432) + p.SetState(1444) p.Schema_name() } { - p.SetState(1433) + p.SetState(1445) p.Match(SQLiteParserDOT) } } { - p.SetState(1437) + p.SetState(1449) p.Table_name() } - p.SetState(1442) + p.SetState(1454) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 203, p.GetParserRuleContext()) == 1 { - p.SetState(1439) + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 205, p.GetParserRuleContext()) == 1 { + p.SetState(1451) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 202, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 204, p.GetParserRuleContext()) == 1 { { - p.SetState(1438) + p.SetState(1450) p.Match(SQLiteParserAS_) } } { - p.SetState(1441) + p.SetState(1453) p.Table_alias() } } - p.SetState(1449) + p.SetState(1461) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserINDEXED_: { - p.SetState(1444) + p.SetState(1456) p.Match(SQLiteParserINDEXED_) } { - p.SetState(1445) + p.SetState(1457) p.Match(SQLiteParserBY_) } { - p.SetState(1446) + p.SetState(1458) p.Index_name() } case SQLiteParserNOT_: { - p.SetState(1447) + p.SetState(1459) p.Match(SQLiteParserNOT_) } { - p.SetState(1448) + p.SetState(1460) p.Match(SQLiteParserINDEXED_) } @@ -17510,70 +17677,70 @@ func (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subqueryContext) case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(1454) + p.SetState(1466) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 205, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 207, p.GetParserRuleContext()) == 1 { { - p.SetState(1451) + p.SetState(1463) p.Schema_name() } { - p.SetState(1452) + p.SetState(1464) p.Match(SQLiteParserDOT) } } { - p.SetState(1456) + p.SetState(1468) p.Table_function_name() } { - p.SetState(1457) + p.SetState(1469) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1458) + p.SetState(1470) p.expr(0) } - p.SetState(1463) + p.SetState(1475) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1459) + p.SetState(1471) p.Match(SQLiteParserCOMMA) } { - p.SetState(1460) + p.SetState(1472) p.expr(0) } - p.SetState(1465) + p.SetState(1477) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1466) + p.SetState(1478) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1471) + p.SetState(1483) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 208, p.GetParserRuleContext()) == 1 { - p.SetState(1468) + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 210, p.GetParserRuleContext()) == 1 { + p.SetState(1480) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 207, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 209, p.GetParserRuleContext()) == 1 { { - p.SetState(1467) + p.SetState(1479) p.Match(SQLiteParserAS_) } } { - p.SetState(1470) + p.SetState(1482) p.Table_alias() } @@ -17582,78 +17749,78 @@ func (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subqueryContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1473) + p.SetState(1485) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1483) + p.SetState(1495) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 210, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 212, p.GetParserRuleContext()) { case 1: { - p.SetState(1474) + p.SetState(1486) p.Table_or_subquery() } - p.SetState(1479) + p.SetState(1491) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1475) + p.SetState(1487) p.Match(SQLiteParserCOMMA) } { - p.SetState(1476) + p.SetState(1488) p.Table_or_subquery() } - p.SetState(1481) + p.SetState(1493) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case 2: { - p.SetState(1482) + p.SetState(1494) p.Join_clause() } } { - p.SetState(1485) + p.SetState(1497) p.Match(SQLiteParserCLOSE_PAR) } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1487) + p.SetState(1499) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1488) + p.SetState(1500) p.Select_stmt() } { - p.SetState(1489) + p.SetState(1501) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1494) + p.SetState(1506) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 212, p.GetParserRuleContext()) == 1 { - p.SetState(1491) + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 214, p.GetParserRuleContext()) == 1 { + p.SetState(1503) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 211, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 213, p.GetParserRuleContext()) == 1 { { - p.SetState(1490) + p.SetState(1502) p.Match(SQLiteParserAS_) } } { - p.SetState(1493) + p.SetState(1505) p.Table_alias() } @@ -17795,7 +17962,7 @@ func (p *SQLiteParser) Result_column() (localctx IResult_columnContext) { _ = this localctx = NewResult_columnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 96, SQLiteParserRULE_result_column) + p.EnterRule(localctx, 98, SQLiteParserRULE_result_column) var _la int defer func() { @@ -17814,55 +17981,55 @@ func (p *SQLiteParser) Result_column() (localctx IResult_columnContext) { } }() - p.SetState(1510) + p.SetState(1522) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 216, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 218, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1498) + p.SetState(1510) p.Match(SQLiteParserSTAR) } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1499) + p.SetState(1511) p.Table_name() } { - p.SetState(1500) + p.SetState(1512) p.Match(SQLiteParserDOT) } { - p.SetState(1501) + p.SetState(1513) p.Match(SQLiteParserSTAR) } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1503) + p.SetState(1515) p.expr(0) } - p.SetState(1508) + p.SetState(1520) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL { - p.SetState(1505) + p.SetState(1517) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ { { - p.SetState(1504) + p.SetState(1516) p.Match(SQLiteParserAS_) } } { - p.SetState(1507) + p.SetState(1519) p.Column_alias() } @@ -17973,7 +18140,7 @@ func (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) { _ = this localctx = NewJoin_operatorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 98, SQLiteParserRULE_join_operator) + p.EnterRule(localctx, 100, SQLiteParserRULE_join_operator) var _la int defer func() { @@ -17992,46 +18159,46 @@ func (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) { } }() - p.SetState(1525) + p.SetState(1537) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserCOMMA: p.EnterOuterAlt(localctx, 1) { - p.SetState(1512) + p.SetState(1524) p.Match(SQLiteParserCOMMA) } case SQLiteParserCROSS_, SQLiteParserINNER_, SQLiteParserJOIN_, SQLiteParserLEFT_, SQLiteParserNATURAL_: p.EnterOuterAlt(localctx, 2) - p.SetState(1514) + p.SetState(1526) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNATURAL_ { { - p.SetState(1513) + p.SetState(1525) p.Match(SQLiteParserNATURAL_) } } - p.SetState(1522) + p.SetState(1534) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserLEFT_: { - p.SetState(1516) + p.SetState(1528) p.Match(SQLiteParserLEFT_) } - p.SetState(1518) + p.SetState(1530) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserOUTER_ { { - p.SetState(1517) + p.SetState(1529) p.Match(SQLiteParserOUTER_) } @@ -18039,13 +18206,13 @@ func (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) { case SQLiteParserINNER_: { - p.SetState(1520) + p.SetState(1532) p.Match(SQLiteParserINNER_) } case SQLiteParserCROSS_: { - p.SetState(1521) + p.SetState(1533) p.Match(SQLiteParserCROSS_) } @@ -18054,7 +18221,7 @@ func (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) { default: } { - p.SetState(1524) + p.SetState(1536) p.Match(SQLiteParserJOIN_) } @@ -18220,7 +18387,7 @@ func (p *SQLiteParser) Join_constraint() (localctx IJoin_constraintContext) { _ = this localctx = NewJoin_constraintContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 100, SQLiteParserRULE_join_constraint) + p.EnterRule(localctx, 102, SQLiteParserRULE_join_constraint) var _la int defer func() { @@ -18239,55 +18406,55 @@ func (p *SQLiteParser) Join_constraint() (localctx IJoin_constraintContext) { } }() - p.SetState(1541) + p.SetState(1553) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserON_: p.EnterOuterAlt(localctx, 1) { - p.SetState(1527) + p.SetState(1539) p.Match(SQLiteParserON_) } { - p.SetState(1528) + p.SetState(1540) p.expr(0) } case SQLiteParserUSING_: p.EnterOuterAlt(localctx, 2) { - p.SetState(1529) + p.SetState(1541) p.Match(SQLiteParserUSING_) } { - p.SetState(1530) + p.SetState(1542) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1531) + p.SetState(1543) p.Column_name() } - p.SetState(1536) + p.SetState(1548) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1532) + p.SetState(1544) p.Match(SQLiteParserCOMMA) } { - p.SetState(1533) + p.SetState(1545) p.Column_name() } - p.SetState(1538) + p.SetState(1550) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1539) + p.SetState(1551) p.Match(SQLiteParserCLOSE_PAR) } @@ -18383,7 +18550,7 @@ func (p *SQLiteParser) Compound_operator() (localctx ICompound_operatorContext) _ = this localctx = NewCompound_operatorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 102, SQLiteParserRULE_compound_operator) + p.EnterRule(localctx, 104, SQLiteParserRULE_compound_operator) var _la int defer func() { @@ -18402,23 +18569,23 @@ func (p *SQLiteParser) Compound_operator() (localctx ICompound_operatorContext) } }() - p.SetState(1549) + p.SetState(1561) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserUNION_: p.EnterOuterAlt(localctx, 1) { - p.SetState(1543) + p.SetState(1555) p.Match(SQLiteParserUNION_) } - p.SetState(1545) + p.SetState(1557) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserALL_ { { - p.SetState(1544) + p.SetState(1556) p.Match(SQLiteParserALL_) } @@ -18427,14 +18594,14 @@ func (p *SQLiteParser) Compound_operator() (localctx ICompound_operatorContext) case SQLiteParserINTERSECT_: p.EnterOuterAlt(localctx, 2) { - p.SetState(1547) + p.SetState(1559) p.Match(SQLiteParserINTERSECT_) } case SQLiteParserEXCEPT_: p.EnterOuterAlt(localctx, 3) { - p.SetState(1548) + p.SetState(1560) p.Match(SQLiteParserEXCEPT_) } @@ -18755,7 +18922,7 @@ func (p *SQLiteParser) Update_stmt() (localctx IUpdate_stmtContext) { _ = this localctx = NewUpdate_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 104, SQLiteParserRULE_update_stmt) + p.EnterRule(localctx, 106, SQLiteParserRULE_update_stmt) var _la int defer func() { @@ -18775,31 +18942,31 @@ func (p *SQLiteParser) Update_stmt() (localctx IUpdate_stmtContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(1552) + p.SetState(1564) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1551) + p.SetState(1563) p.With_clause() } } { - p.SetState(1554) + p.SetState(1566) p.Match(SQLiteParserUPDATE_) } - p.SetState(1557) + p.SetState(1569) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 226, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 228, p.GetParserRuleContext()) == 1 { { - p.SetState(1555) + p.SetState(1567) p.Match(SQLiteParserOR_) } { - p.SetState(1556) + p.SetState(1568) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserABORT_ || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&19140298416325121) != 0)) { @@ -18812,97 +18979,97 @@ func (p *SQLiteParser) Update_stmt() (localctx IUpdate_stmtContext) { } { - p.SetState(1559) + p.SetState(1571) p.Qualified_table_name() } { - p.SetState(1560) + p.SetState(1572) p.Match(SQLiteParserSET_) } - p.SetState(1563) + p.SetState(1575) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 227, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 229, p.GetParserRuleContext()) { case 1: { - p.SetState(1561) + p.SetState(1573) p.Column_name() } case 2: { - p.SetState(1562) + p.SetState(1574) p.Column_name_list() } } { - p.SetState(1565) + p.SetState(1577) p.Match(SQLiteParserASSIGN) } { - p.SetState(1566) + p.SetState(1578) p.expr(0) } - p.SetState(1577) + p.SetState(1589) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1567) + p.SetState(1579) p.Match(SQLiteParserCOMMA) } - p.SetState(1570) + p.SetState(1582) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 228, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 230, p.GetParserRuleContext()) { case 1: { - p.SetState(1568) + p.SetState(1580) p.Column_name() } case 2: { - p.SetState(1569) + p.SetState(1581) p.Column_name_list() } } { - p.SetState(1572) + p.SetState(1584) p.Match(SQLiteParserASSIGN) } { - p.SetState(1573) + p.SetState(1585) p.expr(0) } - p.SetState(1579) + p.SetState(1591) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1582) + p.SetState(1594) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(1580) + p.SetState(1592) p.Match(SQLiteParserWHERE_) } { - p.SetState(1581) + p.SetState(1593) p.expr(0) } } - p.SetState(1585) + p.SetState(1597) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserRETURNING_ { { - p.SetState(1584) + p.SetState(1596) p.Returning_clause() } @@ -19039,7 +19206,7 @@ func (p *SQLiteParser) Column_name_list() (localctx IColumn_name_listContext) { _ = this localctx = NewColumn_name_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 106, SQLiteParserRULE_column_name_list) + p.EnterRule(localctx, 108, SQLiteParserRULE_column_name_list) var _la int defer func() { @@ -19060,33 +19227,33 @@ func (p *SQLiteParser) Column_name_list() (localctx IColumn_name_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1587) + p.SetState(1599) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1588) + p.SetState(1600) p.Column_name() } - p.SetState(1593) + p.SetState(1605) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1589) + p.SetState(1601) p.Match(SQLiteParserCOMMA) } { - p.SetState(1590) + p.SetState(1602) p.Column_name() } - p.SetState(1595) + p.SetState(1607) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } { - p.SetState(1596) + p.SetState(1608) p.Match(SQLiteParserCLOSE_PAR) } @@ -19420,7 +19587,7 @@ func (p *SQLiteParser) Update_stmt_limited() (localctx IUpdate_stmt_limitedConte _ = this localctx = NewUpdate_stmt_limitedContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 108, SQLiteParserRULE_update_stmt_limited) + p.EnterRule(localctx, 110, SQLiteParserRULE_update_stmt_limited) var _la int defer func() { @@ -19440,31 +19607,31 @@ func (p *SQLiteParser) Update_stmt_limited() (localctx IUpdate_stmt_limitedConte }() p.EnterOuterAlt(localctx, 1) - p.SetState(1599) + p.SetState(1611) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWITH_ { { - p.SetState(1598) + p.SetState(1610) p.With_clause() } } { - p.SetState(1601) + p.SetState(1613) p.Match(SQLiteParserUPDATE_) } - p.SetState(1604) + p.SetState(1616) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 234, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 236, p.GetParserRuleContext()) == 1 { { - p.SetState(1602) + p.SetState(1614) p.Match(SQLiteParserOR_) } { - p.SetState(1603) + p.SetState(1615) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserABORT_ || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&19140298416325121) != 0)) { @@ -19477,108 +19644,108 @@ func (p *SQLiteParser) Update_stmt_limited() (localctx IUpdate_stmt_limitedConte } { - p.SetState(1606) + p.SetState(1618) p.Qualified_table_name() } { - p.SetState(1607) + p.SetState(1619) p.Match(SQLiteParserSET_) } - p.SetState(1610) + p.SetState(1622) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 235, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 237, p.GetParserRuleContext()) { case 1: { - p.SetState(1608) + p.SetState(1620) p.Column_name() } case 2: { - p.SetState(1609) + p.SetState(1621) p.Column_name_list() } } { - p.SetState(1612) + p.SetState(1624) p.Match(SQLiteParserASSIGN) } { - p.SetState(1613) + p.SetState(1625) p.expr(0) } - p.SetState(1624) + p.SetState(1636) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1614) + p.SetState(1626) p.Match(SQLiteParserCOMMA) } - p.SetState(1617) + p.SetState(1629) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 236, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 238, p.GetParserRuleContext()) { case 1: { - p.SetState(1615) + p.SetState(1627) p.Column_name() } case 2: { - p.SetState(1616) + p.SetState(1628) p.Column_name_list() } } { - p.SetState(1619) + p.SetState(1631) p.Match(SQLiteParserASSIGN) } { - p.SetState(1620) + p.SetState(1632) p.expr(0) } - p.SetState(1626) + p.SetState(1638) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1629) + p.SetState(1641) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserWHERE_ { { - p.SetState(1627) + p.SetState(1639) p.Match(SQLiteParserWHERE_) } { - p.SetState(1628) + p.SetState(1640) p.expr(0) } } - p.SetState(1635) + p.SetState(1647) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserLIMIT_ || _la == SQLiteParserORDER_ { - p.SetState(1632) + p.SetState(1644) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1631) + p.SetState(1643) p.Order_by_stmt() } } { - p.SetState(1634) + p.SetState(1646) p.Limit_stmt() } @@ -19745,7 +19912,7 @@ func (p *SQLiteParser) Qualified_table_name() (localctx IQualified_table_nameCon _ = this localctx = NewQualified_table_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 110, SQLiteParserRULE_qualified_table_name) + p.EnterRule(localctx, 112, SQLiteParserRULE_qualified_table_name) var _la int defer func() { @@ -19765,64 +19932,64 @@ func (p *SQLiteParser) Qualified_table_name() (localctx IQualified_table_nameCon }() p.EnterOuterAlt(localctx, 1) - p.SetState(1640) + p.SetState(1652) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 241, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 243, p.GetParserRuleContext()) == 1 { { - p.SetState(1637) + p.SetState(1649) p.Schema_name() } { - p.SetState(1638) + p.SetState(1650) p.Match(SQLiteParserDOT) } } { - p.SetState(1642) + p.SetState(1654) p.Table_name() } - p.SetState(1645) + p.SetState(1657) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserAS_ { { - p.SetState(1643) + p.SetState(1655) p.Match(SQLiteParserAS_) } { - p.SetState(1644) + p.SetState(1656) p.Alias() } } - p.SetState(1652) + p.SetState(1664) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserINDEXED_: { - p.SetState(1647) + p.SetState(1659) p.Match(SQLiteParserINDEXED_) } { - p.SetState(1648) + p.SetState(1660) p.Match(SQLiteParserBY_) } { - p.SetState(1649) + p.SetState(1661) p.Index_name() } case SQLiteParserNOT_: { - p.SetState(1650) + p.SetState(1662) p.Match(SQLiteParserNOT_) } { - p.SetState(1651) + p.SetState(1663) p.Match(SQLiteParserINDEXED_) } @@ -19943,7 +20110,7 @@ func (p *SQLiteParser) Vacuum_stmt() (localctx IVacuum_stmtContext) { _ = this localctx = NewVacuum_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 112, SQLiteParserRULE_vacuum_stmt) + p.EnterRule(localctx, 114, SQLiteParserRULE_vacuum_stmt) var _la int defer func() { @@ -19964,30 +20131,30 @@ func (p *SQLiteParser) Vacuum_stmt() (localctx IVacuum_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1654) + p.SetState(1666) p.Match(SQLiteParserVACUUM_) } - p.SetState(1656) + p.SetState(1668) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 244, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 246, p.GetParserRuleContext()) == 1 { { - p.SetState(1655) + p.SetState(1667) p.Schema_name() } } - p.SetState(1660) + p.SetState(1672) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserINTO_ { { - p.SetState(1658) + p.SetState(1670) p.Match(SQLiteParserINTO_) } { - p.SetState(1659) + p.SetState(1671) p.Filename() } @@ -20098,7 +20265,7 @@ func (p *SQLiteParser) Filter_clause() (localctx IFilter_clauseContext) { _ = this localctx = NewFilter_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 114, SQLiteParserRULE_filter_clause) + p.EnterRule(localctx, 116, SQLiteParserRULE_filter_clause) defer func() { p.ExitRule() @@ -20118,23 +20285,23 @@ func (p *SQLiteParser) Filter_clause() (localctx IFilter_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1662) + p.SetState(1674) p.Match(SQLiteParserFILTER_) } { - p.SetState(1663) + p.SetState(1675) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1664) + p.SetState(1676) p.Match(SQLiteParserWHERE_) } { - p.SetState(1665) + p.SetState(1677) p.expr(0) } { - p.SetState(1666) + p.SetState(1678) p.Match(SQLiteParserCLOSE_PAR) } @@ -20366,7 +20533,7 @@ func (p *SQLiteParser) Window_defn() (localctx IWindow_defnContext) { _ = this localctx = NewWindow_defnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 116, SQLiteParserRULE_window_defn) + p.EnterRule(localctx, 118, SQLiteParserRULE_window_defn) var _la int defer func() { @@ -20387,51 +20554,51 @@ func (p *SQLiteParser) Window_defn() (localctx IWindow_defnContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1668) + p.SetState(1680) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1670) + p.SetState(1682) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 246, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 248, p.GetParserRuleContext()) == 1 { { - p.SetState(1669) + p.SetState(1681) p.Base_window_name() } } - p.SetState(1682) + p.SetState(1694) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1672) + p.SetState(1684) p.Match(SQLiteParserPARTITION_) } { - p.SetState(1673) + p.SetState(1685) p.Match(SQLiteParserBY_) } { - p.SetState(1674) + p.SetState(1686) p.expr(0) } - p.SetState(1679) + p.SetState(1691) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1675) + p.SetState(1687) p.Match(SQLiteParserCOMMA) } { - p.SetState(1676) + p.SetState(1688) p.expr(0) } - p.SetState(1681) + p.SetState(1693) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -20439,49 +20606,49 @@ func (p *SQLiteParser) Window_defn() (localctx IWindow_defnContext) { } { - p.SetState(1684) + p.SetState(1696) p.Match(SQLiteParserORDER_) } { - p.SetState(1685) + p.SetState(1697) p.Match(SQLiteParserBY_) } { - p.SetState(1686) + p.SetState(1698) p.Ordering_term() } - p.SetState(1691) + p.SetState(1703) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1687) + p.SetState(1699) p.Match(SQLiteParserCOMMA) } { - p.SetState(1688) + p.SetState(1700) p.Ordering_term() } - p.SetState(1693) + p.SetState(1705) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } - p.SetState(1695) + p.SetState(1707) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if (int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&4503599761588225) != 0 { { - p.SetState(1694) + p.SetState(1706) p.Frame_spec() } } { - p.SetState(1697) + p.SetState(1709) p.Match(SQLiteParserCLOSE_PAR) } @@ -20735,7 +20902,7 @@ func (p *SQLiteParser) Over_clause() (localctx IOver_clauseContext) { _ = this localctx = NewOver_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 118, SQLiteParserRULE_over_clause) + p.EnterRule(localctx, 120, SQLiteParserRULE_over_clause) var _la int defer func() { @@ -20756,120 +20923,120 @@ func (p *SQLiteParser) Over_clause() (localctx IOver_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1699) + p.SetState(1711) p.Match(SQLiteParserOVER_) } - p.SetState(1733) + p.SetState(1745) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 257, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 259, p.GetParserRuleContext()) { case 1: { - p.SetState(1700) + p.SetState(1712) p.Window_name() } case 2: { - p.SetState(1701) + p.SetState(1713) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1703) + p.SetState(1715) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 251, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 253, p.GetParserRuleContext()) == 1 { { - p.SetState(1702) + p.SetState(1714) p.Base_window_name() } } - p.SetState(1715) + p.SetState(1727) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1705) + p.SetState(1717) p.Match(SQLiteParserPARTITION_) } { - p.SetState(1706) + p.SetState(1718) p.Match(SQLiteParserBY_) } { - p.SetState(1707) + p.SetState(1719) p.expr(0) } - p.SetState(1712) + p.SetState(1724) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1708) + p.SetState(1720) p.Match(SQLiteParserCOMMA) } { - p.SetState(1709) + p.SetState(1721) p.expr(0) } - p.SetState(1714) + p.SetState(1726) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } } - p.SetState(1727) + p.SetState(1739) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1717) + p.SetState(1729) p.Match(SQLiteParserORDER_) } { - p.SetState(1718) + p.SetState(1730) p.Match(SQLiteParserBY_) } { - p.SetState(1719) + p.SetState(1731) p.Ordering_term() } - p.SetState(1724) + p.SetState(1736) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1720) + p.SetState(1732) p.Match(SQLiteParserCOMMA) } { - p.SetState(1721) + p.SetState(1733) p.Ordering_term() } - p.SetState(1726) + p.SetState(1738) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } } - p.SetState(1730) + p.SetState(1742) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if (int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&4503599761588225) != 0 { { - p.SetState(1729) + p.SetState(1741) p.Frame_spec() } } { - p.SetState(1732) + p.SetState(1744) p.Match(SQLiteParserCLOSE_PAR) } @@ -20995,7 +21162,7 @@ func (p *SQLiteParser) Frame_spec() (localctx IFrame_specContext) { _ = this localctx = NewFrame_specContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 120, SQLiteParserRULE_frame_spec) + p.EnterRule(localctx, 122, SQLiteParserRULE_frame_spec) defer func() { p.ExitRule() @@ -21015,47 +21182,47 @@ func (p *SQLiteParser) Frame_spec() (localctx IFrame_specContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1735) + p.SetState(1747) p.Frame_clause() } - p.SetState(1743) + p.SetState(1755) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserEXCLUDE_: { - p.SetState(1736) + p.SetState(1748) p.Match(SQLiteParserEXCLUDE_) } { - p.SetState(1737) + p.SetState(1749) p.Match(SQLiteParserNO_) } { - p.SetState(1738) + p.SetState(1750) p.Match(SQLiteParserOTHERS_) } case SQLiteParserCURRENT_: { - p.SetState(1739) + p.SetState(1751) p.Match(SQLiteParserCURRENT_) } { - p.SetState(1740) + p.SetState(1752) p.Match(SQLiteParserROW_) } case SQLiteParserGROUP_: { - p.SetState(1741) + p.SetState(1753) p.Match(SQLiteParserGROUP_) } case SQLiteParserTIES_: { - p.SetState(1742) + p.SetState(1754) p.Match(SQLiteParserTIES_) } @@ -21208,7 +21375,7 @@ func (p *SQLiteParser) Frame_clause() (localctx IFrame_clauseContext) { _ = this localctx = NewFrame_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 122, SQLiteParserRULE_frame_clause) + p.EnterRule(localctx, 124, SQLiteParserRULE_frame_clause) var _la int defer func() { @@ -21229,7 +21396,7 @@ func (p *SQLiteParser) Frame_clause() (localctx IFrame_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1745) + p.SetState(1757) _la = p.GetTokenStream().LA(1) if !((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&4503599761588225) != 0) { @@ -21239,30 +21406,30 @@ func (p *SQLiteParser) Frame_clause() (localctx IFrame_clauseContext) { p.Consume() } } - p.SetState(1752) + p.SetState(1764) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 259, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 261, p.GetParserRuleContext()) { case 1: { - p.SetState(1746) + p.SetState(1758) p.Frame_single() } case 2: { - p.SetState(1747) + p.SetState(1759) p.Match(SQLiteParserBETWEEN_) } { - p.SetState(1748) + p.SetState(1760) p.Frame_left() } { - p.SetState(1749) + p.SetState(1761) p.Match(SQLiteParserAND_) } { - p.SetState(1750) + p.SetState(1762) p.Frame_right() } @@ -21421,7 +21588,7 @@ func (p *SQLiteParser) Simple_function_invocation() (localctx ISimple_function_i _ = this localctx = NewSimple_function_invocationContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 124, SQLiteParserRULE_simple_function_invocation) + p.EnterRule(localctx, 126, SQLiteParserRULE_simple_function_invocation) var _la int defer func() { @@ -21442,44 +21609,44 @@ func (p *SQLiteParser) Simple_function_invocation() (localctx ISimple_function_i p.EnterOuterAlt(localctx, 1) { - p.SetState(1754) + p.SetState(1766) p.Simple_func() } { - p.SetState(1755) + p.SetState(1767) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1765) + p.SetState(1777) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: { - p.SetState(1756) + p.SetState(1768) p.expr(0) } - p.SetState(1761) + p.SetState(1773) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1757) + p.SetState(1769) p.Match(SQLiteParserCOMMA) } { - p.SetState(1758) + p.SetState(1770) p.expr(0) } - p.SetState(1763) + p.SetState(1775) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case SQLiteParserSTAR: { - p.SetState(1764) + p.SetState(1776) p.Match(SQLiteParserSTAR) } @@ -21487,7 +21654,7 @@ func (p *SQLiteParser) Simple_function_invocation() (localctx ISimple_function_i panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } { - p.SetState(1767) + p.SetState(1779) p.Match(SQLiteParserCLOSE_PAR) } @@ -21666,7 +21833,7 @@ func (p *SQLiteParser) Aggregate_function_invocation() (localctx IAggregate_func _ = this localctx = NewAggregate_function_invocationContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 126, SQLiteParserRULE_aggregate_function_invocation) + p.EnterRule(localctx, 128, SQLiteParserRULE_aggregate_function_invocation) var _la int defer func() { @@ -21687,54 +21854,54 @@ func (p *SQLiteParser) Aggregate_function_invocation() (localctx IAggregate_func p.EnterOuterAlt(localctx, 1) { - p.SetState(1769) + p.SetState(1781) p.Aggregate_func() } { - p.SetState(1770) + p.SetState(1782) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1783) + p.SetState(1795) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: - p.SetState(1772) + p.SetState(1784) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 262, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 264, p.GetParserRuleContext()) == 1 { { - p.SetState(1771) + p.SetState(1783) p.Match(SQLiteParserDISTINCT_) } } { - p.SetState(1774) + p.SetState(1786) p.expr(0) } - p.SetState(1779) + p.SetState(1791) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1775) + p.SetState(1787) p.Match(SQLiteParserCOMMA) } { - p.SetState(1776) + p.SetState(1788) p.expr(0) } - p.SetState(1781) + p.SetState(1793) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case SQLiteParserSTAR: { - p.SetState(1782) + p.SetState(1794) p.Match(SQLiteParserSTAR) } @@ -21743,16 +21910,16 @@ func (p *SQLiteParser) Aggregate_function_invocation() (localctx IAggregate_func default: } { - p.SetState(1785) + p.SetState(1797) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1787) + p.SetState(1799) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserFILTER_ { { - p.SetState(1786) + p.SetState(1798) p.Filter_clause() } @@ -21967,7 +22134,7 @@ func (p *SQLiteParser) Window_function_invocation() (localctx IWindow_function_i _ = this localctx = NewWindow_function_invocationContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 128, SQLiteParserRULE_window_function_invocation) + p.EnterRule(localctx, 130, SQLiteParserRULE_window_function_invocation) var _la int defer func() { @@ -21988,44 +22155,44 @@ func (p *SQLiteParser) Window_function_invocation() (localctx IWindow_function_i p.EnterOuterAlt(localctx, 1) { - p.SetState(1789) + p.SetState(1801) p.Window_function() } { - p.SetState(1790) + p.SetState(1802) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1800) + p.SetState(1812) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL: { - p.SetState(1791) + p.SetState(1803) p.expr(0) } - p.SetState(1796) + p.SetState(1808) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1792) + p.SetState(1804) p.Match(SQLiteParserCOMMA) } { - p.SetState(1793) + p.SetState(1805) p.expr(0) } - p.SetState(1798) + p.SetState(1810) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } case SQLiteParserSTAR: { - p.SetState(1799) + p.SetState(1811) p.Match(SQLiteParserSTAR) } @@ -22034,36 +22201,36 @@ func (p *SQLiteParser) Window_function_invocation() (localctx IWindow_function_i default: } { - p.SetState(1802) + p.SetState(1814) p.Match(SQLiteParserCLOSE_PAR) } - p.SetState(1804) + p.SetState(1816) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserFILTER_ { { - p.SetState(1803) + p.SetState(1815) p.Filter_clause() } } { - p.SetState(1806) + p.SetState(1818) p.Match(SQLiteParserOVER_) } - p.SetState(1809) + p.SetState(1821) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 269, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 271, p.GetParserRuleContext()) { case 1: { - p.SetState(1807) + p.SetState(1819) p.Window_defn() } case 2: { - p.SetState(1808) + p.SetState(1820) p.Window_name() } @@ -22200,7 +22367,7 @@ func (p *SQLiteParser) Common_table_stmt() (localctx ICommon_table_stmtContext) _ = this localctx = NewCommon_table_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 130, SQLiteParserRULE_common_table_stmt) + p.EnterRule(localctx, 132, SQLiteParserRULE_common_table_stmt) var _la int defer func() { @@ -22221,38 +22388,38 @@ func (p *SQLiteParser) Common_table_stmt() (localctx ICommon_table_stmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(1811) + p.SetState(1823) p.Match(SQLiteParserWITH_) } - p.SetState(1813) + p.SetState(1825) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 270, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 272, p.GetParserRuleContext()) == 1 { { - p.SetState(1812) + p.SetState(1824) p.Match(SQLiteParserRECURSIVE_) } } { - p.SetState(1815) + p.SetState(1827) p.Common_table_expression() } - p.SetState(1820) + p.SetState(1832) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1816) + p.SetState(1828) p.Match(SQLiteParserCOMMA) } { - p.SetState(1817) + p.SetState(1829) p.Common_table_expression() } - p.SetState(1822) + p.SetState(1834) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -22388,7 +22555,7 @@ func (p *SQLiteParser) Order_by_stmt() (localctx IOrder_by_stmtContext) { _ = this localctx = NewOrder_by_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 132, SQLiteParserRULE_order_by_stmt) + p.EnterRule(localctx, 134, SQLiteParserRULE_order_by_stmt) var _la int defer func() { @@ -22409,32 +22576,32 @@ func (p *SQLiteParser) Order_by_stmt() (localctx IOrder_by_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1823) + p.SetState(1835) p.Match(SQLiteParserORDER_) } { - p.SetState(1824) + p.SetState(1836) p.Match(SQLiteParserBY_) } { - p.SetState(1825) + p.SetState(1837) p.Ordering_term() } - p.SetState(1830) + p.SetState(1842) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(1826) + p.SetState(1838) p.Match(SQLiteParserCOMMA) } { - p.SetState(1827) + p.SetState(1839) p.Ordering_term() } - p.SetState(1832) + p.SetState(1844) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -22565,7 +22732,7 @@ func (p *SQLiteParser) Limit_stmt() (localctx ILimit_stmtContext) { _ = this localctx = NewLimit_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 134, SQLiteParserRULE_limit_stmt) + p.EnterRule(localctx, 136, SQLiteParserRULE_limit_stmt) var _la int defer func() { @@ -22586,20 +22753,20 @@ func (p *SQLiteParser) Limit_stmt() (localctx ILimit_stmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1833) + p.SetState(1845) p.Match(SQLiteParserLIMIT_) } { - p.SetState(1834) + p.SetState(1846) p.expr(0) } - p.SetState(1837) + p.SetState(1849) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCOMMA || _la == SQLiteParserOFFSET_ { { - p.SetState(1835) + p.SetState(1847) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserCOMMA || _la == SQLiteParserOFFSET_) { @@ -22610,7 +22777,7 @@ func (p *SQLiteParser) Limit_stmt() (localctx ILimit_stmtContext) { } } { - p.SetState(1836) + p.SetState(1848) p.expr(0) } @@ -22755,7 +22922,7 @@ func (p *SQLiteParser) Ordering_term() (localctx IOrdering_termContext) { _ = this localctx = NewOrdering_termContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 136, SQLiteParserRULE_ordering_term) + p.EnterRule(localctx, 138, SQLiteParserRULE_ordering_term) var _la int defer func() { @@ -22776,46 +22943,46 @@ func (p *SQLiteParser) Ordering_term() (localctx IOrdering_termContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1839) + p.SetState(1851) p.expr(0) } - p.SetState(1842) + p.SetState(1854) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCOLLATE_ { { - p.SetState(1840) + p.SetState(1852) p.Match(SQLiteParserCOLLATE_) } { - p.SetState(1841) + p.SetState(1853) p.Collation_name() } } - p.SetState(1845) + p.SetState(1857) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ { { - p.SetState(1844) + p.SetState(1856) p.Asc_desc() } } - p.SetState(1849) + p.SetState(1861) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserNULLS_ { { - p.SetState(1847) + p.SetState(1859) p.Match(SQLiteParserNULLS_) } { - p.SetState(1848) + p.SetState(1860) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserFIRST_ || _la == SQLiteParserLAST_) { @@ -22906,7 +23073,7 @@ func (p *SQLiteParser) Asc_desc() (localctx IAsc_descContext) { _ = this localctx = NewAsc_descContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 138, SQLiteParserRULE_asc_desc) + p.EnterRule(localctx, 140, SQLiteParserRULE_asc_desc) var _la int defer func() { @@ -22927,7 +23094,7 @@ func (p *SQLiteParser) Asc_desc() (localctx IAsc_descContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1851) + p.SetState(1863) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserASC_ || _la == SQLiteParserDESC_) { @@ -23048,7 +23215,7 @@ func (p *SQLiteParser) Frame_left() (localctx IFrame_leftContext) { _ = this localctx = NewFrame_leftContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 140, SQLiteParserRULE_frame_left) + p.EnterRule(localctx, 142, SQLiteParserRULE_frame_left) defer func() { p.ExitRule() @@ -23066,50 +23233,50 @@ func (p *SQLiteParser) Frame_left() (localctx IFrame_leftContext) { } }() - p.SetState(1863) + p.SetState(1875) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 277, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 279, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1853) + p.SetState(1865) p.expr(0) } { - p.SetState(1854) + p.SetState(1866) p.Match(SQLiteParserPRECEDING_) } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1856) + p.SetState(1868) p.expr(0) } { - p.SetState(1857) + p.SetState(1869) p.Match(SQLiteParserFOLLOWING_) } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1859) + p.SetState(1871) p.Match(SQLiteParserCURRENT_) } { - p.SetState(1860) + p.SetState(1872) p.Match(SQLiteParserROW_) } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1861) + p.SetState(1873) p.Match(SQLiteParserUNBOUNDED_) } { - p.SetState(1862) + p.SetState(1874) p.Match(SQLiteParserPRECEDING_) } @@ -23225,7 +23392,7 @@ func (p *SQLiteParser) Frame_right() (localctx IFrame_rightContext) { _ = this localctx = NewFrame_rightContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 142, SQLiteParserRULE_frame_right) + p.EnterRule(localctx, 144, SQLiteParserRULE_frame_right) defer func() { p.ExitRule() @@ -23243,50 +23410,50 @@ func (p *SQLiteParser) Frame_right() (localctx IFrame_rightContext) { } }() - p.SetState(1875) + p.SetState(1887) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 278, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 280, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1865) + p.SetState(1877) p.expr(0) } { - p.SetState(1866) + p.SetState(1878) p.Match(SQLiteParserPRECEDING_) } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1868) + p.SetState(1880) p.expr(0) } { - p.SetState(1869) + p.SetState(1881) p.Match(SQLiteParserFOLLOWING_) } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1871) + p.SetState(1883) p.Match(SQLiteParserCURRENT_) } { - p.SetState(1872) + p.SetState(1884) p.Match(SQLiteParserROW_) } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1873) + p.SetState(1885) p.Match(SQLiteParserUNBOUNDED_) } { - p.SetState(1874) + p.SetState(1886) p.Match(SQLiteParserFOLLOWING_) } @@ -23397,7 +23564,7 @@ func (p *SQLiteParser) Frame_single() (localctx IFrame_singleContext) { _ = this localctx = NewFrame_singleContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 144, SQLiteParserRULE_frame_single) + p.EnterRule(localctx, 146, SQLiteParserRULE_frame_single) defer func() { p.ExitRule() @@ -23415,39 +23582,39 @@ func (p *SQLiteParser) Frame_single() (localctx IFrame_singleContext) { } }() - p.SetState(1884) + p.SetState(1896) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 279, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 281, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1877) + p.SetState(1889) p.expr(0) } { - p.SetState(1878) + p.SetState(1890) p.Match(SQLiteParserPRECEDING_) } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1880) + p.SetState(1892) p.Match(SQLiteParserUNBOUNDED_) } { - p.SetState(1881) + p.SetState(1893) p.Match(SQLiteParserPRECEDING_) } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1882) + p.SetState(1894) p.Match(SQLiteParserCURRENT_) } { - p.SetState(1883) + p.SetState(1895) p.Match(SQLiteParserROW_) } @@ -23742,7 +23909,7 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { _ = this localctx = NewWindow_functionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 146, SQLiteParserRULE_window_function) + p.EnterRule(localctx, 148, SQLiteParserRULE_window_function) var _la int defer func() { @@ -23761,14 +23928,14 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { } }() - p.SetState(1971) + p.SetState(1983) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserFIRST_VALUE_, SQLiteParserLAST_VALUE_: p.EnterOuterAlt(localctx, 1) { - p.SetState(1886) + p.SetState(1898) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserFIRST_VALUE_ || _la == SQLiteParserLAST_VALUE_) { @@ -23779,60 +23946,60 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { } } { - p.SetState(1887) + p.SetState(1899) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1888) + p.SetState(1900) p.expr(0) } { - p.SetState(1889) + p.SetState(1901) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1890) + p.SetState(1902) p.Match(SQLiteParserOVER_) } { - p.SetState(1891) + p.SetState(1903) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1893) + p.SetState(1905) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1892) + p.SetState(1904) p.Partition_by() } } { - p.SetState(1895) + p.SetState(1907) p.Order_by_expr_asc_desc() } - p.SetState(1897) + p.SetState(1909) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if (int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&4503599761588225) != 0 { { - p.SetState(1896) + p.SetState(1908) p.Frame_clause() } } { - p.SetState(1899) + p.SetState(1911) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserCUME_DIST_, SQLiteParserPERCENT_RANK_: p.EnterOuterAlt(localctx, 2) { - p.SetState(1901) + p.SetState(1913) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserCUME_DIST_ || _la == SQLiteParserPERCENT_RANK_) { @@ -23843,52 +24010,52 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { } } { - p.SetState(1902) + p.SetState(1914) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1903) + p.SetState(1915) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1904) + p.SetState(1916) p.Match(SQLiteParserOVER_) } { - p.SetState(1905) + p.SetState(1917) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1907) + p.SetState(1919) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1906) + p.SetState(1918) p.Partition_by() } } - p.SetState(1910) + p.SetState(1922) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserORDER_ { { - p.SetState(1909) + p.SetState(1921) p.Order_by_expr() } } { - p.SetState(1912) + p.SetState(1924) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserDENSE_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_: p.EnterOuterAlt(localctx, 3) { - p.SetState(1913) + p.SetState(1925) _la = p.GetTokenStream().LA(1) if !((int64((_la-161)) & ^0x3f) == 0 && ((int64(1)<<(_la-161))&385) != 0) { @@ -23899,45 +24066,45 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { } } { - p.SetState(1914) + p.SetState(1926) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1915) + p.SetState(1927) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1916) + p.SetState(1928) p.Match(SQLiteParserOVER_) } { - p.SetState(1917) + p.SetState(1929) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1919) + p.SetState(1931) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1918) + p.SetState(1930) p.Partition_by() } } { - p.SetState(1921) + p.SetState(1933) p.Order_by_expr_asc_desc() } { - p.SetState(1922) + p.SetState(1934) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserLAG_, SQLiteParserLEAD_: p.EnterOuterAlt(localctx, 4) { - p.SetState(1924) + p.SetState(1936) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserLAG_ || _la == SQLiteParserLEAD_) { @@ -23948,174 +24115,174 @@ func (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) { } } { - p.SetState(1925) + p.SetState(1937) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1926) + p.SetState(1938) p.expr(0) } - p.SetState(1928) + p.SetState(1940) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 285, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 287, p.GetParserRuleContext()) == 1 { { - p.SetState(1927) + p.SetState(1939) p.Of_OF_fset() } } - p.SetState(1931) + p.SetState(1943) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserCOMMA { { - p.SetState(1930) + p.SetState(1942) p.Default_DEFAULT__value() } } { - p.SetState(1933) + p.SetState(1945) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1934) + p.SetState(1946) p.Match(SQLiteParserOVER_) } { - p.SetState(1935) + p.SetState(1947) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1937) + p.SetState(1949) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1936) + p.SetState(1948) p.Partition_by() } } { - p.SetState(1939) + p.SetState(1951) p.Order_by_expr_asc_desc() } { - p.SetState(1940) + p.SetState(1952) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserNTH_VALUE_: p.EnterOuterAlt(localctx, 5) { - p.SetState(1942) + p.SetState(1954) p.Match(SQLiteParserNTH_VALUE_) } { - p.SetState(1943) + p.SetState(1955) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1944) + p.SetState(1956) p.expr(0) } { - p.SetState(1945) + p.SetState(1957) p.Match(SQLiteParserCOMMA) } { - p.SetState(1946) + p.SetState(1958) p.Signed_number() } { - p.SetState(1947) + p.SetState(1959) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1948) + p.SetState(1960) p.Match(SQLiteParserOVER_) } { - p.SetState(1949) + p.SetState(1961) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1951) + p.SetState(1963) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1950) + p.SetState(1962) p.Partition_by() } } { - p.SetState(1953) + p.SetState(1965) p.Order_by_expr_asc_desc() } - p.SetState(1955) + p.SetState(1967) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if (int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&4503599761588225) != 0 { { - p.SetState(1954) + p.SetState(1966) p.Frame_clause() } } { - p.SetState(1957) + p.SetState(1969) p.Match(SQLiteParserCLOSE_PAR) } case SQLiteParserNTILE_: p.EnterOuterAlt(localctx, 6) { - p.SetState(1959) + p.SetState(1971) p.Match(SQLiteParserNTILE_) } { - p.SetState(1960) + p.SetState(1972) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(1961) + p.SetState(1973) p.expr(0) } { - p.SetState(1962) + p.SetState(1974) p.Match(SQLiteParserCLOSE_PAR) } { - p.SetState(1963) + p.SetState(1975) p.Match(SQLiteParserOVER_) } { - p.SetState(1964) + p.SetState(1976) p.Match(SQLiteParserOPEN_PAR) } - p.SetState(1966) + p.SetState(1978) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserPARTITION_ { { - p.SetState(1965) + p.SetState(1977) p.Partition_by() } } { - p.SetState(1968) + p.SetState(1980) p.Order_by_expr_asc_desc() } { - p.SetState(1969) + p.SetState(1981) p.Match(SQLiteParserCLOSE_PAR) } @@ -24213,7 +24380,7 @@ func (p *SQLiteParser) Of_OF_fset() (localctx IOf_OF_fsetContext) { _ = this localctx = NewOf_OF_fsetContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 148, SQLiteParserRULE_of_OF_fset) + p.EnterRule(localctx, 150, SQLiteParserRULE_of_OF_fset) defer func() { p.ExitRule() @@ -24233,11 +24400,11 @@ func (p *SQLiteParser) Of_OF_fset() (localctx IOf_OF_fsetContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1973) + p.SetState(1985) p.Match(SQLiteParserCOMMA) } { - p.SetState(1974) + p.SetState(1986) p.Signed_number() } @@ -24331,7 +24498,7 @@ func (p *SQLiteParser) Default_DEFAULT__value() (localctx IDefault_DEFAULT__valu _ = this localctx = NewDefault_DEFAULT__valueContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 150, SQLiteParserRULE_default_DEFAULT__value) + p.EnterRule(localctx, 152, SQLiteParserRULE_default_DEFAULT__value) defer func() { p.ExitRule() @@ -24351,11 +24518,11 @@ func (p *SQLiteParser) Default_DEFAULT__value() (localctx IDefault_DEFAULT__valu p.EnterOuterAlt(localctx, 1) { - p.SetState(1976) + p.SetState(1988) p.Match(SQLiteParserCOMMA) } { - p.SetState(1977) + p.SetState(1989) p.Signed_number() } @@ -24480,7 +24647,7 @@ func (p *SQLiteParser) Partition_by() (localctx IPartition_byContext) { _ = this localctx = NewPartition_byContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 152, SQLiteParserRULE_partition_by) + p.EnterRule(localctx, 154, SQLiteParserRULE_partition_by) defer func() { p.ExitRule() @@ -24502,21 +24669,21 @@ func (p *SQLiteParser) Partition_by() (localctx IPartition_byContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1979) + p.SetState(1991) p.Match(SQLiteParserPARTITION_) } { - p.SetState(1980) + p.SetState(1992) p.Match(SQLiteParserBY_) } - p.SetState(1982) + p.SetState(1994) p.GetErrorHandler().Sync(p) _alt = 1 for ok := true; ok; ok = _alt != 2 && _alt != antlr.ATNInvalidAltNumber { switch _alt { case 1: { - p.SetState(1981) + p.SetState(1993) p.expr(0) } @@ -24524,9 +24691,9 @@ func (p *SQLiteParser) Partition_by() (localctx IPartition_byContext) { panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) } - p.SetState(1984) + p.SetState(1996) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 292, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 294, p.GetParserRuleContext()) } return localctx @@ -24650,7 +24817,7 @@ func (p *SQLiteParser) Order_by_expr() (localctx IOrder_by_exprContext) { _ = this localctx = NewOrder_by_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 154, SQLiteParserRULE_order_by_expr) + p.EnterRule(localctx, 156, SQLiteParserRULE_order_by_expr) var _la int defer func() { @@ -24671,24 +24838,24 @@ func (p *SQLiteParser) Order_by_expr() (localctx IOrder_by_exprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1986) + p.SetState(1998) p.Match(SQLiteParserORDER_) } { - p.SetState(1987) + p.SetState(1999) p.Match(SQLiteParserBY_) } - p.SetState(1989) + p.SetState(2001) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for ok := true; ok; ok = ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-33552632) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&-270215977642229761) != 0) { { - p.SetState(1988) + p.SetState(2000) p.expr(0) } - p.SetState(1991) + p.SetState(2003) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -24788,7 +24955,7 @@ func (p *SQLiteParser) Order_by_expr_asc_desc() (localctx IOrder_by_expr_asc_des _ = this localctx = NewOrder_by_expr_asc_descContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 156, SQLiteParserRULE_order_by_expr_asc_desc) + p.EnterRule(localctx, 158, SQLiteParserRULE_order_by_expr_asc_desc) defer func() { p.ExitRule() @@ -24808,15 +24975,15 @@ func (p *SQLiteParser) Order_by_expr_asc_desc() (localctx IOrder_by_expr_asc_des p.EnterOuterAlt(localctx, 1) { - p.SetState(1993) + p.SetState(2005) p.Match(SQLiteParserORDER_) } { - p.SetState(1994) + p.SetState(2006) p.Match(SQLiteParserBY_) } { - p.SetState(1995) + p.SetState(2007) p.Order_by_expr_asc_desc() } @@ -24984,7 +25151,7 @@ func (p *SQLiteParser) Expr_asc_desc() (localctx IExpr_asc_descContext) { _ = this localctx = NewExpr_asc_descContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 158, SQLiteParserRULE_expr_asc_desc) + p.EnterRule(localctx, 160, SQLiteParserRULE_expr_asc_desc) var _la int defer func() { @@ -25005,46 +25172,46 @@ func (p *SQLiteParser) Expr_asc_desc() (localctx IExpr_asc_descContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1997) + p.SetState(2009) p.expr(0) } - p.SetState(1999) + p.SetState(2011) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ { { - p.SetState(1998) + p.SetState(2010) p.Asc_desc() } } - p.SetState(2008) + p.SetState(2020) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SQLiteParserCOMMA { { - p.SetState(2001) + p.SetState(2013) p.Match(SQLiteParserCOMMA) } { - p.SetState(2002) + p.SetState(2014) p.expr(0) } - p.SetState(2004) + p.SetState(2016) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) if _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ { { - p.SetState(2003) + p.SetState(2015) p.Asc_desc() } } - p.SetState(2010) + p.SetState(2022) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -25134,7 +25301,7 @@ func (p *SQLiteParser) Initial_select() (localctx IInitial_selectContext) { _ = this localctx = NewInitial_selectContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 160, SQLiteParserRULE_initial_select) + p.EnterRule(localctx, 162, SQLiteParserRULE_initial_select) defer func() { p.ExitRule() @@ -25154,7 +25321,7 @@ func (p *SQLiteParser) Initial_select() (localctx IInitial_selectContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2011) + p.SetState(2023) p.Select_stmt() } @@ -25243,7 +25410,7 @@ func (p *SQLiteParser) Recursive__select() (localctx IRecursive__selectContext) _ = this localctx = NewRecursive__selectContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 162, SQLiteParserRULE_recursive__select) + p.EnterRule(localctx, 164, SQLiteParserRULE_recursive__select) defer func() { p.ExitRule() @@ -25263,7 +25430,7 @@ func (p *SQLiteParser) Recursive__select() (localctx IRecursive__selectContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2013) + p.SetState(2025) p.Select_stmt() } @@ -25355,7 +25522,7 @@ func (p *SQLiteParser) Unary_operator() (localctx IUnary_operatorContext) { _ = this localctx = NewUnary_operatorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 164, SQLiteParserRULE_unary_operator) + p.EnterRule(localctx, 166, SQLiteParserRULE_unary_operator) var _la int defer func() { @@ -25376,7 +25543,7 @@ func (p *SQLiteParser) Unary_operator() (localctx IUnary_operatorContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2015) + p.SetState(2027) _la = p.GetTokenStream().LA(1) if !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1792) != 0) || _la == SQLiteParserNOT_) { @@ -25460,7 +25627,7 @@ func (p *SQLiteParser) Error_message() (localctx IError_messageContext) { _ = this localctx = NewError_messageContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 166, SQLiteParserRULE_error_message) + p.EnterRule(localctx, 168, SQLiteParserRULE_error_message) defer func() { p.ExitRule() @@ -25480,7 +25647,7 @@ func (p *SQLiteParser) Error_message() (localctx IError_messageContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2017) + p.SetState(2029) p.Match(SQLiteParserSTRING_LITERAL) } @@ -25586,7 +25753,7 @@ func (p *SQLiteParser) Module_argument() (localctx IModule_argumentContext) { _ = this localctx = NewModule_argumentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 168, SQLiteParserRULE_module_argument) + p.EnterRule(localctx, 170, SQLiteParserRULE_module_argument) defer func() { p.ExitRule() @@ -25604,20 +25771,20 @@ func (p *SQLiteParser) Module_argument() (localctx IModule_argumentContext) { } }() - p.SetState(2021) + p.SetState(2033) p.GetErrorHandler().Sync(p) - switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 297, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 299, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2019) + p.SetState(2031) p.expr(0) } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2020) + p.SetState(2032) p.Column_def() } @@ -25701,7 +25868,7 @@ func (p *SQLiteParser) Column_alias() (localctx IColumn_aliasContext) { _ = this localctx = NewColumn_aliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 170, SQLiteParserRULE_column_alias) + p.EnterRule(localctx, 172, SQLiteParserRULE_column_alias) var _la int defer func() { @@ -25722,7 +25889,7 @@ func (p *SQLiteParser) Column_alias() (localctx IColumn_aliasContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2023) + p.SetState(2035) _la = p.GetTokenStream().LA(1) if !(_la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL) { @@ -26586,7 +26753,7 @@ func (p *SQLiteParser) Keyword() (localctx IKeywordContext) { _ = this localctx = NewKeywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 172, SQLiteParserRULE_keyword) + p.EnterRule(localctx, 174, SQLiteParserRULE_keyword) var _la int defer func() { @@ -26607,7 +26774,7 @@ func (p *SQLiteParser) Keyword() (localctx IKeywordContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2025) + p.SetState(2037) _la = p.GetTokenStream().LA(1) if !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-33554432) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&18014398509481983) != 0)) { @@ -26703,7 +26870,7 @@ func (p *SQLiteParser) Name() (localctx INameContext) { _ = this localctx = NewNameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 174, SQLiteParserRULE_name) + p.EnterRule(localctx, 176, SQLiteParserRULE_name) defer func() { p.ExitRule() @@ -26723,7 +26890,7 @@ func (p *SQLiteParser) Name() (localctx INameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2027) + p.SetState(2039) p.Any_name() } @@ -26812,7 +26979,7 @@ func (p *SQLiteParser) Function_name() (localctx IFunction_nameContext) { _ = this localctx = NewFunction_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 176, SQLiteParserRULE_function_name) + p.EnterRule(localctx, 178, SQLiteParserRULE_function_name) defer func() { p.ExitRule() @@ -26832,7 +26999,7 @@ func (p *SQLiteParser) Function_name() (localctx IFunction_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2029) + p.SetState(2041) p.Any_name() } @@ -26943,7 +27110,7 @@ func (p *SQLiteParser) Qualified_function_name() (localctx IQualified_function_n _ = this localctx = NewQualified_function_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 178, SQLiteParserRULE_qualified_function_name) + p.EnterRule(localctx, 180, SQLiteParserRULE_qualified_function_name) defer func() { p.ExitRule() @@ -26962,22 +27129,22 @@ func (p *SQLiteParser) Qualified_function_name() (localctx IQualified_function_n }() p.EnterOuterAlt(localctx, 1) - p.SetState(2034) + p.SetState(2046) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 298, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 300, p.GetParserRuleContext()) == 1 { { - p.SetState(2031) + p.SetState(2043) p.Schema_name() } { - p.SetState(2032) + p.SetState(2044) p.Match(SQLiteParserDOT) } } { - p.SetState(2036) + p.SetState(2048) p.Function_name() } @@ -27066,7 +27233,7 @@ func (p *SQLiteParser) Schema_name() (localctx ISchema_nameContext) { _ = this localctx = NewSchema_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 180, SQLiteParserRULE_schema_name) + p.EnterRule(localctx, 182, SQLiteParserRULE_schema_name) defer func() { p.ExitRule() @@ -27086,7 +27253,7 @@ func (p *SQLiteParser) Schema_name() (localctx ISchema_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2038) + p.SetState(2050) p.Any_name() } @@ -27175,7 +27342,7 @@ func (p *SQLiteParser) Table_name() (localctx ITable_nameContext) { _ = this localctx = NewTable_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 182, SQLiteParserRULE_table_name) + p.EnterRule(localctx, 184, SQLiteParserRULE_table_name) defer func() { p.ExitRule() @@ -27195,7 +27362,7 @@ func (p *SQLiteParser) Table_name() (localctx ITable_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2040) + p.SetState(2052) p.Any_name() } @@ -27284,7 +27451,7 @@ func (p *SQLiteParser) Table_or_index_name() (localctx ITable_or_index_nameConte _ = this localctx = NewTable_or_index_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 184, SQLiteParserRULE_table_or_index_name) + p.EnterRule(localctx, 186, SQLiteParserRULE_table_or_index_name) defer func() { p.ExitRule() @@ -27304,7 +27471,7 @@ func (p *SQLiteParser) Table_or_index_name() (localctx ITable_or_index_nameConte p.EnterOuterAlt(localctx, 1) { - p.SetState(2042) + p.SetState(2054) p.Any_name() } @@ -27393,7 +27560,7 @@ func (p *SQLiteParser) New_table_name() (localctx INew_table_nameContext) { _ = this localctx = NewNew_table_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 186, SQLiteParserRULE_new_table_name) + p.EnterRule(localctx, 188, SQLiteParserRULE_new_table_name) defer func() { p.ExitRule() @@ -27413,7 +27580,7 @@ func (p *SQLiteParser) New_table_name() (localctx INew_table_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2044) + p.SetState(2056) p.Any_name() } @@ -27502,7 +27669,7 @@ func (p *SQLiteParser) Column_name() (localctx IColumn_nameContext) { _ = this localctx = NewColumn_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 188, SQLiteParserRULE_column_name) + p.EnterRule(localctx, 190, SQLiteParserRULE_column_name) defer func() { p.ExitRule() @@ -27522,7 +27689,7 @@ func (p *SQLiteParser) Column_name() (localctx IColumn_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2046) + p.SetState(2058) p.Any_name() } @@ -27611,7 +27778,7 @@ func (p *SQLiteParser) Collation_name() (localctx ICollation_nameContext) { _ = this localctx = NewCollation_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 190, SQLiteParserRULE_collation_name) + p.EnterRule(localctx, 192, SQLiteParserRULE_collation_name) defer func() { p.ExitRule() @@ -27631,7 +27798,7 @@ func (p *SQLiteParser) Collation_name() (localctx ICollation_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2048) + p.SetState(2060) p.Any_name() } @@ -27720,7 +27887,7 @@ func (p *SQLiteParser) Foreign_table() (localctx IForeign_tableContext) { _ = this localctx = NewForeign_tableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 192, SQLiteParserRULE_foreign_table) + p.EnterRule(localctx, 194, SQLiteParserRULE_foreign_table) defer func() { p.ExitRule() @@ -27740,7 +27907,7 @@ func (p *SQLiteParser) Foreign_table() (localctx IForeign_tableContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2050) + p.SetState(2062) p.Any_name() } @@ -27829,7 +27996,7 @@ func (p *SQLiteParser) Index_name() (localctx IIndex_nameContext) { _ = this localctx = NewIndex_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 194, SQLiteParserRULE_index_name) + p.EnterRule(localctx, 196, SQLiteParserRULE_index_name) defer func() { p.ExitRule() @@ -27849,7 +28016,7 @@ func (p *SQLiteParser) Index_name() (localctx IIndex_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2052) + p.SetState(2064) p.Any_name() } @@ -27938,7 +28105,7 @@ func (p *SQLiteParser) Trigger_name() (localctx ITrigger_nameContext) { _ = this localctx = NewTrigger_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 196, SQLiteParserRULE_trigger_name) + p.EnterRule(localctx, 198, SQLiteParserRULE_trigger_name) defer func() { p.ExitRule() @@ -27958,7 +28125,7 @@ func (p *SQLiteParser) Trigger_name() (localctx ITrigger_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2054) + p.SetState(2066) p.Any_name() } @@ -28047,7 +28214,7 @@ func (p *SQLiteParser) View_name() (localctx IView_nameContext) { _ = this localctx = NewView_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 198, SQLiteParserRULE_view_name) + p.EnterRule(localctx, 200, SQLiteParserRULE_view_name) defer func() { p.ExitRule() @@ -28067,7 +28234,7 @@ func (p *SQLiteParser) View_name() (localctx IView_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2056) + p.SetState(2068) p.Any_name() } @@ -28156,7 +28323,7 @@ func (p *SQLiteParser) Module_name() (localctx IModule_nameContext) { _ = this localctx = NewModule_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 200, SQLiteParserRULE_module_name) + p.EnterRule(localctx, 202, SQLiteParserRULE_module_name) defer func() { p.ExitRule() @@ -28176,7 +28343,7 @@ func (p *SQLiteParser) Module_name() (localctx IModule_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2058) + p.SetState(2070) p.Any_name() } @@ -28265,7 +28432,7 @@ func (p *SQLiteParser) Pragma_name() (localctx IPragma_nameContext) { _ = this localctx = NewPragma_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 202, SQLiteParserRULE_pragma_name) + p.EnterRule(localctx, 204, SQLiteParserRULE_pragma_name) defer func() { p.ExitRule() @@ -28285,7 +28452,7 @@ func (p *SQLiteParser) Pragma_name() (localctx IPragma_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2060) + p.SetState(2072) p.Any_name() } @@ -28374,7 +28541,7 @@ func (p *SQLiteParser) Savepoint_name() (localctx ISavepoint_nameContext) { _ = this localctx = NewSavepoint_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 204, SQLiteParserRULE_savepoint_name) + p.EnterRule(localctx, 206, SQLiteParserRULE_savepoint_name) defer func() { p.ExitRule() @@ -28394,7 +28561,7 @@ func (p *SQLiteParser) Savepoint_name() (localctx ISavepoint_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2062) + p.SetState(2074) p.Any_name() } @@ -28483,7 +28650,7 @@ func (p *SQLiteParser) Table_alias() (localctx ITable_aliasContext) { _ = this localctx = NewTable_aliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 206, SQLiteParserRULE_table_alias) + p.EnterRule(localctx, 208, SQLiteParserRULE_table_alias) defer func() { p.ExitRule() @@ -28503,7 +28670,7 @@ func (p *SQLiteParser) Table_alias() (localctx ITable_aliasContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2064) + p.SetState(2076) p.Any_name() } @@ -28592,7 +28759,7 @@ func (p *SQLiteParser) Transaction_name() (localctx ITransaction_nameContext) { _ = this localctx = NewTransaction_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 208, SQLiteParserRULE_transaction_name) + p.EnterRule(localctx, 210, SQLiteParserRULE_transaction_name) defer func() { p.ExitRule() @@ -28612,7 +28779,7 @@ func (p *SQLiteParser) Transaction_name() (localctx ITransaction_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2066) + p.SetState(2078) p.Any_name() } @@ -28701,7 +28868,7 @@ func (p *SQLiteParser) Window_name() (localctx IWindow_nameContext) { _ = this localctx = NewWindow_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 210, SQLiteParserRULE_window_name) + p.EnterRule(localctx, 212, SQLiteParserRULE_window_name) defer func() { p.ExitRule() @@ -28721,7 +28888,7 @@ func (p *SQLiteParser) Window_name() (localctx IWindow_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2068) + p.SetState(2080) p.Any_name() } @@ -28810,7 +28977,7 @@ func (p *SQLiteParser) Alias() (localctx IAliasContext) { _ = this localctx = NewAliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 212, SQLiteParserRULE_alias) + p.EnterRule(localctx, 214, SQLiteParserRULE_alias) defer func() { p.ExitRule() @@ -28830,7 +28997,7 @@ func (p *SQLiteParser) Alias() (localctx IAliasContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2070) + p.SetState(2082) p.Any_name() } @@ -28919,7 +29086,7 @@ func (p *SQLiteParser) Filename() (localctx IFilenameContext) { _ = this localctx = NewFilenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 214, SQLiteParserRULE_filename) + p.EnterRule(localctx, 216, SQLiteParserRULE_filename) defer func() { p.ExitRule() @@ -28939,7 +29106,7 @@ func (p *SQLiteParser) Filename() (localctx IFilenameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2072) + p.SetState(2084) p.Any_name() } @@ -29028,7 +29195,7 @@ func (p *SQLiteParser) Base_window_name() (localctx IBase_window_nameContext) { _ = this localctx = NewBase_window_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 216, SQLiteParserRULE_base_window_name) + p.EnterRule(localctx, 218, SQLiteParserRULE_base_window_name) defer func() { p.ExitRule() @@ -29048,7 +29215,7 @@ func (p *SQLiteParser) Base_window_name() (localctx IBase_window_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2074) + p.SetState(2086) p.Any_name() } @@ -29137,7 +29304,7 @@ func (p *SQLiteParser) Simple_func() (localctx ISimple_funcContext) { _ = this localctx = NewSimple_funcContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 218, SQLiteParserRULE_simple_func) + p.EnterRule(localctx, 220, SQLiteParserRULE_simple_func) defer func() { p.ExitRule() @@ -29157,7 +29324,7 @@ func (p *SQLiteParser) Simple_func() (localctx ISimple_funcContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2076) + p.SetState(2088) p.Any_name() } @@ -29246,7 +29413,7 @@ func (p *SQLiteParser) Aggregate_func() (localctx IAggregate_funcContext) { _ = this localctx = NewAggregate_funcContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 220, SQLiteParserRULE_aggregate_func) + p.EnterRule(localctx, 222, SQLiteParserRULE_aggregate_func) defer func() { p.ExitRule() @@ -29266,7 +29433,7 @@ func (p *SQLiteParser) Aggregate_func() (localctx IAggregate_funcContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2078) + p.SetState(2090) p.Any_name() } @@ -29355,7 +29522,7 @@ func (p *SQLiteParser) Table_function_name() (localctx ITable_function_nameConte _ = this localctx = NewTable_function_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 222, SQLiteParserRULE_table_function_name) + p.EnterRule(localctx, 224, SQLiteParserRULE_table_function_name) defer func() { p.ExitRule() @@ -29375,7 +29542,7 @@ func (p *SQLiteParser) Table_function_name() (localctx ITable_function_nameConte p.EnterOuterAlt(localctx, 1) { - p.SetState(2080) + p.SetState(2092) p.Any_name() } @@ -29501,7 +29668,7 @@ func (p *SQLiteParser) Any_name() (localctx IAny_nameContext) { _ = this localctx = NewAny_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 224, SQLiteParserRULE_any_name) + p.EnterRule(localctx, 226, SQLiteParserRULE_any_name) defer func() { p.ExitRule() @@ -29519,43 +29686,43 @@ func (p *SQLiteParser) Any_name() (localctx IAny_nameContext) { } }() - p.SetState(2089) + p.SetState(2101) p.GetErrorHandler().Sync(p) switch p.GetTokenStream().LA(1) { case SQLiteParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2082) + p.SetState(2094) p.Match(SQLiteParserIDENTIFIER) } case SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_: p.EnterOuterAlt(localctx, 2) { - p.SetState(2083) + p.SetState(2095) p.Keyword() } case SQLiteParserSTRING_LITERAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(2084) + p.SetState(2096) p.Match(SQLiteParserSTRING_LITERAL) } case SQLiteParserOPEN_PAR: p.EnterOuterAlt(localctx, 4) { - p.SetState(2085) + p.SetState(2097) p.Match(SQLiteParserOPEN_PAR) } { - p.SetState(2086) + p.SetState(2098) p.Any_name() } { - p.SetState(2087) + p.SetState(2099) p.Match(SQLiteParserCLOSE_PAR) } @@ -29568,7 +29735,7 @@ func (p *SQLiteParser) Any_name() (localctx IAny_nameContext) { func (p *SQLiteParser) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool { switch ruleIndex { - case 33: + case 34: var t *ExprContext = nil if localctx != nil { t = localctx.(*ExprContext) diff --git a/internal/engine/sqlite/parser/sqliteparser_base_listener.go b/internal/engine/sqlite/parser/sqliteparser_base_listener.go index f072c4a272..1c5b1cb67c 100644 --- a/internal/engine/sqlite/parser/sqliteparser_base_listener.go +++ b/internal/engine/sqlite/parser/sqliteparser_base_listener.go @@ -99,6 +99,12 @@ func (s *BaseSQLiteParserListener) EnterIndexed_column(ctx *Indexed_columnContex // ExitIndexed_column is called when production indexed_column is exited. func (s *BaseSQLiteParserListener) ExitIndexed_column(ctx *Indexed_columnContext) {} +// EnterTable_option is called when production table_option is entered. +func (s *BaseSQLiteParserListener) EnterTable_option(ctx *Table_optionContext) {} + +// ExitTable_option is called when production table_option is exited. +func (s *BaseSQLiteParserListener) ExitTable_option(ctx *Table_optionContext) {} + // EnterCreate_table_stmt is called when production create_table_stmt is entered. func (s *BaseSQLiteParserListener) EnterCreate_table_stmt(ctx *Create_table_stmtContext) {} diff --git a/internal/engine/sqlite/parser/sqliteparser_listener.go b/internal/engine/sqlite/parser/sqliteparser_listener.go index 520d8b277b..24cb201423 100644 --- a/internal/engine/sqlite/parser/sqliteparser_listener.go +++ b/internal/engine/sqlite/parser/sqliteparser_listener.go @@ -47,6 +47,9 @@ type SQLiteParserListener interface { // EnterIndexed_column is called when entering the indexed_column production. EnterIndexed_column(c *Indexed_columnContext) + // EnterTable_option is called when entering the table_option production. + EnterTable_option(c *Table_optionContext) + // EnterCreate_table_stmt is called when entering the create_table_stmt production. EnterCreate_table_stmt(c *Create_table_stmtContext) @@ -431,6 +434,9 @@ type SQLiteParserListener interface { // ExitIndexed_column is called when exiting the indexed_column production. ExitIndexed_column(c *Indexed_columnContext) + // ExitTable_option is called when exiting the table_option production. + ExitTable_option(c *Table_optionContext) + // ExitCreate_table_stmt is called when exiting the create_table_stmt production. ExitCreate_table_stmt(c *Create_table_stmtContext)